
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
	from, 20%, 53%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-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 {
	from, 20%, 53%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-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 {
	from, 50%, to {
		opacity: 1;
	}
	
	25%, 75% {
		opacity: 0;
	}
}

@keyframes flash {
	from, 50%, to {
		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 {
	from {
		-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);
	}
	
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulse {
	from {
		-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);
	}
	
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

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

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

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

@-webkit-keyframes shake {
	from, to {
		-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 {
	from, to {
		-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 headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@-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);
	}
	
	to {
		-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);
	}
	
	to {
		-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 {
	from {
		-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);
	}
	
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	from {
		-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);
	}
	
	to {
		-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 {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	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);
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes wobble {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	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);
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

@-webkit-keyframes jello {
	from, 11.1%, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	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(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg);
	}
	
	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg);
	}
	
	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg);
	}
}

@keyframes jello {
	from, 11.1%, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	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(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg);
	}
	
	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg);
	}
	
	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg);
	}
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceInRight {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	from {
		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);
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInRight {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	from {
		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);
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

@-webkit-keyframes bounceInUp {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	from {
		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);
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInUp {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	from {
		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);
	}
	
	to {
		-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);
	}
	
	to {
		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);
	}
	
	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}

.bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-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);
	}
	
	to {
		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);
	}
	
	to {
		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);
	}
	
	to {
		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);
	}
	
	to {
		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);
	}
	
	to {
		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);
	}
	
	to {
		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);
	}
	
	to {
		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);
	}
	
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

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

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

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

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

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

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

@-webkit-keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

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

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

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

@-webkit-keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

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

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

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

@-webkit-keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

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

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

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

@-webkit-keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
	from {
		-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;
	}
	
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	from {
		-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;
	}
	
	to {
		-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 {
	from {
		-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);
	}
	
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {
	from {
		-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);
	}
	
	to {
		-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 {
	from {
		-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);
	}
	
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInY {
	from {
		-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);
	}
	
	to {
		-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 {
	from {
		-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;
	}
	
	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	from {
		-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;
	}
	
	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

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

@-webkit-keyframes flipOutY {
	from {
		-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;
	}
	
	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	from {
		-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;
	}
	
	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

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

@-webkit-keyframes lightSpeedIn {
	from {
		-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;
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	from {
		-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;
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

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

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

@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

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

@-webkit-keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

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

@-webkit-keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

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

@-webkit-keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

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

@-webkit-keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

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

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

@keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	
	to {
		-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 {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	
	to {
		-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;
	}
	
	to {
		-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;
	}
	
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
	from {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}
	
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes jackInTheBox {
	from {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}
	
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
	from {
		opacity: 1;
	}
	
	to {
		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 {
	from {
		opacity: 1;
	}
	
	to {
		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 {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	
	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		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 {
	from {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomInDown {
	from {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomInLeft {
	from {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomInLeft {
	from {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomInRight {
	from {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomInRight {
	from {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomInUp {
	from {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomInUp {
	from {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

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

@keyframes zoomOut {
	from {
		opacity: 1;
	}
	
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	
	to {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	to {
		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(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	to {
		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(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}
	
	to {
		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);
	}
	
	to {
		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);
	}
	
	to {
		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);
	}
	
	to {
		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(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	to {
		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(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	to {
		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(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

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

@-webkit-keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

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

@-webkit-keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

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

@-webkit-keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

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

/*!
 * WP Quiz Pro by MyThemeShop
 * https://mythemeshop.com/plugins/wp-quiz-pro/
 */
.wq_quizCtr.listquiz_quiz .wq-question-votes:after {
	content: " ";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}

.wq-hidden {
	display: none !important;
}

.wq-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: none;
	background-color: rgba(255, 255, 255, .5);
}

.wq-is-loading .wq-loading {
	display: block;
}

.wq-loading .wq-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1010;
}

.wq-locker {
	text-align: center;
}

.wq-locker+.wq-locker, .wq-locker+.wq-quiz {
	display: none;
}

.wq-error {
	color: #c40000;
}

[class^="wq-icon-"]:before, [class*=" wq-icon-"]:before {
	font-family: "wq-icon";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1em;
	margin-left: .2em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.animate-spin {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	display: inline-block;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.wq-icon-undo:before {
	content: "";
}

.wq-icon-facebook:before {
	content: "";
}

.wq-icon-spinner:before {
	content: "";
}

.wq-popup {
	position: relative;
	background: #fff;
	padding: 20px;
	width: auto;
	max-width: 500px;
	margin: 20px auto;
}

.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: .8;
}

.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;
	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: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	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;
	-ms-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%;
	width: auto;
	text-align: center;
	margin-top: -.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.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;
	box-shadow: none;
	touch-action: manipulation;
}

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: .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;
}

.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: .65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
	opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
	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 {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: .7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #fff;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #fff;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	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, .6);
	background: #000;
}

img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

.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, .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) {
	.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, .6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		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, .6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(.75);
		transform: scale(.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;
	}
}

.wq-embed {
	position: relative;
	max-width: 100%;
	height: 0;
	overflow: hidden;
	background: #dcddde;
	padding-bottom: 56.25%;
}

.wq-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.wq-embed-placeholder, .wq-embed-icon {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.wq-embed-placeholder {
	z-index: 1000;
}

.wq-embed-icon {
	z-index: 1010;
	background-color: rgba(255, 255, 255, .1);
}

.wq-embed-icon:before {
	content: " ";
	display: block;
	height: 82px;
	width: 82px;
	border: 3px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.wq-embed-icon:after {
	content: " ";
	display: block;
	height: 0;
	width: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 30px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -15px;
	margin-left: -10px;
}

.wq-embed.active .wq-embed-placeholder, .wq-embed.active .wq-embed-icon {
	display: none;
}

.wq-embed.active iframe {
	display: block;
}

.wq-results {
	font-size: 18px;
	box-sizing: border-box;
	width: 100%;
	margin: 20px 0 15px;
	padding: 10px 20px 20px 20px;
	border: 1px solid #ececec;
	background: #f9f9f9;
}

.wq-results .wq_resultScoreCtr {
	font-weight: bold;
}

.wq-results .wq_quizTitle {
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
}

.wq-results .wq_shareCtr {
	padding-top: 0;
}

.wq-results p {
	margin-bottom: 0;
}

.wq-results img {
	width: 100%;
}

.wq_singleResultRow .wq_resultExplanation, .wq_resultExplanation .wq_resultExplanationLongDesc {
	display: none;
}

img.wq_resultImg {
	margin-bottom: 10px;
}

.show-played .wq-results, .wq-result.chosen {
	display: block;
}

.force-show {
	display: block !important;
}

.wq-quiz.multiple .wq-question {
	display: none;
}

.wq-quiz.multiple .wq-question:first-of-type {
	display: block;
}

.wq-quiz.multiple .wq-is-ad .wq_continue {
	display: block;
}

.wq-quiz.has-intro .wq-progress-bar-container, .wq-quiz.has-intro .wq-questions, .wq-quiz.has-intro .wq-embed-toggle, .wq-quiz.has-intro .wq_promoteQuizCtr {
	display: none;
}

.wq-question-hint {
	display: block;
	overflow: hidden;
	margin-top: 15px;
}

.wq-question-hint a {
	font-size: 12px;
	float: right;
	text-decoration: none;
	outline: none;
	box-shadow: none;
}

.wq-question-hint a:focus, .wq-question-hint a:hover {
	outline: none;
	box-shadow: none;
}

.wq-question-hint-content {
	display: none;
	clear: both;
	margin-bottom: 5px;
	padding: 10px;
	color: #333;
	border: 1px solid #9cc6fb;
	background: #ddecff;
}

.wq-share {
	clear: both;
}

.wq_shareCtr button, .wq_quizForceShareCtr button, .wq_questionLogin button {
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	overflow: hidden;
	min-width: 40px;
	height: 40px;
	margin: 10px 7px 0 0;
	padding: 0;
	cursor: pointer;
	text-transform: none;
	color: #fff;
	border: 0;
}

.wq_shareCtr button>i, .wq_quizForceShareCtr button>i, .wq_questionLogin button>i {
	line-height: 40px;
	display: inline-block;
	width: 40px;
	margin-top: 0;
}

.wq_shareCtr button>span, .wq_quizForceShareCtr button>span, .wq_questionLogin button>span {
	display: inline-block;
	box-sizing: border-box;
	min-width: 94px;
	padding-right: 14px;
	padding-left: 12px;
	text-align: left;
	vertical-align: middle;
	border-left: 1px solid rgba(0, 0, 0, .1);
}

.wq_shareCtr .wq_shareFB, .wq_quizForceShareCtr .wq_forceShareFB, .wq_questionLogin .wq_loginFB, .wq_questionLogin .wq_playFB {
	background: #305c99;
}

.wq_shareCtr .wq_shareFB img, .wq_quizForceShareCtr .wq_forceShareFB img, .wq_questionLogin .wq_loginFB img, .wq_questionLogin .wq_playFB img {
	float: right;
	width: 40px;
	height: 40px;
}

.wq_shareCtr .wq_shareTwitter {
	background: #00cdff;
}

.wq_shareCtr .wq_shareGP {
	background: #d24228;
}

.wq_shareCtr .wq_shareVK {
	margin-right: 0;
	background: #567ca4;
}

.wq_quizProgressBarCtr {
	margin-bottom: 30px;
}

.wq_quizProgressBar {
	font-size: 11px;
	line-height: 1.285;
	position: relative;
	box-sizing: initial;
	width: 100%;
	height: 18px;
	margin: 0 1px;
	text-align: center;
	color: #fff;
	border-radius: 10px;
	background-color: #ebebeb;
	box-shadow: inset 0 1px 1px rgba(100, 100, 100, .1);
}

.wq_quizProgressBar>span {
	line-height: 16px;
	position: relative;
	display: block;
	float: left;
	overflow: hidden;
	box-sizing: border-box;
	width: 10px;
	min-width: 30px;
	height: 100%;
	margin: 0 -1px;
	padding: 0 3px;
	text-align: right;
	border: 1px solid;
	border-color: rgba(0, 0, 0, .05) rgba(0, 0, 0, .2) rgba(0, 0, 0, .3);
	border-radius: 10px;
	background-color: var(--wq-bar-color, #85c440);
	box-shadow: inset 0 1px rgba(255, 255, 255, .3), 0 1px 2px rgba(0, 0, 0, .2);
}

.wq_singleAnswerCtr {
	cursor: pointer;
}

.wq_singleAnswerCtr .wq_answerTxtCtr:before, .wq_singleAnswerCtr.chosen .wq_answerTxtCtr:after {
	content: "";
	width: 18px;
	height: 18px;
	border: 2px solid;
	position: absolute;
	left: 0;
	top: 1px;
	border-radius: 2px;
	box-sizing: border-box;
}

.wq_singleAnswerCtr.chosen .wq_answerTxtCtr:after {
	content: "";
	width: 0;
	height: 0;
	background: #fff;
	border: 5px solid;
	left: 4px;
	top: 5px;
}

.wq_singleAnswerCtr .wq_answerTxtCtr {
	font-size: 18px;
	font-weight: 700;
	line-height: 19px;
	display: inline-block;
	height: auto;
	padding-left: 25px;
	cursor: pointer;
	vertical-align: middle;
	color: inherit;
	background-repeat: no-repeat;
	margin-bottom: 0;
	position: relative;
}

.wq_retakeQuizBtn, .wq-force-login button, .wq_singleQuestionWrapper .wq_continue button, .wq_triviaQuizTimerInfoCtr button, .wq-pay-locker button, .wq_quizEmailCtr form button {
	font-size: 18px;
	font-weight: bold;
	margin: 30px 0 10px 0;
	padding: 12px;
	cursor: pointer;
	color: white;
	border: 0;
	border-radius: 4px;
	background-color: var(--wq-bar-color, #8bc34a);
	box-shadow: none;
}

.wq-pay-locker button, .wq_quizEmailCtr form button {
	margin: 0;
}

.wq_triviaQuizTimerCtr {
	background-color: var(--wq-bar-color, #8bc34a);
}

.wq_retakeQuizCtr {
	display: none;
	clear: both;
	text-align: center;
}

.wq-force-action-container, .wq-results, .wq_continue, .wq-result {
	display: none;
}

.wq_quizForceShareCtr {
	text-align: center;
}

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

.wq_quizCtr.multiple .wq_singleQuestionWrapper {
	margin-bottom: 0;
}

.wq_questionsCtr {
	margin-bottom: 20px;
}

.wq_singleQuestionWrapper {
	margin-bottom: 50px;
}

.wq_singleQuestionWrapper.wq_isAd {
	text-align: center;
}

.wq_singleQuestionWrapper.wq_isAd img {
	width: auto !important;
}

.wq_singleQuestionWrapper:last-of-type {
	margin-bottom: 0;
}

.wq_singleQuestionWrapper .wq_continue {
	text-align: center;
}

.mfp-content .wq-results {
	margin-top: 0;
}

.wq_quizForceShareCtr p {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.wq_quizForceShareCtr button {
	margin-right: 0;
}

.wq_shareCtr p, .wq_questionLogin p {
	margin-bottom: 0;
}

body .wq_questionTextCtr {
	float: left;
	padding: 12px 20px;
	background: #eee;
	box-sizing: border-box;
}

body .wq_questionTextCtr h4 {
	font-size: 28px;
	line-height: 1;
	margin: 0;
	color: inherit;
}

.wq_singleQuestionCtr {
	margin-bottom: 0;
}

.wq_questionTextDescCtr p {
	font-size: 14px;
	line-height: 15px;
	margin-top: 10px;
}

.wq_quizCtr img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle !important;
}

.wq-quiz-personality .row {
	margin: 0;
	margin-bottom: 10px;
}

.col-md-wq-6 {
	float: left;
	width: 49%;
}

.col-md-wq-6:last-child {
	float: right;
}

.col-md-wq-6:first-child {
	float: left;
}

.col-md-wq-4 {
	float: left;
	width: 32%;
	margin-right: 2%;
}

.col-md-wq-4:last-child {
	float: right;
	margin-right: 0;
}

.col-md-wq-4:first-child, .col-md-wq-4:nth-child(2), .col-md-wq-4:nth-child(5) {
	float: left;
}

.wq_answerImgCtr {
	margin-bottom: 8px;
}

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

.wq_answersWrapper .row:after {
	clear: both;
}

p.wq_QuestionExplanationText {
	margin: 10px 0;
}

.wq_quizEmailCtr form p:first-child {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: left;
}

.wq_quizEmailCtr form p:last-child {
	margin-bottom: 0;
}

.wq_quizEmailCtr form input[type='text'], .wq_quizEmailCtr form input[type='email'] {
	font-size: 16px;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
	margin: 0 auto;
	margin-top: 5px;
	border: 1px solid #ddd;
	text-shadow: none;
}

.wq_quizEmailCtr form div {
	margin-bottom: 20px;
}

.wq_quizEmailCtr form label {
	display: block;
}

.wq_quizEmailCtr form .wq-consent-desc {
	text-align: left;
}

.resultUpDownVote {
	line-height: 1;
	margin-bottom: 5px;
}

.wq-embed-toggle {
	float: left;
}

.wq_embedToggleQuiz, .wq_embedToggleQuiz input {
	float: left;
	box-sizing: border-box;
	width: 100%;
}

.wq_embedToggleQuiz {
	display: none;
	clear: both;
	margin: 15px 0;
}

.wq_promoteQuizCtr {
	text-align: right;
}

.wq_questionMediaCtr {
	width: 100%;
	margin-bottom: 15px;
}

.wq_questionAnswersCtr {
	width: 100%;
}

.wq_questionImage {
	position: relative;
	width: 100%;
	height: 90%;
}

.wq_quizCtr.wq-quiz-personality .wq_singleAnswerCtr.wq_answerSelected {
	opacity: 1;
}

.wq_questionImage>span, .wq-question .credits {
	font-size: 12px;
	line-height: 20px;
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 0 9px;
	background: rgba(236, 240, 241, .65);
}

.quiz-pro-clearfix {
	clear: both;
	zoom: 1;
}

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

.quiz-pro-clearfix:after {
	clear: both;
}

i.icon.video.play {
	font-style: normal;
}

i.icon.video.play:before {
	position: absolute;
	display: block;
	width: 82px;
	height: 82px;
	content: "";
	background-image: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/wp-quiz-pro/assets/frontend/images/spritesheet.png");
	background-repeat: no-repeat;
	background-position: -63px -3px;
	background-size: 186px 87px;
}

.ui.embed .icon:hover:before {
	color: #fff;
}

.ui.embed>.placeholder {
	height: 100% !important;
}

.sprite {
	position: relative;
	display: inline-block;
}

.sprite:after {
	position: absolute;
	display: block;
	content: "";
	background-image: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/wp-quiz-pro/assets/frontend/images/spritesheet.png");
	background-repeat: no-repeat;
	background-size: 186px 87px;
}

.wq_shareCtr .sprite:after, .wq_questionLogin .sprite:after {
	top: -12px;
	left: 13px;
	width: 14px;
	height: 14px;
}

.sprite-facebook:after {
	background-position: -25px -3px;
}

.sprite-twitter:after {
	background-position: -150px -31px;
}

.sprite-google-plus:after {
	background-position: -44px -3px;
}

.sprite-vk:after {
	background-position: -169px -31px;
}

@media screen and (max-width: 550px) {
	.wq-quiz-flip .wq-question .desc>div {
		font-size: 28px;
	}
	
	.col-md-wq-4 {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.wq-quiz-flip .wq-question .desc>div {
		font-size: 22px;
	}
	
	.wq_singleQuestionWrapper .wq_continue button, .wq_triviaQuizTimerInfoCtr button {
		font-size: 15px;
		padding: 10px;
	}
	
	.wq-results {
		font-size: 15px;
	}
	
	.wq-results .wq_shareCtr button, .wq_quizForceShareCtr button {
		font-size: 12px;
	}
	
	.wq_questionTextCtr h4 {
		font-size: 20px;
	}
	
	.wq_retakeQuizBtn {
		font-size: 17px;
	}
}

@media screen and (max-width: 480px) {
	.wq-quiz-flip .wq-question .desc>div {
		font-size: 18px;
	}
}

.wp-quiz-listing {
	width: 100%;
	clear: both;
}

.wp-quiz-listing .latestPost {
	margin: 20px auto;
}

.wp-quiz-listing a {
	text-decoration: none;
}

.wp-quiz-listing .thecategory {
	color: #fff;
	display: inline-block;
	line-height: 1;
	border-radius: 3px;
	padding: 6px;
	margin-right: 15px;
	background: #f15a5a;
	font-size: 12px;
}

.wq-force-login input:not([type='checkbox']) {
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
	line-height: 44px;
	margin-top: 5px;
}

.wq-force-login__form--register {
	display: none;
}

.wq-force-login button {
	margin: 0;
}

.wq-force-login p:last-child {
	margin-bottom: 0;
}

.wq-quiz.wq-skin-flat .wq_questionTextCtr {
	background-color: var(--wq-background-color, #ecf0f1);
	color: var(--wq-font-color, #5f5f5f);
	border-radius: 3px 3px 0 0;
	width: 100%;
}

.wq-quiz.wq-skin-flat .wq_singleAnswerCtr {
	background-color: var(--wq-background-color, #ecf0f1);
	color: var(--wq-font-color, #5f5f5f);
	border: 3px solid transparent;
	padding: 5px 7px;
	margin: 0 0 15px 0;
	border-radius: 3px;
	line-height: 30px;
}

.wq-quiz.wq-skin-flat .wq_singleAnswerCtr:last-child {
	margin-bottom: 0;
}

.wq-quiz.wq-skin-flat .wq_singleAnswerCtr:hover, .wq-quiz.wq-skin-flat .wq_singleAnswerCtr.chosen, .wq-quiz.wq-skin-flat .wq_singleAnswerCtr.wq_answerSelected {
	background: #fff38b;
	color: #444;
	border: 3px solid #f7e971;
	transition: background 550ms ease-out;
	cursor: pointer;
}

.wq-quiz.wq-skin-flat.wq-should-show-correct-answer .wq_singleAnswerCtr.wq_correctAnswer {
	background: #8bc34a;
	border-color: #7bad40;
	color: #fff;
	opacity: .5;
}

.wq-quiz.wq-skin-flat.wq-should-show-correct-answer .wq_singleAnswerCtr.wq_incorrectAnswer {
	background: #ff5722;
	border-color: #d4471b;
	color: #fff;
	opacity: .8;
}

.wq-quiz.wq-skin-flat .wq_questionAnswered .wq_singleAnswerCtr {
	opacity: .5;
}

.wq-quiz.wq-skin-flat .wq_questionAnswered .wq_singleAnswerCtr.chosen {
	opacity: 1;
}

.wq-quiz.wq-skin-flat .wq_singleAnswerCtr .wq_answerTxtCtr {
	word-break: break-word;
}

.wq-quiz.wq-skin-flat .wq-results {
	background: #ecf0f1;
	border-color: #ecf0f1;
	border-radius: 3px;
}

.wq-quiz.wq-skin-flat .wq_quizForceActionCtr {
	background: #ecf0f1;
	padding: 30px 20px;
	float: left;
	width: 100%;
	box-sizing: border-box;
	margin-top: 30px;
	border-radius: 3px;
}

.wq-quiz.wq-skin-flat .wq_shareCtr button, .wq-quiz.wq-skin-flat .wq-results .wq_shareCtr button, .wq-quiz.wq-skin-flat .wq_quizForceShareCtr button, .wq-quiz.wq-skin-flat .wq_questionLogin button, .wq-quiz.wq-skin-flat .wq_retakeQuizBtn, .wq-quiz.wq-skin-flat .wq_quizEmailCtr form button, .wq-quiz.wq-skin-flat .wq_triviaQuestionExplanation {
	border-radius: 3px;
}

.wq-quiz.wq-skin-flat .wq_quizEmailCtr form input[type="text"], .wq-quiz.wq-skin-flat .wq_quizEmailCtr form input[type="email"] {
	border: 2px solid #d7dee0;
	border-radius: 4px;
}

.wq_triviaQuestionExplanation {
	border-color: #d7dee0;
	padding: 12px 12px 2px;
}

.wq_triviaQuestionExplanation .wq-explanation-head-correct {
	color: #8bc34a;
}

.wq_triviaQuestionExplanation .wq-explanation-head-incorrect {
	color: #ff5722;
}

.wq_triviaQuestionExplanation .wq_correctExplanationHead .wq-explanation-head-incorrect, .wq_triviaQuestionExplanation .wq_wrongExplanationHead .wq-explanation-head-correct {
	display: none;
}

.wq-skin-traditional .wq_IsSwiperResult h3 {
	border-radius: 0;
	background: #4caf50;
}

.wq-skin-traditional .wq_singleAnswerCtr {
	background-color: var(--wq-background-color, #f2f2f2);
	color: var(--wq-font-color);
	border: 1px solid rgba(0, 0, 0, .1);
	padding: 7px 7px 8px;
	margin: 0 0 15px 0;
	line-height: 30px;
}

.wq-skin-traditional .wq_singleAnswerCtr:last-of-type {
	margin-bottom: 0;
}

.wq-skin-traditional .wq_questionTextCtr {
	background-color: var(--wq-background-color, #f2f2f2);
}

.wq_singleAnswerCtr:hover, .wq_singleAnswerCtr.chosen, .wq_singleAnswerCtr.wq_answerSelected {
	background: #fff195;
	color: #000;
	transition: background 550ms ease-out;
	cursor: pointer;
}

.wq-skin-traditional .wq_singleAnswerCtr.wq_answerSelected {
	background: #4caf50;
	color: #fff;
}

.wq-skin-traditional.wq-should-show-correct-answer .wq_singleAnswerCtr.wq_correctAnswer {
	background: #4caf50;
	border-color: #409444;
	color: #fff;
	opacity: .5;
}

.wq-skin-traditional.wq-should-show-correct-answer .wq_singleAnswerCtr.wq_incorrectAnswer {
	background: #f44336;
	border-color: #ce392e;
	color: #fff;
	opacity: .8;
}

.wq-skin-traditional .wq_questionAnswered .wq_singleAnswerCtr {
	opacity: .5;
}

.wq-skin-traditional .wq_questionAnswered .wq_singleAnswerCtr.chosen {
	opacity: 1;
}

.wq-skin-traditional .chosen .wq_answerTxtCtr:after, .wq-skin-traditional .wq_answerSelected .wq_answerTxtCtr:after {
	background: #fff;
}

.wq-skin-traditional .wq_correctExplanationHead {
	color: #4caf50;
	font-weight: bold;
	font-size: 1.2em;
}

.wq-skin-traditional .wq_wrongExplanationHead {
	color: #f44336;
	font-weight: bold;
	font-size: 1.2em;
}

.wq-skin-traditional .wq_quizForceActionCtr {
	background: #f2f2f2;
	padding: 30px 20px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	margin: 30px 0 15px;
}

.wq-skin-traditional .wq_IsSwiperResult .wq_retakeSwiperWrapper, .wq-skin-traditional .wq-results.wq_IsSwiperResult .wq_shareCtr {
	background: #f2f2f2;
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
}

.wq-skin-traditional .wq_IsSwiperResult .resultImageWrapper .indexWrapper, .wq-skin-traditional .wq_IsSwiperResult .userVote, .wq-skin-traditional .wq_retakeSwiperBtn:hover {
	background: #4caf50;
	border-color: #4caf50;
	border-radius: 0;
}

.wq-skin-traditional .wq_IsSwiperResult .userVote.negativeVote {
	background: #f44336;
}

.wq-quiz-trivia .wq_questionTextCtr {
	background-color: var(--wq-background-color);
	color: var(--wq-font-color);
}

.wq-quiz-trivia .wq_triviaQuizTimerInfoCtr {
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.wq-quiz-trivia .wq_triviaQuizTimerInfoCtr p {
	margin-bottom: 0;
}

.wq-quiz-trivia .wq_triviaQuizTimerCtr {
	position: fixed;
	z-index: 100;
	top: 50px;
	left: 50px;
	text-align: center;
	width: 50px;
	line-height: 50px;
	border-radius: 50%;
	color: #fff;
	background-color: var(--wq-bar-color, #ff5722);
	display: none;
}

.wq-quiz-trivia .row {
	margin: 0;
	margin-bottom: 10px;
}

.wq_triviaQuestionExplanation {
	padding: 10px 10px 0 10px;
	border: 1px solid #ddd;
	display: none;
	margin: 20px 0 0 0;
	clear: both;
	width: 100%;
	box-sizing: border-box;
}

.wq_triviaQuestionExplanation span {
	font-weight: 700;
	font-size: 1.2em;
}

.wq_questionAnswered.is-incorrect .wq_triviaQuestionExplanation, .wq_questionAnswered.is-correct .wq_triviaQuestionExplanation {
	display: block;
}

.wq-quiz:not(.wq-should-show-correct-answer) .wq_questionAnswered.is-incorrect .wq_triviaQuestionExplanation, .wq-quiz:not(.wq-should-show-correct-answer) .wq_questionAnswered.is-correct .wq_triviaQuestionExplanation {
	display: none !important;
}

.is-correct .wq-explanation-head-incorrect, .is-incorrect .wq-explanation-head-correct {
	display: none;
}

.wq-checked-answers-list .is-correct {
	color: #7bad40;
}

.wq-checked-answers-list .is-incorrect {
	color: #ff5722;
}

.wq-checked-answers-list {
	display: none;
	margin-top: 15px;
}

.wq-checked-answers-list__question {
	margin-bottom: 15px;
}

.wq-checked-answers-list__question-title {
	font-weight: 700;
	margin-bottom: 5px;
}

.wq-checked-answers-list__question-desc {
	font-size: 85%;
	color: #555;
	margin-top: 5px;
}

.wq-checked-answers-list.must-show {
	display: block;
}

.wq-end-answers.wq-layout-multiple .wq_triviaQuestionExplanation {
	display: none !important;
}

.wq-end-answers.wq-layout-multiple .wq-checked-answers-list {
	display: block;
}

.wq_quizCtr.flip_quiz .card {
	position: relative;
	color: #fff;
}

.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) {
	-webkit-perspective: 1000px;
	perspective: 1000px;
}

.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .card {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	transition: .6s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .front, .wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .back {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	cursor: pointer;
	min-height: 200px;
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 2;
	height: 100%;
}

.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .front {
	position: relative;
}

.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .back {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.wq_quizCtr.flip_quiz .wq-question:not(.no-flip).is-flipped .card {
	transition: .6s;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.wq_quizCtr.flip_quiz .wq_questionTextCtr {
	color: var(--wq-font-color);
	background-color: transparent;
	display: flex;
	align-items: center;
	padding: 0 0 12px;
	width: 100%;
}

.wq_quizCtr.flip_quiz .wq-question-title {
	flex: auto;
	padding: 0;
}

.wq_quizCtr.flip_quiz.wq-skin-flat .wq-question-vote-btn {
	background: transparent;
}

.wq_quizCtr.flip_quiz .wq-results .wq_shareCtr {
	padding-top: 0;
}

.wq_quizCtr.flip_quiz .wq_singleQuestionWrapper {
	text-align: center;
	margin: 0 auto 30px;
	position: relative;
	clear: both;
	overflow: hidden;
	width: var(--wq-question-width);
	height: var(--wq-question-height);
}

.wq_quizCtr.flip_quiz .wq_singleQuestionWrapper:first-of-type {
	margin-top: 0;
}

.wq_quizCtr.flip_quiz .wq_singleQuestionWrapper:last-of-type {
	margin-bottom: 0;
}

.wq_quizCtr.flip_quiz .item_top {
	display: table;
	width: 100%;
}

.wq_quizCtr.flip_quiz .title_container {
	display: table-cell;
	text-align: left;
}

.wq_quizCtr.flip_quiz img {
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	vertical-align: middle;
}

.wq_quizCtr.flip_quiz .credits {
	color: #111;
}

.wq_quizCtr.flip_quiz .card:not(.no-image) .desc, .wq_quizCtr.flip_quiz .top-desc {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
}

.wq_quizCtr.flip_quiz .desc {
	text-align: center;
	width: 100%;
	height: 100%;
	font-size: 34px;
	line-height: 1.4;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.wq_quizCtr.flip_quiz .top-desc {
	line-height: 36px;
	height: 36px;
	background: rgba(0, 0, 0, .45);
	font-size: 18px;
}

.wq_quizCtr.flip_quiz .wq-share {
	margin-top: 20px;
}

.wq-swiper {
	overflow: hidden;
	padding: 50px 0;
	position: relative;
	opacity: 0;
	transition: opacity .1s ease-in-out;
	margin: 0 auto;
}

.wq-swiper.loaded {
	opacity: 1;
}

.wq-swiper.moving {
	transition: none;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.wq-swiper .wq-swiper-like-icon, .wq-swiper .wq-swiper-dislike-icon {
	position: absolute;
	top: 25px;
	right: 25px;
	z-index: 4;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 1em;
	display: block;
	background: #f44336;
	color: #fff;
	border-radius: 5em;
	opacity: 0;
}

.wq-swiper .wq-swiper-like-icon:after, .wq-swiper .wq-swiper-dislike-icon:after {
	width: 18px;
	height: 18px;
	top: 10px;
	left: 10px;
	background-position: -31px -31px;
}

.wq-swiper .wq-swiper-like-icon {
	background: #4caf50;
	left: 25px;
	right: auto;
}

.wq-swiper .wq-swiper-like-icon:after {
	background-position: -3px -3px;
}

.wq-swiper .liked .wq-swiper-like-icon, .wq-swiper .disliked .wq-swiper-dislike-icon {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.wq-swiper-items {
	text-align: center;
	position: relative;
	z-index: 1;
	margin: auto;
}

.wq-swiper-item {
	display: block;
	overflow: hidden;
	position: absolute;
	will-change: transform;
	cursor: -webkit-grab;
	cursor: grab;
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	text-align: center;
	padding: 5px 5px 10px;
	background: #f9f9f9;
	color: #000;
	border: 1px solid rgba(96, 96, 96, .2);
	top: 40px;
	left: 0;
	box-sizing: border-box;
}

.wq-swiper-item:not(.moving) {
	-webkit-transform-origin: center top;
	transform-origin: center top;
	transition: all .2s linear;
}

.wq-swiper-item-image {
	position: relative;
}

.wq-swiper-item-image span {
	position: absolute;
	bottom: 0;
	right: 0;
	background: rgba(236, 240, 241, .65);
	padding: 0 9px;
	font-size: 12px;
	line-height: 20px;
	z-index: 5;
}

.wq-swiper-item-image img {
	height: 100%;
	width: 100%;
}

.wq-swiper-item-info {
	font-size: 18px;
	margin: 15px 0 5px;
	line-height: 1;
}

.wq-swiper-item-info:after {
	content: " ";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}

.wq-swiper-item-title {
	float: left;
	padding-left: 4px;
	color: var(--wq-font-color);
}

.wq-swiper-item-index {
	float: right;
	padding-right: 4px;
}

.wq-swiper-actions {
	text-align: center;
	width: 304px;
	padding-top: 20px;
	margin: 0 auto;
	overflow: hidden;
	max-width: 100%;
}

.wq-swiper-actions button {
	display: inline-block;
	color: #a7a7a7;
	margin: 10px;
	width: 40px;
	line-height: 40px;
	position: relative;
	text-align: center;
	border-radius: 50%;
	outline: none;
	box-shadow: 0 1px 2px #aaa, inset 0 2px 3px #fff;
	background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
	text-decoration: none;
	border-bottom: none;
	font-size: 24px;
	padding: 0;
}

.wq-swiper-actions button:hover, .wq-swiper-actions button:focus {
	background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
}

.wq-swiper-actions button i {
	color: #4caf50;
}

.wq-swiper-actions button i.fa-thumbs-o-down {
	color: #f44336;
}

.wq-swiper-actions button .sprite:after {
	width: 24px;
	height: 24px;
	top: -22px;
	left: -10px;
}

.wq-swiper-actions button .sprite.sprite-thumbs-down:after {
	top: -20px;
}

.wq-swiper-actions button .sprite-thumbs-down:after {
	background-position: -150px -3px;
}

.wq-swiper-actions button .sprite-thumbs-up:after {
	background-position: -3px -31px;
}

.wq-quiz-swiper .wq_QuestionWrapperSwiper {
	display: none;
}

.wq-quiz-swiper .wq_beginQuizSwiperCtr {
	color: white;
	background-color: var(--wq-font-color, #8bc34a);
	padding: 12px;
	margin: 30px 0 10px 0;
	border-radius: 4px;
	border: 0;
	font-size: 18px;
	box-shadow: none;
	cursor: pointer;
	font-weight: bold;
}

.wq-quiz-swiper .wq-results.wq_IsSwiperResult {
	width: 360px;
	margin: 0 auto;
	padding: 0;
	border: 0;
	float: none;
	background: transparent;
	border-bottom: 1px solid #ddd;
}

.wq-quiz-swiper .wq-results.wq_IsSwiperResult .wq_shareCtr {
	padding: 15px 0;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.wq-quiz-swiper .wq-results.wq_IsSwiperResult .wq_shareCtr button {
	float: none;
	display: inline-block;
	border-radius: 3px;
}

.wq-quiz-swiper .wq-results.wq_IsSwiperResult .wq_shareCtr button span {
	display: none;
}

.wq-quiz-swiper .wq_retakeSwiperBtn {
	color: #fff;
	background: #9e9e9e;
	cursor: pointer;
	padding: 10px;
	border: 1px solid #9e9e9e;
	border-radius: 3px;
	font-weight: bold;
	margin-top: 15px;
}

.wq-quiz-swiper .wq_retakeSwiperBtn:hover {
	background-color: #8bc34a;
	color: #fff;
	border-color: #8bc34a;
}

.wq-quiz-swiper .wq_IsSwiperResult .sprite-times:after {
	width: 12px;
	height: 12px;
	background-position: -22px -63px;
	position: inherit;
}

.wq-quiz-swiper .wq_IsSwiperResult .sprite-check:after {
	width: 15px;
	height: 15px;
	background-position: -3px -60px;
	position: inherit;
}

.wq-quiz-swiper .wq_IsSwiperResult .userVote .sprite-times:after {
	width: 12px;
	height: 12px;
	background-position: -170px -61px;
	position: inherit;
}

.wq-quiz-swiper .wq_IsSwiperResult .userVote .sprite-check:after {
	width: 15px;
	height: 15px;
	background-position: -149px -59px;
	position: inherit;
}

.wq-quiz-swiper .wq_IsSwiperResult h3 {
	font-size: 16px;
	padding: 12px;
	margin: 0;
	text-align: center;
	background-color: #8bc34a;
	border-radius: 4px 4px 0 0;
	color: #fff;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultItem {
	display: table;
	width: 100%;
	padding: 10px;
	border-bottom: 1px solid #dbdbdb;
	background-color: #fff;
	box-sizing: border-box;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultItem:last-child {
	border-bottom: 0;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultImageWrapper {
	display: table-cell;
	width: 35%;
	position: relative;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultImageWrapper img {
	width: 100%;
	height: 100px;
	vertical-align: middle;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultImageWrapper .indexWrapper {
	width: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #8bc34a;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultContent {
	display: table-cell;
	vertical-align: top;
	padding: 0 5px 0 20px;
	font-size: 15px;
	position: relative;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultContent i {
	color: #85c440;
	margin-right: 4px;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultContent i.fa-times {
	color: #f44336;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultContent>div:first-child {
	margin-top: -5px;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultUpVote, .wq-quiz-swiper .wq_IsSwiperResult .resultDownVote {
	font-weight: bold;
	margin-right: 14px;
}

.wq-quiz-swiper .wq_IsSwiperResult .wq_retakeSwiperWrapper {
	text-align: center;
}

.wq-quiz-swiper .wq_IsSwiperResult .userVote {
	color: #fff;
	text-align: center;
	bottom: 0;
	padding: 0 12px;
	border-radius: 20px;
	margin-top: 10px;
	float: left;
	width: auto;
	background: #8bc34a;
}

.wq-quiz-swiper .wq_IsSwiperResult .userVote.negativeVote {
	background: #ff5722;
}

.wq-quiz-swiper .wq_IsSwiperResult .resultList {
	width: 100%;
	max-height: 435px;
	overflow: auto;
	border: 1px solid #dbdbdb;
	border-top: 0;
	border-bottom: 0;
	box-sizing: border-box;
}

.wq-quiz-swiper .wq_swiperQuizPreviewInfoCtr {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}

.wq-quiz-swiper .wq_swiperQuizPreviewInfoCtr p {
	margin-bottom: 0;
}

.wq-quiz-swiper .wq-retake-quiz {
	display: block;
}

.wq-quiz-fb_quiz .wq_singleQuestionWrapper {
	text-align: center;
}

.wq-quiz-fb_quiz .wq_questionTextDescCtr {
	color: var(--wq-font-color);
}

.wq-quiz-fb_quiz .wq_questionsCtr {
	margin-bottom: 0;
}

.wq-quiz-fb_quiz .wq-results {
	margin-top: 0;
	border: 0;
	padding: 0;
	background: transparent;
}

.wq-quiz-fb_quiz .wq-results .wq_shareCtr {
	padding: 0 20px 20px;
}

.wq-quiz-fb_quiz .wq-results .wq_resultDesc {
	padding: 0 20px;
}

.wq-quiz-fb_quiz .wq_singleQuestionWrapper {
	position: relative;
}

.wq-quiz-fb_quiz .wq_loader-container {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	opacity: .9;
}

.wq-quiz-fb_quiz .wq_loader_text {
	padding-top: 30%;
}

.wq-quiz-fb_quiz .wq_loader-container {
	display: none;
}

.wq-quiz-fb_quiz .wq_loader-container img {
	width: 64px;
}

.wq-quiz-fb_quiz .wq_questionMediaCtr {
	margin: 25px auto;
}

.wq-quiz-fb_quiz .wq_questionImage {
	height: inherit;
}

.wq_quizCtr.listquiz_quiz .card {
	color: #fff;
}

.wq_quizCtr.listquiz_quiz .card:not(.no-image) {
	position: relative;
}

.wq_quizCtr.listquiz_quiz .card:not(.no-image) .desc {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
}

.wq_quizCtr.listquiz_quiz .wq_questionTextCtr {
	color: var(--wq-font-color);
	background-color: transparent;
	display: flex;
	align-items: center;
	padding: 0 0 12px;
	width: 100%;
}

.wq_quizCtr.listquiz_quiz .wq-question-number {
	color: #fff;
	background-color: var(--wq-question-color);
	height: 55px;
	line-height: 55px;
	flex-basis: 55px;
	font-size: 32px;
	margin-right: 15px;
	text-align: center;
}

.wq_quizCtr.listquiz_quiz .wq-question-bullet {
	width: 6px;
	height: 18px;
	margin-right: 15px;
	background-color: var(--wq-question-color);
}

.wq_quizCtr.listquiz_quiz .wq-question-title {
	flex: auto;
	padding: 0;
}

.wq_quizCtr.listquiz_quiz .wq-question-votes {
	flex: 0 0 auto;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-btn {
	float: left;
	height: 55px;
	width: 55px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, .05);
	padding: 3px 0 0;
	color: #333;
	border: 1px solid #dbdbdb;
	border-radius: 4px;
	line-height: 1;
	transition: all .1s linear;
	cursor: pointer;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-btn .icon {
	height: 0;
	width: 0;
	border: 6px solid transparent;
	display: block;
	transition: all .1s linear;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-btn .number {
	font-size: 15px;
	font-weight: 700;
	transition: all .1s linear;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-btn .text {
	font-size: 11px;
	font-weight: 400;
	transition: all .1s linear;
}

.wq_quizCtr.listquiz_quiz.wq-skin-flat .wq-question-vote-btn {
	background: transparent;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn .icon {
	border-top-color: #f44336;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn:not(.is-voted):not(:disabled):hover, .wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn:not(.is-voted):not(:disabled):focus {
	border-color: #f44336;
	color: #f44336;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn.is-voted {
	border-color: #f44336;
	background-color: #f44336;
	color: #fff;
	cursor: unset;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn.is-voted .icon {
	border-top-color: currentColor;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn.is-voted .text {
	color: currentColor;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn:disabled {
	cursor: unset;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn {
	margin-left: 6px;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn .icon {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-top-color: transparent;
	border-bottom-color: var(--wq-question-color);
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn:not(.is-voted):not(:disabled):hover, .wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn:not(.is-voted):not(:disabled):focus {
	border-color: var(--wq-question-color);
	color: var(--wq-question-color);
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn.is-voted {
	border-color: var(--wq-question-color);
	background-color: var(--wq-question-color);
	color: #fff;
	cursor: unset;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn.is-voted .icon {
	border-bottom-color: currentColor;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn.is-voted .text {
	color: currentColor;
}

.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn:disabled {
	cursor: unset;
}

.wq_quizCtr.listquiz_quiz .wq-results .wq_shareCtr {
	padding-top: 0;
}

.wq_quizCtr.listquiz_quiz .wq_singleQuestionWrapper {
	text-align: center;
	margin: 0 auto 30px;
	position: relative;
	clear: both;
	overflow: hidden;
	width: var(--wq-question-width);
	height: var(--wq-question-height);
}

.wq_quizCtr.listquiz_quiz .wq_singleQuestionWrapper:first-of-type {
	margin-top: 0;
}

.wq_quizCtr.listquiz_quiz .wq_singleQuestionWrapper:last-of-type {
	margin-bottom: 0;
}

.wq_quizCtr.listquiz_quiz .item_top {
	display: table;
	width: 100%;
}

.wq_quizCtr.listquiz_quiz .title_container {
	display: table-cell;
	text-align: left;
}

.wq_quizCtr.listquiz_quiz img {
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	vertical-align: middle;
}

.wq_quizCtr.listquiz_quiz .credits {
	color: #111;
}

.wq_quizCtr.listquiz_quiz .desc {
	text-align: center;
	width: 100%;
	height: 100%;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
	font-size: 34px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.wq_quizCtr.listquiz_quiz .top-desc {
	line-height: 36px;
	height: 36px;
	background: rgba(0, 0, 0, .45);
	font-size: 18px;
}

.wq_quizCtr.listquiz_quiz .wq-share {
	margin-top: 20px;
}

@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.aws-container .aws-search-form {
	position: relative;
	width: 100%;
	float: none !important;
	display: -webkit-box !important;
	display: -moz-box !important;
	display: -ms-flexbox !important;
	display: -webkit-flex !important;
	display: flex !important;
	align-items: stretch;
	height: 44px;
}

.aws-container .aws-search-form *, .aws-search-result {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-hyphens: manual;
	-webkit-hyphens: manual;
	hyphens: manual;
	border-radius: 0 !important;
}

.aws-container .aws-search-form .aws-loader, .aws-container .aws-search-form .aws-loader:after {
	border-radius: 50% !important;
	width: 20px;
	height: 20px;
}

.aws-container .aws-search-form .aws-wrapper {
	flex-grow: 1;
	position: relative;
	vertical-align: top;
	padding: 0;
	width: 100%;
	overflow: hidden;
}

.aws-container .aws-search-form .aws-loader {
	position: absolute;
	display: none;
	right: 10px;
	top: 50%;
	z-index: 999;
	margin: -10px 0 0;
	font-size: 10px;
	text-indent: -9999em;
	border-top: 3px solid #ededed;
	border-right: 3px solid #ededed;
	border-bottom: 3px solid #ededed;
	border-left: 3px solid #555;
}

.aws-container .aws-search-form.aws-processing .aws-loader {
	display: block;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 .7s infinite linear;
	animation: load8 .7s infinite linear;
}

.aws-container .aws-search-label {
	position: absolute !important;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.aws-container .aws-search-field {
	width: 100%;
	max-width: 100%;
	color: #313131;
	padding: 6px;
	line-height: 30px;
	display: block;
	font-size: 12px;
	position: relative;
	z-index: 2;
	-webkit-appearance: none;
	height: 100%;
	min-height: inherit;
	margin: 0 !important;
	border: 1px solid #d8d8d8;
	outline: 0;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (max-width:1024px) {
	.aws-container .aws-search-field {
		font-size: 16px;
	}
}

.aws-container .aws-search-field::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

.aws-container .aws-search-field::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

.aws-container .aws-search-field::-webkit-search-cancel-button, .aws-container .aws-search-field::-webkit-search-decoration, .aws-container .aws-search-field::-webkit-search-results-button, .aws-container .aws-search-field::-webkit-search-results-decoration {
	display: none;
}

.aws-container .aws-search-field:focus {
	background-color: #fff;
}

.aws-container .aws-show-clear .aws-search-field {
	padding-right: 40px;
}

.aws-container .aws-search-field:focus::-webkit-input-placeholder {
	color: transparent;
}

.aws-container .aws-search-field:focus:-moz-placeholder {
	color: transparent;
}

.aws-container .aws-search-field:focus::-moz-placeholder {
	color: transparent;
}

.aws-container .aws-search-field:focus:-ms-input-placeholder {
	color: transparent;
}

.aws-container .aws-search-form .aws-search-clear {
	display: none !important;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
	color: #757575;
	height: 100%;
	width: 38px;
	padding: 0 0 0 10px;
	text-align: left;
}

.aws-container .aws-search-form .aws-search-clear span {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 24px;
	top: 50%;
	margin-top: -12px;
}

.aws-container .aws-search-form.aws-show-clear.aws-form-active .aws-search-clear {
	display: block !important;
}

.aws-container .aws-search-form.aws-form-active.aws-processing .aws-search-clear {
	display: none !important;
}

.aws-container .aws-search-form .aws-search-btn {
	padding: 0;
	line-height: 10px;
	width: 42px;
}

.aws-container .aws-search-form .aws-search-btn_icon {
	display: inline-block;
	fill: currentColor;
	height: 24px;
	line-height: 24px;
	position: relative;
	width: 42px;
	color: #555;
}

.aws-container .aws-search-form .aws-search-btn svg {
	display: block;
	height: 100%;
	width: 100%;
}

.aws-container[data-show-page=false] .aws-search-form .aws-search-btn:hover {
	background: #ededed;
	cursor: default;
}

.aws-container .aws-search-form .aws-form-btn {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	background: #ededed;
	border: 1px solid #d8d8d8;
	margin: 0 0 0 -1px;
	cursor: pointer;
	position: relative;
	white-space: nowrap;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: background-color 100ms ease-in-out;
	-moz-transition: background-color 100ms ease-in-out;
	-o-transition: background-color 100ms ease-in-out;
	transition: background-color 100ms ease-in-out;
}

.aws-container .aws-search-form .aws-form-btn:hover {
	background: #dcdcdc;
}

.aws-container .aws-search-form .aws-form-btn:active {
	background: #d8d8d8;
}

.aws-container[data-buttons-order="3"] .aws-search-form .aws-wrapper {
	-webkit-order: 2;
	order: 2;
}

.aws-container[data-buttons-order="3"] .aws-search-form .aws-search-btn {
	margin: 0 -1px 0 0;
}

.aws-search-result {
	position: absolute;
	text-align: left;
	z-index: 9999999999999;
	background: #fff;
	width: 100%;
	margin-top: -1px;
	border: 1px solid #ccc;
	font-size: 12px;
	line-height: 16px;
}

.aws-search-result ul {
	list-style: none;
	padding: 0 !important;
	margin: 0 !important;
	max-height: 400px;
	overflow-y: auto;
}

.aws-search-result ul::-webkit-scrollbar-track {
	-webkit-box-shadow: none;
	background-color: #ededed;
}

.aws-search-result ul::-webkit-scrollbar {
	width: 7px;
	background-color: #ededed;
}

.aws-search-result ul::-webkit-scrollbar-thumb {
	background-color: #d8d8d8;
}

.aws-search-result ul li {
	list-style: none;
	border-bottom: 1px solid #ccc;
	overflow: hidden;
	margin: 0 !important;
	position: relative;
}

.aws-search-result ul li:last-child {
	border-bottom: 0;
}

.aws-search-result .aws_result_link {
	display: block;
	cursor: pointer;
	padding: 10px 8px;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	border: 0;
}

.aws-search-result .aws_top_text {
	width: 100%;
	padding: 10px 8px;
	border-bottom: 1px solid #ccc;
}

.aws-search-result .aws_result_item.hovered, .aws-search-result .aws_result_item:hover, .aws-search-result .aws_search_more a:hover {
	background: #f5f5f5;
}

.aws-search-result .aws_results .aws_result_item {
	position: relative;
}

.aws-search-result .aws_result_item .aws_result_link_top {
	position: absolute;
	z-index: 1;
	white-space: nowrap;
	text-indent: -9999px;
	overflow: hidden;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	outline: 0;
	text-decoration: none;
}

.aws-search-result .aws_result_item [data-link], .aws-search-result .aws_result_item a, .aws-search-result .aws_result_item button, .aws-search-result .aws_result_item span[href] {
	position: relative;
	z-index: 2;
}

.aws-search-result .aws_result_content {
	overflow: hidden;
	display: block;
}

.aws-search-result .aws_result_title {
	display: block;
	font-weight: 400;
	margin-bottom: 3px;
	color: #21759b;
}

.aws-search-result .aws_result_featured {
	margin: 0 6px 0 0;
	position: relative;
	top: -2px;
	left: 3px;
}

.aws-search-result .aws_result_featured svg {
	width: 13px;
	height: 13px;
	fill: #fa0;
	vertical-align: bottom;
}

.aws-search-result .aws_result_sku, .aws-search-result .aws_result_stock {
	display: block;
	font-weight: 400;
	margin-top: 4px;
	margin-bottom: 5px;
	color: #7ad03a;
}

.aws-search-result .aws_result_stock.out {
	color: #a44;
}

.aws-search-result .aws_result_sku {
	margin-top: 3px;
	color: #222;
}

.aws-search-result .aws_result_cat .aws_result_title, .aws-search-result .aws_result_tag .aws_result_title, .aws-search-result .aws_result_top_custom_item .aws_result_title {
	margin-bottom: 2px;
}

.aws-search-result .aws_result_excerpt {
	display: block;
	color: #222;
}

.aws-search-result .aws_result_price {
	display: block;
	padding: 2px 0;
	color: #222;
}

.aws-search-result .aws_result_price del {
	background: 0 0;
	padding: 0 12px 0 0;
	opacity: .8;
	text-decoration: line-through !important;
}

.aws-search-result .aws_result_price ins {
	background: 0 0;
	padding: 0 12px 0 0;
	opacity: 1;
}

.aws-search-result .aws_result_cats {
	display: block;
	float: left;
	margin: 0 20px 0 0;
}

.aws-search-result .aws_result_image {
	display: block;
	height: 100%;
	float: left;
	padding: 0 10px 0 0;
}

.aws-search-result .aws_result_image img {
	width: 50px;
	height: auto;
	box-shadow: none;
}

.aws-search-result .aws_result_sale {
	display: block;
	height: 42px;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: 47px;
}

.aws-search-result .aws_onsale {
	background: #77a464 0 0;
	color: #fff;
	display: block;
	float: right;
	height: 20px;
	padding-top: 2px;
	position: relative;
	right: -25px;
	text-align: center;
	top: 3px;
	transform: rotate(45deg);
	width: 77px;
}

.aws-search-result .aws_no_result {
	line-height: 1.5;
	padding: 10px 6px;
	cursor: auto;
}

.aws-search-result .aws_search_more a {
	line-height: 40px;
	display: block;
	text-decoration: none;
	border: 0;
	text-align: center;
	color: #21759b;
}

.aws-search-result .aws_terms_suggestions {
	line-height: 1.7;
}

.aws-search-result .aws_term_suggestion {
	color: #222;
	vertical-align: middle;
}

.aws-search-result a.aws_term_suggestion {
	color: #222;
	background: #ededed;
	border: 0;
	border-radius: 3px;
	font-size: 13px;
	padding: 2px 5px;
}

.aws-search-result a.aws_term_suggestion:hover {
	background-color: #dad8da;
}

body.aws-overlay {
	overflow: hidden !important;
	position: fixed;
	width: 100%;
}

.aws-container.aws-mobile-fixed {
	position: fixed !important;
	z-index: 9999999 !important;
	top: 10px !important;
	left: 20px !important;
	width: 100%;
	width: calc(100% - 40px) !important;
}

.aws-mobile-fixed-close {
	padding: 15px;
	margin-right: -10px;
	display: inline-block;
	float: right;
	cursor: pointer;
}

.aws-overlay-mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background: #fff;
	z-index: 9999998 !important;
}

.aws-overlay .aws-overlay-mask {
	opacity: 1;
}

.et_search_outer .aws-container {
	width: 60%;
}

.et_search_outer .aws-container .aws-search-form {
	max-width: 100% !important;
}

.et_vertical_nav .et_search_outer .aws-container {
	width: auto;
	margin: 0 20px 0 0;
}

.et_fixed_nav .et-fixed-header .et_search_outer .aws-container {
	top: 7px;
}

.et_pb_menu__search .aws-container {
	width: 100%;
}

#et-boc .aws-container .aws-search-field {
	border: 1px solid #d8d8d8;
	padding: 6px 15px;
}

#et-boc .aws-container .aws-search-form .aws-form-btn {
	background: #ededed;
	border: 1px solid #d8d8d8;
	margin: 0 0 0 -1px;
}

#et-boc .aws-container .aws-search-form .aws-wrapper .aws-loader {
	border-top: 3px solid #ededed;
	border-right: 3px solid #ededed;
	border-bottom: 3px solid #ededed;
	border-left: 3px solid #555;
	margin: -10px 0 0;
}

#et-boc .aws-container .aws-search-form .aws-search-clear span {
	margin-top: -12px;
}

#et-boc .aws-container .aws-search-form .aws-search-clear {
	padding: 0 0 0 10px;
}

.aws-search-result .aws_result_title .advanced-woo-labels {
	position: relative !important;
	width: auto !important;
	margin: 0 5px 5px 0 !important;
	transform: none !important;
}

.aws-search-result .aws_result_title .advanced-woo-labels:last-child {
	margin-bottom: 0 !important;
}

.aws-search-result .aws_result_title .aws_result_labels {
	display: flex;
	margin: 0 !important;
	flex-wrap: wrap;
	flex-direction: row;
	text-align: left;
	justify-content: flex-start;
}

.ppv-lightbox-overlay {
	background: rgba(0, 0, 0, .6);
	display: none;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 9999;
}

.ppv-lightbox-overlay.open {
	align-items: center;
	display: flex;
	justify-content: center;
}

.bplde-lightbox {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
	max-height: 90vh;
	max-width: 90vw;
	overflow: auto;
	padding: 20px;
	position: relative;
	width: 800px;
}

.bplde-lightbox .bplde-lightbox-body {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 550px;
	justify-content: center;
	margin-top: 35px;
}

.bplde-lightbox-close {
	background: transparent;
	border: none;
	color: #1a1818;
	cursor: pointer;
	font-size: 50px;
	position: absolute;
	right: 20px;
	top: -10px;
}

.bplde-lightbox .bplde-lightbox-body iframe {
	height: 600px;
	width: 100%;
}

.ppv-lightbox-btn {
	padding: .6em 1.1em;
}

.ppv-lightbox-btn:hover {
	text-decoration: none;
}

.ppv-lightbox-btn.small {
	font-size: 16px;
}

.ppv-lightbox-btn.medium {
	font-size: 20px;
}

.ppv-lightbox-btn.large {
	font-size: 30px;
}

.ppv-lightbox-btn.extra-large {
	font-size: 50px;
}

.ppv-lightbox-loading {
	animation: pvvspin 2s linear infinite;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top-color: #3498db;
	height: 120px;
	left: 42%;
	position: absolute;
	top: 45%;
	transform: translate(-50%, -50%);
	width: 120px;
}

@keyframes pvvspin {
	0% {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(1turn);
	}
}

.ppv-loading {
	left: 48%;
	position: absolute;
	top: 49%;
	z-index: 9999;
}

html.h5p-iframe, html.h5p-iframe > body {
	font-family: Sans-Serif;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.h5p-semi-fullscreen, .h5p-fullscreen, html.h5p-iframe .h5p-container {
	overflow: hidden;
}

.h5p-content {
	position: relative;
	background: #fefefe;
	border: 1px solid #eee;
	border-bottom: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.h5p-noselect {
	-khtml-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

html.h5p-iframe .h5p-content {
	font-size: 16px;
	line-height: 1.5em;
	width: 100%;
	height: auto;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

html.h5p-iframe .h5p-fullscreen .h5p-content, html.h5p-iframe .h5p-semi-fullscreen .h5p-content {
	height: 100%;
}

.h5p-content.h5p-no-frame, .h5p-fullscreen .h5p-content, .h5p-semi-fullscreen .h5p-content {
	border: 0;
}

.h5p-container {
	position: relative;
	z-index: 1;
}

.h5p-iframe-wrapper.h5p-fullscreen {
	background-color: #000;
}

body.h5p-semi-fullscreen {
	position: fixed;
	width: 100%;
	height: 100%;
}

.h5p-container.h5p-semi-fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
	width: 100%;
	height: 100%;
	background-color: #fff;
}

.h5p-content-controls {
	margin: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}

.h5p-fullscreen .h5p-content-controls {
	display: none;
}

.h5p-content-controls > a:link, .h5p-content-controls > a:visited, a.h5p-disable-fullscreen:link, a.h5p-disable-fullscreen:visited {
	color: #e5eef6;
}

.h5p-enable-fullscreen:before {
	font-family: "H5P";
	content: "";
}

.h5p-disable-fullscreen:before {
	font-family: "H5P";
	content: "";
}

.h5p-enable-fullscreen, .h5p-disable-fullscreen {
	cursor: pointer;
	color: #eee;
	background: #000;
	background: rgba(0, 0, 0, .3);
	line-height: .975em;
	font-size: 2em;
	width: 1.125em;
	height: 1em;
	text-indent: .04em;
}

.h5p-disable-fullscreen {
	line-height: .925em;
	width: 1.1em;
	height: .9em;
}

.h5p-enable-fullscreen:focus, .h5p-disable-fullscreen:focus {
	outline-style: solid;
	outline-width: 1px;
	outline-offset: .25em;
}

.h5p-enable-fullscreen:hover, .h5p-disable-fullscreen:hover {
	background: rgba(0, 0, 0, .5);
}

.h5p-semi-fullscreen .h5p-enable-fullscreen {
	display: none;
}

div.h5p-fullscreen {
	width: 100%;
	height: 100%;
}

.h5p-iframe-wrapper {
	width: auto;
	height: auto;
}

.h5p-fullscreen .h5p-iframe-wrapper, .h5p-semi-fullscreen .h5p-iframe-wrapper {
	width: 100%;
	height: 100%;
}

.h5p-iframe-wrapper.h5p-semi-fullscreen {
	width: auto;
	height: auto;
	background: black;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100001;
}

.h5p-iframe-wrapper.h5p-semi-fullscreen .buttons {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
}

.h5p-iframe-wrapper iframe.h5p-iframe {
	/* Hack for IOS landscape / portrait */
	width: 10px;
	min-width: 100%;
	/* End of hack */
	height: 100%;
	z-index: 10;
	overflow: hidden;
	border: 0;
	display: block;
}

.h5p-content ul.h5p-actions {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	list-style: none;
	padding: 0px 10px;
	margin: 0;
	height: 25px;
	font-size: 12px;
	background: #fafafa;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	clear: both;
	font-family: Sans-Serif;
}

.h5p-fullscreen .h5p-actions, .h5p-semi-fullscreen .h5p-actions {
	display: none;
}

.h5p-actions > .h5p-button {
	float: left;
	cursor: pointer;
	margin: 0 .5em 0 0;
	background: none;
	padding: 0 .75em 0 .25em;
	vertical-align: top;
	color: #707070;
	text-decoration: none;
	outline: none;
	line-height: 22px;
}

.h5p-actions button:hover {
	color: #333;
}

.h5p-actions button:active, .h5p-actions button:focus, .h5p-actions .h5p-link:active, .h5p-actions .h5p-link:focus {
	color: #666;
}

.h5p-actions button {
	display: inline-flex;
	padding: 0;
	margin: 0;
	color: #6a6a6a;
	position: relative;
	background: none;
	border: none;
	font: inherit;
	cursor: pointer;
	line-height: 2;
}

.h5p-actions button:focus, .h5p-actions .h5p-link:focus {
	outline-style: solid;
	outline-width: thin;
	outline-offset: -2px;
	outline-color: #5981a1;
}

.h5p-actions button:before {
	font-family: "H5P";
	font-size: 20px;
	line-height: 23px;
	vertical-align: bottom;
	padding-right: 0;
}

.h5p-actions > .h5p-button.h5p-export > button:before {
	content: "";
}

.h5p-actions > .h5p-button.h5p-copyrights > button:before {
	content: "";
}

.h5p-actions > .h5p-button.h5p-embed > button:before {
	content: "";
}

.h5p-actions .h5p-link {
	float: right;
	margin-right: 0;
	font-size: 2em;
	line-height: 23px;
	position: relative;
	color: #6a6a6a;
	text-decoration: none;
	outline: none;
}

.h5p-actions .h5p-link:before {
	font-family: "H5P";
	content: "";
	vertical-align: bottom;
}

.h5p-actions > li {
	margin: 0;
	list-style: none;
}

.h5p-popup-dialog {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	z-index: 100;
	padding: 2em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	opacity: 0;
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
	-o-transition: opacity .2s;
	transition: opacity .2s;
	background: #000;
	background: rgba(0, 0, 0, .75);
}

.h5p-popup-dialog.h5p-open {
	opacity: 1;
}

.h5p-popup-dialog .h5p-inner {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	background: #fff;
	height: 100%;
	max-height: 100%;
	position: relative;
}

.h5p-popup-dialog .h5p-inner > h2 {
	position: absolute;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	margin: 0;
	background: #eee;
	display: block;
	color: #656565;
	font-size: 1.25em;
	padding: .325em .5em .25em;
	line-height: 1.25em;
	border-bottom: 1px solid #ccc;
	z-index: 2;
}

.h5p-popup-dialog .h5p-inner > h2 > a {
	font-size: 12px;
	margin-left: 1em;
}

.h5p-embed-dialog .h5p-inner, .h5p-reuse-dialog .h5p-inner, .h5p-content-user-data-reset-dialog .h5p-inner {
	min-width: 316px;
	max-width: 400px;
	left: 50%;
	top: 50%;
	transform: translateX(-50%);
}

.h5p-embed-dialog .h5p-embed-code-container, .h5p-embed-size {
	resize: none;
	outline: none;
	width: 100%;
	padding: .375em .5em .25em;
	margin: 0;
	overflow: hidden;
	border: 1px solid #ccc;
	box-shadow: 0 1px 2px 0 #d0d0d0 inset;
	font-size: .875em;
	letter-spacing: .065em;
	font-family: sans-serif;
	white-space: pre;
	line-height: 1.5em;
	height: 2.0714em;
	background: #f5f5f5;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.h5p-embed-dialog .h5p-embed-code-container:focus {
	height: 5em;
}

.h5p-embed-size {
	width: 3.5em;
	text-align: right;
	margin: .5em 0;
	line-height: 2em;
}

.h5p-popup-dialog .h5p-scroll-content {
	border-top: 2.25em solid transparent;
	padding: 1em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #555;
	z-index: 1;
}

.h5p-popup-dialog.h5p-open .h5p-scroll-content {
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
	height: 100%;
}

.h5p-popup-dialog .h5p-scroll-content::-webkit-scrollbar {
	width: 8px;
}

.h5p-popup-dialog .h5p-scroll-content::-webkit-scrollbar-track {
	background: #e0e0e0;
}

.h5p-popup-dialog .h5p-scroll-content::-webkit-scrollbar-thumb {
	box-shadow: 0 0 10px #000 inset;
	border-radius: 4px;
}

.h5p-popup-dialog .h5p-close {
	cursor: pointer;
	cursor: pointer;
	font-size: 2em;
	position: absolute;
	right: 0;
	top: 0;
	width: 1.125em;
	height: 1.125em;
	line-height: 1.125em;
	color: #656565;
	text-indent: -.065em;
	z-index: 3;
}

.h5p-popup-dialog .h5p-close:after {
	font-family: "H5P";
	content: "";
}

.h5p-popup-dialog .h5p-close:hover:after, .h5p-popup-dialog .h5p-close:focus:after {
	color: #454545;
}

.h5p-popup-dialog .h5p-close:active:after {
	color: #252525;
}

.h5p-poopup-dialog h2 {
	margin: .25em 0 .5em;
}

.h5p-popup-dialog h3 {
	margin: .75em 0 .25em;
}

.h5p-popup-dialog dl {
	margin: .25em 0 .75em;
}

.h5p-popup-dialog dt {
	float: left;
	margin: 0 .75em 0 0;
}

.h5p-popup-dialog dt:after {
	content: ":";
}

.h5p-popup-dialog dd {
	margin: 0;
}

.h5p-expander {
	cursor: pointer;
	font-size: 1.125em;
	margin: .5em 0 0;
	display: inline-block;
}

.h5p-expander:before {
	content: "+";
	width: 1em;
	display: inline-block;
	font-weight: bold;
}

.h5p-expander.h5p-open:before {
	content: "-";
	text-indent: .125em;
}

.h5p-expander:hover, .h5p-expander:focus {
	color: #303030;
}

.h5p-expander:active {
	color: #202020;
}

.h5p-expander-content {
	display: none;
}

.h5p-expander-content p {
	margin: .5em 0;
}

.h5p-content-copyrights {
	border-left: .25em solid #d0d0d0;
	margin-left: .25em;
	padding-left: .25em;
}

.h5p-throbber {
	background: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/h5p/h5p-php-library/images/157612113ce533659b235a200c97c899.throbber.gif") 10px center no-repeat;
	padding-left: 38px;
	min-height: 30px;
	line-height: 30px;
}

.h5p-dialog-ok-button {
	cursor: default;
	float: right;
	outline: none;
	border: 2px solid #ccc;
	padding: .25em .75em .125em;
	background: #eee;
}

.h5p-dialog-ok-button:hover, .h5p-dialog-ok-button:focus {
	background: #fafafa;
}

.h5p-throbber.nitro-lazy {
	background: none !important;
}

.h5p-dialog-ok-button:active {
	background: #efe;
}

.h5p-big-button {
	line-height: 1.25;
	display: block;
	position: relative;
	cursor: pointer;
	width: 100%;
	padding: 1em 1em 1em 3.75em;
	text-align: left;
	border: 1px solid #dedede;
	background: linear-gradient(#fff, #f1f1f2);
	border-radius: .25em;
}

.h5p-big-button:before {
	font-family: "h5p";
	content: "";
	line-height: 1;
	font-size: 3em;
	color: #2747f7;
	position: absolute;
	left: .125em;
	top: .125em;
}

.h5p-copy-button:before {
	content: "";
}

.h5p-big-button:hover {
	border: 1px solid #2747f7;
	background: #eff1fe;
}

.h5p-big-button:active {
	border: 1px solid #dedede;
	background: #dfe4fe;
}

.h5p-button-title {
	color: #2747f7;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: .5em;
}

.h5p-button-description {
	color: #757575;
}

.h5p-horizontal-line-text {
	border-top: 1px solid #dadada;
	line-height: 1;
	color: #474747;
	text-align: center;
	position: relative;
	margin: 1.25em 0;
}

.h5p-horizontal-line-text > span {
	background: white;
	padding: .5em;
	position: absolute;
	top: -1em;
	left: 50%;
	transform: translateX(-50%);
}

.h5p-toast {
	font-size: .75em;
	background-color: rgba(0, 0, 0, .9);
	color: #fff;
	z-index: 110;
	position: absolute;
	padding: 0 .5em;
	line-height: 2;
	border-radius: 4px;
	white-space: nowrap;
	pointer-events: none;
	top: 0;
	opacity: 1;
	visibility: visible;
	transition: opacity 1s;
}

.h5p-toast-disabled {
	opacity: 0;
	visibility: hidden;
}

.h5p-content code, .h5peditor code {
	color: #3d3d3d;
	background: #e0e0e0;
	border-radius: 2px;
	padding: 0 5px;
}

.h5p-content pre > code, .h5peditor pre > code {
	background-color: #fafafa;
	padding: 5px;
	display: block;
	line-height: normal;
	border: 1px solid #c7c7c7;
	border-left-width: 4px;
	max-width: 100%;
	white-space: pre;
	overflow: auto;
}

/* This is loaded as part of Core and not Editor since this needs to be outside the editor iframe */
.h5peditor-semi-fullscreen {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 101;
}

iframe.h5peditor-semi-fullscreen {
	background: #fff;
	z-index: 100001;
}

.h5p-content.using-mouse *:not(textarea):focus {
	outline: none !important;
}

.h5p-content-hub-button:before {
	font-family: "h5p";
	margin-right: .5em;
	font-size: .7em;
	line-height: 1;
}

.h5p-content-hub-button.unpublish:before {
	content: "";
}

.h5p-content-hub-button.waiting:before, .h5p-content-hub-button.sync:before {
	content: "";
}

.h5p-content-hub-button.waiting:before {
	display: inline-block;
	animation: rotate 2s linear infinite;
}

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}

@charset "UTF-8";

/** THIS FILE IS AUTOMATICALLY GENERATED - DO NOT MAKE MANUAL EDITS! **/

/** Custom CSS should be added to Mega Menu > Menu Themes > Custom Styling **/
.mega-menu-last-modified-1761225109 {
	content: "Thursday 23rd October 2025 13:11:49 UTC";
}

#mega-menu-wrap-max_mega_menu_1, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_1 button.mega-close, #mega-menu-wrap-max_mega_menu_1 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_1:before, #mega-menu-wrap-max_mega_menu_1:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_1 button.mega-close:before, #mega-menu-wrap-max_mega_menu_1 button.mega-close:after, #mega-menu-wrap-max_mega_menu_1 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_1 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_1 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 {
		background: linear-gradient(to bottom, rgba(218, 218, 218, 0), rgba(243, 243, 243, 0));
	}
}

#mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation #mega-menu-max_mega_menu_1 a:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation #mega-menu-max_mega_menu_1 span:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation #mega-menu-max_mega_menu_1 input:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation #mega-menu-max_mega_menu_1 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation #mega-menu-max_mega_menu_1 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation #mega-menu-max_mega_menu_1 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 input, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link {
	line-height: 40px;
	height: 40px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: #fff;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #222;
		border-radius: 2px;
		line-height: 40px;
		height: 40px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: flex;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle + #mega-menu-max_mega_menu_1 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_1 {
		display: flex;
		visibility: visible;
	}
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

#mega-menu-wrap-max_mega_menu_1.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_1.mega-sticky #mega-menu-max_mega_menu_1 {
	background: linear-gradient(to bottom, rgba(218, 218, 218, 0), rgba(243, 243, 243, 0));
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1.mega-sticky #mega-menu-max_mega_menu_1 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_1.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_1.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1.mega-sticky #mega-menu-max_mega_menu_1:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_1.mega-sticky #mega-menu-max_mega_menu_1:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_1.mega-sticky #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_1.mega-sticky #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1.mega-sticky #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_1 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_1 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_1 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_1 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_2, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_2 button.mega-close, #mega-menu-wrap-max_mega_menu_2 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_2:before, #mega-menu-wrap-max_mega_menu_2:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_2 button.mega-close:before, #mega-menu-wrap-max_mega_menu_2 button.mega-close:after, #mega-menu-wrap-max_mega_menu_2 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_2 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_2 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 {
		background: linear-gradient(to bottom, rgba(218, 218, 218, 0), rgba(243, 243, 243, 0));
	}
}

#mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation #mega-menu-max_mega_menu_2 a:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation #mega-menu-max_mega_menu_2 span:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation #mega-menu-max_mega_menu_2 input:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation #mega-menu-max_mega_menu_2 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation #mega-menu-max_mega_menu_2 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation #mega-menu-max_mega_menu_2 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 input, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item > a.mega-menu-link {
	line-height: 40px;
	height: 40px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: #fff;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #222;
		border-radius: 2px;
		line-height: 40px;
		height: 40px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: flex;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle + #mega-menu-max_mega_menu_2 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_2 {
		display: flex;
		visibility: visible;
	}
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

#mega-menu-wrap-max_mega_menu_2.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_2.mega-sticky #mega-menu-max_mega_menu_2 {
	background: linear-gradient(to bottom, rgba(218, 218, 218, 0), rgba(243, 243, 243, 0));
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2.mega-sticky #mega-menu-max_mega_menu_2 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_2.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_2.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2.mega-sticky #mega-menu-max_mega_menu_2:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_2.mega-sticky #mega-menu-max_mega_menu_2:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_2.mega-sticky #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_2.mega-sticky #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2.mega-sticky #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_2 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_2 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_2 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_2 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_3, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_3 button.mega-close, #mega-menu-wrap-max_mega_menu_3 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_3:before, #mega-menu-wrap-max_mega_menu_3:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_3 button.mega-close:before, #mega-menu-wrap-max_mega_menu_3 button.mega-close:after, #mega-menu-wrap-max_mega_menu_3 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_3 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_3 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 {
		background: linear-gradient(to bottom, rgba(218, 218, 218, 0), rgba(243, 243, 243, 0));
	}
}

#mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation #mega-menu-max_mega_menu_3 a:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation #mega-menu-max_mega_menu_3 span:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation #mega-menu-max_mega_menu_3 input:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation #mega-menu-max_mega_menu_3 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation #mega-menu-max_mega_menu_3 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation #mega-menu-max_mega_menu_3 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 input, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item > a.mega-menu-link {
	line-height: 40px;
	height: 40px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: #fff;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #222;
		border-radius: 2px;
		line-height: 40px;
		height: 40px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: flex;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle + #mega-menu-max_mega_menu_3 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_3 {
		display: flex;
		visibility: visible;
	}
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

#mega-menu-wrap-max_mega_menu_3.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_3.mega-sticky #mega-menu-max_mega_menu_3 {
	background: linear-gradient(to bottom, rgba(218, 218, 218, 0), rgba(243, 243, 243, 0));
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3.mega-sticky #mega-menu-max_mega_menu_3 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_3.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_3.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3.mega-sticky #mega-menu-max_mega_menu_3:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_3.mega-sticky #mega-menu-max_mega_menu_3:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_3.mega-sticky #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_3.mega-sticky #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3.mega-sticky #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_3 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_3 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_3 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_3 #mega-menu-max_mega_menu_3 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_3 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_3 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_4, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_4 button.mega-close, #mega-menu-wrap-max_mega_menu_4 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 1.7;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_4:before, #mega-menu-wrap-max_mega_menu_4:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_4 button.mega-close:before, #mega-menu-wrap-max_mega_menu_4 button.mega-close:after, #mega-menu-wrap-max_mega_menu_4 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_4 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_4 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation #mega-menu-max_mega_menu_4 a:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation #mega-menu-max_mega_menu_4 span:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation #mega-menu-max_mega_menu_4 input:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation #mega-menu-max_mega_menu_4 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation #mega-menu-max_mega_menu_4 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation #mega-menu-max_mega_menu_4 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #333;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	border-color: #fff;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 {
	text-align: right;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link {
	cursor: pointer;
	display: inline;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 input, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 0px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item {
	margin: 0 0px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 0px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #333;
		color: #fff;
		font-weight: normal;
		text-decoration: none;
		border-color: #fff;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #333;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	border-color: #fff;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #333;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	border-color: #fff;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item > a.mega-menu-link {
	line-height: 40px;
	height: 40px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #fff;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: rgba(0, 0, 0, 0);
	border: 0;
	border-radius: 0px;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: #fff;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 0px;
	background: #f1f1f1;
	border: 0;
	padding: 0px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle ~ button.mega-close {
	right: auto;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #222;
		border-radius: 2px;
		line-height: 40px;
		height: 40px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: flex;
		position: relative;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle + #mega-menu-max_mega_menu_4 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: none;
		display: flex;
		position: fixed;
		width: 300px;
		max-width: 100%;
		height: 100dvh;
		max-height: 100dvh;
		top: 0;
		box-sizing: border-box;
		transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out;
		overflow-y: auto;
		overflow-x: hidden;
		z-index: 9999999999;
		overscroll-behavior: contain;
		visibility: hidden;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_4 {
		display: flex;
		visibility: visible;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle ~ button.mega-close {
		display: flex;
		position: fixed;
		top: 0;
		z-index: 99999999999;
		cursor: pointer;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle ~ button.mega-close:before {
		display: flex;
		content: "";
		font-family: dashicons;
		font-weight: normal;
		color: #fff;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle + #mega-menu-max_mega_menu_4 {
		left: -300px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle.mega-menu-open ~ button.mega-close {
		visibility: visible;
		opacity: 1;
		left: calc(min(100vw - 40px, 300px));
		right: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_4 {
		left: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle.mega-menu-open:after {
		position: fixed;
		width: 100%;
		height: 99999px;
		content: "";
		top: 0;
		left: 0;
		opacity: .5;
		background: black;
		cursor: pointer;
		z-index: 9999999998;
	}
}

html.mega-menu-max_mega_menu_4-off-canvas-open {
	overflow: hidden;
	height: auto;
}

html.mega-menu-max_mega_menu_4-off-canvas-open body {
	overflow: hidden;
	height: auto;
}

html.mega-menu-max_mega_menu_4-off-canvas-open #wpadminbar {
	z-index: 0;
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

#mega-menu-wrap-max_mega_menu_4.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_4.mega-sticky #mega-menu-max_mega_menu_4 {
	background: #222;
}

#mega-menu-wrap-max_mega_menu_4.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_4.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4.mega-sticky #mega-menu-max_mega_menu_4:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_4.mega-sticky #mega-menu-max_mega_menu_4:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_4.mega-sticky #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_4.mega-sticky #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4.mega-sticky #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 0px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 0px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_4 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_4 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_4 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 0px 0px 0px 0px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_4 #mega-menu-max_mega_menu_4 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_4 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_4 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_5, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_5 button.mega-close, #mega-menu-wrap-max_mega_menu_5 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_5:before, #mega-menu-wrap-max_mega_menu_5:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_5 button.mega-close:before, #mega-menu-wrap-max_mega_menu_5 button.mega-close:after, #mega-menu-wrap-max_mega_menu_5 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_5 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_5 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 {
		background: linear-gradient(to bottom, rgba(218, 218, 218, 0), rgba(243, 243, 243, 0));
	}
}

#mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation #mega-menu-max_mega_menu_5 a:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation #mega-menu-max_mega_menu_5 span:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation #mega-menu-max_mega_menu_5 input:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation #mega-menu-max_mega_menu_5 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation #mega-menu-max_mega_menu_5 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation #mega-menu-max_mega_menu_5 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 input, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item > a.mega-menu-link {
	line-height: 40px;
	height: 40px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: #fff;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle ~ button.mega-close {
	right: auto;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #222;
		border-radius: 2px;
		line-height: 40px;
		height: 40px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: flex;
		position: relative;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle + #mega-menu-max_mega_menu_5 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: none;
		display: flex;
		position: fixed;
		width: 300px;
		max-width: 100%;
		height: 100dvh;
		max-height: 100dvh;
		top: 0;
		box-sizing: border-box;
		transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out;
		overflow-y: auto;
		overflow-x: hidden;
		z-index: 9999999999;
		overscroll-behavior: contain;
		visibility: hidden;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_5 {
		display: flex;
		visibility: visible;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle ~ button.mega-close {
		display: flex;
		position: fixed;
		top: 0;
		z-index: 99999999999;
		cursor: pointer;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle ~ button.mega-close:before {
		display: flex;
		content: "";
		font-family: dashicons;
		font-weight: normal;
		color: #fff;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle + #mega-menu-max_mega_menu_5 {
		left: -300px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle.mega-menu-open ~ button.mega-close {
		visibility: visible;
		opacity: 1;
		left: calc(min(100vw - 40px, 300px));
		right: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_5 {
		left: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle.mega-menu-open:after {
		position: fixed;
		width: 100%;
		height: 99999px;
		content: "";
		top: 0;
		left: 0;
		opacity: .5;
		background: black;
		cursor: pointer;
		z-index: 9999999998;
	}
}

html.mega-menu-max_mega_menu_5-off-canvas-open {
	overflow: hidden;
	height: auto;
}

html.mega-menu-max_mega_menu_5-off-canvas-open body {
	overflow: hidden;
	height: auto;
}

html.mega-menu-max_mega_menu_5-off-canvas-open #wpadminbar {
	z-index: 0;
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

#mega-menu-wrap-max_mega_menu_5.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_5.mega-sticky #mega-menu-max_mega_menu_5 {
	background: linear-gradient(to bottom, rgba(218, 218, 218, 0), rgba(243, 243, 243, 0));
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5.mega-sticky #mega-menu-max_mega_menu_5 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_5.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_5.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5.mega-sticky #mega-menu-max_mega_menu_5:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_5.mega-sticky #mega-menu-max_mega_menu_5:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_5.mega-sticky #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_5.mega-sticky #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5.mega-sticky #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_5 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_5 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_5 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: #fff;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_5 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_5 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_6, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_6 button.mega-close, #mega-menu-wrap-max_mega_menu_6 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_6:before, #mega-menu-wrap-max_mega_menu_6:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_6 button.mega-close:before, #mega-menu-wrap-max_mega_menu_6 button.mega-close:after, #mega-menu-wrap-max_mega_menu_6 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_6 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_6 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 {
		background: transparent;
	}
}

#mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation #mega-menu-max_mega_menu_6 a:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation #mega-menu-max_mega_menu_6 span:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation #mega-menu-max_mega_menu_6 input:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation #mega-menu-max_mega_menu_6 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation #mega-menu-max_mega_menu_6 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation #mega-menu-max_mega_menu_6 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 input, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item > a.mega-menu-link {
	line-height: 40px;
	height: 40px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: white;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle ~ button.mega-close {
	right: auto;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #222;
		border-radius: 2px;
		line-height: 40px;
		height: 40px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: flex;
		position: relative;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle + #mega-menu-max_mega_menu_6 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: none;
		display: flex;
		position: fixed;
		width: 300px;
		max-width: 100%;
		height: 100dvh;
		max-height: 100dvh;
		top: 0;
		box-sizing: border-box;
		transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out;
		overflow-y: auto;
		overflow-x: hidden;
		z-index: 9999999999;
		overscroll-behavior: contain;
		visibility: hidden;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_6 {
		display: flex;
		visibility: visible;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle ~ button.mega-close {
		display: flex;
		position: fixed;
		top: 0;
		z-index: 99999999999;
		cursor: pointer;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle ~ button.mega-close:before {
		display: flex;
		content: "";
		font-family: dashicons;
		font-weight: normal;
		color: white;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle + #mega-menu-max_mega_menu_6 {
		left: -300px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle.mega-menu-open ~ button.mega-close {
		visibility: visible;
		opacity: 1;
		left: calc(min(100vw - 40px, 300px));
		right: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_6 {
		left: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle.mega-menu-open:after {
		position: fixed;
		width: 100%;
		height: 99999px;
		content: "";
		top: 0;
		left: 0;
		opacity: .5;
		background: black;
		cursor: pointer;
		z-index: 9999999998;
	}
}

html.mega-menu-max_mega_menu_6-off-canvas-open {
	overflow: hidden;
	height: auto;
}

html.mega-menu-max_mega_menu_6-off-canvas-open body {
	overflow: hidden;
	height: auto;
}

html.mega-menu-max_mega_menu_6-off-canvas-open #wpadminbar {
	z-index: 0;
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

#mega-menu-wrap-max_mega_menu_6.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_6.mega-sticky #mega-menu-max_mega_menu_6 {
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6.mega-sticky #mega-menu-max_mega_menu_6 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_6.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_6.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6.mega-sticky #mega-menu-max_mega_menu_6:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_6.mega-sticky #mega-menu-max_mega_menu_6:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 40px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_6.mega-sticky #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_6.mega-sticky #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6.mega-sticky #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_6 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_6 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_6 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_6 #mega-menu-max_mega_menu_6 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_6 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_6 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_7, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_7 button.mega-close, #mega-menu-wrap-max_mega_menu_7 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_7:before, #mega-menu-wrap-max_mega_menu_7:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_7 button.mega-close:before, #mega-menu-wrap-max_mega_menu_7 button.mega-close:after, #mega-menu-wrap-max_mega_menu_7 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_7 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_7 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 {
		background: transparent;
	}
}

#mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation #mega-menu-max_mega_menu_7 a:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation #mega-menu-max_mega_menu_7 span:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation #mega-menu-max_mega_menu_7 input:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation #mega-menu-max_mega_menu_7 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation #mega-menu-max_mega_menu_7 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation #mega-menu-max_mega_menu_7 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 input, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item > a.mega-menu-link {
	line-height: 50px;
	height: 50px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: white;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle ~ button.mega-close {
	right: auto;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #81a133;
		border-radius: 2px;
		line-height: 50px;
		height: 50px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle + #mega-menu-max_mega_menu_7 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: flex;
	}
	
	#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_7 {
		display: flex;
		visibility: visible;
	}
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-block-1 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-block-1:before {
	content: "";
	font-family: "dashicons";
	font-size: 34px;
	color: white;
	margin: 0 5px 0 0;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {
	color: white;
	font-size: 20px;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-open {
	display: none;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-closed {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:before {
	content: "";
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-open {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-closed {
	display: none;
}

#mega-menu-wrap-max_mega_menu_7.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_7.mega-sticky #mega-menu-max_mega_menu_7 {
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7.mega-sticky #mega-menu-max_mega_menu_7 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_7.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_7.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7.mega-sticky #mega-menu-max_mega_menu_7:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_7.mega-sticky #mega-menu-max_mega_menu_7:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_7.mega-sticky #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_7.mega-sticky #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7.mega-sticky #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_7 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_7 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_7 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_7 #mega-menu-max_mega_menu_7 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_7 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_7 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_8, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_8 button.mega-close, #mega-menu-wrap-max_mega_menu_8 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_8:before, #mega-menu-wrap-max_mega_menu_8:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_8 button.mega-close:before, #mega-menu-wrap-max_mega_menu_8 button.mega-close:after, #mega-menu-wrap-max_mega_menu_8 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_8 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_8 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 {
		background: transparent;
	}
}

#mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation #mega-menu-max_mega_menu_8 a:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation #mega-menu-max_mega_menu_8 span:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation #mega-menu-max_mega_menu_8 input:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation #mega-menu-max_mega_menu_8 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation #mega-menu-max_mega_menu_8 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation #mega-menu-max_mega_menu_8 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 input, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item > a.mega-menu-link {
	line-height: 50px;
	height: 50px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: white;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle ~ button.mega-close {
	right: auto;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #81a133;
		border-radius: 2px;
		line-height: 50px;
		height: 50px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: flex;
		position: relative;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle + #mega-menu-max_mega_menu_8 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: none;
		display: flex;
		position: absolute;
		position: fixed;
		width: 100%;
		width: 300px;
		z-index: 9999999;
		z-index: 9999999999;
		max-width: 100%;
		height: 100dvh;
		max-height: 100dvh;
		top: 0;
		box-sizing: border-box;
		transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out;
		overflow-y: auto;
		overflow-x: hidden;
		overscroll-behavior: contain;
		visibility: hidden;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_8 {
		display: flex;
		visibility: visible;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle ~ button.mega-close {
		display: flex;
		position: fixed;
		top: 0;
		z-index: 99999999999;
		cursor: pointer;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle ~ button.mega-close:before {
		display: flex;
		content: "";
		font-family: dashicons;
		font-weight: normal;
		color: white;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle + #mega-menu-max_mega_menu_8 {
		left: -300px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle.mega-menu-open ~ button.mega-close {
		visibility: visible;
		opacity: 1;
		left: calc(min(100vw - 40px, 300px));
		right: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_8 {
		left: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle.mega-menu-open:after {
		position: fixed;
		width: 100%;
		height: 99999px;
		content: "";
		top: 0;
		left: 0;
		opacity: .5;
		background: black;
		cursor: pointer;
		z-index: 9999999998;
	}
}

html.mega-menu-max_mega_menu_8-off-canvas-open {
	overflow: hidden;
	height: auto;
}

html.mega-menu-max_mega_menu_8-off-canvas-open body {
	overflow: hidden;
	height: auto;
}

html.mega-menu-max_mega_menu_8-off-canvas-open #wpadminbar {
	z-index: 0;
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-block-1 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-block-1:before {
	content: "";
	font-family: "dashicons";
	font-size: 24px;
	color: #ddd;
	margin: 0 5px 0 0;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {
	color: #ddd;
	font-size: 14px;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-open {
	display: none;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-closed {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:before {
	content: "";
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-open {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-closed {
	display: none;
}

#mega-menu-wrap-max_mega_menu_8.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_8.mega-sticky #mega-menu-max_mega_menu_8 {
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8.mega-sticky #mega-menu-max_mega_menu_8 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_8.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_8.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8.mega-sticky #mega-menu-max_mega_menu_8:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_8.mega-sticky #mega-menu-max_mega_menu_8:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_8.mega-sticky #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_8.mega-sticky #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8.mega-sticky #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_8 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_8 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_8 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_8 #mega-menu-max_mega_menu_8 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_8 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_8 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_9, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_9 button.mega-close, #mega-menu-wrap-max_mega_menu_9 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_9:before, #mega-menu-wrap-max_mega_menu_9:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_9 button.mega-close:before, #mega-menu-wrap-max_mega_menu_9 button.mega-close:after, #mega-menu-wrap-max_mega_menu_9 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_9 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_9 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 {
		background: transparent;
	}
}

#mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation #mega-menu-max_mega_menu_9 a:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation #mega-menu-max_mega_menu_9 span:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation #mega-menu-max_mega_menu_9 input:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation #mega-menu-max_mega_menu_9 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation #mega-menu-max_mega_menu_9 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation #mega-menu-max_mega_menu_9 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 input, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item > a.mega-menu-link {
	line-height: 50px;
	height: 50px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: white;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle ~ button.mega-close {
	right: auto;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #81a133;
		border-radius: 5px;
		line-height: 50px;
		height: 50px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle + #mega-menu-max_mega_menu_9 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: flex;
	}
	
	#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_9 {
		display: flex;
		visibility: visible;
	}
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-block-1 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-block-1:before {
	content: "";
	font-family: "dashicons";
	font-size: 34px;
	color: white;
	margin: 0 5px 0 0;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {
	color: white;
	font-size: 20px;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-open {
	display: none;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-closed {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:before {
	content: "";
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-open {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-closed {
	display: none;
}

#mega-menu-wrap-max_mega_menu_9.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_9.mega-sticky #mega-menu-max_mega_menu_9 {
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9.mega-sticky #mega-menu-max_mega_menu_9 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_9.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_9.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9.mega-sticky #mega-menu-max_mega_menu_9:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_9.mega-sticky #mega-menu-max_mega_menu_9:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_9.mega-sticky #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_9.mega-sticky #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9.mega-sticky #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_9 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_9 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_9 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_9 #mega-menu-max_mega_menu_9 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_9 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_9 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_10, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_10 button.mega-close, #mega-menu-wrap-max_mega_menu_10 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_10:before, #mega-menu-wrap-max_mega_menu_10:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_10 button.mega-close:before, #mega-menu-wrap-max_mega_menu_10 button.mega-close:after, #mega-menu-wrap-max_mega_menu_10 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_10 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_10 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 {
		background: transparent;
	}
}

#mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation #mega-menu-max_mega_menu_10 a:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation #mega-menu-max_mega_menu_10 span:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation #mega-menu-max_mega_menu_10 input:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation #mega-menu-max_mega_menu_10 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation #mega-menu-max_mega_menu_10 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation #mega-menu-max_mega_menu_10 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 input, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item > a.mega-menu-link {
	line-height: 50px;
	height: 50px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: white;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle ~ button.mega-close {
	right: auto;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #81a133;
		border-radius: 2px;
		line-height: 50px;
		height: 50px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle + #mega-menu-max_mega_menu_10 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: flex;
	}
	
	#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_10 {
		display: flex;
		visibility: visible;
	}
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

#mega-menu-wrap-max_mega_menu_10.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_10.mega-sticky #mega-menu-max_mega_menu_10 {
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10.mega-sticky #mega-menu-max_mega_menu_10 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_10.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_10.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10.mega-sticky #mega-menu-max_mega_menu_10:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_10.mega-sticky #mega-menu-max_mega_menu_10:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_10.mega-sticky #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_10.mega-sticky #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10.mega-sticky #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_10 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_10 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_10 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_10 #mega-menu-max_mega_menu_10 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_10 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_10 {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_11, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-row, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-column, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge, #mega-menu-wrap-max_mega_menu_11 button.mega-close, #mega-menu-wrap-max_mega_menu_11 button.mega-toggle-standard {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 2;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
	-webkit-tap-highlight-color: transparent;
}

#mega-menu-wrap-max_mega_menu_11:before, #mega-menu-wrap-max_mega_menu_11:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 ul.mega-sub-menu:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 ul.mega-sub-menu:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-row:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-row:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-column:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-column:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge:after, #mega-menu-wrap-max_mega_menu_11 button.mega-close:before, #mega-menu-wrap-max_mega_menu_11 button.mega-close:after, #mega-menu-wrap-max_mega_menu_11 button.mega-toggle-standard:before, #mega-menu-wrap-max_mega_menu_11 button.mega-toggle-standard:after {
	display: none;
}

#mega-menu-wrap-max_mega_menu_11 {
	border-radius: 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 {
		background: transparent;
	}
}

#mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation #mega-menu-max_mega_menu_11 a:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation #mega-menu-max_mega_menu_11 span:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation #mega-menu-max_mega_menu_11 input:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation #mega-menu-max_mega_menu_11 li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation #mega-menu-max_mega_menu_11 form.mega-search-open:has(input[type=text]:focus), #mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation #mega-menu-max_mega_menu_11 + button.mega-close:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 {
	text-align: left;
	padding: 0px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link {
	cursor: pointer;
	display: inline;
	transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 p {
	margin-bottom: 10px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 input, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 img {
	max-width: 100%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 5px 5px 0px 0px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item {
	margin: 0 3px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 3px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item > a.mega-menu-link:focus {
		background: #f0f0f0;
		color: #333;
		font-weight: normal;
		text-decoration: none;
		border-color: #222;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #f0f0f0;
	color: #333;
	font-weight: normal;
	text-decoration: none;
	border-color: #222;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: white;
		background: #333;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item > a.mega-menu-link {
	line-height: 50px;
	height: 50px;
	padding: 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #222;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: white;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: white;
		font-size: 14px;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 5px;
	background: #f1f1f1;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 1px solid #222;
	padding: 5px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px;
	vertical-align: top;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard.mega-menu-clear, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: transparent;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
	margin-left: auto;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle {
	display: none;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle ~ button.mega-close {
	visibility: hidden;
	opacity: 0;
	transition: left 200ms ease-in-out, right 200ms ease-in-out, visibility 200ms ease-in-out, opacity 200ms ease-out;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle ~ button.mega-close {
	right: auto;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle {
		z-index: 1;
		cursor: pointer;
		background: #81a133;
		border-radius: 2px;
		line-height: 50px;
		height: 50px;
		text-align: left;
		user-select: none;
		outline: none;
		white-space: nowrap;
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle img {
		max-width: 100%;
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-right {
		display: flex;
		flex-basis: 33.33%;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block {
		display: flex;
		height: 100%;
		outline: 0;
		align-self: center;
		flex-shrink: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-left {
		flex: 1;
		justify-content: flex-start;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-center {
		justify-content: center;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
		margin-left: 3px;
		margin-right: 3px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-right {
		flex: 1;
		justify-content: flex-end;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
		margin-right: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
		margin-left: 6px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle + #mega-menu-max_mega_menu_11 {
		flex-direction: column;
		flex-wrap: nowrap;
		background: #222;
		padding: 0px;
		display: flex;
	}
	
	#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_11 {
		display: flex;
		visibility: visible;
	}
}

html[class$="-off-canvas-open"] #header_meta {
	z-index: 1;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

#mega-menu-wrap-max_mega_menu_11.mega-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	opacity: 1;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

#mega-menu-wrap-max_mega_menu_11.mega-sticky #mega-menu-max_mega_menu_11 {
	background: transparent;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11.mega-sticky #mega-menu-max_mega_menu_11 {
		background: #222;
	}
}

#mega-menu-wrap-max_mega_menu_11.mega-stuck {
	transition: transform .25s ease-in-out;
}

#mega-menu-wrap-max_mega_menu_11.mega-stuck.mega-hide {
	transform: translateY(-100%);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11.mega-sticky #mega-menu-max_mega_menu_11:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px);
		overflow: auto;
	}
	
	body.admin-bar #mega-menu-wrap-max_mega_menu_11.mega-sticky #mega-menu-max_mega_menu_11:not([data-effect-mobile^="slide_"]) {
		max-height: calc(100vh - 50px - 42px);
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-show-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_11.mega-sticky #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-hide-when-sticky {
	display: none;
}

#mega-menu-wrap-max_mega_menu_11.mega-sticky #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-show-when-sticky {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11.mega-sticky #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-show-when-sticky.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 a.mega-custom-icon.mega-menu-link:before {
	transition: background 200ms linear;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item a[class^="genericon"]:before {
	font-family: genericons;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical > li.mega-menu-megamenu > ul.mega-sub-menu {
		width: 600px;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical > li.mega-menu-megamenu.mega-menu-item, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical > li.mega-menu-flyout.mega-menu-item {
	position: relative;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children li.mega-menu-item a.mega-menu-link {
		text-align: left;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-right.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-right.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: left;
		margin-left: auto;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-left.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-align-bottom-left.mega-menu-flyout li.mega-menu-item-has-children.mega-icon-left > a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-right > ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item.mega-icon-left > a.mega-menu-link:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item.mega-icon-left > a.mega-menu-link:before {
	float: left;
	margin: 0 6px 0 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-megamenu.mega-align-bottom-left > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-vertical li.mega-menu-flyout.mega-align-bottom-left li.mega-menu-item ul.mega-sub-menu li.mega-menu-item > ul.mega-sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion {
	flex-direction: column;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-item {
	display: list-item;
	margin: 0;
	margin: 0 0 3px 0;
	clear: both;
	width: 100%;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-item > a.mega-menu-link {
	height: auto;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: list-item;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-megamenu > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu {
	position: static;
	width: 100% !important;
	padding: 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: static;
	left: 0;
	width: 100%;
	border: 0;
	box-shadow: none;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 20px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 30px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion > li.mega-menu-flyout > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
	padding-left: 40px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion li.mega-menu-item > ul.mega-sub-menu {
	display: none;
	visibility: visible;
	opacity: 1;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	display: block;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
		margin-left: auto;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11.mega-menu-accordion li.mega-menu-item li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 img.mmm_gravatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
	display: inline-block;
	max-height: 100%;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-bp-profile-nav img.avatar, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 img.mmm_gravatar {
		max-height: 90%;
		width: auto;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 img.avatar {
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#mega-menu-wrap-max_mega_menu_11 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-logo, #mega-menu-wrap-max_mega_menu_11 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-logo {
	background: inherit;
}

#mega-menu-wrap-max_mega_menu_11 li.mega-menu-item img.mega-menu-logo {
	display: inline;
	vertical-align: middle;
	max-height: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 li.mega-menu-item img.mega-menu-logo {
		max-height: 90%;
		width: auto;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect-mobile^="slide_"] li.mega-menu-item a.mega-menu-link.mega-menu-logo {
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
		justify-content: center;
		height: auto;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 0;
	flex-direction: column;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transition: opacity 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu {
		transform: translate(0, 0);
		transition: none;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu > li {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11[data-effect="slide_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition).mega-toggle-on > ul.mega-sub-menu > li {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
	width: 100%;
	padding: 0;
	position: static;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	display: flex;
	width: 20%;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	min-height: 35px;
	height: fit-content;
	align-items: center;
	text-decoration: none;
	text-transform: none;
	margin: 0;
	border: 0;
	cursor: pointer;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator {
	margin-left: auto;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > .mega-indicator:after {
		content: "";
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 80%;
	float: left;
	clear: none;
	position: absolute;
	top: 0;
	left: 20%;
	visibility: hidden;
	border-left: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	flex-direction: row;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		min-height: 100%;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	padding: 15px 15px 15px 15px;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 0;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
		display: none;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu ul.mega-sub-menu, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed ul.mega-sub-menu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu {
		padding: 0;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		padding: 0;
		position: static;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		float: left;
		background: #f1f1f1;
		color: #666;
		font-family: inherit;
		font-size: 14px;
		font-weight: normal;
		padding: 0px 10px 0px 10px;
		line-height: 35px;
		text-decoration: none;
		text-transform: none;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		position: relative;
		top: 0;
		left: auto;
		border-left: 0;
		padding: 10px;
	}
	
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		margin-left: 0;
	}
}

/** Use FA6 for icons **/
#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.far:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fa-regular:before {
	font: var(--fa-font-regular);
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fas:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fa-solid:before {
	font: var(--fa-font-solid);
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fal:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fa-light:before {
	font: var(--fa-font-light);
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fa-sharp.fa-regular:before {
	font: var(--fa-font-sharp-regular);
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fa-sharp.fa-solid:before {
	font: var(--fa-font-sharp-solid);
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fa-sharp.fa-light:before {
	font: var(--fa-font-sharp-light);
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fa-kit:before {
	font-family: "Font Awesome Kit";
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6.fab:before {
	font: var(--fa-font-brands);
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item > a.fa6:before {
	vertical-align: unset;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-icon-left > a.fas.fa6:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-icon-left > a.fab.fa6:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-icon-left > a.far.fa6:before, #mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 li.mega-menu-item.mega-icon-left > a.fal.fa6:before {
	width: 1.25em;
	text-align: center;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge {
	border-radius: 2px;
	display: inline-flex;
	line-height: normal;
	padding: 1px 4px 1px 4px;
	top: -7px;
	margin: 0 0 0 6px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge.mega-hide-on-mobile {
		display: none;
	}
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge.mega-menu-badge-style-one {
	background: #d32f2f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge.mega-menu-badge-style-two {
	background: #00796b;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge.mega-menu-badge-style-three {
	background: #ffc107;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_11 #mega-menu-max_mega_menu_11 span.mega-menu-badge.mega-menu-badge-style-four {
	background: #303f9f;
	color: white;
	font-weight: normal;
	font-size: 10px;
	text-transform: none;
	text-decoration: none;
	font-family: inherit;
}

#mega-menu-wrap-max_mega_menu_11 .mega-menu-toggle {}

/** Push menu onto new line **/
#mega-menu-wrap-max_mega_menu_11 {
	clear: both;
}

.wp-block {}

.dashicons, .dashicons-before:before {
	font-family: dashicons;
	display: inline-block;
	line-height: 1;
	font-weight: 400;
	font-style: normal;
	speak: never;
	text-decoration: inherit;
	text-transform: none;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 20px;
	height: 20px;
	font-size: 20px;
	vertical-align: top;
	text-align: center;
	transition: color .1s ease-in;
}

.dashicons-admin-appearance:before {
	content: "";
}

.dashicons-admin-collapse:before {
	content: "";
}

.dashicons-admin-comments:before {
	content: "";
}

.dashicons-admin-customizer:before {
	content: "";
}

.dashicons-admin-generic:before {
	content: "";
}

.dashicons-admin-home:before {
	content: "";
}

.dashicons-admin-links:before {
	content: "";
}

.dashicons-admin-media:before {
	content: "";
}

.dashicons-admin-multisite:before {
	content: "";
}

.dashicons-admin-network:before {
	content: "";
}

.dashicons-admin-page:before {
	content: "";
}

.dashicons-admin-plugins:before {
	content: "";
}

.dashicons-admin-post:before {
	content: "";
}

.dashicons-admin-settings:before {
	content: "";
}

.dashicons-admin-site-alt:before {
	content: "";
}

.dashicons-admin-site-alt2:before {
	content: "";
}

.dashicons-admin-site-alt3:before {
	content: "";
}

.dashicons-admin-site:before {
	content: "";
}

.dashicons-admin-tools:before {
	content: "";
}

.dashicons-admin-users:before {
	content: "";
}

.dashicons-airplane:before {
	content: "";
}

.dashicons-album:before {
	content: "";
}

.dashicons-align-center:before {
	content: "";
}

.dashicons-align-full-width:before {
	content: "";
}

.dashicons-align-left:before {
	content: "";
}

.dashicons-align-none:before {
	content: "";
}

.dashicons-align-pull-left:before {
	content: "";
}

.dashicons-align-pull-right:before {
	content: "";
}

.dashicons-align-right:before {
	content: "";
}

.dashicons-align-wide:before {
	content: "";
}

.dashicons-amazon:before {
	content: "";
}

.dashicons-analytics:before {
	content: "";
}

.dashicons-archive:before {
	content: "";
}

.dashicons-arrow-down-alt:before {
	content: "";
}

.dashicons-arrow-down-alt2:before {
	content: "";
}

.dashicons-arrow-down:before {
	content: "";
}

.dashicons-arrow-left-alt:before {
	content: "";
}

.dashicons-arrow-left-alt2:before {
	content: "";
}

.dashicons-arrow-left:before {
	content: "";
}

.dashicons-arrow-right-alt:before {
	content: "";
}

.dashicons-arrow-right-alt2:before {
	content: "";
}

.dashicons-arrow-right:before {
	content: "";
}

.dashicons-arrow-up-alt:before {
	content: "";
}

.dashicons-arrow-up-alt2:before {
	content: "";
}

.dashicons-arrow-up-duplicate:before {
	content: "";
}

.dashicons-arrow-up:before {
	content: "";
}

.dashicons-art:before {
	content: "";
}

.dashicons-awards:before {
	content: "";
}

.dashicons-backup:before {
	content: "";
}

.dashicons-bank:before {
	content: "";
}

.dashicons-beer:before {
	content: "";
}

.dashicons-bell:before {
	content: "";
}

.dashicons-block-default:before {
	content: "";
}

.dashicons-book-alt:before {
	content: "";
}

.dashicons-book:before {
	content: "";
}

.dashicons-buddicons-activity:before {
	content: "";
}

.dashicons-buddicons-bbpress-logo:before {
	content: "";
}

.dashicons-buddicons-buddypress-logo:before {
	content: "";
}

.dashicons-buddicons-community:before {
	content: "";
}

.dashicons-buddicons-forums:before {
	content: "";
}

.dashicons-buddicons-friends:before {
	content: "";
}

.dashicons-buddicons-groups:before {
	content: "";
}

.dashicons-buddicons-pm:before {
	content: "";
}

.dashicons-buddicons-replies:before {
	content: "";
}

.dashicons-buddicons-topics:before {
	content: "";
}

.dashicons-buddicons-tracking:before {
	content: "";
}

.dashicons-building:before {
	content: "";
}

.dashicons-businessman:before {
	content: "";
}

.dashicons-businessperson:before {
	content: "";
}

.dashicons-businesswoman:before {
	content: "";
}

.dashicons-button:before {
	content: "";
}

.dashicons-calculator:before {
	content: "";
}

.dashicons-calendar-alt:before {
	content: "";
}

.dashicons-calendar:before {
	content: "";
}

.dashicons-camera-alt:before {
	content: "";
}

.dashicons-camera:before {
	content: "";
}

.dashicons-car:before {
	content: "";
}

.dashicons-carrot:before {
	content: "";
}

.dashicons-cart:before {
	content: "";
}

.dashicons-category:before {
	content: "";
}

.dashicons-chart-area:before {
	content: "";
}

.dashicons-chart-bar:before {
	content: "";
}

.dashicons-chart-line:before {
	content: "";
}

.dashicons-chart-pie:before {
	content: "";
}

.dashicons-clipboard:before {
	content: "";
}

.dashicons-clock:before {
	content: "";
}

.dashicons-cloud-saved:before {
	content: "";
}

.dashicons-cloud-upload:before {
	content: "";
}

.dashicons-cloud:before {
	content: "";
}

.dashicons-code-standards:before {
	content: "";
}

.dashicons-coffee:before {
	content: "";
}

.dashicons-color-picker:before {
	content: "";
}

.dashicons-columns:before {
	content: "";
}

.dashicons-controls-back:before {
	content: "";
}

.dashicons-controls-forward:before {
	content: "";
}

.dashicons-controls-pause:before {
	content: "";
}

.dashicons-controls-play:before {
	content: "";
}

.dashicons-controls-repeat:before {
	content: "";
}

.dashicons-controls-skipback:before {
	content: "";
}

.dashicons-controls-skipforward:before {
	content: "";
}

.dashicons-controls-volumeoff:before {
	content: "";
}

.dashicons-controls-volumeon:before {
	content: "";
}

.dashicons-cover-image:before {
	content: "";
}

.dashicons-dashboard:before {
	content: "";
}

.dashicons-database-add:before {
	content: "";
}

.dashicons-database-export:before {
	content: "";
}

.dashicons-database-import:before {
	content: "";
}

.dashicons-database-remove:before {
	content: "";
}

.dashicons-database-view:before {
	content: "";
}

.dashicons-database:before {
	content: "";
}

.dashicons-desktop:before {
	content: "";
}

.dashicons-dismiss:before {
	content: "";
}

.dashicons-download:before {
	content: "";
}

.dashicons-drumstick:before {
	content: "";
}

.dashicons-edit-large:before {
	content: "";
}

.dashicons-edit-page:before {
	content: "";
}

.dashicons-edit:before {
	content: "";
}

.dashicons-editor-aligncenter:before {
	content: "";
}

.dashicons-editor-alignleft:before {
	content: "";
}

.dashicons-editor-alignright:before {
	content: "";
}

.dashicons-editor-bold:before {
	content: "";
}

.dashicons-editor-break:before {
	content: "";
}

.dashicons-editor-code-duplicate:before {
	content: "";
}

.dashicons-editor-code:before {
	content: "";
}

.dashicons-editor-contract:before {
	content: "";
}

.dashicons-editor-customchar:before {
	content: "";
}

.dashicons-editor-expand:before {
	content: "";
}

.dashicons-editor-help:before {
	content: "";
}

.dashicons-editor-indent:before {
	content: "";
}

.dashicons-editor-insertmore:before {
	content: "";
}

.dashicons-editor-italic:before {
	content: "";
}

.dashicons-editor-justify:before {
	content: "";
}

.dashicons-editor-kitchensink:before {
	content: "";
}

.dashicons-editor-ltr:before {
	content: "";
}

.dashicons-editor-ol-rtl:before {
	content: "";
}

.dashicons-editor-ol:before {
	content: "";
}

.dashicons-editor-outdent:before {
	content: "";
}

.dashicons-editor-paragraph:before {
	content: "";
}

.dashicons-editor-paste-text:before {
	content: "";
}

.dashicons-editor-paste-word:before {
	content: "";
}

.dashicons-editor-quote:before {
	content: "";
}

.dashicons-editor-removeformatting:before {
	content: "";
}

.dashicons-editor-rtl:before {
	content: "";
}

.dashicons-editor-spellcheck:before {
	content: "";
}

.dashicons-editor-strikethrough:before {
	content: "";
}

.dashicons-editor-table:before {
	content: "";
}

.dashicons-editor-textcolor:before {
	content: "";
}

.dashicons-editor-ul:before {
	content: "";
}

.dashicons-editor-underline:before {
	content: "";
}

.dashicons-editor-unlink:before {
	content: "";
}

.dashicons-editor-video:before {
	content: "";
}

.dashicons-ellipsis:before {
	content: "";
}

.dashicons-email-alt:before {
	content: "";
}

.dashicons-email-alt2:before {
	content: "";
}

.dashicons-email:before {
	content: "";
}

.dashicons-embed-audio:before {
	content: "";
}

.dashicons-embed-generic:before {
	content: "";
}

.dashicons-embed-photo:before {
	content: "";
}

.dashicons-embed-post:before {
	content: "";
}

.dashicons-embed-video:before {
	content: "";
}

.dashicons-excerpt-view:before {
	content: "";
}

.dashicons-exit:before {
	content: "";
}

.dashicons-external:before {
	content: "";
}

.dashicons-facebook-alt:before {
	content: "";
}

.dashicons-facebook:before {
	content: "";
}

.dashicons-feedback:before {
	content: "";
}

.dashicons-filter:before {
	content: "";
}

.dashicons-flag:before {
	content: "";
}

.dashicons-food:before {
	content: "";
}

.dashicons-format-aside:before {
	content: "";
}

.dashicons-format-audio:before {
	content: "";
}

.dashicons-format-chat:before {
	content: "";
}

.dashicons-format-gallery:before {
	content: "";
}

.dashicons-format-image:before {
	content: "";
}

.dashicons-format-quote:before {
	content: "";
}

.dashicons-format-status:before {
	content: "";
}

.dashicons-format-video:before {
	content: "";
}

.dashicons-forms:before {
	content: "";
}

.dashicons-fullscreen-alt:before {
	content: "";
}

.dashicons-fullscreen-exit-alt:before {
	content: "";
}

.dashicons-games:before {
	content: "";
}

.dashicons-google:before {
	content: "";
}

.dashicons-googleplus:before {
	content: "";
}

.dashicons-grid-view:before {
	content: "";
}

.dashicons-groups:before {
	content: "";
}

.dashicons-hammer:before {
	content: "";
}

.dashicons-heading:before {
	content: "";
}

.dashicons-heart:before {
	content: "";
}

.dashicons-hidden:before {
	content: "";
}

.dashicons-hourglass:before {
	content: "";
}

.dashicons-html:before {
	content: "";
}

.dashicons-id-alt:before {
	content: "";
}

.dashicons-id:before {
	content: "";
}

.dashicons-image-crop:before {
	content: "";
}

.dashicons-image-filter:before {
	content: "";
}

.dashicons-image-flip-horizontal:before {
	content: "";
}

.dashicons-image-flip-vertical:before {
	content: "";
}

.dashicons-image-rotate-left:before {
	content: "";
}

.dashicons-image-rotate-right:before {
	content: "";
}

.dashicons-image-rotate:before {
	content: "";
}

.dashicons-images-alt:before {
	content: "";
}

.dashicons-images-alt2:before {
	content: "";
}

.dashicons-index-card:before {
	content: "";
}

.dashicons-info-outline:before {
	content: "";
}

.dashicons-info:before {
	content: "";
}

.dashicons-insert-after:before {
	content: "";
}

.dashicons-insert-before:before {
	content: "";
}

.dashicons-insert:before {
	content: "";
}

.dashicons-instagram:before {
	content: "";
}

.dashicons-laptop:before {
	content: "";
}

.dashicons-layout:before {
	content: "";
}

.dashicons-leftright:before {
	content: "";
}

.dashicons-lightbulb:before {
	content: "";
}

.dashicons-linkedin:before {
	content: "";
}

.dashicons-list-view:before {
	content: "";
}

.dashicons-location-alt:before {
	content: "";
}

.dashicons-location:before {
	content: "";
}

.dashicons-lock-duplicate:before {
	content: "";
}

.dashicons-lock:before {
	content: "";
}

.dashicons-marker:before {
	content: "";
}

.dashicons-media-archive:before {
	content: "";
}

.dashicons-media-audio:before {
	content: "";
}

.dashicons-media-code:before {
	content: "";
}

.dashicons-media-default:before {
	content: "";
}

.dashicons-media-document:before {
	content: "";
}

.dashicons-media-interactive:before {
	content: "";
}

.dashicons-media-spreadsheet:before {
	content: "";
}

.dashicons-media-text:before {
	content: "";
}

.dashicons-media-video:before {
	content: "";
}

.dashicons-megaphone:before {
	content: "";
}

.dashicons-menu-alt:before {
	content: "";
}

.dashicons-menu-alt2:before {
	content: "";
}

.dashicons-menu-alt3:before {
	content: "";
}

.dashicons-menu:before {
	content: "";
}

.dashicons-microphone:before {
	content: "";
}

.dashicons-migrate:before {
	content: "";
}

.dashicons-minus:before {
	content: "";
}

.dashicons-money-alt:before {
	content: "";
}

.dashicons-money:before {
	content: "";
}

.dashicons-move:before {
	content: "";
}

.dashicons-nametag:before {
	content: "";
}

.dashicons-networking:before {
	content: "";
}

.dashicons-no-alt:before {
	content: "";
}

.dashicons-no:before {
	content: "";
}

.dashicons-open-folder:before {
	content: "";
}

.dashicons-palmtree:before {
	content: "";
}

.dashicons-paperclip:before {
	content: "";
}

.dashicons-pdf:before {
	content: "";
}

.dashicons-performance:before {
	content: "";
}

.dashicons-pets:before {
	content: "";
}

.dashicons-phone:before {
	content: "";
}

.dashicons-pinterest:before {
	content: "";
}

.dashicons-playlist-audio:before {
	content: "";
}

.dashicons-playlist-video:before {
	content: "";
}

.dashicons-plugins-checked:before {
	content: "";
}

.dashicons-plus-alt:before {
	content: "";
}

.dashicons-plus-alt2:before {
	content: "";
}

.dashicons-plus:before {
	content: "";
}

.dashicons-podio:before {
	content: "";
}

.dashicons-portfolio:before {
	content: "";
}

.dashicons-post-status:before {
	content: "";
}

.dashicons-pressthis:before {
	content: "";
}

.dashicons-printer:before {
	content: "";
}

.dashicons-privacy:before {
	content: "";
}

.dashicons-products:before {
	content: "";
}

.dashicons-randomize:before {
	content: "";
}

.dashicons-reddit:before {
	content: "";
}

.dashicons-redo:before {
	content: "";
}

.dashicons-remove:before {
	content: "";
}

.dashicons-rest-api:before {
	content: "";
}

.dashicons-rss:before {
	content: "";
}

.dashicons-saved:before {
	content: "";
}

.dashicons-schedule:before {
	content: "";
}

.dashicons-screenoptions:before {
	content: "";
}

.dashicons-search:before {
	content: "";
}

.dashicons-share-alt:before {
	content: "";
}

.dashicons-share-alt2:before {
	content: "";
}

.dashicons-share:before {
	content: "";
}

.dashicons-shield-alt:before {
	content: "";
}

.dashicons-shield:before {
	content: "";
}

.dashicons-shortcode:before {
	content: "";
}

.dashicons-slides:before {
	content: "";
}

.dashicons-smartphone:before {
	content: "";
}

.dashicons-smiley:before {
	content: "";
}

.dashicons-sort:before {
	content: "";
}

.dashicons-sos:before {
	content: "";
}

.dashicons-spotify:before {
	content: "";
}

.dashicons-star-empty:before {
	content: "";
}

.dashicons-star-filled:before {
	content: "";
}

.dashicons-star-half:before {
	content: "";
}

.dashicons-sticky:before {
	content: "";
}

.dashicons-store:before {
	content: "";
}

.dashicons-superhero-alt:before {
	content: "";
}

.dashicons-superhero:before {
	content: "";
}

.dashicons-table-col-after:before {
	content: "";
}

.dashicons-table-col-before:before {
	content: "";
}

.dashicons-table-col-delete:before {
	content: "";
}

.dashicons-table-row-after:before {
	content: "";
}

.dashicons-table-row-before:before {
	content: "";
}

.dashicons-table-row-delete:before {
	content: "";
}

.dashicons-tablet:before {
	content: "";
}

.dashicons-tag:before {
	content: "";
}

.dashicons-tagcloud:before {
	content: "";
}

.dashicons-testimonial:before {
	content: "";
}

.dashicons-text-page:before {
	content: "";
}

.dashicons-text:before {
	content: "";
}

.dashicons-thumbs-down:before {
	content: "";
}

.dashicons-thumbs-up:before {
	content: "";
}

.dashicons-tickets-alt:before {
	content: "";
}

.dashicons-tickets:before {
	content: "";
}

.dashicons-tide:before {
	content: "";
}

.dashicons-translation:before {
	content: "";
}

.dashicons-trash:before {
	content: "";
}

.dashicons-twitch:before {
	content: "";
}

.dashicons-twitter-alt:before {
	content: "";
}

.dashicons-twitter:before {
	content: "";
}

.dashicons-undo:before {
	content: "";
}

.dashicons-universal-access-alt:before {
	content: "";
}

.dashicons-universal-access:before {
	content: "";
}

.dashicons-unlock:before {
	content: "";
}

.dashicons-update-alt:before {
	content: "";
}

.dashicons-update:before {
	content: "";
}

.dashicons-upload:before {
	content: "";
}

.dashicons-vault:before {
	content: "";
}

.dashicons-video-alt:before {
	content: "";
}

.dashicons-video-alt2:before {
	content: "";
}

.dashicons-video-alt3:before {
	content: "";
}

.dashicons-visibility:before {
	content: "";
}

.dashicons-warning:before {
	content: "";
}

.dashicons-welcome-add-page:before {
	content: "";
}

.dashicons-welcome-comments:before {
	content: "";
}

.dashicons-welcome-learn-more:before {
	content: "";
}

.dashicons-welcome-view-site:before {
	content: "";
}

.dashicons-welcome-widgets-menus:before {
	content: "";
}

.dashicons-welcome-write-blog:before {
	content: "";
}

.dashicons-whatsapp:before {
	content: "";
}

.dashicons-wordpress-alt:before {
	content: "";
}

.dashicons-wordpress:before {
	content: "";
}

.dashicons-xing:before {
	content: "";
}

.dashicons-yes-alt:before {
	content: "";
}

.dashicons-yes:before {
	content: "";
}

.dashicons-youtube:before {
	content: "";
}

.dashicons-editor-distractionfree:before {
	content: "";
}

.dashicons-exerpt-view:before {
	content: "";
}

.dashicons-format-links:before {
	content: "";
}

.dashicons-format-standard:before {
	content: "";
}

.dashicons-post-trash:before {
	content: "";
}

.dashicons-share1:before {
	content: "";
}

.dashicons-welcome-edit-page:before {
	content: "";
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family: "Genericons";
		src: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/source/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/megamenu-pro/icons/genericons/genericons/./Genericons.svg#Genericons") format("svg");
	}
}

/**
 * All Genericons
 */
.genericon {
	font-size: 16px;
	vertical-align: top;
	text-align: center;
	-moz-transition: color .1s ease-in 0;
	-webkit-transition: color .1s ease-in 0;
	display: inline-block;
	font-family: "Genericons";
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	text-decoration: inherit;
	text-transform: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	speak: none;
}

/**
 * Individual icons
 */
.genericon-404:before {
	content: "";
}

.genericon-activity:before {
	content: "";
}

.genericon-anchor:before {
	content: "";
}

.genericon-aside:before {
	content: "";
}

.genericon-attachment:before {
	content: "";
}

.genericon-audio:before {
	content: "";
}

.genericon-bold:before {
	content: "";
}

.genericon-book:before {
	content: "";
}

.genericon-bug:before {
	content: "";
}

.genericon-cart:before {
	content: "";
}

.genericon-category:before {
	content: "";
}

.genericon-chat:before {
	content: "";
}

.genericon-checkmark:before {
	content: "";
}

.genericon-close:before {
	content: "";
}

.genericon-close-alt:before {
	content: "";
}

.genericon-cloud:before {
	content: "";
}

.genericon-cloud-download:before {
	content: "";
}

.genericon-cloud-upload:before {
	content: "";
}

.genericon-code:before {
	content: "";
}

.genericon-codepen:before {
	content: "";
}

.genericon-cog:before {
	content: "";
}

.genericon-collapse:before {
	content: "";
}

.genericon-comment:before {
	content: "";
}

.genericon-day:before {
	content: "";
}

.genericon-digg:before {
	content: "";
}

.genericon-document:before {
	content: "";
}

.genericon-dot:before {
	content: "";
}

.genericon-downarrow:before {
	content: "";
}

.genericon-download:before {
	content: "";
}

.genericon-draggable:before {
	content: "";
}

.genericon-dribbble:before {
	content: "";
}

.genericon-dropbox:before {
	content: "";
}

.genericon-dropdown:before {
	content: "";
}

.genericon-dropdown-left:before {
	content: "";
}

.genericon-edit:before {
	content: "";
}

.genericon-ellipsis:before {
	content: "";
}

.genericon-expand:before {
	content: "";
}

.genericon-external:before {
	content: "";
}

.genericon-facebook:before {
	content: "";
}

.genericon-facebook-alt:before {
	content: "";
}

.genericon-fastforward:before {
	content: "";
}

.genericon-feed:before {
	content: "";
}

.genericon-flag:before {
	content: "";
}

.genericon-flickr:before {
	content: "";
}

.genericon-foursquare:before {
	content: "";
}

.genericon-fullscreen:before {
	content: "";
}

.genericon-gallery:before {
	content: "";
}

.genericon-github:before {
	content: "";
}

.genericon-googleplus:before {
	content: "";
}

.genericon-googleplus-alt:before {
	content: "";
}

.genericon-handset:before {
	content: "";
}

.genericon-heart:before {
	content: "";
}

.genericon-help:before {
	content: "";
}

.genericon-hide:before {
	content: "";
}

.genericon-hierarchy:before {
	content: "";
}

.genericon-home:before {
	content: "";
}

.genericon-image:before {
	content: "";
}

.genericon-info:before {
	content: "";
}

.genericon-instagram:before {
	content: "";
}

.genericon-italic:before {
	content: "";
}

.genericon-key:before {
	content: "";
}

.genericon-leftarrow:before {
	content: "";
}

.genericon-link:before {
	content: "";
}

.genericon-linkedin:before {
	content: "";
}

.genericon-linkedin-alt:before {
	content: "";
}

.genericon-location:before {
	content: "";
}

.genericon-lock:before {
	content: "";
}

.genericon-mail:before {
	content: "";
}

.genericon-maximize:before {
	content: "";
}

.genericon-menu:before {
	content: "";
}

.genericon-microphone:before {
	content: "";
}

.genericon-minimize:before {
	content: "";
}

.genericon-minus:before {
	content: "";
}

.genericon-month:before {
	content: "";
}

.genericon-move:before {
	content: "";
}

.genericon-next:before {
	content: "";
}

.genericon-notice:before {
	content: "";
}

.genericon-paintbrush:before {
	content: "";
}

.genericon-path:before {
	content: "";
}

.genericon-pause:before {
	content: "";
}

.genericon-phone:before {
	content: "";
}

.genericon-picture:before {
	content: "";
}

.genericon-pinned:before {
	content: "";
}

.genericon-pinterest:before {
	content: "";
}

.genericon-pinterest-alt:before {
	content: "";
}

.genericon-play:before {
	content: "";
}

.genericon-plugin:before {
	content: "";
}

.genericon-plus:before {
	content: "";
}

.genericon-pocket:before {
	content: "";
}

.genericon-polldaddy:before {
	content: "";
}

.genericon-portfolio:before {
	content: "";
}

.genericon-previous:before {
	content: "";
}

.genericon-print:before {
	content: "";
}

.genericon-quote:before {
	content: "";
}

.genericon-rating-empty:before {
	content: "";
}

.genericon-rating-full:before {
	content: "";
}

.genericon-rating-half:before {
	content: "";
}

.genericon-reddit:before {
	content: "";
}

.genericon-refresh:before {
	content: "";
}

.genericon-reply:before {
	content: "";
}

.genericon-reply-alt:before {
	content: "";
}

.genericon-reply-single:before {
	content: "";
}

.genericon-rewind:before {
	content: "";
}

.genericon-rightarrow:before {
	content: "";
}

.genericon-search:before {
	content: "";
}

.genericon-send-to-phone:before {
	content: "";
}

.genericon-send-to-tablet:before {
	content: "";
}

.genericon-share:before {
	content: "";
}

.genericon-show:before {
	content: "";
}

.genericon-shuffle:before {
	content: "";
}

.genericon-sitemap:before {
	content: "";
}

.genericon-skip-ahead:before {
	content: "";
}

.genericon-skip-back:before {
	content: "";
}

.genericon-skype:before {
	content: "";
}

.genericon-spam:before {
	content: "";
}

.genericon-spotify:before {
	content: "";
}

.genericon-standard:before {
	content: "";
}

.genericon-star:before {
	content: "";
}

.genericon-status:before {
	content: "";
}

.genericon-stop:before {
	content: "";
}

.genericon-stumbleupon:before {
	content: "";
}

.genericon-subscribe:before {
	content: "";
}

.genericon-subscribed:before {
	content: "";
}

.genericon-summary:before {
	content: "";
}

.genericon-tablet:before {
	content: "";
}

.genericon-tag:before {
	content: "";
}

.genericon-time:before {
	content: "";
}

.genericon-top:before {
	content: "";
}

.genericon-trash:before {
	content: "";
}

.genericon-tumblr:before {
	content: "";
}

.genericon-twitch:before {
	content: "";
}

.genericon-twitter:before {
	content: "";
}

.genericon-unapprove:before {
	content: "";
}

.genericon-unsubscribe:before {
	content: "";
}

.genericon-unzoom:before {
	content: "";
}

.genericon-uparrow:before {
	content: "";
}

.genericon-user:before {
	content: "";
}

.genericon-video:before {
	content: "";
}

.genericon-videocamera:before {
	content: "";
}

.genericon-vimeo:before {
	content: "";
}

.genericon-warning:before {
	content: "";
}

.genericon-website:before {
	content: "";
}

.genericon-week:before {
	content: "";
}

.genericon-wordpress:before {
	content: "";
}

.genericon-xpost:before {
	content: "";
}

.genericon-youtube:before {
	content: "";
}

.genericon-zoom:before {
	content: "";
}

/*!
 * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa {
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
}

.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
	font-family: "Font Awesome 6 Free";
}

.fa-brands, .fab {
	font-family: "Font Awesome 6 Brands";
}

.fa-1x {
	font-size: 1em;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-6x {
	font-size: 6em;
}

.fa-7x {
	font-size: 7em;
}

.fa-8x {
	font-size: 8em;
}

.fa-9x {
	font-size: 9em;
}

.fa-10x {
	font-size: 10em;
}

.fa-2xs {
	font-size: .625em;
	line-height: .1em;
	vertical-align: .225em;
}

.fa-xs {
	font-size: .75em;
	line-height: .08333em;
	vertical-align: .125em;
}

.fa-sm {
	font-size: .875em;
	line-height: .07143em;
	vertical-align: .05357em;
}

.fa-lg {
	font-size: 1.25em;
	line-height: .05em;
	vertical-align: -.075em;
}

.fa-xl {
	font-size: 1.5em;
	line-height: .04167em;
	vertical-align: -.125em;
}

.fa-2xl {
	font-size: 2em;
	line-height: .03125em;
	vertical-align: -.1875em;
}

.fa-fw {
	text-align: center;
	width: 1.25em;
}

.fa-ul {
	list-style-type: none;
	margin-left: var(--fa-li-margin, 2.5em);
	padding-left: 0;
}

.fa-ul>li {
	position: relative;
}

.fa-li {
	left: calc(var(--fa-li-width, 2em) * -1);
	position: absolute;
	text-align: center;
	width: var(--fa-li-width, 2em);
	line-height: inherit;
}

.fa-border {
	border-radius: var(--fa-border-radius, .1em);
	border: var(--fa-border-width, .08em) var(--fa-border-style, solid) var(--fa-border-color, #eee);
	padding: var(--fa-border-padding, .2em .25em .15em);
}

.fa-pull-left {
	float: left;
	margin-right: var(--fa-pull-margin, .3em);
}

.fa-pull-right {
	float: right;
	margin-left: var(--fa-pull-margin, .3em);
}

.fa-beat {
	-webkit-animation-name: fa-beat;
	animation-name: fa-beat;
	-webkit-animation-delay: var(--fa-animation-delay, 0s);
	animation-delay: var(--fa-animation-delay, 0s);
	-webkit-animation-direction: var(--fa-animation-direction, normal);
	animation-direction: var(--fa-animation-direction, normal);
	-webkit-animation-duration: var(--fa-animation-duration, 1s);
	animation-duration: var(--fa-animation-duration, 1s);
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
	animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
	-webkit-animation-name: fa-bounce;
	animation-name: fa-bounce;
	-webkit-animation-delay: var(--fa-animation-delay, 0s);
	animation-delay: var(--fa-animation-delay, 0s);
	-webkit-animation-direction: var(--fa-animation-direction, normal);
	animation-direction: var(--fa-animation-direction, normal);
	-webkit-animation-duration: var(--fa-animation-duration, 1s);
	animation-duration: var(--fa-animation-duration, 1s);
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1));
	animation-timing-function: var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1));
}

.fa-fade {
	-webkit-animation-name: fa-fade;
	animation-name: fa-fade;
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
	animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
}

.fa-beat-fade, .fa-fade {
	-webkit-animation-delay: var(--fa-animation-delay, 0s);
	animation-delay: var(--fa-animation-delay, 0s);
	-webkit-animation-direction: var(--fa-animation-direction, normal);
	animation-direction: var(--fa-animation-direction, normal);
	-webkit-animation-duration: var(--fa-animation-duration, 1s);
	animation-duration: var(--fa-animation-duration, 1s);
}

.fa-beat-fade {
	-webkit-animation-name: fa-beat-fade;
	animation-name: fa-beat-fade;
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
	animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
}

.fa-flip {
	-webkit-animation-name: fa-flip;
	animation-name: fa-flip;
	-webkit-animation-delay: var(--fa-animation-delay, 0s);
	animation-delay: var(--fa-animation-delay, 0s);
	-webkit-animation-direction: var(--fa-animation-direction, normal);
	animation-direction: var(--fa-animation-direction, normal);
	-webkit-animation-duration: var(--fa-animation-duration, 1s);
	animation-duration: var(--fa-animation-duration, 1s);
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
	animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
	-webkit-animation-name: fa-shake;
	animation-name: fa-shake;
	-webkit-animation-duration: var(--fa-animation-duration, 1s);
	animation-duration: var(--fa-animation-duration, 1s);
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, linear);
	animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-shake, .fa-spin {
	-webkit-animation-delay: var(--fa-animation-delay, 0s);
	animation-delay: var(--fa-animation-delay, 0s);
	-webkit-animation-direction: var(--fa-animation-direction, normal);
	animation-direction: var(--fa-animation-direction, normal);
}

.fa-spin {
	-webkit-animation-name: fa-spin;
	animation-name: fa-spin;
	-webkit-animation-duration: var(--fa-animation-duration, 2s);
	animation-duration: var(--fa-animation-duration, 2s);
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, linear);
	animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
	--fa-animation-direction: reverse;
}

.fa-pulse, .fa-spin-pulse {
	-webkit-animation-name: fa-spin;
	animation-name: fa-spin;
	-webkit-animation-direction: var(--fa-animation-direction, normal);
	animation-direction: var(--fa-animation-direction, normal);
	-webkit-animation-duration: var(--fa-animation-duration, 1s);
	animation-duration: var(--fa-animation-duration, 1s);
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
	animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion:reduce) {
	.fa-beat, .fa-beat-fade, .fa-bounce, .fa-fade, .fa-flip, .fa-pulse, .fa-shake, .fa-spin, .fa-spin-pulse {
		-webkit-animation-delay: -1ms;
		animation-delay: -1ms;
		-webkit-animation-duration: 1ms;
		animation-duration: 1ms;
		-webkit-animation-iteration-count: 1;
		animation-iteration-count: 1;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		-webkit-transition-duration: 0s;
		transition-duration: 0s;
	}
}

@-webkit-keyframes fa-beat {
	0%, 90% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	45% {
		-webkit-transform: scale(var(--fa-beat-scale, 1.25));
		transform: scale(var(--fa-beat-scale, 1.25));
	}
}

@keyframes fa-beat {
	0%, 90% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	45% {
		-webkit-transform: scale(var(--fa-beat-scale, 1.25));
		transform: scale(var(--fa-beat-scale, 1.25));
	}
}

@-webkit-keyframes fa-bounce {
	0% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
	}
	
	10% {
		-webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
		transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
	}
	
	30% {
		-webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
		transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
	}
	
	50% {
		-webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
		transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
	}
	
	57% {
		-webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
		transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
	}
	
	64% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
	}
	
	to {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
	}
}

@keyframes fa-bounce {
	0% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
	}
	
	10% {
		-webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
		transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
	}
	
	30% {
		-webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
		transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
	}
	
	50% {
		-webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
		transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
	}
	
	57% {
		-webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
		transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
	}
	
	64% {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
	}
	
	to {
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
	}
}

@-webkit-keyframes fa-fade {
	50% {
		opacity: var(--fa-fade-opacity, .4);
	}
}

@keyframes fa-fade {
	50% {
		opacity: var(--fa-fade-opacity, .4);
	}
}

@-webkit-keyframes fa-beat-fade {
	0%, to {
		opacity: var(--fa-beat-fade-opacity, .4);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
		transform: scale(var(--fa-beat-fade-scale, 1.125));
	}
}

@keyframes fa-beat-fade {
	0%, to {
		opacity: var(--fa-beat-fade-opacity, .4);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
		transform: scale(var(--fa-beat-fade-scale, 1.125));
	}
}

@-webkit-keyframes fa-flip {
	50% {
		-webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
		transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
	}
}

@keyframes fa-flip {
	50% {
		-webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
		transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
	}
}

@-webkit-keyframes fa-shake {
	0% {
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}
	
	4% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	
	8%, 24% {
		-webkit-transform: rotate(-18deg);
		transform: rotate(-18deg);
	}
	
	12%, 28% {
		-webkit-transform: rotate(18deg);
		transform: rotate(18deg);
	}
	
	16% {
		-webkit-transform: rotate(-22deg);
		transform: rotate(-22deg);
	}
	
	20% {
		-webkit-transform: rotate(22deg);
		transform: rotate(22deg);
	}
	
	32% {
		-webkit-transform: rotate(-12deg);
		transform: rotate(-12deg);
	}
	
	36% {
		-webkit-transform: rotate(12deg);
		transform: rotate(12deg);
	}
	
	40%, to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes fa-shake {
	0% {
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}
	
	4% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	
	8%, 24% {
		-webkit-transform: rotate(-18deg);
		transform: rotate(-18deg);
	}
	
	12%, 28% {
		-webkit-transform: rotate(18deg);
		transform: rotate(18deg);
	}
	
	16% {
		-webkit-transform: rotate(-22deg);
		transform: rotate(-22deg);
	}
	
	20% {
		-webkit-transform: rotate(22deg);
		transform: rotate(22deg);
	}
	
	32% {
		-webkit-transform: rotate(-12deg);
		transform: rotate(-12deg);
	}
	
	36% {
		-webkit-transform: rotate(12deg);
		transform: rotate(12deg);
	}
	
	40%, to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

.fa-rotate-90 {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.fa-rotate-180 {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.fa-rotate-270 {
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.fa-flip-vertical {
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
	-webkit-transform: scale(-1);
	transform: scale(-1);
}

.fa-rotate-by {
	-webkit-transform: rotate(var(--fa-rotate-angle, none));
	transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	position: relative;
	vertical-align: middle;
	width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: var(--fa-inverse, #fff);
}

.fa-0:before {
	content: "0";
}

.fa-1:before {
	content: "1";
}

.fa-2:before {
	content: "2";
}

.fa-3:before {
	content: "3";
}

.fa-4:before {
	content: "4";
}

.fa-5:before {
	content: "5";
}

.fa-6:before {
	content: "6";
}

.fa-7:before {
	content: "7";
}

.fa-8:before {
	content: "8";
}

.fa-9:before {
	content: "9";
}

.fa-fill-drip:before {
	content: "";
}

.fa-arrows-to-circle:before {
	content: "";
}

.fa-chevron-circle-right:before, .fa-circle-chevron-right:before {
	content: "";
}

.fa-at:before {
	content: "@";
}

.fa-trash-alt:before, .fa-trash-can:before {
	content: "";
}

.fa-text-height:before {
	content: "";
}

.fa-user-times:before, .fa-user-xmark:before {
	content: "";
}

.fa-stethoscope:before {
	content: "";
}

.fa-comment-alt:before, .fa-message:before {
	content: "";
}

.fa-info:before {
	content: "";
}

.fa-compress-alt:before, .fa-down-left-and-up-right-to-center:before {
	content: "";
}

.fa-explosion:before {
	content: "";
}

.fa-file-alt:before, .fa-file-lines:before, .fa-file-text:before {
	content: "";
}

.fa-wave-square:before {
	content: "";
}

.fa-ring:before {
	content: "";
}

.fa-building-un:before {
	content: "";
}

.fa-dice-three:before {
	content: "";
}

.fa-calendar-alt:before, .fa-calendar-days:before {
	content: "";
}

.fa-anchor-circle-check:before {
	content: "";
}

.fa-building-circle-arrow-right:before {
	content: "";
}

.fa-volleyball-ball:before, .fa-volleyball:before {
	content: "";
}

.fa-arrows-up-to-line:before {
	content: "";
}

.fa-sort-desc:before, .fa-sort-down:before {
	content: "";
}

.fa-circle-minus:before, .fa-minus-circle:before {
	content: "";
}

.fa-door-open:before {
	content: "";
}

.fa-right-from-bracket:before, .fa-sign-out-alt:before {
	content: "";
}

.fa-atom:before {
	content: "";
}

.fa-soap:before {
	content: "";
}

.fa-heart-music-camera-bolt:before, .fa-icons:before {
	content: "";
}

.fa-microphone-alt-slash:before, .fa-microphone-lines-slash:before {
	content: "";
}

.fa-bridge-circle-check:before {
	content: "";
}

.fa-pump-medical:before {
	content: "";
}

.fa-fingerprint:before {
	content: "";
}

.fa-hand-point-right:before {
	content: "";
}

.fa-magnifying-glass-location:before, .fa-search-location:before {
	content: "";
}

.fa-forward-step:before, .fa-step-forward:before {
	content: "";
}

.fa-face-smile-beam:before, .fa-smile-beam:before {
	content: "";
}

.fa-flag-checkered:before {
	content: "";
}

.fa-football-ball:before, .fa-football:before {
	content: "";
}

.fa-school-circle-exclamation:before {
	content: "";
}

.fa-crop:before {
	content: "";
}

.fa-angle-double-down:before, .fa-angles-down:before {
	content: "";
}

.fa-users-rectangle:before {
	content: "";
}

.fa-people-roof:before {
	content: "";
}

.fa-people-line:before {
	content: "";
}

.fa-beer-mug-empty:before, .fa-beer:before {
	content: "";
}

.fa-diagram-predecessor:before {
	content: "";
}

.fa-arrow-up-long:before, .fa-long-arrow-up:before {
	content: "";
}

.fa-burn:before, .fa-fire-flame-simple:before {
	content: "";
}

.fa-male:before, .fa-person:before {
	content: "";
}

.fa-laptop:before {
	content: "";
}

.fa-file-csv:before {
	content: "";
}

.fa-menorah:before {
	content: "";
}

.fa-truck-plane:before {
	content: "";
}

.fa-record-vinyl:before {
	content: "";
}

.fa-face-grin-stars:before, .fa-grin-stars:before {
	content: "";
}

.fa-bong:before {
	content: "";
}

.fa-pastafarianism:before, .fa-spaghetti-monster-flying:before {
	content: "";
}

.fa-arrow-down-up-across-line:before {
	content: "";
}

.fa-spoon:before, .fa-utensil-spoon:before {
	content: "";
}

.fa-jar-wheat:before {
	content: "";
}

.fa-envelopes-bulk:before, .fa-mail-bulk:before {
	content: "";
}

.fa-file-circle-exclamation:before {
	content: "";
}

.fa-circle-h:before, .fa-hospital-symbol:before {
	content: "";
}

.fa-pager:before {
	content: "";
}

.fa-address-book:before, .fa-contact-book:before {
	content: "";
}

.fa-strikethrough:before {
	content: "";
}

.fa-k:before {
	content: "K";
}

.fa-landmark-flag:before {
	content: "";
}

.fa-pencil-alt:before, .fa-pencil:before {
	content: "";
}

.fa-backward:before {
	content: "";
}

.fa-caret-right:before {
	content: "";
}

.fa-comments:before {
	content: "";
}

.fa-file-clipboard:before, .fa-paste:before {
	content: "";
}

.fa-code-pull-request:before {
	content: "";
}

.fa-clipboard-list:before {
	content: "";
}

.fa-truck-loading:before, .fa-truck-ramp-box:before {
	content: "";
}

.fa-user-check:before {
	content: "";
}

.fa-vial-virus:before {
	content: "";
}

.fa-sheet-plastic:before {
	content: "";
}

.fa-blog:before {
	content: "";
}

.fa-user-ninja:before {
	content: "";
}

.fa-person-arrow-up-from-line:before {
	content: "";
}

.fa-scroll-torah:before, .fa-torah:before {
	content: "";
}

.fa-broom-ball:before, .fa-quidditch-broom-ball:before, .fa-quidditch:before {
	content: "";
}

.fa-toggle-off:before {
	content: "";
}

.fa-archive:before, .fa-box-archive:before {
	content: "";
}

.fa-person-drowning:before {
	content: "";
}

.fa-arrow-down-9-1:before, .fa-sort-numeric-desc:before, .fa-sort-numeric-down-alt:before {
	content: "";
}

.fa-face-grin-tongue-squint:before, .fa-grin-tongue-squint:before {
	content: "";
}

.fa-spray-can:before {
	content: "";
}

.fa-truck-monster:before {
	content: "";
}

.fa-w:before {
	content: "W";
}

.fa-earth-africa:before, .fa-globe-africa:before {
	content: "";
}

.fa-rainbow:before {
	content: "";
}

.fa-circle-notch:before {
	content: "";
}

.fa-tablet-alt:before, .fa-tablet-screen-button:before {
	content: "";
}

.fa-paw:before {
	content: "";
}

.fa-cloud:before {
	content: "";
}

.fa-trowel-bricks:before {
	content: "";
}

.fa-face-flushed:before, .fa-flushed:before {
	content: "";
}

.fa-hospital-user:before {
	content: "";
}

.fa-tent-arrow-left-right:before {
	content: "";
}

.fa-gavel:before, .fa-legal:before {
	content: "";
}

.fa-binoculars:before {
	content: "";
}

.fa-microphone-slash:before {
	content: "";
}

.fa-box-tissue:before {
	content: "";
}

.fa-motorcycle:before {
	content: "";
}

.fa-bell-concierge:before, .fa-concierge-bell:before {
	content: "";
}

.fa-pen-ruler:before, .fa-pencil-ruler:before {
	content: "";
}

.fa-people-arrows-left-right:before, .fa-people-arrows:before {
	content: "";
}

.fa-mars-and-venus-burst:before {
	content: "";
}

.fa-caret-square-right:before, .fa-square-caret-right:before {
	content: "";
}

.fa-cut:before, .fa-scissors:before {
	content: "";
}

.fa-sun-plant-wilt:before {
	content: "";
}

.fa-toilets-portable:before {
	content: "";
}

.fa-hockey-puck:before {
	content: "";
}

.fa-table:before {
	content: "";
}

.fa-magnifying-glass-arrow-right:before {
	content: "";
}

.fa-digital-tachograph:before, .fa-tachograph-digital:before {
	content: "";
}

.fa-users-slash:before {
	content: "";
}

.fa-clover:before {
	content: "";
}

.fa-mail-reply:before, .fa-reply:before {
	content: "";
}

.fa-star-and-crescent:before {
	content: "";
}

.fa-house-fire:before {
	content: "";
}

.fa-minus-square:before, .fa-square-minus:before {
	content: "";
}

.fa-helicopter:before {
	content: "";
}

.fa-compass:before {
	content: "";
}

.fa-caret-square-down:before, .fa-square-caret-down:before {
	content: "";
}

.fa-file-circle-question:before {
	content: "";
}

.fa-laptop-code:before {
	content: "";
}

.fa-swatchbook:before {
	content: "";
}

.fa-prescription-bottle:before {
	content: "";
}

.fa-bars:before, .fa-navicon:before {
	content: "";
}

.fa-people-group:before {
	content: "";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
	content: "";
}

.fa-heart-broken:before, .fa-heart-crack:before {
	content: "";
}

.fa-external-link-square-alt:before, .fa-square-up-right:before {
	content: "";
}

.fa-face-kiss-beam:before, .fa-kiss-beam:before {
	content: "";
}

.fa-film:before {
	content: "";
}

.fa-ruler-horizontal:before {
	content: "";
}

.fa-people-robbery:before {
	content: "";
}

.fa-lightbulb:before {
	content: "";
}

.fa-caret-left:before {
	content: "";
}

.fa-circle-exclamation:before, .fa-exclamation-circle:before {
	content: "";
}

.fa-school-circle-xmark:before {
	content: "";
}

.fa-arrow-right-from-bracket:before, .fa-sign-out:before {
	content: "";
}

.fa-chevron-circle-down:before, .fa-circle-chevron-down:before {
	content: "";
}

.fa-unlock-alt:before, .fa-unlock-keyhole:before {
	content: "";
}

.fa-cloud-showers-heavy:before {
	content: "";
}

.fa-headphones-alt:before, .fa-headphones-simple:before {
	content: "";
}

.fa-sitemap:before {
	content: "";
}

.fa-circle-dollar-to-slot:before, .fa-donate:before {
	content: "";
}

.fa-memory:before {
	content: "";
}

.fa-road-spikes:before {
	content: "";
}

.fa-fire-burner:before {
	content: "";
}

.fa-flag:before {
	content: "";
}

.fa-hanukiah:before {
	content: "";
}

.fa-feather:before {
	content: "";
}

.fa-volume-down:before, .fa-volume-low:before {
	content: "";
}

.fa-comment-slash:before {
	content: "";
}

.fa-cloud-sun-rain:before {
	content: "";
}

.fa-compress:before {
	content: "";
}

.fa-wheat-alt:before, .fa-wheat-awn:before {
	content: "";
}

.fa-ankh:before {
	content: "";
}

.fa-hands-holding-child:before {
	content: "";
}

.fa-asterisk:before {
	content: "*";
}

.fa-check-square:before, .fa-square-check:before {
	content: "";
}

.fa-peseta-sign:before {
	content: "";
}

.fa-header:before, .fa-heading:before {
	content: "";
}

.fa-ghost:before {
	content: "";
}

.fa-list-squares:before, .fa-list:before {
	content: "";
}

.fa-phone-square-alt:before, .fa-square-phone-flip:before {
	content: "";
}

.fa-cart-plus:before {
	content: "";
}

.fa-gamepad:before {
	content: "";
}

.fa-circle-dot:before, .fa-dot-circle:before {
	content: "";
}

.fa-dizzy:before, .fa-face-dizzy:before {
	content: "";
}

.fa-egg:before {
	content: "";
}

.fa-house-medical-circle-xmark:before {
	content: "";
}

.fa-campground:before {
	content: "";
}

.fa-folder-plus:before {
	content: "";
}

.fa-futbol-ball:before, .fa-futbol:before, .fa-soccer-ball:before {
	content: "";
}

.fa-paint-brush:before, .fa-paintbrush:before {
	content: "";
}

.fa-lock:before {
	content: "";
}

.fa-gas-pump:before {
	content: "";
}

.fa-hot-tub-person:before, .fa-hot-tub:before {
	content: "";
}

.fa-map-location:before, .fa-map-marked:before {
	content: "";
}

.fa-house-flood-water:before {
	content: "";
}

.fa-tree:before {
	content: "";
}

.fa-bridge-lock:before {
	content: "";
}

.fa-sack-dollar:before {
	content: "";
}

.fa-edit:before, .fa-pen-to-square:before {
	content: "";
}

.fa-car-side:before {
	content: "";
}

.fa-share-alt:before, .fa-share-nodes:before {
	content: "";
}

.fa-heart-circle-minus:before {
	content: "";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
	content: "";
}

.fa-microscope:before {
	content: "";
}

.fa-sink:before {
	content: "";
}

.fa-bag-shopping:before, .fa-shopping-bag:before {
	content: "";
}

.fa-arrow-down-z-a:before, .fa-sort-alpha-desc:before, .fa-sort-alpha-down-alt:before {
	content: "";
}

.fa-mitten:before {
	content: "";
}

.fa-person-rays:before {
	content: "";
}

.fa-users:before {
	content: "";
}

.fa-eye-slash:before {
	content: "";
}

.fa-flask-vial:before {
	content: "";
}

.fa-hand-paper:before, .fa-hand:before {
	content: "";
}

.fa-om:before {
	content: "";
}

.fa-worm:before {
	content: "";
}

.fa-house-circle-xmark:before {
	content: "";
}

.fa-plug:before {
	content: "";
}

.fa-chevron-up:before {
	content: "";
}

.fa-hand-spock:before {
	content: "";
}

.fa-stopwatch:before {
	content: "";
}

.fa-face-kiss:before, .fa-kiss:before {
	content: "";
}

.fa-bridge-circle-xmark:before {
	content: "";
}

.fa-face-grin-tongue:before, .fa-grin-tongue:before {
	content: "";
}

.fa-chess-bishop:before {
	content: "";
}

.fa-face-grin-wink:before, .fa-grin-wink:before {
	content: "";
}

.fa-deaf:before, .fa-deafness:before, .fa-ear-deaf:before, .fa-hard-of-hearing:before {
	content: "";
}

.fa-road-circle-check:before {
	content: "";
}

.fa-dice-five:before {
	content: "";
}

.fa-rss-square:before, .fa-square-rss:before {
	content: "";
}

.fa-land-mine-on:before {
	content: "";
}

.fa-i-cursor:before {
	content: "";
}

.fa-stamp:before {
	content: "";
}

.fa-stairs:before {
	content: "";
}

.fa-i:before {
	content: "I";
}

.fa-hryvnia-sign:before, .fa-hryvnia:before {
	content: "";
}

.fa-pills:before {
	content: "";
}

.fa-face-grin-wide:before, .fa-grin-alt:before {
	content: "";
}

.fa-tooth:before {
	content: "";
}

.fa-v:before {
	content: "V";
}

.fa-bangladeshi-taka-sign:before {
	content: "";
}

.fa-bicycle:before {
	content: "";
}

.fa-rod-asclepius:before, .fa-rod-snake:before, .fa-staff-aesculapius:before, .fa-staff-snake:before {
	content: "";
}

.fa-head-side-cough-slash:before {
	content: "";
}

.fa-ambulance:before, .fa-truck-medical:before {
	content: "";
}

.fa-wheat-awn-circle-exclamation:before {
	content: "";
}

.fa-snowman:before {
	content: "";
}

.fa-mortar-pestle:before {
	content: "";
}

.fa-road-barrier:before {
	content: "";
}

.fa-school:before {
	content: "";
}

.fa-igloo:before {
	content: "";
}

.fa-joint:before {
	content: "";
}

.fa-angle-right:before {
	content: "";
}

.fa-horse:before {
	content: "";
}

.fa-q:before {
	content: "Q";
}

.fa-g:before {
	content: "G";
}

.fa-notes-medical:before {
	content: "";
}

.fa-temperature-2:before, .fa-temperature-half:before, .fa-thermometer-2:before, .fa-thermometer-half:before {
	content: "";
}

.fa-dong-sign:before {
	content: "";
}

.fa-capsules:before {
	content: "";
}

.fa-poo-bolt:before, .fa-poo-storm:before {
	content: "";
}

.fa-face-frown-open:before, .fa-frown-open:before {
	content: "";
}

.fa-hand-point-up:before {
	content: "";
}

.fa-money-bill:before {
	content: "";
}

.fa-bookmark:before {
	content: "";
}

.fa-align-justify:before {
	content: "";
}

.fa-umbrella-beach:before {
	content: "";
}

.fa-helmet-un:before {
	content: "";
}

.fa-bullseye:before {
	content: "";
}

.fa-bacon:before {
	content: "";
}

.fa-hand-point-down:before {
	content: "";
}

.fa-arrow-up-from-bracket:before {
	content: "";
}

.fa-folder-blank:before, .fa-folder:before {
	content: "";
}

.fa-file-medical-alt:before, .fa-file-waveform:before {
	content: "";
}

.fa-radiation:before {
	content: "";
}

.fa-chart-simple:before {
	content: "";
}

.fa-mars-stroke:before {
	content: "";
}

.fa-vial:before {
	content: "";
}

.fa-dashboard:before, .fa-gauge-med:before, .fa-gauge:before, .fa-tachometer-alt-average:before {
	content: "";
}

.fa-magic-wand-sparkles:before, .fa-wand-magic-sparkles:before {
	content: "";
}

.fa-e:before {
	content: "E";
}

.fa-pen-alt:before, .fa-pen-clip:before {
	content: "";
}

.fa-bridge-circle-exclamation:before {
	content: "";
}

.fa-user:before {
	content: "";
}

.fa-school-circle-check:before {
	content: "";
}

.fa-dumpster:before {
	content: "";
}

.fa-shuttle-van:before, .fa-van-shuttle:before {
	content: "";
}

.fa-building-user:before {
	content: "";
}

.fa-caret-square-left:before, .fa-square-caret-left:before {
	content: "";
}

.fa-highlighter:before {
	content: "";
}

.fa-key:before {
	content: "";
}

.fa-bullhorn:before {
	content: "";
}

.fa-globe:before {
	content: "";
}

.fa-synagogue:before {
	content: "";
}

.fa-person-half-dress:before {
	content: "";
}

.fa-road-bridge:before {
	content: "";
}

.fa-location-arrow:before {
	content: "";
}

.fa-c:before {
	content: "C";
}

.fa-tablet-button:before {
	content: "";
}

.fa-building-lock:before {
	content: "";
}

.fa-pizza-slice:before {
	content: "";
}

.fa-money-bill-wave:before {
	content: "";
}

.fa-area-chart:before, .fa-chart-area:before {
	content: "";
}

.fa-house-flag:before {
	content: "";
}

.fa-person-circle-minus:before {
	content: "";
}

.fa-ban:before, .fa-cancel:before {
	content: "";
}

.fa-camera-rotate:before {
	content: "";
}

.fa-air-freshener:before, .fa-spray-can-sparkles:before {
	content: "";
}

.fa-star:before {
	content: "";
}

.fa-repeat:before {
	content: "";
}

.fa-cross:before {
	content: "";
}

.fa-box:before {
	content: "";
}

.fa-venus-mars:before {
	content: "";
}

.fa-arrow-pointer:before, .fa-mouse-pointer:before {
	content: "";
}

.fa-expand-arrows-alt:before, .fa-maximize:before {
	content: "";
}

.fa-charging-station:before {
	content: "";
}

.fa-shapes:before, .fa-triangle-circle-square:before {
	content: "";
}

.fa-random:before, .fa-shuffle:before {
	content: "";
}

.fa-person-running:before, .fa-running:before {
	content: "";
}

.fa-mobile-retro:before {
	content: "";
}

.fa-grip-lines-vertical:before {
	content: "";
}

.fa-spider:before {
	content: "";
}

.fa-hands-bound:before {
	content: "";
}

.fa-file-invoice-dollar:before {
	content: "";
}

.fa-plane-circle-exclamation:before {
	content: "";
}

.fa-x-ray:before {
	content: "";
}

.fa-spell-check:before {
	content: "";
}

.fa-slash:before {
	content: "";
}

.fa-computer-mouse:before, .fa-mouse:before {
	content: "";
}

.fa-arrow-right-to-bracket:before, .fa-sign-in:before {
	content: "";
}

.fa-shop-slash:before, .fa-store-alt-slash:before {
	content: "";
}

.fa-server:before {
	content: "";
}

.fa-virus-covid-slash:before {
	content: "";
}

.fa-shop-lock:before {
	content: "";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
	content: "";
}

.fa-blender-phone:before {
	content: "";
}

.fa-building-wheat:before {
	content: "";
}

.fa-person-breastfeeding:before {
	content: "";
}

.fa-right-to-bracket:before, .fa-sign-in-alt:before {
	content: "";
}

.fa-venus:before {
	content: "";
}

.fa-passport:before {
	content: "";
}

.fa-heart-pulse:before, .fa-heartbeat:before {
	content: "";
}

.fa-people-carry-box:before, .fa-people-carry:before {
	content: "";
}

.fa-temperature-high:before {
	content: "";
}

.fa-microchip:before {
	content: "";
}

.fa-crown:before {
	content: "";
}

.fa-weight-hanging:before {
	content: "";
}

.fa-xmarks-lines:before {
	content: "";
}

.fa-file-prescription:before {
	content: "";
}

.fa-weight-scale:before, .fa-weight:before {
	content: "";
}

.fa-user-friends:before, .fa-user-group:before {
	content: "";
}

.fa-arrow-up-a-z:before, .fa-sort-alpha-up:before {
	content: "";
}

.fa-chess-knight:before {
	content: "";
}

.fa-face-laugh-squint:before, .fa-laugh-squint:before {
	content: "";
}

.fa-wheelchair:before {
	content: "";
}

.fa-arrow-circle-up:before, .fa-circle-arrow-up:before {
	content: "";
}

.fa-toggle-on:before {
	content: "";
}

.fa-person-walking:before, .fa-walking:before {
	content: "";
}

.fa-l:before {
	content: "L";
}

.fa-fire:before {
	content: "";
}

.fa-bed-pulse:before, .fa-procedures:before {
	content: "";
}

.fa-shuttle-space:before, .fa-space-shuttle:before {
	content: "";
}

.fa-face-laugh:before, .fa-laugh:before {
	content: "";
}

.fa-folder-open:before {
	content: "";
}

.fa-heart-circle-plus:before {
	content: "";
}

.fa-code-fork:before {
	content: "";
}

.fa-city:before {
	content: "";
}

.fa-microphone-alt:before, .fa-microphone-lines:before {
	content: "";
}

.fa-pepper-hot:before {
	content: "";
}

.fa-unlock:before {
	content: "";
}

.fa-colon-sign:before {
	content: "";
}

.fa-headset:before {
	content: "";
}

.fa-store-slash:before {
	content: "";
}

.fa-road-circle-xmark:before {
	content: "";
}

.fa-user-minus:before {
	content: "";
}

.fa-mars-stroke-up:before, .fa-mars-stroke-v:before {
	content: "";
}

.fa-champagne-glasses:before, .fa-glass-cheers:before {
	content: "";
}

.fa-clipboard:before {
	content: "";
}

.fa-house-circle-exclamation:before {
	content: "";
}

.fa-file-arrow-up:before, .fa-file-upload:before {
	content: "";
}

.fa-wifi-3:before, .fa-wifi-strong:before, .fa-wifi:before {
	content: "";
}

.fa-bath:before, .fa-bathtub:before {
	content: "";
}

.fa-underline:before {
	content: "";
}

.fa-user-edit:before, .fa-user-pen:before {
	content: "";
}

.fa-signature:before {
	content: "";
}

.fa-stroopwafel:before {
	content: "";
}

.fa-bold:before {
	content: "";
}

.fa-anchor-lock:before {
	content: "";
}

.fa-building-ngo:before {
	content: "";
}

.fa-manat-sign:before {
	content: "";
}

.fa-not-equal:before {
	content: "";
}

.fa-border-style:before, .fa-border-top-left:before {
	content: "";
}

.fa-map-location-dot:before, .fa-map-marked-alt:before {
	content: "";
}

.fa-jedi:before {
	content: "";
}

.fa-poll:before, .fa-square-poll-vertical:before {
	content: "";
}

.fa-mug-hot:before {
	content: "";
}

.fa-battery-car:before, .fa-car-battery:before {
	content: "";
}

.fa-gift:before {
	content: "";
}

.fa-dice-two:before {
	content: "";
}

.fa-chess-queen:before {
	content: "";
}

.fa-glasses:before {
	content: "";
}

.fa-chess-board:before {
	content: "";
}

.fa-building-circle-check:before {
	content: "";
}

.fa-person-chalkboard:before {
	content: "";
}

.fa-mars-stroke-h:before, .fa-mars-stroke-right:before {
	content: "";
}

.fa-hand-back-fist:before, .fa-hand-rock:before {
	content: "";
}

.fa-caret-square-up:before, .fa-square-caret-up:before {
	content: "";
}

.fa-cloud-showers-water:before {
	content: "";
}

.fa-bar-chart:before, .fa-chart-bar:before {
	content: "";
}

.fa-hands-bubbles:before, .fa-hands-wash:before {
	content: "";
}

.fa-less-than-equal:before {
	content: "";
}

.fa-train:before {
	content: "";
}

.fa-eye-low-vision:before, .fa-low-vision:before {
	content: "";
}

.fa-crow:before {
	content: "";
}

.fa-sailboat:before {
	content: "";
}

.fa-window-restore:before {
	content: "";
}

.fa-plus-square:before, .fa-square-plus:before {
	content: "";
}

.fa-torii-gate:before {
	content: "";
}

.fa-frog:before {
	content: "";
}

.fa-bucket:before {
	content: "";
}

.fa-image:before {
	content: "";
}

.fa-microphone:before {
	content: "";
}

.fa-cow:before {
	content: "";
}

.fa-caret-up:before {
	content: "";
}

.fa-screwdriver:before {
	content: "";
}

.fa-folder-closed:before {
	content: "";
}

.fa-house-tsunami:before {
	content: "";
}

.fa-square-nfi:before {
	content: "";
}

.fa-arrow-up-from-ground-water:before {
	content: "";
}

.fa-glass-martini-alt:before, .fa-martini-glass:before {
	content: "";
}

.fa-rotate-back:before, .fa-rotate-backward:before, .fa-rotate-left:before, .fa-undo-alt:before {
	content: "";
}

.fa-columns:before, .fa-table-columns:before {
	content: "";
}

.fa-lemon:before {
	content: "";
}

.fa-head-side-mask:before {
	content: "";
}

.fa-handshake:before {
	content: "";
}

.fa-gem:before {
	content: "";
}

.fa-dolly-box:before, .fa-dolly:before {
	content: "";
}

.fa-smoking:before {
	content: "";
}

.fa-compress-arrows-alt:before, .fa-minimize:before {
	content: "";
}

.fa-monument:before {
	content: "";
}

.fa-snowplow:before {
	content: "";
}

.fa-angle-double-right:before, .fa-angles-right:before {
	content: "";
}

.fa-cannabis:before {
	content: "";
}

.fa-circle-play:before, .fa-play-circle:before {
	content: "";
}

.fa-tablets:before {
	content: "";
}

.fa-ethernet:before {
	content: "";
}

.fa-eur:before, .fa-euro-sign:before, .fa-euro:before {
	content: "";
}

.fa-chair:before {
	content: "";
}

.fa-check-circle:before, .fa-circle-check:before {
	content: "";
}

.fa-circle-stop:before, .fa-stop-circle:before {
	content: "";
}

.fa-compass-drafting:before, .fa-drafting-compass:before {
	content: "";
}

.fa-plate-wheat:before {
	content: "";
}

.fa-icicles:before {
	content: "";
}

.fa-person-shelter:before {
	content: "";
}

.fa-neuter:before {
	content: "";
}

.fa-id-badge:before {
	content: "";
}

.fa-marker:before {
	content: "";
}

.fa-face-laugh-beam:before, .fa-laugh-beam:before {
	content: "";
}

.fa-helicopter-symbol:before {
	content: "";
}

.fa-universal-access:before {
	content: "";
}

.fa-chevron-circle-up:before, .fa-circle-chevron-up:before {
	content: "";
}

.fa-lari-sign:before {
	content: "";
}

.fa-volcano:before {
	content: "";
}

.fa-person-walking-dashed-line-arrow-right:before {
	content: "";
}

.fa-gbp:before, .fa-pound-sign:before, .fa-sterling-sign:before {
	content: "";
}

.fa-viruses:before {
	content: "";
}

.fa-square-person-confined:before {
	content: "";
}

.fa-user-tie:before {
	content: "";
}

.fa-arrow-down-long:before, .fa-long-arrow-down:before {
	content: "";
}

.fa-tent-arrow-down-to-line:before {
	content: "";
}

.fa-certificate:before {
	content: "";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
	content: "";
}

.fa-suitcase:before {
	content: "";
}

.fa-person-skating:before, .fa-skating:before {
	content: "";
}

.fa-filter-circle-dollar:before, .fa-funnel-dollar:before {
	content: "";
}

.fa-camera-retro:before {
	content: "";
}

.fa-arrow-circle-down:before, .fa-circle-arrow-down:before {
	content: "";
}

.fa-arrow-right-to-file:before, .fa-file-import:before {
	content: "";
}

.fa-external-link-square:before, .fa-square-arrow-up-right:before {
	content: "";
}

.fa-box-open:before {
	content: "";
}

.fa-scroll:before {
	content: "";
}

.fa-spa:before {
	content: "";
}

.fa-location-pin-lock:before {
	content: "";
}

.fa-pause:before {
	content: "";
}

.fa-hill-avalanche:before {
	content: "";
}

.fa-temperature-0:before, .fa-temperature-empty:before, .fa-thermometer-0:before, .fa-thermometer-empty:before {
	content: "";
}

.fa-bomb:before {
	content: "";
}

.fa-registered:before {
	content: "";
}

.fa-address-card:before, .fa-contact-card:before, .fa-vcard:before {
	content: "";
}

.fa-balance-scale-right:before, .fa-scale-unbalanced-flip:before {
	content: "";
}

.fa-subscript:before {
	content: "";
}

.fa-diamond-turn-right:before, .fa-directions:before {
	content: "";
}

.fa-burst:before {
	content: "";
}

.fa-house-laptop:before, .fa-laptop-house:before {
	content: "";
}

.fa-face-tired:before, .fa-tired:before {
	content: "";
}

.fa-money-bills:before {
	content: "";
}

.fa-smog:before {
	content: "";
}

.fa-crutch:before {
	content: "";
}

.fa-cloud-arrow-up:before, .fa-cloud-upload-alt:before, .fa-cloud-upload:before {
	content: "";
}

.fa-palette:before {
	content: "";
}

.fa-arrows-turn-right:before {
	content: "";
}

.fa-vest:before {
	content: "";
}

.fa-ferry:before {
	content: "";
}

.fa-arrows-down-to-people:before {
	content: "";
}

.fa-seedling:before, .fa-sprout:before {
	content: "";
}

.fa-arrows-alt-h:before, .fa-left-right:before {
	content: "";
}

.fa-boxes-packing:before {
	content: "";
}

.fa-arrow-circle-left:before, .fa-circle-arrow-left:before {
	content: "";
}

.fa-group-arrows-rotate:before {
	content: "";
}

.fa-bowl-food:before {
	content: "";
}

.fa-candy-cane:before {
	content: "";
}

.fa-arrow-down-wide-short:before, .fa-sort-amount-asc:before, .fa-sort-amount-down:before {
	content: "";
}

.fa-cloud-bolt:before, .fa-thunderstorm:before {
	content: "";
}

.fa-remove-format:before, .fa-text-slash:before {
	content: "";
}

.fa-face-smile-wink:before, .fa-smile-wink:before {
	content: "";
}

.fa-file-word:before {
	content: "";
}

.fa-file-powerpoint:before {
	content: "";
}

.fa-arrows-h:before, .fa-arrows-left-right:before {
	content: "";
}

.fa-house-lock:before {
	content: "";
}

.fa-cloud-arrow-down:before, .fa-cloud-download-alt:before, .fa-cloud-download:before {
	content: "";
}

.fa-children:before {
	content: "";
}

.fa-blackboard:before, .fa-chalkboard:before {
	content: "";
}

.fa-user-alt-slash:before, .fa-user-large-slash:before {
	content: "";
}

.fa-envelope-open:before {
	content: "";
}

.fa-handshake-alt-slash:before, .fa-handshake-simple-slash:before {
	content: "";
}

.fa-mattress-pillow:before {
	content: "";
}

.fa-guarani-sign:before {
	content: "";
}

.fa-arrows-rotate:before, .fa-refresh:before, .fa-sync:before {
	content: "";
}

.fa-fire-extinguisher:before {
	content: "";
}

.fa-cruzeiro-sign:before {
	content: "";
}

.fa-greater-than-equal:before {
	content: "";
}

.fa-shield-alt:before, .fa-shield-halved:before {
	content: "";
}

.fa-atlas:before, .fa-book-atlas:before {
	content: "";
}

.fa-virus:before {
	content: "";
}

.fa-envelope-circle-check:before {
	content: "";
}

.fa-layer-group:before {
	content: "";
}

.fa-arrows-to-dot:before {
	content: "";
}

.fa-archway:before {
	content: "";
}

.fa-heart-circle-check:before {
	content: "";
}

.fa-house-chimney-crack:before, .fa-house-damage:before {
	content: "";
}

.fa-file-archive:before, .fa-file-zipper:before {
	content: "";
}

.fa-square:before {
	content: "";
}

.fa-glass-martini:before, .fa-martini-glass-empty:before {
	content: "";
}

.fa-couch:before {
	content: "";
}

.fa-cedi-sign:before {
	content: "";
}

.fa-italic:before {
	content: "";
}

.fa-church:before {
	content: "";
}

.fa-comments-dollar:before {
	content: "";
}

.fa-democrat:before {
	content: "";
}

.fa-z:before {
	content: "Z";
}

.fa-person-skiing:before, .fa-skiing:before {
	content: "";
}

.fa-road-lock:before {
	content: "";
}

.fa-a:before {
	content: "A";
}

.fa-temperature-arrow-down:before, .fa-temperature-down:before {
	content: "";
}

.fa-feather-alt:before, .fa-feather-pointed:before {
	content: "";
}

.fa-p:before {
	content: "P";
}

.fa-snowflake:before {
	content: "";
}

.fa-newspaper:before {
	content: "";
}

.fa-ad:before, .fa-rectangle-ad:before {
	content: "";
}

.fa-arrow-circle-right:before, .fa-circle-arrow-right:before {
	content: "";
}

.fa-filter-circle-xmark:before {
	content: "";
}

.fa-locust:before {
	content: "";
}

.fa-sort:before, .fa-unsorted:before {
	content: "";
}

.fa-list-1-2:before, .fa-list-numeric:before, .fa-list-ol:before {
	content: "";
}

.fa-person-dress-burst:before {
	content: "";
}

.fa-money-check-alt:before, .fa-money-check-dollar:before {
	content: "";
}

.fa-vector-square:before {
	content: "";
}

.fa-bread-slice:before {
	content: "";
}

.fa-language:before {
	content: "";
}

.fa-face-kiss-wink-heart:before, .fa-kiss-wink-heart:before {
	content: "";
}

.fa-filter:before {
	content: "";
}

.fa-question:before {
	content: "?";
}

.fa-file-signature:before {
	content: "";
}

.fa-arrows-alt:before, .fa-up-down-left-right:before {
	content: "";
}

.fa-house-chimney-user:before {
	content: "";
}

.fa-hand-holding-heart:before {
	content: "";
}

.fa-puzzle-piece:before {
	content: "";
}

.fa-money-check:before {
	content: "";
}

.fa-star-half-alt:before, .fa-star-half-stroke:before {
	content: "";
}

.fa-code:before {
	content: "";
}

.fa-glass-whiskey:before, .fa-whiskey-glass:before {
	content: "";
}

.fa-building-circle-exclamation:before {
	content: "";
}

.fa-magnifying-glass-chart:before {
	content: "";
}

.fa-arrow-up-right-from-square:before, .fa-external-link:before {
	content: "";
}

.fa-cubes-stacked:before {
	content: "";
}

.fa-krw:before, .fa-won-sign:before, .fa-won:before {
	content: "";
}

.fa-virus-covid:before {
	content: "";
}

.fa-austral-sign:before {
	content: "";
}

.fa-f:before {
	content: "F";
}

.fa-leaf:before {
	content: "";
}

.fa-road:before {
	content: "";
}

.fa-cab:before, .fa-taxi:before {
	content: "";
}

.fa-person-circle-plus:before {
	content: "";
}

.fa-chart-pie:before, .fa-pie-chart:before {
	content: "";
}

.fa-bolt-lightning:before {
	content: "";
}

.fa-sack-xmark:before {
	content: "";
}

.fa-file-excel:before {
	content: "";
}

.fa-file-contract:before {
	content: "";
}

.fa-fish-fins:before {
	content: "";
}

.fa-building-flag:before {
	content: "";
}

.fa-face-grin-beam:before, .fa-grin-beam:before {
	content: "";
}

.fa-object-ungroup:before {
	content: "";
}

.fa-poop:before {
	content: "";
}

.fa-location-pin:before, .fa-map-marker:before {
	content: "";
}

.fa-kaaba:before {
	content: "";
}

.fa-toilet-paper:before {
	content: "";
}

.fa-hard-hat:before, .fa-hat-hard:before, .fa-helmet-safety:before {
	content: "";
}

.fa-eject:before {
	content: "";
}

.fa-arrow-alt-circle-right:before, .fa-circle-right:before {
	content: "";
}

.fa-plane-circle-check:before {
	content: "";
}

.fa-face-rolling-eyes:before, .fa-meh-rolling-eyes:before {
	content: "";
}

.fa-object-group:before {
	content: "";
}

.fa-chart-line:before, .fa-line-chart:before {
	content: "";
}

.fa-mask-ventilator:before {
	content: "";
}

.fa-arrow-right:before {
	content: "";
}

.fa-map-signs:before, .fa-signs-post:before {
	content: "";
}

.fa-cash-register:before {
	content: "";
}

.fa-person-circle-question:before {
	content: "";
}

.fa-h:before {
	content: "H";
}

.fa-tarp:before {
	content: "";
}

.fa-screwdriver-wrench:before, .fa-tools:before {
	content: "";
}

.fa-arrows-to-eye:before {
	content: "";
}

.fa-plug-circle-bolt:before {
	content: "";
}

.fa-heart:before {
	content: "";
}

.fa-mars-and-venus:before {
	content: "";
}

.fa-home-user:before, .fa-house-user:before {
	content: "";
}

.fa-dumpster-fire:before {
	content: "";
}

.fa-house-crack:before {
	content: "";
}

.fa-cocktail:before, .fa-martini-glass-citrus:before {
	content: "";
}

.fa-face-surprise:before, .fa-surprise:before {
	content: "";
}

.fa-bottle-water:before {
	content: "";
}

.fa-circle-pause:before, .fa-pause-circle:before {
	content: "";
}

.fa-toilet-paper-slash:before {
	content: "";
}

.fa-apple-alt:before, .fa-apple-whole:before {
	content: "";
}

.fa-kitchen-set:before {
	content: "";
}

.fa-r:before {
	content: "R";
}

.fa-temperature-1:before, .fa-temperature-quarter:before, .fa-thermometer-1:before, .fa-thermometer-quarter:before {
	content: "";
}

.fa-cube:before {
	content: "";
}

.fa-bitcoin-sign:before {
	content: "";
}

.fa-shield-dog:before {
	content: "";
}

.fa-solar-panel:before {
	content: "";
}

.fa-lock-open:before {
	content: "";
}

.fa-elevator:before {
	content: "";
}

.fa-money-bill-transfer:before {
	content: "";
}

.fa-money-bill-trend-up:before {
	content: "";
}

.fa-house-flood-water-circle-arrow-right:before {
	content: "";
}

.fa-poll-h:before, .fa-square-poll-horizontal:before {
	content: "";
}

.fa-circle:before {
	content: "";
}

.fa-backward-fast:before, .fa-fast-backward:before {
	content: "";
}

.fa-recycle:before {
	content: "";
}

.fa-user-astronaut:before {
	content: "";
}

.fa-plane-slash:before {
	content: "";
}

.fa-trademark:before {
	content: "";
}

.fa-basketball-ball:before, .fa-basketball:before {
	content: "";
}

.fa-satellite-dish:before {
	content: "";
}

.fa-arrow-alt-circle-up:before, .fa-circle-up:before {
	content: "";
}

.fa-mobile-alt:before, .fa-mobile-screen-button:before {
	content: "";
}

.fa-volume-high:before, .fa-volume-up:before {
	content: "";
}

.fa-users-rays:before {
	content: "";
}

.fa-wallet:before {
	content: "";
}

.fa-clipboard-check:before {
	content: "";
}

.fa-file-audio:before {
	content: "";
}

.fa-burger:before, .fa-hamburger:before {
	content: "";
}

.fa-wrench:before {
	content: "";
}

.fa-bugs:before {
	content: "";
}

.fa-rupee-sign:before, .fa-rupee:before {
	content: "";
}

.fa-file-image:before {
	content: "";
}

.fa-circle-question:before, .fa-question-circle:before {
	content: "";
}

.fa-plane-departure:before {
	content: "";
}

.fa-handshake-slash:before {
	content: "";
}

.fa-book-bookmark:before {
	content: "";
}

.fa-code-branch:before {
	content: "";
}

.fa-hat-cowboy:before {
	content: "";
}

.fa-bridge:before {
	content: "";
}

.fa-phone-alt:before, .fa-phone-flip:before {
	content: "";
}

.fa-truck-front:before {
	content: "";
}

.fa-cat:before {
	content: "";
}

.fa-anchor-circle-exclamation:before {
	content: "";
}

.fa-truck-field:before {
	content: "";
}

.fa-route:before {
	content: "";
}

.fa-clipboard-question:before {
	content: "";
}

.fa-panorama:before {
	content: "";
}

.fa-comment-medical:before {
	content: "";
}

.fa-teeth-open:before {
	content: "";
}

.fa-file-circle-minus:before {
	content: "";
}

.fa-tags:before {
	content: "";
}

.fa-wine-glass:before {
	content: "";
}

.fa-fast-forward:before, .fa-forward-fast:before {
	content: "";
}

.fa-face-meh-blank:before, .fa-meh-blank:before {
	content: "";
}

.fa-parking:before, .fa-square-parking:before {
	content: "";
}

.fa-house-signal:before {
	content: "";
}

.fa-bars-progress:before, .fa-tasks-alt:before {
	content: "";
}

.fa-faucet-drip:before {
	content: "";
}

.fa-cart-flatbed:before, .fa-dolly-flatbed:before {
	content: "";
}

.fa-ban-smoking:before, .fa-smoking-ban:before {
	content: "";
}

.fa-terminal:before {
	content: "";
}

.fa-mobile-button:before {
	content: "";
}

.fa-house-medical-flag:before {
	content: "";
}

.fa-basket-shopping:before, .fa-shopping-basket:before {
	content: "";
}

.fa-tape:before {
	content: "";
}

.fa-bus-alt:before, .fa-bus-simple:before {
	content: "";
}

.fa-eye:before {
	content: "";
}

.fa-face-sad-cry:before, .fa-sad-cry:before {
	content: "";
}

.fa-audio-description:before {
	content: "";
}

.fa-person-military-to-person:before {
	content: "";
}

.fa-file-shield:before {
	content: "";
}

.fa-user-slash:before {
	content: "";
}

.fa-pen:before {
	content: "";
}

.fa-tower-observation:before {
	content: "";
}

.fa-file-code:before {
	content: "";
}

.fa-signal-5:before, .fa-signal-perfect:before, .fa-signal:before {
	content: "";
}

.fa-bus:before {
	content: "";
}

.fa-heart-circle-xmark:before {
	content: "";
}

.fa-home-lg:before, .fa-house-chimney:before {
	content: "";
}

.fa-window-maximize:before {
	content: "";
}

.fa-face-frown:before, .fa-frown:before {
	content: "";
}

.fa-prescription:before {
	content: "";
}

.fa-shop:before, .fa-store-alt:before {
	content: "";
}

.fa-floppy-disk:before, .fa-save:before {
	content: "";
}

.fa-vihara:before {
	content: "";
}

.fa-balance-scale-left:before, .fa-scale-unbalanced:before {
	content: "";
}

.fa-sort-asc:before, .fa-sort-up:before {
	content: "";
}

.fa-comment-dots:before, .fa-commenting:before {
	content: "";
}

.fa-plant-wilt:before {
	content: "";
}

.fa-diamond:before {
	content: "";
}

.fa-face-grin-squint:before, .fa-grin-squint:before {
	content: "";
}

.fa-hand-holding-dollar:before, .fa-hand-holding-usd:before {
	content: "";
}

.fa-bacterium:before {
	content: "";
}

.fa-hand-pointer:before {
	content: "";
}

.fa-drum-steelpan:before {
	content: "";
}

.fa-hand-scissors:before {
	content: "";
}

.fa-hands-praying:before, .fa-praying-hands:before {
	content: "";
}

.fa-arrow-right-rotate:before, .fa-arrow-rotate-forward:before, .fa-arrow-rotate-right:before, .fa-redo:before {
	content: "";
}

.fa-biohazard:before {
	content: "";
}

.fa-location-crosshairs:before, .fa-location:before {
	content: "";
}

.fa-mars-double:before {
	content: "";
}

.fa-child-dress:before {
	content: "";
}

.fa-users-between-lines:before {
	content: "";
}

.fa-lungs-virus:before {
	content: "";
}

.fa-face-grin-tears:before, .fa-grin-tears:before {
	content: "";
}

.fa-phone:before {
	content: "";
}

.fa-calendar-times:before, .fa-calendar-xmark:before {
	content: "";
}

.fa-child-reaching:before {
	content: "";
}

.fa-head-side-virus:before {
	content: "";
}

.fa-user-cog:before, .fa-user-gear:before {
	content: "";
}

.fa-arrow-up-1-9:before, .fa-sort-numeric-up:before {
	content: "";
}

.fa-door-closed:before {
	content: "";
}

.fa-shield-virus:before {
	content: "";
}

.fa-dice-six:before {
	content: "";
}

.fa-mosquito-net:before {
	content: "";
}

.fa-bridge-water:before {
	content: "";
}

.fa-person-booth:before {
	content: "";
}

.fa-text-width:before {
	content: "";
}

.fa-hat-wizard:before {
	content: "";
}

.fa-pen-fancy:before {
	content: "";
}

.fa-digging:before, .fa-person-digging:before {
	content: "";
}

.fa-trash:before {
	content: "";
}

.fa-gauge-simple-med:before, .fa-gauge-simple:before, .fa-tachometer-average:before {
	content: "";
}

.fa-book-medical:before {
	content: "";
}

.fa-poo:before {
	content: "";
}

.fa-quote-right-alt:before, .fa-quote-right:before {
	content: "";
}

.fa-shirt:before, .fa-t-shirt:before, .fa-tshirt:before {
	content: "";
}

.fa-cubes:before {
	content: "";
}

.fa-divide:before {
	content: "";
}

.fa-tenge-sign:before, .fa-tenge:before {
	content: "";
}

.fa-headphones:before {
	content: "";
}

.fa-hands-holding:before {
	content: "";
}

.fa-hands-clapping:before {
	content: "";
}

.fa-republican:before {
	content: "";
}

.fa-arrow-left:before {
	content: "";
}

.fa-person-circle-xmark:before {
	content: "";
}

.fa-ruler:before {
	content: "";
}

.fa-align-left:before {
	content: "";
}

.fa-dice-d6:before {
	content: "";
}

.fa-restroom:before {
	content: "";
}

.fa-j:before {
	content: "J";
}

.fa-users-viewfinder:before {
	content: "";
}

.fa-file-video:before {
	content: "";
}

.fa-external-link-alt:before, .fa-up-right-from-square:before {
	content: "";
}

.fa-table-cells:before, .fa-th:before {
	content: "";
}

.fa-file-pdf:before {
	content: "";
}

.fa-bible:before, .fa-book-bible:before {
	content: "";
}

.fa-o:before {
	content: "O";
}

.fa-medkit:before, .fa-suitcase-medical:before {
	content: "";
}

.fa-user-secret:before {
	content: "";
}

.fa-otter:before {
	content: "";
}

.fa-female:before, .fa-person-dress:before {
	content: "";
}

.fa-comment-dollar:before {
	content: "";
}

.fa-briefcase-clock:before, .fa-business-time:before {
	content: "";
}

.fa-table-cells-large:before, .fa-th-large:before {
	content: "";
}

.fa-book-tanakh:before, .fa-tanakh:before {
	content: "";
}

.fa-phone-volume:before, .fa-volume-control-phone:before {
	content: "";
}

.fa-hat-cowboy-side:before {
	content: "";
}

.fa-clipboard-user:before {
	content: "";
}

.fa-child:before {
	content: "";
}

.fa-lira-sign:before {
	content: "";
}

.fa-satellite:before {
	content: "";
}

.fa-plane-lock:before {
	content: "";
}

.fa-tag:before {
	content: "";
}

.fa-comment:before {
	content: "";
}

.fa-birthday-cake:before, .fa-cake-candles:before, .fa-cake:before {
	content: "";
}

.fa-envelope:before {
	content: "";
}

.fa-angle-double-up:before, .fa-angles-up:before {
	content: "";
}

.fa-paperclip:before {
	content: "";
}

.fa-arrow-right-to-city:before {
	content: "";
}

.fa-ribbon:before {
	content: "";
}

.fa-lungs:before {
	content: "";
}

.fa-arrow-up-9-1:before, .fa-sort-numeric-up-alt:before {
	content: "";
}

.fa-litecoin-sign:before {
	content: "";
}

.fa-border-none:before {
	content: "";
}

.fa-circle-nodes:before {
	content: "";
}

.fa-parachute-box:before {
	content: "";
}

.fa-indent:before {
	content: "";
}

.fa-truck-field-un:before {
	content: "";
}

.fa-hourglass-empty:before, .fa-hourglass:before {
	content: "";
}

.fa-mountain:before {
	content: "";
}

.fa-user-doctor:before, .fa-user-md:before {
	content: "";
}

.fa-circle-info:before, .fa-info-circle:before {
	content: "";
}

.fa-cloud-meatball:before {
	content: "";
}

.fa-camera-alt:before, .fa-camera:before {
	content: "";
}

.fa-square-virus:before {
	content: "";
}

.fa-meteor:before {
	content: "";
}

.fa-car-on:before {
	content: "";
}

.fa-sleigh:before {
	content: "";
}

.fa-arrow-down-1-9:before, .fa-sort-numeric-asc:before, .fa-sort-numeric-down:before {
	content: "";
}

.fa-hand-holding-droplet:before, .fa-hand-holding-water:before {
	content: "";
}

.fa-water:before {
	content: "";
}

.fa-calendar-check:before {
	content: "";
}

.fa-braille:before {
	content: "";
}

.fa-prescription-bottle-alt:before, .fa-prescription-bottle-medical:before {
	content: "";
}

.fa-landmark:before {
	content: "";
}

.fa-truck:before {
	content: "";
}

.fa-crosshairs:before {
	content: "";
}

.fa-person-cane:before {
	content: "";
}

.fa-tent:before {
	content: "";
}

.fa-vest-patches:before {
	content: "";
}

.fa-check-double:before {
	content: "";
}

.fa-arrow-down-a-z:before, .fa-sort-alpha-asc:before, .fa-sort-alpha-down:before {
	content: "";
}

.fa-money-bill-wheat:before {
	content: "";
}

.fa-cookie:before {
	content: "";
}

.fa-arrow-left-rotate:before, .fa-arrow-rotate-back:before, .fa-arrow-rotate-backward:before, .fa-arrow-rotate-left:before, .fa-undo:before {
	content: "";
}

.fa-hard-drive:before, .fa-hdd:before {
	content: "";
}

.fa-face-grin-squint-tears:before, .fa-grin-squint-tears:before {
	content: "";
}

.fa-dumbbell:before {
	content: "";
}

.fa-list-alt:before, .fa-rectangle-list:before {
	content: "";
}

.fa-tarp-droplet:before {
	content: "";
}

.fa-house-medical-circle-check:before {
	content: "";
}

.fa-person-skiing-nordic:before, .fa-skiing-nordic:before {
	content: "";
}

.fa-calendar-plus:before {
	content: "";
}

.fa-plane-arrival:before {
	content: "";
}

.fa-arrow-alt-circle-left:before, .fa-circle-left:before {
	content: "";
}

.fa-subway:before, .fa-train-subway:before {
	content: "";
}

.fa-chart-gantt:before {
	content: "";
}

.fa-indian-rupee-sign:before, .fa-indian-rupee:before, .fa-inr:before {
	content: "";
}

.fa-crop-alt:before, .fa-crop-simple:before {
	content: "";
}

.fa-money-bill-1:before, .fa-money-bill-alt:before {
	content: "";
}

.fa-left-long:before, .fa-long-arrow-alt-left:before {
	content: "";
}

.fa-dna:before {
	content: "";
}

.fa-virus-slash:before {
	content: "";
}

.fa-minus:before, .fa-subtract:before {
	content: "";
}

.fa-chess:before {
	content: "";
}

.fa-arrow-left-long:before, .fa-long-arrow-left:before {
	content: "";
}

.fa-plug-circle-check:before {
	content: "";
}

.fa-street-view:before {
	content: "";
}

.fa-franc-sign:before {
	content: "";
}

.fa-volume-off:before {
	content: "";
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before, .fa-hands-american-sign-language-interpreting:before, .fa-hands-asl-interpreting:before {
	content: "";
}

.fa-cog:before, .fa-gear:before {
	content: "";
}

.fa-droplet-slash:before, .fa-tint-slash:before {
	content: "";
}

.fa-mosque:before {
	content: "";
}

.fa-mosquito:before {
	content: "";
}

.fa-star-of-david:before {
	content: "";
}

.fa-person-military-rifle:before {
	content: "";
}

.fa-cart-shopping:before, .fa-shopping-cart:before {
	content: "";
}

.fa-vials:before {
	content: "";
}

.fa-plug-circle-plus:before {
	content: "";
}

.fa-place-of-worship:before {
	content: "";
}

.fa-grip-vertical:before {
	content: "";
}

.fa-arrow-turn-up:before, .fa-level-up:before {
	content: "";
}

.fa-u:before {
	content: "U";
}

.fa-square-root-alt:before, .fa-square-root-variable:before {
	content: "";
}

.fa-clock-four:before, .fa-clock:before {
	content: "";
}

.fa-backward-step:before, .fa-step-backward:before {
	content: "";
}

.fa-pallet:before {
	content: "";
}

.fa-faucet:before {
	content: "";
}

.fa-baseball-bat-ball:before {
	content: "";
}

.fa-s:before {
	content: "S";
}

.fa-timeline:before {
	content: "";
}

.fa-keyboard:before {
	content: "";
}

.fa-caret-down:before {
	content: "";
}

.fa-clinic-medical:before, .fa-house-chimney-medical:before {
	content: "";
}

.fa-temperature-3:before, .fa-temperature-three-quarters:before, .fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
	content: "";
}

.fa-mobile-android-alt:before, .fa-mobile-screen:before {
	content: "";
}

.fa-plane-up:before {
	content: "";
}

.fa-piggy-bank:before {
	content: "";
}

.fa-battery-3:before, .fa-battery-half:before {
	content: "";
}

.fa-mountain-city:before {
	content: "";
}

.fa-coins:before {
	content: "";
}

.fa-khanda:before {
	content: "";
}

.fa-sliders-h:before, .fa-sliders:before {
	content: "";
}

.fa-folder-tree:before {
	content: "";
}

.fa-network-wired:before {
	content: "";
}

.fa-map-pin:before {
	content: "";
}

.fa-hamsa:before {
	content: "";
}

.fa-cent-sign:before {
	content: "";
}

.fa-flask:before {
	content: "";
}

.fa-person-pregnant:before {
	content: "";
}

.fa-wand-sparkles:before {
	content: "";
}

.fa-ellipsis-v:before, .fa-ellipsis-vertical:before {
	content: "";
}

.fa-ticket:before {
	content: "";
}

.fa-power-off:before {
	content: "";
}

.fa-long-arrow-alt-right:before, .fa-right-long:before {
	content: "";
}

.fa-flag-usa:before {
	content: "";
}

.fa-laptop-file:before {
	content: "";
}

.fa-teletype:before, .fa-tty:before {
	content: "";
}

.fa-diagram-next:before {
	content: "";
}

.fa-person-rifle:before {
	content: "";
}

.fa-house-medical-circle-exclamation:before {
	content: "";
}

.fa-closed-captioning:before {
	content: "";
}

.fa-hiking:before, .fa-person-hiking:before {
	content: "";
}

.fa-venus-double:before {
	content: "";
}

.fa-images:before {
	content: "";
}

.fa-calculator:before {
	content: "";
}

.fa-people-pulling:before {
	content: "";
}

.fa-n:before {
	content: "N";
}

.fa-cable-car:before, .fa-tram:before {
	content: "";
}

.fa-cloud-rain:before {
	content: "";
}

.fa-building-circle-xmark:before {
	content: "";
}

.fa-ship:before {
	content: "";
}

.fa-arrows-down-to-line:before {
	content: "";
}

.fa-download:before {
	content: "";
}

.fa-face-grin:before, .fa-grin:before {
	content: "";
}

.fa-backspace:before, .fa-delete-left:before {
	content: "";
}

.fa-eye-dropper-empty:before, .fa-eye-dropper:before, .fa-eyedropper:before {
	content: "";
}

.fa-file-circle-check:before {
	content: "";
}

.fa-forward:before {
	content: "";
}

.fa-mobile-android:before, .fa-mobile-phone:before, .fa-mobile:before {
	content: "";
}

.fa-face-meh:before, .fa-meh:before {
	content: "";
}

.fa-align-center:before {
	content: "";
}

.fa-book-dead:before, .fa-book-skull:before {
	content: "";
}

.fa-drivers-license:before, .fa-id-card:before {
	content: "";
}

.fa-dedent:before, .fa-outdent:before {
	content: "";
}

.fa-heart-circle-exclamation:before {
	content: "";
}

.fa-home-alt:before, .fa-home-lg-alt:before, .fa-home:before, .fa-house:before {
	content: "";
}

.fa-calendar-week:before {
	content: "";
}

.fa-laptop-medical:before {
	content: "";
}

.fa-b:before {
	content: "B";
}

.fa-file-medical:before {
	content: "";
}

.fa-dice-one:before {
	content: "";
}

.fa-kiwi-bird:before {
	content: "";
}

.fa-arrow-right-arrow-left:before, .fa-exchange:before {
	content: "";
}

.fa-redo-alt:before, .fa-rotate-forward:before, .fa-rotate-right:before {
	content: "";
}

.fa-cutlery:before, .fa-utensils:before {
	content: "";
}

.fa-arrow-up-wide-short:before, .fa-sort-amount-up:before {
	content: "";
}

.fa-mill-sign:before {
	content: "";
}

.fa-bowl-rice:before {
	content: "";
}

.fa-skull:before {
	content: "";
}

.fa-broadcast-tower:before, .fa-tower-broadcast:before {
	content: "";
}

.fa-truck-pickup:before {
	content: "";
}

.fa-long-arrow-alt-up:before, .fa-up-long:before {
	content: "";
}

.fa-stop:before {
	content: "";
}

.fa-code-merge:before {
	content: "";
}

.fa-upload:before {
	content: "";
}

.fa-hurricane:before {
	content: "";
}

.fa-mound:before {
	content: "";
}

.fa-toilet-portable:before {
	content: "";
}

.fa-compact-disc:before {
	content: "";
}

.fa-file-arrow-down:before, .fa-file-download:before {
	content: "";
}

.fa-caravan:before {
	content: "";
}

.fa-shield-cat:before {
	content: "";
}

.fa-bolt:before, .fa-zap:before {
	content: "";
}

.fa-glass-water:before {
	content: "";
}

.fa-oil-well:before {
	content: "";
}

.fa-vault:before {
	content: "";
}

.fa-mars:before {
	content: "";
}

.fa-toilet:before {
	content: "";
}

.fa-plane-circle-xmark:before {
	content: "";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen-sign:before, .fa-yen:before {
	content: "";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble-sign:before, .fa-ruble:before {
	content: "";
}

.fa-sun:before {
	content: "";
}

.fa-guitar:before {
	content: "";
}

.fa-face-laugh-wink:before, .fa-laugh-wink:before {
	content: "";
}

.fa-horse-head:before {
	content: "";
}

.fa-bore-hole:before {
	content: "";
}

.fa-industry:before {
	content: "";
}

.fa-arrow-alt-circle-down:before, .fa-circle-down:before {
	content: "";
}

.fa-arrows-turn-to-dots:before {
	content: "";
}

.fa-florin-sign:before {
	content: "";
}

.fa-arrow-down-short-wide:before, .fa-sort-amount-desc:before, .fa-sort-amount-down-alt:before {
	content: "";
}

.fa-less-than:before {
	content: "<";
}

.fa-angle-down:before {
	content: "";
}

.fa-car-tunnel:before {
	content: "";
}

.fa-head-side-cough:before {
	content: "";
}

.fa-grip-lines:before {
	content: "";
}

.fa-thumbs-down:before {
	content: "";
}

.fa-user-lock:before {
	content: "";
}

.fa-arrow-right-long:before, .fa-long-arrow-right:before {
	content: "";
}

.fa-anchor-circle-xmark:before {
	content: "";
}

.fa-ellipsis-h:before, .fa-ellipsis:before {
	content: "";
}

.fa-chess-pawn:before {
	content: "";
}

.fa-first-aid:before, .fa-kit-medical:before {
	content: "";
}

.fa-person-through-window:before {
	content: "";
}

.fa-toolbox:before {
	content: "";
}

.fa-hands-holding-circle:before {
	content: "";
}

.fa-bug:before {
	content: "";
}

.fa-credit-card-alt:before, .fa-credit-card:before {
	content: "";
}

.fa-automobile:before, .fa-car:before {
	content: "";
}

.fa-hand-holding-hand:before {
	content: "";
}

.fa-book-open-reader:before, .fa-book-reader:before {
	content: "";
}

.fa-mountain-sun:before {
	content: "";
}

.fa-arrows-left-right-to-line:before {
	content: "";
}

.fa-dice-d20:before {
	content: "";
}

.fa-truck-droplet:before {
	content: "";
}

.fa-file-circle-xmark:before {
	content: "";
}

.fa-temperature-arrow-up:before, .fa-temperature-up:before {
	content: "";
}

.fa-medal:before {
	content: "";
}

.fa-bed:before {
	content: "";
}

.fa-h-square:before, .fa-square-h:before {
	content: "";
}

.fa-podcast:before {
	content: "";
}

.fa-temperature-4:before, .fa-temperature-full:before, .fa-thermometer-4:before, .fa-thermometer-full:before {
	content: "";
}

.fa-bell:before {
	content: "";
}

.fa-superscript:before {
	content: "";
}

.fa-plug-circle-xmark:before {
	content: "";
}

.fa-star-of-life:before {
	content: "";
}

.fa-phone-slash:before {
	content: "";
}

.fa-paint-roller:before {
	content: "";
}

.fa-hands-helping:before, .fa-handshake-angle:before {
	content: "";
}

.fa-location-dot:before, .fa-map-marker-alt:before {
	content: "";
}

.fa-file:before {
	content: "";
}

.fa-greater-than:before {
	content: ">";
}

.fa-person-swimming:before, .fa-swimmer:before {
	content: "";
}

.fa-arrow-down:before {
	content: "";
}

.fa-droplet:before, .fa-tint:before {
	content: "";
}

.fa-eraser:before {
	content: "";
}

.fa-earth-america:before, .fa-earth-americas:before, .fa-earth:before, .fa-globe-americas:before {
	content: "";
}

.fa-person-burst:before {
	content: "";
}

.fa-dove:before {
	content: "";
}

.fa-battery-0:before, .fa-battery-empty:before {
	content: "";
}

.fa-socks:before {
	content: "";
}

.fa-inbox:before {
	content: "";
}

.fa-section:before {
	content: "";
}

.fa-gauge-high:before, .fa-tachometer-alt-fast:before, .fa-tachometer-alt:before {
	content: "";
}

.fa-envelope-open-text:before {
	content: "";
}

.fa-hospital-alt:before, .fa-hospital-wide:before, .fa-hospital:before {
	content: "";
}

.fa-wine-bottle:before {
	content: "";
}

.fa-chess-rook:before {
	content: "";
}

.fa-bars-staggered:before, .fa-reorder:before, .fa-stream:before {
	content: "";
}

.fa-dharmachakra:before {
	content: "";
}

.fa-hotdog:before {
	content: "";
}

.fa-blind:before, .fa-person-walking-with-cane:before {
	content: "";
}

.fa-drum:before {
	content: "";
}

.fa-ice-cream:before {
	content: "";
}

.fa-heart-circle-bolt:before {
	content: "";
}

.fa-fax:before {
	content: "";
}

.fa-paragraph:before {
	content: "";
}

.fa-check-to-slot:before, .fa-vote-yea:before {
	content: "";
}

.fa-star-half:before {
	content: "";
}

.fa-boxes-alt:before, .fa-boxes-stacked:before, .fa-boxes:before {
	content: "";
}

.fa-chain:before, .fa-link:before {
	content: "";
}

.fa-assistive-listening-systems:before, .fa-ear-listen:before {
	content: "";
}

.fa-tree-city:before {
	content: "";
}

.fa-play:before {
	content: "";
}

.fa-font:before {
	content: "";
}

.fa-rupiah-sign:before {
	content: "";
}

.fa-magnifying-glass:before, .fa-search:before {
	content: "";
}

.fa-ping-pong-paddle-ball:before, .fa-table-tennis-paddle-ball:before, .fa-table-tennis:before {
	content: "";
}

.fa-diagnoses:before, .fa-person-dots-from-line:before {
	content: "";
}

.fa-trash-can-arrow-up:before, .fa-trash-restore-alt:before {
	content: "";
}

.fa-naira-sign:before {
	content: "";
}

.fa-cart-arrow-down:before {
	content: "";
}

.fa-walkie-talkie:before {
	content: "";
}

.fa-file-edit:before, .fa-file-pen:before {
	content: "";
}

.fa-receipt:before {
	content: "";
}

.fa-pen-square:before, .fa-pencil-square:before, .fa-square-pen:before {
	content: "";
}

.fa-suitcase-rolling:before {
	content: "";
}

.fa-person-circle-exclamation:before {
	content: "";
}

.fa-chevron-down:before {
	content: "";
}

.fa-battery-5:before, .fa-battery-full:before, .fa-battery:before {
	content: "";
}

.fa-skull-crossbones:before {
	content: "";
}

.fa-code-compare:before {
	content: "";
}

.fa-list-dots:before, .fa-list-ul:before {
	content: "";
}

.fa-school-lock:before {
	content: "";
}

.fa-tower-cell:before {
	content: "";
}

.fa-down-long:before, .fa-long-arrow-alt-down:before {
	content: "";
}

.fa-ranking-star:before {
	content: "";
}

.fa-chess-king:before {
	content: "";
}

.fa-person-harassing:before {
	content: "";
}

.fa-brazilian-real-sign:before {
	content: "";
}

.fa-landmark-alt:before, .fa-landmark-dome:before {
	content: "";
}

.fa-arrow-up:before {
	content: "";
}

.fa-television:before, .fa-tv-alt:before, .fa-tv:before {
	content: "";
}

.fa-shrimp:before {
	content: "";
}

.fa-list-check:before, .fa-tasks:before {
	content: "";
}

.fa-jug-detergent:before {
	content: "";
}

.fa-circle-user:before, .fa-user-circle:before {
	content: "";
}

.fa-user-shield:before {
	content: "";
}

.fa-wind:before {
	content: "";
}

.fa-car-burst:before, .fa-car-crash:before {
	content: "";
}

.fa-y:before {
	content: "Y";
}

.fa-person-snowboarding:before, .fa-snowboarding:before {
	content: "";
}

.fa-shipping-fast:before, .fa-truck-fast:before {
	content: "";
}

.fa-fish:before {
	content: "";
}

.fa-user-graduate:before {
	content: "";
}

.fa-adjust:before, .fa-circle-half-stroke:before {
	content: "";
}

.fa-clapperboard:before {
	content: "";
}

.fa-circle-radiation:before, .fa-radiation-alt:before {
	content: "";
}

.fa-baseball-ball:before, .fa-baseball:before {
	content: "";
}

.fa-jet-fighter-up:before {
	content: "";
}

.fa-diagram-project:before, .fa-project-diagram:before {
	content: "";
}

.fa-copy:before {
	content: "";
}

.fa-volume-mute:before, .fa-volume-times:before, .fa-volume-xmark:before {
	content: "";
}

.fa-hand-sparkles:before {
	content: "";
}

.fa-grip-horizontal:before, .fa-grip:before {
	content: "";
}

.fa-share-from-square:before, .fa-share-square:before {
	content: "";
}

.fa-child-combatant:before, .fa-child-rifle:before {
	content: "";
}

.fa-gun:before {
	content: "";
}

.fa-phone-square:before, .fa-square-phone:before {
	content: "";
}

.fa-add:before, .fa-plus:before {
	content: "+";
}

.fa-expand:before {
	content: "";
}

.fa-computer:before {
	content: "";
}

.fa-close:before, .fa-multiply:before, .fa-remove:before, .fa-times:before, .fa-xmark:before {
	content: "";
}

.fa-arrows-up-down-left-right:before, .fa-arrows:before {
	content: "";
}

.fa-chalkboard-teacher:before, .fa-chalkboard-user:before {
	content: "";
}

.fa-peso-sign:before {
	content: "";
}

.fa-building-shield:before {
	content: "";
}

.fa-baby:before {
	content: "";
}

.fa-users-line:before {
	content: "";
}

.fa-quote-left-alt:before, .fa-quote-left:before {
	content: "";
}

.fa-tractor:before {
	content: "";
}

.fa-trash-arrow-up:before, .fa-trash-restore:before {
	content: "";
}

.fa-arrow-down-up-lock:before {
	content: "";
}

.fa-lines-leaning:before {
	content: "";
}

.fa-ruler-combined:before {
	content: "";
}

.fa-copyright:before {
	content: "";
}

.fa-equals:before {
	content: "=";
}

.fa-blender:before {
	content: "";
}

.fa-teeth:before {
	content: "";
}

.fa-ils:before, .fa-shekel-sign:before, .fa-shekel:before, .fa-sheqel-sign:before, .fa-sheqel:before {
	content: "";
}

.fa-map:before {
	content: "";
}

.fa-rocket:before {
	content: "";
}

.fa-photo-film:before, .fa-photo-video:before {
	content: "";
}

.fa-folder-minus:before {
	content: "";
}

.fa-store:before {
	content: "";
}

.fa-arrow-trend-up:before {
	content: "";
}

.fa-plug-circle-minus:before {
	content: "";
}

.fa-sign-hanging:before, .fa-sign:before {
	content: "";
}

.fa-bezier-curve:before {
	content: "";
}

.fa-bell-slash:before {
	content: "";
}

.fa-tablet-android:before, .fa-tablet:before {
	content: "";
}

.fa-school-flag:before {
	content: "";
}

.fa-fill:before {
	content: "";
}

.fa-angle-up:before {
	content: "";
}

.fa-drumstick-bite:before {
	content: "";
}

.fa-holly-berry:before {
	content: "";
}

.fa-chevron-left:before {
	content: "";
}

.fa-bacteria:before {
	content: "";
}

.fa-hand-lizard:before {
	content: "";
}

.fa-notdef:before {
	content: "";
}

.fa-disease:before {
	content: "";
}

.fa-briefcase-medical:before {
	content: "";
}

.fa-genderless:before {
	content: "";
}

.fa-chevron-right:before {
	content: "";
}

.fa-retweet:before {
	content: "";
}

.fa-car-alt:before, .fa-car-rear:before {
	content: "";
}

.fa-pump-soap:before {
	content: "";
}

.fa-video-slash:before {
	content: "";
}

.fa-battery-2:before, .fa-battery-quarter:before {
	content: "";
}

.fa-radio:before {
	content: "";
}

.fa-baby-carriage:before, .fa-carriage-baby:before {
	content: "";
}

.fa-traffic-light:before {
	content: "";
}

.fa-thermometer:before {
	content: "";
}

.fa-vr-cardboard:before {
	content: "";
}

.fa-hand-middle-finger:before {
	content: "";
}

.fa-percent:before, .fa-percentage:before {
	content: "%";
}

.fa-truck-moving:before {
	content: "";
}

.fa-glass-water-droplet:before {
	content: "";
}

.fa-display:before {
	content: "";
}

.fa-face-smile:before, .fa-smile:before {
	content: "";
}

.fa-thumb-tack:before, .fa-thumbtack:before {
	content: "";
}

.fa-trophy:before {
	content: "";
}

.fa-person-praying:before, .fa-pray:before {
	content: "";
}

.fa-hammer:before {
	content: "";
}

.fa-hand-peace:before {
	content: "";
}

.fa-rotate:before, .fa-sync-alt:before {
	content: "";
}

.fa-spinner:before {
	content: "";
}

.fa-robot:before {
	content: "";
}

.fa-peace:before {
	content: "";
}

.fa-cogs:before, .fa-gears:before {
	content: "";
}

.fa-warehouse:before {
	content: "";
}

.fa-arrow-up-right-dots:before {
	content: "";
}

.fa-splotch:before {
	content: "";
}

.fa-face-grin-hearts:before, .fa-grin-hearts:before {
	content: "";
}

.fa-dice-four:before {
	content: "";
}

.fa-sim-card:before {
	content: "";
}

.fa-transgender-alt:before, .fa-transgender:before {
	content: "";
}

.fa-mercury:before {
	content: "";
}

.fa-arrow-turn-down:before, .fa-level-down:before {
	content: "";
}

.fa-person-falling-burst:before {
	content: "";
}

.fa-award:before {
	content: "";
}

.fa-ticket-alt:before, .fa-ticket-simple:before {
	content: "";
}

.fa-building:before {
	content: "";
}

.fa-angle-double-left:before, .fa-angles-left:before {
	content: "";
}

.fa-qrcode:before {
	content: "";
}

.fa-clock-rotate-left:before, .fa-history:before {
	content: "";
}

.fa-face-grin-beam-sweat:before, .fa-grin-beam-sweat:before {
	content: "";
}

.fa-arrow-right-from-file:before, .fa-file-export:before {
	content: "";
}

.fa-shield-blank:before, .fa-shield:before {
	content: "";
}

.fa-arrow-up-short-wide:before, .fa-sort-amount-up-alt:before {
	content: "";
}

.fa-house-medical:before {
	content: "";
}

.fa-golf-ball-tee:before, .fa-golf-ball:before {
	content: "";
}

.fa-chevron-circle-left:before, .fa-circle-chevron-left:before {
	content: "";
}

.fa-house-chimney-window:before {
	content: "";
}

.fa-pen-nib:before {
	content: "";
}

.fa-tent-arrow-turn-left:before {
	content: "";
}

.fa-tents:before {
	content: "";
}

.fa-magic:before, .fa-wand-magic:before {
	content: "";
}

.fa-dog:before {
	content: "";
}

.fa-carrot:before {
	content: "";
}

.fa-moon:before {
	content: "";
}

.fa-wine-glass-alt:before, .fa-wine-glass-empty:before {
	content: "";
}

.fa-cheese:before {
	content: "";
}

.fa-yin-yang:before {
	content: "";
}

.fa-music:before {
	content: "";
}

.fa-code-commit:before {
	content: "";
}

.fa-temperature-low:before {
	content: "";
}

.fa-biking:before, .fa-person-biking:before {
	content: "";
}

.fa-broom:before {
	content: "";
}

.fa-shield-heart:before {
	content: "";
}

.fa-gopuram:before {
	content: "";
}

.fa-earth-oceania:before, .fa-globe-oceania:before {
	content: "";
}

.fa-square-xmark:before, .fa-times-square:before, .fa-xmark-square:before {
	content: "";
}

.fa-hashtag:before {
	content: "#";
}

.fa-expand-alt:before, .fa-up-right-and-down-left-from-center:before {
	content: "";
}

.fa-oil-can:before {
	content: "";
}

.fa-t:before {
	content: "T";
}

.fa-hippo:before {
	content: "";
}

.fa-chart-column:before {
	content: "";
}

.fa-infinity:before {
	content: "";
}

.fa-vial-circle-check:before {
	content: "";
}

.fa-person-arrow-down-to-line:before {
	content: "";
}

.fa-voicemail:before {
	content: "";
}

.fa-fan:before {
	content: "";
}

.fa-person-walking-luggage:before {
	content: "";
}

.fa-arrows-alt-v:before, .fa-up-down:before {
	content: "";
}

.fa-cloud-moon-rain:before {
	content: "";
}

.fa-calendar:before {
	content: "";
}

.fa-trailer:before {
	content: "";
}

.fa-bahai:before, .fa-haykal:before {
	content: "";
}

.fa-sd-card:before {
	content: "";
}

.fa-dragon:before {
	content: "";
}

.fa-shoe-prints:before {
	content: "";
}

.fa-circle-plus:before, .fa-plus-circle:before {
	content: "";
}

.fa-face-grin-tongue-wink:before, .fa-grin-tongue-wink:before {
	content: "";
}

.fa-hand-holding:before {
	content: "";
}

.fa-plug-circle-exclamation:before {
	content: "";
}

.fa-chain-broken:before, .fa-chain-slash:before, .fa-link-slash:before, .fa-unlink:before {
	content: "";
}

.fa-clone:before {
	content: "";
}

.fa-person-walking-arrow-loop-left:before {
	content: "";
}

.fa-arrow-up-z-a:before, .fa-sort-alpha-up-alt:before {
	content: "";
}

.fa-fire-alt:before, .fa-fire-flame-curved:before {
	content: "";
}

.fa-tornado:before {
	content: "";
}

.fa-file-circle-plus:before {
	content: "";
}

.fa-book-quran:before, .fa-quran:before {
	content: "";
}

.fa-anchor:before {
	content: "";
}

.fa-border-all:before {
	content: "";
}

.fa-angry:before, .fa-face-angry:before {
	content: "";
}

.fa-cookie-bite:before {
	content: "";
}

.fa-arrow-trend-down:before {
	content: "";
}

.fa-feed:before, .fa-rss:before {
	content: "";
}

.fa-draw-polygon:before {
	content: "";
}

.fa-balance-scale:before, .fa-scale-balanced:before {
	content: "";
}

.fa-gauge-simple-high:before, .fa-tachometer-fast:before, .fa-tachometer:before {
	content: "";
}

.fa-shower:before {
	content: "";
}

.fa-desktop-alt:before, .fa-desktop:before {
	content: "";
}

.fa-m:before {
	content: "M";
}

.fa-table-list:before, .fa-th-list:before {
	content: "";
}

.fa-comment-sms:before, .fa-sms:before {
	content: "";
}

.fa-book:before {
	content: "";
}

.fa-user-plus:before {
	content: "";
}

.fa-check:before {
	content: "";
}

.fa-battery-4:before, .fa-battery-three-quarters:before {
	content: "";
}

.fa-house-circle-check:before {
	content: "";
}

.fa-angle-left:before {
	content: "";
}

.fa-diagram-successor:before {
	content: "";
}

.fa-truck-arrow-right:before {
	content: "";
}

.fa-arrows-split-up-and-left:before {
	content: "";
}

.fa-fist-raised:before, .fa-hand-fist:before {
	content: "";
}

.fa-cloud-moon:before {
	content: "";
}

.fa-briefcase:before {
	content: "";
}

.fa-person-falling:before {
	content: "";
}

.fa-image-portrait:before, .fa-portrait:before {
	content: "";
}

.fa-user-tag:before {
	content: "";
}

.fa-rug:before {
	content: "";
}

.fa-earth-europe:before, .fa-globe-europe:before {
	content: "";
}

.fa-cart-flatbed-suitcase:before, .fa-luggage-cart:before {
	content: "";
}

.fa-rectangle-times:before, .fa-rectangle-xmark:before, .fa-times-rectangle:before, .fa-window-close:before {
	content: "";
}

.fa-baht-sign:before {
	content: "";
}

.fa-book-open:before {
	content: "";
}

.fa-book-journal-whills:before, .fa-journal-whills:before {
	content: "";
}

.fa-handcuffs:before {
	content: "";
}

.fa-exclamation-triangle:before, .fa-triangle-exclamation:before, .fa-warning:before {
	content: "";
}

.fa-database:before {
	content: "";
}

.fa-arrow-turn-right:before, .fa-mail-forward:before, .fa-share:before {
	content: "";
}

.fa-bottle-droplet:before {
	content: "";
}

.fa-mask-face:before {
	content: "";
}

.fa-hill-rockslide:before {
	content: "";
}

.fa-exchange-alt:before, .fa-right-left:before {
	content: "";
}

.fa-paper-plane:before {
	content: "";
}

.fa-road-circle-exclamation:before {
	content: "";
}

.fa-dungeon:before {
	content: "";
}

.fa-align-right:before {
	content: "";
}

.fa-money-bill-1-wave:before, .fa-money-bill-wave-alt:before {
	content: "";
}

.fa-life-ring:before {
	content: "";
}

.fa-hands:before, .fa-sign-language:before, .fa-signing:before {
	content: "";
}

.fa-calendar-day:before {
	content: "";
}

.fa-ladder-water:before, .fa-swimming-pool:before, .fa-water-ladder:before {
	content: "";
}

.fa-arrows-up-down:before, .fa-arrows-v:before {
	content: "";
}

.fa-face-grimace:before, .fa-grimace:before {
	content: "";
}

.fa-wheelchair-alt:before, .fa-wheelchair-move:before {
	content: "";
}

.fa-level-down-alt:before, .fa-turn-down:before {
	content: "";
}

.fa-person-walking-arrow-right:before {
	content: "";
}

.fa-envelope-square:before, .fa-square-envelope:before {
	content: "";
}

.fa-dice:before {
	content: "";
}

.fa-bowling-ball:before {
	content: "";
}

.fa-brain:before {
	content: "";
}

.fa-band-aid:before, .fa-bandage:before {
	content: "";
}

.fa-calendar-minus:before {
	content: "";
}

.fa-circle-xmark:before, .fa-times-circle:before, .fa-xmark-circle:before {
	content: "";
}

.fa-gifts:before {
	content: "";
}

.fa-hotel:before {
	content: "";
}

.fa-earth-asia:before, .fa-globe-asia:before {
	content: "";
}

.fa-id-card-alt:before, .fa-id-card-clip:before {
	content: "";
}

.fa-magnifying-glass-plus:before, .fa-search-plus:before {
	content: "";
}

.fa-thumbs-up:before {
	content: "";
}

.fa-user-clock:before {
	content: "";
}

.fa-allergies:before, .fa-hand-dots:before {
	content: "";
}

.fa-file-invoice:before {
	content: "";
}

.fa-window-minimize:before {
	content: "";
}

.fa-coffee:before, .fa-mug-saucer:before {
	content: "";
}

.fa-brush:before {
	content: "";
}

.fa-mask:before {
	content: "";
}

.fa-magnifying-glass-minus:before, .fa-search-minus:before {
	content: "";
}

.fa-ruler-vertical:before {
	content: "";
}

.fa-user-alt:before, .fa-user-large:before {
	content: "";
}

.fa-train-tram:before {
	content: "";
}

.fa-user-nurse:before {
	content: "";
}

.fa-syringe:before {
	content: "";
}

.fa-cloud-sun:before {
	content: "";
}

.fa-stopwatch-20:before {
	content: "";
}

.fa-square-full:before {
	content: "";
}

.fa-magnet:before {
	content: "";
}

.fa-jar:before {
	content: "";
}

.fa-note-sticky:before, .fa-sticky-note:before {
	content: "";
}

.fa-bug-slash:before {
	content: "";
}

.fa-arrow-up-from-water-pump:before {
	content: "";
}

.fa-bone:before {
	content: "";
}

.fa-user-injured:before {
	content: "";
}

.fa-face-sad-tear:before, .fa-sad-tear:before {
	content: "";
}

.fa-plane:before {
	content: "";
}

.fa-tent-arrows-down:before {
	content: "";
}

.fa-exclamation:before {
	content: "!";
}

.fa-arrows-spin:before {
	content: "";
}

.fa-print:before {
	content: "";
}

.fa-try:before, .fa-turkish-lira-sign:before, .fa-turkish-lira:before {
	content: "";
}

.fa-dollar-sign:before, .fa-dollar:before, .fa-usd:before {
	content: "$";
}

.fa-x:before {
	content: "X";
}

.fa-magnifying-glass-dollar:before, .fa-search-dollar:before {
	content: "";
}

.fa-users-cog:before, .fa-users-gear:before {
	content: "";
}

.fa-person-military-pointing:before {
	content: "";
}

.fa-bank:before, .fa-building-columns:before, .fa-institution:before, .fa-museum:before, .fa-university:before {
	content: "";
}

.fa-umbrella:before {
	content: "";
}

.fa-trowel:before {
	content: "";
}

.fa-d:before {
	content: "D";
}

.fa-stapler:before {
	content: "";
}

.fa-masks-theater:before, .fa-theater-masks:before {
	content: "";
}

.fa-kip-sign:before {
	content: "";
}

.fa-hand-point-left:before {
	content: "";
}

.fa-handshake-alt:before, .fa-handshake-simple:before {
	content: "";
}

.fa-fighter-jet:before, .fa-jet-fighter:before {
	content: "";
}

.fa-share-alt-square:before, .fa-square-share-nodes:before {
	content: "";
}

.fa-barcode:before {
	content: "";
}

.fa-plus-minus:before {
	content: "";
}

.fa-video-camera:before, .fa-video:before {
	content: "";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
	content: "";
}

.fa-hand-holding-medical:before {
	content: "";
}

.fa-person-circle-check:before {
	content: "";
}

.fa-level-up-alt:before, .fa-turn-up:before {
	content: "";
}

.fa-sr-only, .fa-sr-only-focusable:not(:focus), .sr-only, .sr-only-focusable:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

:host, :root {
	--fa-style-family-brands: "Font Awesome 6 Brands";
	--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

.fa-brands, .fab {
	font-weight: 400;
}

.fa-monero:before {
	content: "";
}

.fa-hooli:before {
	content: "";
}

.fa-yelp:before {
	content: "";
}

.fa-cc-visa:before {
	content: "";
}

.fa-lastfm:before {
	content: "";
}

.fa-shopware:before {
	content: "";
}

.fa-creative-commons-nc:before {
	content: "";
}

.fa-aws:before {
	content: "";
}

.fa-redhat:before {
	content: "";
}

.fa-yoast:before {
	content: "";
}

.fa-cloudflare:before {
	content: "";
}

.fa-ups:before {
	content: "";
}

.fa-wpexplorer:before {
	content: "";
}

.fa-dyalog:before {
	content: "";
}

.fa-bity:before {
	content: "";
}

.fa-stackpath:before {
	content: "";
}

.fa-buysellads:before {
	content: "";
}

.fa-first-order:before {
	content: "";
}

.fa-modx:before {
	content: "";
}

.fa-guilded:before {
	content: "";
}

.fa-vnv:before {
	content: "";
}

.fa-js-square:before, .fa-square-js:before {
	content: "";
}

.fa-microsoft:before {
	content: "";
}

.fa-qq:before {
	content: "";
}

.fa-orcid:before {
	content: "";
}

.fa-java:before {
	content: "";
}

.fa-invision:before {
	content: "";
}

.fa-creative-commons-pd-alt:before {
	content: "";
}

.fa-centercode:before {
	content: "";
}

.fa-glide-g:before {
	content: "";
}

.fa-drupal:before {
	content: "";
}

.fa-hire-a-helper:before {
	content: "";
}

.fa-creative-commons-by:before {
	content: "";
}

.fa-unity:before {
	content: "";
}

.fa-whmcs:before {
	content: "";
}

.fa-rocketchat:before {
	content: "";
}

.fa-vk:before {
	content: "";
}

.fa-untappd:before {
	content: "";
}

.fa-mailchimp:before {
	content: "";
}

.fa-css3-alt:before {
	content: "";
}

.fa-reddit-square:before, .fa-square-reddit:before {
	content: "";
}

.fa-vimeo-v:before {
	content: "";
}

.fa-contao:before {
	content: "";
}

.fa-square-font-awesome:before {
	content: "";
}

.fa-deskpro:before {
	content: "";
}

.fa-sistrix:before {
	content: "";
}

.fa-instagram-square:before, .fa-square-instagram:before {
	content: "";
}

.fa-battle-net:before {
	content: "";
}

.fa-the-red-yeti:before {
	content: "";
}

.fa-hacker-news-square:before, .fa-square-hacker-news:before {
	content: "";
}

.fa-edge:before {
	content: "";
}

.fa-threads:before {
	content: "";
}

.fa-napster:before {
	content: "";
}

.fa-snapchat-square:before, .fa-square-snapchat:before {
	content: "";
}

.fa-google-plus-g:before {
	content: "";
}

.fa-artstation:before {
	content: "";
}

.fa-markdown:before {
	content: "";
}

.fa-sourcetree:before {
	content: "";
}

.fa-google-plus:before {
	content: "";
}

.fa-diaspora:before {
	content: "";
}

.fa-foursquare:before {
	content: "";
}

.fa-stack-overflow:before {
	content: "";
}

.fa-github-alt:before {
	content: "";
}

.fa-phoenix-squadron:before {
	content: "";
}

.fa-pagelines:before {
	content: "";
}

.fa-algolia:before {
	content: "";
}

.fa-red-river:before {
	content: "";
}

.fa-creative-commons-sa:before {
	content: "";
}

.fa-safari:before {
	content: "";
}

.fa-google:before {
	content: "";
}

.fa-font-awesome-alt:before, .fa-square-font-awesome-stroke:before {
	content: "";
}

.fa-atlassian:before {
	content: "";
}

.fa-linkedin-in:before {
	content: "";
}

.fa-digital-ocean:before {
	content: "";
}

.fa-nimblr:before {
	content: "";
}

.fa-chromecast:before {
	content: "";
}

.fa-evernote:before {
	content: "";
}

.fa-hacker-news:before {
	content: "";
}

.fa-creative-commons-sampling:before {
	content: "";
}

.fa-adversal:before {
	content: "";
}

.fa-creative-commons:before {
	content: "";
}

.fa-watchman-monitoring:before {
	content: "";
}

.fa-fonticons:before {
	content: "";
}

.fa-weixin:before {
	content: "";
}

.fa-shirtsinbulk:before {
	content: "";
}

.fa-codepen:before {
	content: "";
}

.fa-git-alt:before {
	content: "";
}

.fa-lyft:before {
	content: "";
}

.fa-rev:before {
	content: "";
}

.fa-windows:before {
	content: "";
}

.fa-wizards-of-the-coast:before {
	content: "";
}

.fa-square-viadeo:before, .fa-viadeo-square:before {
	content: "";
}

.fa-meetup:before {
	content: "";
}

.fa-centos:before {
	content: "";
}

.fa-adn:before {
	content: "";
}

.fa-cloudsmith:before {
	content: "";
}

.fa-pied-piper-alt:before {
	content: "";
}

.fa-dribbble-square:before, .fa-square-dribbble:before {
	content: "";
}

.fa-codiepie:before {
	content: "";
}

.fa-node:before {
	content: "";
}

.fa-mix:before {
	content: "";
}

.fa-steam:before {
	content: "";
}

.fa-cc-apple-pay:before {
	content: "";
}

.fa-scribd:before {
	content: "";
}

.fa-debian:before {
	content: "";
}

.fa-openid:before {
	content: "";
}

.fa-instalod:before {
	content: "";
}

.fa-expeditedssl:before {
	content: "";
}

.fa-sellcast:before {
	content: "";
}

.fa-square-twitter:before, .fa-twitter-square:before {
	content: "";
}

.fa-r-project:before {
	content: "";
}

.fa-delicious:before {
	content: "";
}

.fa-freebsd:before {
	content: "";
}

.fa-vuejs:before {
	content: "";
}

.fa-accusoft:before {
	content: "";
}

.fa-ioxhost:before {
	content: "";
}

.fa-fonticons-fi:before {
	content: "";
}

.fa-app-store:before {
	content: "";
}

.fa-cc-mastercard:before {
	content: "";
}

.fa-itunes-note:before {
	content: "";
}

.fa-golang:before {
	content: "";
}

.fa-kickstarter:before {
	content: "";
}

.fa-grav:before {
	content: "";
}

.fa-weibo:before {
	content: "";
}

.fa-uncharted:before {
	content: "";
}

.fa-firstdraft:before {
	content: "";
}

.fa-square-youtube:before, .fa-youtube-square:before {
	content: "";
}

.fa-wikipedia-w:before {
	content: "";
}

.fa-rendact:before, .fa-wpressr:before {
	content: "";
}

.fa-angellist:before {
	content: "";
}

.fa-galactic-republic:before {
	content: "";
}

.fa-nfc-directional:before {
	content: "";
}

.fa-skype:before {
	content: "";
}

.fa-joget:before {
	content: "";
}

.fa-fedora:before {
	content: "";
}

.fa-stripe-s:before {
	content: "";
}

.fa-meta:before {
	content: "";
}

.fa-laravel:before {
	content: "";
}

.fa-hotjar:before {
	content: "";
}

.fa-bluetooth-b:before {
	content: "";
}

.fa-sticker-mule:before {
	content: "";
}

.fa-creative-commons-zero:before {
	content: "";
}

.fa-hips:before {
	content: "";
}

.fa-behance:before {
	content: "";
}

.fa-reddit:before {
	content: "";
}

.fa-discord:before {
	content: "";
}

.fa-chrome:before {
	content: "";
}

.fa-app-store-ios:before {
	content: "";
}

.fa-cc-discover:before {
	content: "";
}

.fa-wpbeginner:before {
	content: "";
}

.fa-confluence:before {
	content: "";
}

.fa-mdb:before {
	content: "";
}

.fa-dochub:before {
	content: "";
}

.fa-accessible-icon:before {
	content: "";
}

.fa-ebay:before {
	content: "";
}

.fa-amazon:before {
	content: "";
}

.fa-unsplash:before {
	content: "";
}

.fa-yarn:before {
	content: "";
}

.fa-square-steam:before, .fa-steam-square:before {
	content: "";
}

.fa-500px:before {
	content: "";
}

.fa-square-vimeo:before, .fa-vimeo-square:before {
	content: "";
}

.fa-asymmetrik:before {
	content: "";
}

.fa-font-awesome-flag:before, .fa-font-awesome-logo-full:before, .fa-font-awesome:before {
	content: "";
}

.fa-gratipay:before {
	content: "";
}

.fa-apple:before {
	content: "";
}

.fa-hive:before {
	content: "";
}

.fa-gitkraken:before {
	content: "";
}

.fa-keybase:before {
	content: "";
}

.fa-apple-pay:before {
	content: "";
}

.fa-padlet:before {
	content: "";
}

.fa-amazon-pay:before {
	content: "";
}

.fa-github-square:before, .fa-square-github:before {
	content: "";
}

.fa-stumbleupon:before {
	content: "";
}

.fa-fedex:before {
	content: "";
}

.fa-phoenix-framework:before {
	content: "";
}

.fa-shopify:before {
	content: "";
}

.fa-neos:before {
	content: "";
}

.fa-square-threads:before {
	content: "";
}

.fa-hackerrank:before {
	content: "";
}

.fa-researchgate:before {
	content: "";
}

.fa-swift:before {
	content: "";
}

.fa-angular:before {
	content: "";
}

.fa-speakap:before {
	content: "";
}

.fa-angrycreative:before {
	content: "";
}

.fa-y-combinator:before {
	content: "";
}

.fa-empire:before {
	content: "";
}

.fa-envira:before {
	content: "";
}

.fa-gitlab-square:before, .fa-square-gitlab:before {
	content: "";
}

.fa-studiovinari:before {
	content: "";
}

.fa-pied-piper:before {
	content: "";
}

.fa-wordpress:before {
	content: "";
}

.fa-product-hunt:before {
	content: "";
}

.fa-firefox:before {
	content: "";
}

.fa-linode:before {
	content: "";
}

.fa-goodreads:before {
	content: "";
}

.fa-odnoklassniki-square:before, .fa-square-odnoklassniki:before {
	content: "";
}

.fa-jsfiddle:before {
	content: "";
}

.fa-sith:before {
	content: "";
}

.fa-themeisle:before {
	content: "";
}

.fa-page4:before {
	content: "";
}

.fa-hashnode:before {
	content: "";
}

.fa-react:before {
	content: "";
}

.fa-cc-paypal:before {
	content: "";
}

.fa-squarespace:before {
	content: "";
}

.fa-cc-stripe:before {
	content: "";
}

.fa-creative-commons-share:before {
	content: "";
}

.fa-bitcoin:before {
	content: "";
}

.fa-keycdn:before {
	content: "";
}

.fa-opera:before {
	content: "";
}

.fa-itch-io:before {
	content: "";
}

.fa-umbraco:before {
	content: "";
}

.fa-galactic-senate:before {
	content: "";
}

.fa-ubuntu:before {
	content: "";
}

.fa-draft2digital:before {
	content: "";
}

.fa-stripe:before {
	content: "";
}

.fa-houzz:before {
	content: "";
}

.fa-gg:before {
	content: "";
}

.fa-dhl:before {
	content: "";
}

.fa-pinterest-square:before, .fa-square-pinterest:before {
	content: "";
}

.fa-xing:before {
	content: "";
}

.fa-blackberry:before {
	content: "";
}

.fa-creative-commons-pd:before {
	content: "";
}

.fa-playstation:before {
	content: "";
}

.fa-quinscape:before {
	content: "";
}

.fa-less:before {
	content: "";
}

.fa-blogger-b:before {
	content: "";
}

.fa-opencart:before {
	content: "";
}

.fa-vine:before {
	content: "";
}

.fa-paypal:before {
	content: "";
}

.fa-gitlab:before {
	content: "";
}

.fa-typo3:before {
	content: "";
}

.fa-reddit-alien:before {
	content: "";
}

.fa-yahoo:before {
	content: "";
}

.fa-dailymotion:before {
	content: "";
}

.fa-affiliatetheme:before {
	content: "";
}

.fa-pied-piper-pp:before {
	content: "";
}

.fa-bootstrap:before {
	content: "";
}

.fa-odnoklassniki:before {
	content: "";
}

.fa-nfc-symbol:before {
	content: "";
}

.fa-ethereum:before {
	content: "";
}

.fa-speaker-deck:before {
	content: "";
}

.fa-creative-commons-nc-eu:before {
	content: "";
}

.fa-patreon:before {
	content: "";
}

.fa-avianex:before {
	content: "";
}

.fa-ello:before {
	content: "";
}

.fa-gofore:before {
	content: "";
}

.fa-bimobject:before {
	content: "";
}

.fa-facebook-f:before {
	content: "";
}

.fa-google-plus-square:before, .fa-square-google-plus:before {
	content: "";
}

.fa-mandalorian:before {
	content: "";
}

.fa-first-order-alt:before {
	content: "";
}

.fa-osi:before {
	content: "";
}

.fa-google-wallet:before {
	content: "";
}

.fa-d-and-d-beyond:before {
	content: "";
}

.fa-periscope:before {
	content: "";
}

.fa-fulcrum:before {
	content: "";
}

.fa-cloudscale:before {
	content: "";
}

.fa-forumbee:before {
	content: "";
}

.fa-mizuni:before {
	content: "";
}

.fa-schlix:before {
	content: "";
}

.fa-square-xing:before, .fa-xing-square:before {
	content: "";
}

.fa-bandcamp:before {
	content: "";
}

.fa-wpforms:before {
	content: "";
}

.fa-cloudversify:before {
	content: "";
}

.fa-usps:before {
	content: "";
}

.fa-megaport:before {
	content: "";
}

.fa-magento:before {
	content: "";
}

.fa-spotify:before {
	content: "";
}

.fa-optin-monster:before {
	content: "";
}

.fa-fly:before {
	content: "";
}

.fa-aviato:before {
	content: "";
}

.fa-itunes:before {
	content: "";
}

.fa-cuttlefish:before {
	content: "";
}

.fa-blogger:before {
	content: "";
}

.fa-flickr:before {
	content: "";
}

.fa-viber:before {
	content: "";
}

.fa-soundcloud:before {
	content: "";
}

.fa-digg:before {
	content: "";
}

.fa-tencent-weibo:before {
	content: "";
}

.fa-symfony:before {
	content: "";
}

.fa-maxcdn:before {
	content: "";
}

.fa-etsy:before {
	content: "";
}

.fa-facebook-messenger:before {
	content: "";
}

.fa-audible:before {
	content: "";
}

.fa-think-peaks:before {
	content: "";
}

.fa-bilibili:before {
	content: "";
}

.fa-erlang:before {
	content: "";
}

.fa-x-twitter:before {
	content: "";
}

.fa-cotton-bureau:before {
	content: "";
}

.fa-dashcube:before {
	content: "";
}

.fa-42-group:before, .fa-innosoft:before {
	content: "";
}

.fa-stack-exchange:before {
	content: "";
}

.fa-elementor:before {
	content: "";
}

.fa-pied-piper-square:before, .fa-square-pied-piper:before {
	content: "";
}

.fa-creative-commons-nd:before {
	content: "";
}

.fa-palfed:before {
	content: "";
}

.fa-superpowers:before {
	content: "";
}

.fa-resolving:before {
	content: "";
}

.fa-xbox:before {
	content: "";
}

.fa-searchengin:before {
	content: "";
}

.fa-tiktok:before {
	content: "";
}

.fa-facebook-square:before, .fa-square-facebook:before {
	content: "";
}

.fa-renren:before {
	content: "";
}

.fa-linux:before {
	content: "";
}

.fa-glide:before {
	content: "";
}

.fa-linkedin:before {
	content: "";
}

.fa-hubspot:before {
	content: "";
}

.fa-deploydog:before {
	content: "";
}

.fa-twitch:before {
	content: "";
}

.fa-ravelry:before {
	content: "";
}

.fa-mixer:before {
	content: "";
}

.fa-lastfm-square:before, .fa-square-lastfm:before {
	content: "";
}

.fa-vimeo:before {
	content: "";
}

.fa-mendeley:before {
	content: "";
}

.fa-uniregistry:before {
	content: "";
}

.fa-figma:before {
	content: "";
}

.fa-creative-commons-remix:before {
	content: "";
}

.fa-cc-amazon-pay:before {
	content: "";
}

.fa-dropbox:before {
	content: "";
}

.fa-instagram:before {
	content: "";
}

.fa-cmplid:before {
	content: "";
}

.fa-facebook:before {
	content: "";
}

.fa-gripfire:before {
	content: "";
}

.fa-jedi-order:before {
	content: "";
}

.fa-uikit:before {
	content: "";
}

.fa-fort-awesome-alt:before {
	content: "";
}

.fa-phabricator:before {
	content: "";
}

.fa-ussunnah:before {
	content: "";
}

.fa-earlybirds:before {
	content: "";
}

.fa-trade-federation:before {
	content: "";
}

.fa-autoprefixer:before {
	content: "";
}

.fa-whatsapp:before {
	content: "";
}

.fa-slideshare:before {
	content: "";
}

.fa-google-play:before {
	content: "";
}

.fa-viadeo:before {
	content: "";
}

.fa-line:before {
	content: "";
}

.fa-google-drive:before {
	content: "";
}

.fa-servicestack:before {
	content: "";
}

.fa-simplybuilt:before {
	content: "";
}

.fa-bitbucket:before {
	content: "";
}

.fa-imdb:before {
	content: "";
}

.fa-deezer:before {
	content: "";
}

.fa-raspberry-pi:before {
	content: "";
}

.fa-jira:before {
	content: "";
}

.fa-docker:before {
	content: "";
}

.fa-screenpal:before {
	content: "";
}

.fa-bluetooth:before {
	content: "";
}

.fa-gitter:before {
	content: "";
}

.fa-d-and-d:before {
	content: "";
}

.fa-microblog:before {
	content: "";
}

.fa-cc-diners-club:before {
	content: "";
}

.fa-gg-circle:before {
	content: "";
}

.fa-pied-piper-hat:before {
	content: "";
}

.fa-kickstarter-k:before {
	content: "";
}

.fa-yandex:before {
	content: "";
}

.fa-readme:before {
	content: "";
}

.fa-html5:before {
	content: "";
}

.fa-sellsy:before {
	content: "";
}

.fa-sass:before {
	content: "";
}

.fa-wirsindhandwerk:before, .fa-wsh:before {
	content: "";
}

.fa-buromobelexperte:before {
	content: "";
}

.fa-salesforce:before {
	content: "";
}

.fa-octopus-deploy:before {
	content: "";
}

.fa-medapps:before {
	content: "";
}

.fa-ns8:before {
	content: "";
}

.fa-pinterest-p:before {
	content: "";
}

.fa-apper:before {
	content: "";
}

.fa-fort-awesome:before {
	content: "";
}

.fa-waze:before {
	content: "";
}

.fa-cc-jcb:before {
	content: "";
}

.fa-snapchat-ghost:before, .fa-snapchat:before {
	content: "";
}

.fa-fantasy-flight-games:before {
	content: "";
}

.fa-rust:before {
	content: "";
}

.fa-wix:before {
	content: "";
}

.fa-behance-square:before, .fa-square-behance:before {
	content: "";
}

.fa-supple:before {
	content: "";
}

.fa-rebel:before {
	content: "";
}

.fa-css3:before {
	content: "";
}

.fa-staylinked:before {
	content: "";
}

.fa-kaggle:before {
	content: "";
}

.fa-space-awesome:before {
	content: "";
}

.fa-deviantart:before {
	content: "";
}

.fa-cpanel:before {
	content: "";
}

.fa-goodreads-g:before {
	content: "";
}

.fa-git-square:before, .fa-square-git:before {
	content: "";
}

.fa-square-tumblr:before, .fa-tumblr-square:before {
	content: "";
}

.fa-trello:before {
	content: "";
}

.fa-creative-commons-nc-jp:before {
	content: "";
}

.fa-get-pocket:before {
	content: "";
}

.fa-perbyte:before {
	content: "";
}

.fa-grunt:before {
	content: "";
}

.fa-weebly:before {
	content: "";
}

.fa-connectdevelop:before {
	content: "";
}

.fa-leanpub:before {
	content: "";
}

.fa-black-tie:before {
	content: "";
}

.fa-themeco:before {
	content: "";
}

.fa-python:before {
	content: "";
}

.fa-android:before {
	content: "";
}

.fa-bots:before {
	content: "";
}

.fa-free-code-camp:before {
	content: "";
}

.fa-hornbill:before {
	content: "";
}

.fa-js:before {
	content: "";
}

.fa-ideal:before {
	content: "";
}

.fa-git:before {
	content: "";
}

.fa-dev:before {
	content: "";
}

.fa-sketch:before {
	content: "";
}

.fa-yandex-international:before {
	content: "";
}

.fa-cc-amex:before {
	content: "";
}

.fa-uber:before {
	content: "";
}

.fa-github:before {
	content: "";
}

.fa-php:before {
	content: "";
}

.fa-alipay:before {
	content: "";
}

.fa-youtube:before {
	content: "";
}

.fa-skyatlas:before {
	content: "";
}

.fa-firefox-browser:before {
	content: "";
}

.fa-replyd:before {
	content: "";
}

.fa-suse:before {
	content: "";
}

.fa-jenkins:before {
	content: "";
}

.fa-twitter:before {
	content: "";
}

.fa-rockrms:before {
	content: "";
}

.fa-pinterest:before {
	content: "";
}

.fa-buffer:before {
	content: "";
}

.fa-npm:before {
	content: "";
}

.fa-yammer:before {
	content: "";
}

.fa-btc:before {
	content: "";
}

.fa-dribbble:before {
	content: "";
}

.fa-stumbleupon-circle:before {
	content: "";
}

.fa-internet-explorer:before {
	content: "";
}

.fa-stubber:before {
	content: "";
}

.fa-telegram-plane:before, .fa-telegram:before {
	content: "";
}

.fa-old-republic:before {
	content: "";
}

.fa-odysee:before {
	content: "";
}

.fa-square-whatsapp:before, .fa-whatsapp-square:before {
	content: "";
}

.fa-node-js:before {
	content: "";
}

.fa-edge-legacy:before {
	content: "";
}

.fa-slack-hash:before, .fa-slack:before {
	content: "";
}

.fa-medrt:before {
	content: "";
}

.fa-usb:before {
	content: "";
}

.fa-tumblr:before {
	content: "";
}

.fa-vaadin:before {
	content: "";
}

.fa-quora:before {
	content: "";
}

.fa-square-x-twitter:before {
	content: "";
}

.fa-reacteurope:before {
	content: "";
}

.fa-medium-m:before, .fa-medium:before {
	content: "";
}

.fa-amilia:before {
	content: "";
}

.fa-mixcloud:before {
	content: "";
}

.fa-flipboard:before {
	content: "";
}

.fa-viacoin:before {
	content: "";
}

.fa-critical-role:before {
	content: "";
}

.fa-sitrox:before {
	content: "";
}

.fa-discourse:before {
	content: "";
}

.fa-joomla:before {
	content: "";
}

.fa-mastodon:before {
	content: "";
}

.fa-airbnb:before {
	content: "";
}

.fa-wolf-pack-battalion:before {
	content: "";
}

.fa-buy-n-large:before {
	content: "";
}

.fa-gulp:before {
	content: "";
}

.fa-creative-commons-sampling-plus:before {
	content: "";
}

.fa-strava:before {
	content: "";
}

.fa-ember:before {
	content: "";
}

.fa-canadian-maple-leaf:before {
	content: "";
}

.fa-teamspeak:before {
	content: "";
}

.fa-pushed:before {
	content: "";
}

.fa-wordpress-simple:before {
	content: "";
}

.fa-nutritionix:before {
	content: "";
}

.fa-wodu:before {
	content: "";
}

.fa-google-pay:before {
	content: "";
}

.fa-intercom:before {
	content: "";
}

.fa-zhihu:before {
	content: "";
}

.fa-korvue:before {
	content: "";
}

.fa-pix:before {
	content: "";
}

.fa-steam-symbol:before {
	content: "";
}

:host, :root {
	--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}

.fa-regular, .far {
	font-weight: 400;
}

:host, :root {
	--fa-style-family-classic: "Font Awesome 6 Free";
	--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

.fa-solid, .fas {
	font-weight: 900;
}

/*------------------------------------------------*/

/*-----------------[RESET]------------------------*/

/*------------------------------------------------*/
.et_monarch .et_social_popup_content, .et_monarch .et_social_flyin, .et_monarch .et_social_networks, .et_monarch .et_social_sidebar_networks, .et_monarch .et_social_networks div, .et_monarch .et_social_sidebar_networks div, .et_monarch .et_social_networks span, .et_monarch .et_social_sidebar_networks span, .et_monarch .et_social_networks h2, .et_monarch .et_social_sidebar_networks h2, .et_monarch .et_social_networks h3, .et_monarch .et_social_sidebar_networks h3, .et_monarch .et_social_networks h4, .et_monarch .et_social_sidebar_networks h4, .et_monarch .et_social_networks p, .et_monarch .et_social_sidebar_networks p, .et_monarch .et_social_networks a, .et_monarch .et_social_sidebar_networks a, .et_monarch .et_social_networks font, .et_monarch .et_social_sidebar_networks font, .et_monarch .et_social_networks img, .et_monarch .et_social_sidebar_networks img, .et_monarch .et_social_networks strike, .et_monarch .et_social_sidebar_networks strike, .et_monarch .et_social_networks strong, .et_monarch .et_social_sidebar_networks strong, .et_monarch .et_social_networks b, .et_monarch .et_social_sidebar_networks b, .et_monarch .et_social_networks u, .et_monarch .et_social_sidebar_networks u, .et_monarch .et_social_networks i, .et_monarch .et_social_sidebar_networks i, .et_monarch .et_social_networks ol, .et_monarch .et_social_sidebar_networks ol, .et_monarch .et_social_networks ul, .et_monarch .et_social_sidebar_networks ul, .et_monarch .et_social_networks li, .et_monarch .et_social_sidebar_networks li, .et_monarch .widget_monarchwidget li, .et_monarch .widget .et_social_networks li, .et_monarch .widget_text .et_social_networks li, .et_monarch .widget_monarchwidget li:before, .et_monarch .widget_monarchwidget li:after, .et_monarch .et_social_popup_content h3, .et_monarch .et_social_popup_content p, .et_monarch .et_social_popup_content:after, .et_monarch .et_social_flyin h3, .et_monarch .et_social_flyin p, .et_monarch .et_social_flyin:after, .et_monarch .et_social_pinterest_window h3, .et_monarch .et_social_mobile, .et_monarch .et_social_mobile_button, .et_monarch .et_social_heading {
	font-family: "Open Sans", helvetica, arial, sans-serif;
	line-height: 1em;
	text-transform: none;
	font-weight: normal;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background-image: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*------------------------------------------------*/

/*-----------------[BASIC STYLES]-----------------*/

/*------------------------------------------------*/
.et_monarch .et_social_networks, .et_monarch .et_social_sidebar_networks, .et_monarch .et_social_sidebar_networks_mobile {
	font-family: "Open Sans", helvetica, arial, sans-serif;
	line-height: 1em;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.et_monarch .et_social_popup h3, .et_monarch .et_social_flyin h3, .et_monarch .et_social_locked h3, .et_monarch .et_social_pinterest_window h3 {
	font-family: "Open Sans", helvetica, arial, sans-serif;
	font-size: 26px;
	line-height: 1.1em;
	color: #333;
	font-weight: 400;
	letter-spacing: .5px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.et_monarch .et_social_popup p, .et_monarch .et_social_flyin p {
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	color: #999;
	font-weight: 400;
	line-height: 1.6em;
	margin-top: 6px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.et_monarch .et_social_networks span, .et_monarch .et_social_sidebar_networks span, .et_monarch .et_social_circle i.et_social_icon, i.et_social_icon:before, i.et_social_icon:after, .et_monarch .et_social_networks li, .et_monarch .et_social_networks li a, .et_monarch .et_social_networks div, .et_monarch .et_social_sidebar_mobile, .et_monarch .et_social_sidebar_networks_mobile li, .et_monarch .et_social_pin_image a:before {
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
}

.et_monarch .et_social_count, .et_monarch .widget_monarchwidget .et_social_networkname, .et_monarch .widget_monarchwidget .et_social_count span, .et_monarch .et_social_circle .et_social_icons_container li i:before {
	transition: none !important;
	-webkit-transition: none !important;
	-moz-transition: none !important;
}

.et_monarch .et_social_circle .et_social_icons_container li i:after, .et_monarch .et_social_circle .et_social_icons_container li i:before, .et_monarch .et_social_circle .et_social_icons_container li:hover i:after, .et_monarch .et_social_circle .et_social_icons_container li:hover i:before {
	transition: left .3s, right .3s, margin .3s, opacity .3s !important;
	-moz-transition: left .3s, right .3s, margin .3s, opacity .3s !important;
	-webkit-transition: left .3s, right .3s, margin .3s, opacity .3s !important;
}

.et_monarch .et_social_icon, .et_monarch .et_social_networks .et_social_network_label, .et_monarch .et_social_sidebar_networks .et_social_count {
	color: #fff;
}

.et_monarch .et_social_count {
	line-height: 23px;
}

.et_monarch .et_social_networks.et_social_circle .et_social_network_label, .et_monarch .et_social_networks.et_social_circle .et_social_networkname, .et_monarch .et_social_networks.et_social_circle .et_social_count, .et_monarch .et_social_networks.et_social_circle .et_social_icons_container li:hover .et_social_networkname, .et_monarch .et_social_networks.et_social_circle .et_social_icons_container li:hover .et_social_count {
	color: #444 !important;
}

.et_monarch .et_social_networks p, .et_monarch .et_social_sidebar_networks p {
	font-family: "Open Sans", helvetica, arial, sans-serif;
	line-height: 1.6em;
	font-weight: 400;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #666;
}

.et_monarch .et_social_placeholder {
	width: 7px;
	height: 14px;
	display: inline-block;
}

.et_monarch .et_social_networks, .et_monarch .et_social_sidebar_networks, .et_monarch .widget_monarchwidget a {
	text-shadow: none !important;
}

.et_monarch .et_social_icon, .et_monarch .et_social_icon:before, .et_monarch .et_social_icon:after {
	font-family: "ETmonarch";
	speak: none;
	font-style: normal;
	font-size: 16px;
	line-height: 16px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
	display: block;
}

.et_monarch .et_social_icon_networks:before {
	content: "";
}

.et_monarch .et_social_icon_cancel:after {
	content: "";
}

.et_monarch .et_social_icon_behance:before, .et_monarch .et_social_icon_behance:after {
	content: "";
}

.et_monarch .et_social_icon_like:before, .et_monarch .et_social_icon_like:after {
	content: "";
}

.et_monarch .et_social_icon_aweber:before, .et_monarch .et_social_icon_aweber:after {
	content: "";
}

.et_monarch .et_social_icon_blinklist:before, .et_monarch .et_social_icon_blinklist:after {
	content: "";
}

.et_monarch .et_social_icon_buffer:before, .et_monarch .et_social_icon_buffer:after {
	content: "";
}

.et_monarch .et_social_icon_email:before, .et_monarch .et_social_icon_email:after {
	content: "";
}

.et_monarch .et_social_icon_github:before, .et_monarch .et_social_icon_github:after {
	content: "";
}

.et_monarch .et_social_icon_mailchimp:before, .et_monarch .et_social_icon_mailchimp:after {
	content: "";
}

.et_monarch .et_social_icon_outlook:before, .et_monarch .et_social_icon_outlook:after {
	content: "";
}

.et_monarch .et_social_icon_print:before, .et_monarch .et_social_icon_print:after {
	content: "";
}

.et_monarch .et_social_icon_soundcloud:before, .et_monarch .et_social_icon_soundcloud:after {
	content: "";
}

.et_monarch .et_social_icon_baidu:before, .et_monarch .et_social_icon_baidu:after {
	content: "";
}

.et_monarch .et_social_icon_box:before, .et_monarch .et_social_icon_box:after {
	content: "";
}

.et_monarch .et_social_icon_digg:before, .et_monarch .et_social_icon_digg:after {
	content: "";
}

.et_monarch .et_social_icon_evernote:before, .et_monarch .et_social_icon_evernote:after {
	content: "";
}

.et_monarch .et_social_icon_hackernews:before, .et_monarch .et_social_icon_hackernews:after {
	content: "";
}

.et_monarch .et_social_icon_livejournal:before, .et_monarch .et_social_icon_livejournal:after {
	content: "";
}

.et_monarch .et_social_icon_netvibes:before, .et_monarch .et_social_icon_netvibes:after {
	content: "";
}

.et_monarch .et_social_icon_newsvine:before, .et_monarch .et_social_icon_newsvine:after {
	content: "";
}

.et_monarch .et_social_icon_aol:before, .et_monarch .et_social_icon_aol:after {
	content: "";
}

.et_monarch .et_social_icon_gmail:before, .et_monarch .et_social_icon_gmail:after {
	content: "";
}

.et_monarch .et_social_icon_google:before, .et_monarch .et_social_icon_google:after {
	content: "";
}

.et_monarch .et_social_icon_printfriendly:before, .et_monarch .et_social_icon_printfriendly:after {
	content: "";
}

.et_monarch .et_social_icon_reddit:before, .et_monarch .et_social_icon_reddit:after {
	content: "";
}

.et_monarch .et_social_icon_vkontakte:before, .et_monarch .et_social_icon_vkontakte:after {
	content: "";
}

.et_monarch .et_social_icon_yahoobookmarks:before, .et_monarch .et_social_icon_yahoobookmarks:after {
	content: "";
}

.et_monarch .et_social_icon_yahoomail:before, .et_monarch .et_social_icon_yahoomail:after {
	content: "";
}

.et_monarch .et_social_icon_youtube:before, .et_monarch .et_social_icon_youtube:after {
	content: "";
}

.et_monarch .et_social_icon_amazon:before, .et_monarch .et_social_icon_amazon:after {
	content: "";
}

.et_monarch .et_social_icon_delicious:before, .et_monarch .et_social_icon_delicious:after {
	content: "";
}

.et_monarch .et_social_icon_googleplus:before, .et_monarch .et_social_icon_googleplus:after {
	content: "";
}

.et_monarch .et_social_icon_instagram:before, .et_monarch .et_social_icon_instagram:after {
	content: "";
}

.et_monarch .et_social_icon_linkedin:before, .et_monarch .et_social_icon_linkedin:after {
	content: "";
}

.et_monarch .et_social_icon_myspace:before, .et_monarch .et_social_icon_myspace:after {
	content: "";
}

.et_monarch .et_social_icon_picassa:before, .et_monarch .et_social_icon_picassa:after {
	content: "";
}

.et_monarch .et_social_icon_spotify:before, .et_monarch .et_social_icon_spotify:after {
	content: "";
}

.et_monarch .et_social_icon_yahoo:before, .et_monarch .et_social_icon_yahoo:after {
	content: "";
}

.et_monarch .et_social_icon_blogger:before, .et_monarch .et_social_icon_blogger:after {
	content: "";
}

.et_monarch .et_social_icon_deviantart:before, .et_monarch .et_social_icon_deviantart:after {
	content: "";
}

.et_monarch .et_social_icon_dribbble:before, .et_monarch .et_social_icon_dribbble:after {
	content: "";
}

.et_monarch .et_social_icon_flickr:before, .et_monarch .et_social_icon_flickr:after {
	content: "";
}

.et_monarch .et_social_icon_pinterest:before, .et_monarch .et_social_icon_pinterest:after {
	content: "";
}

.et_monarch .et_social_icon_rss:before, .et_monarch .et_social_icon_rss:after {
	content: "";
}

.et_monarch .et_social_icon_skype:before, .et_monarch .et_social_icon_skype:after {
	content: "";
}

.et_monarch .et_social_icon_stumbleupon:before, .et_monarch .et_social_icon_stumbleupon:after {
	content: "";
}

.et_monarch .et_social_icon_tumblr:before, .et_monarch .et_social_icon_tumblr:after {
	content: "";
}

.et_monarch .et_social_icon_facebook:before, .et_monarch .et_social_icon_facebook:after {
	content: "";
}

.et_monarch .et_social_icon_twitter:before, .et_monarch .et_social_icon_twitter:after {
	content: "";
}

.et_monarch .et_social_icon_vimeo:before, .et_monarch .et_social_icon_vimeo:after {
	content: "";
}

.et_monarch .et_social_icon_wordpress:before, .et_monarch .et_social_icon_wordpress:after {
	content: "";
}

.et_monarch .et_social_icon_all_button:before, .et_monarch .et_social_icon_all_button:after {
	content: "";
}

/*------------[NETWORK DEFAULT COLORS]------------*/
.et_monarch .et_social_facebook, .et_monarch .et_social_facebook, .et_monarch .et_social_networks.et_social_circle .et_social_facebook i {
	background-color: #3a579a;
}

.et_monarch li.et_social_facebook:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_facebook:hover i {
	background-color: #314a83;
}

.et_monarch .et_social_sidebar_border li.et_social_facebook:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_facebook:hover {
	border-color: #3a579a;
}

.et_monarch .widget_monarchwidget li.et_social_facebook {
	background-color: #3a579a !important;
}

.et_monarch .widget_monarchwidget li.et_social_facebook:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_facebook:hover i {
	background-color: #314a83 !important;
}

.et_monarch .et_social_twitter, .et_monarch .et_social_twitter, .et_monarch .et_social_networks.et_social_circle .et_social_twitter i {
	background-color: #00abf0;
}

.et_monarch .widget_monarchwidget li.et_social_twitter:hover, .et_monarch li.et_social_twitter:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_twitter:hover i {
	background-color: #0092cc;
}

.et_monarch .et_social_sidebar_border li.et_social_twitter:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_twitter:hover {
	border-color: #00abf0;
}

.et_monarch .widget_monarchwidget li.et_social_twitter {
	background-color: #00abf0 !important;
}

.et_monarch .widget_monarchwidget li.et_social_twitter:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_twitter:hover i {
	background-color: #0092cc !important;
}

.et_monarch .et_social_pinterest, .et_monarch .et_social_networks.et_social_circle .et_social_pinterest i {
	background-color: #cd1c1f;
}

.et_monarch li.et_social_pinterest:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_pinterest:hover i {
	background-color: #ae181a;
}

.et_monarch .et_social_sidebar_border li.et_social_pinterest:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_pinterest:hover {
	border-color: #cd1c1f;
}

.et_monarch .widget_monarchwidget li.et_social_pinterest {
	background-color: #cd1c1f !important;
}

.et_monarch .widget_monarchwidget li.et_social_pinterest:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_pinterest:hover i {
	background-color: #ae181a !important;
}

.et_monarch .et_social_googleplus, .et_monarch .et_social_networks.et_social_circle .et_social_googleplus i {
	background-color: #df4a32;
}

.et_monarch li.et_social_googleplus:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_googleplus:hover i {
	background-color: #be3f2b;
}

.et_monarch .et_social_sidebar_border li.et_social_googleplus:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_googleplus:hover {
	border-color: #df4a32;
}

.et_monarch .widget_monarchwidget li.et_social_googleplus {
	background-color: #df4a32 !important;
}

.et_monarch .widget_monarchwidget li.et_social_googleplus:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_googleplus:hover i {
	background-color: #be3f2b !important;
}

.et_monarch .et_social_email, .et_monarch .et_social_networks.et_social_circle .et_social_email i {
	background-color: #666;
}

.et_monarch li.et_social_email:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_email:hover i {
	background-color: #575757;
}

.et_monarch .et_social_sidebar_border li.et_social_email:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_email:hover {
	border-color: #666;
}

.et_monarch .widget_monarchwidget li.et_social_email {
	background-color: #666 !important;
}

.et_monarch .widget_monarchwidget li.et_social_email:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_email:hover i {
	background-color: #575757 !important;
}

.et_monarch .et_social_wordpress, .et_monarch .et_social_networks.et_social_circle .et_social_wordpress i {
	background-color: #267697;
}

.et_monarch li.et_social_wordpress:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_wordpress:hover i {
	background-color: #206480;
}

.et_monarch .et_social_sidebar_border li.et_social_wordpress:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_wordpress:hover {
	border-color: #267697;
}

.et_monarch .widget_monarchwidget li.et_social_wordpress {
	background-color: #267697 !important;
}

.et_monarch .widget_monarchwidget li.et_social_wordpress:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_wordpress:hover i {
	background-color: #206480 !important;
}

.et_monarch .et_social_vimeo, .et_monarch .et_social_networks.et_social_circle .et_social_vimeo i {
	background-color: #45bbfc;
}

.et_monarch li.et_social_vimeo:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_vimeo:hover i {
	background-color: #3b9fd6;
}

.et_monarch .et_social_sidebar_border li.et_social_vimeo:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_vimeo:hover {
	border-color: #45bbfc;
}

.et_monarch .widget_monarchwidget li.et_social_vimeo {
	background-color: #45bbfc !important;
}

.et_monarch .widget_monarchwidget li.et_social_vimeo:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_vimeo:hover i {
	background-color: #3b9fd6 !important;
}

.et_monarch .et_social_skype, .et_monarch .et_social_networks.et_social_circle .et_social_skype i {
	background-color: #1ba5f4;
}

.et_monarch li.et_social_skype:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_skype:hover i {
	background-color: #178cd0;
}

.et_monarch .et_social_sidebar_border li.et_social_skype:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_skype:hover {
	border-color: #1ba5f4;
}

.et_monarch .widget_monarchwidget li.et_social_skype {
	background-color: #1ba5f4 !important;
}

.et_monarch .widget_monarchwidget li.et_social_skype:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_skype:hover i {
	background-color: #178cd0 !important;
}

.et_monarch .et_social_tumblr, .et_monarch .et_social_networks.et_social_circle .et_social_tumblr i {
	background-color: #32506d;
}

.et_monarch li.et_social_tumblr:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_tumblr:hover i {
	background-color: #2b445d;
}

.et_monarch .et_social_sidebar_border li.et_social_tumblr:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_tumblr:hover {
	border-color: #32506d;
}

.et_monarch .widget_monarchwidget li.et_social_tumblr {
	background-color: #32506d !important;
}

.et_monarch .widget_monarchwidget li.et_social_tumblr:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_tumblr:hover i {
	background-color: #2b445d !important;
}

.et_monarch .et_social_dribbble, .et_monarch .et_social_networks.et_social_circle .et_social_dribbble i {
	background-color: #ea4c8d;
}

.et_monarch li.et_social_dribbble:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_dribbble:hover i {
	background-color: #c74178;
}

.et_monarch .et_social_sidebar_border li.et_social_dribbble:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_dribbble:hover {
	border-color: #ea4c8d;
}

.et_monarch .widget_monarchwidget li.et_social_dribbble {
	background-color: #ea4c8d !important;
}

.et_monarch .widget_monarchwidget li.et_social_dribbble:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_dribbble:hover i {
	background-color: #c74178 !important;
}

.et_monarch .et_social_flickr, .et_monarch .et_social_networks.et_social_circle .et_social_flickr i {
	background-color: #fc1684;
}

.et_monarch li.et_social_flickr:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_flickr:hover i {
	background-color: #d61370;
}

.et_monarch .et_social_sidebar_border li.et_social_flickr:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_flickr:hover {
	border-color: #fc1684;
}

.et_monarch .widget_monarchwidget li.et_social_flickr {
	background-color: #fc1684 !important;
}

.et_monarch .widget_monarchwidget li.et_social_flickr:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_flickr:hover i {
	background-color: #d61370 !important;
}

.et_monarch .et_social_stumbleupon, .et_monarch .et_social_networks.et_social_circle .et_social_stumbleupon i {
	background-color: #ea4b24;
}

.et_monarch li.et_social_stumbleupon:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_stumbleupon:hover i {
	background-color: #c7401f;
}

.et_monarch .et_social_sidebar_border li.et_social_stumbleupon:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_stumbleupon:hover {
	border-color: #ea4b24;
}

.et_monarch .widget_monarchwidget li.et_social_stumbleupon {
	background-color: #ea4b24 !important;
}

.et_monarch .widget_monarchwidget li.et_social_stumbleupon:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_stumbleupon:hover i {
	background-color: #c7401f !important;
}

.et_monarch .et_social_deviantart, .et_monarch .et_social_networks.et_social_circle .et_social_deviantart i {
	background-color: #566c68;
}

.et_monarch li.et_social_deviantart:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_deviantart:hover i {
	background-color: #495c59;
}

.et_monarch .et_social_sidebar_border li.et_social_deviantart:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_deviantart:hover {
	border-color: #566c68;
}

.et_monarch .widget_monarchwidget li.et_social_deviantart {
	background-color: #566c68 !important;
}

.et_monarch .widget_monarchwidget li.et_social_deviantart:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_deviantart:hover i {
	background-color: #495c59 !important;
}

.et_monarch .et_social_rss, .et_monarch .et_social_networks.et_social_circle .et_social_rss i {
	background-color: #f59038;
}

.et_monarch li.et_social_rss:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_rss:hover i {
	background-color: #d07b30;
}

.et_monarch .et_social_sidebar_border li.et_social_rss:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_rss:hover {
	border-color: #f59038;
}

.et_monarch .widget_monarchwidget li.et_social_rss {
	background-color: #f59038 !important;
}

.et_monarch .widget_monarchwidget li.et_social_rss:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_rss:hover i {
	background-color: #d07b30 !important;
}

.et_monarch .et_social_blogger, .et_monarch .et_social_networks.et_social_circle .et_social_blogger i {
	background-color: #f59038;
}

.et_monarch li.et_social_blogger:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_blogger:hover i {
	background-color: #d07b30;
}

.et_monarch .et_social_sidebar_border li.et_social_blogger:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_blogger:hover {
	border-color: #f59038;
}

.et_monarch .widget_monarchwidget li.et_social_blogger {
	background-color: #f59038 !important;
}

.et_monarch .widget_monarchwidget li.et_social_blogger:hover, .et_monarch .widget_monarchwidget li.et_social_blogger:hover i {
	background-color: #d07b30 !important;
}

.et_monarch .et_social_picassa, .et_monarch .et_social_networks.et_social_circle .et_social_picassa i {
	background-color: #9864ae;
}

.et_monarch li.et_social_picassa:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_picassa:hover i {
	background-color: #815594;
}

.et_monarch .et_social_sidebar_border li.et_social_picassa:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_picassa:hover {
	border-color: #9864ae;
}

.et_monarch .widget_monarchwidget li.et_social_picassa {
	background-color: #9864ae !important;
}

.et_monarch .widget_monarchwidget li.et_social_picassa:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_picassa:hover i {
	background-color: #815594 !important;
}

.et_monarch .et_social_spotify, .et_monarch .et_social_networks.et_social_circle .et_social_spotify i {
	background-color: #aecf29;
}

.et_monarch li.et_social_spotify:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_spotify:hover i {
	background-color: #94b023;
}

.et_monarch .et_social_sidebar_border li.et_social_spotify:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_spotify:hover {
	border-color: #aecf29;
}

.et_monarch .widget_monarchwidget li.et_social_spotify {
	background-color: #aecf29 !important;
}

.et_monarch .widget_monarchwidget li.et_social_spotify:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_spotify:hover i {
	background-color: #94b023 !important;
}

.et_monarch .et_social_instagram, .et_monarch .et_social_networks.et_social_circle .et_social_instagram i {
	background-color: #517fa4;
}

.et_monarch li.et_social_instagram:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_instagram:hover i {
	background-color: #456c8c;
}

.et_monarch .et_social_sidebar_border li.et_social_instagram:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_instagram:hover {
	border-color: #517fa4;
}

.et_monarch .widget_monarchwidget li.et_social_instagram {
	background-color: #517fa4 !important;
}

.et_monarch .widget_monarchwidget li.et_social_instagram:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_instagram:hover i {
	background-color: #456c8c !important;
}

.et_monarch .et_social_myspace, .et_monarch .et_social_networks.et_social_circle .et_social_myspace i {
	background-color: #3a5998;
}

.et_monarch li.et_social_myspace:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_myspace:hover i {
	background-color: #314c81;
}

.et_monarch .et_social_sidebar_border li.et_social_myspace:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_myspace:hover {
	border-color: #3a5998;
}

.et_monarch .widget_monarchwidget li.et_social_myspace {
	background-color: #3a5998 !important;
}

.et_monarch .widget_monarchwidget li.et_social_myspace:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_myspace:hover i {
	background-color: #314c81 !important;
}

.et_monarch .et_social_delicious, .et_monarch .et_social_networks.et_social_circle .et_social_delicious i {
	background-color: #3398fc;
}

.et_monarch li.et_social_delicious:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_delicious:hover i {
	background-color: #2b81d6;
}

.et_monarch .et_social_sidebar_border li.et_social_delicious:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_delicious:hover {
	border-color: #3398fc;
}

.et_monarch .widget_monarchwidget li.et_social_delicious {
	background-color: #3398fc !important;
}

.et_monarch .widget_monarchwidget li.et_social_delicious:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_delicious:hover i {
	background-color: #2b81d6 !important;
}

.et_monarch .et_social_linkedin, .et_monarch .et_social_networks.et_social_circle .et_social_linkedin i {
	background-color: #127bb6;
}

.et_monarch li.et_social_linkedin:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_linkedin:hover i {
	background-color: #0f699b;
}

.et_monarch .et_social_sidebar_border li.et_social_linkedin:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_linkedin:hover {
	border-color: #127bb6;
}

.et_monarch .widget_monarchwidget li.et_social_linkedin {
	background-color: #127bb6 !important;
}

.et_monarch .widget_monarchwidget li.et_social_linkedin:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_linkedin:hover i {
	background-color: #0f699b !important;
}

.et_monarch .et_social_yahoo, .et_monarch .et_social_networks.et_social_circle .et_social_yahoo i {
	background-color: #511295;
}

.et_monarch li.et_social_yahoo:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_yahoo:hover i {
	background-color: #450f7f;
}

.et_monarch .et_social_sidebar_border li.et_social_yahoo:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_yahoo:hover {
	border-color: #511295;
}

.et_monarch .widget_monarchwidget li.et_social_yahoo {
	background-color: #511295 !important;
}

.et_monarch .widget_monarchwidget li.et_social_yahoo:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_yahoo:hover {
	background-color: #450f7f !important;
}

.et_monarch .et_social_yahoomail, .et_monarch .et_social_networks.et_social_circle .et_social_yahoomail i {
	background-color: #511295;
}

.et_monarch li.et_social_yahoomail:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_yahoomail:hover i {
	background-color: #450f7f;
}

.et_monarch .et_social_sidebar_border li.et_social_yahoomail:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_yahoomail:hover {
	border-color: #511295;
}

.et_monarch .widget_monarchwidget li.et_social_yahoomail {
	background-color: #511295 !important;
}

.et_monarch .widget_monarchwidget li.et_social_yahoomail:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_yahoomail:hover i {
	background-color: #450f7f !important;
}

.et_monarch .et_social_yahoobookmarks, .et_monarch .et_social_networks.et_social_circle .et_social_yahoobookmarks i {
	background-color: #511295;
}

.et_monarch li.et_social_yahoobookmarks:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_yahoobookmarks:hover i {
	background-color: #450f7f;
}

.et_monarch .et_social_sidebar_border li.et_social_yahoobookmarks:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_yahoobookmarks:hover {
	border-color: #511295;
}

.et_monarch .widget_monarchwidget li.et_social_yahoobookmarks {
	background-color: #511295 !important;
}

.et_monarch .widget_monarchwidget li.et_social_yahoobookmarks:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_yahoobookmarks:hover i {
	background-color: #450f7f !important;
}

.et_monarch .et_social_amazon, .et_monarch .et_social_networks.et_social_circle .et_social_amazon i {
	background-color: #222;
}

.et_monarch li.et_social_amazon:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_amazon:hover i {
	background-color: #000;
}

.et_monarch .et_social_sidebar_border li.et_social_amazon:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_amazon:hover {
	border-color: #222;
}

.et_monarch .widget_monarchwidget li.et_social_amazon {
	background-color: #222 !important;
}

.et_monarch .widget_monarchwidget li.et_social_amazon:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_amazon:hover i {
	background-color: #000 !important;
}

.et_monarch .et_social_aol, .et_monarch .et_social_networks.et_social_circle .et_social_aol i {
	background-color: #222;
}

.et_monarch li.et_social_aol:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_aol:hover i {
	background-color: #000;
}

.et_monarch .et_social_sidebar_border li.et_social_aol:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_aol:hover {
	border-color: #222;
}

.et_monarch .widget_monarchwidget li.et_social_aol {
	background-color: #222 !important;
}

.et_monarch .widget_monarchwidget li.et_social_aol:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_aol:hover i {
	background-color: #000 !important;
}

.et_monarch .et_social_buffer, .et_monarch .et_social_networks.et_social_circle .et_social_buffer i {
	background-color: #222;
}

.et_monarch li.et_social_buffer:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_buffer:hover i {
	background-color: #000;
}

.et_monarch .et_social_sidebar_border li.et_social_buffer:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_buffer:hover {
	border-color: #222;
}

.et_monarch .widget_monarchwidget li.et_social_buffer {
	background-color: #222 !important;
}

.et_monarch .widget_monarchwidget li.et_social_buffer:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_buffer:hover i {
	background-color: #000 !important;
}

.et_monarch .et_social_printfriendly, .et_monarch .et_social_networks.et_social_circle .et_social_printfriendly i {
	background-color: #75aa33;
}

.et_monarch li.et_social_printfriendly:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_printfriendly:hover i {
	background-color: #64912b;
}

.et_monarch .et_social_sidebar_border li.et_social_printfriendly:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_printfriendly:hover {
	border-color: #75aa33;
}

.et_monarch .widget_monarchwidget li.et_social_printfriendly {
	background-color: #75aa33 !important;
}

.et_monarch .widget_monarchwidget li.et_social_printfriendly:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_printfriendly:hover i {
	background-color: #64912b !important;
}

.et_monarch .et_social_youtube, .et_monarch .et_social_networks.et_social_circle .et_social_youtube i {
	background-color: #a8240f;
}

.et_monarch li.et_social_youtube:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_youtube:hover i {
	background-color: #8f1f0d;
}

.et_monarch .et_social_sidebar_border li.et_social_youtube:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_youtube:hover {
	border-color: #a8240f;
}

.et_monarch .widget_monarchwidget li.et_social_youtube {
	background-color: #a8240f !important;
}

.et_monarch .widget_monarchwidget li.et_social_youtube:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_youtube:hover i {
	background-color: #8f1f0d !important;
}

.et_monarch .et_social_google, .et_monarch .et_social_networks.et_social_circle .et_social_google i {
	background-color: #3b7ae0;
}

.et_monarch li.et_social_google:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_google:hover i {
	background-color: #3268bf;
}

.et_monarch .et_social_sidebar_border li.et_social_google:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_google:hover {
	border-color: #3b7ae0;
}

.et_monarch .widget_monarchwidget li.et_social_google {
	background-color: #3b7ae0 !important;
}

.et_monarch .widget_monarchwidget li.et_social_google:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_google:hover i {
	background-color: #3268bf !important;
}

.et_monarch .et_social_gmail, .et_monarch .et_social_networks.et_social_circle .et_social_gmail i {
	background-color: #dd4b39;
}

.et_monarch li.et_social_gmail:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_gmail:hover i {
	background-color: #bc4031;
}

.et_monarch .et_social_sidebar_border li.et_social_gmail:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_gmail:hover {
	border-color: #dd4b39;
}

.et_monarch .widget_monarchwidget li.et_social_gmail {
	background-color: #dd4b39 !important;
}

.et_monarch .widget_monarchwidget li.et_social_gmail:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_gmail:hover {
	background-color: #bc4031 !important;
}

.et_monarch .et_social_reddit, .et_monarch .et_social_networks.et_social_circle .et_social_reddit i {
	background-color: #fc461e;
}

.et_monarch li.et_social_reddit:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_reddit:hover i {
	background-color: #d63c1a;
}

.et_monarch .et_social_sidebar_border li.et_social_reddit:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_reddit:hover {
	border-color: #fc461e;
}

.et_monarch .widget_monarchwidget li.et_social_reddit {
	background-color: #fc461e !important;
}

.et_monarch .widget_monarchwidget li.et_social_reddit:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_reddit:hover i {
	background-color: #d63c1a !important;
}

.et_monarch .et_social_vkontakte, .et_monarch .et_social_networks.et_social_circle .et_social_vkontakte i {
	background-color: #4c75a3;
}

.et_monarch li.et_social_vkontakte:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_vkontakte:hover i {
	background-color: #41648b;
}

.et_monarch .et_social_sidebar_border li.et_social_vkontakte:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_vkontakte:hover {
	border-color: #4c75a3;
}

.et_monarch .widget_monarchwidget li.et_social_vkontakte {
	background-color: #4c75a3 !important;
}

.et_monarch .widget_monarchwidget li.et_social_vkontakte:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_vkontakte:hover i {
	background-color: #41648b !important;
}

.et_monarch .et_social_newsvine, .et_monarch .et_social_networks.et_social_circle .et_social_newsvine i {
	background-color: #0d642e;
}

.et_monarch li.et_social_newsvine:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_newsvine:hover i {
	background-color: #0b5527;
}

.et_monarch .et_social_sidebar_border li.et_social_newsvine:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_newsvine:hover {
	border-color: #0d642e;
}

.et_monarch .widget_monarchwidget li.et_social_newsvine {
	background-color: #0d642e !important;
}

.et_monarch .widget_monarchwidget li.et_social_newsvine:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_newsvine:hover i {
	background-color: #0b5527 !important;
}

.et_monarch .et_social_netvibes, .et_monarch .et_social_networks.et_social_circle .et_social_netvibes i {
	background-color: #5dbc22;
}

.et_monarch li.et_social_netvibes:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_netvibes:hover i {
	background-color: #4fa01d;
}

.et_monarch .et_social_sidebar_border li.et_social_netvibes:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_netvibes:hover {
	border-color: #5dbc22;
}

.et_monarch .widget_monarchwidget li.et_social_netvibes {
	background-color: #5dbc22 !important;
}

.et_monarch .widget_monarchwidget li.et_social_netvibes:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_netvibes:hover i {
	background-color: #4fa01d !important;
}

.et_monarch .et_social_hackernews, .et_monarch .et_social_networks.et_social_circle .et_social_hackernews i {
	background-color: #f08641;
}

.et_monarch li.et_social_hackernews:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_hackernews:hover i {
	background-color: #cc7237;
}

.et_monarch .et_social_sidebar_border li.et_social_hackernews:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_hackernews:hover {
	border-color: #f08641;
}

.et_monarch .widget_monarchwidget li.et_social_hackernews {
	background-color: #f08641 !important;
}

.et_monarch .widget_monarchwidget li.et_social_hackernews:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_hackernews:hover i {
	background-color: #cc7237 !important;
}

.et_monarch .et_social_evernote, .et_monarch .et_social_networks.et_social_circle .et_social_evernote i {
	background-color: #7cbf4b;
}

.et_monarch li.et_social_evernote:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_evernote:hover i {
	background-color: #6aa340;
}

.et_monarch .et_social_sidebar_border li.et_social_evernote:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_evernote:hover {
	border-color: #7cbf4b;
}

.et_monarch .widget_monarchwidget li.et_social_evernote {
	background-color: #7cbf4b !important;
}

.et_monarch .widget_monarchwidget li.et_social_evernote:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_evernote:hover i {
	background-color: #6aa340 !important;
}

.et_monarch .et_social_digg, .et_monarch .et_social_networks.et_social_circle .et_social_digg i {
	background-color: #546b9f;
}

.et_monarch li.et_social_digg:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_digg:hover i {
	background-color: #475b87;
}

.et_monarch .et_social_sidebar_border li.et_social_digg:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_digg:hover {
	border-color: #546b9f;
}

.et_monarch .widget_monarchwidget li.et_social_digg {
	background-color: #546b9f !important;
}

.et_monarch .widget_monarchwidget li.et_social_digg:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_digg:hover i {
	background-color: #475b87 !important;
}

.et_monarch .et_social_box, .et_monarch .et_social_networks.et_social_circle .et_social_box i {
	background-color: #1482c3;
}

.et_monarch li.et_social_box:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_box:hover i {
	background-color: #116fa6;
}

.et_monarch .et_social_sidebar_border li.et_social_box:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_box:hover {
	border-color: #1482c3;
}

.et_monarch .widget_monarchwidget li.et_social_box {
	background-color: #1482c3 !important;
}

.et_monarch .widget_monarchwidget li.et_social_box:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_box:hover i {
	background-color: #116fa6 !important;
}

.et_monarch .et_social_baidu, .et_monarch .et_social_networks.et_social_circle .et_social_baidu i {
	background-color: #2b3bdd;
}

.et_monarch li.et_social_baidu:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_baidu:hover i {
	background-color: #2532bc;
}

.et_monarch .et_social_sidebar_border li.et_social_baidu:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_baidu:hover {
	border-color: #2b3bdd;
}

.et_monarch .widget_monarchwidget li.et_social_baidu {
	background-color: #2b3bdd !important;
}

.et_monarch .widget_monarchwidget li.et_social_baidu:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_baidu:hover i {
	background-color: #2532bc !important;
}

.et_monarch .et_social_livejournal, .et_monarch .et_social_networks.et_social_circle .et_social_livejournal i {
	background-color: #336697;
}

.et_monarch li.et_social_livejournal:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_livejournal:hover i {
	background-color: #2b5780;
}

.et_monarch .et_social_sidebar_border li.et_social_livejournal:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_livejournal:hover {
	border-color: #336697;
}

.et_monarch .widget_monarchwidget li.et_social_livejournal {
	background-color: #336697 !important;
}

.et_monarch .widget_monarchwidget li.et_social_livejournal:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_livejournal:hover i {
	background-color: #2b5780 !important;
}

.et_monarch .et_social_github, .et_monarch .et_social_networks.et_social_circle .et_social_github i {
	background-color: #4183c4;
}

.et_monarch li.et_social_github:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_github:hover i {
	background-color: #376fa7;
}

.et_monarch .et_social_sidebar_border li.et_social_github:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_github:hover {
	border-color: #4183c4;
}

.et_monarch .widget_monarchwidget li.et_social_github {
	background-color: #4183c4 !important;
}

.et_monarch .widget_monarchwidget li.et_social_github:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_github:hover i {
	background-color: #376fa7 !important;
}

.et_monarch .et_social_outlook, .et_monarch .et_social_networks.et_social_circle .et_social_outlook i {
	background-color: #1174c3;
}

.et_monarch li.et_social_outlook:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_outlook:hover i {
	background-color: #0e63a6;
}

.et_monarch .et_social_sidebar_border li.et_social_outlook:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_outlook:hover {
	border-color: #1174c3;
}

.et_monarch .widget_monarchwidget li.et_social_outlook {
	background-color: #1174c3 !important;
}

.et_monarch .widget_monarchwidget li.et_social_outlook:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_outlook:hover i {
	background-color: #0e63a6 !important;
}

.et_monarch .et_social_blinklist, .et_monarch .et_social_networks.et_social_circle .et_social_blinklist i {
	background-color: #fc6d21;
}

.et_monarch li.et_social_blinklist:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_blinklist:hover i {
	background-color: #d65d1c;
}

.et_monarch .et_social_sidebar_border li.et_social_blinklist:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_blinklist:hover {
	border-color: #fc6d21;
}

.et_monarch .widget_monarchwidget li.et_social_blinklist {
	background-color: #fc6d21 !important;
}

.et_monarch .widget_monarchwidget li.et_social_blinklist:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_blinklist:hover i {
	background-color: #d65d1c !important;
}

.et_monarch .et_social_aweber, .et_monarch .et_social_networks.et_social_circle .et_social_aweber i {
	background-color: #127bbf;
}

.et_monarch li.et_social_aweber:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_aweber:hover i {
	background-color: #0f69a3;
}

.et_monarch .et_social_sidebar_border li.et_social_aweber:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_aweber:hover {
	border-color: #127bbf;
}

.et_monarch .widget_monarchwidget li.et_social_aweber {
	background-color: #127bbf !important;
}

.et_monarch .widget_monarchwidget li.et_social_aweber:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_aweber:hover i {
	background-color: #0f69a3 !important;
}

.et_monarch .et_social_mailchimp, .et_monarch .et_social_networks.et_social_circle .et_social_mailchimp i {
	background-color: #3283bf;
}

.et_monarch li.et_social_mailchimp:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_mailchimp:hover i {
	background-color: #2b6fa3;
}

.et_monarch .et_social_sidebar_border li.et_social_mailchimp:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_mailchimp:hover {
	border-color: #3283bf;
}

.et_monarch .widget_monarchwidget li.et_social_mailchimp {
	background-color: #3283bf !important;
}

.et_monarch .widget_monarchwidget li.et_social_mailchimp:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_mailchimp:hover i {
	background-color: #2b6fa3 !important;
}

.et_monarch .et_social_soundcloud, .et_monarch .et_social_networks.et_social_circle .et_social_soundcloud i {
	background-color: #f0601e;
}

.et_monarch li.et_social_soundcloud:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_soundcloud:hover i {
	background-color: #cc521a;
}

.et_monarch .et_social_sidebar_border li.et_social_soundcloud:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_soundcloud:hover {
	border-color: #f0601e;
}

.et_monarch .widget_monarchwidget li.et_social_soundcloud {
	background-color: #f0601e !important;
}

.et_monarch .widget_monarchwidget li.et_social_soundcloud:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_soundcloud:hover i {
	background-color: #cc521a !important;
}

.et_monarch .et_social_print, .et_monarch .et_social_networks.et_social_circle .et_social_print i {
	background-color: #333;
}

.et_monarch li.et_social_print:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_print:hover i {
	background-color: #2b2b2b;
}

.et_monarch .et_social_sidebar_border li.et_social_print:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_print:hover {
	border-color: #333;
}

.et_monarch .widget_monarchwidget li.et_social_print {
	background-color: #333 !important;
}

.et_monarch .widget_monarchwidget li.et_social_print:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_print:hover i {
	background-color: #2b2b2b !important;
}

.et_monarch .et_social_like, .et_monarch .et_social_networks.et_social_circle .et_social_like i {
	background-color: #f95149;
}

.et_monarch li.et_social_like:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_like:hover i {
	background-color: #d4453e;
}

.et_monarch .et_social_sidebar_border li.et_social_like:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_like:hover {
	border-color: #f95149;
}

.et_monarch .widget_monarchwidget li.et_social_like {
	background-color: #f95149 !important;
}

.et_monarch .widget_monarchwidget li.et_social_like:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_like:hover i {
	background-color: #d4453e !important;
}

.et_monarch .et_social_behance, .et_monarch .et_social_networks.et_social_circle .et_social_behance i {
	background-color: #1769ff;
}

.et_monarch li.et_social_behance:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_behance:hover i {
	background-color: #1459d9;
}

.et_monarch .et_social_sidebar_border li.et_social_behance:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li.et_social_behance:hover {
	border-color: #1769ff;
}

.et_monarch .widget_monarchwidget li.et_social_behance {
	background-color: #1769ff !important;
}

.et_monarch .widget_monarchwidget li.et_social_behance:hover, .et_monarch .widget_monarchwidget .et_social_circle li.et_social_behance:hover i {
	background-color: #1459d9 !important;
}

.et_monarch .et_social_all_button, .et_monarch .et_social_networks.et_social_circle .et_social_all_button i {
	background-color: #dedede;
}

.et_monarch li.et_social_all_button:hover, .et_monarch .et_social_networks.et_social_circle li.et_social_all_button:hover i {
	background-color: #d1d1d1;
}

.et_monarch li.et_social_all_button i.et_social_icon_all_button, .et_monarch .et_social_sidebar_networks li.et_social_all_button:hover i.et_social_icon_all_button {
	color: #777;
}

.et_monarch .et_social_sidebar_border li.et_social_all_button:hover {
	border-color: #bfbfbf;
}

.et_monarch .et_social_sidebar_networks .et_social_icons_container li:hover i, .et_monarch .et_social_sidebar_networks .et_social_icons_container li:hover .et_social_count, .et_monarch .et_social_mobile .et_social_icons_container li:hover i, .et_monarch .widget_monarchwidget .et_social_icons_container li:hover .et_social_icon, .et_monarch .widget_monarchwidget .et_social_networks .et_social_icons_container li:hover .et_social_network_label, .et_monarch .widget_monarchwidget .et_social_icons_container li:hover .et_social_sidebar_count {
	color: #fff;
}

.widget_monarchwidget li, .et_monarch .widget_text .et_social_networks li {
	background-image: none !important;
	list-style: none;
	padding: 0 !important;
	margin-bottom: 0 !important;
	border: none !important;
}

.widget_monarchwidget li, .et_monarch .widget_monarchwidget li:after {
	border: none !important;
}

.widget_monarchwidget li.nitro-lazy, .et_monarch .widget_text .et_social_networks li.nitro-lazy {
	background-image: none !important;
}

.widget_monarchwidget li:before {
	display: none;
}

.et_monarch .widget_monarchwidget .et_social_networks.et_social_circle ul li {
	background-color: transparent !important;
}

/*------------------------------------------------*/

/*----------------[ET SOCIAL FLYIN]---------------*/

/*------------------------------------------------*/
.et_monarch .et_social_header {
	text-align: left;
	margin-bottom: 25px;
}

.et_monarch .et_social_flyin {
	position: fixed;
	width: 320px;
	background-color: #fff;
	padding: 30px 20px;
	bottom: 0;
	height: auto;
	opacity: 0;
	z-index: -1;
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.et_monarch .et_social_flyin .et_social_networks {
	overflow: auto;
}

.et_monarch .et_social_flyin a.et_social_icon_cancel, .et_monarch .et_social_popup_content a.et_social_icon_cancel {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #666;
}

.et_monarch .et_social_flyin .et_social_icon:after, .et_monarch .et_social_popup .et_social_icon:after {
	display: block;
}

.et_monarch .et_social_flyin_bottom_right {
	right: 0;
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;
}

.et_monarch .et_social_flyin_bottom_left {
	left: 0;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
}

/*------------------------------------------------*/

/*----------------[ET SOCIAL POPUP]---------------*/

/*------------------------------------------------*/
.et_monarch .et_social_popup_content {
	padding: 25px 20px;
	background-color: #fff;
	text-align: left;
	width: 84%;
	max-width: 600px;
	position: fixed;
	z-index: 999999999;
	left: 50%;
	margin-left: -320px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 60px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0px 0px 60px rgba(0, 0, 0, .2);
	box-shadow: 0px 0px 60px rgba(0, 0, 0, .2);
}

.et_monarch .et_social_popup:after {
	content: "";
	background-color: rgba(0, 0, 0, .6);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 99999999;
	display: block;
	opacity: 0;
}

.et_monarch .et_social_popup.et_social_animated:after {
	opacity: 1;
	-webkit-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	-moz-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	-o-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_popup_content .et_social_networks {
	overflow: auto;
}

.et_monarch .et_social_fadeout {
	opacity: 0;
	-webkit-animation: et_social_fadeOut 1s 1 cubic-bezier(.77, 0, .175, 1) !important;
	-moz-animation: et_social_fadeOut 1s 1 cubic-bezier(.77, 0, .175, 1) !important;
	-o-animation: et_social_fadeOut 1s 1 cubic-bezier(.77, 0, .175, 1) !important;
	animation: et_social_fadeOut 1s 1 cubic-bezier(.77, 0, .175, 1) !important;
}

/*------------------------------------------------*/

/*---------------------[INLINE]-------------------*/

/*------------------------------------------------*/

/*--------------------[GENERAL]-------------------*/
.et_monarch .et_social_networkname {
	word-break: break-all;
}

.et_monarch .et_social_icon, .et_monarch .et_social_sidebar_networks .et_social_count {
	position: relative;
	z-index: 100;
}

.et_monarch .et_social_networks span.et_social_overlay {
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .1);
	bottom: 0;
	left: 0;
	z-index: 1;
	position: absolute;
}

.et_monarch .et_social_inline_top {
	margin-bottom: 40px;
}

.et_monarch .et_social_inline_bottom {
	margin-top: 40px;
}

.et_monarch .et_social_networks.et_social_left .et_social_count, .et_monarch .et_social_networks.et_social_left .et_social_networkname {
	line-height: 1em;
	display: inline-block;
}

.widget_monarchwidget {
	width: auto;
	float: none !important;
}

.et_monarch .et_social_networks {
	width: 100%;
	display: inline-block;
}

.et_monarch .et_social_networks .et_social_icons_container {
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1em !important;
	display: inline-block;
	width: inherit;
}

.et_monarch .et_social_networks li, .et_monarch .widget_monarchwidget .et_social_networks li, .et_monarch .widget .et_social_networks li, .et_monarch .widget_text .et_social_networks li {
	float: left;
	position: relative;
	margin: 2% 0 0 2%;
	overflow: hidden;
	min-height: 40px;
	line-height: 0;
}

.et_monarch .textwidget .et_social_networks li {
	margin-bottom: 0;
}

.et_monarch .et_social_networks li a {
	line-height: 0;
}

.et_monarch .et_social_networks.et_social_nospace li {
	margin: 0 !important;
}

.et_monarch .et_social_networks li, .et_monarch .et_social_networks li a, .et_monarch .et_social_icon {
	display: block;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.et_monarch .et_social_networks div.et_social_network_label {
	font-size: 14px;
}

.et_monarch .et_social_networks div.et_social_count .et_social_count_label {
	font-size: 12px;
	font-weight: 400;
}

.et_monarch .et_social_networks div, .et_monarch .et_social_networks span, .et_monarch .et_social_networks li i {
	position: relative;
	z-index: 2;
}

.et_monarch .et_social_networks .et_social_icon, .et_monarch .et_social_networks .et_social_icon:before, .et_monarch .et_social_networks .et_social_icon:after {
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}

.et_monarch .et_social_networks .et_social_networkname, .et_monarch .et_social_networks .et_social_count span {
	font-weight: 700;
}

.et_monarch .et_social_networkname, .et_monarch .et_social_count {
	display: none;
}

.et_monarch .et_social_withnetworknames .et_social_networkname, .et_monarch .et_social_withcounts .et_social_count, .et_monarch .et_social_sidebar_withcounts .et_social_count {
	display: inherit;
}

.et_monarch .et_social_networks.et_social_left i.et_social_icon.et_social_icon_all_button {
	float: none !important;
}

.et_social_open_all span.et_social_overlay {
	margin: 0 !important;
}

.et_monarch .et_social_networks .et_social_all_button i.et_social_icon.et_social_icon_all_button:after, .et_monarch .et_social_networks .et_social_all_button i.et_social_icon.et_social_icon_all_button:before {
	width: 100%;
}

.et_monarch .et_social_slide.et_social_left .et_social_all_button i.et_social_icon.et_social_icon_all_button:after {
	left: -100%;
}

.et_monarch .et_social_slide.et_social_left li.et_social_all_button:hover i.et_social_icon.et_social_icon_all_button:after {
	left: 0;
}

.et_monarch .et_social_slide.et_social_left li:hover i.et_social_icon.et_social_icon_all_button:before {
	margin-left: 100% !important;
}

.et_monarch .et_social_flip.et_social_left li.et_social_all_button:hover i.et_social_icon.et_social_icon_all_button:before {
	width: 110% !important;
}

.et_monarch li.et_social_all_button {
	padding: 0;
	text-align: center;
}

.et_monarch .et_social_circle li.et_social_all_button {
	padding: 0;
	text-align: left;
}

.et_monarch .et_social_top.et_social_rectangle.et_social_withcounts li.et_social_all_button a.et_social_open_all, .et_monarch .et_social_top.et_social_rounded.et_social_withcounts li.et_social_all_button a.et_social_open_all {
	padding: 22px 0 !important;
}

.et_monarch .et_social_top.et_social_rectangle.et_social_withnetworknames li.et_social_all_button a.et_social_open_all, .et_monarch .et_social_top.et_social_rounded.et_social_withnetworknames li.et_social_all_button a.et_social_open_all {
	padding: 21px 0 !important;
}

.et_monarch .et_social_top.et_social_rectangle.et_social_withnetworknames.et_social_withcounts li.et_social_all_button a.et_social_open_all, .et_monarch .et_social_top.et_social_rounded.et_social_withnetworknames.et_social_withcounts li.et_social_all_button a.et_social_open_all {
	padding: 33px 0 !important;
}

/*------------------[TOTAL COUNT]-----------------*/
.et_monarch .et_social_nototalcount .et_social_totalcount {
	display: none;
}

.et_monarch .et_social_withtotalcount .et_social_totalcount {
	display: block;
}

.et_monarch .et_social_networks .et_social_totalcount, .et_monarch .et_social_sidebar_networks_mobile .et_social_totalcount {
	text-align: left;
	color: #444;
	margin-bottom: 10px;
}

.et_monarch .et_social_networks.et_social_sidebar_nocounts .et_social_totalcount {
	width: 40px;
}

.et_monarch .et_social_networks.et_social_sidebar_withcounts .et_social_totalcount, .et_monarch .et_social_networks.et_social_sidebar_flip .et_social_totalcount {
	width: 50px;
}

.et_monarch .et_social_networks .et_social_totalcount_count, .et_monarch .et_social_sidebar_networks_mobile .et_social_totalcount_count {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	line-height: 20px;
}

.et_monarch .et_social_networks .et_social_totalcount_label, .et_monarch .et_social_sidebar_networks_mobile .et_social_totalcount_label {
	display: inline-block;
	font-size: 14px;
	margin-left: 4px;
}

.et_monarch .et_social_withtotalcount .et_social_totalcount.et_social_dark, .et_monarch .et_social_networks.et_social_circle.et_social_outer_dark li .et_social_network_label, .et_monarch .et_social_networks.et_social_circle.et_social_outer_dark li .et_social_networkname, .et_monarch .et_social_networks.et_social_circle.et_social_outer_dark li .et_social_count, .et_monarch .et_social_networks.et_social_circle.et_social_outer_dark li:hover .et_social_count, .et_monarch .et_social_networks.et_social_circle.et_social_outer_dark li:hover .et_social_networkname, .et_monarch .et_social_media .et_social_circle.et_social_outer_dark .et_social_icons_container li:hover .et_social_count {
	color: #444 !important;
}

.et_monarch .et_social_withtotalcount .et_social_totalcount.et_social_light, .et_monarch .et_social_networks.et_social_circle.et_social_outer_light li .et_social_network_label, .et_monarch .et_social_networks.et_social_circle.et_social_outer_light li .et_social_networkname, .et_monarch .et_social_networks.et_social_circle.et_social_outer_light li .et_social_count, .et_monarch .et_social_networks.et_social_circle.et_social_outer_light li:hover .et_social_count, .et_monarch .et_social_networks.et_social_circle.et_social_outer_light li:hover .et_social_networkname, .et_monarch .et_social_media .et_social_circle.et_social_outer_light .et_social_icons_container li:hover .et_social_count {
	color: #fff !important;
}

.et_monarch .et_social_outer_dark .et_social_totalcount, .et_monarch .et_social_outer_dark.et_social_circle .et_social_network_label {
	color: #444;
}

.et_monarch .et_social_outer_light .et_social_totalcount, .et_monarch .et_social_outer_light.et_social_circle .et_social_network_label {
	color: #fff;
}

/*------------------------------------------------*/

/*-----------------[INLINE STYLES]----------------*/

/*------------------------------------------------*/

/*-------------------[DARKEN]---------------------*/
.et_monarch .et_social_darken.et_social_top li:hover .et_social_icon, .et_monarch .et_social_darken.et_social_left li:hover .et_social_overlay, .et_monarch .et_social_darken.et_social_circle li:hover .et_social_icon:before, .et_monarch .et_social_slide.et_social_top li:hover .et_social_icon {
	background-color: rgba(0, 0, 0, .2);
}

.et_monarch .et_social_darken.et_social_top li.et_social_all_button:hover .et_social_icon, .et_monarch .et_social_darken.et_social_left li.et_social_all_button:hover .et_social_overlay {
	background-color: transparent;
}

/*--------------------[FLIP]----------------------*/
.et_monarch .et_social_flip li {
	min-width: 40px;
}

.et_monarch .et_social_flip li a, .et_monarch .et_social_flip li .et_social_share {
	border-left: 0 solid rgba(0, 0, 0, .2);
}

.et_monarch .et_social_flip.et_social_top.et_social_autowidth li a {
	border-left: 8px solid rgba(0, 0, 0, 0);
	padding: 10px 18px 10px 10px;
}

.et_monarch .et_social_flip.et_social_top.et_social_autowidth li.et_social_all_button a.et_social_open_all {
	padding-right: 8px !important;
}

.et_monarch .et_social_flip.et_social_top li:hover a, .et_monarch .et_social_media_wrapper .et_social_flip.et_social_top li:hover .et_social_share {
	border-left: 8px solid rgba(0, 0, 0, .1);
}

.et_monarch .et_social_flip.et_social_left li:hover .et_social_network_label, .et_monarch .et_social_flip.et_social_left li:hover .et_social_overlay {
	margin: 0 0 0 50px;
}

.et_monarch .et_social_flip.et_social_left li:hover .et_social_icon:before {
	width: 50px;
}

.et_monarch .et_social_flip.et_social_left.et_social_autowidth li:hover .et_social_network_label, .et_monarch .et_social_flip.et_social_left.et_social_autowidth li:hover .et_social_overlay {
	margin: 0 0 0 45px;
}

.et_monarch .et_social_flip.et_social_left.et_social_autowidth li:hover .et_social_icon:before {
	width: 45px;
}

.et_monarch .et_social_flip.et_social_left.et_social_autowidth li:hover .et_social_network_label {
	padding-right: 5px;
}

.et_monarch .et_social_flip.et_social_circle li .et_social_icon, .et_monarch .et_social_media_wrapper .et_social_flip.et_social_circle li:hover .et_social_share {
	border-left: 0 solid rgba(0, 0, 0, .1);
	left: 0;
}

.et_monarch .et_social_flip.et_social_circle li:hover .et_social_icon {
	border-left: 6px solid rgba(0, 0, 0, .1);
	width: 32px;
}

.et_monarch .et_social_flip.et_social_circle.et_social_left li:hover .et_social_icon {
	left: 1px;
}

.et_monarch .et_social_flip.et_social_circle.et_social_top li:hover a {
	border: none;
}

.et_monarch .et_social_flip.et_social_top.et_social_circle.et_social_autowidth li a {
	border-left: none;
	padding: 10px;
}

.et_monarch .et_social_icon:after {
	display: none;
}

/*--------------------[SLIDE]---------------------*/
.et_monarch .et_social_slide .et_social_icon:after {
	display: inline-block;
	position: absolute;
	top: -40px;
	left: 0;
}

.et_monarch .et_social_slide li:hover .et_social_icon:before {
	opacity: 0;
	margin-top: 40px;
}

.et_monarch .et_social_slide li:hover .et_social_icon:after {
	top: 0;
}

.et_monarch .et_social_slide li:hover .et_social_overlay {
	background-color: rgba(0, 0, 0, 0);
	margin: 0 0 0 100px;
}

.et_monarch .et_social_slide.et_social_left .et_social_icon {
	overflow: hidden;
}

.et_monarch .et_social_slide.et_social_left li .et_social_icon:after {
	left: -40px;
	top: 0;
}

.et_monarch .et_social_slide.et_social_left li:hover .et_social_icon:after {
	left: 0;
}

.et_monarch .et_social_slide.et_social_left li:hover .et_social_icon:before {
	margin-left: 40px;
	margin-top: 0;
	opacity: 0;
}

/*--------------------[SIMPLE]--------------------*/
.et_monarch .et_social_simple li a, .et_monarch .et_social_media_wrapper .et_social_top.et_social_simple li .et_social_share, .et_monarch .et_social_top.et_social_circle li a {
	padding: 0 !important;
}

.et_monarch .et_social_simple.et_social_top.et_social_withcounts li a, .et_monarch .et_social_simple.et_social_top.et_social_withnetworknames li a, .et_monarch .et_social_media_wrapper .et_social_simple.et_social_top.et_social_withnetworknames li .et_social_share, .et_monarch .et_social_media_wrapper .et_social_simple.et_social_top.et_social_withcounts li .et_social_share {
	padding: 0 10px 10px !important;
}

.et_monarch .et_social_simple.et_social_top.et_social_rectangle.et_social_withnetworknames li.et_social_all_button a.et_social_open_all .et_social_icon, .et_monarch .et_social_simple.et_social_top.et_social_rectangle.et_social_withcounts li.et_social_all_button a.et_social_open_all .et_social_icon, .et_monarch .et_social_simple.et_social_top.et_social_rounded.et_social_withnetworknames li.et_social_all_button a.et_social_open_all .et_social_icon, .et_monarch .et_social_simple.et_social_top.et_social_rounded.et_social_withcounts li.et_social_all_button a.et_social_open_all .et_social_icon {
	margin: -8px 0 -12px;
}

.et_monarch .et_social_simple.et_social_left .et_social_network_label div {
	margin-left: 0 !important;
}

.et_monarch .et_social_simple.et_social_left .et_social_network_label {
	padding-left: 0 !important;
}

.et_monarch .et_social_simple.et_social_top .et_social_icon {
	background-color: transparent;
}

.et_monarch .et_social_simple.et_social_top.et_social_withnetworknames .et_social_icon, .et_monarch .et_social_simple.et_social_top.et_social_withcounts .et_social_icon {
	margin-bottom: -10px;
}

.et_monarch .et_social_simple li .et_social_overlay {
	margin: 0 !important;
	display: none;
}

/*--------------------[BUILDER SUPPORT]--------------------*/
.et_pb_pagebuilder_layout .et_social_inline {
	display: none;
}

.et_pb_pagebuilder_layout .et_pb_section .et_social_inline {
	display: block;
}

/*------------------------------------------------*/

/*--------------------[SIDEBAR]-------------------*/

/*------------------------------------------------*/
.et_monarch .et_social_sidebar_networks {
	left: 0;
	position: fixed;
	top: 30%;
	z-index: 999999;
}

.et_monarch .et_social_sidebar_networks ul {
	margin: 0 !important;
	list-style: none !important;
	padding: 0 !important;
}

.et_monarch .et_social_sidebar_networks li {
	position: relative;
	width: 40px;
	overflow: hidden;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
}

.et_monarch .et_social_sidebar_withcounts li {
	width: 50px;
}

.et_monarch .et_social_sidebar_networks .et_social_count span {
	line-height: .9em;
	padding-top: 4px;
	font-weight: 700;
	font-size: 12px;
}

.et_monarch .et_social_sidebar_networks a {
	display: block;
	padding: 12px 0 12px;
	float: left;
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.et_monarch .et_social_sidebar_withcounts a {
	padding: 10px 0;
	display: block;
}

.et_monarch .et_social_sidebar_networks a.et_social_icon:before, .et_monarch .et_social_sidebar_networks a.et_social_icon:after {
	width: 100%;
	font-size: 16px;
	line-height: 40px;
	display: block;
	position: relative;
}

.et_monarch .et_social_icon:before, .et_monarch .et_social_icon:after {
	position: relative;
	width: 100%;
}

.et_monarch .et_social_sidebar_networks a.et_social_open_all {
	padding: 7px;
}

.et_monarch .et_social_sidebar_networks.et_social_circle a.et_social_open_all {
	padding: 12px 0 12px;
}

.et_monarch .et_social_sidebar_networks.et_social_circle.et_social_sidebar_withcounts a.et_social_open_all {
	padding-top: 17px;
}

/*------------------[TOTAL COUNT]-----------------*/
.et_monarch .et_social_sidebar_networks .et_social_totalcount {
	color: #444;
	text-align: center;
	margin-bottom: 4px;
}

.et_monarch .et_social_sidebar_networks.et_social_sidebar_nocounts .et_social_totalcount {
	width: 40px;
}

.et_monarch .et_social_sidebar_networks.et_social_sidebar_withcounts .et_social_totalcount, .et_monarch .et_social_sidebar_networks.et_social_sidebar_flip .et_social_totalcount {
	width: 50px;
}

.et_monarch .et_social_sidebar_networks .et_social_totalcount_count {
	display: block;
	font-size: 18px;
	font-weight: 700;
}

.et_monarch .et_social_sidebar_networks .et_social_totalcount_label {
	display: block;
	font-size: 10px;
}

/*------------------------------------------------*/

/*----------------[SIDEBAR STYLES]----------------*/

/*------------------------------------------------*/

/*--------------------[GENERAL]-------------------*/
.et_monarch .et_social_icon:after {
	display: none;
}

.et_monarch .et_social_circle .et_social_icon:before, .et_monarch .et_social_circle .et_social_icon:after {
	width: 100% !important;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}

.et_monarch .et_social_sidebar_nocounts .et_social_count {
	display: none;
}

.et_monarch .et_social_sidebar_networks_right {
	right: 0;
	left: auto;
}

.et_monarch .et_social_sidebar_networks_right li {
	float: right;
	clear: both;
}

.et_monarch .et_social_sidebar_networks_right span.et_social_hide_sidebar {
	float: right;
	margin: 8px 8px 0 0 !important;
	clear: both;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_withcounts span.et_social_hide_sidebar, .et_monarch .et_social_sidebar_networks_right.et_social_rectangle.et_social_sidebar_flip span.et_social_hide_sidebar, .et_monarch .et_social_sidebar_networks_right.et_social_rounded.et_social_sidebar_flip span.et_social_hide_sidebar {
	margin-right: 13px !important;
}

.et_monarch .et_social_sidebar_networks_right .et_social_totalcount {
	float: right;
}

.et_monarch .et_social_sidebar_networks_right.et_social_hidden_sidebar .et_social_icons_container, .et_monarch .et_social_sidebar_networks_right.et_social_hidden_sidebar .et_social_totalcount {
	margin-right: -50px !important;
}

.et_monarch .et_social_sidebar_networks_right span.et_social_hide_sidebar.et_social_hidden_sidebar, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_withcounts span.et_social_hide_sidebar.et_social_hidden_sidebar, .et_monarch .et_social_sidebar_networks_right.et_social_rectangle.et_social_sidebar_flip span.et_social_hide_sidebar.et_social_hidden_sidebar, .et_monarch .et_social_sidebar_networks_right.et_social_rounded.et_social_sidebar_flip span.et_social_hide_sidebar.et_social_hidden_sidebar {
	margin-right: 0 !important;
}

.et_monarch .et_social_sidebar_networks_right span.et_social_hide_sidebar:before {
	transform: rotate(90deg);
	right: -1px;
	left: auto;
}

.et_monarch .et_social_sidebar_networks_right span.et_social_hide_sidebar.et_social_hidden_sidebar:before {
	transform: rotate(-90deg);
	left: 0;
}

.et_monarch .et_social_sidebar_networks_right.et_social_circle span.et_social_hide_sidebar.et_social_hidden_sidebar {
	margin-right: -10px !important;
}

.et_monarch .et_social_sidebar_networks_right.et_social_circle.et_social_hidden_sidebar .et_social_icons_container, .et_monarch .et_social_sidebar_networks_right.et_social_circle.et_social_hidden_sidebar .et_social_totalcount {
	margin-right: -66px !important;
}

/*--------------------[FLIP]----------------------*/
.et_monarch .et_social_sidebar_flip li {
	border-left: 0 solid rgba(0, 0, 0, .4);
	width: 50px;
}

.et_monarch .et_social_sidebar_flip li:hover {
	width: 44px;
	border-left: 6px solid rgba(0, 0, 0, .3);
}

.et_monarch .et_social_sidebar_flip li:hover i {
	opacity: .8;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_flip li {
	border-right: 0 solid rgba(0, 0, 0, .4);
	border-left: none;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_flip li:hover {
	border-right: 6px solid rgba(0, 0, 0, .3);
}

/*-------------------[BORDER]---------------------*/
.et_monarch .et_social_sidebar_border li {
	border-left: 0 solid transparent;
}

.et_monarch .et_social_sidebar_border li:hover {
	border-left: 4px solid;
}

.et_monarch .et_social_sidebar_border a.et_social_icon:before {
	color: rgba(255, 255, 255, 1);
}

.et_monarch .et_social_sidebar_border .et_social_overlay {
	position: absolute;
	background-color: rgba(0, 0, 0, 0);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

.et_monarch .et_social_sidebar_border li:hover .et_social_overlay {
	background-color: rgba(0, 0, 0, .2);
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li {
	border-right: 0 solid transparent;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border li:hover {
	border-right: 4px solid;
	border-left: none;
}

/*--------------------[GROW]----------------------*/
.et_monarch .et_social_sidebar_grow li {
	left: 0;
}

.et_monarch .et_social_sidebar_grow li:hover {
	width: 50px;
}

.et_monarch .et_social_sidebar_grow.et_social_sidebar_withcounts li:hover {
	width: 62px;
}

.et_monarch .et_social_sidebar_grow a.et_social_icon:before {
	color: #fff;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_grow li {
	right: 0;
}

/*--------------------[SLIDE]---------------------*/
.et_monarch .et_social_sidebar_slide li {
	border-left: 0 solid;
}

.et_monarch .et_social_sidebar_slide i.et_social_icon:before {
	opacity: 1;
	left: 0;
	z-index: 2;
	position: relative;
}

.et_monarch .et_social_sidebar_slide li:hover i.et_social_icon:before {
	opacity: 0;
	left: 100%;
	background-color: rgba(0, 0, 0, .25);
}

.et_monarch .et_social_sidebar_slide i.et_social_icon:after {
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.et_monarch .et_social_sidebar_slide li:hover i.et_social_icon:after {
	opacity: 1;
	right: 0;
}

.et_monarch .et_social_sidebar_slide .et_social_icon:after {
	display: inherit;
}

/*------------------------------------------------*/

/*----------------[SIDEBAR SHAPES]----------------*/

/*------------------------------------------------*/

/*--------------------[ROUNDED]-------------------*/
.et_monarch .et_social_rounded.et_social_sidebar_networks li:first-child {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
}

.et_monarch .et_social_rounded.et_social_sidebar_networks li:last-child {
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
}

.et_monarch .et_social_sidebar_grow.et_social_rounded li:hover, .et_monarch .et_social_sidebar_networks.et_social_rounded.et_social_space li {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
}

.et_monarch .et_social_sidebar_networks_mobile.et_social_rounded li {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.et_monarch .et_social_sidebar_networks_right.et_social_rounded.et_social_sidebar_networks li {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.et_monarch .et_social_sidebar_networks_right.et_social_rounded.et_social_sidebar_networks li:first-child {
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
}

.et_monarch .et_social_sidebar_networks_right.et_social_rounded.et_social_sidebar_networks li:last-child {
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-left-radius: 4px;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_grow.et_social_rounded li:hover, .et_monarch .et_social_sidebar_networks_right.et_social_sidebar_networks.et_social_rounded.et_social_space li {
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-left-radius: 4px;
}

/*---------------------[CIRCLE]-------------------*/
.et_monarch .et_social_circle.et_social_sidebar_networks {
	left: 10px;
}

.et_monarch .et_social_circle li {
	width: 40px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	margin-bottom: 10px;
	left: 0;
}

.et_monarch .et_social_circle.et_social_sidebar_withcounts li {
	width: 50px;
	height: 50px;
}

.et_monarch .et_social_sidebar_border.et_social_circle li {
	border: 3px solid transparent;
}

.et_monarch .et_social_sidebar_border.et_social_circle a.et_social_icon:hover:before {
	background-color: rgba(0, 0, 0, 0);
}

.et_monarch .et_social_sidebar_grow.et_social_circle li:hover {
	width: 40px;
	left: 8px;
}

.et_monarch .et_social_sidebar_grow.et_social_circle.et_social_sidebar_withcounts li:hover {
	width: 50px;
}

.et_monarch .et_social_sidebar_flip.et_social_circle li:hover {
	width: 36px;
	left: 2px;
}

.et_monarch .et_social_sidebar_flip.et_social_circle.et_social_sidebar_withcounts li:hover {
	width: 44px;
	left: 3px;
}

.et_monarch .et_social_sidebar_border.et_social_circle li {
	width: 46px;
	height: 46px;
}

.et_monarch .et_social_sidebar_border.et_social_circle.et_social_sidebar_withcounts li {
	width: 56px;
	height: 56px;
}

.et_monarch .et_social_sidebar_slide.et_social_circle span.et_social_icon:after {
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}

.et_monarch .et_social_simple.et_social_top.et_social_circle .et_social_icon {
	margin-bottom: 0;
}

.et_monarch .et_social_sidebar_networks_right.et_social_circle.et_social_sidebar_networks {
	right: 10px;
	left: auto;
}

.et_monarch .et_social_sidebar_networks_right.et_social_circle li {
	right: 0;
	left: auto;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_border.et_social_circle li {
	border: 3px solid transparent;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_grow.et_social_circle li:hover {
	right: 8px;
	left: auto;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_flip.et_social_circle li:hover {
	right: 2px;
	left: auto;
}

.et_monarch .et_social_sidebar_networks_right.et_social_sidebar_flip.et_social_circle.et_social_sidebar_withcounts li:hover {
	width: 44px;
	right: 3px;
	left: auto;
}

/*--------------------[SPACED]--------------------*/
.et_monarch .et_social_space li {
	margin-bottom: 4px;
}

.et_monarch .et_social_space.et_social_circle li {
	margin-bottom: 14px;
}

/*------------------------------------------------*/

/*-------------------[SIDEBAR HIDE]---------------*/

/*------------------------------------------------*/

/*-----------------[HIDE BUTTON OPEN]-------------*/
.et_monarch  span.et_social_hide_sidebar {
	background: rgba(0, 0, 0, .3);
	height: 24px;
	width: 24px;
	display: block;
	cursor: pointer;
	margin: 8px 0 0 8px !important;
	border-radius: 12px;
	opacity: 0;
}

.et_monarch .et_social_sidebar_networks:hover .et_social_hide_sidebar {
	opacity: 1;
}

.et_monarch .et_social_sidebar_withcounts span.et_social_hide_sidebar, .et_monarch .et_social_rectangle.et_social_sidebar_flip span.et_social_hide_sidebar, .et_monarch .et_social_rounded.et_social_sidebar_flip span.et_social_hide_sidebar {
	margin-left: 13px !important;
}

.et_monarch .et_social_circle.et_social_sidebar_border span.et_social_hide_sidebar {
	margin-left: 11px !important;
}

.et_monarch .et_social_circle.et_social_sidebar_withcounts.et_social_sidebar_border span.et_social_hide_sidebar {
	margin-left: 16px !important;
}

/*----------------[HIDE BUTTON CLOSED]------------*/
.et_monarch .et_social_sidebar_networks span.et_social_hide_sidebar.et_social_hidden_sidebar {
	margin-left: 0 !important;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-border-top-right-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-moz-border-radius-topright: 6px;
	-moz-border-radius-bottomright: 6px;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

.et_monarch .et_social_sidebar_networks.et_social_circle span.et_social_hide_sidebar.et_social_hidden_sidebar {
	margin-left: -10px !important;
}

.et_monarch .et_social_sidebar_networks_right span.et_social_hide_sidebar.et_social_hidden_sidebar {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}

/*-----------------[HIDE BUTTON ICON]-------------*/
.et_monarch span.et_social_hide_sidebar:before {
	content: "";
	transform: rotate(-90deg);
	font-size: 20px !important;
	line-height: 24px !important;
	left: -1px;
}

.et_monarch span.et_social_hide_sidebar.et_social_hidden_sidebar:before {
	transform: rotate(90deg);
}

/*------------------[SIDEBAR HIDDEN]--------------*/
.et_monarch .et_social_sidebar_networks.et_social_hidden_sidebar .et_social_icons_container, .et_monarch .et_social_sidebar_networks.et_social_hidden_sidebar .et_social_totalcount {
	margin-left: -50px !important;
}

.et_monarch .et_social_sidebar_networks.et_social_circle.et_social_hidden_sidebar .et_social_icons_container, .et_monarch .et_social_sidebar_networks.et_social_circle.et_social_hidden_sidebar .et_social_totalcount {
	margin-left: -66px !important;
}

.et_monarch .et_social_sidebar_networks.et_social_visible_sidebar .et_social_icons_container, .et_monarch .et_social_sidebar_networks.et_social_visible_sidebar .et_social_totalcount {
	margin-left: 0px !important;
}

.et_monarch .et_social_sidebar_networks.et_social_hidden_sidebar .et_social_icons_container, .et_monarch .et_social_sidebar_networks.et_social_hidden_sidebar .et_social_totalcount, .et_monarch .et_social_sidebar_networks.et_social_visible_sidebar .et_social_icons_container, .et_monarch .et_social_sidebar_networks.et_social_visible_sidebar .et_social_totalcount, .et_monarch span.et_social_hide_sidebar:before, .et_monarch span.et_social_hide_sidebar.et_social_hidden_sidebar, .et_monarch .et_social_hidden_sidebar {
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
}

.et_monarch span.et_social_hide_sidebar.et_social_hidden_sidebar {
	opacity: 1;
}

/*------------------------------------------------*/

/*-------------[SHAPES & ORIENTATION]-------------*/

/*------------------------------------------------*/
.et_monarch .et_social_top div, .et_monarch .et_social_top ul, .et_monarch .et_social_top li, .et_monarch .et_social_top span, .et_monarch .et_social_top a, .et_monarch .et_social_top .et_social_icons_container {
	text-align: center;
}

.et_monarch .et_social_top li a, .et_monarch .et_social_media_wrapper .et_social_top li .et_social_share {
	padding: 10px;
}

.et_monarch .et_social_top .et_social_network_label div {
	margin-top: 8px;
	line-height: 1em;
}

.et_monarch .et_social_top span {
	display: block;
	margin: 0;
}

.et_monarch .et_social_top .et_social_count span:first-of-type {
	margin-bottom: 2px;
}

.et_monarch .et_social_top span.et_social_overlay {
	background-color: rgba(0, 0, 0, 0);
}

.et_monarch .et_social_top .et_social_icon {
	background-color: rgba(0, 0, 0, .1);
}

.et_monarch .et_social_top .et_social_icon.et_social_icon_all_button {
	background-color: transparent;
}

.et_monarch .et_social_slide.et_social_rectangle.et_social_top li.et_social_all_button:hover .et_social_icon, .et_monarch .et_social_slide.et_social_rounded.et_social_top li.et_social_all_button:hover .et_social_icon {
	background-color: transparent;
}

.et_monarch .et_social_left {
	text-align: left;
}

.et_monarch .et_social_left .et_social_network_label {
	margin-left: 40px;
	padding: 7px 14px 10px 10px;
}

.et_monarch .et_social_left .et_social_network_label div {
	margin: 6px 4px 0 4px;
}

.et_monarch .et_social_left .et_social_count span {
	display: inline-block;
}

.et_monarch .et_social_left .et_social_overlay {
	background-color: rgba(0, 0, 0, .1);
	margin: 0 0 0 40px;
}

.et_monarch .et_social_left.et_social_circle .et_social_network_label, .et_monarch .et_social_left.et_social_circle li:hover .et_social_network_label {
	margin-left: 46px !important;
	padding: 6px 0 0 0;
	padding-right: 0 !important;
}

.et_monarch .et_social_left .et_social_icon {
	float: left;
}

.et_monarch .et_social_networks.et_social_circle li {
	background-color: transparent !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.et_monarch .et_social_rounded.et_social_networks li, .et_monarch .et_social_rounded.et_social_nospace.et_social_networks .et_social_icons_container {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
}

.et_monarch .et_social_rounded.et_social_nospace.et_social_networks li {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.et_monarch .et_social_rounded.et_social_nospace.et_social_networks li:last-child {
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
}

.et_monarch .et_social_circle .et_social_overlay {
	display: none;
}

/*------------------------------------------------*/

/*-------------------[COLUMNS]--------------------*/

/*------------------------------------------------*/
.et_monarch .et_social_1col li {
	width: 100%;
}

.et_monarch .et_social_2col li {
	width: 49%;
}

.et_monarch .et_social_3col li {
	width: 32%;
}

.et_monarch .et_social_4col li {
	width: 23.5%;
}

.et_monarch .et_social_5col li {
	width: 18.4%;
}

.et_monarch .et_social_6col li {
	width: 15%;
}

.et_monarch .et_social_autowidth li {
	width: auto;
	margin: 0 2% 2% 0 !important;
}

.et_monarch .et_social_1col li:first-child, .et_monarch .et_social_2col li:nth-child(-n+2), .et_monarch .et_social_3col li:nth-child(-n+3), .et_monarch .et_social_4col li:nth-child(-n+4), .et_monarch .et_social_5col li:nth-child(-n+5), .et_monarch .et_social_6col li:nth-child(-n+6) {
	margin-top: 0;
}

.et_monarch .et_social_1col li, .et_monarch .et_social_2col li:nth-child(2n+1), .et_monarch .et_social_3col li:nth-child(3n+1), .et_monarch .et_social_4col li:nth-child(4n+1), .et_monarch .et_social_5col li:nth-child(5n+1), .et_monarch .et_social_6col li:nth-child(6n+1), .et_monarch .et_social_autowidth li:first-child {
	margin-left: 0;
	clear: both;
}

.et_monarch .et_social_2col.et_social_nospace li {
	width: 50%;
}

.et_monarch .et_social_3col.et_social_nospace li {
	width: 33.33%;
}

.et_monarch .et_social_4col.et_social_nospace li {
	width: 25%;
}

.et_monarch .et_social_5col.et_social_nospace li {
	width: 20%;
}

.et_monarch .et_social_6col.et_social_nospace li {
	width: 16.66%;
}

.et_monarch .et_social_popup {
	display: none;
}

.et_monarch .et_social_popup.et_social_visible {
	display: block;
}

.et_monarch .et_social_visible {
	z-index: 999999;
}

/*------------------------------------------------*/

/*----------------[MEDIA WRAPPER]-----------------*/

/*------------------------------------------------*/
.et_social_media_wrapper {
	position: relative;
	overflow: hidden;
}

.et_social_media_wrapper .et_social_networks {
	position: absolute;
	left: 0;
	top: 0;
}

.et_monarch .et_social_media_wrapper .et_social_media {
	overflow: auto;
	width: 90%;
	height: inherit;
	max-height: 90%;
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 0;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
}

.et_monarch .et_pb_gallery_grid .et_social_media_wrapper .et_social_media {
	z-index: 99;
}

.et_monarch .et_social_media_wrapper:hover .et_social_media {
	opacity: 1;
}

.et_monarch .et_social_media_wrapper .et_social_share {
	cursor: pointer;
}

.et_monarch .et_social_media_wrapper .et_social_left .et_social_share {
	display: inline-block;
	width: 100%;
}

.et_monarch .et_social_icons_container a, a.et_social_icon_cancel {
	text-decoration: none !important;
}

/*------------------------------------------------*/

/*------------------[MOBILE STYLES]---------------*/

/*------------------------------------------------*/
.et_monarch .et_social_mobile {
	position: fixed;
	bottom: 0;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	z-index: 999999;
	display: none;
	max-height: 100%;
}

.et_monarch .et_social_mobile .et_social_networks {
	position: relative;
	width: 100%;
	overflow: auto;
	padding: 20px 20px 20px;
	background-color: #fff;
	line-height: 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: -10px;
}

.et_monarch .et_social_mobile .et_social_networks li {
	width: 23.5%;
	margin: 0 2% 2% 0;
	float: left;
	text-align: center;
}

.et_monarch .et_social_mobile .et_social_networks li:nth-child(4n) {
	width: 23.5%;
	margin-right: 0;
}

.et_monarch .et_social_mobile .et_social_networks.et_social_circle li {
	margin-right: 2%;
}

.et_monarch .et_social_mobile .et_social_networks.et_social_circle li:last-child {
	margin-right: 0;
}

.et_monarch .et_social_mobile .et_social_networks li a {
	padding: 10px;
}

.et_monarch .et_social_mobile .et_social_networks li a i.et_social_icon {
	display: inline-block;
}

.et_monarch .et_social_mobile .et_social_networks li a span.et_social_sidebar_count {
	font-size: 16px;
	font-weight: bold;
	display: inline-block;
	top: -2px;
	margin-left: 8px;
}

.et_monarch .et_social_mobile .et_social_networks.et_social_circle li a span.et_social_sidebar_count {
	font-size: 12px;
	display: block;
	top: 0;
	margin-left: 0;
}

.et_monarch .et_social_mobile_button:before, .et_monarch .et_social_close:after, .et_monarch .et_social_heading:after {
	font-family: "etmonarch";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 16px;
}

.et_monarch .et_social_heading {
	text-align: center;
	padding: 10px 0;
	color: white;
	cursor: pointer;
	height: 20px;
	line-height: 19px;
	font-size: 14px;
}

.et_monarch .et_social_heading:after {
	content: "";
	color: #ccc;
	display: inline-block;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	font-size: 32px;
	top: 10px;
	position: absolute;
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.et_monarch .et_social_mobile_button {
	position: fixed;
	bottom: 0;
	margin-left: -45px;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	display: none;
}

.et_monarch .et_social_mobile_button.et_social_active_button {
	margin-left: 0;
	z-index: 999999;
}

.et_monarch .et_social_mobile_button:before {
	content: "";
	display: inline-block;
	padding: 10px 12px;
	background: rgba(0, 0, 0, .5);
	color: #ddd;
	height: 20px;
	line-height: 20px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
}

.et_monarch .et_social_mobile.et_social_opened .et_social_heading:after {
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.et_monarch .et_social_mobile.et_social_closed .et_social_heading:after {
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.et_monarch .et_social_mobile .et_social_networks {
	display: none;
}

.et_monarch .et_social_mobile.et_social_opened {
	-webkit-animation: et_social_slideTop 1s 1 ease;
	-moz-animation: et_social_slideTop 1s 1 ease;
	-o-animation: et_social_slideTop 1s 1 ease;
	animation: et_social_slideTop 1s 1 ease;
}

.et_monarch .et_social_mobile_overlay.et_social_visible_overlay {
	-webkit-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	-moz-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	-o-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch span.et_social_close, .et_monarch .et_social_mobile_button {
	cursor: pointer;
}

.et_monarch span.et_social_close {
	position: absolute;
	right: 10px;
	top: 0;
	line-height: 40px;
}

.et_monarch span.et_social_close:after {
	content: "";
	color: #ccc;
}

.et_monarch .et_social_mobile_overlay {
	background: rgba(0, 0, 0, .7);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	z-index: 99999;
}

.et_monarch .et_social_inline_bottom {
	margin-top: 30px;
}

/*------------------------------------------------*/

/*----------------[PINTEREST MODAL]---------------*/

/*------------------------------------------------*/
.et_monarch .et_social_pin_images_outer {
	display: none;
	z-index: 9999999999;
	position: absolute;
}

.et_monarch .et_social_pin_images_outer:after {
	content: "";
	background-color: rgba(0, 0, 0, .6);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999999;
}

.et_monarch .et_social_pinterest_window {
	background: white;
	position: fixed;
	top: 20%;
	left: 50%;
	padding: 20px;
	width: 500px;
	height: 400px;
	z-index: 9999999;
	margin-left: -250px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

.et_monarch .et_social_pinterest_window span.et_social_close {
	cursor: pointer;
}

.et_monarch .et_social_pin_images {
	overflow: auto;
	max-height: 370px;
	z-index: 999;
	position: relative;
}

.et_monarch .et_social_pin_image {
	width: 30%;
	float: left;
	margin-right: 10px;
	display: block;
	position: relative;
	height: 90px;
	overflow: hidden;
	padding: 10px 2px;
}

.et_monarch .et_social_pin_image img {
	max-width: 100%;
	height: auto;
}

.et_monarch .et_social_pin_image .et_social_pin_overlay {
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	opacity: 0;
	background: rgba(174, 24, 26, .4);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.et_monarch .et_social_pin_image .et_social_pin_overlay:before {
	content: "";
	top: 40px;
	left: 0;
	color: white;
	font-size: 30px;
	position: absolute;
}

.et_monarch .et_social_pin_image a:hover .et_social_pin_overlay {
	opacity: 1;
}

.et_monarch .et_social_pin_image .et_social_pin_overlay {
	min-height: 90px;
}

.et_monarch .et_social_pin_image a {
	overflow: visible !important;
}

.et_monarch .et_social_pin_image:nth-child(3n) {
	margin-right: 0;
}

/*------------------------------------------------*/

/*----------------[DIVI THEME SUPPORT]------------*/

/*------------------------------------------------*/
.et_monarch .et_pb_pagebuilder_layout .et_social_inline {
	display: none;
}

.et_monarch .et_pb_section .et_social_inline {
	display: block;
}

.et_monarch .et_pb_section .et_social_inline_top, .et_monarch .et_pb_section .et_social_inline_bottom {
	margin-top: 0;
	margin-bottom: 30px;
}

/*------------------------------------------------*/

/*----------------[RESPONSIVE STYLES]-------------*/

/*------------------------------------------------*/
@media only screen and ( min-width: 1025px ) {
	.et_monarch .et_social_mobile_overlay, .et_monarch .et_social_mobile {
		display: none !important;
	}
}

@media only screen and ( max-width: 1024px ) {
	.et_monarch .et_social_mobile_off {
		display: none !important;
	}
	
	.et_monarch .et_social_mobile {
		display: block;
	}
	
	.et_monarch .et_social_mobile .et_social_networks li:nth-child(4n) {
		margin-right: 0 !important;
	}
	
	.et_monarch .et_social_sidebar_networks {
		display: none;
	}
	
	.et_monarch .et_social_mobile_button {
		display: block;
	}
	
	.et_monarch .et_social_popup_content {
		margin-left: -42%;
		box-sizing: border-box;
		max-width: none;
	}
	
	.et_monarch .et_social_flyin.et_social_mobile_on.et_social_visible {
		width: 100%;
		width: 84%;
		padding: 25px 20px;
		z-index: 9999999;
		box-sizing: border-box;
		left: 50%;
		margin-left: -42%;
	}
	
	.et_monarch .et_social_flyin div.et_social_network_label, .et_monarch .et_social_mobile div.et_social_network_label {
		text-align: left;
	}
	
	.et_monarch .et_social_flyin_bottom_left, .et_monarch .et_social_flyin_bottom_right {
		-webkit-border-top-left-radius: 3px;
		-webkit-border-top-right-radius: 3px;
		-moz-border-radius-topleft: 3px;
		-moz-border-radius-topright: 3px;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
	}
}

@media only screen and ( min-width: 768px ) {
	.et_monarch .et_social_autowidth.et_social_nospace.et_social_rounded .et_social_icons_container {
		width: auto;
		float: left;
	}
}

@media only screen and ( max-width: 767px ) {
	.et_monarch .et_social_networks li, .et_monarch .et_social_mobile .et_social_networks li {
		margin: 2% 0 0 2% !important;
		width: 49% !important;
		clear: none !important;
	}
	
	.et_monarch .et_social_networks li:nth-child(2n+1), .et_monarch .et_social_mobile .et_social_networks li:nth-child(2n+1) {
		margin-left: 0 !important;
		clear: both !important;
	}
	
	.et_monarch .et_social_networks li:nth-child(-n+2), .et_monarch .et_social_mobile .et_social_networks li:nth-child(-n+2) {
		margin-top: 0 !important;
	}
	
	.et_monarch .et_social_networks.et_social_nospace li {
		width: 50% !important;
	}
	
	.et_monarch .et_social_media .et_social_networks li {
		width: auto !important;
		clear: none !important;
		margin: 0 2% 2% 0 !important;
		overflow: hidden;
	}
	
	.et_monarch .et_social_media .et_social_networks.et_social_nospace li {
		margin: 0 !important;
	}
	
	.et_monarch .et_social_media .et_social_nospace.et_social_rounded .et_social_icons_container {
		width: auto;
		float: left;
	}
	
	.et_monarch .et_social_media .et_social_networks li .et_social_network_label {
		display: none;
	}
	
	.et_monarch .et_social_pinterest_window {
		height: 80%;
		width: 80%;
		top: 10px;
		margin-left: 0px;
		z-index: 99999999;
		left: 6%;
	}
	
	.et_monarch .et_social_pin_images {
		max-height: 90%;
	}
	
	.et_monarch .et_social_autowidth.et_social_networks li:nth-child(n) {
		width: auto !important;
		margin: 0 2% 2% 0 !important;
		clear: none !important;
	}
	
	.et_monarch .et_social_autowidth.et_social_nospace li:nth-child(n) {
		margin: 0 !important;
	}
	
	.et_monarch .et_social_autowidth.et_social_nospace.et_social_rounded .et_social_icons_container {
		width: auto;
		float: left;
	}
}

@media only screen and ( max-width: 479px ) {
	.et_monarch .et_social_networks li, .et_monarch .et_social_mobile .et_social_networks li {
		width: 100% !important;
		margin-left: 0 !important;
		clear: both !important;
	}
	
	.et_monarch .et_social_networks li:first-child, .et_monarch .et_social_mobile .et_social_networks li:first-child {
		margin-top: 0 !important;
	}
	
	.et_monarch .et_social_networks li:nth-child(n+2), .et_monarch .et_social_mobile .et_social_networks li:nth-child(n+2) {
		margin: 2% 0 0 0 !important;
	}
	
	.et_monarch .et_social_networks.et_social_nospace li {
		margin: 0 !important;
		width: 100% !important;
	}
	
	.et_monarch .et_social_media .et_social_networks li {
		width: auto !important;
		clear: none !important;
		margin: 0 2% 2% 0 !important;
	}
	
	.et_monarch .et_social_media .et_social_networks.et_social_nospace li {
		margin: 0 !important;
	}
	
	.et_monarch .et_social_media .et_social_networks li .et_social_network_label {
		display: none;
	}
	
	.et_monarch .et_social_pin_image {
		width: 250px;
		height: 140px;
		margin: 0 auto !important;
		float: none;
	}
	
	.et_monarch .et_social_autowidth.et_social_networks li:nth-child(n) {
		width: auto !important;
		margin: 0 2% 2% 0 !important;
		clear: none !important;
	}
	
	.et_monarch .et_social_autowidth.et_social_nospace li:nth-child(n) {
		margin: 0 !important;
	}
	
	.et_monarch .et_social_autowidth.et_social_nospace.et_social_rounded .et_social_icons_container {
		width: auto;
		float: left;
	}
}

/*------------------------------------------------*/

/*----------------[Intro Animation]---------------*/

/*------------------------------------------------*/
@-webkit-keyframes et_social_fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@-moz-keyframes et_social_fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@-o-keyframes et_social_fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes et_social_fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes et_social_fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

@-moz-keyframes et_social_fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

@-o-keyframes et_social_fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

@keyframes et_social_fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes et_social_fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-30%);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes et_social_fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(-30%);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes et_social_fadeInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(-30%);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes et_social_fadeInRight {
	from {
		opacity: 0;
		transform: translateX(-30%);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes et_social_fadeInBottom {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-30%);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes et_social_fadeInBottom {
	0% {
		opacity: 0;
		-moz-transform: translateY(-30%);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes et_social_fadeInBottom {
	0% {
		opacity: 0;
		-o-transform: translateY(-30%);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes et_social_fadeInBottom {
	0% {
		opacity: 0;
		transform: translateY(-30%);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes et_social_fadeInTop {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30%);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes et_social_fadeInTop {
	0% {
		opacity: 0;
		-moz-transform: translateY(30%);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes et_social_fadeInTop {
	0% {
		opacity: 0;
		-o-transform: translateY(30%);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes et_social_fadeInTop {
	0% {
		opacity: 0;
		transform: translateY(30%);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes et_social_slideTop {
	0% {
		-webkit-transform: translateY(0);
	}
	
	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes et_social_slideTop {
	0% {
		-moz-transform: translateY(0);
	}
	
	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes et_social_slideTop {
	0% {
		-o-transform: translateY(0);
	}
	
	100% {
		-o-transform: translateY(0);
	}
}

@keyframes et_social_slideTop {
	0% {
		transform: translateY(0);
	}
	
	100% {
		transform: translateY(0);
	}
}

/*! The following animations courtesy of Animate.css - http://daneden.me/animate Licensed under the MIT license - http://opensource.org/licenses/MIT Copyright (c) 2014 Daniel Eden */
@-webkit-keyframes et_social_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 et_social_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);
	}
}

@-webkit-keyframes et_social_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 et_social_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);
	}
}

@-webkit-keyframes et_social_bounce {
	0%, 20%, 53%, 80%, 100% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		-webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		-webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}

@keyframes et_social_bounce {
	0%, 20%, 53%, 80%, 100% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		-webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		-webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}

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

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

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

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

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

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

.et_monarch .et_social_lightspeedin.et_social_animated, .et_monarch .et_social_animated .et_social_lightspeedin {
	opacity: 1;
	-webkit-animation: et_social_lightSpeedIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_lightSpeedIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

.et_monarch .et_social_zoomin.et_social_animated, .et_monarch .et_social_animated .et_social_zoomin {
	opacity: 1;
	-webkit-animation: et_social_zoomIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_zoomIn 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_flipinx.et_social_animated, .et_monarch .et_social_animated .et_social_flipinx {
	opacity: 1;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation: et_social_flipInX 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_flipInX 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_bounce.et_social_animated, .et_monarch .et_social_animated .et_social_bounce {
	opacity: 1;
	-webkit-animation: et_social_bounce 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_bounce 1s 1 cubic-bezier(.77, 0, .175, 1);
	-webkit-transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom;
}

.et_monarch .et_social_swing.et_social_animated, .et_monarch .et_social_animated .et_social_swing {
	opacity: 1;
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation: et_social_swing 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_swing 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_tada.et_social_animated, .et_monarch .et_social_animated .et_social_tada {
	opacity: 1;
	-webkit-animation: et_social_tada 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_tada 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_fadein.et_social_animated, .et_monarch .et_social_animated .et_social_fadein {
	opacity: 1;
	-webkit-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	-moz-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	-o-animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_fadeIn 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_slideright.et_social_animated, .et_monarch .et_social_animated .et_social_slideright {
	opacity: 1;
	-webkit-animation: et_social_fadeInRight 1s 1 cubic-bezier(.77, 0, .175, 1);
	-moz-animation: et_social_fadeInRight 1s 1s cubic-bezier(.77, 0, .175, 1);
	-o-animation: et_social_fadeInRight 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_fadeInRight 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_slidedown.et_social_animated, .et_monarch .et_social_animated .et_social_slidedown {
	opacity: 1;
	-webkit-animation: et_social_fadeInBottom 1s 1 cubic-bezier(.77, 0, .175, 1);
	-moz-animation: et_social_fadeInBottom 1s 1 cubic-bezier(.77, 0, .175, 1);
	-o-animation: et_social_fadeInBottom 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_fadeInBottom 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_slideup.et_social_animated, .et_monarch .et_social_animated .et_social_slideup {
	opacity: 1;
	-webkit-animation: et_social_fadeInTop 1s 1 cubic-bezier(.77, 0, .175, 1);
	-moz-animation: et_social_fadeInTop 1s 1 cubic-bezier(.77, 0, .175, 1);
	-o-animation: et_social_fadeInTop 1s 1 cubic-bezier(.77, 0, .175, 1);
	animation: et_social_fadeInTop 1s 1 cubic-bezier(.77, 0, .175, 1);
}

.et_monarch .et_social_no_animation.et_social_animated, .et_monarch .et_social_animated .et_social_no_animation {
	opacity: 1;
}

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.7
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
.chosen-container, .noUi-target, .noUi-target * {
	-webkit-user-select: none;
	-ms-user-select: none;
}

.chosen-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	-moz-user-select: none;
	user-select: none;
}

.chosen-container * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	z-index: 1010;
	width: 100%;
	border: 1px solid #aaa;
	border-top: 0;
	background: #fff;
	-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	clip: rect(0, 0, 0, 0);
	-webkit-clip-path: inset(100% 100%);
	clip-path: inset(100% 100%);
}

.chosen-container.chosen-with-drop .chosen-drop {
	clip: auto;
	-webkit-clip-path: none;
	clip-path: none;
}

.chosen-container a {
	cursor: pointer;
}

.chosen-container .chosen-single .group-name, .chosen-container .search-choice .group-name {
	margin-right: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 400;
	color: #999;
}

.chosen-container .chosen-single .group-name:after, .chosen-container .search-choice .group-name:after {
	content: ":";
	padding-left: 2px;
	vertical-align: top;
}

.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 0 0 8px;
	border: 1px solid #aaa;
	border-radius: 5px;
	background-color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
	background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
	box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
	color: #444;
	text-decoration: none;
	white-space: nowrap;
	line-height: 24px;
}

.chosen-container-single .chosen-default {
	color: #999;
}

.chosen-container-single .chosen-single span {
	display: block;
	overflow: hidden;
	margin-right: 26px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
	position: absolute;
	top: 6px;
	right: 26px;
	display: block;
	width: 12px;
	height: 12px;
	background: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/search-filter-pro/public/assets/css/chosen-sprite.png") -42px 1px no-repeat;
	font-size: 1px;
}

.chosen-container-single .chosen-single abbr.nitro-lazy {
	background: none !important;
}

.chosen-container-single .chosen-single abbr:hover, .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 18px;
	height: 100%;
}

.chosen-container-single .chosen-single div b {
	display: block;
	width: 100%;
	height: 100%;
	background: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/search-filter-pro/public/assets/css/chosen-sprite.png") 0 2px no-repeat;
}

.chosen-container-single .chosen-single div b.nitro-lazy {
	background: none !important;
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 3px 4px;
	white-space: nowrap;
}

.chosen-container-single .chosen-search input[type=text] {
	margin: 1px 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
	height: auto;
	outline: 0;
	border: 1px solid #aaa;
	background: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/search-filter-pro/public/assets/css/chosen-sprite.png") 100% -20px no-repeat;
	font-size: 1em;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0;
}

.chosen-container-single .chosen-search input[type=text].nitro-lazy {
	background: none !important;
}

.chosen-container-single .chosen-drop {
	margin-top: -1px;
	border-radius: 0 0 4px 4px;
	background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	-webkit-clip-path: inset(100% 100%);
	clip-path: inset(100% 100%);
}

.chosen-container .chosen-results {
	color: #444;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0 4px 4px 0;
	padding: 0 0 0 4px;
	max-height: 240px;
	-webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 5px 6px;
	list-style: none;
	line-height: 15px;
	word-wrap: break-word;
	-webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container .chosen-results li.highlighted {
	background-color: #3875d7;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
	background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
	color: #fff;
}

.chosen-container .chosen-results li.no-results {
	color: #777;
	display: list-item;
	background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: 700;
	cursor: default;
}

.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

.chosen-container-multi .chosen-choices {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0 5px;
	width: 100%;
	height: auto;
	border: 1px solid #aaa;
	background-color: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
	background-image: linear-gradient(#eee 1%, #fff 15%);
	cursor: text;
}

.chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
	margin: 1px 0;
	outline: 0;
	border: 0 !important;
	background: 0 0 !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	line-height: normal;
	border-radius: 0;
	width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
	position: relative;
	padding: 3px 20px 3px 5px;
	border: 1px solid #aaa;
	max-width: 100%;
	border-radius: 3px;
	background-color: #eee;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	background-size: 100% 19px;
	background-repeat: repeat-x;
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
	box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
	color: #333;
	line-height: 13px;
	cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
	word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	position: absolute;
	top: 4px;
	right: 3px;
	display: block;
	width: 12px;
	height: 12px;
	background: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/search-filter-pro/public/assets/css/chosen-sprite.png") -42px 1px no-repeat;
	font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close.nitro-lazy {
	background: none !important;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
	padding-right: 5px;
	border: 1px solid #ccc;
	background-color: #e4e4e4;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container-active .chosen-single {
	border: 1px solid #5897fb;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
	border: 1px solid #aaa;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
	background-image: linear-gradient(#eee 20%, #fff 80%);
	-webkit-box-shadow: 0 1px 0 #fff inset;
	box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
	border-left: none;
	background: 0 0;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
	border: 1px solid #5897fb;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
	color: #222 !important;
}

.chosen-disabled {
	opacity: .5 !important;
	cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close, .chosen-disabled .chosen-single {
	cursor: default;
}

.chosen-rtl {
	text-align: right;
}

.chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
	margin-right: 0;
	margin-left: 26px;
	direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px;
}

.chosen-rtl .chosen-single div {
	right: auto;
	left: 3px;
}

.chosen-rtl .chosen-single abbr {
	right: auto;
	left: 26px;
}

.chosen-rtl .chosen-choices li {
	float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
	direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
	margin: 3px 5px 3px 0;
	padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	right: auto;
	left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 4px 4px;
	padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
	padding-right: 15px;
	padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
	border-right: none;
}

.chosen-rtl .chosen-search input[type=text] {
	padding: 4px 5px 4px 20px;
	background: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/search-filter-pro/public/assets/css/chosen-sprite.png") -30px -20px no-repeat;
	direction: rtl;
}

.chosen-rtl .chosen-search input[type=text].nitro-lazy {
	background: none !important;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
	background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
	background-position: -12px 2px;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx) {
	.chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span, .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container-single .chosen-search input[type=text], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-rtl .chosen-search input[type=text] {
		background-image: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/search-filter-pro/public/assets/css/chosen-sprite@2x.png") !important;
		background-size: 52px 37px !important;
		background-repeat: no-repeat !important;
	}
	
	.chosen-container .chosen-results-scroll-down span.nitro-lazy, .chosen-container .chosen-results-scroll-up span.nitro-lazy, .chosen-container-multi .chosen-choices .search-choice .search-choice-close.nitro-lazy, .chosen-container-single .chosen-search input[type=text].nitro-lazy, .chosen-container-single .chosen-single abbr.nitro-lazy, .chosen-container-single .chosen-single div b.nitro-lazy, .chosen-rtl .chosen-search input[type=text].nitro-lazy {
		background-image: none !important;
	}
}

.select2-container {
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle;
}

.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;
	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: #fff;
	border: 1px solid #aaa;
	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;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
}

.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: #888 transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0;
	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;
	border-width: 0 4px 5px;
}

.select2-container--default .select2-selection--multiple {
	background-color: #fff;
	border: 1px solid #aaa;
	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__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
	margin-top: 5px;
	margin-right: 10px;
	padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	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: 700;
	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-search--inline, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
	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: 1px solid #000;
	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--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
	background: 0 0;
	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: #5897fb;
	color: #fff;
}

.select2-container--default .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}

.select2-container--classic .select2-selection--single {
	background-color: #f7f7f7;
	border: 1px solid #aaa;
	border-radius: 4px;
	outline: 0;
	background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
	background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
	background-image: linear-gradient(to bottom, #fff 50%, #eee 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 #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px;
}

.noUi-pips, .select2-container--classic .select2-selection--single .select2-selection__placeholder {
	color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
	margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
	background-color: #ddd;
	border: none;
	border-left: 1px solid #aaa;
	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, #eee 50%, #ccc 100%);
	background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
	background-image: linear-gradient(to bottom, #eee 50%, #ccc 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;
	border-style: solid;
	border-width: 5px 4px 0;
	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 #aaa;
	border-radius: 4px 0 0 4px;
	left: 1px;
	right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
	border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
	background: 0 0;
	border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888;
	border-width: 0 4px 5px;
}

.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, #fff 0, #eee 50%);
	background-image: -o-linear-gradient(top, #fff 0, #eee 50%);
	background-image: linear-gradient(to bottom, #fff 0, #eee 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, #eee 50%, #fff 100%);
	background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
	background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
	border: 1px solid #5897fb;
}

.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 #aaa;
	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: 700;
	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;
	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 #5897fb;
}

.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 #aaa;
	outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
	outline: 0;
	box-shadow: none;
}

.select2-container--classic .select2-dropdown {
	background-color: #fff;
	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: #fff;
}

.select2-container--classic .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
	border-color: #5897fb;
}

.searchandfilter-date-picker .ui-helper-hidden {
	display: none;
}

.searchandfilter-date-picker .ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.searchandfilter-date-picker .ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}

.searchandfilter-date-picker .ui-helper-clearfix:after, .searchandfilter-date-picker .ui-helper-clearfix:before {
	content: "";
	display: table;
	border-collapse: collapse;
}

.searchandfilter-date-picker .ui-helper-clearfix:after {
	clear: both;
}

.searchandfilter-date-picker .ui-helper-clearfix {
	min-height: 0;
}

.searchandfilter-date-picker .ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter: Alpha(Opacity=0);
}

.searchandfilter-date-picker .ui-front {
	z-index: 100;
}

.searchandfilter-date-picker .ui-state-disabled {
	cursor: default !important;
}

.searchandfilter-date-picker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.searchandfilter-date-picker .ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.searchandfilter-date-picker .ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-next, .searchandfilter-date-picker .ui-datepicker .ui-datepicker-prev {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-next-hover, .searchandfilter-date-picker .ui-datepicker .ui-datepicker-prev-hover {
	top: 1px;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-prev {
	left: 2px;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-next {
	right: 2px;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-next span, .searchandfilter-date-picker .ui-datepicker .ui-datepicker-prev span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
	display: inline-block;
}

.searchandfilter-date-picker .ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}

.searchandfilter-date-picker .ui-datepicker select.ui-datepicker-month, .searchandfilter-date-picker .ui-datepicker select.ui-datepicker-year {
	width: 49%;
}

.searchandfilter-date-picker .ui-icon {
	width: 16px;
	height: 16px;
	background-position: 16px 16px;
}

.searchandfilter-date-picker .ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}

.searchandfilter-date-picker .ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: 700;
	border: 0;
}

.searchandfilter-date-picker .ui-datepicker td {
	border: 0;
	padding: 1px;
}

.searchandfilter-date-picker .ui-datepicker td a, .searchandfilter-date-picker .ui-datepicker td span {
	display: block;
	text-align: center;
	text-decoration: none;
}

.searchandfilter-date-picker .ui-widget {
	font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
	font-size: 1.1em;
}

.ll-skin-melon .ui-datepicker {
	padding: 0;
}

.ll-skin-melon .ui-datepicker-header {
	border: none;
	background: 0 0;
	font-weight: 400;
	font-size: 15px;
}

.ll-skin-melon .ui-datepicker-header .ui-state-hover {
	background: 0 0;
	border-color: transparent;
	cursor: pointer;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-title {
	margin-top: .4em;
	margin-bottom: .3em;
	color: #e9f0f4;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-next, .ll-skin-melon .ui-datepicker .ui-datepicker-next-hover, .ll-skin-melon .ui-datepicker .ui-datepicker-prev, .ll-skin-melon .ui-datepicker .ui-datepicker-prev-hover {
	top: .9em;
	border: none;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-prev-hover {
	left: 2px;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-next-hover {
	right: 2px;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-next span, .ll-skin-melon .ui-datepicker .ui-datepicker-prev span {
	background-image: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/plugins/search-filter-pro/public/assets/img/ui-icons_ffffff_256x240.png");
	background-position: -32px 0;
	margin-top: 0;
	top: 0;
	font-weight: 400;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-next span.nitro-lazy, .ll-skin-melon .ui-datepicker .ui-datepicker-prev span.nitro-lazy {
	background-image: none !important;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-prev span {
	background-position: -96px 0;
}

.ll-skin-melon .ui-datepicker table {
	margin: 0;
}

.ll-skin-melon .ui-datepicker th {
	padding: 1em 0;
	color: #ccc;
	font-size: 13px;
	font-weight: 400;
	border: none;
	border-top: 1px solid #3a414d;
}

.ll-skin-melon .ui-state-disabled {
	opacity: 1;
}

.ll-skin-melon .ui-state-disabled .ui-state-default {
	color: #fba49e;
}

/*! nouislider - 11.1.0 - 2018-04-02 11:18:13 */
.noUi-target, .noUi-target * {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	-ms-touch-action: none;
	touch-action: none;
	-moz-user-select: none;
	user-select: none;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.noUi-target {
	position: relative;
	direction: ltr;
	background: #fafafa;
	border-radius: 4px;
	border: 1px solid #d3d3d3;
	box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.noUi-base, .noUi-connects {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.noUi-connects {
	overflow: hidden;
	z-index: 0;
	border-radius: 3px;
}

.noUi-handle, .noUi-tooltip {
	position: absolute;
	border: 1px solid #d9d9d9;
}

.noUi-connect, .noUi-origin {
	will-change: transform;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
	left: auto;
	right: 0;
}

.noUi-vertical .noUi-origin {
	width: 0;
}

.noUi-horizontal .noUi-origin {
	height: 0;
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
	-webkit-transition: transform .3s;
	transition: transform .3s;
}

.noUi-state-drag * {
	cursor: inherit !important;
}

.noUi-horizontal {
	height: 18px;
}

.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 28px;
	left: -17px;
	top: -6px;
}

.noUi-vertical {
	width: 18px;
}

.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	left: -6px;
	top: -17px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
	right: -17px;
	left: auto;
}

.noUi-connect {
	background: #3fb8af;
}

.noUi-draggable {
	cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
	cursor: ns-resize;
}

.noUi-handle {
	border-radius: 3px;
	background: #fff;
	cursor: default;
	box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noUi-active {
	box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

.noUi-handle:after, .noUi-handle:before {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #e8e7e6;
	left: 14px;
	top: 6px;
}

.noUi-handle:after {
	left: 17px;
}

.noUi-vertical .noUi-handle:after, .noUi-vertical .noUi-handle:before {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}

.noUi-vertical .noUi-handle:after {
	top: 17px;
}

[disabled] .noUi-connect {
	background: #b8b8b8;
}

[disabled] .noUi-handle, [disabled].noUi-handle, [disabled].noUi-target {
	cursor: not-allowed;
}

.noUi-pips, .noUi-pips * {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.noUi-pips {
	position: absolute;
}

.noUi-value {
	position: absolute;
	white-space: nowrap;
	text-align: center;
}

.noUi-value-sub {
	color: #ccc;
	font-size: 10px;
}

.noUi-marker {
	position: absolute;
	background: #ccc;
}

.noUi-marker-large, .noUi-marker-sub {
	background: #aaa;
}

.noUi-pips-horizontal {
	padding: 10px 0;
	height: 80px;
	top: 100%;
	left: 0;
	width: 100%;
}

.noUi-value-horizontal {
	-webkit-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
	-webkit-transform: translate(50%, 50%);
	transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
	height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
	height: 15px;
}

.noUi-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%;
}

.noUi-value-vertical {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%, 0);
	padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
	width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
	width: 15px;
}

.noUi-tooltip {
	display: block;
	border-radius: 3px;
	background: #fff;
	color: #000;
	padding: 5px;
	text-align: center;
	white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	left: 50%;
	bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	top: 50%;
	right: 120%;
}

.searchandfilter p {
	margin-top: 1em;
	display: block;
}

.searchandfilter ul {
	display: block;
	margin-top: 0;
	margin-bottom: 0;
}

.searchandfilter ul li {
	list-style: none;
	display: block;
	padding: 10px 0;
	margin: 0;
}

.searchandfilter ul li li {
	padding: 5px 0;
}

.searchandfilter ul li ul li ul {
	margin-left: 20px;
}

.searchandfilter label {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.searchandfilter>ul>li[data-sf-combobox="1"] label {
	display: block;
}

.searchandfilter li[data-sf-field-input-type=checkbox] label, .searchandfilter li[data-sf-field-input-type=radio] label, .searchandfilter li[data-sf-field-input-type=range-checkbox] label, .searchandfilter li[data-sf-field-input-type=range-radio] label {
	padding-left: 10px;
}

.searchandfilter .sf-date-prefix {
	padding-right: 5px;
	display: inline-block;
}

.searchandfilter .sf-count, .searchandfilter .sf-date-postfix {
	padding-left: 5px;
	display: inline-block;
}

.searchandfilter .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}

.searchandfilter h4 {
	margin: 0;
	padding: 5px 0 10px;
	font-size: 16px;
}

.searchandfilter .sf-range-max, .searchandfilter .sf-range-min {
	max-width: 80px;
}

.searchandfilter .sf-meta-range-radio-fromto .sf-range-max, .searchandfilter .sf-meta-range-radio-fromto .sf-range-min {
	display: inline-block;
	vertical-align: middle;
}

.searchandfilter .sf-meta-range-radio-fromto span.sf-range-values-seperator {
	vertical-align: middle;
	display: inline-block;
	margin: 0 15px;
}

.searchandfilter .datepicker {
	max-width: 170px;
}

.searchandfilter select.sf-input-select {
	min-width: 170px;
}

.searchandfilter select.sf-range-max.sf-input-select, .searchandfilter select.sf-range-min.sf-input-select {
	min-width: auto;
}

.searchandfilter ul>li>ul:not(.children) {
	margin-left: 0;
}

.searchandfilter .meta-slider {
	margin-top: 10px;
	margin-bottom: 10px;
	height: 15px;
	max-width: 220px;
}

.searchandfilter .noUi-connect {
	background-color: #526e91;
}

.searchandfilter.search-filter-disabled .noUi-connect {
	opacity: .7;
}

.searchandfilter .noUi-horizontal.noUi-extended {
	padding: 0 10px;
}

.searchandfilter .noUi-horizontal.noUi-extended .noUi-origin {
	right: -10px;
}

.searchandfilter .noUi-handle {
	border-color: #ccc;
}

.searchandfilter .noUi-horizontal .noUi-handle {
	width: 24px;
	height: 24px;
	top: -5px;
	border-radius: 20px;
	left: -12px;
}

.searchandfilter .noUi-horizontal .noUi-handle:after, .searchandfilter .noUi-horizontal .noUi-handle:before {
	height: 9px;
	top: 7px;
}

.searchandfilter .noUi-horizontal .noUi-handle:before {
	left: 9px;
}

.searchandfilter .noUi-horizontal .noUi-handle:after {
	left: 12px;
}

.search-filter-scroll-loading {
	display: block;
	margin: 20px 10px 10px;
	height: 30px;
	width: 30px;
	animation: search-filter-loader-rotate .7s infinite linear;
	border: 5px solid rgba(0, 0, 0, .15);
	border-right-color: rgba(0, 0, 0, .6);
	border-radius: 50%;
}

@keyframes search-filter-loader-rotate {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

.ll-skin-melon {
	font-size: 90%;
}

.ll-skin-melon .ui-datepicker td {
	background: #f7f7f7;
	border: none;
	padding: 0;
}

.ll-skin-melon .ui-datepicker th {
	border-color: #4d6077;
}

.ll-skin-melon .ui-widget {
	font-family: inherit;
	background: #526e91;
	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.searchandfilter.horizontal ul>li {
	display: inline-block;
	padding-right: 10px;
}

.searchandfilter.horizontal ul>li li {
	display: block;
}

.ll-skin-melon td .ui-state-default {
	background: 0 0;
	border: none;
	text-align: center;
	padding: .3em;
	margin: 0;
	font-weight: 400;
	color: #6c88ac;
	font-size: 14px;
}

.ll-skin-melon td .ui-state-active {
	background: #526e91;
	color: #fff;
}

.ll-skin-melon td .ui-state-hover {
	background: #c4d6ec;
}

.searchandfilter li.hide, .searchandfilter select option.hide {
	display: none;
}

.searchandfilter .disabled {
	opacity: .7;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
	height: auto;
	padding: 5px;
	color: #666;
	font-family: inherit;
}

.chosen-container {
	font-size: 14px;
}

.chosen-container-single .chosen-single {
	height: auto;
}

.chosen-container-multi .chosen-choices li.search-choice {
	margin: 3px 3px 3px 5px;
}

.search-filter-results .sf-active {
	font-weight: 700;
}

.search-filter-results .sf-disabled {
	opacity: .5;
}

.tax-product_brand .brand-description {
	overflow: hidden;
	zoom: 1;
}

.tax-product_brand .brand-description img.brand-thumbnail {
	width: 25%;
	float: right;
}

.tax-product_brand .brand-description .text {
	width: 72%;
	float: left;
}

.widget_brand_description img {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0 0 1em;
}

ul.brand-thumbnails {
	margin-left: 0;
	margin-bottom: 0;
	clear: both;
	list-style: none;
}

ul.brand-thumbnails:before {
	clear: both;
	content: "";
	display: table;
}

ul.brand-thumbnails:after {
	clear: both;
	content: "";
	display: table;
}

ul.brand-thumbnails li {
	float: left;
	margin: 0 3.8% 1em 0;
	padding: 0;
	position: relative;
	width: 22.05%;
}

ul.brand-thumbnails.fluid-columns li {
	width: auto;
}

ul.brand-thumbnails:not(.fluid-columns) li.first {
	clear: both;
}

ul.brand-thumbnails:not(.fluid-columns) li.last {
	margin-right: 0;
}

ul.brand-thumbnails.columns-1 li {
	width: 100%;
	margin-right: 0;
}

ul.brand-thumbnails.columns-2 li {
	width: 48%;
}

ul.brand-thumbnails.columns-3 li {
	width: 30.75%;
}

ul.brand-thumbnails.columns-5 li {
	width: 16.95%;
}

ul.brand-thumbnails.columns-6 li {
	width: 13.5%;
}

.brand-thumbnails li img {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
}

@media screen and (max-width:768px) {
	ul.brand-thumbnails:not(.fluid-columns) li {
		width: 48% !important;
	}
	
	ul.brand-thumbnails:not(.fluid-columns) li.first {
		clear: none;
	}
	
	ul.brand-thumbnails:not(.fluid-columns) li.last {
		margin-right: 3.8%;
	}
	
	ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(odd) {
		clear: both;
	}
	
	ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(even) {
		margin-right: 0;
	}
}

.brand-thumbnails-description li {
	text-align: center;
}

.brand-thumbnails-description li .term-thumbnail img {
	display: inline;
}

.brand-thumbnails-description li .term-description {
	margin-top: 1em;
	text-align: left;
}

#brands_a_z h3:target {
	text-decoration: underline;
}

ul.brands_index {
	list-style: none outside;
	overflow: hidden;
	zoom: 1;
}

ul.brands_index li {
	float: left;
	margin: 0 2px 2px 0;
}

ul.brands_index li a, ul.brands_index li span {
	border: 1px solid #ccc;
	padding: 6px;
	line-height: 1em;
	float: left;
	text-decoration: none;
}

ul.brands_index li span {
	border-color: #eee;
	color: #ddd;
}

ul.brands_index li a:hover {
	border-width: 2px;
	padding: 5px;
	text-decoration: none;
}

ul.brands_index li a.active {
	border-width: 2px;
	padding: 5px;
}

div#brands_a_z a.top {
	border: 1px solid #ccc;
	padding: 4px;
	line-height: 1em;
	float: right;
	text-decoration: none;
	font-size: .8em;
}

.avia-fold-unfold-section {
	position: relative;
	display: block;
	float: left;
	width: 100%;
}

.avia-fold-unfold-section.avia-fold-init {
	max-height: 80px;
	overflow: hidden;
	opacity: .3;
}

.avia-fold-grid-row-wrap.avia-fold-init:not(.avia-fold-init-done)+.av-layout-grid-container, .avia-fold-section-wrap.avia-fold-init:not(.avia-fold-init-done)+.avia-section, .avia-fold-textblock-wrap.avia-fold-init:not(.avia-fold-init-done) .avia_textblock {
	display: none;
}

.avia-fold-unfold-section.avia-fold-init-done {
	max-height: 500px;
	overflow: hidden;
	opacity: 1;
	transition: all 1s ease-in-out;
}

.avia-fold-unfold-section .av-fold-unfold-container {
	position: relative;
	clear: both;
	overflow: hidden;
	max-height: 80px;
	transition: all .7s ease-in-out;
}

.avia-fold-unfold-section .av-fold-unfold-container::after {
	opacity: 0;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
	z-index: -1;
	height: 100%;
	transition: all .7s ease-in-out;
}

.avia-fold-unfold-section .av-fold-unfold-container.folded::after {
	z-index: 500;
	opacity: 1;
}

.av-fold-unfold-container .av-fold-unfold-inner {
	display: block;
	position: relative;
	float: left;
	width: 100%;
}

.avia-fold-unfold-section .av-fold-button-wrapper {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.avia-fold-unfold-section.align-left .av-fold-button-wrapper.av-fold-btn-padding {
	padding-left: 30px;
}

.avia-fold-unfold-section.align-right .av-fold-button-wrapper.av-fold-btn-padding {
	padding-right: 30px;
}

.avia-fold-unfold-section .av-fold-button-container {
	position: relative;
	display: inline-block;
	margin-top: 15px;
	margin-bottom: 15px;
	float: left;
	z-index: 20;
	transition: all .7s ease-in-out;
}

.avia-fold-unfold-section.align-right .av-fold-button-container {
	float: right;
}

.avia-fold-unfold-section.align-center .av-fold-button-container {
	left: 50%;
	transform: translateX(-50%);
}

.avia-fold-unfold-section.fold-button .av-fold-button-container {
	padding: .5em .8em;
	border: 1px solid;
	border-radius: 7px;
}

#top .avia-fold-unfold-section :not(.avia-button-wrap) .av-fold-button-container {
	text-decoration: underline;
}

.avia-fold-unfold-section .av-fold-button-container:hover {
	opacity: .6;
	cursor: pointer;
}

.avia-fold-unfold-section .av-fold-unfold-container .avia_textblock {
	display: inline-block;
}

/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #000;
	opacity: .8;
}

.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;
	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%;
	width: auto;
	text-align: center;
	margin-top: -.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.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;
	box-shadow: none;
	touch-action: manipulation;
}

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: .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;
}

.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: .65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
	opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
	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 {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: .7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #fff;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #fff;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	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, .6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	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, .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, .6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		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, .6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(.75);
		transform: scale(.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-ready .mfp-figure {
	opacity: 0;
}

div .mfp-title {
	line-height: 1.4em;
	font-size: 13px;
}

.mfp-title a {
	text-decoration: underline;
	color: #fff;
}

.mfp-title a:hover {
	text-decoration: none;
	opacity: .8;
}

.mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
	opacity: 0;
	transition: all .3s ease-out;
	transform: scale(.95);
}

.mfp-zoom-in .mfp-preloader, .mfp-zoom-in.mfp-bg {
	opacity: 0;
	transition: all .3s ease-out;
}

.mfp-zoom-in.mfp-image-loaded .mfp-figure, .mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
	opacity: 1;
	transform: scale(1);
}

.mfp-zoom-in.mfp-ready .mfp-preloader, .mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: .8;
}

.mfp-zoom-in.mfp-removing .mfp-figure, .mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
	transform: scale(.95);
	opacity: 0;
}

.mfp-zoom-in.mfp-removing .mfp-preloader, .mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

div.avia-popup .mfp-iframe-scaler {
	overflow: visible;
}

div.avia-popup .mfp-zoom-out-cur {
	cursor: auto;
}

div.avia-popup .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: pointer;
}

div.avia-popup .mfp-close {
	width: 40px;
	height: 40px;
	right: -13px;
	text-align: center;
	border-radius: 100px;
	border: 2px solid transparent;
	line-height: 38px;
	padding: 0;
	top: -5px;
	transition: all .3s ease-out;
	font-family: Arial, Baskerville, monospace !important;
}

div.avia-popup .mfp-close:hover {
	border: 2px solid #fff;
	transform: scale(.8) rotateZ(90deg);
}

div.avia-popup .mfp-iframe-scaler .mfp-close {
	top: -43px;
}

div.avia-popup .mfp-figure:after {
	box-shadow: none;
	display: none;
}

div.avia-popup button.mfp-arrow:after, div.avia-popup button.mfp-arrow:before {
	border: none;
	margin: 0;
	display: none;
}

div.avia-popup button.mfp-arrow:before {
	opacity: 1;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 80px;
	line-height: 80px;
	margin-top: -40px;
	color: #fff;
	font-size: 50px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	transition: all .3s ease-out;
	transform: scale(1, 1);
}

div.avia-popup button.mfp-arrow:hover:before {
	transform: scale(.8, .8);
}

div.avia-popup button.mfp-arrow:before {
	content: "";
	font-family: entypo-fontello-enfold;
}

div.avia-popup button.mfp-arrow-left:before {
	content: "";
	font-family: entypo-fontello-enfold;
}

.mfp-img {
	animation: none !important;
}

@media (max-width:900px) {
	.mfp-arrow {
		text-shadow: 0 0 5px rgba(0, 0, 0, .5);
	}
}

div.avia-popup .mfp-s-error .mfp-preloader {
	background: 0 0;
	width: 100%;
	animation: none;
	white-space: nowrap;
}

.mfp-wrap.avia-mfp-is-video .mfp-iframe-holder {
	padding: 0;
}

.mfp-wrap.avia-mfp-is-video .mfp-iframe-holder .mfp-content {
	max-width: unset;
	padding: 0 50px;
}

.mfp-wrap.avia-mfp-is-video .mfp-iframe-scaler {
	position: relative;
	top: 50%;
	transform: translateY(-50%) !important;
}

.mfp-wrap.avia-mfp-video-16-9 .mfp-iframe-holder .mfp-content {
	height: 50.625vw;
	width: 90vw;
}

.mfp-wrap.avia-mfp-video-16-9 .mfp-iframe-scaler {
	padding-top: 56.25%;
}

.mfp-wrap.avia-mfp-video-4-3 .mfp-iframe-holder .mfp-content {
	height: 67.5vw;
	width: 90vw;
}

.mfp-wrap.avia-mfp-video-4-3 .mfp-iframe-scaler {
	padding-top: 75%;
}

.mfp-wrap.avia-mfp-video-9-16 .mfp-iframe-holder .mfp-content {
	height: 85vh;
	width: 47.8vh;
}

.mfp-wrap.avia-mfp-video-9-16 .mfp-iframe-scaler {
	padding-top: 178%;
}

.mfp-wrap.avia-mfp-video-3-4 .mfp-iframe-holder .mfp-content {
	height: 85vh;
	width: 63.8vh;
}

.mfp-wrap.avia-mfp-video-3-4 .mfp-iframe-scaler {
	padding-top: 134%;
}

.content .sidebar .widget:first-child, .sidebar .widget:first-child {
	padding-top: 0;
	border-top-style: none;
	border-top-width: 0;
}

.widget_archive label.screen-reader-text {
	display: none;
}

.widget_nav_menu a {
	display: block;
	padding: 4px 0 5px 0;
	text-decoration: none;
}

div .widget_nav_menu {
	padding-bottom: 24px;
}

#top .widget_nav_menu ul {
	margin: 0;
	padding: 0;
	float: none;
	list-style-type: none;
}

#top .widget_nav_menu li {
	position: relative;
	box-sizing: content-box;
	clear: both;
	font-size: 13px;
}

#top #footer .widget_nav_menu li {
	background-color: transparent;
}

#top .widget_nav_menu ul ul li:before {
	content: "∙";
	position: absolute;
	top: 5px;
}

#top .sidebar_left .widget_nav_menu ul ul li:before {
	right: -10px;
}

#top .sidebar_left.sidebar_align_left .widget_nav_menu ul ul li:before {
	right: auto;
	left: 0;
}

#top .widget_nav_menu ul ul li a {
	padding: 6px 0 7px 12px;
}

.widget_nav_menu .current-menu-item>a, .widget_nav_menu .current_page_item>a {
	font-weight: 700;
}

.sidebar .widget_nav_menu ul:first-child>.current-menu-ancestor, .sidebar .widget_nav_menu ul:first-child>.current-menu-item, .sidebar .widget_nav_menu ul:first-child>.current_page_item {
	padding-left: 51px;
	left: -51px;
	top: 1px;
	margin-top: -1px;
	padding-top: 1px;
	width: 100%;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
	margin-bottom: 4px;
}

.widget_nav_menu ul ul {
	display: block;
}

.widget_nav_menu.widget_nav_hide_child ul ul {
	display: none;
}

#top .widget_nav_menu .current-menu-ancestor>ul, #top .widget_nav_menu .current-menu-item>ul, #top .widget_nav_menu .current_page_ancestor>ul, #top .widget_nav_menu .current_page_item>ul {
	display: block;
}

#top .widget_nav_menu .sub-menu>li {
	display: block;
	padding: 0 0 0 13px;
}

#top .sidebar_left .widget_nav_menu .current-menu-ancestor>ul, #top .sidebar_left .widget_nav_menu .current-menu-item>ul, #top .sidebar_left .widget_nav_menu .current_page_ancestor>ul, #top .sidebar_left .widget_nav_menu .current_page_item>ul {
	padding: 0 13px 0 0;
}

#top .sidebar_left.sidebar_align_left .widget_nav_menu .current-menu-ancestor>ul, #top .sidebar_left.sidebar_align_left .widget_nav_menu .current-menu-item>ul, #top .sidebar_left.sidebar_align_left .widget_nav_menu .current_page_ancestor>ul, #top .sidebar_left.sidebar_align_left .widget_nav_menu .current_page_item>ul {
	padding: 0 0 0 13px;
}

#top .sidebar_left .widget_nav_menu .sub-menu {
	padding-right: 13px;
}

#top .sidebar_left.sidebar_align_left .widget_nav_menu .sub-menu {
	padding-left: 13px;
	padding-right: 0;
}

.widget_nav_menu ul:first-child>.current-menu-item>a, .widget_nav_menu ul:first-child>.current_page_item>a {
	border: none;
	padding: 6px 7px 7px 0;
}

#top .widget_nav_menu ul ul .children, #top .widget_nav_menu ul ul .sub-menu {
	padding: 0 0 0 10px;
	overflow: hidden;
	margin: 0;
}

.widget_nav_menu .nested_nav>li:first-child>a {
	border: none;
}

#top .widget_nav_menu .nested_nav {
	padding-bottom: 30px;
}

#top .content .flex_column .widget_nav_menu li a {
	padding: .8em 3px;
}

#top .content .flex_column .widget_nav_menu li a:hover, #top .content .flex_column .widget_nav_menu ul:first-child>.current-menu-item, #top .content .flex_column .widget_nav_menu ul:first-child>.current_page_item {
	background-color: rgba(255, 255, 255, .4);
}

#top .content .flex_column .widget_nav_menu li {
	background-color: transparent;
	margin: 0;
	padding: 0;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

#top .content .flex_column .widget_nav_menu li:first-child {
	border-top-style: solid;
	border-top-width: 1px;
}

.av-instagram-pics {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.av-instagram-row {
	display: table-row;
}

.av-instagram-item {
	display: table-cell;
	padding: 3px;
	height: 100%;
}

.av-instagram-item a {
	display: block;
	position: relative;
	padding-bottom: 100%;
	width: 100%;
	background-size: cover;
}

.av-instagram-item img {
	display: block;
}

.av-instagram-item .image-overlay.overlay-type-image {
	left: 0;
	width: 100%;
}

.av-instagram-item:first-child {
	padding-left: 0;
}

.av-instagram-item:last-child {
	padding-right: 0;
}

.av-instagram-row:first-child .av-instagram-item {
	padding-top: 0;
}

.av-instagram-row:last-child .av-instagram-item {
	padding-bottom: 0;
}

.av-instagram-follow {
	width: 100%;
	text-align: center;
	display: block;
	margin-top: 3px;
}

.avia-instagram-feed .av-instagram-errors-msg.av-instagram-admin {
	color: #c03;
}

#top .av-mailchimp-widget fieldset, #top .av-mailchimp-widget form {
	margin: 0;
}

#top .av-mailchimp-widget p {
	margin: 2px 0;
}

#top .av-mailchimp-widget-style-boxed_form {
	padding: 15px;
	border-style: solid;
	border-width: 1px;
}

#top .av-mailchimp-widget .button {
	margin-top: 5px;
	width: 100%;
	padding: 13px 10px;
}

.widgettitle+.av-mailchimp-widget-style-boxed_form {
	margin-top: -10px;
}

#top .av-form-error-container {
	border: 1px solid #bb1313;
	padding: 15px;
	color: #bb1313;
	line-height: 1.4em;
	font-size: 13px;
	margin-bottom: 20px;
}

.textwidget ul {
	margin-left: 0;
	overflow: hidden;
}

.js_active .avia_combo_widget .tab_titles {
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.js_active #top .avia_combo_widget .active_tab {
	border-bottom-style: solid;
	border-bottom-width: 2px;
	border-bottom-color: initial;
}

.js_active #top .avia_combo_widget .tab_content {
	padding: 0;
	background: 0 0;
	border: none;
}

.js_active .avia_combo_widget .top_tab .tab {
	border: none;
	background: 0 0;
	padding: 5px 10px;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	border-bottom-color: transparent;
}

.av_facebook_widget_wrap {
	overflow: hidden;
	position: relative;
	padding: 0;
	background: #fff;
}

.av_facebook_widget_wrap_border_yes {
	border-style: solid;
	border-width: 1px;
}

.av_facebook_widget_wrap_positioner iframe {
	position: absolute;
	height: 100%;
	width: 100%;
}

.av_facebook_widget {
	width: 100%;
}

.av_facebook_widget {
	width: 107%;
	max-width: 137%;
	left: -5px;
	top: -4px;
	position: relative;
}

.avia_fb_likebox .av_facebook_widget_page_title {
	font-size: 1.2em;
	font-weight: 700;
	margin: 12px 0;
}

.widget .av_widget_img_text_confirm .av_img_text_confirm_link {
	display: inline-block;
	position: relative;
	width: 100%;
}

.widget .av_widget_img_text_confirm .av_img_text_confirm_link img {
	width: 100%;
}

.widget .av_widget_img_text_confirm .av_img_text_confirm_link:hover {
	text-decoration: none;
}

.widget .av_widget_img_text_confirm .av_img_text_confirm_text {
	font-size: 1.5em;
	position: absolute;
	padding: 25px;
	text-align: center;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
	opacity: 0;
	width: 100%;
}

.widget .av_widget_img_text_confirm .av_img_text_confirm_text span {
	width: 100%;
}

.widget .av_widget_img_text_confirm .av_img_text_confirm_text:hover {
	opacity: 1;
}

.avia_fb_likebox .av_facebook_widget_main_wrap {
	background-attachment: scroll;
	background-size: cover;
	background-position: center center;
	width: 100%;
	min-width: 180px;
	min-height: 214px;
	position: relative;
	font-family: Helvetica, Arial, sans-serif;
}

.avia_fb_likebox .av_facebook_widget_main_wrap_shadow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 90px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, 0) 100%);
	z-index: 0;
}

.avia_fb_likebox .av_facebook_widget_logo_image {
	position: absolute;
	height: 54px;
	width: 54px;
	top: 8px;
	left: 8px;
	background: #fff;
	box-shadow: 0 1px 6px rgba(0, 0, 0, .5);
	border: 2px solid #fff;
	z-index: 2;
}

.avia_fb_likebox .av_facebook_widget_logo_image img {
	max-width: 50px;
	max-height: 50px;
	text-align: center;
	display: inline-block;
}

.avia_fb_likebox .av_facebook_widget_page_title_container {
	color: #fff;
	margin: 0 18px 0 68px;
	position: relative;
	z-index: 2;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.358;
	margin-bottom: -5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-shadow: 0 2px 4px rgba(0, 0, 0, .9);
	top: 8px;
	min-height: 95px;
}

#top .avia_fb_likebox .av_facebook_widget_page_title_container a {
	color: #fff;
}

.avia_fb_likebox .av_facebook_widget_page_title_container .av_facebook_widget_content {
	font-size: 12px;
}

.avia_fb_likebox .av_facebook_widget_page_title_container span {
	display: block;
}

.avia_fb_likebox .av_facebook_widget_add_info {
	width: 100%;
	min-height: 83px;
	background: #f6f7f9;
	border: 1px solid #e9ebee;
	border-top: 0;
	font-size: 12px;
	line-height: 16px;
	color: #4b4f56;
	padding: 8px;
}

.avia_fb_likebox .av_facebook_widget_add_info_inner {
	background: #fff;
	border-color: #e9ebee #dfe0e4 #d0d1d5;
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
	position: relative;
	min-height: 66px;
	padding: 8px;
}

.avia_fb_likebox .av_facebook_widget_imagebar {
	height: 32px;
	background-repeat: repeat;
	background-size: auto 100%;
	background-image: url("https://cdn-ilegfhd.nitrocdn.com/AGVjSsfBDzdDJuHGQkTwHHyCNgrEhqof/assets/images/optimized/rev-a08d6bf/www.internetgeography.net/wp-content/themes/enfold/images/layout/fake_facebook.jpg");
}

.avia_fb_likebox .av_facebook_widget_imagebar.nitro-lazy {
	background-image: none !important;
}

.avia_fb_likebox .av_facebook_widget_add_info_inner_wrap {
	min-height: 15px;
	padding-bottom: 4px;
	display: block;
}

.avia_fb_likebox .av_facebook_widget_button {
	background-color: #f6f7f9;
	border-color: #ced0d4;
	color: #4b4f56;
	line-height: 22px;
	border: 1px solid rgba(0, 0, 0, .12);
	font-size: 12px;
	padding: 0 5px;
	display: inline-block;
	margin: 8px;
}

.avia_fb_likebox .av_facebook_widget_icon {
	display: inline-block;
	margin-right: 5px;
	background: #3a5797;
	height: 16px;
	width: 16px;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	font-size: 11px;
	line-height: 18px;
}

.avia_fb_likebox .av_facebook_widget_icon.avia-svg-icon svg:first-child {
	height: 1em;
	width: 1em;
	fill: #fff;
	stroke: #fff;
	margin-bottom: -1px;
}

.avia_fb_likebox .ajax_load {
	display: none;
}

.avia_fb_likebox.ajax_loading_now .ajax_load {
	display: block;
}

.avia_socialcount {
	overflow: hidden;
	text-align: left;
}

#top .social_widget_icon {
	padding: 0;
	margin: 0;
	height: 30px;
	width: 30px;
	line-height: 32px;
	text-align: center;
	float: left;
	font-size: 17px;
	border-radius: 2px;
}

.asc_twitter .social_widget_icon {
	color: #000;
	background-color: #fff;
}

.asc_twitter .social_widget_icon.avia-svg-icon svg:first-child {
	fill: #000;
	stroke: #000;
	margin-top: 8px;
}

.asc_rss .social_widget_icon {
	color: #fff;
	background-color: #ffa133;
	border-color: #ffa133;
	text-shadow: 1px 1px 1px #d18021;
}

.asc_rss .social_widget_icon.avia-svg-icon svg:first-child {
	fill: #fff;
	stroke: #fff;
	margin-top: 8px;
}

.avia_socialcount .seperator {
	display: none;
}

div #footer .avia_socialcount {
	padding: 10px 0 0 0;
}

.asc_multi_count {
	float: left;
	width: 50%;
}

.avia_socialcount a, .avia_socialcount a:hover {
	height: 40px;
	text-decoration: none;
	display: block;
	min-width: 89px;
}

.avia_socialcount span, .avia_socialcount strong {
	display: block;
	line-height: 1em;
	padding: 0 0 0 36px;
}

.avia_socialcount a strong {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	padding-top: 4px;
}

.avia_socialcount a span {
	font-size: 10px;
	padding-top: 3px;
}

#top .widget.tweetbox .tweets {
	list-style-type: none;
	list-style-position: outside;
	border: none;
}

#top .widget.tweetbox .tweet {
	padding: 10px 0;
	line-height: 18px;
	position: relative;
	overflow: hidden;
	font-size: 11px;
	background: 0 0;
	border-top-style: dashed;
	border-top-width: 1px;
	margin: 0;
}

#top .widget.tweetbox .tweet:first-child {
	border: none;
}

.widget.tweetbox .tweet-thumb {
	position: relative;
}

.widget.tweetbox .tweet-thumb a {
	margin-right: 9px;
	padding: 3px;
	float: left;
	border-style: solid;
	border-width: 1px;
	margin-top: 5px;
	display: block;
	width: 36px;
}

#top .widget.tweetbox .tweet-thumb img {
	display: block;
	float: left;
	border: none;
	padding: 0;
	margin: 0;
}

.widget.tweetbox .tweet-text {
	position: relative;
	overflow: hidden;
}

.widget.tweetbox .tweet-time {
	clear: both;
	font-size: 11px;
}

.widget.tweetbox .tweet-text.avatar_no {
	font-size: 12px;
	line-height: 1.7em;
	font-weight: 400;
}

.widget.tweetbox .tweet-text.avatar_no .tweet-time {
	font-style: italic;
	font-weight: 400;
}

.avia_partner_widget {
	overflow: hidden;
	clear: both;
}

.avia_partner_widget a, .avia_partner_widget a:hover {
	float: left;
	display: block;
	text-decoration: none;
	width: 49.5%;
	outline: 0;
	border: none;
	padding-bottom: 49.5%;
	position: relative;
	margin-right: 1%;
}

.avia_partner_widget a.avia_partner2, .avia_partner_widget a.avia_partner2:hover {
	margin-right: 0;
}

#top .avia_partner_widget {
	max-width: 304px;
}

#top .avia_partner_widget img {
	position: absolute;
	left: 0;
	top: 0;
}

.avia_partner1 {
	margin-right: 1px;
}

.avia_parnter_empty {
	line-height: 1em;
	height: 97%;
	width: 97%;
	display: block;
	font-size: 10px;
	text-align: center;
	position: absolute;
	border-style: solid;
	border-width: 1px;
}

.avia_parnter_empty span {
	width: 100%;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	text-align: center;
	left: 0;
}

.widget .avia-google-map-container {
	height: 230px;
	width: 100%;
}

.widget .avia-google-map-container {
	background: no-repeat center;
	background-size: cover;
}

.widget .content .avia-google-map-container {
	height: 230px;
}

#top .widget .infoWindow input[type=text] {
	margin: 0 0 3px 0;
}

.widget .avia-google-map-container a img, .widget .avia-google-map-container img {
	max-width: none;
}

.widget .avia-google-map-container a, .widget .avia-google-map-container div, .widget .avia-google-map-container img {
	box-sizing: content-box;
}

.widget .avia-google-map-container .av_text_confirm_link {
	padding: 25px;
	text-align: center;
	opacity: 0;
	position: absolute;
	width: 150px;
	left: 50%;
	top: 50%;
	margin-left: -100px;
	margin-top: -50px;
	background: rgba(0, 0, 0, .7);
	border-radius: 3px;
	color: #fff;
	font-size: 1em;
	line-height: 1.3em;
	transition: all .3s ease-in-out;
}

.widget .avia-google-map-container .av_text_confirm_link:hover {
	color: #fff;
	background: rgba(0, 0, 0, .9);
}

.widget .avia-google-map-container.av_gmaps_show_delayed.av-no-fallback-img .av_text_confirm_link, .widget .avia-google-map-container.av_gmaps_show_page_only.av-no-fallback-img .av_text_confirm_link {
	height: auto;
	opacity: 1;
}

.widget .avia-google-map-container .av_text_confirm_link span {
	width: 100%;
}

.widget .avia-google-map-container:hover .av_text_confirm_link {
	opacity: 1;
	text-decoration: none;
}

#top .news-content {
	padding: 7px 0 3px 0;
	line-height: 1.7em;
	position: relative;
	overflow: hidden;
	font-size: .85em;
	display: block;
	clear: both;
	margin: 0;
}

#top .news-wrap {
	border: none;
	list-style-type: none;
	list-style-position: outside;
}

#top .news-wrap li {
	border: none;
	background: 0 0;
	text-indent: 0;
}

#top .widget ul li .news-link:hover, .news-link, .news-link:hover {
	display: block;
	position: relative;
	text-decoration: none;
	overflow: hidden;
	z-index: 2;
}

.news-thumb {
	margin-right: 9px;
	padding: 3px;
	float: left;
	margin-top: 4px;
	border-style: solid;
	border-width: 1px;
	height: 36px;
	width: 36px;
	display: block;
}

.news-thumb img {
	width: 28px;
	height: 28px;
}

.image_size_portfolio_small .news-link {
	float: left;
	margin-right: 10px;
}

.image_size_portfolio_small .news-thumb, .image_size_portfolio_small .news-thumb img, .image_size_portfolio_small .tweet-thumb img {
	width: 150px;
	min-height: 100px;
}

.image_size_portfolio_small .news-excerpt {
	overflow: hidden;
	font-size: 13px;
	line-height: 1.65em;
}

.image_size_portfolio_small .news-headline {
	font-size: 14px;
}

#top .news-thumb img {
	display: block;
	float: left;
	border: none;
	padding: 0;
	margin: 0;
}

.news-headline {
	overflow: hidden;
	font-weight: 700;
	margin-top: 2px;
	display: block;
}

.news-time {
	font-weight: 400;
	clear: both;
	font-size: .92em;
	display: block;
}

.tagcloud br {
	display: none;
}

.tagcloud a {
	font-size: 11px !important;
	padding: 2px 8px;
	margin: 0 1px 1px 0;
	display: block;
	float: left;
	border-style: solid;
	border-width: 1px;
	text-decoration: none;
}

.tagcloud a:hover {
	text-shadow: none;
	text-decoration: underline;
}

.widget_tag_cloud h3 {
	border: none;
}

.widget_rss li {
	line-height: 1.5em;
	font-size: 11px;
}

.widget_rss li div {
	font-family: Georgia, "Times New Roman", Helvetica, Arial, sans-serif;
	font-style: italic;
}

.rsswidget {
	display: block;
	font-weight: 700;
}

.rss-date, .widget_rss cite {
	font-size: 11px;
}

.widget_rss li {
	padding: 7px 0;
}

.widget_rss .widgettitle img {
	display: none;
}

.recentcomments, .widget_recent_entries li {
	padding: 7px 0;
	display: block;
	font-size: .85em;
	line-height: 1.5em;
}

.recentcomments a, .widget_recent_entries li a {
	font-style: italic;
	font-family: Georgia, "Times New Roman", Helvetica, Arial, sans-serif;
}

.recentcomments, .widget_recent_entries li {
	border-top-width: 3px;
	border-top-style: solid;
}

.recentcomments:first-child, .widget_recent_entries li:first-child {
	border-top: none;
}

.sidebar_left .widget_nav_menu ul:first-child>.current-menu-ancestor, .sidebar_left .widget_nav_menu ul:first-child>.current-menu-item, .sidebar_left .widget_nav_menu ul:first-child>.current_page_item {
	padding-right: 52px;
	padding-left: 0;
	left: auto;
	top: 1px;
}

.sidebar_left.sidebar {
	text-align: right;
}

.sidebar_left .news-thumb {
	float: right;
	margin: 4px 0 0 9px;
}

#top .widget_twitter {
	font-size: 12px;
	line-height: 1.65em;
}

#top .widget_twitter .twitter-avatar {
	float: left;
	margin-right: 13px;
	border-style: solid;
	border-width: 1px;
	padding: 3px;
	display: block;
}

#top .widget_twitter .twitter-avatar a, #top .widget_twitter .twitter-avatar img {
	display: block;
}

#top .widget_twitter ul {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

#top .widget_twitter li {
	padding: 0 0 8px 0;
	margin: 0 0 8px 0;
	border-bottom-style: solid;
	border-bottom-width: 2px;
}

#top .widget_twitter li:last-child {
	border-bottom: none;
}

#top .widget_twitter .entry-content-wrapper {
	padding: 0;
	margin: 0;
	float: none;
	clear: both;
	position: relative;
	border: none;
	width: 100%;
}

#top .widget_twitter .entry-meta {
	display: block;
	font-size: 11px;
	font-style: italic;
	opacity: .8;
	margin-top: 5px;
}

#top .widget_twitter .intent-meta {
	display: block;
	font-size: 11px;
	margin-top: 8px;
}

#top .widget_twitter .intent-meta a {
	text-decoration: none;
	margin-right: 4px;
}

#top .widget_twitter .intent-meta a:hover {
	text-decoration: underline;
}

.sidebar_left.sidebar_align_left.sidebar {
	text-align: left;
}

.sidebar_left.sidebar_align_left .news-thumb {
	float: left;
	margin: 4px 9px 0 0;
}

.sidebar_left.sidebar_align_left .widget_nav_menu ul:first-child>.current-menu-ancestor, .sidebar_left.sidebar_align_left .widget_nav_menu ul:first-child>.current-menu-item, .sidebar_left.sidebar_align_left .widget_nav_menu ul:first-child>.current_page_item {
	padding-left: 52px;
	padding-right: 0;
	left: 0;
	right: auto;
	top: 1px;
}

.avia-toc-container {
	position: relative;
}

.avia-toc-container a {
	display: block;
	position: relative;
	line-height: 1.4em;
}

.avia-toc-container a:hover {
	text-decoration: none;
}

.avia-toc-style-simple a {
	overflow-x: hidden;
	margin-bottom: 1em;
	min-height: 25px;
}

.avia-toc-style-simple a span {
	background-color: #fff;
	position: relative;
	padding-right: 5px;
	z-index: 2;
}

.avia-toc-style-simple a:after {
	float: left;
	width: 0;
	color: rgba(0, 0, 0, .25);
	font-size: 9px;
	font-weight: 400;
	white-space: nowrap;
	content: ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . ";
}

.avia-toc-style-simple .avia-toc-level-0:after {
	line-height: 3;
}

.avia-toc-style-simple .avia-toc-level-1:after {
	line-height: 3;
}

.avia-toc-style-simple .avia-toc-level-2:after {
	line-height: 2.9;
}

.avia-toc-style-simple .avia-toc-level-3:after {
	line-height: 2.7;
}

.avia-toc-style-simple .avia-toc-level-4:after {
	line-height: 2.5;
}

.avia-toc-style-simple .avia-toc-level-5:after {
	line-height: 2.4;
}

.avia-toc-style-simple .avia-toc-level-0 {
	font-weight: 700;
	font-size: 1em;
}

.avia-toc-style-simple .avia-toc-level-2 {
	font-weight: 400;
	font-size: .9375em;
}

.avia-toc-style-simple .avia-toc-level-3 {
	font-weight: 400;
	font-size: .875em;
}

.avia-toc-style-simple .avia-toc-level-4 {
	font-weight: 400;
	font-size: .8125em;
}

.avia-toc-style-simple .avia-toc-level-5 {
	font-weight: 400;
	font-size: .8125em;
	font-style: italic;
}

.avia-toc-style-simple.avia-toc-indent .avia-toc-level-1 {
	margin-left: .625em;
}

.avia-toc-style-simple.avia-toc-indent .avia-toc-level-2 {
	margin-left: 1em;
}

.avia-toc-style-simple.avia-toc-indent .avia-toc-level-3 {
	margin-left: 1.428em;
}

.avia-toc-style-simple.avia-toc-indent .avia-toc-level-4 {
	margin-left: 2.307em;
}

.avia-toc-style-simple.avia-toc-indent .avia-toc-level-5 {
	margin-left: 2.692em;
}

.avia-toc-style-elegant {
	padding-left: 30px;
}

.avia-toc-style-elegant a {
	text-transform: uppercase;
	padding-bottom: 1.5em;
}

.avia-toc-style-elegant .avia-toc-level-0 {
	font-weight: 700;
	font-size: .875em;
}

.avia-toc-style-elegant .avia-toc-level-1 {
	font-weight: 400;
	font-size: .875em;
}

.avia-toc-style-elegant .avia-toc-level-2 {
	font-weight: 400;
	font-size: .8125em;
}

.avia-toc-style-elegant .avia-toc-level-3 {
	font-weight: 700;
	font-size: .8125em;
}

.avia-toc-style-elegant .avia-toc-level-4 {
	font-weight: 400;
	font-size: .75em;
}

.avia-toc-style-elegant .avia-toc-level-5 {
	font-weight: 400;
	font-size: .75em;
	font-style: italic;
}

.avia-toc-style-elegant a:before {
	content: "";
	position: absolute;
	height: calc(100% + .3em);
	left: -20px;
	top: .15em;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: rgba(0, 0, 0, .08);
}

.avia-toc-style-elegant a.avia-toc-level-0 span:after, .avia-toc-style-elegant a.avia-toc-level-0:after, .avia-toc-style-elegant a.avia-toc-level-0:last-child:after, .avia-toc-style-elegant a:first-child span:after, .avia-toc-style-elegant a:first-child:after {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	border-width: 3px;
	border-style: solid;
	border-radius: 9px;
	left: -26px;
	top: .15em;
	z-index: 2;
}

.avia-toc-style-elegant a.avia-toc-level-0 span:after, .avia-toc-style-elegant a:first-child span:after {
	border-color: transparent;
	z-index: 1;
}

.avia-toc-style-elegant a.avia-toc-level-0:hover span:after, .avia-toc-style-elegant a:first-child:hover span:after {
	animation: sonarEffect 2s ease-out infinite;
}

.avia-toc-style-elegant a:last-child:before {
	display: none;
}

.avia-toc-style-elegant a:last-child:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	left: -23px;
	top: .4em;
	border-radius: 8px;
}

.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-1 {
	padding-left: .625em;
}

.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-2 {
	padding-left: 1em;
}

.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-3 {
	padding-left: 1.428em;
}

.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-4 {
	padding-left: 2.307em;
}

.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-5 {
	padding-left: 2.692em;
}

:root {
	--enfold-socket-color-bg: #425719;
	--enfold-socket-color-bg2: #56751b;
	--enfold-socket-color-primary: #fff;
	--enfold-socket-color-secondary: #fff;
	--enfold-socket-color-color: #f3ffde;
	--enfold-socket-color-meta: #ecf2e1;
	--enfold-socket-color-heading: #fff;
	--enfold-socket-color-border: #425719;
	--enfold-socket-color-constant-font: #425719;
	--enfold-socket-color-button-border: #ddd;
	--enfold-socket-color-button-border2: #ddd;
	--enfold-socket-color-iconlist: #314608;
	--enfold-socket-color-timeline: #314608;
	--enfold-socket-color-timeline-date: #001305;
	--enfold-socket-color-masonry: #45640a;
	--enfold-socket-color-stripe: #fff;
	--enfold-socket-color-stripe2: #fff;
	--enfold-socket-color-stripe2nd: #fff;
	--enfold-socket-color-button-font: #425719;
	--enfold-socket-color-dark-bg2: #45640a;
	--enfold-socket-color-primary2: #bbb;
	--enfold-footer-color-bg: #709527;
	--enfold-footer-color-bg2: #56751b;
	--enfold-footer-color-primary: #f3ffde;
	--enfold-footer-color-secondary: #fff;
	--enfold-footer-color-color: #ecf2e1;
	--enfold-footer-color-meta: #ecf2e1;
	--enfold-footer-color-heading: #fff;
	--enfold-footer-color-border: #658529;
	--enfold-footer-color-constant-font: #709527;
	--enfold-footer-color-button-border: #d1ddbc;
	--enfold-footer-color-button-border2: #ddd;
	--enfold-footer-color-iconlist: #547418;
	--enfold-footer-color-timeline: #547418;
	--enfold-footer-color-timeline-date: #214105;
	--enfold-footer-color-masonry: #45640a;
	--enfold-footer-color-stripe: #f5ffff;
	--enfold-footer-color-stripe2: #f4ffef;
	--enfold-footer-color-stripe2nd: #fff;
	--enfold-footer-color-button-font: #709527;
	--enfold-footer-color-dark-bg2: #45640a;
	--enfold-footer-color-primary2: #b0bb9a;
	--enfold-alternate-color-bg: #709527;
	--enfold-alternate-color-bg2: #56751b;
	--enfold-alternate-color-primary: #f3ffde;
	--enfold-alternate-color-secondary: #fff;
	--enfold-alternate-color-color: #ecf2e1;
	--enfold-alternate-color-meta: #ecf2e1;
	--enfold-alternate-color-heading: #fff;
	--enfold-alternate-color-border: #8eb546;
	--enfold-alternate-color-constant-font: #709527;
	--enfold-alternate-color-button-border: #d1ddbc;
	--enfold-alternate-color-button-border2: #ddd;
	--enfold-alternate-color-iconlist: #7da435;
	--enfold-alternate-color-timeline: #7da435;
	--enfold-alternate-color-timeline-date: #4a7102;
	--enfold-alternate-color-masonry: #45640a;
	--enfold-alternate-color-stripe: #f5ffff;
	--enfold-alternate-color-stripe2: #f4ffef;
	--enfold-alternate-color-stripe2nd: #fff;
	--enfold-alternate-color-button-font: #709527;
	--enfold-alternate-color-dark-bg2: #45640a;
	--enfold-alternate-color-primary2: #b0bb9a;
	--enfold-main-color-bg: #f9f9f9;
	--enfold-main-color-bg2: #fff;
	--enfold-main-color-primary: #80a133;
	--enfold-main-color-secondary: #80a133;
	--enfold-main-color-color: #575657;
	--enfold-main-color-meta: #6e6d6e;
	--enfold-main-color-heading: #222;
	--enfold-main-color-border: #e1e1e1;
	--enfold-main-color-constant-font: #fff;
	--enfold-main-color-button-border: #608011;
	--enfold-main-color-button-border2: #608011;
	--enfold-main-color-iconlist: #d0d0d0;
	--enfold-main-color-timeline: #d0d0d0;
	--enfold-main-color-timeline-date: #a0a0a0;
	--enfold-main-color-masonry: #eee;
	--enfold-main-color-stripe: #a2c355;
	--enfold-main-color-stripe2: #91b244;
	--enfold-main-color-stripe2nd: #91b244;
	--enfold-main-color-button-font: #fff;
	--enfold-main-color-dark-bg2: #eee;
	--enfold-main-color-primary2: #406000;
	--enfold-header-color-bg: #fff;
	--enfold-header-color-bg2: #f8f8f8;
	--enfold-header-color-primary: #81a032;
	--enfold-header-color-secondary: #444;
	--enfold-header-color-color: #333;
	--enfold-header-color-meta: #80a133;
	--enfold-header-color-heading: #000;
	--enfold-header-color-border: #e1e1e1;
	--enfold-header-color-constant-font: #fff;
	--enfold-header-color-button-border: #608010;
	--enfold-header-color-button-border2: #222;
	--enfold-header-color-iconlist: #d0d0d0;
	--enfold-header-color-timeline: #d0d0d0;
	--enfold-header-color-timeline-date: #a0a0a0;
	--enfold-header-color-masonry: #e7e7e7;
	--enfold-header-color-stripe: #a3c254;
	--enfold-header-color-stripe2: #92b143;
	--enfold-header-color-stripe2nd: #555;
	--enfold-header-color-button-font: #fff;
	--enfold-header-color-dark-bg2: #e7e7e7;
	--enfold-header-color-primary2: #406000;
	--enfold-header_burger_color: inherit;
	--enfold-header_replacement_menu_color: inherit;
	--enfold-header_replacement_menu_hover_color: inherit;
	--enfold-font-family-theme-body: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--enfold-font-size-theme-content: 13px;
	--enfold-font-size-theme-h1: 34px;
	--enfold-font-size-theme-h2: 28px;
	--enfold-font-size-theme-h3: 20px;
	--enfold-font-size-theme-h4: 18px;
	--enfold-font-size-theme-h5: 16px;
	--enfold-font-size-theme-h6: 14px;
	--enfold-font-size-content-font: 15px;
}

::selection {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-bg);
}

html.html_boxed {
	background: #fff top left repeat scroll;
}

body, body .avia-tooltip {
	font-size: 15px;
}

.socket_color, .socket_color div, .socket_color header, .socket_color main, .socket_color aside, .socket_color footer, .socket_color article, .socket_color nav, .socket_color section, .socket_color span, .socket_color applet, .socket_color object, .socket_color iframe, .socket_color h1, .socket_color h2, .socket_color h3, .socket_color h4, .socket_color h5, .socket_color h6, .socket_color p, .socket_color blockquote, .socket_color pre, .socket_color a, .socket_color abbr, .socket_color acronym, .socket_color address, .socket_color big, .socket_color cite, .socket_color code, .socket_color del, .socket_color dfn, .socket_color em, .socket_color img, .socket_color ins, .socket_color kbd, .socket_color q, .socket_color s, .socket_color samp, .socket_color small, .socket_color strike, .socket_color strong, .socket_color sub, .socket_color sup, .socket_color tt, .socket_color var, .socket_color b, .socket_color u, .socket_color i, .socket_color center, .socket_color dl, .socket_color dt, .socket_color dd, .socket_color ol, .socket_color ul, .socket_color li, .socket_color fieldset, .socket_color form, .socket_color label, .socket_color legend, .socket_color table, .socket_color caption, .socket_color tbody, .socket_color tfoot, .socket_color thead, .socket_color tr, .socket_color th, .socket_color td, .socket_color article, .socket_color aside, .socket_color canvas, .socket_color details, .socket_color embed, .socket_color figure, .socket_color fieldset, .socket_color figcaption, .socket_color footer, .socket_color header, .socket_color hgroup, .socket_color menu, .socket_color nav, .socket_color output, .socket_color ruby, .socket_color section, .socket_color summary, .socket_color time, .socket_color mark, .socket_color audio, .socket_color video, #top .socket_color .pullquote_boxed, .responsive #top .socket_color .avia-testimonial, .responsive #top.avia-blank #main .socket_color.container_wrap:first-child, #top .socket_color.fullsize .template-blog .post_delimiter, .socket_color .related_posts.av-related-style-full a {
	border-color: var(--enfold-socket-color-border);
}

.socket_color .rounded-container, #top .socket_color .pagination a:hover, .socket_color .small-preview, .socket_color .fallback-post-type-icon {
	background: var(--enfold-socket-color-meta);
	color: var(--enfold-socket-color-bg);
}

.socket_color .rounded-container .avia-svg-icon svg:first-child, .socket_color .small-preview .avia-svg-icon svg:first-child, .socket_color .fallback-post-type-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-bg);
	stroke: var(--enfold-socket-color-bg);
}

.socket_color .av-default-color, #top .socket_color .av-force-default-color, .socket_color .av-catalogue-item, .socket_color .wp-playlist-item .wp-playlist-caption, .socket_color .wp-playlist {
	color: var(--enfold-socket-color-color);
}

.socket_color, .socket_color .site-background, .socket_color .first-quote, .socket_color .related_image_wrap, .socket_color .gravatar img
.socket_color .hr_content, .socket_color .news-thumb, .socket_color .post-format-icon, .socket_color .ajax_controlls a, .socket_color .tweet-text.avatar_no, .socket_color .toggler, .socket_color .toggler.activeTitle:hover, .socket_color #js_sort_items, .socket_color.inner-entry, .socket_color .grid-entry-title, .socket_color .related-format-icon, .grid-entry .socket_color .avia-arrow, .socket_color .avia-gallery-big, .socket_color .avia-gallery-big, .socket_color .avia-gallery img, .socket_color .grid-content, .socket_color .av-share-box ul, #top .socket_color .av-related-style-full .related-format-icon, .socket_color .related_posts.av-related-style-full a:hover, .socket_color.avia-fullwidth-portfolio .pagination .current, .socket_color.avia-fullwidth-portfolio .pagination a, .socket_color .av-hotspot-fallback-tooltip-inner, .socket_color .av-hotspot-fallback-tooltip-count {
	background-color: var(--enfold-socket-color-bg);
	color: var(--enfold-socket-color-color);
}

.socket_color .ajax_controlls a.avia-svg-icon svg:first-child, .socket_color .avia-svg-icon svg:first-child, .socket_color .av-share-box ul li svg:first-child, #top .socket_color .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
	stroke: var(--enfold-socket-color-color);
	fill: var(--enfold-socket-color-color);
}

.socket_color .avia-fold-unfold-section .av-fold-unfold-container::after {
	background: linear-gradient(to bottom, rgba(66, 87, 25, 0), rgba(66, 87, 25, 1));
}

.socket_color .avia-fold-unfold-section .av-fold-button-container:not(.avia-button), .socket_color.avia-fold-unfold-section .av-fold-button-container:not(.avia-button) {
	color: var(--enfold-socket-color-color);
}

.socket_color .avia-fold-unfold-section .av-fold-button-container.fold-button {
	background: var(--enfold-socket-color-bg);
	border-color: var(--enfold-socket-color-border);
}

.socket_color .avia-curtain-reveal-overlay {
	background: var(--enfold-socket-color-bg);
}

.socket_color .avia-icon-circles-icon {
	background: var(--enfold-socket-color-bg);
	border-color: var(--enfold-socket-color-border);
	color: var(--enfold-socket-color-color);
}

.socket_color .avia-icon-circles-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-color);
	stroke: var(--enfold-socket-color-color);
}

.socket_color .avia-icon-circles-icon.active {
	background: var(--enfold-socket-color-secondary);
	border-color: var(--enfold-socket-color-secondary);
	color: var(--enfold-socket-color-bg);
}

.socket_color .avia-icon-circles-icon.avia-svg-icon.active  svg:first-child {
	fill: var(--enfold-socket-color-bg);
	stroke: var(--enfold-socket-color-bg);
}

.socket_color .avia-icon-circles-icon-text {
	color: var(--enfold-socket-color-color);
	background: var(--enfold-socket-color-bg);
}

.socket_color .heading-color, .socket_color a.iconbox_icon:hover, .socket_color h1, .socket_color h2, .socket_color h3, .socket_color h4, .socket_color h5, .socket_color h6, .socket_color .sidebar .current_page_item>a, .socket_color .sidebar .current-menu-item>a, .socket_color .pagination .current, .socket_color .pagination a:hover, .socket_color strong.avia-testimonial-name, .socket_color .heading, .socket_color .toggle_content strong, .socket_color .toggle_content strong a, .socket_color .tab_content strong, .socket_color .tab_content strong a, .socket_color .asc_count, .socket_color .avia-testimonial-content strong, #top .socket_color .av-related-style-full .av-related-title, .socket_color .wp-playlist-item-meta.wp-playlist-item-title, #top .socket_color .av-no-image-slider h2 a, .socket_color .av-small-bar .avia-progress-bar .progressbar-title-wrap, .socket_color div .news-headline .news-title, .socket_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .socket_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top.card-time-color, .socket_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom.card-time-color, .socket_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back.card-time-color::before, .socket_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock__card .flip-clock-counter {
	color: var(--enfold-socket-color-heading);
}

.socket_color .heading .avia-svg-icon svg:first-child, .socket_color .av-special-heading .avia-svg-icon svg:first-child, .socket_color a.iconbox_icon.avia-svg-icon:hover svg:first-child, .socket_color .iconbox_icon.heading-color.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-heading);
	stroke: var(--enfold-socket-color-heading);
}

.socket_color .av-countdown-timer.av-events-countdown a .av-countdown-time-label {
	color: var(--enfold-socket-color-color);
}

.socket_color .meta-color, .socket_color .sidebar, .socket_color .sidebar a, .socket_color .minor-meta, .socket_color .minor-meta a, .socket_color .text-sep, .socket_color blockquote, .socket_color .post_nav a, .socket_color .comment-text, .socket_color .side-container-inner, .socket_color .news-time, .socket_color .pagination a, .socket_color .pagination span, .socket_color .tweet-text.avatar_no .tweet-time, #top .socket_color .extra-mini-title, .socket_color .team-member-job-title, .socket_color .team-social a, .socket_color #js_sort_items a, .grid-entry-excerpt, .socket_color .avia-testimonial-subtitle, .socket_color .commentmetadata a, .socket_color .social_bookmarks a, .socket_color .meta-heading > *, .socket_color .slide-meta, .socket_color .slide-meta a, .socket_color .taglist, .socket_color .taglist a, .socket_color .phone-info, .socket_color .phone-info a, .socket_color .av-sort-by-term a, .socket_color .av-magazine-time, .socket_color .av-magazine .av-magazine-entry-icon, .socket_color .av-catalogue-content, .socket_color .wp-playlist-item-length, .html_modern-blog #top div .socket_color .blog-categories a, .html_modern-blog #top div .socket_color .blog-categories a:hover {
	color: var(--enfold-socket-color-meta);
}

.socket_color .team-social a.avia-svg-icon svg:first-child, .socket_color .meta-heading .avia-svg-icon svg:first-child, .socket_color .social_bookmarks .avia-svg-icon a svg:first-child {
	stroke: var(--enfold-socket-color-meta);
	fill: var(--enfold-socket-color-meta);
}

.socket_color .team-social a.avia-svg-icon:hover svg:first-child {
	stroke: var(--enfold-socket-color-secondary);
	fill: var(--enfold-socket-color-secondary);
}

.socket_color .special-heading-inner-border {
	border-color: var(--enfold-socket-color-color);
}

.socket_color .meta-heading .special-heading-inner-border {
	border-color: var(--enfold-socket-color-meta);
}

.socket_color a, .socket_color .widget_first, .socket_color strong, .socket_color b, .socket_color b a, .socket_color strong a, .socket_color #js_sort_items a:hover, .socket_color #js_sort_items a.active_sort, .socket_color .av-sort-by-term a.active_sort, .socket_color .special_amp, .socket_color .taglist a.activeFilter, .socket_color #commentform .required, #top .socket_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .socket_color .blog-categories a, .html_elegant-blog #top .socket_color .blog-categories a:hover {
	color: var(--enfold-socket-color-primary);
}

.socket_color a.avia-button .avia-svg-icon svg:first-child, .socket_color a.more-link .avia-svg-icon svg:first-child, #top .socket_color .av-no-color.av-icon-style-border a.av-icon-char svg:first-child {
	stroke: var(--enfold-socket-color-primary);
	fill: var(--enfold-socket-color-primary);
}

.socket_color a:hover, .socket_color h1 a:hover, .socket_color h2 a:hover, .socket_color h3 a:hover, .socket_color h4 a:hover, .socket_color h5 a:hover, .socket_color h6 a:hover, .socket_color .template-search  a.news-content:hover, .socket_color .wp-playlist-item .wp-playlist-caption:hover {
	color: var(--enfold-socket-color-secondary);
}

.socket_color a.more-link:hover .avia-svg-icon svg:first-child {
	stroke: var(--enfold-socket-color-secondary);
	fill: var(--enfold-socket-color-secondary);
}

.socket_color .primary-background, .socket_color .primary-background a, div .socket_color .button, .socket_color #submit, .socket_color input[type='submit'], .socket_color .small-preview:hover, .socket_color .avia-menu-fx, .socket_color .avia-menu-fx .avia-arrow, .socket_color.iconbox_top .iconbox_icon, .socket_color .iconbox_top a.iconbox_icon:hover, .socket_color .avia-data-table th.avia-highlight-col, .socket_color .avia-color-theme-color, .socket_color .avia-color-theme-color:hover, .socket_color .image-overlay .image-overlay-inside:before, .socket_color .comment-count, .socket_color .av_dropcap2, .responsive #top .socket_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .socket_color .av-open-submenu.av-subnav-menu li > ul a:hover, .socket_color .av-colored-style .av-countdown-cell-inner, .socket_color .wc-block-components-button:not(.is-link) {
	background-color: var(--enfold-socket-color-primary);
	color: var(--enfold-socket-color-constant-font);
	border-color: var(--enfold-socket-color-button-border);
}

.socket_color #searchform .av_searchform_search.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-constant-font);
	stroke: var(--enfold-socket-color-constant-font);
}

.socket_color .av_searchform_wrapper .av-search-icon:not(.av-input-field-icon) {
	color: var(--enfold-socket-color-constant-font);
}

.socket_color .av_searchform_wrapper .av-search-icon.avia-svg-icon:not(.av-input-field-icon) svg:first-child {
	fill: var(--enfold-socket-color-constant-font);
	stroke: var(--enfold-socket-color-constant-font);
}

.socket_color a.avia-button:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-secondary);
	stroke: var(--enfold-socket-color-secondary);
}

.socket_color.iconbox_top .iconbox_icon.avia-svg-icon svg:first-child, .socket_color .iconbox_top a.iconbox_icon.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-socket-color-constant-font);
	stroke: var(--enfold-socket-color-constant-font);
}

.socket_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__top, .socket_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__bottom, .socket_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::before, .socket_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::after, .socket_color .av-colored-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-socket-color-primary);
	color: var(--enfold-socket-color-constant-font);
}

#top #wrap_all .socket_color .av-menu-button-colored > a .avia-menu-text {
	background-color: var(--enfold-socket-color-primary);
	color: var(--enfold-socket-color-constant-font);
	border-color: var(--enfold-socket-color-primary);
}

#top #wrap_all .socket_color .av-menu-button-colored > a .avia-menu-text:after {
	background-color: var(--enfold-socket-color-button-border);
}

#top .socket_color .mobile_menu_toggle {
	color: var(--enfold-socket-color-primary);
	background: var(--enfold-socket-color-bg);
}

#top .socket_color .mobile_menu_toggle .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-primary);
	stroke: var(--enfold-socket-color-primary);
}

#top .socket_color .av-menu-mobile-active .av-subnav-menu > li > a:before {
	color: var(--enfold-socket-color-primary);
}

#top .socket_color .av-open-submenu.av-subnav-menu > li > a:hover:before {
	color: var(--enfold-socket-color-bg);
}

.socket_color .button:hover, .socket_color .ajax_controlls a:hover, .socket_color #submit:hover, .socket_color .big_button:hover, .socket_color .contentSlideControlls a:hover, .socket_color #submit:hover, .socket_color input[type='submit']:hover {
	background-color: var(--enfold-socket-color-secondary);
	color: var(--enfold-socket-color-bg);
	border-color: var(--enfold-socket-color-button-border2);
}

.socket_color #searchform .av_searchform_search.avia-svg-icon svg:first-child:hover {
	fill: var(--enfold-socket-color-bg);
	stroke: var(--enfold-socket-color-bg);
}

.socket_color #searchform .av_searchform_search.avia-svg-icon:hover ~ #searchsubmit {
	background-color: var(--enfold-socket-color-secondary);
	border-color: var(--enfold-socket-color-button-border2);
}

.socket_color .ajax_controlls a.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-socket-color-bg);
	stroke: var(--enfold-socket-color-bg);
}

.socket_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after, .socket_color .avia-toc-style-elegant a:first-child:after, .socket_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	background-color: var(--enfold-socket-color-bg);
	border-color: var(--enfold-socket-color-secondary);
}

.socket_color .avia-toc-style-elegant a:first-child span:after, .socket_color .avia-toc-style-elegant a.avia-toc-level-0 span:after {
	background-color: var(--enfold-socket-color-bg);
}

.socket_color .avia-toc-style-elegant a:first-child:hover span:after, .socket_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after {
	border-color: var(--enfold-socket-color-secondary);
}

.socket_color .avia-toc-style-elegant a:before {
	border-color: var(--enfold-socket-color-border);
}

.socket_color .avia-toc-style-elegant a:first-child:after, .socket_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	border-color: var(--enfold-socket-color-secondary);
	background-color: var(--enfold-socket-color-bg);
}

.socket_color .avia-toc-style-elegant a:last-child:after {
	background-color: var(--enfold-socket-color-border);
}

.socket_color .timeline-bullet {
	background-color: var(--enfold-socket-color-border);
	border-color: var(--enfold-socket-color-bg);
}

.socket_color table, .socket_color .widget_nav_menu ul:first-child>.current-menu-item, .socket_color .widget_nav_menu ul:first-child>.current_page_item, .socket_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .socket_color .pagination .current, .socket_color .pagination a, .socket_color.iconbox_top .iconbox_content, .socket_color .av_promobox, .socket_color .toggle_content, .socket_color .toggler:hover, #top .socket_color .av-minimal-toggle .toggler, .socket_color .related_posts_default_image, .socket_color .search-result-counter, .socket_color .container_wrap_meta, .socket_color .avia-content-slider .slide-image, .socket_color .avia-slider-testimonials .avia-testimonial-content, .socket_color .avia-testimonial-arrow-wrap .avia-arrow, .socket_color .news-thumb, .socket_color .portfolio-preview-content, .socket_color .portfolio-preview-content .avia-arrow, .socket_color .av-magazine .av-magazine-entry-icon, .socket_color .related_posts.av-related-style-full a, .socket_color .aviaccordion-slide, .socket_color.avia-fullwidth-portfolio .pagination, .socket_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .socket_color .av-catalogue-list li:hover, .socket_color .wp-playlist, .socket_color .avia-slideshow-fixed-height > li, .socket_color .avia-form-success, .socket_color .avia-form-error, .socket_color .av-boxed-grid-style .avia-testimonial {
	background: var(--enfold-socket-color-bg2);
}

#top .socket_color .post_timeline li:hover .timeline-bullet {
	background-color: var(--enfold-socket-color-secondary);
}

.socket_color blockquote, .socket_color .avia-bullet, .socket_color .av-no-color.av-icon-style-border a.av-icon-char {
	border-color: var(--enfold-socket-color-primary);
}

.html_header_top .socket_color .main_menu ul:first-child >li > ul, .html_header_top #top .socket_color .avia_mega_div > .sub-menu {
	border-top-color: var(--enfold-socket-color-primary);
}

.socket_color .breadcrumb, .socket_color .breadcrumb a, #top .socket_color.title_container .main-title, #top .socket_color.title_container .main-title a {
	color: var(--enfold-socket-color-color);
}

.socket_color .av-icon-display, #top .socket_color .av-related-style-full a:hover .related-format-icon, .socket_color .av-default-style .av-countdown-cell-inner, .socket_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top, .socket_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom, .socket_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::before, .socket_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::after, .socket_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-socket-color-bg2);
	color: var(--enfold-socket-color-meta);
}

.socket_color .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-meta);
	stroke: var(--enfold-socket-color-meta);
}

.socket_color .av-masonry-entry:hover .av-icon-display {
	background-color: var(--enfold-socket-color-primary);
	color: var(--enfold-socket-color-constant-font);
	border-color: var(--enfold-socket-color-button-border);
}

.socket_color .av-masonry-entry:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-constant-font);
	stroke: var(--enfold-socket-color-constant-font);
}

#top .socket_color .av-masonry-entry.format-quote:hover .av-icon-display {
	color: var(--enfold-socket-color-primary);
}

#top .socket_color .av-masonry-entry.format-quote:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-primary);
	stroke: var(--enfold-socket-color-primary);
}

.socket_color textarea::placeholder, .socket_color input::placeholder {
	color: var(--enfold-socket-color-meta);
	opacity: .5;
}

.socket_color .header_bg, .socket_color .main_menu ul ul, .socket_color .main_menu .menu ul li a, .socket_color .pointer_arrow_wrap .pointer_arrow, .socket_color .avia_mega_div, .socket_color .av-subnav-menu > li ul, .socket_color .av-subnav-menu a {
	background-color: var(--enfold-socket-color-bg);
	color: var(--enfold-socket-color-meta);
}

.socket_color .main_menu .menu ul li a:hover, .socket_color .main_menu .menu ul li a:focus, .socket_color .av-subnav-menu ul a:hover, .socket_color .av-subnav-menu ul a:focus {
	background-color: var(--enfold-socket-color-bg2);
}

.socket_color .sub_menu > ul > li > a, .socket_color .sub_menu > div > ul > li > a, .socket_color .main_menu ul:first-child > li > a, #top .socket_color .main_menu .menu ul .current_page_item > a, #top .socket_color .main_menu .menu ul .current-menu-item > a, #top .socket_color .sub_menu li ul a {
	color: var(--enfold-socket-color-meta);
}

.socket_color .main_menu ul:first-child > li > a svg:first-child {
	stroke: var(--enfold-socket-color-meta);
	fill: var(--enfold-socket-color-meta);
}

.socket_color .main_menu ul:first-child > li > a:hover svg:first-child, .socket_color .main_menu ul:first-child > li > a:focus svg:first-child {
	stroke: var(--enfold-socket-color-color);
	fill: var(--enfold-socket-color-color);
}

#top .socket_color .main_menu .menu ul li > a:hover, #top .socket_color .main_menu .menu ul li > a:focus {
	color: var(--enfold-socket-color-color);
}

.socket_color .av-subnav-menu a:hover, .socket_color .av-subnav-menu a:focus, .socket_color .main_menu ul:first-child > li a:hover, .socket_color .main_menu ul:first-child > li a:focus, .socket_color .main_menu ul:first-child > li.current-menu-item > a, .socket_color .main_menu ul:first-child > li.current_page_item > a, .socket_color .main_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-socket-color-color);
}

#top .socket_color .main_menu .menu .avia_mega_div ul .current-menu-item > a {
	color: var(--enfold-socket-color-primary);
}

.socket_color .sub_menu > ul > li > a:hover, .socket_color .sub_menu > ul > li > a:focus, .socket_color .sub_menu > div > ul > li > a:hover, .socket_color .sub_menu > div > ul > li > a:focus {
	color: var(--enfold-socket-color-color);
}

#top .socket_color .sub_menu ul li a:hover, #top .socket_color .sub_menu ul li a:focus, .socket_color .sub_menu ul:first-child > li.current-menu-item > a, .socket_color .sub_menu ul:first-child > li.current_page_item > a, .socket_color .sub_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-socket-color-color);
}

.socket_color .sub_menu li ul a, .socket_color #payment, .socket_color .sub_menu ul li, .socket_color .sub_menu ul, #top .socket_color .sub_menu li li a:hover, #top .socket_color .sub_menu li li a:focus {
	background-color: var(--enfold-socket-color-bg);
}

.socket_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a {
	border-color: var(--enfold-socket-color-border);
}

#top .socket_color .widget_pages ul li a:focus, #top .socket_color .widget_nav_menu ul li a:focus {
	color: var(--enfold-socket-color-secondary);
}

@media only screen and (max-width: 767px) {
	#top #wrap_all .av_header_transparency {
		background-color: var(--enfold-socket-color-bg);
		color: var(--enfold-socket-color-color);
		border-color: var(--enfold-socket-color-border);
	}
	
	#top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-socket-color-color);
		fill: var(--enfold-socket-color-color);
	}
}

@media only screen and (max-width: 989px) {
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
		background-color: var(--enfold-socket-color-bg);
		color: var(--enfold-socket-color-color);
		border-color: var(--enfold-socket-color-border);
	}
	
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-socket-color-color);
		fill: var(--enfold-socket-color-color);
	}
}

.socket_color .avia-tt, .socket_color .avia-tt .avia-arrow, .socket_color .avia-tt .avia-arrow {
	background-color: var(--enfold-socket-color-bg);
	color: var(--enfold-socket-color-meta);
}

.socket_color .av_ajax_search_image {
	background-color: var(--enfold-socket-color-primary);
	color: var(--enfold-socket-color-bg);
}

.socket_color .av_ajax_search_image.avia-svg-icon svg:first-child {
	stroke: var(--enfold-socket-color-bg);
	fill: var(--enfold-socket-color-bg);
}

.socket_color .ajax_search_excerpt {
	color: var(--enfold-socket-color-meta);
}

.socket_color .av_ajax_search_title {
	color: var(--enfold-socket-color-heading);
}

.socket_color .ajax_load {
	background-color: var(--enfold-socket-color-primary);
}

.socket_color .av_searchsubmit_wrapper {
	background-color: var(--enfold-socket-color-primary);
}

#top .socket_color .avia-color-theme-color {
	color: var(--enfold-socket-color-button-font);
	border-color: var(--enfold-socket-color-button-border);
}

#top .socket_color .avia-color-theme-color .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-button-font);
	stroke: var(--enfold-socket-color-button-font);
}

.socket_color .avia-color-theme-color-subtle {
	background-color: var(--enfold-socket-color-bg2);
	color: var(--enfold-socket-color-color);
}

#top .socket_color .avia-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-color);
	stroke: var(--enfold-socket-color-color);
}

.socket_color .avia-color-theme-color-subtle:hover {
	background-color: var(--enfold-socket-color-bg);
	color: var(--enfold-socket-color-heading);
}

#top .socket_color .avia-color-theme-color-subtle:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-heading);
	stroke: var(--enfold-socket-color-heading);
}

#top .socket_color .avia-color-theme-color-highlight {
	color: var(--enfold-socket-color-button-font);
	border-color: var(--enfold-socket-color-secondary);
	background-color: var(--enfold-socket-color-secondary);
}

#top .socket_color .avia-color-theme-color-highlight .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-button-font);
	stroke: var(--enfold-socket-color-button-font);
}

#top .socket_color .avia-font-color-theme-color, #top .socket_color .avia-font-color-theme-color-hover:hover {
	color: var(--enfold-socket-color-button-font);
}

#top .socket_color .avia-font-color-theme-color .avia-svg-icon svg:first-child, #top .socket_color .avia-font-color-theme-color-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-button-font);
	stroke: var(--enfold-socket-color-button-font);
}

.socket_color .avia-font-color-theme-color-subtle {
	color: var(--enfold-socket-color-color);
}

.socket_color .avia-font-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-color);
	stroke: var(--enfold-socket-color-color);
}

.socket_color .avia-font-color-theme-color-subtle-hover:hover {
	color: var(--enfold-socket-color-heading);
}

.socket_color .avia-font-color-theme-color-subtle-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-heading);
	stroke: var(--enfold-socket-color-heading);
}

#top .socket_color .avia-font-color-theme-color-highlight, #top .socket_color .avia-font-color-theme-color-highlight-hover:hover {
	color: var(--enfold-socket-color-button-font);
}

#top .socket_color .avia-font-color-theme-color-highlight .avia-svg-icon svg:first-child, #top .socket_color .avia-font-color-theme-color-highlight-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-button-font);
	stroke: var(--enfold-socket-color-button-font);
}

.socket_color .avia-icon-list .iconlist_icon {
	background-color: var(--enfold-socket-color-iconlist);
}

.socket_color .avia-icon-list .iconlist-timeline {
	border-color: var(--enfold-socket-color-border);
}

.socket_color .iconlist_content {
	color: var(--enfold-socket-color-meta);
}

.socket_color .avia-timeline .milestone_icon {
	background-color: var(--enfold-socket-color-timeline);
}

.socket_color .avia-timeline .milestone_inner {
	background-color: var(--enfold-socket-color-timeline);
}

.socket_color .avia-timeline {
	border-color: var(--enfold-socket-color-timeline);
}

.socket_color .av-milestone-icon-wrap:after {
	border-color: var(--enfold-socket-color-timeline);
}

.socket_color .avia-timeline .av-milestone-date {
	color: var(--enfold-socket-color-timeline-date);
}

.socket_color .avia-timeline .av-milestone-date span {
	background-color: var(--enfold-socket-color-timeline);
}

.socket_color .avia-timeline-horizontal .av-milestone-content-wrap footer {
	background-color: var(--enfold-socket-color-timeline);
}

.socket_color .av-timeline-nav a {
	background-color: var(--enfold-socket-color-timeline);
}

#top .socket_color .input-text, #top .socket_color input[type='text'], #top .socket_color input[type='input'], #top .socket_color input[type='password'], #top .socket_color input[type='email'], #top .socket_color input[type='number'], #top .socket_color input[type='url'], #top .socket_color input[type='tel'], #top .socket_color input[type='search'], #top .socket_color textarea, #top .socket_color select {
	border-color: var(--enfold-socket-color-border);
	background-color: var(--enfold-socket-color-bg2);
	color: var(--enfold-socket-color-meta);
	font-family: inherit;
}

#top .socket_color .invers-color .input-text, #top .socket_color .invers-color input[type='text'], #top .socket_color .invers-color input[type='input'], #top .socket_color .invers-color input[type='password'], #top .socket_color .invers-color input[type='email'], #top .socket_color .invers-color input[type='number'], #top .socket_color .invers-color input[type='url'], #top .socket_color .invers-color input[type='tel'], #top .socket_color .invers-color input[type='search'], #top .socket_color .invers-color textarea, #top .socket_color .invers-color select {
	background-color: var(--enfold-socket-color-bg);
}

.socket_color .required {
	color: var(--enfold-socket-color-primary);
}

.socket_color .av-masonry {
	background-color: var(--enfold-socket-color-masonry);
}

.socket_color .av-masonry-pagination, .socket_color .av-masonry-pagination:hover, .socket_color .av-masonry-outerimage-container {
	background-color: var(--enfold-socket-color-bg);
}

.socket_color .container .av-inner-masonry-content, #top .socket_color .container .av-masonry-load-more, #top .socket_color .container .av-masonry-sort, .socket_color .container .av-masonry-entry .avia-arrow {
	background-color: var(--enfold-socket-color-bg2);
}

.socket_color .hr-short .hr-inner-style, .socket_color .hr-short .hr-inner {
	background-color: var(--enfold-socket-color-bg);
}

div .socket_color .tabcontainer .active_tab_content, div .socket_color .tabcontainer .active_tab {
	background-color: var(--enfold-socket-color-bg2);
	color: var(--enfold-socket-color-color);
}

div .socket_color .tabcontainer .active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-color);
	stroke: var(--enfold-socket-color-color);
}

.responsive.js_active #top .socket_color .avia_combo_widget .top_tab .tab {
	border-top-color: var(--enfold-socket-color-border);
}

.socket_color .template-archives .tabcontainer a, #top .socket_color .tabcontainer .tab:hover, #top .socket_color .tabcontainer .tab.active_tab {
	color: var(--enfold-socket-color-color);
}

#top .socket_color .tabcontainer .tab:hover .tab_icon.avia-svg-icon svg:first-child, #top .socket_color .tabcontainer .tab.active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-socket-color-color);
	stroke: var(--enfold-socket-color-color);
}

.socket_color .template-archives .tabcontainer a:hover {
	color: var(--enfold-socket-color-secondary);
}

.socket_color .sidebar_tab_icon {
	background-color: var(--enfold-socket-color-border);
}

#top .socket_color .sidebar_active_tab .sidebar_tab_icon {
	background-color: var(--enfold-socket-color-primary);
}

.socket_color .sidebar_tab:hover .sidebar_tab_icon {
	background-color: var(--enfold-socket-color-secondary);
}

.socket_color .sidebar_tab, .socket_color .tabcontainer .tab {
	color: var(--enfold-socket-color-meta);
}

.socket_color div .sidebar_active_tab, div .socket_color .tabcontainer.noborder_tabs .active_tab_content, div .socket_color .tabcontainer.noborder_tabs .active_tab {
	color: var(--enfold-socket-color-color);
	background-color: var(--enfold-socket-color-bg);
}

#top .socket_color .avia-smallarrow-slider .avia-slideshow-dots a {
	background-color: var(--enfold-socket-color-bg2);
}

#top .socket_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .socket_color .avia-smallarrow-slider .avia-slideshow-dots a:hover {
	background-color: var(--enfold-socket-color-meta);
}

@media only screen and (max-width: 767px) {
	.responsive #top .socket_color .tabcontainer .active_tab {
		background-color: var(--enfold-socket-color-secondary);
		color: var(--enfold-socket-color-constant-font);
	}
	
	.responsive #top .socket_color .tabcontainer {
		border-color: var(--enfold-socket-color-border);
	}
	
	.responsive #top .socket_color .active_tab_content {
		background-color: var(--enfold-socket-color-bg2);
	}
}

.socket_color tr:nth-child(even), .socket_color .avia-data-table .avia-heading-row .avia-desc-col, .socket_color .avia-data-table .avia-highlight-col, .socket_color .pricing-table>li:nth-child(even), body .socket_color .pricing-table.avia-desc-col li, #top .socket_color .avia-data-table.avia_pricing_minimal th {
	background-color: var(--enfold-socket-color-bg);
	color: var(--enfold-socket-color-color);
}

.socket_color table caption, .socket_color tr:nth-child(even), .socket_color .pricing-table>li:nth-child(even), #top .socket_color .avia-data-table.avia_pricing_minimal td {
	color: var(--enfold-socket-color-meta);
}

.socket_color tr:nth-child(odd), .socket_color .pricing-table>li:nth-child(odd), .socket_color .pricing-extra {
	background: var(--enfold-socket-color-bg2);
}

.socket_color .pricing-table li.avia-pricing-row, .socket_color .pricing-table li.avia-heading-row, .socket_color .pricing-table li.avia-pricing-row .pricing-extra {
	background-color: var(--enfold-socket-color-primary);
	color: var(--enfold-socket-color-constant-font);
	border-color: var(--enfold-socket-color-stripe);
}

.socket_color .pricing-table li.avia-heading-row, .socket_color .pricing-table li.avia-heading-row .pricing-extra {
	background-color: var(--enfold-socket-color-stripe2);
	color: var(--enfold-socket-color-constant-font);
	border-color: var(--enfold-socket-color-stripe);
}

.socket_color .pricing-table.avia-desc-col .avia-heading-row, .socket_color .pricing-table.avia-desc-col .avia-pricing-row {
	border-color: var(--enfold-socket-color-border);
}

.socket_color .theme-color-bar .bar {
	background: var(--enfold-socket-color-primary);
}

.socket_color .mejs-controls .mejs-time-rail .mejs-time-current, .socket_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .socket_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .socket_color .button.av-sending-button, .socket_color .av-striped-bar .theme-color-bar .bar {
	background: var(--enfold-socket-color-primary);
}

body .socket_color .mejs-controls .mejs-time-rail .mejs-time-float {
	background: var(--enfold-socket-color-primary);
	color: #fff;
}

body .socket_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {
	border: solid 4px var(--enfold-socket-color-primary);
	border-color: var(--enfold-socket-color-primary) transparent transparent transparent;
}

.socket_color .progress {
	background-color: var(--enfold-socket-color-bg2);
}

.socket_color .av_searchform_element_results .av_ajax_search_entry, .socket_color .av_searchform_element_results .av_ajax_search_title, .socket_color.av_searchform_element_results .av_ajax_search_entry, .socket_color.av_searchform_element_results .av_ajax_search_title {
	color: var(--enfold-socket-color-primary);
}

.socket_color .av_searchform_element_results .ajax_search_excerpt, .socket_color.av_searchform_element_results .ajax_search_excerpt {
	color: var(--enfold-socket-color-meta);
}

.socket_color .av_searchform_element_results .av_ajax_search_image, .socket_color.av_searchform_element_results .av_ajax_search_image {
	color: var(--enfold-socket-color-meta);
}

.socket_color .button.av-sending-button {
	background: var(--enfold-socket-color-secondary);
	background-image: linear-gradient(-45deg, var(--enfold-socket-color-secondary) 25%, var(--enfold-socket-color-stripe2nd) 25%, var(--enfold-socket-color-stripe2nd) 50%, var(--enfold-socket-color-secondary) 50%, var(--enfold-socket-color-secondary) 75%, var(--enfold-socket-color-stripe2nd) 75%, var(--enfold-socket-color-stripe2nd));
	border-color: var(--enfold-socket-color-secondary);
}

.socket_color span.bbp-admin-links a {
	color: var(--enfold-socket-color-primary);
}

.socket_color span.bbp-admin-links a:hover {
	color: var(--enfold-socket-color-secondary);
}

#top .socket_color .bbp-reply-content, #top .socket_color .bbp-topic-content, #top .socket_color .bbp-body .super-sticky .page-numbers, #top .socket_color .bbp-body .sticky .page-numbers, #top .socket_color .bbp-pagination-links a:hover, #top .socket_color .bbp-pagination-links span.current {
	background: var(--enfold-socket-color-bg);
}

#top .socket_color .bbp-topics .bbp-header, #top .socket_color .bbp-topics .bbp-header, #top .socket_color .bbp-forums .bbp-header, #top .socket_color .bbp-topics-front ul.super-sticky, #top .socket_color .bbp-topics ul.super-sticky, #top .socket_color .bbp-topics ul.sticky, #top .socket_color .bbp-forum-content ul.sticky, #top .socket_color .bbp-body .page-numbers {
	background-color: var(--enfold-socket-color-bg2);
}

#top .socket_color .bbp-meta, #top .socket_color .bbp-author-role, #top .socket_color .bbp-author-ip, #top .socket_color .bbp-pagination-count, #top .socket_color .bbp-topics .bbp-body .bbp-topic-title:before {
	color: var(--enfold-socket-color-meta);
}

#top .socket_color .bbp-admin-links {
	color: var(--enfold-socket-color-border);
}

.socket_color #bbpress-forums li.bbp-body ul.forum, .socket_color #bbpress-forums li.bbp-body ul.topic, .avia_transform .socket_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .socket_color .bbp-reply-author:before, .avia_transform .forum-search .socket_color .bbp-topic-author:before {
	background-color: var(--enfold-socket-color-bg);
	border-color: var(--enfold-socket-color-border);
}

#top .socket_color .bbp-author-name {
	color: var(--enfold-socket-color-heading);
}

.socket_color .widget_display_stats dt, .socket_color .widget_display_stats dd {
	background-color: var(--enfold-socket-color-bg2);
}

html, #scroll-top-link, #av-cookie-consent-badge {
	background-color: var(--enfold-socket-color-bg);
}

#scroll-top-link, #av-cookie-consent-badge {
	color: var(--enfold-socket-color-color);
	border: 1px solid var(--enfold-socket-color-border);
}

#scroll-top-link.avia-svg-icon svg:first-child, #av-cookie-consent-badge.avia-svg-icon svg:first-child {
	stroke: var(--enfold-socket-color-color);
	fill: var(--enfold-socket-color-color);
}

.footer_color, .footer_color div, .footer_color header, .footer_color main, .footer_color aside, .footer_color footer, .footer_color article, .footer_color nav, .footer_color section, .footer_color span, .footer_color applet, .footer_color object, .footer_color iframe, .footer_color h1, .footer_color h2, .footer_color h3, .footer_color h4, .footer_color h5, .footer_color h6, .footer_color p, .footer_color blockquote, .footer_color pre, .footer_color a, .footer_color abbr, .footer_color acronym, .footer_color address, .footer_color big, .footer_color cite, .footer_color code, .footer_color del, .footer_color dfn, .footer_color em, .footer_color img, .footer_color ins, .footer_color kbd, .footer_color q, .footer_color s, .footer_color samp, .footer_color small, .footer_color strike, .footer_color strong, .footer_color sub, .footer_color sup, .footer_color tt, .footer_color var, .footer_color b, .footer_color u, .footer_color i, .footer_color center, .footer_color dl, .footer_color dt, .footer_color dd, .footer_color ol, .footer_color ul, .footer_color li, .footer_color fieldset, .footer_color form, .footer_color label, .footer_color legend, .footer_color table, .footer_color caption, .footer_color tbody, .footer_color tfoot, .footer_color thead, .footer_color tr, .footer_color th, .footer_color td, .footer_color article, .footer_color aside, .footer_color canvas, .footer_color details, .footer_color embed, .footer_color figure, .footer_color fieldset, .footer_color figcaption, .footer_color footer, .footer_color header, .footer_color hgroup, .footer_color menu, .footer_color nav, .footer_color output, .footer_color ruby, .footer_color section, .footer_color summary, .footer_color time, .footer_color mark, .footer_color audio, .footer_color video, #top .footer_color .pullquote_boxed, .responsive #top .footer_color .avia-testimonial, .responsive #top.avia-blank #main .footer_color.container_wrap:first-child, #top .footer_color.fullsize .template-blog .post_delimiter, .footer_color .related_posts.av-related-style-full a {
	border-color: var(--enfold-footer-color-border);
}

.footer_color .rounded-container, #top .footer_color .pagination a:hover, .footer_color .small-preview, .footer_color .fallback-post-type-icon {
	background: var(--enfold-footer-color-meta);
	color: var(--enfold-footer-color-bg);
}

.footer_color .rounded-container .avia-svg-icon svg:first-child, .footer_color .small-preview .avia-svg-icon svg:first-child, .footer_color .fallback-post-type-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-bg);
	stroke: var(--enfold-footer-color-bg);
}

.footer_color .av-default-color, #top .footer_color .av-force-default-color, .footer_color .av-catalogue-item, .footer_color .wp-playlist-item .wp-playlist-caption, .footer_color .wp-playlist {
	color: var(--enfold-footer-color-color);
}

.footer_color, .footer_color .site-background, .footer_color .first-quote, .footer_color .related_image_wrap, .footer_color .gravatar img
.footer_color .hr_content, .footer_color .news-thumb, .footer_color .post-format-icon, .footer_color .ajax_controlls a, .footer_color .tweet-text.avatar_no, .footer_color .toggler, .footer_color .toggler.activeTitle:hover, .footer_color #js_sort_items, .footer_color.inner-entry, .footer_color .grid-entry-title, .footer_color .related-format-icon, .grid-entry .footer_color .avia-arrow, .footer_color .avia-gallery-big, .footer_color .avia-gallery-big, .footer_color .avia-gallery img, .footer_color .grid-content, .footer_color .av-share-box ul, #top .footer_color .av-related-style-full .related-format-icon, .footer_color .related_posts.av-related-style-full a:hover, .footer_color.avia-fullwidth-portfolio .pagination .current, .footer_color.avia-fullwidth-portfolio .pagination a, .footer_color .av-hotspot-fallback-tooltip-inner, .footer_color .av-hotspot-fallback-tooltip-count {
	background-color: var(--enfold-footer-color-bg);
	color: var(--enfold-footer-color-color);
}

.footer_color .ajax_controlls a.avia-svg-icon svg:first-child, .footer_color .avia-svg-icon svg:first-child, .footer_color .av-share-box ul li svg:first-child, #top .footer_color .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
	stroke: var(--enfold-footer-color-color);
	fill: var(--enfold-footer-color-color);
}

.footer_color .avia-fold-unfold-section .av-fold-unfold-container::after {
	background: linear-gradient(to bottom, rgba(112, 149, 39, 0), rgba(112, 149, 39, 1));
}

.footer_color .avia-fold-unfold-section .av-fold-button-container:not(.avia-button), .footer_color.avia-fold-unfold-section .av-fold-button-container:not(.avia-button) {
	color: var(--enfold-footer-color-color);
}

.footer_color .avia-fold-unfold-section .av-fold-button-container.fold-button {
	background: var(--enfold-footer-color-bg);
	border-color: var(--enfold-footer-color-border);
}

.footer_color .avia-curtain-reveal-overlay {
	background: var(--enfold-footer-color-bg);
}

.footer_color .avia-icon-circles-icon {
	background: var(--enfold-footer-color-bg);
	border-color: var(--enfold-footer-color-border);
	color: var(--enfold-footer-color-color);
}

.footer_color .avia-icon-circles-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-color);
	stroke: var(--enfold-footer-color-color);
}

.footer_color .avia-icon-circles-icon.active {
	background: var(--enfold-footer-color-secondary);
	border-color: var(--enfold-footer-color-secondary);
	color: var(--enfold-footer-color-bg);
}

.footer_color .avia-icon-circles-icon.avia-svg-icon.active  svg:first-child {
	fill: var(--enfold-footer-color-bg);
	stroke: var(--enfold-footer-color-bg);
}

.footer_color .avia-icon-circles-icon-text {
	color: var(--enfold-footer-color-color);
	background: var(--enfold-footer-color-bg);
}

.footer_color .heading-color, .footer_color a.iconbox_icon:hover, .footer_color h1, .footer_color h2, .footer_color h3, .footer_color h4, .footer_color h5, .footer_color h6, .footer_color .sidebar .current_page_item>a, .footer_color .sidebar .current-menu-item>a, .footer_color .pagination .current, .footer_color .pagination a:hover, .footer_color strong.avia-testimonial-name, .footer_color .heading, .footer_color .toggle_content strong, .footer_color .toggle_content strong a, .footer_color .tab_content strong, .footer_color .tab_content strong a, .footer_color .asc_count, .footer_color .avia-testimonial-content strong, #top .footer_color .av-related-style-full .av-related-title, .footer_color .wp-playlist-item-meta.wp-playlist-item-title, #top .footer_color .av-no-image-slider h2 a, .footer_color .av-small-bar .avia-progress-bar .progressbar-title-wrap, .footer_color div .news-headline .news-title, .footer_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .footer_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top.card-time-color, .footer_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom.card-time-color, .footer_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back.card-time-color::before, .footer_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock__card .flip-clock-counter {
	color: var(--enfold-footer-color-heading);
}

.footer_color .heading .avia-svg-icon svg:first-child, .footer_color .av-special-heading .avia-svg-icon svg:first-child, .footer_color a.iconbox_icon.avia-svg-icon:hover svg:first-child, .footer_color .iconbox_icon.heading-color.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-heading);
	stroke: var(--enfold-footer-color-heading);
}

.footer_color .av-countdown-timer.av-events-countdown a .av-countdown-time-label {
	color: var(--enfold-footer-color-color);
}

.footer_color .meta-color, .footer_color .sidebar, .footer_color .sidebar a, .footer_color .minor-meta, .footer_color .minor-meta a, .footer_color .text-sep, .footer_color blockquote, .footer_color .post_nav a, .footer_color .comment-text, .footer_color .side-container-inner, .footer_color .news-time, .footer_color .pagination a, .footer_color .pagination span, .footer_color .tweet-text.avatar_no .tweet-time, #top .footer_color .extra-mini-title, .footer_color .team-member-job-title, .footer_color .team-social a, .footer_color #js_sort_items a, .grid-entry-excerpt, .footer_color .avia-testimonial-subtitle, .footer_color .commentmetadata a, .footer_color .social_bookmarks a, .footer_color .meta-heading > *, .footer_color .slide-meta, .footer_color .slide-meta a, .footer_color .taglist, .footer_color .taglist a, .footer_color .phone-info, .footer_color .phone-info a, .footer_color .av-sort-by-term a, .footer_color .av-magazine-time, .footer_color .av-magazine .av-magazine-entry-icon, .footer_color .av-catalogue-content, .footer_color .wp-playlist-item-length, .html_modern-blog #top div .footer_color .blog-categories a, .html_modern-blog #top div .footer_color .blog-categories a:hover {
	color: var(--enfold-footer-color-meta);
}

.footer_color .team-social a.avia-svg-icon svg:first-child, .footer_color .meta-heading .avia-svg-icon svg:first-child, .footer_color .social_bookmarks .avia-svg-icon a svg:first-child {
	stroke: var(--enfold-footer-color-meta);
	fill: var(--enfold-footer-color-meta);
}

.footer_color .team-social a.avia-svg-icon:hover svg:first-child {
	stroke: var(--enfold-footer-color-secondary);
	fill: var(--enfold-footer-color-secondary);
}

.footer_color .special-heading-inner-border {
	border-color: var(--enfold-footer-color-color);
}

.footer_color .meta-heading .special-heading-inner-border {
	border-color: var(--enfold-footer-color-meta);
}

.footer_color a, .footer_color .widget_first, .footer_color strong, .footer_color b, .footer_color b a, .footer_color strong a, .footer_color #js_sort_items a:hover, .footer_color #js_sort_items a.active_sort, .footer_color .av-sort-by-term a.active_sort, .footer_color .special_amp, .footer_color .taglist a.activeFilter, .footer_color #commentform .required, #top .footer_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .footer_color .blog-categories a, .html_elegant-blog #top .footer_color .blog-categories a:hover {
	color: var(--enfold-footer-color-primary);
}

.footer_color a.avia-button .avia-svg-icon svg:first-child, .footer_color a.more-link .avia-svg-icon svg:first-child, #top .footer_color .av-no-color.av-icon-style-border a.av-icon-char svg:first-child {
	stroke: var(--enfold-footer-color-primary);
	fill: var(--enfold-footer-color-primary);
}

.footer_color a:hover, .footer_color h1 a:hover, .footer_color h2 a:hover, .footer_color h3 a:hover, .footer_color h4 a:hover, .footer_color h5 a:hover, .footer_color h6 a:hover, .footer_color .template-search  a.news-content:hover, .footer_color .wp-playlist-item .wp-playlist-caption:hover {
	color: var(--enfold-footer-color-secondary);
}

.footer_color a.more-link:hover .avia-svg-icon svg:first-child {
	stroke: var(--enfold-footer-color-secondary);
	fill: var(--enfold-footer-color-secondary);
}

.footer_color .primary-background, .footer_color .primary-background a, div .footer_color .button, .footer_color #submit, .footer_color input[type='submit'], .footer_color .small-preview:hover, .footer_color .avia-menu-fx, .footer_color .avia-menu-fx .avia-arrow, .footer_color.iconbox_top .iconbox_icon, .footer_color .iconbox_top a.iconbox_icon:hover, .footer_color .avia-data-table th.avia-highlight-col, .footer_color .avia-color-theme-color, .footer_color .avia-color-theme-color:hover, .footer_color .image-overlay .image-overlay-inside:before, .footer_color .comment-count, .footer_color .av_dropcap2, .responsive #top .footer_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .footer_color .av-open-submenu.av-subnav-menu li > ul a:hover, .footer_color .av-colored-style .av-countdown-cell-inner, .footer_color .wc-block-components-button:not(.is-link) {
	background-color: var(--enfold-footer-color-primary);
	color: var(--enfold-footer-color-constant-font);
	border-color: var(--enfold-footer-color-button-border);
}

.footer_color #searchform .av_searchform_search.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-constant-font);
	stroke: var(--enfold-footer-color-constant-font);
}

.footer_color .av_searchform_wrapper .av-search-icon:not(.av-input-field-icon) {
	color: var(--enfold-footer-color-constant-font);
}

.footer_color .av_searchform_wrapper .av-search-icon.avia-svg-icon:not(.av-input-field-icon) svg:first-child {
	fill: var(--enfold-footer-color-constant-font);
	stroke: var(--enfold-footer-color-constant-font);
}

.footer_color a.avia-button:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-secondary);
	stroke: var(--enfold-footer-color-secondary);
}

.footer_color.iconbox_top .iconbox_icon.avia-svg-icon svg:first-child, .footer_color .iconbox_top a.iconbox_icon.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-footer-color-constant-font);
	stroke: var(--enfold-footer-color-constant-font);
}

.footer_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__top, .footer_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__bottom, .footer_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::before, .footer_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::after, .footer_color .av-colored-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-footer-color-primary);
	color: var(--enfold-footer-color-constant-font);
}

#top #wrap_all .footer_color .av-menu-button-colored > a .avia-menu-text {
	background-color: var(--enfold-footer-color-primary);
	color: var(--enfold-footer-color-constant-font);
	border-color: var(--enfold-footer-color-primary);
}

#top #wrap_all .footer_color .av-menu-button-colored > a .avia-menu-text:after {
	background-color: var(--enfold-footer-color-button-border);
}

#top .footer_color .mobile_menu_toggle {
	color: var(--enfold-footer-color-primary);
	background: var(--enfold-footer-color-bg);
}

#top .footer_color .mobile_menu_toggle .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-primary);
	stroke: var(--enfold-footer-color-primary);
}

#top .footer_color .av-menu-mobile-active .av-subnav-menu > li > a:before {
	color: var(--enfold-footer-color-primary);
}

#top .footer_color .av-open-submenu.av-subnav-menu > li > a:hover:before {
	color: var(--enfold-footer-color-bg);
}

.footer_color .button:hover, .footer_color .ajax_controlls a:hover, .footer_color #submit:hover, .footer_color .big_button:hover, .footer_color .contentSlideControlls a:hover, .footer_color #submit:hover, .footer_color input[type='submit']:hover {
	background-color: var(--enfold-footer-color-secondary);
	color: var(--enfold-footer-color-bg);
	border-color: var(--enfold-footer-color-button-border2);
}

.footer_color #searchform .av_searchform_search.avia-svg-icon svg:first-child:hover {
	fill: var(--enfold-footer-color-bg);
	stroke: var(--enfold-footer-color-bg);
}

.footer_color #searchform .av_searchform_search.avia-svg-icon:hover ~ #searchsubmit {
	background-color: var(--enfold-footer-color-secondary);
	border-color: var(--enfold-footer-color-button-border2);
}

.footer_color .ajax_controlls a.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-footer-color-bg);
	stroke: var(--enfold-footer-color-bg);
}

.footer_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after, .footer_color .avia-toc-style-elegant a:first-child:after, .footer_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	background-color: var(--enfold-footer-color-bg);
	border-color: var(--enfold-footer-color-secondary);
}

.footer_color .avia-toc-style-elegant a:first-child span:after, .footer_color .avia-toc-style-elegant a.avia-toc-level-0 span:after {
	background-color: var(--enfold-footer-color-bg);
}

.footer_color .avia-toc-style-elegant a:first-child:hover span:after, .footer_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after {
	border-color: var(--enfold-footer-color-secondary);
}

.footer_color .avia-toc-style-elegant a:before {
	border-color: var(--enfold-footer-color-border);
}

.footer_color .avia-toc-style-elegant a:first-child:after, .footer_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	border-color: var(--enfold-footer-color-secondary);
	background-color: var(--enfold-footer-color-bg);
}

.footer_color .avia-toc-style-elegant a:last-child:after {
	background-color: var(--enfold-footer-color-border);
}

.footer_color .timeline-bullet {
	background-color: var(--enfold-footer-color-border);
	border-color: var(--enfold-footer-color-bg);
}

.footer_color table, .footer_color .widget_nav_menu ul:first-child>.current-menu-item, .footer_color .widget_nav_menu ul:first-child>.current_page_item, .footer_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .footer_color .pagination .current, .footer_color .pagination a, .footer_color.iconbox_top .iconbox_content, .footer_color .av_promobox, .footer_color .toggle_content, .footer_color .toggler:hover, #top .footer_color .av-minimal-toggle .toggler, .footer_color .related_posts_default_image, .footer_color .search-result-counter, .footer_color .container_wrap_meta, .footer_color .avia-content-slider .slide-image, .footer_color .avia-slider-testimonials .avia-testimonial-content, .footer_color .avia-testimonial-arrow-wrap .avia-arrow, .footer_color .news-thumb, .footer_color .portfolio-preview-content, .footer_color .portfolio-preview-content .avia-arrow, .footer_color .av-magazine .av-magazine-entry-icon, .footer_color .related_posts.av-related-style-full a, .footer_color .aviaccordion-slide, .footer_color.avia-fullwidth-portfolio .pagination, .footer_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .footer_color .av-catalogue-list li:hover, .footer_color .wp-playlist, .footer_color .avia-slideshow-fixed-height > li, .footer_color .avia-form-success, .footer_color .avia-form-error, .footer_color .av-boxed-grid-style .avia-testimonial {
	background: var(--enfold-footer-color-bg2);
}

#top .footer_color .post_timeline li:hover .timeline-bullet {
	background-color: var(--enfold-footer-color-secondary);
}

.footer_color blockquote, .footer_color .avia-bullet, .footer_color .av-no-color.av-icon-style-border a.av-icon-char {
	border-color: var(--enfold-footer-color-primary);
}

.html_header_top .footer_color .main_menu ul:first-child >li > ul, .html_header_top #top .footer_color .avia_mega_div > .sub-menu {
	border-top-color: var(--enfold-footer-color-primary);
}

.footer_color .breadcrumb, .footer_color .breadcrumb a, #top .footer_color.title_container .main-title, #top .footer_color.title_container .main-title a {
	color: var(--enfold-footer-color-color);
}

.footer_color .av-icon-display, #top .footer_color .av-related-style-full a:hover .related-format-icon, .footer_color .av-default-style .av-countdown-cell-inner, .footer_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top, .footer_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom, .footer_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::before, .footer_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::after, .footer_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-footer-color-bg2);
	color: var(--enfold-footer-color-meta);
}

.footer_color .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-meta);
	stroke: var(--enfold-footer-color-meta);
}

.footer_color .av-masonry-entry:hover .av-icon-display {
	background-color: var(--enfold-footer-color-primary);
	color: var(--enfold-footer-color-constant-font);
	border-color: var(--enfold-footer-color-button-border);
}

.footer_color .av-masonry-entry:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-constant-font);
	stroke: var(--enfold-footer-color-constant-font);
}

#top .footer_color .av-masonry-entry.format-quote:hover .av-icon-display {
	color: var(--enfold-footer-color-primary);
}

#top .footer_color .av-masonry-entry.format-quote:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-primary);
	stroke: var(--enfold-footer-color-primary);
}

.footer_color textarea::placeholder, .footer_color input::placeholder {
	color: var(--enfold-footer-color-meta);
	opacity: .5;
}

.footer_color .header_bg, .footer_color .main_menu ul ul, .footer_color .main_menu .menu ul li a, .footer_color .pointer_arrow_wrap .pointer_arrow, .footer_color .avia_mega_div, .footer_color .av-subnav-menu > li ul, .footer_color .av-subnav-menu a {
	background-color: var(--enfold-footer-color-bg);
	color: var(--enfold-footer-color-meta);
}

.footer_color .main_menu .menu ul li a:hover, .footer_color .main_menu .menu ul li a:focus, .footer_color .av-subnav-menu ul a:hover, .footer_color .av-subnav-menu ul a:focus {
	background-color: var(--enfold-footer-color-bg2);
}

.footer_color .sub_menu > ul > li > a, .footer_color .sub_menu > div > ul > li > a, .footer_color .main_menu ul:first-child > li > a, #top .footer_color .main_menu .menu ul .current_page_item > a, #top .footer_color .main_menu .menu ul .current-menu-item > a, #top .footer_color .sub_menu li ul a {
	color: var(--enfold-footer-color-meta);
}

.footer_color .main_menu ul:first-child > li > a svg:first-child {
	stroke: var(--enfold-footer-color-meta);
	fill: var(--enfold-footer-color-meta);
}

.footer_color .main_menu ul:first-child > li > a:hover svg:first-child, .footer_color .main_menu ul:first-child > li > a:focus svg:first-child {
	stroke: var(--enfold-footer-color-color);
	fill: var(--enfold-footer-color-color);
}

#top .footer_color .main_menu .menu ul li > a:hover, #top .footer_color .main_menu .menu ul li > a:focus {
	color: var(--enfold-footer-color-color);
}

.footer_color .av-subnav-menu a:hover, .footer_color .av-subnav-menu a:focus, .footer_color .main_menu ul:first-child > li a:hover, .footer_color .main_menu ul:first-child > li a:focus, .footer_color .main_menu ul:first-child > li.current-menu-item > a, .footer_color .main_menu ul:first-child > li.current_page_item > a, .footer_color .main_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-footer-color-color);
}

#top .footer_color .main_menu .menu .avia_mega_div ul .current-menu-item > a {
	color: var(--enfold-footer-color-primary);
}

.footer_color .sub_menu > ul > li > a:hover, .footer_color .sub_menu > ul > li > a:focus, .footer_color .sub_menu > div > ul > li > a:hover, .footer_color .sub_menu > div > ul > li > a:focus {
	color: var(--enfold-footer-color-color);
}

#top .footer_color .sub_menu ul li a:hover, #top .footer_color .sub_menu ul li a:focus, .footer_color .sub_menu ul:first-child > li.current-menu-item > a, .footer_color .sub_menu ul:first-child > li.current_page_item > a, .footer_color .sub_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-footer-color-color);
}

.footer_color .sub_menu li ul a, .footer_color #payment, .footer_color .sub_menu ul li, .footer_color .sub_menu ul, #top .footer_color .sub_menu li li a:hover, #top .footer_color .sub_menu li li a:focus {
	background-color: var(--enfold-footer-color-bg);
}

.footer_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a {
	border-color: var(--enfold-footer-color-border);
}

#top .footer_color .widget_pages ul li a:focus, #top .footer_color .widget_nav_menu ul li a:focus {
	color: var(--enfold-footer-color-secondary);
}

@media only screen and (max-width: 767px) {
	#top #wrap_all .av_header_transparency {
		background-color: var(--enfold-footer-color-bg);
		color: var(--enfold-footer-color-color);
		border-color: var(--enfold-footer-color-border);
	}
	
	#top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-footer-color-color);
		fill: var(--enfold-footer-color-color);
	}
}

@media only screen and (max-width: 989px) {
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
		background-color: var(--enfold-footer-color-bg);
		color: var(--enfold-footer-color-color);
		border-color: var(--enfold-footer-color-border);
	}
	
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-footer-color-color);
		fill: var(--enfold-footer-color-color);
	}
}

.footer_color .avia-tt, .footer_color .avia-tt .avia-arrow, .footer_color .avia-tt .avia-arrow {
	background-color: var(--enfold-footer-color-bg);
	color: var(--enfold-footer-color-meta);
}

.footer_color .av_ajax_search_image {
	background-color: var(--enfold-footer-color-primary);
	color: var(--enfold-footer-color-bg);
}

.footer_color .av_ajax_search_image.avia-svg-icon svg:first-child {
	stroke: var(--enfold-footer-color-bg);
	fill: var(--enfold-footer-color-bg);
}

.footer_color .ajax_search_excerpt {
	color: var(--enfold-footer-color-meta);
}

.footer_color .av_ajax_search_title {
	color: var(--enfold-footer-color-heading);
}

.footer_color .ajax_load {
	background-color: var(--enfold-footer-color-primary);
}

.footer_color .av_searchsubmit_wrapper {
	background-color: var(--enfold-footer-color-primary);
}

#top .footer_color .avia-color-theme-color {
	color: var(--enfold-footer-color-button-font);
	border-color: var(--enfold-footer-color-button-border);
}

#top .footer_color .avia-color-theme-color .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-button-font);
	stroke: var(--enfold-footer-color-button-font);
}

.footer_color .avia-color-theme-color-subtle {
	background-color: var(--enfold-footer-color-bg2);
	color: var(--enfold-footer-color-color);
}

#top .footer_color .avia-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-color);
	stroke: var(--enfold-footer-color-color);
}

.footer_color .avia-color-theme-color-subtle:hover {
	background-color: var(--enfold-footer-color-bg);
	color: var(--enfold-footer-color-heading);
}

#top .footer_color .avia-color-theme-color-subtle:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-heading);
	stroke: var(--enfold-footer-color-heading);
}

#top .footer_color .avia-color-theme-color-highlight {
	color: var(--enfold-footer-color-button-font);
	border-color: var(--enfold-footer-color-secondary);
	background-color: var(--enfold-footer-color-secondary);
}

#top .footer_color .avia-color-theme-color-highlight .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-button-font);
	stroke: var(--enfold-footer-color-button-font);
}

#top .footer_color .avia-font-color-theme-color, #top .footer_color .avia-font-color-theme-color-hover:hover {
	color: var(--enfold-footer-color-button-font);
}

#top .footer_color .avia-font-color-theme-color .avia-svg-icon svg:first-child, #top .footer_color .avia-font-color-theme-color-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-button-font);
	stroke: var(--enfold-footer-color-button-font);
}

.footer_color .avia-font-color-theme-color-subtle {
	color: var(--enfold-footer-color-color);
}

.footer_color .avia-font-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-color);
	stroke: var(--enfold-footer-color-color);
}

.footer_color .avia-font-color-theme-color-subtle-hover:hover {
	color: var(--enfold-footer-color-heading);
}

.footer_color .avia-font-color-theme-color-subtle-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-heading);
	stroke: var(--enfold-footer-color-heading);
}

#top .footer_color .avia-font-color-theme-color-highlight, #top .footer_color .avia-font-color-theme-color-highlight-hover:hover {
	color: var(--enfold-footer-color-button-font);
}

#top .footer_color .avia-font-color-theme-color-highlight .avia-svg-icon svg:first-child, #top .footer_color .avia-font-color-theme-color-highlight-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-button-font);
	stroke: var(--enfold-footer-color-button-font);
}

.footer_color .avia-icon-list .iconlist_icon {
	background-color: var(--enfold-footer-color-iconlist);
}

.footer_color .avia-icon-list .iconlist-timeline {
	border-color: var(--enfold-footer-color-border);
}

.footer_color .iconlist_content {
	color: var(--enfold-footer-color-meta);
}

.footer_color .avia-timeline .milestone_icon {
	background-color: var(--enfold-footer-color-timeline);
}

.footer_color .avia-timeline .milestone_inner {
	background-color: var(--enfold-footer-color-timeline);
}

.footer_color .avia-timeline {
	border-color: var(--enfold-footer-color-timeline);
}

.footer_color .av-milestone-icon-wrap:after {
	border-color: var(--enfold-footer-color-timeline);
}

.footer_color .avia-timeline .av-milestone-date {
	color: var(--enfold-footer-color-timeline-date);
}

.footer_color .avia-timeline .av-milestone-date span {
	background-color: var(--enfold-footer-color-timeline);
}

.footer_color .avia-timeline-horizontal .av-milestone-content-wrap footer {
	background-color: var(--enfold-footer-color-timeline);
}

.footer_color .av-timeline-nav a {
	background-color: var(--enfold-footer-color-timeline);
}

#top .footer_color .input-text, #top .footer_color input[type='text'], #top .footer_color input[type='input'], #top .footer_color input[type='password'], #top .footer_color input[type='email'], #top .footer_color input[type='number'], #top .footer_color input[type='url'], #top .footer_color input[type='tel'], #top .footer_color input[type='search'], #top .footer_color textarea, #top .footer_color select {
	border-color: var(--enfold-footer-color-border);
	background-color: var(--enfold-footer-color-bg2);
	color: var(--enfold-footer-color-meta);
	font-family: inherit;
}

#top .footer_color .invers-color .input-text, #top .footer_color .invers-color input[type='text'], #top .footer_color .invers-color input[type='input'], #top .footer_color .invers-color input[type='password'], #top .footer_color .invers-color input[type='email'], #top .footer_color .invers-color input[type='number'], #top .footer_color .invers-color input[type='url'], #top .footer_color .invers-color input[type='tel'], #top .footer_color .invers-color input[type='search'], #top .footer_color .invers-color textarea, #top .footer_color .invers-color select {
	background-color: var(--enfold-footer-color-bg);
}

.footer_color .required {
	color: var(--enfold-footer-color-primary);
}

.footer_color .av-masonry {
	background-color: var(--enfold-footer-color-masonry);
}

.footer_color .av-masonry-pagination, .footer_color .av-masonry-pagination:hover, .footer_color .av-masonry-outerimage-container {
	background-color: var(--enfold-footer-color-bg);
}

.footer_color .container .av-inner-masonry-content, #top .footer_color .container .av-masonry-load-more, #top .footer_color .container .av-masonry-sort, .footer_color .container .av-masonry-entry .avia-arrow {
	background-color: var(--enfold-footer-color-bg2);
}

.footer_color .hr-short .hr-inner-style, .footer_color .hr-short .hr-inner {
	background-color: var(--enfold-footer-color-bg);
}

div .footer_color .tabcontainer .active_tab_content, div .footer_color .tabcontainer .active_tab {
	background-color: var(--enfold-footer-color-bg2);
	color: var(--enfold-footer-color-color);
}

div .footer_color .tabcontainer .active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-color);
	stroke: var(--enfold-footer-color-color);
}

.responsive.js_active #top .footer_color .avia_combo_widget .top_tab .tab {
	border-top-color: var(--enfold-footer-color-border);
}

.footer_color .template-archives .tabcontainer a, #top .footer_color .tabcontainer .tab:hover, #top .footer_color .tabcontainer .tab.active_tab {
	color: var(--enfold-footer-color-color);
}

#top .footer_color .tabcontainer .tab:hover .tab_icon.avia-svg-icon svg:first-child, #top .footer_color .tabcontainer .tab.active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-footer-color-color);
	stroke: var(--enfold-footer-color-color);
}

.footer_color .template-archives .tabcontainer a:hover {
	color: var(--enfold-footer-color-secondary);
}

.footer_color .sidebar_tab_icon {
	background-color: var(--enfold-footer-color-border);
}

#top .footer_color .sidebar_active_tab .sidebar_tab_icon {
	background-color: var(--enfold-footer-color-primary);
}

.footer_color .sidebar_tab:hover .sidebar_tab_icon {
	background-color: var(--enfold-footer-color-secondary);
}

.footer_color .sidebar_tab, .footer_color .tabcontainer .tab {
	color: var(--enfold-footer-color-meta);
}

.footer_color div .sidebar_active_tab, div .footer_color .tabcontainer.noborder_tabs .active_tab_content, div .footer_color .tabcontainer.noborder_tabs .active_tab {
	color: var(--enfold-footer-color-color);
	background-color: var(--enfold-footer-color-bg);
}

#top .footer_color .avia-smallarrow-slider .avia-slideshow-dots a {
	background-color: var(--enfold-footer-color-bg2);
}

#top .footer_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .footer_color .avia-smallarrow-slider .avia-slideshow-dots a:hover {
	background-color: var(--enfold-footer-color-meta);
}

@media only screen and (max-width: 767px) {
	.responsive #top .footer_color .tabcontainer .active_tab {
		background-color: var(--enfold-footer-color-secondary);
		color: var(--enfold-footer-color-constant-font);
	}
	
	.responsive #top .footer_color .tabcontainer {
		border-color: var(--enfold-footer-color-border);
	}
	
	.responsive #top .footer_color .active_tab_content {
		background-color: var(--enfold-footer-color-bg2);
	}
}

.footer_color tr:nth-child(even), .footer_color .avia-data-table .avia-heading-row .avia-desc-col, .footer_color .avia-data-table .avia-highlight-col, .footer_color .pricing-table>li:nth-child(even), body .footer_color .pricing-table.avia-desc-col li, #top .footer_color .avia-data-table.avia_pricing_minimal th {
	background-color: var(--enfold-footer-color-bg);
	color: var(--enfold-footer-color-color);
}

.footer_color table caption, .footer_color tr:nth-child(even), .footer_color .pricing-table>li:nth-child(even), #top .footer_color .avia-data-table.avia_pricing_minimal td {
	color: var(--enfold-footer-color-meta);
}

.footer_color tr:nth-child(odd), .footer_color .pricing-table>li:nth-child(odd), .footer_color .pricing-extra {
	background: var(--enfold-footer-color-bg2);
}

.footer_color .pricing-table li.avia-pricing-row, .footer_color .pricing-table li.avia-heading-row, .footer_color .pricing-table li.avia-pricing-row .pricing-extra {
	background-color: var(--enfold-footer-color-primary);
	color: var(--enfold-footer-color-constant-font);
	border-color: var(--enfold-footer-color-stripe);
}

.footer_color .pricing-table li.avia-heading-row, .footer_color .pricing-table li.avia-heading-row .pricing-extra {
	background-color: var(--enfold-footer-color-stripe2);
	color: var(--enfold-footer-color-constant-font);
	border-color: var(--enfold-footer-color-stripe);
}

.footer_color .pricing-table.avia-desc-col .avia-heading-row, .footer_color .pricing-table.avia-desc-col .avia-pricing-row {
	border-color: var(--enfold-footer-color-border);
}

.footer_color .theme-color-bar .bar {
	background: var(--enfold-footer-color-primary);
}

.footer_color .mejs-controls .mejs-time-rail .mejs-time-current, .footer_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .footer_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .footer_color .button.av-sending-button, .footer_color .av-striped-bar .theme-color-bar .bar {
	background: var(--enfold-footer-color-primary);
}

body .footer_color .mejs-controls .mejs-time-rail .mejs-time-float {
	background: var(--enfold-footer-color-primary);
	color: #fff;
}

body .footer_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {
	border: solid 4px var(--enfold-footer-color-primary);
	border-color: var(--enfold-footer-color-primary) transparent transparent transparent;
}

.footer_color .progress {
	background-color: var(--enfold-footer-color-bg2);
}

.footer_color .av_searchform_element_results .av_ajax_search_entry, .footer_color .av_searchform_element_results .av_ajax_search_title, .footer_color.av_searchform_element_results .av_ajax_search_entry, .footer_color.av_searchform_element_results .av_ajax_search_title {
	color: var(--enfold-footer-color-primary);
}

.footer_color .av_searchform_element_results .ajax_search_excerpt, .footer_color.av_searchform_element_results .ajax_search_excerpt {
	color: var(--enfold-footer-color-meta);
}

.footer_color .av_searchform_element_results .av_ajax_search_image, .footer_color.av_searchform_element_results .av_ajax_search_image {
	color: var(--enfold-footer-color-meta);
}

.footer_color .button.av-sending-button {
	background: var(--enfold-footer-color-secondary);
	background-image: linear-gradient(-45deg, var(--enfold-footer-color-secondary) 25%, var(--enfold-footer-color-stripe2nd) 25%, var(--enfold-footer-color-stripe2nd) 50%, var(--enfold-footer-color-secondary) 50%, var(--enfold-footer-color-secondary) 75%, var(--enfold-footer-color-stripe2nd) 75%, var(--enfold-footer-color-stripe2nd));
	border-color: var(--enfold-footer-color-secondary);
}

.footer_color span.bbp-admin-links a {
	color: var(--enfold-footer-color-primary);
}

.footer_color span.bbp-admin-links a:hover {
	color: var(--enfold-footer-color-secondary);
}

#top .footer_color .bbp-reply-content, #top .footer_color .bbp-topic-content, #top .footer_color .bbp-body .super-sticky .page-numbers, #top .footer_color .bbp-body .sticky .page-numbers, #top .footer_color .bbp-pagination-links a:hover, #top .footer_color .bbp-pagination-links span.current {
	background: var(--enfold-footer-color-bg);
}

#top .footer_color .bbp-topics .bbp-header, #top .footer_color .bbp-topics .bbp-header, #top .footer_color .bbp-forums .bbp-header, #top .footer_color .bbp-topics-front ul.super-sticky, #top .footer_color .bbp-topics ul.super-sticky, #top .footer_color .bbp-topics ul.sticky, #top .footer_color .bbp-forum-content ul.sticky, #top .footer_color .bbp-body .page-numbers {
	background-color: var(--enfold-footer-color-bg2);
}

#top .footer_color .bbp-meta, #top .footer_color .bbp-author-role, #top .footer_color .bbp-author-ip, #top .footer_color .bbp-pagination-count, #top .footer_color .bbp-topics .bbp-body .bbp-topic-title:before {
	color: var(--enfold-footer-color-meta);
}

#top .footer_color .bbp-admin-links {
	color: var(--enfold-footer-color-border);
}

.footer_color #bbpress-forums li.bbp-body ul.forum, .footer_color #bbpress-forums li.bbp-body ul.topic, .avia_transform .footer_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .footer_color .bbp-reply-author:before, .avia_transform .forum-search .footer_color .bbp-topic-author:before {
	background-color: var(--enfold-footer-color-bg);
	border-color: var(--enfold-footer-color-border);
}

#top .footer_color .bbp-author-name {
	color: var(--enfold-footer-color-heading);
}

.footer_color .widget_display_stats dt, .footer_color .widget_display_stats dd {
	background-color: var(--enfold-footer-color-bg2);
}

.alternate_color, .alternate_color div, .alternate_color header, .alternate_color main, .alternate_color aside, .alternate_color footer, .alternate_color article, .alternate_color nav, .alternate_color section, .alternate_color span, .alternate_color applet, .alternate_color object, .alternate_color iframe, .alternate_color h1, .alternate_color h2, .alternate_color h3, .alternate_color h4, .alternate_color h5, .alternate_color h6, .alternate_color p, .alternate_color blockquote, .alternate_color pre, .alternate_color a, .alternate_color abbr, .alternate_color acronym, .alternate_color address, .alternate_color big, .alternate_color cite, .alternate_color code, .alternate_color del, .alternate_color dfn, .alternate_color em, .alternate_color img, .alternate_color ins, .alternate_color kbd, .alternate_color q, .alternate_color s, .alternate_color samp, .alternate_color small, .alternate_color strike, .alternate_color strong, .alternate_color sub, .alternate_color sup, .alternate_color tt, .alternate_color var, .alternate_color b, .alternate_color u, .alternate_color i, .alternate_color center, .alternate_color dl, .alternate_color dt, .alternate_color dd, .alternate_color ol, .alternate_color ul, .alternate_color li, .alternate_color fieldset, .alternate_color form, .alternate_color label, .alternate_color legend, .alternate_color table, .alternate_color caption, .alternate_color tbody, .alternate_color tfoot, .alternate_color thead, .alternate_color tr, .alternate_color th, .alternate_color td, .alternate_color article, .alternate_color aside, .alternate_color canvas, .alternate_color details, .alternate_color embed, .alternate_color figure, .alternate_color fieldset, .alternate_color figcaption, .alternate_color footer, .alternate_color header, .alternate_color hgroup, .alternate_color menu, .alternate_color nav, .alternate_color output, .alternate_color ruby, .alternate_color section, .alternate_color summary, .alternate_color time, .alternate_color mark, .alternate_color audio, .alternate_color video, #top .alternate_color .pullquote_boxed, .responsive #top .alternate_color .avia-testimonial, .responsive #top.avia-blank #main .alternate_color.container_wrap:first-child, #top .alternate_color.fullsize .template-blog .post_delimiter, .alternate_color .related_posts.av-related-style-full a {
	border-color: var(--enfold-alternate-color-border);
}

.alternate_color .rounded-container, #top .alternate_color .pagination a:hover, .alternate_color .small-preview, .alternate_color .fallback-post-type-icon {
	background: var(--enfold-alternate-color-meta);
	color: var(--enfold-alternate-color-bg);
}

.alternate_color .rounded-container .avia-svg-icon svg:first-child, .alternate_color .small-preview .avia-svg-icon svg:first-child, .alternate_color .fallback-post-type-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-bg);
	stroke: var(--enfold-alternate-color-bg);
}

.alternate_color .av-default-color, #top .alternate_color .av-force-default-color, .alternate_color .av-catalogue-item, .alternate_color .wp-playlist-item .wp-playlist-caption, .alternate_color .wp-playlist {
	color: var(--enfold-alternate-color-color);
}

.alternate_color, .alternate_color .site-background, .alternate_color .first-quote, .alternate_color .related_image_wrap, .alternate_color .gravatar img
.alternate_color .hr_content, .alternate_color .news-thumb, .alternate_color .post-format-icon, .alternate_color .ajax_controlls a, .alternate_color .tweet-text.avatar_no, .alternate_color .toggler, .alternate_color .toggler.activeTitle:hover, .alternate_color #js_sort_items, .alternate_color.inner-entry, .alternate_color .grid-entry-title, .alternate_color .related-format-icon, .grid-entry .alternate_color .avia-arrow, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery img, .alternate_color .grid-content, .alternate_color .av-share-box ul, #top .alternate_color .av-related-style-full .related-format-icon, .alternate_color .related_posts.av-related-style-full a:hover, .alternate_color.avia-fullwidth-portfolio .pagination .current, .alternate_color.avia-fullwidth-portfolio .pagination a, .alternate_color .av-hotspot-fallback-tooltip-inner, .alternate_color .av-hotspot-fallback-tooltip-count {
	background-color: var(--enfold-alternate-color-bg);
	color: var(--enfold-alternate-color-color);
}

.alternate_color .ajax_controlls a.avia-svg-icon svg:first-child, .alternate_color .avia-svg-icon svg:first-child, .alternate_color .av-share-box ul li svg:first-child, #top .alternate_color .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
	stroke: var(--enfold-alternate-color-color);
	fill: var(--enfold-alternate-color-color);
}

.alternate_color .avia-fold-unfold-section .av-fold-unfold-container::after {
	background: linear-gradient(to bottom, rgba(112, 149, 39, 0), rgba(112, 149, 39, 1));
}

.alternate_color .avia-fold-unfold-section .av-fold-button-container:not(.avia-button), .alternate_color.avia-fold-unfold-section .av-fold-button-container:not(.avia-button) {
	color: var(--enfold-alternate-color-color);
}

.alternate_color .avia-fold-unfold-section .av-fold-button-container.fold-button {
	background: var(--enfold-alternate-color-bg);
	border-color: var(--enfold-alternate-color-border);
}

.alternate_color .avia-curtain-reveal-overlay {
	background: var(--enfold-alternate-color-bg);
}

.alternate_color .avia-icon-circles-icon {
	background: var(--enfold-alternate-color-bg);
	border-color: var(--enfold-alternate-color-border);
	color: var(--enfold-alternate-color-color);
}

.alternate_color .avia-icon-circles-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-color);
	stroke: var(--enfold-alternate-color-color);
}

.alternate_color .avia-icon-circles-icon.active {
	background: var(--enfold-alternate-color-secondary);
	border-color: var(--enfold-alternate-color-secondary);
	color: var(--enfold-alternate-color-bg);
}

.alternate_color .avia-icon-circles-icon.avia-svg-icon.active  svg:first-child {
	fill: var(--enfold-alternate-color-bg);
	stroke: var(--enfold-alternate-color-bg);
}

.alternate_color .avia-icon-circles-icon-text {
	color: var(--enfold-alternate-color-color);
	background: var(--enfold-alternate-color-bg);
}

.alternate_color .heading-color, .alternate_color a.iconbox_icon:hover, .alternate_color h1, .alternate_color h2, .alternate_color h3, .alternate_color h4, .alternate_color h5, .alternate_color h6, .alternate_color .sidebar .current_page_item>a, .alternate_color .sidebar .current-menu-item>a, .alternate_color .pagination .current, .alternate_color .pagination a:hover, .alternate_color strong.avia-testimonial-name, .alternate_color .heading, .alternate_color .toggle_content strong, .alternate_color .toggle_content strong a, .alternate_color .tab_content strong, .alternate_color .tab_content strong a, .alternate_color .asc_count, .alternate_color .avia-testimonial-content strong, #top .alternate_color .av-related-style-full .av-related-title, .alternate_color .wp-playlist-item-meta.wp-playlist-item-title, #top .alternate_color .av-no-image-slider h2 a, .alternate_color .av-small-bar .avia-progress-bar .progressbar-title-wrap, .alternate_color div .news-headline .news-title, .alternate_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .alternate_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top.card-time-color, .alternate_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom.card-time-color, .alternate_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back.card-time-color::before, .alternate_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock__card .flip-clock-counter {
	color: var(--enfold-alternate-color-heading);
}

.alternate_color .heading .avia-svg-icon svg:first-child, .alternate_color .av-special-heading .avia-svg-icon svg:first-child, .alternate_color a.iconbox_icon.avia-svg-icon:hover svg:first-child, .alternate_color .iconbox_icon.heading-color.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-heading);
	stroke: var(--enfold-alternate-color-heading);
}

.alternate_color .av-countdown-timer.av-events-countdown a .av-countdown-time-label {
	color: var(--enfold-alternate-color-color);
}

.alternate_color .meta-color, .alternate_color .sidebar, .alternate_color .sidebar a, .alternate_color .minor-meta, .alternate_color .minor-meta a, .alternate_color .text-sep, .alternate_color blockquote, .alternate_color .post_nav a, .alternate_color .comment-text, .alternate_color .side-container-inner, .alternate_color .news-time, .alternate_color .pagination a, .alternate_color .pagination span, .alternate_color .tweet-text.avatar_no .tweet-time, #top .alternate_color .extra-mini-title, .alternate_color .team-member-job-title, .alternate_color .team-social a, .alternate_color #js_sort_items a, .grid-entry-excerpt, .alternate_color .avia-testimonial-subtitle, .alternate_color .commentmetadata a, .alternate_color .social_bookmarks a, .alternate_color .meta-heading > *, .alternate_color .slide-meta, .alternate_color .slide-meta a, .alternate_color .taglist, .alternate_color .taglist a, .alternate_color .phone-info, .alternate_color .phone-info a, .alternate_color .av-sort-by-term a, .alternate_color .av-magazine-time, .alternate_color .av-magazine .av-magazine-entry-icon, .alternate_color .av-catalogue-content, .alternate_color .wp-playlist-item-length, .html_modern-blog #top div .alternate_color .blog-categories a, .html_modern-blog #top div .alternate_color .blog-categories a:hover {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .team-social a.avia-svg-icon svg:first-child, .alternate_color .meta-heading .avia-svg-icon svg:first-child, .alternate_color .social_bookmarks .avia-svg-icon a svg:first-child {
	stroke: var(--enfold-alternate-color-meta);
	fill: var(--enfold-alternate-color-meta);
}

.alternate_color .team-social a.avia-svg-icon:hover svg:first-child {
	stroke: var(--enfold-alternate-color-secondary);
	fill: var(--enfold-alternate-color-secondary);
}

.alternate_color .special-heading-inner-border {
	border-color: var(--enfold-alternate-color-color);
}

.alternate_color .meta-heading .special-heading-inner-border {
	border-color: var(--enfold-alternate-color-meta);
}

.alternate_color a, .alternate_color .widget_first, .alternate_color strong, .alternate_color b, .alternate_color b a, .alternate_color strong a, .alternate_color #js_sort_items a:hover, .alternate_color #js_sort_items a.active_sort, .alternate_color .av-sort-by-term a.active_sort, .alternate_color .special_amp, .alternate_color .taglist a.activeFilter, .alternate_color #commentform .required, #top .alternate_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .alternate_color .blog-categories a, .html_elegant-blog #top .alternate_color .blog-categories a:hover {
	color: var(--enfold-alternate-color-primary);
}

.alternate_color a.avia-button .avia-svg-icon svg:first-child, .alternate_color a.more-link .avia-svg-icon svg:first-child, #top .alternate_color .av-no-color.av-icon-style-border a.av-icon-char svg:first-child {
	stroke: var(--enfold-alternate-color-primary);
	fill: var(--enfold-alternate-color-primary);
}

.alternate_color a:hover, .alternate_color h1 a:hover, .alternate_color h2 a:hover, .alternate_color h3 a:hover, .alternate_color h4 a:hover, .alternate_color h5 a:hover, .alternate_color h6 a:hover, .alternate_color .template-search  a.news-content:hover, .alternate_color .wp-playlist-item .wp-playlist-caption:hover {
	color: var(--enfold-alternate-color-secondary);
}

.alternate_color a.more-link:hover .avia-svg-icon svg:first-child {
	stroke: var(--enfold-alternate-color-secondary);
	fill: var(--enfold-alternate-color-secondary);
}

.alternate_color .primary-background, .alternate_color .primary-background a, div .alternate_color .button, .alternate_color #submit, .alternate_color input[type='submit'], .alternate_color .small-preview:hover, .alternate_color .avia-menu-fx, .alternate_color .avia-menu-fx .avia-arrow, .alternate_color.iconbox_top .iconbox_icon, .alternate_color .iconbox_top a.iconbox_icon:hover, .alternate_color .avia-data-table th.avia-highlight-col, .alternate_color .avia-color-theme-color, .alternate_color .avia-color-theme-color:hover, .alternate_color .image-overlay .image-overlay-inside:before, .alternate_color .comment-count, .alternate_color .av_dropcap2, .responsive #top .alternate_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .alternate_color .av-open-submenu.av-subnav-menu li > ul a:hover, .alternate_color .av-colored-style .av-countdown-cell-inner, .alternate_color .wc-block-components-button:not(.is-link) {
	background-color: var(--enfold-alternate-color-primary);
	color: var(--enfold-alternate-color-constant-font);
	border-color: var(--enfold-alternate-color-button-border);
}

.alternate_color #searchform .av_searchform_search.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-constant-font);
	stroke: var(--enfold-alternate-color-constant-font);
}

.alternate_color .av_searchform_wrapper .av-search-icon:not(.av-input-field-icon) {
	color: var(--enfold-alternate-color-constant-font);
}

.alternate_color .av_searchform_wrapper .av-search-icon.avia-svg-icon:not(.av-input-field-icon) svg:first-child {
	fill: var(--enfold-alternate-color-constant-font);
	stroke: var(--enfold-alternate-color-constant-font);
}

.alternate_color a.avia-button:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-secondary);
	stroke: var(--enfold-alternate-color-secondary);
}

.alternate_color.iconbox_top .iconbox_icon.avia-svg-icon svg:first-child, .alternate_color .iconbox_top a.iconbox_icon.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-alternate-color-constant-font);
	stroke: var(--enfold-alternate-color-constant-font);
}

.alternate_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__top, .alternate_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__bottom, .alternate_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::before, .alternate_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::after, .alternate_color .av-colored-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-alternate-color-primary);
	color: var(--enfold-alternate-color-constant-font);
}

#top #wrap_all .alternate_color .av-menu-button-colored > a .avia-menu-text {
	background-color: var(--enfold-alternate-color-primary);
	color: var(--enfold-alternate-color-constant-font);
	border-color: var(--enfold-alternate-color-primary);
}

#top #wrap_all .alternate_color .av-menu-button-colored > a .avia-menu-text:after {
	background-color: var(--enfold-alternate-color-button-border);
}

#top .alternate_color .mobile_menu_toggle {
	color: var(--enfold-alternate-color-primary);
	background: var(--enfold-alternate-color-bg);
}

#top .alternate_color .mobile_menu_toggle .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-primary);
	stroke: var(--enfold-alternate-color-primary);
}

#top .alternate_color .av-menu-mobile-active .av-subnav-menu > li > a:before {
	color: var(--enfold-alternate-color-primary);
}

#top .alternate_color .av-open-submenu.av-subnav-menu > li > a:hover:before {
	color: var(--enfold-alternate-color-bg);
}

.alternate_color .button:hover, .alternate_color .ajax_controlls a:hover, .alternate_color #submit:hover, .alternate_color .big_button:hover, .alternate_color .contentSlideControlls a:hover, .alternate_color #submit:hover, .alternate_color input[type='submit']:hover {
	background-color: var(--enfold-alternate-color-secondary);
	color: var(--enfold-alternate-color-bg);
	border-color: var(--enfold-alternate-color-button-border2);
}

.alternate_color #searchform .av_searchform_search.avia-svg-icon svg:first-child:hover {
	fill: var(--enfold-alternate-color-bg);
	stroke: var(--enfold-alternate-color-bg);
}

.alternate_color #searchform .av_searchform_search.avia-svg-icon:hover ~ #searchsubmit {
	background-color: var(--enfold-alternate-color-secondary);
	border-color: var(--enfold-alternate-color-button-border2);
}

.alternate_color .ajax_controlls a.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-alternate-color-bg);
	stroke: var(--enfold-alternate-color-bg);
}

.alternate_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after, .alternate_color .avia-toc-style-elegant a:first-child:after, .alternate_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	background-color: var(--enfold-alternate-color-bg);
	border-color: var(--enfold-alternate-color-secondary);
}

.alternate_color .avia-toc-style-elegant a:first-child span:after, .alternate_color .avia-toc-style-elegant a.avia-toc-level-0 span:after {
	background-color: var(--enfold-alternate-color-bg);
}

.alternate_color .avia-toc-style-elegant a:first-child:hover span:after, .alternate_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after {
	border-color: var(--enfold-alternate-color-secondary);
}

.alternate_color .avia-toc-style-elegant a:before {
	border-color: var(--enfold-alternate-color-border);
}

.alternate_color .avia-toc-style-elegant a:first-child:after, .alternate_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	border-color: var(--enfold-alternate-color-secondary);
	background-color: var(--enfold-alternate-color-bg);
}

.alternate_color .avia-toc-style-elegant a:last-child:after {
	background-color: var(--enfold-alternate-color-border);
}

.alternate_color .timeline-bullet {
	background-color: var(--enfold-alternate-color-border);
	border-color: var(--enfold-alternate-color-bg);
}

.alternate_color table, .alternate_color .widget_nav_menu ul:first-child>.current-menu-item, .alternate_color .widget_nav_menu ul:first-child>.current_page_item, .alternate_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .alternate_color .pagination .current, .alternate_color .pagination a, .alternate_color.iconbox_top .iconbox_content, .alternate_color .av_promobox, .alternate_color .toggle_content, .alternate_color .toggler:hover, #top .alternate_color .av-minimal-toggle .toggler, .alternate_color .related_posts_default_image, .alternate_color .search-result-counter, .alternate_color .container_wrap_meta, .alternate_color .avia-content-slider .slide-image, .alternate_color .avia-slider-testimonials .avia-testimonial-content, .alternate_color .avia-testimonial-arrow-wrap .avia-arrow, .alternate_color .news-thumb, .alternate_color .portfolio-preview-content, .alternate_color .portfolio-preview-content .avia-arrow, .alternate_color .av-magazine .av-magazine-entry-icon, .alternate_color .related_posts.av-related-style-full a, .alternate_color .aviaccordion-slide, .alternate_color.avia-fullwidth-portfolio .pagination, .alternate_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .alternate_color .av-catalogue-list li:hover, .alternate_color .wp-playlist, .alternate_color .avia-slideshow-fixed-height > li, .alternate_color .avia-form-success, .alternate_color .avia-form-error, .alternate_color .av-boxed-grid-style .avia-testimonial {
	background: var(--enfold-alternate-color-bg2);
}

#top .alternate_color .post_timeline li:hover .timeline-bullet {
	background-color: var(--enfold-alternate-color-secondary);
}

.alternate_color blockquote, .alternate_color .avia-bullet, .alternate_color .av-no-color.av-icon-style-border a.av-icon-char {
	border-color: var(--enfold-alternate-color-primary);
}

.html_header_top .alternate_color .main_menu ul:first-child >li > ul, .html_header_top #top .alternate_color .avia_mega_div > .sub-menu {
	border-top-color: var(--enfold-alternate-color-primary);
}

.alternate_color .breadcrumb, .alternate_color .breadcrumb a, #top .alternate_color.title_container .main-title, #top .alternate_color.title_container .main-title a {
	color: var(--enfold-alternate-color-color);
}

.alternate_color .av-icon-display, #top .alternate_color .av-related-style-full a:hover .related-format-icon, .alternate_color .av-default-style .av-countdown-cell-inner, .alternate_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top, .alternate_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom, .alternate_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::before, .alternate_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::after, .alternate_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-alternate-color-bg2);
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-meta);
	stroke: var(--enfold-alternate-color-meta);
}

.alternate_color .av-masonry-entry:hover .av-icon-display {
	background-color: var(--enfold-alternate-color-primary);
	color: var(--enfold-alternate-color-constant-font);
	border-color: var(--enfold-alternate-color-button-border);
}

.alternate_color .av-masonry-entry:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-constant-font);
	stroke: var(--enfold-alternate-color-constant-font);
}

#top .alternate_color .av-masonry-entry.format-quote:hover .av-icon-display {
	color: var(--enfold-alternate-color-primary);
}

#top .alternate_color .av-masonry-entry.format-quote:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-primary);
	stroke: var(--enfold-alternate-color-primary);
}

.alternate_color textarea::placeholder, .alternate_color input::placeholder {
	color: var(--enfold-alternate-color-meta);
	opacity: .5;
}

.alternate_color .header_bg, .alternate_color .main_menu ul ul, .alternate_color .main_menu .menu ul li a, .alternate_color .pointer_arrow_wrap .pointer_arrow, .alternate_color .avia_mega_div, .alternate_color .av-subnav-menu > li ul, .alternate_color .av-subnav-menu a {
	background-color: var(--enfold-alternate-color-bg);
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .main_menu .menu ul li a:hover, .alternate_color .main_menu .menu ul li a:focus, .alternate_color .av-subnav-menu ul a:hover, .alternate_color .av-subnav-menu ul a:focus {
	background-color: var(--enfold-alternate-color-bg2);
}

.alternate_color .sub_menu > ul > li > a, .alternate_color .sub_menu > div > ul > li > a, .alternate_color .main_menu ul:first-child > li > a, #top .alternate_color .main_menu .menu ul .current_page_item > a, #top .alternate_color .main_menu .menu ul .current-menu-item > a, #top .alternate_color .sub_menu li ul a {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .main_menu ul:first-child > li > a svg:first-child {
	stroke: var(--enfold-alternate-color-meta);
	fill: var(--enfold-alternate-color-meta);
}

.alternate_color .main_menu ul:first-child > li > a:hover svg:first-child, .alternate_color .main_menu ul:first-child > li > a:focus svg:first-child {
	stroke: var(--enfold-alternate-color-color);
	fill: var(--enfold-alternate-color-color);
}

#top .alternate_color .main_menu .menu ul li > a:hover, #top .alternate_color .main_menu .menu ul li > a:focus {
	color: var(--enfold-alternate-color-color);
}

.alternate_color .av-subnav-menu a:hover, .alternate_color .av-subnav-menu a:focus, .alternate_color .main_menu ul:first-child > li a:hover, .alternate_color .main_menu ul:first-child > li a:focus, .alternate_color .main_menu ul:first-child > li.current-menu-item > a, .alternate_color .main_menu ul:first-child > li.current_page_item > a, .alternate_color .main_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-alternate-color-color);
}

#top .alternate_color .main_menu .menu .avia_mega_div ul .current-menu-item > a {
	color: var(--enfold-alternate-color-primary);
}

.alternate_color .sub_menu > ul > li > a:hover, .alternate_color .sub_menu > ul > li > a:focus, .alternate_color .sub_menu > div > ul > li > a:hover, .alternate_color .sub_menu > div > ul > li > a:focus {
	color: var(--enfold-alternate-color-color);
}

#top .alternate_color .sub_menu ul li a:hover, #top .alternate_color .sub_menu ul li a:focus, .alternate_color .sub_menu ul:first-child > li.current-menu-item > a, .alternate_color .sub_menu ul:first-child > li.current_page_item > a, .alternate_color .sub_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-alternate-color-color);
}

.alternate_color .sub_menu li ul a, .alternate_color #payment, .alternate_color .sub_menu ul li, .alternate_color .sub_menu ul, #top .alternate_color .sub_menu li li a:hover, #top .alternate_color .sub_menu li li a:focus {
	background-color: var(--enfold-alternate-color-bg);
}

.alternate_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a {
	border-color: var(--enfold-alternate-color-border);
}

#top .alternate_color .widget_pages ul li a:focus, #top .alternate_color .widget_nav_menu ul li a:focus {
	color: var(--enfold-alternate-color-secondary);
}

@media only screen and (max-width: 767px) {
	#top #wrap_all .av_header_transparency {
		background-color: var(--enfold-alternate-color-bg);
		color: var(--enfold-alternate-color-color);
		border-color: var(--enfold-alternate-color-border);
	}
	
	#top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-alternate-color-color);
		fill: var(--enfold-alternate-color-color);
	}
}

@media only screen and (max-width: 989px) {
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
		background-color: var(--enfold-alternate-color-bg);
		color: var(--enfold-alternate-color-color);
		border-color: var(--enfold-alternate-color-border);
	}
	
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-alternate-color-color);
		fill: var(--enfold-alternate-color-color);
	}
}

.alternate_color .avia-tt, .alternate_color .avia-tt .avia-arrow, .alternate_color .avia-tt .avia-arrow {
	background-color: var(--enfold-alternate-color-bg);
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .av_ajax_search_image {
	background-color: var(--enfold-alternate-color-primary);
	color: var(--enfold-alternate-color-bg);
}

.alternate_color .av_ajax_search_image.avia-svg-icon svg:first-child {
	stroke: var(--enfold-alternate-color-bg);
	fill: var(--enfold-alternate-color-bg);
}

.alternate_color .ajax_search_excerpt {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .av_ajax_search_title {
	color: var(--enfold-alternate-color-heading);
}

.alternate_color .ajax_load {
	background-color: var(--enfold-alternate-color-primary);
}

.alternate_color .av_searchsubmit_wrapper {
	background-color: var(--enfold-alternate-color-primary);
}

#top .alternate_color .avia-color-theme-color {
	color: var(--enfold-alternate-color-button-font);
	border-color: var(--enfold-alternate-color-button-border);
}

#top .alternate_color .avia-color-theme-color .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-button-font);
	stroke: var(--enfold-alternate-color-button-font);
}

.alternate_color .avia-color-theme-color-subtle {
	background-color: var(--enfold-alternate-color-bg2);
	color: var(--enfold-alternate-color-color);
}

#top .alternate_color .avia-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-color);
	stroke: var(--enfold-alternate-color-color);
}

.alternate_color .avia-color-theme-color-subtle:hover {
	background-color: var(--enfold-alternate-color-bg);
	color: var(--enfold-alternate-color-heading);
}

#top .alternate_color .avia-color-theme-color-subtle:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-heading);
	stroke: var(--enfold-alternate-color-heading);
}

#top .alternate_color .avia-color-theme-color-highlight {
	color: var(--enfold-alternate-color-button-font);
	border-color: var(--enfold-alternate-color-secondary);
	background-color: var(--enfold-alternate-color-secondary);
}

#top .alternate_color .avia-color-theme-color-highlight .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-button-font);
	stroke: var(--enfold-alternate-color-button-font);
}

#top .alternate_color .avia-font-color-theme-color, #top .alternate_color .avia-font-color-theme-color-hover:hover {
	color: var(--enfold-alternate-color-button-font);
}

#top .alternate_color .avia-font-color-theme-color .avia-svg-icon svg:first-child, #top .alternate_color .avia-font-color-theme-color-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-button-font);
	stroke: var(--enfold-alternate-color-button-font);
}

.alternate_color .avia-font-color-theme-color-subtle {
	color: var(--enfold-alternate-color-color);
}

.alternate_color .avia-font-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-color);
	stroke: var(--enfold-alternate-color-color);
}

.alternate_color .avia-font-color-theme-color-subtle-hover:hover {
	color: var(--enfold-alternate-color-heading);
}

.alternate_color .avia-font-color-theme-color-subtle-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-heading);
	stroke: var(--enfold-alternate-color-heading);
}

#top .alternate_color .avia-font-color-theme-color-highlight, #top .alternate_color .avia-font-color-theme-color-highlight-hover:hover {
	color: var(--enfold-alternate-color-button-font);
}

#top .alternate_color .avia-font-color-theme-color-highlight .avia-svg-icon svg:first-child, #top .alternate_color .avia-font-color-theme-color-highlight-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-button-font);
	stroke: var(--enfold-alternate-color-button-font);
}

.alternate_color .avia-icon-list .iconlist_icon {
	background-color: var(--enfold-alternate-color-iconlist);
}

.alternate_color .avia-icon-list .iconlist-timeline {
	border-color: var(--enfold-alternate-color-border);
}

.alternate_color .iconlist_content {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .avia-timeline .milestone_icon {
	background-color: var(--enfold-alternate-color-timeline);
}

.alternate_color .avia-timeline .milestone_inner {
	background-color: var(--enfold-alternate-color-timeline);
}

.alternate_color .avia-timeline {
	border-color: var(--enfold-alternate-color-timeline);
}

.alternate_color .av-milestone-icon-wrap:after {
	border-color: var(--enfold-alternate-color-timeline);
}

.alternate_color .avia-timeline .av-milestone-date {
	color: var(--enfold-alternate-color-timeline-date);
}

.alternate_color .avia-timeline .av-milestone-date span {
	background-color: var(--enfold-alternate-color-timeline);
}

.alternate_color .avia-timeline-horizontal .av-milestone-content-wrap footer {
	background-color: var(--enfold-alternate-color-timeline);
}

.alternate_color .av-timeline-nav a {
	background-color: var(--enfold-alternate-color-timeline);
}

#top .alternate_color .input-text, #top .alternate_color input[type='text'], #top .alternate_color input[type='input'], #top .alternate_color input[type='password'], #top .alternate_color input[type='email'], #top .alternate_color input[type='number'], #top .alternate_color input[type='url'], #top .alternate_color input[type='tel'], #top .alternate_color input[type='search'], #top .alternate_color textarea, #top .alternate_color select {
	border-color: var(--enfold-alternate-color-border);
	background-color: var(--enfold-alternate-color-bg2);
	color: var(--enfold-alternate-color-meta);
	font-family: inherit;
}

#top .alternate_color .invers-color .input-text, #top .alternate_color .invers-color input[type='text'], #top .alternate_color .invers-color input[type='input'], #top .alternate_color .invers-color input[type='password'], #top .alternate_color .invers-color input[type='email'], #top .alternate_color .invers-color input[type='number'], #top .alternate_color .invers-color input[type='url'], #top .alternate_color .invers-color input[type='tel'], #top .alternate_color .invers-color input[type='search'], #top .alternate_color .invers-color textarea, #top .alternate_color .invers-color select {
	background-color: var(--enfold-alternate-color-bg);
}

.alternate_color .required {
	color: var(--enfold-alternate-color-primary);
}

.alternate_color .av-masonry {
	background-color: var(--enfold-alternate-color-masonry);
}

.alternate_color .av-masonry-pagination, .alternate_color .av-masonry-pagination:hover, .alternate_color .av-masonry-outerimage-container {
	background-color: var(--enfold-alternate-color-bg);
}

.alternate_color .container .av-inner-masonry-content, #top .alternate_color .container .av-masonry-load-more, #top .alternate_color .container .av-masonry-sort, .alternate_color .container .av-masonry-entry .avia-arrow {
	background-color: var(--enfold-alternate-color-bg2);
}

.alternate_color .hr-short .hr-inner-style, .alternate_color .hr-short .hr-inner {
	background-color: var(--enfold-alternate-color-bg);
}

div .alternate_color .tabcontainer .active_tab_content, div .alternate_color .tabcontainer .active_tab {
	background-color: var(--enfold-alternate-color-bg2);
	color: var(--enfold-alternate-color-color);
}

div .alternate_color .tabcontainer .active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-color);
	stroke: var(--enfold-alternate-color-color);
}

.responsive.js_active #top .alternate_color .avia_combo_widget .top_tab .tab {
	border-top-color: var(--enfold-alternate-color-border);
}

.alternate_color .template-archives .tabcontainer a, #top .alternate_color .tabcontainer .tab:hover, #top .alternate_color .tabcontainer .tab.active_tab {
	color: var(--enfold-alternate-color-color);
}

#top .alternate_color .tabcontainer .tab:hover .tab_icon.avia-svg-icon svg:first-child, #top .alternate_color .tabcontainer .tab.active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-alternate-color-color);
	stroke: var(--enfold-alternate-color-color);
}

.alternate_color .template-archives .tabcontainer a:hover {
	color: var(--enfold-alternate-color-secondary);
}

.alternate_color .sidebar_tab_icon {
	background-color: var(--enfold-alternate-color-border);
}

#top .alternate_color .sidebar_active_tab .sidebar_tab_icon {
	background-color: var(--enfold-alternate-color-primary);
}

.alternate_color .sidebar_tab:hover .sidebar_tab_icon {
	background-color: var(--enfold-alternate-color-secondary);
}

.alternate_color .sidebar_tab, .alternate_color .tabcontainer .tab {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color div .sidebar_active_tab, div .alternate_color .tabcontainer.noborder_tabs .active_tab_content, div .alternate_color .tabcontainer.noborder_tabs .active_tab {
	color: var(--enfold-alternate-color-color);
	background-color: var(--enfold-alternate-color-bg);
}

#top .alternate_color .avia-smallarrow-slider .avia-slideshow-dots a {
	background-color: var(--enfold-alternate-color-bg2);
}

#top .alternate_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .alternate_color .avia-smallarrow-slider .avia-slideshow-dots a:hover {
	background-color: var(--enfold-alternate-color-meta);
}

@media only screen and (max-width: 767px) {
	.responsive #top .alternate_color .tabcontainer .active_tab {
		background-color: var(--enfold-alternate-color-secondary);
		color: var(--enfold-alternate-color-constant-font);
	}
	
	.responsive #top .alternate_color .tabcontainer {
		border-color: var(--enfold-alternate-color-border);
	}
	
	.responsive #top .alternate_color .active_tab_content {
		background-color: var(--enfold-alternate-color-bg2);
	}
}

.alternate_color tr:nth-child(even), .alternate_color .avia-data-table .avia-heading-row .avia-desc-col, .alternate_color .avia-data-table .avia-highlight-col, .alternate_color .pricing-table>li:nth-child(even), body .alternate_color .pricing-table.avia-desc-col li, #top .alternate_color .avia-data-table.avia_pricing_minimal th {
	background-color: var(--enfold-alternate-color-bg);
	color: var(--enfold-alternate-color-color);
}

.alternate_color table caption, .alternate_color tr:nth-child(even), .alternate_color .pricing-table>li:nth-child(even), #top .alternate_color .avia-data-table.avia_pricing_minimal td {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color tr:nth-child(odd), .alternate_color .pricing-table>li:nth-child(odd), .alternate_color .pricing-extra {
	background: var(--enfold-alternate-color-bg2);
}

.alternate_color .pricing-table li.avia-pricing-row, .alternate_color .pricing-table li.avia-heading-row, .alternate_color .pricing-table li.avia-pricing-row .pricing-extra {
	background-color: var(--enfold-alternate-color-primary);
	color: var(--enfold-alternate-color-constant-font);
	border-color: var(--enfold-alternate-color-stripe);
}

.alternate_color .pricing-table li.avia-heading-row, .alternate_color .pricing-table li.avia-heading-row .pricing-extra {
	background-color: var(--enfold-alternate-color-stripe2);
	color: var(--enfold-alternate-color-constant-font);
	border-color: var(--enfold-alternate-color-stripe);
}

.alternate_color .pricing-table.avia-desc-col .avia-heading-row, .alternate_color .pricing-table.avia-desc-col .avia-pricing-row {
	border-color: var(--enfold-alternate-color-border);
}

.alternate_color .theme-color-bar .bar {
	background: var(--enfold-alternate-color-primary);
}

.alternate_color .mejs-controls .mejs-time-rail .mejs-time-current, .alternate_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .alternate_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .alternate_color .button.av-sending-button, .alternate_color .av-striped-bar .theme-color-bar .bar {
	background: var(--enfold-alternate-color-primary);
}

body .alternate_color .mejs-controls .mejs-time-rail .mejs-time-float {
	background: var(--enfold-alternate-color-primary);
	color: #fff;
}

body .alternate_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {
	border: solid 4px var(--enfold-alternate-color-primary);
	border-color: var(--enfold-alternate-color-primary) transparent transparent transparent;
}

.alternate_color .progress {
	background-color: var(--enfold-alternate-color-bg2);
}

.alternate_color .av_searchform_element_results .av_ajax_search_entry, .alternate_color .av_searchform_element_results .av_ajax_search_title, .alternate_color.av_searchform_element_results .av_ajax_search_entry, .alternate_color.av_searchform_element_results .av_ajax_search_title {
	color: var(--enfold-alternate-color-primary);
}

.alternate_color .av_searchform_element_results .ajax_search_excerpt, .alternate_color.av_searchform_element_results .ajax_search_excerpt {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .av_searchform_element_results .av_ajax_search_image, .alternate_color.av_searchform_element_results .av_ajax_search_image {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .button.av-sending-button {
	background: var(--enfold-alternate-color-secondary);
	background-image: linear-gradient(-45deg, var(--enfold-alternate-color-secondary) 25%, var(--enfold-alternate-color-stripe2nd) 25%, var(--enfold-alternate-color-stripe2nd) 50%, var(--enfold-alternate-color-secondary) 50%, var(--enfold-alternate-color-secondary) 75%, var(--enfold-alternate-color-stripe2nd) 75%, var(--enfold-alternate-color-stripe2nd));
	border-color: var(--enfold-alternate-color-secondary);
}

.alternate_color span.bbp-admin-links a {
	color: var(--enfold-alternate-color-primary);
}

.alternate_color span.bbp-admin-links a:hover {
	color: var(--enfold-alternate-color-secondary);
}

#top .alternate_color .bbp-reply-content, #top .alternate_color .bbp-topic-content, #top .alternate_color .bbp-body .super-sticky .page-numbers, #top .alternate_color .bbp-body .sticky .page-numbers, #top .alternate_color .bbp-pagination-links a:hover, #top .alternate_color .bbp-pagination-links span.current {
	background: var(--enfold-alternate-color-bg);
}

#top .alternate_color .bbp-topics .bbp-header, #top .alternate_color .bbp-topics .bbp-header, #top .alternate_color .bbp-forums .bbp-header, #top .alternate_color .bbp-topics-front ul.super-sticky, #top .alternate_color .bbp-topics ul.super-sticky, #top .alternate_color .bbp-topics ul.sticky, #top .alternate_color .bbp-forum-content ul.sticky, #top .alternate_color .bbp-body .page-numbers {
	background-color: var(--enfold-alternate-color-bg2);
}

#top .alternate_color .bbp-meta, #top .alternate_color .bbp-author-role, #top .alternate_color .bbp-author-ip, #top .alternate_color .bbp-pagination-count, #top .alternate_color .bbp-topics .bbp-body .bbp-topic-title:before {
	color: var(--enfold-alternate-color-meta);
}

#top .alternate_color .bbp-admin-links {
	color: var(--enfold-alternate-color-border);
}

.alternate_color #bbpress-forums li.bbp-body ul.forum, .alternate_color #bbpress-forums li.bbp-body ul.topic, .avia_transform .alternate_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .alternate_color .bbp-reply-author:before, .avia_transform .forum-search .alternate_color .bbp-topic-author:before {
	background-color: var(--enfold-alternate-color-bg);
	border-color: var(--enfold-alternate-color-border);
}

#top .alternate_color .bbp-author-name {
	color: var(--enfold-alternate-color-heading);
}

.alternate_color .widget_display_stats dt, .alternate_color .widget_display_stats dd {
	background-color: var(--enfold-alternate-color-bg2);
}

.main_color, .main_color div, .main_color header, .main_color main, .main_color aside, .main_color footer, .main_color article, .main_color nav, .main_color section, .main_color span, .main_color applet, .main_color object, .main_color iframe, .main_color h1, .main_color h2, .main_color h3, .main_color h4, .main_color h5, .main_color h6, .main_color p, .main_color blockquote, .main_color pre, .main_color a, .main_color abbr, .main_color acronym, .main_color address, .main_color big, .main_color cite, .main_color code, .main_color del, .main_color dfn, .main_color em, .main_color img, .main_color ins, .main_color kbd, .main_color q, .main_color s, .main_color samp, .main_color small, .main_color strike, .main_color strong, .main_color sub, .main_color sup, .main_color tt, .main_color var, .main_color b, .main_color u, .main_color i, .main_color center, .main_color dl, .main_color dt, .main_color dd, .main_color ol, .main_color ul, .main_color li, .main_color fieldset, .main_color form, .main_color label, .main_color legend, .main_color table, .main_color caption, .main_color tbody, .main_color tfoot, .main_color thead, .main_color tr, .main_color th, .main_color td, .main_color article, .main_color aside, .main_color canvas, .main_color details, .main_color embed, .main_color figure, .main_color fieldset, .main_color figcaption, .main_color footer, .main_color header, .main_color hgroup, .main_color menu, .main_color nav, .main_color output, .main_color ruby, .main_color section, .main_color summary, .main_color time, .main_color mark, .main_color audio, .main_color video, #top .main_color .pullquote_boxed, .responsive #top .main_color .avia-testimonial, .responsive #top.avia-blank #main .main_color.container_wrap:first-child, #top .main_color.fullsize .template-blog .post_delimiter, .main_color .related_posts.av-related-style-full a {
	border-color: var(--enfold-main-color-border);
}

.main_color .rounded-container, #top .main_color .pagination a:hover, .main_color .small-preview, .main_color .fallback-post-type-icon {
	background: var(--enfold-main-color-meta);
	color: var(--enfold-main-color-bg);
}

.main_color .rounded-container .avia-svg-icon svg:first-child, .main_color .small-preview .avia-svg-icon svg:first-child, .main_color .fallback-post-type-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-bg);
	stroke: var(--enfold-main-color-bg);
}

.main_color .av-default-color, #top .main_color .av-force-default-color, .main_color .av-catalogue-item, .main_color .wp-playlist-item .wp-playlist-caption, .main_color .wp-playlist {
	color: var(--enfold-main-color-color);
}

.main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img
.main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content, .main_color .av-share-box ul, #top .main_color .av-related-style-full .related-format-icon, .main_color .related_posts.av-related-style-full a:hover, .main_color.avia-fullwidth-portfolio .pagination .current, .main_color.avia-fullwidth-portfolio .pagination a, .main_color .av-hotspot-fallback-tooltip-inner, .main_color .av-hotspot-fallback-tooltip-count {
	background-color: var(--enfold-main-color-bg);
	color: var(--enfold-main-color-color);
}

.main_color .ajax_controlls a.avia-svg-icon svg:first-child, .main_color .avia-svg-icon svg:first-child, .main_color .av-share-box ul li svg:first-child, #top .main_color .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
	stroke: var(--enfold-main-color-color);
	fill: var(--enfold-main-color-color);
}

.main_color .avia-fold-unfold-section .av-fold-unfold-container::after {
	background: linear-gradient(to bottom, rgba(249, 249, 249, 0), rgba(249, 249, 249, 1));
}

.main_color .avia-fold-unfold-section .av-fold-button-container:not(.avia-button), .main_color.avia-fold-unfold-section .av-fold-button-container:not(.avia-button) {
	color: var(--enfold-main-color-color);
}

.main_color .avia-fold-unfold-section .av-fold-button-container.fold-button {
	background: var(--enfold-main-color-bg);
	border-color: var(--enfold-main-color-border);
}

.main_color .avia-curtain-reveal-overlay {
	background: var(--enfold-main-color-bg);
}

.main_color .avia-icon-circles-icon {
	background: var(--enfold-main-color-bg);
	border-color: var(--enfold-main-color-border);
	color: var(--enfold-main-color-color);
}

.main_color .avia-icon-circles-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-color);
	stroke: var(--enfold-main-color-color);
}

.main_color .avia-icon-circles-icon.active {
	background: var(--enfold-main-color-secondary);
	border-color: var(--enfold-main-color-secondary);
	color: var(--enfold-main-color-bg);
}

.main_color .avia-icon-circles-icon.avia-svg-icon.active  svg:first-child {
	fill: var(--enfold-main-color-bg);
	stroke: var(--enfold-main-color-bg);
}

.main_color .avia-icon-circles-icon-text {
	color: var(--enfold-main-color-color);
	background: var(--enfold-main-color-bg);
}

.main_color .heading-color, .main_color a.iconbox_icon:hover, .main_color h1, .main_color h2, .main_color h3, .main_color h4, .main_color h5, .main_color h6, .main_color .sidebar .current_page_item>a, .main_color .sidebar .current-menu-item>a, .main_color .pagination .current, .main_color .pagination a:hover, .main_color strong.avia-testimonial-name, .main_color .heading, .main_color .toggle_content strong, .main_color .toggle_content strong a, .main_color .tab_content strong, .main_color .tab_content strong a, .main_color .asc_count, .main_color .avia-testimonial-content strong, #top .main_color .av-related-style-full .av-related-title, .main_color .wp-playlist-item-meta.wp-playlist-item-title, #top .main_color .av-no-image-slider h2 a, .main_color .av-small-bar .avia-progress-bar .progressbar-title-wrap, .main_color div .news-headline .news-title, .main_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .main_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top.card-time-color, .main_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom.card-time-color, .main_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back.card-time-color::before, .main_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock__card .flip-clock-counter {
	color: var(--enfold-main-color-heading);
}

.main_color .heading .avia-svg-icon svg:first-child, .main_color .av-special-heading .avia-svg-icon svg:first-child, .main_color a.iconbox_icon.avia-svg-icon:hover svg:first-child, .main_color .iconbox_icon.heading-color.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-heading);
	stroke: var(--enfold-main-color-heading);
}

.main_color .av-countdown-timer.av-events-countdown a .av-countdown-time-label {
	color: var(--enfold-main-color-color);
}

.main_color .meta-color, .main_color .sidebar, .main_color .sidebar a, .main_color .minor-meta, .main_color .minor-meta a, .main_color .text-sep, .main_color blockquote, .main_color .post_nav a, .main_color .comment-text, .main_color .side-container-inner, .main_color .news-time, .main_color .pagination a, .main_color .pagination span, .main_color .tweet-text.avatar_no .tweet-time, #top .main_color .extra-mini-title, .main_color .team-member-job-title, .main_color .team-social a, .main_color #js_sort_items a, .grid-entry-excerpt, .main_color .avia-testimonial-subtitle, .main_color .commentmetadata a, .main_color .social_bookmarks a, .main_color .meta-heading > *, .main_color .slide-meta, .main_color .slide-meta a, .main_color .taglist, .main_color .taglist a, .main_color .phone-info, .main_color .phone-info a, .main_color .av-sort-by-term a, .main_color .av-magazine-time, .main_color .av-magazine .av-magazine-entry-icon, .main_color .av-catalogue-content, .main_color .wp-playlist-item-length, .html_modern-blog #top div .main_color .blog-categories a, .html_modern-blog #top div .main_color .blog-categories a:hover {
	color: var(--enfold-main-color-meta);
}

.main_color .team-social a.avia-svg-icon svg:first-child, .main_color .meta-heading .avia-svg-icon svg:first-child, .main_color .social_bookmarks .avia-svg-icon a svg:first-child {
	stroke: var(--enfold-main-color-meta);
	fill: var(--enfold-main-color-meta);
}

.main_color .team-social a.avia-svg-icon:hover svg:first-child {
	stroke: var(--enfold-main-color-secondary);
	fill: var(--enfold-main-color-secondary);
}

.main_color .special-heading-inner-border {
	border-color: var(--enfold-main-color-color);
}

.main_color .meta-heading .special-heading-inner-border {
	border-color: var(--enfold-main-color-meta);
}

.main_color a, .main_color .widget_first, .main_color strong, .main_color b, .main_color b a, .main_color strong a, .main_color #js_sort_items a:hover, .main_color #js_sort_items a.active_sort, .main_color .av-sort-by-term a.active_sort, .main_color .special_amp, .main_color .taglist a.activeFilter, .main_color #commentform .required, #top .main_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .main_color .blog-categories a, .html_elegant-blog #top .main_color .blog-categories a:hover {
	color: var(--enfold-main-color-primary);
}

.main_color a.avia-button .avia-svg-icon svg:first-child, .main_color a.more-link .avia-svg-icon svg:first-child, #top .main_color .av-no-color.av-icon-style-border a.av-icon-char svg:first-child {
	stroke: var(--enfold-main-color-primary);
	fill: var(--enfold-main-color-primary);
}

.main_color a:hover, .main_color h1 a:hover, .main_color h2 a:hover, .main_color h3 a:hover, .main_color h4 a:hover, .main_color h5 a:hover, .main_color h6 a:hover, .main_color .template-search  a.news-content:hover, .main_color .wp-playlist-item .wp-playlist-caption:hover {
	color: var(--enfold-main-color-secondary);
}

.main_color a.more-link:hover .avia-svg-icon svg:first-child {
	stroke: var(--enfold-main-color-secondary);
	fill: var(--enfold-main-color-secondary);
}

.main_color .primary-background, .main_color .primary-background a, div .main_color .button, .main_color #submit, .main_color input[type='submit'], .main_color .small-preview:hover, .main_color .avia-menu-fx, .main_color .avia-menu-fx .avia-arrow, .main_color.iconbox_top .iconbox_icon, .main_color .iconbox_top a.iconbox_icon:hover, .main_color .avia-data-table th.avia-highlight-col, .main_color .avia-color-theme-color, .main_color .avia-color-theme-color:hover, .main_color .image-overlay .image-overlay-inside:before, .main_color .comment-count, .main_color .av_dropcap2, .responsive #top .main_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .main_color .av-open-submenu.av-subnav-menu li > ul a:hover, .main_color .av-colored-style .av-countdown-cell-inner, .main_color .wc-block-components-button:not(.is-link) {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
	border-color: var(--enfold-main-color-button-border);
}

.main_color #searchform .av_searchform_search.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-constant-font);
	stroke: var(--enfold-main-color-constant-font);
}

.main_color .av_searchform_wrapper .av-search-icon:not(.av-input-field-icon) {
	color: var(--enfold-main-color-constant-font);
}

.main_color .av_searchform_wrapper .av-search-icon.avia-svg-icon:not(.av-input-field-icon) svg:first-child {
	fill: var(--enfold-main-color-constant-font);
	stroke: var(--enfold-main-color-constant-font);
}

.main_color a.avia-button:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-secondary);
	stroke: var(--enfold-main-color-secondary);
}

.main_color.iconbox_top .iconbox_icon.avia-svg-icon svg:first-child, .main_color .iconbox_top a.iconbox_icon.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-main-color-constant-font);
	stroke: var(--enfold-main-color-constant-font);
}

.main_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__top, .main_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__bottom, .main_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::before, .main_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::after, .main_color .av-colored-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
}

#top #wrap_all .main_color .av-menu-button-colored > a .avia-menu-text {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
	border-color: var(--enfold-main-color-primary);
}

#top #wrap_all .main_color .av-menu-button-colored > a .avia-menu-text:after {
	background-color: var(--enfold-main-color-button-border);
}

#top .main_color .mobile_menu_toggle {
	color: var(--enfold-main-color-primary);
	background: var(--enfold-main-color-bg);
}

#top .main_color .mobile_menu_toggle .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-primary);
	stroke: var(--enfold-main-color-primary);
}

#top .main_color .av-menu-mobile-active .av-subnav-menu > li > a:before {
	color: var(--enfold-main-color-primary);
}

#top .main_color .av-open-submenu.av-subnav-menu > li > a:hover:before {
	color: var(--enfold-main-color-bg);
}

.main_color .button:hover, .main_color .ajax_controlls a:hover, .main_color #submit:hover, .main_color .big_button:hover, .main_color .contentSlideControlls a:hover, .main_color #submit:hover, .main_color input[type='submit']:hover {
	background-color: var(--enfold-main-color-secondary);
	color: var(--enfold-main-color-bg);
	border-color: var(--enfold-main-color-button-border2);
}

.main_color #searchform .av_searchform_search.avia-svg-icon svg:first-child:hover {
	fill: var(--enfold-main-color-bg);
	stroke: var(--enfold-main-color-bg);
}

.main_color #searchform .av_searchform_search.avia-svg-icon:hover ~ #searchsubmit {
	background-color: var(--enfold-main-color-secondary);
	border-color: var(--enfold-main-color-button-border2);
}

.main_color .ajax_controlls a.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-main-color-bg);
	stroke: var(--enfold-main-color-bg);
}

.main_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after, .main_color .avia-toc-style-elegant a:first-child:after, .main_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	background-color: var(--enfold-main-color-bg);
	border-color: var(--enfold-main-color-secondary);
}

.main_color .avia-toc-style-elegant a:first-child span:after, .main_color .avia-toc-style-elegant a.avia-toc-level-0 span:after {
	background-color: var(--enfold-main-color-bg);
}

.main_color .avia-toc-style-elegant a:first-child:hover span:after, .main_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after {
	border-color: var(--enfold-main-color-secondary);
}

.main_color .avia-toc-style-elegant a:before {
	border-color: var(--enfold-main-color-border);
}

.main_color .avia-toc-style-elegant a:first-child:after, .main_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	border-color: var(--enfold-main-color-secondary);
	background-color: var(--enfold-main-color-bg);
}

.main_color .avia-toc-style-elegant a:last-child:after {
	background-color: var(--enfold-main-color-border);
}

.main_color .timeline-bullet {
	background-color: var(--enfold-main-color-border);
	border-color: var(--enfold-main-color-bg);
}

.main_color table, .main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item, .main_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .main_color .pagination .current, .main_color .pagination a, .main_color.iconbox_top .iconbox_content, .main_color .av_promobox, .main_color .toggle_content, .main_color .toggler:hover, #top .main_color .av-minimal-toggle .toggler, .main_color .related_posts_default_image, .main_color .search-result-counter, .main_color .container_wrap_meta, .main_color .avia-content-slider .slide-image, .main_color .avia-slider-testimonials .avia-testimonial-content, .main_color .avia-testimonial-arrow-wrap .avia-arrow, .main_color .news-thumb, .main_color .portfolio-preview-content, .main_color .portfolio-preview-content .avia-arrow, .main_color .av-magazine .av-magazine-entry-icon, .main_color .related_posts.av-related-style-full a, .main_color .aviaccordion-slide, .main_color.avia-fullwidth-portfolio .pagination, .main_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .main_color .av-catalogue-list li:hover, .main_color .wp-playlist, .main_color .avia-slideshow-fixed-height > li, .main_color .avia-form-success, .main_color .avia-form-error, .main_color .av-boxed-grid-style .avia-testimonial {
	background: var(--enfold-main-color-bg2);
}

#top .main_color .post_timeline li:hover .timeline-bullet {
	background-color: var(--enfold-main-color-secondary);
}

.main_color blockquote, .main_color .avia-bullet, .main_color .av-no-color.av-icon-style-border a.av-icon-char {
	border-color: var(--enfold-main-color-primary);
}

.html_header_top .main_color .main_menu ul:first-child >li > ul, .html_header_top #top .main_color .avia_mega_div > .sub-menu {
	border-top-color: var(--enfold-main-color-primary);
}

.main_color .breadcrumb, .main_color .breadcrumb a, #top .main_color.title_container .main-title, #top .main_color.title_container .main-title a {
	color: var(--enfold-main-color-color);
}

.main_color .av-icon-display, #top .main_color .av-related-style-full a:hover .related-format-icon, .main_color .av-default-style .av-countdown-cell-inner, .main_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top, .main_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom, .main_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::before, .main_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::after, .main_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-main-color-bg2);
	color: var(--enfold-main-color-meta);
}

.main_color .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-meta);
	stroke: var(--enfold-main-color-meta);
}

.main_color .av-masonry-entry:hover .av-icon-display {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
	border-color: var(--enfold-main-color-button-border);
}

.main_color .av-masonry-entry:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-constant-font);
	stroke: var(--enfold-main-color-constant-font);
}

#top .main_color .av-masonry-entry.format-quote:hover .av-icon-display {
	color: var(--enfold-main-color-primary);
}

#top .main_color .av-masonry-entry.format-quote:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-primary);
	stroke: var(--enfold-main-color-primary);
}

.main_color textarea::placeholder, .main_color input::placeholder {
	color: var(--enfold-main-color-meta);
	opacity: .5;
}

.main_color .header_bg, .main_color .main_menu ul ul, .main_color .main_menu .menu ul li a, .main_color .pointer_arrow_wrap .pointer_arrow, .main_color .avia_mega_div, .main_color .av-subnav-menu > li ul, .main_color .av-subnav-menu a {
	background-color: var(--enfold-main-color-bg);
	color: var(--enfold-main-color-meta);
}

.main_color .main_menu .menu ul li a:hover, .main_color .main_menu .menu ul li a:focus, .main_color .av-subnav-menu ul a:hover, .main_color .av-subnav-menu ul a:focus {
	background-color: var(--enfold-main-color-bg2);
}

.main_color .sub_menu > ul > li > a, .main_color .sub_menu > div > ul > li > a, .main_color .main_menu ul:first-child > li > a, #top .main_color .main_menu .menu ul .current_page_item > a, #top .main_color .main_menu .menu ul .current-menu-item > a, #top .main_color .sub_menu li ul a {
	color: var(--enfold-main-color-meta);
}

.main_color .main_menu ul:first-child > li > a svg:first-child {
	stroke: var(--enfold-main-color-meta);
	fill: var(--enfold-main-color-meta);
}

.main_color .main_menu ul:first-child > li > a:hover svg:first-child, .main_color .main_menu ul:first-child > li > a:focus svg:first-child {
	stroke: var(--enfold-main-color-color);
	fill: var(--enfold-main-color-color);
}

#top .main_color .main_menu .menu ul li > a:hover, #top .main_color .main_menu .menu ul li > a:focus {
	color: var(--enfold-main-color-color);
}

.main_color .av-subnav-menu a:hover, .main_color .av-subnav-menu a:focus, .main_color .main_menu ul:first-child > li a:hover, .main_color .main_menu ul:first-child > li a:focus, .main_color .main_menu ul:first-child > li.current-menu-item > a, .main_color .main_menu ul:first-child > li.current_page_item > a, .main_color .main_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-main-color-color);
}

#top .main_color .main_menu .menu .avia_mega_div ul .current-menu-item > a {
	color: var(--enfold-main-color-primary);
}

.main_color .sub_menu > ul > li > a:hover, .main_color .sub_menu > ul > li > a:focus, .main_color .sub_menu > div > ul > li > a:hover, .main_color .sub_menu > div > ul > li > a:focus {
	color: var(--enfold-main-color-color);
}

#top .main_color .sub_menu ul li a:hover, #top .main_color .sub_menu ul li a:focus, .main_color .sub_menu ul:first-child > li.current-menu-item > a, .main_color .sub_menu ul:first-child > li.current_page_item > a, .main_color .sub_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-main-color-color);
}

.main_color .sub_menu li ul a, .main_color #payment, .main_color .sub_menu ul li, .main_color .sub_menu ul, #top .main_color .sub_menu li li a:hover, #top .main_color .sub_menu li li a:focus {
	background-color: var(--enfold-main-color-bg);
}

.main_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a {
	border-color: var(--enfold-main-color-border);
}

#top .main_color .widget_pages ul li a:focus, #top .main_color .widget_nav_menu ul li a:focus {
	color: var(--enfold-main-color-secondary);
}

@media only screen and (max-width: 767px) {
	#top #wrap_all .av_header_transparency {
		background-color: var(--enfold-main-color-bg);
		color: var(--enfold-main-color-color);
		border-color: var(--enfold-main-color-border);
	}
	
	#top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-main-color-color);
		fill: var(--enfold-main-color-color);
	}
}

@media only screen and (max-width: 989px) {
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
		background-color: var(--enfold-main-color-bg);
		color: var(--enfold-main-color-color);
		border-color: var(--enfold-main-color-border);
	}
	
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-main-color-color);
		fill: var(--enfold-main-color-color);
	}
}

.main_color .avia-tt, .main_color .avia-tt .avia-arrow, .main_color .avia-tt .avia-arrow {
	background-color: var(--enfold-main-color-bg);
	color: var(--enfold-main-color-meta);
}

.main_color .av_ajax_search_image {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-bg);
}

.main_color .av_ajax_search_image.avia-svg-icon svg:first-child {
	stroke: var(--enfold-main-color-bg);
	fill: var(--enfold-main-color-bg);
}

.main_color .ajax_search_excerpt {
	color: var(--enfold-main-color-meta);
}

.main_color .av_ajax_search_title {
	color: var(--enfold-main-color-heading);
}

.main_color .ajax_load {
	background-color: var(--enfold-main-color-primary);
}

.main_color .av_searchsubmit_wrapper {
	background-color: var(--enfold-main-color-primary);
}

#top .main_color .avia-color-theme-color {
	color: var(--enfold-main-color-button-font);
	border-color: var(--enfold-main-color-button-border);
}

#top .main_color .avia-color-theme-color .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-button-font);
	stroke: var(--enfold-main-color-button-font);
}

.main_color .avia-color-theme-color-subtle {
	background-color: var(--enfold-main-color-bg2);
	color: var(--enfold-main-color-color);
}

#top .main_color .avia-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-color);
	stroke: var(--enfold-main-color-color);
}

.main_color .avia-color-theme-color-subtle:hover {
	background-color: var(--enfold-main-color-bg);
	color: var(--enfold-main-color-heading);
}

#top .main_color .avia-color-theme-color-subtle:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-heading);
	stroke: var(--enfold-main-color-heading);
}

#top .main_color .avia-color-theme-color-highlight {
	color: var(--enfold-main-color-button-font);
	border-color: var(--enfold-main-color-secondary);
	background-color: var(--enfold-main-color-secondary);
}

#top .main_color .avia-color-theme-color-highlight .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-button-font);
	stroke: var(--enfold-main-color-button-font);
}

#top .main_color .avia-font-color-theme-color, #top .main_color .avia-font-color-theme-color-hover:hover {
	color: var(--enfold-main-color-button-font);
}

#top .main_color .avia-font-color-theme-color .avia-svg-icon svg:first-child, #top .main_color .avia-font-color-theme-color-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-button-font);
	stroke: var(--enfold-main-color-button-font);
}

.main_color .avia-font-color-theme-color-subtle {
	color: var(--enfold-main-color-color);
}

.main_color .avia-font-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-color);
	stroke: var(--enfold-main-color-color);
}

.main_color .avia-font-color-theme-color-subtle-hover:hover {
	color: var(--enfold-main-color-heading);
}

.main_color .avia-font-color-theme-color-subtle-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-heading);
	stroke: var(--enfold-main-color-heading);
}

#top .main_color .avia-font-color-theme-color-highlight, #top .main_color .avia-font-color-theme-color-highlight-hover:hover {
	color: var(--enfold-main-color-button-font);
}

#top .main_color .avia-font-color-theme-color-highlight .avia-svg-icon svg:first-child, #top .main_color .avia-font-color-theme-color-highlight-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-button-font);
	stroke: var(--enfold-main-color-button-font);
}

.main_color .avia-icon-list .iconlist_icon {
	background-color: var(--enfold-main-color-iconlist);
}

.main_color .avia-icon-list .iconlist-timeline {
	border-color: var(--enfold-main-color-border);
}

.main_color .iconlist_content {
	color: var(--enfold-main-color-meta);
}

.main_color .avia-timeline .milestone_icon {
	background-color: var(--enfold-main-color-timeline);
}

.main_color .avia-timeline .milestone_inner {
	background-color: var(--enfold-main-color-timeline);
}

.main_color .avia-timeline {
	border-color: var(--enfold-main-color-timeline);
}

.main_color .av-milestone-icon-wrap:after {
	border-color: var(--enfold-main-color-timeline);
}

.main_color .avia-timeline .av-milestone-date {
	color: var(--enfold-main-color-timeline-date);
}

.main_color .avia-timeline .av-milestone-date span {
	background-color: var(--enfold-main-color-timeline);
}

.main_color .avia-timeline-horizontal .av-milestone-content-wrap footer {
	background-color: var(--enfold-main-color-timeline);
}

.main_color .av-timeline-nav a {
	background-color: var(--enfold-main-color-timeline);
}

#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
	border-color: var(--enfold-main-color-border);
	background-color: var(--enfold-main-color-bg2);
	color: var(--enfold-main-color-meta);
	font-family: inherit;
}

#top .main_color .invers-color .input-text, #top .main_color .invers-color input[type='text'], #top .main_color .invers-color input[type='input'], #top .main_color .invers-color input[type='password'], #top .main_color .invers-color input[type='email'], #top .main_color .invers-color input[type='number'], #top .main_color .invers-color input[type='url'], #top .main_color .invers-color input[type='tel'], #top .main_color .invers-color input[type='search'], #top .main_color .invers-color textarea, #top .main_color .invers-color select {
	background-color: var(--enfold-main-color-bg);
}

.main_color .required {
	color: var(--enfold-main-color-primary);
}

.main_color .av-masonry {
	background-color: var(--enfold-main-color-masonry);
}

.main_color .av-masonry-pagination, .main_color .av-masonry-pagination:hover, .main_color .av-masonry-outerimage-container {
	background-color: var(--enfold-main-color-bg);
}

.main_color .container .av-inner-masonry-content, #top .main_color .container .av-masonry-load-more, #top .main_color .container .av-masonry-sort, .main_color .container .av-masonry-entry .avia-arrow {
	background-color: var(--enfold-main-color-bg2);
}

.main_color .hr-short .hr-inner-style, .main_color .hr-short .hr-inner {
	background-color: var(--enfold-main-color-bg);
}

div .main_color .tabcontainer .active_tab_content, div .main_color .tabcontainer .active_tab {
	background-color: var(--enfold-main-color-bg2);
	color: var(--enfold-main-color-color);
}

div .main_color .tabcontainer .active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-color);
	stroke: var(--enfold-main-color-color);
}

.responsive.js_active #top .main_color .avia_combo_widget .top_tab .tab {
	border-top-color: var(--enfold-main-color-border);
}

.main_color .template-archives .tabcontainer a, #top .main_color .tabcontainer .tab:hover, #top .main_color .tabcontainer .tab.active_tab {
	color: var(--enfold-main-color-color);
}

#top .main_color .tabcontainer .tab:hover .tab_icon.avia-svg-icon svg:first-child, #top .main_color .tabcontainer .tab.active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-color);
	stroke: var(--enfold-main-color-color);
}

.main_color .template-archives .tabcontainer a:hover {
	color: var(--enfold-main-color-secondary);
}

.main_color .sidebar_tab_icon {
	background-color: var(--enfold-main-color-border);
}

#top .main_color .sidebar_active_tab .sidebar_tab_icon {
	background-color: var(--enfold-main-color-primary);
}

.main_color .sidebar_tab:hover .sidebar_tab_icon {
	background-color: var(--enfold-main-color-secondary);
}

.main_color .sidebar_tab, .main_color .tabcontainer .tab {
	color: var(--enfold-main-color-meta);
}

.main_color div .sidebar_active_tab, div .main_color .tabcontainer.noborder_tabs .active_tab_content, div .main_color .tabcontainer.noborder_tabs .active_tab {
	color: var(--enfold-main-color-color);
	background-color: var(--enfold-main-color-bg);
}

#top .main_color .avia-smallarrow-slider .avia-slideshow-dots a {
	background-color: var(--enfold-main-color-bg2);
}

#top .main_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .main_color .avia-smallarrow-slider .avia-slideshow-dots a:hover {
	background-color: var(--enfold-main-color-meta);
}

@media only screen and (max-width: 767px) {
	.responsive #top .main_color .tabcontainer .active_tab {
		background-color: var(--enfold-main-color-secondary);
		color: var(--enfold-main-color-constant-font);
	}
	
	.responsive #top .main_color .tabcontainer {
		border-color: var(--enfold-main-color-border);
	}
	
	.responsive #top .main_color .active_tab_content {
		background-color: var(--enfold-main-color-bg2);
	}
}

.main_color tr:nth-child(even), .main_color .avia-data-table .avia-heading-row .avia-desc-col, .main_color .avia-data-table .avia-highlight-col, .main_color .pricing-table>li:nth-child(even), body .main_color .pricing-table.avia-desc-col li, #top .main_color .avia-data-table.avia_pricing_minimal th {
	background-color: var(--enfold-main-color-bg);
	color: var(--enfold-main-color-color);
}

.main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), #top .main_color .avia-data-table.avia_pricing_minimal td {
	color: var(--enfold-main-color-meta);
}

.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
	background: var(--enfold-main-color-bg2);
}

.main_color .pricing-table li.avia-pricing-row, .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-pricing-row .pricing-extra {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
	border-color: var(--enfold-main-color-stripe);
}

.main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra {
	background-color: var(--enfold-main-color-stripe2);
	color: var(--enfold-main-color-constant-font);
	border-color: var(--enfold-main-color-stripe);
}

.main_color .pricing-table.avia-desc-col .avia-heading-row, .main_color .pricing-table.avia-desc-col .avia-pricing-row {
	border-color: var(--enfold-main-color-border);
}

.main_color .theme-color-bar .bar {
	background: var(--enfold-main-color-primary);
}

.main_color .mejs-controls .mejs-time-rail .mejs-time-current, .main_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .main_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .main_color .button.av-sending-button, .main_color .av-striped-bar .theme-color-bar .bar {
	background: var(--enfold-main-color-primary);
}

body .main_color .mejs-controls .mejs-time-rail .mejs-time-float {
	background: var(--enfold-main-color-primary);
	color: #fff;
}

body .main_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {
	border: solid 4px var(--enfold-main-color-primary);
	border-color: var(--enfold-main-color-primary) transparent transparent transparent;
}

.main_color .progress {
	background-color: var(--enfold-main-color-bg2);
}

.main_color .av_searchform_element_results .av_ajax_search_entry, .main_color .av_searchform_element_results .av_ajax_search_title, .main_color.av_searchform_element_results .av_ajax_search_entry, .main_color.av_searchform_element_results .av_ajax_search_title {
	color: var(--enfold-main-color-primary);
}

.main_color .av_searchform_element_results .ajax_search_excerpt, .main_color.av_searchform_element_results .ajax_search_excerpt {
	color: var(--enfold-main-color-meta);
}

.main_color .av_searchform_element_results .av_ajax_search_image, .main_color.av_searchform_element_results .av_ajax_search_image {
	color: var(--enfold-main-color-meta);
}

.main_color .button.av-sending-button {
	background: var(--enfold-main-color-secondary);
	background-image: linear-gradient(-45deg, var(--enfold-main-color-secondary) 25%, var(--enfold-main-color-stripe2nd) 25%, var(--enfold-main-color-stripe2nd) 50%, var(--enfold-main-color-secondary) 50%, var(--enfold-main-color-secondary) 75%, var(--enfold-main-color-stripe2nd) 75%, var(--enfold-main-color-stripe2nd));
	border-color: var(--enfold-main-color-secondary);
}

.main_color span.bbp-admin-links a {
	color: var(--enfold-main-color-primary);
}

.main_color span.bbp-admin-links a:hover {
	color: var(--enfold-main-color-secondary);
}

#top .main_color .bbp-reply-content, #top .main_color .bbp-topic-content, #top .main_color .bbp-body .super-sticky .page-numbers, #top .main_color .bbp-body .sticky .page-numbers, #top .main_color .bbp-pagination-links a:hover, #top .main_color .bbp-pagination-links span.current {
	background: var(--enfold-main-color-bg);
}

#top .main_color .bbp-topics .bbp-header, #top .main_color .bbp-topics .bbp-header, #top .main_color .bbp-forums .bbp-header, #top .main_color .bbp-topics-front ul.super-sticky, #top .main_color .bbp-topics ul.super-sticky, #top .main_color .bbp-topics ul.sticky, #top .main_color .bbp-forum-content ul.sticky, #top .main_color .bbp-body .page-numbers {
	background-color: var(--enfold-main-color-bg2);
}

#top .main_color .bbp-meta, #top .main_color .bbp-author-role, #top .main_color .bbp-author-ip, #top .main_color .bbp-pagination-count, #top .main_color .bbp-topics .bbp-body .bbp-topic-title:before {
	color: var(--enfold-main-color-meta);
}

#top .main_color .bbp-admin-links {
	color: var(--enfold-main-color-border);
}

.main_color #bbpress-forums li.bbp-body ul.forum, .main_color #bbpress-forums li.bbp-body ul.topic, .avia_transform .main_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .main_color .bbp-reply-author:before, .avia_transform .forum-search .main_color .bbp-topic-author:before {
	background-color: var(--enfold-main-color-bg);
	border-color: var(--enfold-main-color-border);
}

#top .main_color .bbp-author-name {
	color: var(--enfold-main-color-heading);
}

.main_color .widget_display_stats dt, .main_color .widget_display_stats dd {
	background-color: var(--enfold-main-color-bg2);
}

.main_color dropcap2, .main_color dropcap3, .main_color avia_button, .main_color avia_button:hover, .main_color .on-primary-color, .main_color .on-primary-color:hover {
	color: var(--enfold-main-color-constant-font);
}

#main {
	border-color: var(--enfold-main-color-border);
}

#scroll-top-link:hover, #av-cookie-consent-badge:hover {
	background-color: var(--enfold-main-color-bg2);
	color: var(--enfold-main-color-primary);
	border: 1px solid var(--enfold-main-color-border);
}

#scroll-top-link.avia-svg-icon:hover svg:first-child, #av-cookie-consent-badge.avia-svg-icon:hover svg:first-child {
	stroke: var(--enfold-main-color-primary);
	fill: var(--enfold-main-color-primary);
}

.html_stretched #wrap_all {
	background-color: var(--enfold-main-color-bg);
}

#top .avia-datepicker-div .ui-datepicker-month, #top .avia-datepicker-div .ui-datepicker-year {
	color: var(--enfold-main-color-heading);
}

#top .avia-datepicker-div {
	background: var(--enfold-main-color-bg);
	border: 1px solid var(--enfold-main-color-border);
}

#top .avia-datepicker-div a {
	color: var(--enfold-main-color-meta);
	background-color: var(--enfold-main-color-bg2);
}

#top .avia-datepicker-div a.ui-state-active, #top .avia-datepicker-div a.ui-state-highlight {
	color: var(--enfold-main-color-primary);
}

#top .avia-datepicker-div a.ui-state-hover {
	color: var(--enfold-main-color-bg2);
	background-color: var(--enfold-main-color-meta);
}

#top .avia-datepicker-div .ui-datepicker-buttonpane button {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
	border-color: var(--enfold-main-color-primary);
}

#top .av-siteloader {
	border-color: var(--enfold-main-color-border);
	border-left-color: var(--enfold-main-color-primary);
}

#top div.avia-popup .mfp-preloader {
	border-left-color: var(--enfold-main-color-primary);
}

.av-preloader-reactive #top .av-siteloader {
	border-color: var(--enfold-main-color-border);
}

#top .av-siteloader-wrap {
	background-color: var(--enfold-main-color-bg);
}

.av-preloader-reactive #top .av-siteloader:before {
	background-color: var(--enfold-main-color-border);
}

.av-tab-section-tab-title-container {
	background-color: var(--enfold-main-color-bg2);
}

#top .av-section-tab-title {
	color: var(--enfold-main-color-meta);
}

#top .av-section-tab-title .av-tab-section-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-main-color-meta);
	stroke: var(--enfold-main-color-meta);
}

#top a.av-active-tab-title {
	color: var(--enfold-main-color-primary);
}

#top .av-tab-arrow-container span {
	background-color: var(--enfold-main-color-bg);
}

.header_color, .header_color div, .header_color header, .header_color main, .header_color aside, .header_color footer, .header_color article, .header_color nav, .header_color section, .header_color span, .header_color applet, .header_color object, .header_color iframe, .header_color h1, .header_color h2, .header_color h3, .header_color h4, .header_color h5, .header_color h6, .header_color p, .header_color blockquote, .header_color pre, .header_color a, .header_color abbr, .header_color acronym, .header_color address, .header_color big, .header_color cite, .header_color code, .header_color del, .header_color dfn, .header_color em, .header_color img, .header_color ins, .header_color kbd, .header_color q, .header_color s, .header_color samp, .header_color small, .header_color strike, .header_color strong, .header_color sub, .header_color sup, .header_color tt, .header_color var, .header_color b, .header_color u, .header_color i, .header_color center, .header_color dl, .header_color dt, .header_color dd, .header_color ol, .header_color ul, .header_color li, .header_color fieldset, .header_color form, .header_color label, .header_color legend, .header_color table, .header_color caption, .header_color tbody, .header_color tfoot, .header_color thead, .header_color tr, .header_color th, .header_color td, .header_color article, .header_color aside, .header_color canvas, .header_color details, .header_color embed, .header_color figure, .header_color fieldset, .header_color figcaption, .header_color footer, .header_color header, .header_color hgroup, .header_color menu, .header_color nav, .header_color output, .header_color ruby, .header_color section, .header_color summary, .header_color time, .header_color mark, .header_color audio, .header_color video, #top .header_color .pullquote_boxed, .responsive #top .header_color .avia-testimonial, .responsive #top.avia-blank #main .header_color.container_wrap:first-child, #top .header_color.fullsize .template-blog .post_delimiter, .header_color .related_posts.av-related-style-full a {
	border-color: var(--enfold-header-color-border);
}

.header_color .rounded-container, #top .header_color .pagination a:hover, .header_color .small-preview, .header_color .fallback-post-type-icon {
	background: var(--enfold-header-color-meta);
	color: var(--enfold-header-color-bg);
}

.header_color .rounded-container .avia-svg-icon svg:first-child, .header_color .small-preview .avia-svg-icon svg:first-child, .header_color .fallback-post-type-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-bg);
	stroke: var(--enfold-header-color-bg);
}

.header_color .av-default-color, #top .header_color .av-force-default-color, .header_color .av-catalogue-item, .header_color .wp-playlist-item .wp-playlist-caption, .header_color .wp-playlist {
	color: var(--enfold-header-color-color);
}

.header_color, .header_color .site-background, .header_color .first-quote, .header_color .related_image_wrap, .header_color .gravatar img
.header_color .hr_content, .header_color .news-thumb, .header_color .post-format-icon, .header_color .ajax_controlls a, .header_color .tweet-text.avatar_no, .header_color .toggler, .header_color .toggler.activeTitle:hover, .header_color #js_sort_items, .header_color.inner-entry, .header_color .grid-entry-title, .header_color .related-format-icon, .grid-entry .header_color .avia-arrow, .header_color .avia-gallery-big, .header_color .avia-gallery-big, .header_color .avia-gallery img, .header_color .grid-content, .header_color .av-share-box ul, #top .header_color .av-related-style-full .related-format-icon, .header_color .related_posts.av-related-style-full a:hover, .header_color.avia-fullwidth-portfolio .pagination .current, .header_color.avia-fullwidth-portfolio .pagination a, .header_color .av-hotspot-fallback-tooltip-inner, .header_color .av-hotspot-fallback-tooltip-count {
	background-color: var(--enfold-header-color-bg);
	color: var(--enfold-header-color-color);
}

.header_color .ajax_controlls a.avia-svg-icon svg:first-child, .header_color .avia-svg-icon svg:first-child, .header_color .av-share-box ul li svg:first-child, #top .header_color .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
	stroke: var(--enfold-header-color-color);
	fill: var(--enfold-header-color-color);
}

.header_color .avia-fold-unfold-section .av-fold-unfold-container::after {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.header_color .avia-fold-unfold-section .av-fold-button-container:not(.avia-button), .header_color.avia-fold-unfold-section .av-fold-button-container:not(.avia-button) {
	color: var(--enfold-header-color-color);
}

.header_color .avia-fold-unfold-section .av-fold-button-container.fold-button {
	background: var(--enfold-header-color-bg);
	border-color: var(--enfold-header-color-border);
}

.header_color .avia-curtain-reveal-overlay {
	background: var(--enfold-header-color-bg);
}

.header_color .avia-icon-circles-icon {
	background: var(--enfold-header-color-bg);
	border-color: var(--enfold-header-color-border);
	color: var(--enfold-header-color-color);
}

.header_color .avia-icon-circles-icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-color);
	stroke: var(--enfold-header-color-color);
}

.header_color .avia-icon-circles-icon.active {
	background: var(--enfold-header-color-secondary);
	border-color: var(--enfold-header-color-secondary);
	color: var(--enfold-header-color-bg);
}

.header_color .avia-icon-circles-icon.avia-svg-icon.active  svg:first-child {
	fill: var(--enfold-header-color-bg);
	stroke: var(--enfold-header-color-bg);
}

.header_color .avia-icon-circles-icon-text {
	color: var(--enfold-header-color-color);
	background: var(--enfold-header-color-bg);
}

.header_color .heading-color, .header_color a.iconbox_icon:hover, .header_color h1, .header_color h2, .header_color h3, .header_color h4, .header_color h5, .header_color h6, .header_color .sidebar .current_page_item>a, .header_color .sidebar .current-menu-item>a, .header_color .pagination .current, .header_color .pagination a:hover, .header_color strong.avia-testimonial-name, .header_color .heading, .header_color .toggle_content strong, .header_color .toggle_content strong a, .header_color .tab_content strong, .header_color .tab_content strong a, .header_color .asc_count, .header_color .avia-testimonial-content strong, #top .header_color .av-related-style-full .av-related-title, .header_color .wp-playlist-item-meta.wp-playlist-item-title, #top .header_color .av-no-image-slider h2 a, .header_color .av-small-bar .avia-progress-bar .progressbar-title-wrap, .header_color div .news-headline .news-title, .header_color .av-default-style .av-countdown-cell-inner .av-countdown-time, .header_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top.card-time-color, .header_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom.card-time-color, .header_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back.card-time-color::before, .header_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock__card .flip-clock-counter {
	color: var(--enfold-header-color-heading);
}

.header_color .heading .avia-svg-icon svg:first-child, .header_color .av-special-heading .avia-svg-icon svg:first-child, .header_color a.iconbox_icon.avia-svg-icon:hover svg:first-child, .header_color .iconbox_icon.heading-color.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-heading);
	stroke: var(--enfold-header-color-heading);
}

.header_color .av-countdown-timer.av-events-countdown a .av-countdown-time-label {
	color: var(--enfold-header-color-color);
}

.header_color .meta-color, .header_color .sidebar, .header_color .sidebar a, .header_color .minor-meta, .header_color .minor-meta a, .header_color .text-sep, .header_color blockquote, .header_color .post_nav a, .header_color .comment-text, .header_color .side-container-inner, .header_color .news-time, .header_color .pagination a, .header_color .pagination span, .header_color .tweet-text.avatar_no .tweet-time, #top .header_color .extra-mini-title, .header_color .team-member-job-title, .header_color .team-social a, .header_color #js_sort_items a, .grid-entry-excerpt, .header_color .avia-testimonial-subtitle, .header_color .commentmetadata a, .header_color .social_bookmarks a, .header_color .meta-heading > *, .header_color .slide-meta, .header_color .slide-meta a, .header_color .taglist, .header_color .taglist a, .header_color .phone-info, .header_color .phone-info a, .header_color .av-sort-by-term a, .header_color .av-magazine-time, .header_color .av-magazine .av-magazine-entry-icon, .header_color .av-catalogue-content, .header_color .wp-playlist-item-length, .html_modern-blog #top div .header_color .blog-categories a, .html_modern-blog #top div .header_color .blog-categories a:hover {
	color: var(--enfold-header-color-meta);
}

.header_color .team-social a.avia-svg-icon svg:first-child, .header_color .meta-heading .avia-svg-icon svg:first-child, .header_color .social_bookmarks .avia-svg-icon a svg:first-child {
	stroke: var(--enfold-header-color-meta);
	fill: var(--enfold-header-color-meta);
}

.header_color .team-social a.avia-svg-icon:hover svg:first-child {
	stroke: var(--enfold-header-color-secondary);
	fill: var(--enfold-header-color-secondary);
}

.header_color .special-heading-inner-border {
	border-color: var(--enfold-header-color-color);
}

.header_color .meta-heading .special-heading-inner-border {
	border-color: var(--enfold-header-color-meta);
}

.header_color a, .header_color .widget_first, .header_color strong, .header_color b, .header_color b a, .header_color strong a, .header_color #js_sort_items a:hover, .header_color #js_sort_items a.active_sort, .header_color .av-sort-by-term a.active_sort, .header_color .special_amp, .header_color .taglist a.activeFilter, .header_color #commentform .required, #top .header_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .header_color .blog-categories a, .html_elegant-blog #top .header_color .blog-categories a:hover {
	color: var(--enfold-header-color-primary);
}

.header_color a.avia-button .avia-svg-icon svg:first-child, .header_color a.more-link .avia-svg-icon svg:first-child, #top .header_color .av-no-color.av-icon-style-border a.av-icon-char svg:first-child {
	stroke: var(--enfold-header-color-primary);
	fill: var(--enfold-header-color-primary);
}

.header_color a:hover, .header_color h1 a:hover, .header_color h2 a:hover, .header_color h3 a:hover, .header_color h4 a:hover, .header_color h5 a:hover, .header_color h6 a:hover, .header_color .template-search  a.news-content:hover, .header_color .wp-playlist-item .wp-playlist-caption:hover {
	color: var(--enfold-header-color-secondary);
}

.header_color a.more-link:hover .avia-svg-icon svg:first-child {
	stroke: var(--enfold-header-color-secondary);
	fill: var(--enfold-header-color-secondary);
}

.header_color .primary-background, .header_color .primary-background a, div .header_color .button, .header_color #submit, .header_color input[type='submit'], .header_color .small-preview:hover, .header_color .avia-menu-fx, .header_color .avia-menu-fx .avia-arrow, .header_color.iconbox_top .iconbox_icon, .header_color .iconbox_top a.iconbox_icon:hover, .header_color .avia-data-table th.avia-highlight-col, .header_color .avia-color-theme-color, .header_color .avia-color-theme-color:hover, .header_color .image-overlay .image-overlay-inside:before, .header_color .comment-count, .header_color .av_dropcap2, .responsive #top .header_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .header_color .av-open-submenu.av-subnav-menu li > ul a:hover, .header_color .av-colored-style .av-countdown-cell-inner, .header_color .wc-block-components-button:not(.is-link) {
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-constant-font);
	border-color: var(--enfold-header-color-button-border);
}

.header_color #searchform .av_searchform_search.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-constant-font);
	stroke: var(--enfold-header-color-constant-font);
}

.header_color .av_searchform_wrapper .av-search-icon:not(.av-input-field-icon) {
	color: var(--enfold-header-color-constant-font);
}

.header_color .av_searchform_wrapper .av-search-icon.avia-svg-icon:not(.av-input-field-icon) svg:first-child {
	fill: var(--enfold-header-color-constant-font);
	stroke: var(--enfold-header-color-constant-font);
}

.header_color a.avia-button:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-secondary);
	stroke: var(--enfold-header-color-secondary);
}

.header_color.iconbox_top .iconbox_icon.avia-svg-icon svg:first-child, .header_color .iconbox_top a.iconbox_icon.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-header-color-constant-font);
	stroke: var(--enfold-header-color-constant-font);
}

.header_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__top, .header_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__bottom, .header_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::before, .header_color .av-colored-style.av-countdown-timer.av-flip-numbers .card__back::after, .header_color .av-colored-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-constant-font);
}

#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-constant-font);
	border-color: var(--enfold-header-color-primary);
}

#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text:after {
	background-color: var(--enfold-header-color-button-border);
}

#top .header_color .mobile_menu_toggle {
	color: var(--enfold-header-color-primary);
	background: var(--enfold-header-color-bg);
}

#top .header_color .mobile_menu_toggle .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-primary);
	stroke: var(--enfold-header-color-primary);
}

#top .header_color .av-menu-mobile-active .av-subnav-menu > li > a:before {
	color: var(--enfold-header-color-primary);
}

#top .header_color .av-open-submenu.av-subnav-menu > li > a:hover:before {
	color: var(--enfold-header-color-bg);
}

.header_color .button:hover, .header_color .ajax_controlls a:hover, .header_color #submit:hover, .header_color .big_button:hover, .header_color .contentSlideControlls a:hover, .header_color #submit:hover, .header_color input[type='submit']:hover {
	background-color: var(--enfold-header-color-secondary);
	color: var(--enfold-header-color-bg);
	border-color: var(--enfold-header-color-button-border2);
}

.header_color #searchform .av_searchform_search.avia-svg-icon svg:first-child:hover {
	fill: var(--enfold-header-color-bg);
	stroke: var(--enfold-header-color-bg);
}

.header_color #searchform .av_searchform_search.avia-svg-icon:hover ~ #searchsubmit {
	background-color: var(--enfold-header-color-secondary);
	border-color: var(--enfold-header-color-button-border2);
}

.header_color .ajax_controlls a.avia-svg-icon:hover svg:first-child {
	fill: var(--enfold-header-color-bg);
	stroke: var(--enfold-header-color-bg);
}

.header_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after, .header_color .avia-toc-style-elegant a:first-child:after, .header_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	background-color: var(--enfold-header-color-bg);
	border-color: var(--enfold-header-color-secondary);
}

.header_color .avia-toc-style-elegant a:first-child span:after, .header_color .avia-toc-style-elegant a.avia-toc-level-0 span:after {
	background-color: var(--enfold-header-color-bg);
}

.header_color .avia-toc-style-elegant a:first-child:hover span:after, .header_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after {
	border-color: var(--enfold-header-color-secondary);
}

.header_color .avia-toc-style-elegant a:before {
	border-color: var(--enfold-header-color-border);
}

.header_color .avia-toc-style-elegant a:first-child:after, .header_color .avia-toc-style-elegant a.avia-toc-level-0:after {
	border-color: var(--enfold-header-color-secondary);
	background-color: var(--enfold-header-color-bg);
}

.header_color .avia-toc-style-elegant a:last-child:after {
	background-color: var(--enfold-header-color-border);
}

.header_color .timeline-bullet {
	background-color: var(--enfold-header-color-border);
	border-color: var(--enfold-header-color-bg);
}

.header_color table, .header_color .widget_nav_menu ul:first-child>.current-menu-item, .header_color .widget_nav_menu ul:first-child>.current_page_item, .header_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .header_color .pagination .current, .header_color .pagination a, .header_color.iconbox_top .iconbox_content, .header_color .av_promobox, .header_color .toggle_content, .header_color .toggler:hover, #top .header_color .av-minimal-toggle .toggler, .header_color .related_posts_default_image, .header_color .search-result-counter, .header_color .container_wrap_meta, .header_color .avia-content-slider .slide-image, .header_color .avia-slider-testimonials .avia-testimonial-content, .header_color .avia-testimonial-arrow-wrap .avia-arrow, .header_color .news-thumb, .header_color .portfolio-preview-content, .header_color .portfolio-preview-content .avia-arrow, .header_color .av-magazine .av-magazine-entry-icon, .header_color .related_posts.av-related-style-full a, .header_color .aviaccordion-slide, .header_color.avia-fullwidth-portfolio .pagination, .header_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .header_color .av-catalogue-list li:hover, .header_color .wp-playlist, .header_color .avia-slideshow-fixed-height > li, .header_color .avia-form-success, .header_color .avia-form-error, .header_color .av-boxed-grid-style .avia-testimonial {
	background: var(--enfold-header-color-bg2);
}

#top .header_color .post_timeline li:hover .timeline-bullet {
	background-color: var(--enfold-header-color-secondary);
}

.header_color blockquote, .header_color .avia-bullet, .header_color .av-no-color.av-icon-style-border a.av-icon-char {
	border-color: var(--enfold-header-color-primary);
}

.html_header_top .header_color .main_menu ul:first-child >li > ul, .html_header_top #top .header_color .avia_mega_div > .sub-menu {
	border-top-color: var(--enfold-header-color-primary);
}

.header_color .breadcrumb, .header_color .breadcrumb a, #top .header_color.title_container .main-title, #top .header_color.title_container .main-title a {
	color: var(--enfold-header-color-color);
}

.header_color .av-icon-display, #top .header_color .av-related-style-full a:hover .related-format-icon, .header_color .av-default-style .av-countdown-cell-inner, .header_color .av-default-style.av-countdown-timer.av-flip-numbers .card__top, .header_color .av-default-style.av-countdown-timer.av-flip-numbers .card__bottom, .header_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::before, .header_color .av-default-style.av-countdown-timer.av-flip-numbers .card__back::after, .header_color .av-default-style.av-countdown-timer.av-flip-clock .flip-clock-counter {
	background-color: var(--enfold-header-color-bg2);
	color: var(--enfold-header-color-meta);
}

.header_color .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-meta);
	stroke: var(--enfold-header-color-meta);
}

.header_color .av-masonry-entry:hover .av-icon-display {
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-constant-font);
	border-color: var(--enfold-header-color-button-border);
}

.header_color .av-masonry-entry:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-constant-font);
	stroke: var(--enfold-header-color-constant-font);
}

#top .header_color .av-masonry-entry.format-quote:hover .av-icon-display {
	color: var(--enfold-header-color-primary);
}

#top .header_color .av-masonry-entry.format-quote:hover .av-icon-display.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-primary);
	stroke: var(--enfold-header-color-primary);
}

.header_color textarea::placeholder, .header_color input::placeholder {
	color: var(--enfold-header-color-meta);
	opacity: .5;
}

.header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .header_color .av-subnav-menu > li ul, .header_color .av-subnav-menu a {
	background-color: var(--enfold-header-color-bg);
	color: var(--enfold-header-color-meta);
}

.header_color .main_menu .menu ul li a:hover, .header_color .main_menu .menu ul li a:focus, .header_color .av-subnav-menu ul a:hover, .header_color .av-subnav-menu ul a:focus {
	background-color: var(--enfold-header-color-bg2);
}

.header_color .sub_menu > ul > li > a, .header_color .sub_menu > div > ul > li > a, .header_color .main_menu ul:first-child > li > a, #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a, #top .header_color .sub_menu li ul a {
	color: var(--enfold-header-color-meta);
}

.header_color .main_menu ul:first-child > li > a svg:first-child {
	stroke: var(--enfold-header-color-meta);
	fill: var(--enfold-header-color-meta);
}

.header_color .main_menu ul:first-child > li > a:hover svg:first-child, .header_color .main_menu ul:first-child > li > a:focus svg:first-child {
	stroke: var(--enfold-header-color-color);
	fill: var(--enfold-header-color-color);
}

#top .header_color .main_menu .menu ul li > a:hover, #top .header_color .main_menu .menu ul li > a:focus {
	color: var(--enfold-header-color-color);
}

.header_color .av-subnav-menu a:hover, .header_color .av-subnav-menu a:focus, .header_color .main_menu ul:first-child > li a:hover, .header_color .main_menu ul:first-child > li a:focus, .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a, .header_color .main_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-header-color-color);
}

#top .header_color .main_menu .menu .avia_mega_div ul .current-menu-item > a {
	color: var(--enfold-header-color-primary);
}

.header_color .sub_menu > ul > li > a:hover, .header_color .sub_menu > ul > li > a:focus, .header_color .sub_menu > div > ul > li > a:hover, .header_color .sub_menu > div > ul > li > a:focus {
	color: var(--enfold-header-color-color);
}

#top .header_color .sub_menu ul li a:hover, #top .header_color .sub_menu ul li a:focus, .header_color .sub_menu ul:first-child > li.current-menu-item > a, .header_color .sub_menu ul:first-child > li.current_page_item > a, .header_color .sub_menu ul:first-child > li.active-parent-item > a {
	color: var(--enfold-header-color-color);
}

.header_color .sub_menu li ul a, .header_color #payment, .header_color .sub_menu ul li, .header_color .sub_menu ul, #top .header_color .sub_menu li li a:hover, #top .header_color .sub_menu li li a:focus {
	background-color: var(--enfold-header-color-bg);
}

.header_color#header .avia_mega_div > .sub-menu.avia_mega_hr, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a {
	border-color: var(--enfold-header-color-border);
}

#top .header_color .widget_pages ul li a:focus, #top .header_color .widget_nav_menu ul li a:focus {
	color: var(--enfold-header-color-secondary);
}

@media only screen and (max-width: 767px) {
	#top #wrap_all .av_header_transparency {
		background-color: var(--enfold-header-color-bg);
		color: var(--enfold-header-color-color);
		border-color: var(--enfold-header-color-border);
	}
	
	#top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-header-color-color);
		fill: var(--enfold-header-color-color);
	}
}

@media only screen and (max-width: 989px) {
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
		background-color: var(--enfold-header-color-bg);
		color: var(--enfold-header-color-color);
		border-color: var(--enfold-header-color-border);
	}
	
	.html_mobile_menu_tablet #top #wrap_all .av_header_transparency .avia-svg-icon svg:first-child {
		stroke: var(--enfold-header-color-color);
		fill: var(--enfold-header-color-color);
	}
}

.header_color .avia-tt, .header_color .avia-tt .avia-arrow, .header_color .avia-tt .avia-arrow {
	background-color: var(--enfold-header-color-bg);
	color: var(--enfold-header-color-meta);
}

.header_color .av_ajax_search_image {
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-bg);
}

.header_color .av_ajax_search_image.avia-svg-icon svg:first-child {
	stroke: var(--enfold-header-color-bg);
	fill: var(--enfold-header-color-bg);
}

.header_color .ajax_search_excerpt {
	color: var(--enfold-header-color-meta);
}

.header_color .av_ajax_search_title {
	color: var(--enfold-header-color-heading);
}

.header_color .ajax_load {
	background-color: var(--enfold-header-color-primary);
}

.header_color .av_searchsubmit_wrapper {
	background-color: var(--enfold-header-color-primary);
}

#top .header_color .avia-color-theme-color {
	color: var(--enfold-header-color-button-font);
	border-color: var(--enfold-header-color-button-border);
}

#top .header_color .avia-color-theme-color .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-button-font);
	stroke: var(--enfold-header-color-button-font);
}

.header_color .avia-color-theme-color-subtle {
	background-color: var(--enfold-header-color-bg2);
	color: var(--enfold-header-color-color);
}

#top .header_color .avia-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-color);
	stroke: var(--enfold-header-color-color);
}

.header_color .avia-color-theme-color-subtle:hover {
	background-color: var(--enfold-header-color-bg);
	color: var(--enfold-header-color-heading);
}

#top .header_color .avia-color-theme-color-subtle:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-heading);
	stroke: var(--enfold-header-color-heading);
}

#top .header_color .avia-color-theme-color-highlight {
	color: var(--enfold-header-color-button-font);
	border-color: var(--enfold-header-color-secondary);
	background-color: var(--enfold-header-color-secondary);
}

#top .header_color .avia-color-theme-color-highlight .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-button-font);
	stroke: var(--enfold-header-color-button-font);
}

#top .header_color .avia-font-color-theme-color, #top .header_color .avia-font-color-theme-color-hover:hover {
	color: var(--enfold-header-color-button-font);
}

#top .header_color .avia-font-color-theme-color .avia-svg-icon svg:first-child, #top .header_color .avia-font-color-theme-color-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-button-font);
	stroke: var(--enfold-header-color-button-font);
}

.header_color .avia-font-color-theme-color-subtle {
	color: var(--enfold-header-color-color);
}

.header_color .avia-font-color-theme-color-subtle .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-color);
	stroke: var(--enfold-header-color-color);
}

.header_color .avia-font-color-theme-color-subtle-hover:hover {
	color: var(--enfold-header-color-heading);
}

.header_color .avia-font-color-theme-color-subtle-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-heading);
	stroke: var(--enfold-header-color-heading);
}

#top .header_color .avia-font-color-theme-color-highlight, #top .header_color .avia-font-color-theme-color-highlight-hover:hover {
	color: var(--enfold-header-color-button-font);
}

#top .header_color .avia-font-color-theme-color-highlight .avia-svg-icon svg:first-child, #top .header_color .avia-font-color-theme-color-highlight-hover:hover .avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-button-font);
	stroke: var(--enfold-header-color-button-font);
}

.header_color .avia-icon-list .iconlist_icon {
	background-color: var(--enfold-header-color-iconlist);
}

.header_color .avia-icon-list .iconlist-timeline {
	border-color: var(--enfold-header-color-border);
}

.header_color .iconlist_content {
	color: var(--enfold-header-color-meta);
}

.header_color .avia-timeline .milestone_icon {
	background-color: var(--enfold-header-color-timeline);
}

.header_color .avia-timeline .milestone_inner {
	background-color: var(--enfold-header-color-timeline);
}

.header_color .avia-timeline {
	border-color: var(--enfold-header-color-timeline);
}

.header_color .av-milestone-icon-wrap:after {
	border-color: var(--enfold-header-color-timeline);
}

.header_color .avia-timeline .av-milestone-date {
	color: var(--enfold-header-color-timeline-date);
}

.header_color .avia-timeline .av-milestone-date span {
	background-color: var(--enfold-header-color-timeline);
}

.header_color .avia-timeline-horizontal .av-milestone-content-wrap footer {
	background-color: var(--enfold-header-color-timeline);
}

.header_color .av-timeline-nav a {
	background-color: var(--enfold-header-color-timeline);
}

#top .header_color .input-text, #top .header_color input[type='text'], #top .header_color input[type='input'], #top .header_color input[type='password'], #top .header_color input[type='email'], #top .header_color input[type='number'], #top .header_color input[type='url'], #top .header_color input[type='tel'], #top .header_color input[type='search'], #top .header_color textarea, #top .header_color select {
	border-color: var(--enfold-header-color-border);
	background-color: var(--enfold-header-color-bg2);
	color: var(--enfold-header-color-meta);
	font-family: inherit;
}

#top .header_color .invers-color .input-text, #top .header_color .invers-color input[type='text'], #top .header_color .invers-color input[type='input'], #top .header_color .invers-color input[type='password'], #top .header_color .invers-color input[type='email'], #top .header_color .invers-color input[type='number'], #top .header_color .invers-color input[type='url'], #top .header_color .invers-color input[type='tel'], #top .header_color .invers-color input[type='search'], #top .header_color .invers-color textarea, #top .header_color .invers-color select {
	background-color: var(--enfold-header-color-bg);
}

.header_color .required {
	color: var(--enfold-header-color-primary);
}

.header_color .av-masonry {
	background-color: var(--enfold-header-color-masonry);
}

.header_color .av-masonry-pagination, .header_color .av-masonry-pagination:hover, .header_color .av-masonry-outerimage-container {
	background-color: var(--enfold-header-color-bg);
}

.header_color .container .av-inner-masonry-content, #top .header_color .container .av-masonry-load-more, #top .header_color .container .av-masonry-sort, .header_color .container .av-masonry-entry .avia-arrow {
	background-color: var(--enfold-header-color-bg2);
}

.header_color .hr-short .hr-inner-style, .header_color .hr-short .hr-inner {
	background-color: var(--enfold-header-color-bg);
}

div .header_color .tabcontainer .active_tab_content, div .header_color .tabcontainer .active_tab {
	background-color: var(--enfold-header-color-bg2);
	color: var(--enfold-header-color-color);
}

div .header_color .tabcontainer .active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-color);
	stroke: var(--enfold-header-color-color);
}

.responsive.js_active #top .header_color .avia_combo_widget .top_tab .tab {
	border-top-color: var(--enfold-header-color-border);
}

.header_color .template-archives .tabcontainer a, #top .header_color .tabcontainer .tab:hover, #top .header_color .tabcontainer .tab.active_tab {
	color: var(--enfold-header-color-color);
}

#top .header_color .tabcontainer .tab:hover .tab_icon.avia-svg-icon svg:first-child, #top .header_color .tabcontainer .tab.active_tab .tab_icon.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-color);
	stroke: var(--enfold-header-color-color);
}

.header_color .template-archives .tabcontainer a:hover {
	color: var(--enfold-header-color-secondary);
}

.header_color .sidebar_tab_icon {
	background-color: var(--enfold-header-color-border);
}

#top .header_color .sidebar_active_tab .sidebar_tab_icon {
	background-color: var(--enfold-header-color-primary);
}

.header_color .sidebar_tab:hover .sidebar_tab_icon {
	background-color: var(--enfold-header-color-secondary);
}

.header_color .sidebar_tab, .header_color .tabcontainer .tab {
	color: var(--enfold-header-color-meta);
}

.header_color div .sidebar_active_tab, div .header_color .tabcontainer.noborder_tabs .active_tab_content, div .header_color .tabcontainer.noborder_tabs .active_tab {
	color: var(--enfold-header-color-color);
	background-color: var(--enfold-header-color-bg);
}

#top .header_color .avia-smallarrow-slider .avia-slideshow-dots a {
	background-color: var(--enfold-header-color-bg2);
}

#top .header_color .avia-smallarrow-slider .avia-slideshow-dots a.active, #top .header_color .avia-smallarrow-slider .avia-slideshow-dots a:hover {
	background-color: var(--enfold-header-color-meta);
}

@media only screen and (max-width: 767px) {
	.responsive #top .header_color .tabcontainer .active_tab {
		background-color: var(--enfold-header-color-secondary);
		color: var(--enfold-header-color-constant-font);
	}
	
	.responsive #top .header_color .tabcontainer {
		border-color: var(--enfold-header-color-border);
	}
	
	.responsive #top .header_color .active_tab_content {
		background-color: var(--enfold-header-color-bg2);
	}
}

.header_color tr:nth-child(even), .header_color .avia-data-table .avia-heading-row .avia-desc-col, .header_color .avia-data-table .avia-highlight-col, .header_color .pricing-table>li:nth-child(even), body .header_color .pricing-table.avia-desc-col li, #top .header_color .avia-data-table.avia_pricing_minimal th {
	background-color: var(--enfold-header-color-bg);
	color: var(--enfold-header-color-color);
}

.header_color table caption, .header_color tr:nth-child(even), .header_color .pricing-table>li:nth-child(even), #top .header_color .avia-data-table.avia_pricing_minimal td {
	color: var(--enfold-header-color-meta);
}

.header_color tr:nth-child(odd), .header_color .pricing-table>li:nth-child(odd), .header_color .pricing-extra {
	background: var(--enfold-header-color-bg2);
}

.header_color .pricing-table li.avia-pricing-row, .header_color .pricing-table li.avia-heading-row, .header_color .pricing-table li.avia-pricing-row .pricing-extra {
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-constant-font);
	border-color: var(--enfold-header-color-stripe);
}

.header_color .pricing-table li.avia-heading-row, .header_color .pricing-table li.avia-heading-row .pricing-extra {
	background-color: var(--enfold-header-color-stripe2);
	color: var(--enfold-header-color-constant-font);
	border-color: var(--enfold-header-color-stripe);
}

.header_color .pricing-table.avia-desc-col .avia-heading-row, .header_color .pricing-table.avia-desc-col .avia-pricing-row {
	border-color: var(--enfold-header-color-border);
}

.header_color .theme-color-bar .bar {
	background: var(--enfold-header-color-primary);
}

.header_color .mejs-controls .mejs-time-rail .mejs-time-current, .header_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .header_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .header_color .button.av-sending-button, .header_color .av-striped-bar .theme-color-bar .bar {
	background: var(--enfold-header-color-primary);
}

body .header_color .mejs-controls .mejs-time-rail .mejs-time-float {
	background: var(--enfold-header-color-primary);
	color: #fff;
}

body .header_color .mejs-controls .mejs-time-rail .mejs-time-float-corner {
	border: solid 4px var(--enfold-header-color-primary);
	border-color: var(--enfold-header-color-primary) transparent transparent transparent;
}

.header_color .progress {
	background-color: var(--enfold-header-color-bg2);
}

.header_color .av_searchform_element_results .av_ajax_search_entry, .header_color .av_searchform_element_results .av_ajax_search_title, .header_color.av_searchform_element_results .av_ajax_search_entry, .header_color.av_searchform_element_results .av_ajax_search_title {
	color: var(--enfold-header-color-primary);
}

.header_color .av_searchform_element_results .ajax_search_excerpt, .header_color.av_searchform_element_results .ajax_search_excerpt {
	color: var(--enfold-header-color-meta);
}

.header_color .av_searchform_element_results .av_ajax_search_image, .header_color.av_searchform_element_results .av_ajax_search_image {
	color: var(--enfold-header-color-meta);
}

.header_color .button.av-sending-button {
	background: var(--enfold-header-color-secondary);
	background-image: linear-gradient(-45deg, var(--enfold-header-color-secondary) 25%, var(--enfold-header-color-stripe2nd) 25%, var(--enfold-header-color-stripe2nd) 50%, var(--enfold-header-color-secondary) 50%, var(--enfold-header-color-secondary) 75%, var(--enfold-header-color-stripe2nd) 75%, var(--enfold-header-color-stripe2nd));
	border-color: var(--enfold-header-color-secondary);
}

.header_color span.bbp-admin-links a {
	color: var(--enfold-header-color-primary);
}

.header_color span.bbp-admin-links a:hover {
	color: var(--enfold-header-color-secondary);
}

#top .header_color .bbp-reply-content, #top .header_color .bbp-topic-content, #top .header_color .bbp-body .super-sticky .page-numbers, #top .header_color .bbp-body .sticky .page-numbers, #top .header_color .bbp-pagination-links a:hover, #top .header_color .bbp-pagination-links span.current {
	background: var(--enfold-header-color-bg);
}

#top .header_color .bbp-topics .bbp-header, #top .header_color .bbp-topics .bbp-header, #top .header_color .bbp-forums .bbp-header, #top .header_color .bbp-topics-front ul.super-sticky, #top .header_color .bbp-topics ul.super-sticky, #top .header_color .bbp-topics ul.sticky, #top .header_color .bbp-forum-content ul.sticky, #top .header_color .bbp-body .page-numbers {
	background-color: var(--enfold-header-color-bg2);
}

#top .header_color .bbp-meta, #top .header_color .bbp-author-role, #top .header_color .bbp-author-ip, #top .header_color .bbp-pagination-count, #top .header_color .bbp-topics .bbp-body .bbp-topic-title:before {
	color: var(--enfold-header-color-meta);
}

#top .header_color .bbp-admin-links {
	color: var(--enfold-header-color-border);
}

.header_color #bbpress-forums li.bbp-body ul.forum, .header_color #bbpress-forums li.bbp-body ul.topic, .avia_transform .header_color .bbp-replies .bbp-reply-author:before, .avia_transform .forum-search .header_color .bbp-reply-author:before, .avia_transform .forum-search .header_color .bbp-topic-author:before {
	background-color: var(--enfold-header-color-bg);
	border-color: var(--enfold-header-color-border);
}

#top .header_color .bbp-author-name {
	color: var(--enfold-header-color-heading);
}

.header_color .widget_display_stats dt, .header_color .widget_display_stats dd {
	background-color: var(--enfold-header-color-bg2);
}

.header_color dropcap2, .header_color dropcap3, .header_color avia_button, .header_color avia_button:hover, .header_color .on-primary-color, .header_color .on-primary-color:hover {
	color: var(--enfold-header-color-constant-font);
}

#main, .avia-msie-8 .av_header_sticky_disabled#header {
	background-color: var(--enfold-header-color-bg);
}

.html_header_sidebar #header .av-main-nav > li > a .avia-menu-text {
	color: var(--enfold-header-color-heading);
}

.html_header_sidebar #header .av-main-nav > li > a .avia-menu-subtext {
	color: var(--enfold-header-color-meta);
}

.html_header_sidebar #header .av-main-nav > li:hover > a .avia-menu-text, .html_header_sidebar #header .av-main-nav > li.current-menu-ancestor > a .avia-menu-text, .html_header_sidebar #header .av-main-nav li.current-menu-item > a .avia-menu-text {
	color: var(--enfold-header-color-primary);
}

#top #wrap_all .av_seperator_big_border#header .av-menu-button-colored > a {
	background-color: var(--enfold-header-color-primary);
}

#top #wrap_all .av_seperator_big_border#header .av-menu-button-bordered > a {
	background-color: var(--enfold-header-color-bg2);
}

html.html_header_sidebar #wrap_all {
	background-color: var(--enfold-header-color-bg);
}

.header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after {
	background-color: var(--enfold-header-color-meta);
}

.html_av-overlay-side #top .av-burger-overlay-scroll {
	background: var(--enfold-header-color-bg);
}

.html_av-overlay-side #top #wrap_all div .av-burger-overlay-scroll #av-burger-menu-ul a:hover {
	background-color: var(--enfold-header-color-bg2);
}

.html_av-overlay-side-classic #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a {
	border-color: var(--enfold-header-color-border);
}

.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
	color: var(--enfold-header-color-color);
}

.html_av-overlay-side.av-burger-overlay-active #top #wrap_all #header .menu-item-search-dropdown a {
	color: var(--enfold-header-color-color);
}

.html_av-overlay-side.av-burger-overlay-active #top #wrap_all #header .menu-item-search-dropdown a.avia-svg-icon svg:first-child {
	fill: var(--enfold-header-color-color);
	stroke: var(--enfold-header-color-color);
}

.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after {
	background-color: var(--enfold-header-color-color);
}

#header .header-reading-progress {
	background-color: var(--enfold-header-color-heading);
}

.html_av-overlay-side .av-burger-overlay-scroll {
	width: 350px;
	transform: translateX(350px);
}

.socket_color .cart_dropdown .dropdown_widget li a, #top .socket_color  .avia_cart_buttons .button, #top .socket_color .dropdown_widget .buttons .button, .socket_color .cart_dropdown_first .cart_dropdown_link, #top .socket_color p.order-info mark {
	color: var(--enfold-socket-color-color);
}

#top #wrap_all .socket_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, :not(.html_cart_at_menu) #top #wrap_all .socket_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon .av-cart-container svg:first-child, #top .socket_color  .avia_cart_buttons .avia-svg-icon svg:first-child {
	stroke: var(--enfold-socket-color-color);
	fill: var(--enfold-socket-color-color);
}

#top #wrap_all .socket_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, .html_cart_at_menu #top #wrap_all .socket_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child {}

.socket_color .woocommerce-tabs .tabs a, .socket_color .product_meta, .socket_color .quantity input.qty, .socket_color .cart_dropdown .dropdown_widget, .socket_color .avia_select_fake_val, .socket_color address, .socket_color .product>a .socket_color .product_excerpt, .socket_color .term_description, #top .socket_color .price .from, #top #wrap_all .socket_color del, .socket_color .dynamic-title .dynamic-heading, .socket_color .dynamic-title a, .socket_color .entry-summary .woocommerce-product-rating  .woocommerce-review-link, .socket_color .chosen-container-single .chosen-single span, #top .socket_color .select2-container .select2-choice, .socket_color .woocommerce-MyAccount-navigation-link.is-active a {
	color: var(--enfold-socket-color-meta);
}

.socket_color div.product .woocommerce-tabs ul.tabs li.active a, .socket_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .socket_color .cart_dropdown_link, .socket_color .inner_product_header, .socket_color .avia-arrow, #top .socket_color .variations select, #top .socket_color .variations input, #top .socket_color #reviews input[type='text'], #top .socket_color #reviews input[type='email'], .socket_color #reviews .comment-text, .socket_color #reviews #comment, .socket_color .single-product-main-image .images a, #top .socket_color .shop_table.cart .input-text, #top .socket_color form.login .input-text, #top .socket_color form.register .input-text, .socket_color .chosen-container-single .chosen-search, .socket_color .products .product-category h3:before, #top .socket_color .quantity input.qty {
	background-color: var(--enfold-socket-color-bg);
}

.socket_color .woocommerce-tabs .tabs .active, .socket_color div.product .woocommerce-tabs .panel, .socket_color .activeslideThumb, .socket_color #payment li, .socket_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .socket_color .avia_cart, .socket_color form.login, .socket_color form.register, .socket_color .variations_form, .socket_color .dynamic-title, .socket_color .single-product-main-image .thumbnails a, .socket_color .quantity input.qty, .socket_color .avia_cart_buttons, #top .socket_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .socket_color .woocommerce-info, #top .socket_color .chosen-container-single .chosen-single, #top .socket_color .chosen-search input[type='text'], .socket_color .chosen-results, .socket_color .chosen-container .chosen-drop, #top .socket_color .select2-container .select2-choice, .socket_color .widget_layered_nav_filters .chosen a:hover, .socket_color .widget_layered_nav .chosen a:hover, .socket_color .woocommerce-MyAccount-navigation-link.is-active, .socket_color .woocommerce-MyAccount-navigation-link:hover {
	background-color: var(--enfold-socket-color-bg2);
}

.socket_color .thumbnail_container img, #top .socket_color #main .order_details, #top .socket_color .chosen-search input[type='text'], #top .socket_color .chosen-container-single .chosen-single, #top .socket_color .chosen-container-active .chosen-single, #top .socket_color .chosen-container .chosen-drop, .socket_color .chosen-container .chosen-results, .socket_color .products .product-category h3:before, #top .socket_color .select2-container .select2-choice {
	border-color: var(--enfold-socket-color-border);
}

.socket_color .summary div {
	border-color: var(--enfold-socket-color-bg2);
}

.socket_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .socket_color a.remove, #top .socket_color .onsale {
	background-color: var(--enfold-socket-color-primary);
}

#top .socket_color .active-result.highlighted {
	background-color: var(--enfold-socket-color-primary);
	color: var(--enfold-socket-color-constant-font);
}

.socket_color #shop_header a:hover {
	color: #fff;
}

#top .socket_color .price, .socket_color .stock, #top #wrap_all .socket_color ins, .socket_color .products .product-category h3 .count, .socket_color .widget_layered_nav_filters .chosen a:before, .socket_color .widget_layered_nav .chosen a:before {
	color: var(--enfold-socket-color-primary);
}

.socket_color .dynamic-title a:hover {
	color: var(--enfold-socket-color-secondary);
}

.socket_color .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: var(--enfold-socket-color-border);
}

#top .socket_color .chzn-container-single .chzn-single {
	border-color: var(--enfold-socket-color-border);
	background-color: var(--enfold-socket-color-bg2);
	color: var(--enfold-socket-color-meta);
}

.socket_color #payment {
	background-color: var(--enfold-socket-color-bg2);
}

#top .socket_color .quantity input.plus, #top .socket_color .quantity input.minus {
	border-color: var(--enfold-socket-color-border);
	background-color: var(--enfold-socket-color-dark-bg2);
	color: var(--enfold-socket-color-meta);
}

.socket_color .wc-bookings-booking-form .block-picker li a, #top .socket_color .wc-bookings-date-picker .ui-datepicker td {
	border-color: var(--enfold-socket-color-border);
}

#top .socket_color .wc-bookings-booking-form .block-picker li a:hover, #top .socket_color .wc-bookings-booking-form .block-picker li a:focus, #top .socket_color .wc-bookings-booking-form .block-picker li a.selected {
	background-color: var(--enfold-socket-color-primary) !important;
	color: var(--enfold-socket-color-constant-font) !important;
}

#top .socket_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .socket_color .wc-bookings-date-picker .ui-datepicker-header {
	border-color: var(--enfold-socket-color-primary);
	background-color: var(--enfold-socket-color-primary);
	color: var(--enfold-socket-color-constant-font);
}

.socket_color .wc-bookings-date-picker .ui-datepicker td.bookable a {
	background-color: var(--enfold-socket-color-primary) !important;
	color: var(--enfold-socket-color-constant-font) !important;
	border-color: var(--enfold-socket-color-border);
}

#top .socket_color .wc-bookings-date-picker .ui-datepicker th, #top .socket_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default {
	color: var(--enfold-socket-color-color);
}

#top .socket_color .wc_bookings_field_start_date, #top .socket_color .wc-bookings-date-picker span.label {
	color: var(--enfold-socket-color-meta);
}

#top .socket_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .socket_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month {
	background-color: var(--enfold-socket-color-bg2);
}

#top .wc-bookings-booking-form .blockUI.blockOverlay {
	background-color: var(--enfold-socket-color-bg) !important;
}

#top .socket_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .socket_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a, #top .socket_color .wc-bookings-date-picker .ui-datepicker td.bookable-range {
	background: var(--enfold-socket-color-primary2) !important;
	color: var(--enfold-socket-color-constant-font);
}

.socket_color .sort-param > li > span, .socket_color .sort-param > li > a, .socket_color .sort-param ul {
	background-color: var(--enfold-socket-color-bg2);
}

.socket_color .sort-param > li:hover > span, .socket_color .sort-param > li:hover > a, .socket_color .sort-param > li:hover ul, .socket_color .product-sorting strong {
	color: var(--enfold-socket-color-heading);
}

.socket_color .sort-param  a {
	color: var(--enfold-socket-color-meta);
}

#top .socket_color .sort-param  a:hover {
	color: var(--enfold-socket-color-secondary);
}

.socket_color .avia-bullet {
	border-color: var(--enfold-socket-color-meta);
}

#top .socket_color a:hover .avia-bullet {
	border-color: var(--enfold-socket-color-secondary);
}

#top .socket_color .sort-param  .current-param a, #top .socket_color .sort-param  .current-param a:hover {
	color: var(--enfold-socket-color-primary);
}

#top .socket_color .sort-param .current-param .avia-bullet, #top .socket_color .sort-param .current-param a:hover .avia-bullet {
	border-color: var(--enfold-socket-color-primary);
}

.footer_color .cart_dropdown .dropdown_widget li a, #top .footer_color  .avia_cart_buttons .button, #top .footer_color .dropdown_widget .buttons .button, .footer_color .cart_dropdown_first .cart_dropdown_link, #top .footer_color p.order-info mark {
	color: var(--enfold-footer-color-color);
}

#top #wrap_all .footer_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, :not(.html_cart_at_menu) #top #wrap_all .footer_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon .av-cart-container svg:first-child, #top .footer_color  .avia_cart_buttons .avia-svg-icon svg:first-child {
	stroke: var(--enfold-footer-color-color);
	fill: var(--enfold-footer-color-color);
}

#top #wrap_all .footer_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, .html_cart_at_menu #top #wrap_all .footer_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child {}

.footer_color .woocommerce-tabs .tabs a, .footer_color .product_meta, .footer_color .quantity input.qty, .footer_color .cart_dropdown .dropdown_widget, .footer_color .avia_select_fake_val, .footer_color address, .footer_color .product>a .footer_color .product_excerpt, .footer_color .term_description, #top .footer_color .price .from, #top #wrap_all .footer_color del, .footer_color .dynamic-title .dynamic-heading, .footer_color .dynamic-title a, .footer_color .entry-summary .woocommerce-product-rating  .woocommerce-review-link, .footer_color .chosen-container-single .chosen-single span, #top .footer_color .select2-container .select2-choice, .footer_color .woocommerce-MyAccount-navigation-link.is-active a {
	color: var(--enfold-footer-color-meta);
}

.footer_color div.product .woocommerce-tabs ul.tabs li.active a, .footer_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .footer_color .cart_dropdown_link, .footer_color .inner_product_header, .footer_color .avia-arrow, #top .footer_color .variations select, #top .footer_color .variations input, #top .footer_color #reviews input[type='text'], #top .footer_color #reviews input[type='email'], .footer_color #reviews .comment-text, .footer_color #reviews #comment, .footer_color .single-product-main-image .images a, #top .footer_color .shop_table.cart .input-text, #top .footer_color form.login .input-text, #top .footer_color form.register .input-text, .footer_color .chosen-container-single .chosen-search, .footer_color .products .product-category h3:before, #top .footer_color .quantity input.qty {
	background-color: var(--enfold-footer-color-bg);
}

.footer_color .woocommerce-tabs .tabs .active, .footer_color div.product .woocommerce-tabs .panel, .footer_color .activeslideThumb, .footer_color #payment li, .footer_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .footer_color .avia_cart, .footer_color form.login, .footer_color form.register, .footer_color .variations_form, .footer_color .dynamic-title, .footer_color .single-product-main-image .thumbnails a, .footer_color .quantity input.qty, .footer_color .avia_cart_buttons, #top .footer_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .footer_color .woocommerce-info, #top .footer_color .chosen-container-single .chosen-single, #top .footer_color .chosen-search input[type='text'], .footer_color .chosen-results, .footer_color .chosen-container .chosen-drop, #top .footer_color .select2-container .select2-choice, .footer_color .widget_layered_nav_filters .chosen a:hover, .footer_color .widget_layered_nav .chosen a:hover, .footer_color .woocommerce-MyAccount-navigation-link.is-active, .footer_color .woocommerce-MyAccount-navigation-link:hover {
	background-color: var(--enfold-footer-color-bg2);
}

.footer_color .thumbnail_container img, #top .footer_color #main .order_details, #top .footer_color .chosen-search input[type='text'], #top .footer_color .chosen-container-single .chosen-single, #top .footer_color .chosen-container-active .chosen-single, #top .footer_color .chosen-container .chosen-drop, .footer_color .chosen-container .chosen-results, .footer_color .products .product-category h3:before, #top .footer_color .select2-container .select2-choice {
	border-color: var(--enfold-footer-color-border);
}

.footer_color .summary div {
	border-color: var(--enfold-footer-color-bg2);
}

.footer_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .footer_color a.remove, #top .footer_color .onsale {
	background-color: var(--enfold-footer-color-primary);
}

#top .footer_color .active-result.highlighted {
	background-color: var(--enfold-footer-color-primary);
	color: var(--enfold-footer-color-constant-font);
}

.footer_color #shop_header a:hover {
	color: #fff;
}

#top .footer_color .price, .footer_color .stock, #top #wrap_all .footer_color ins, .footer_color .products .product-category h3 .count, .footer_color .widget_layered_nav_filters .chosen a:before, .footer_color .widget_layered_nav .chosen a:before {
	color: var(--enfold-footer-color-primary);
}

.footer_color .dynamic-title a:hover {
	color: var(--enfold-footer-color-secondary);
}

.footer_color .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: var(--enfold-footer-color-border);
}

#top .footer_color .chzn-container-single .chzn-single {
	border-color: var(--enfold-footer-color-border);
	background-color: var(--enfold-footer-color-bg2);
	color: var(--enfold-footer-color-meta);
}

.footer_color #payment {
	background-color: var(--enfold-footer-color-bg2);
}

#top .footer_color .quantity input.plus, #top .footer_color .quantity input.minus {
	border-color: var(--enfold-footer-color-border);
	background-color: var(--enfold-footer-color-dark-bg2);
	color: var(--enfold-footer-color-meta);
}

.footer_color .wc-bookings-booking-form .block-picker li a, #top .footer_color .wc-bookings-date-picker .ui-datepicker td {
	border-color: var(--enfold-footer-color-border);
}

#top .footer_color .wc-bookings-booking-form .block-picker li a:hover, #top .footer_color .wc-bookings-booking-form .block-picker li a:focus, #top .footer_color .wc-bookings-booking-form .block-picker li a.selected {
	background-color: var(--enfold-footer-color-primary) !important;
	color: var(--enfold-footer-color-constant-font) !important;
}

#top .footer_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .footer_color .wc-bookings-date-picker .ui-datepicker-header {
	border-color: var(--enfold-footer-color-primary);
	background-color: var(--enfold-footer-color-primary);
	color: var(--enfold-footer-color-constant-font);
}

.footer_color .wc-bookings-date-picker .ui-datepicker td.bookable a {
	background-color: var(--enfold-footer-color-primary) !important;
	color: var(--enfold-footer-color-constant-font) !important;
	border-color: var(--enfold-footer-color-border);
}

#top .footer_color .wc-bookings-date-picker .ui-datepicker th, #top .footer_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default {
	color: var(--enfold-footer-color-color);
}

#top .footer_color .wc_bookings_field_start_date, #top .footer_color .wc-bookings-date-picker span.label {
	color: var(--enfold-footer-color-meta);
}

#top .footer_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .footer_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month {
	background-color: var(--enfold-footer-color-bg2);
}

#top .wc-bookings-booking-form .blockUI.blockOverlay {
	background-color: var(--enfold-footer-color-bg) !important;
}

#top .footer_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .footer_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a, #top .footer_color .wc-bookings-date-picker .ui-datepicker td.bookable-range {
	background: var(--enfold-footer-color-primary2) !important;
	color: var(--enfold-footer-color-constant-font);
}

.footer_color .sort-param > li > span, .footer_color .sort-param > li > a, .footer_color .sort-param ul {
	background-color: var(--enfold-footer-color-bg2);
}

.footer_color .sort-param > li:hover > span, .footer_color .sort-param > li:hover > a, .footer_color .sort-param > li:hover ul, .footer_color .product-sorting strong {
	color: var(--enfold-footer-color-heading);
}

.footer_color .sort-param  a {
	color: var(--enfold-footer-color-meta);
}

#top .footer_color .sort-param  a:hover {
	color: var(--enfold-footer-color-secondary);
}

.footer_color .avia-bullet {
	border-color: var(--enfold-footer-color-meta);
}

#top .footer_color a:hover .avia-bullet {
	border-color: var(--enfold-footer-color-secondary);
}

#top .footer_color .sort-param  .current-param a, #top .footer_color .sort-param  .current-param a:hover {
	color: var(--enfold-footer-color-primary);
}

#top .footer_color .sort-param .current-param .avia-bullet, #top .footer_color .sort-param .current-param a:hover .avia-bullet {
	border-color: var(--enfold-footer-color-primary);
}

.alternate_color .cart_dropdown .dropdown_widget li a, #top .alternate_color  .avia_cart_buttons .button, #top .alternate_color .dropdown_widget .buttons .button, .alternate_color .cart_dropdown_first .cart_dropdown_link, #top .alternate_color p.order-info mark {
	color: var(--enfold-alternate-color-color);
}

#top #wrap_all .alternate_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, :not(.html_cart_at_menu) #top #wrap_all .alternate_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon .av-cart-container svg:first-child, #top .alternate_color  .avia_cart_buttons .avia-svg-icon svg:first-child {
	stroke: var(--enfold-alternate-color-color);
	fill: var(--enfold-alternate-color-color);
}

#top #wrap_all .alternate_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, .html_cart_at_menu #top #wrap_all .alternate_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child {}

.alternate_color .woocommerce-tabs .tabs a, .alternate_color .product_meta, .alternate_color .quantity input.qty, .alternate_color .cart_dropdown .dropdown_widget, .alternate_color .avia_select_fake_val, .alternate_color address, .alternate_color .product>a .alternate_color .product_excerpt, .alternate_color .term_description, #top .alternate_color .price .from, #top #wrap_all .alternate_color del, .alternate_color .dynamic-title .dynamic-heading, .alternate_color .dynamic-title a, .alternate_color .entry-summary .woocommerce-product-rating  .woocommerce-review-link, .alternate_color .chosen-container-single .chosen-single span, #top .alternate_color .select2-container .select2-choice, .alternate_color .woocommerce-MyAccount-navigation-link.is-active a {
	color: var(--enfold-alternate-color-meta);
}

.alternate_color div.product .woocommerce-tabs ul.tabs li.active a, .alternate_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .alternate_color .cart_dropdown_link, .alternate_color .inner_product_header, .alternate_color .avia-arrow, #top .alternate_color .variations select, #top .alternate_color .variations input, #top .alternate_color #reviews input[type='text'], #top .alternate_color #reviews input[type='email'], .alternate_color #reviews .comment-text, .alternate_color #reviews #comment, .alternate_color .single-product-main-image .images a, #top .alternate_color .shop_table.cart .input-text, #top .alternate_color form.login .input-text, #top .alternate_color form.register .input-text, .alternate_color .chosen-container-single .chosen-search, .alternate_color .products .product-category h3:before, #top .alternate_color .quantity input.qty {
	background-color: var(--enfold-alternate-color-bg);
}

.alternate_color .woocommerce-tabs .tabs .active, .alternate_color div.product .woocommerce-tabs .panel, .alternate_color .activeslideThumb, .alternate_color #payment li, .alternate_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .alternate_color .avia_cart, .alternate_color form.login, .alternate_color form.register, .alternate_color .variations_form, .alternate_color .dynamic-title, .alternate_color .single-product-main-image .thumbnails a, .alternate_color .quantity input.qty, .alternate_color .avia_cart_buttons, #top .alternate_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .alternate_color .woocommerce-info, #top .alternate_color .chosen-container-single .chosen-single, #top .alternate_color .chosen-search input[type='text'], .alternate_color .chosen-results, .alternate_color .chosen-container .chosen-drop, #top .alternate_color .select2-container .select2-choice, .alternate_color .widget_layered_nav_filters .chosen a:hover, .alternate_color .widget_layered_nav .chosen a:hover, .alternate_color .woocommerce-MyAccount-navigation-link.is-active, .alternate_color .woocommerce-MyAccount-navigation-link:hover {
	background-color: var(--enfold-alternate-color-bg2);
}

.alternate_color .thumbnail_container img, #top .alternate_color #main .order_details, #top .alternate_color .chosen-search input[type='text'], #top .alternate_color .chosen-container-single .chosen-single, #top .alternate_color .chosen-container-active .chosen-single, #top .alternate_color .chosen-container .chosen-drop, .alternate_color .chosen-container .chosen-results, .alternate_color .products .product-category h3:before, #top .alternate_color .select2-container .select2-choice {
	border-color: var(--enfold-alternate-color-border);
}

.alternate_color .summary div {
	border-color: var(--enfold-alternate-color-bg2);
}

.alternate_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .alternate_color a.remove, #top .alternate_color .onsale {
	background-color: var(--enfold-alternate-color-primary);
}

#top .alternate_color .active-result.highlighted {
	background-color: var(--enfold-alternate-color-primary);
	color: var(--enfold-alternate-color-constant-font);
}

.alternate_color #shop_header a:hover {
	color: #fff;
}

#top .alternate_color .price, .alternate_color .stock, #top #wrap_all .alternate_color ins, .alternate_color .products .product-category h3 .count, .alternate_color .widget_layered_nav_filters .chosen a:before, .alternate_color .widget_layered_nav .chosen a:before {
	color: var(--enfold-alternate-color-primary);
}

.alternate_color .dynamic-title a:hover {
	color: var(--enfold-alternate-color-secondary);
}

.alternate_color .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: var(--enfold-alternate-color-border);
}

#top .alternate_color .chzn-container-single .chzn-single {
	border-color: var(--enfold-alternate-color-border);
	background-color: var(--enfold-alternate-color-bg2);
	color: var(--enfold-alternate-color-meta);
}

.alternate_color #payment {
	background-color: var(--enfold-alternate-color-bg2);
}

#top .alternate_color .quantity input.plus, #top .alternate_color .quantity input.minus {
	border-color: var(--enfold-alternate-color-border);
	background-color: var(--enfold-alternate-color-dark-bg2);
	color: var(--enfold-alternate-color-meta);
}

.alternate_color .wc-bookings-booking-form .block-picker li a, #top .alternate_color .wc-bookings-date-picker .ui-datepicker td {
	border-color: var(--enfold-alternate-color-border);
}

#top .alternate_color .wc-bookings-booking-form .block-picker li a:hover, #top .alternate_color .wc-bookings-booking-form .block-picker li a:focus, #top .alternate_color .wc-bookings-booking-form .block-picker li a.selected {
	background-color: var(--enfold-alternate-color-primary) !important;
	color: var(--enfold-alternate-color-constant-font) !important;
}

#top .alternate_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .alternate_color .wc-bookings-date-picker .ui-datepicker-header {
	border-color: var(--enfold-alternate-color-primary);
	background-color: var(--enfold-alternate-color-primary);
	color: var(--enfold-alternate-color-constant-font);
}

.alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable a {
	background-color: var(--enfold-alternate-color-primary) !important;
	color: var(--enfold-alternate-color-constant-font) !important;
	border-color: var(--enfold-alternate-color-border);
}

#top .alternate_color .wc-bookings-date-picker .ui-datepicker th, #top .alternate_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default {
	color: var(--enfold-alternate-color-color);
}

#top .alternate_color .wc_bookings_field_start_date, #top .alternate_color .wc-bookings-date-picker span.label {
	color: var(--enfold-alternate-color-meta);
}

#top .alternate_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .alternate_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month {
	background-color: var(--enfold-alternate-color-bg2);
}

#top .wc-bookings-booking-form .blockUI.blockOverlay {
	background-color: var(--enfold-alternate-color-bg) !important;
}

#top .alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .alternate_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a, #top .alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable-range {
	background: var(--enfold-alternate-color-primary2) !important;
	color: var(--enfold-alternate-color-constant-font);
}

.alternate_color .sort-param > li > span, .alternate_color .sort-param > li > a, .alternate_color .sort-param ul {
	background-color: var(--enfold-alternate-color-bg2);
}

.alternate_color .sort-param > li:hover > span, .alternate_color .sort-param > li:hover > a, .alternate_color .sort-param > li:hover ul, .alternate_color .product-sorting strong {
	color: var(--enfold-alternate-color-heading);
}

.alternate_color .sort-param  a {
	color: var(--enfold-alternate-color-meta);
}

#top .alternate_color .sort-param  a:hover {
	color: var(--enfold-alternate-color-secondary);
}

.alternate_color .avia-bullet {
	border-color: var(--enfold-alternate-color-meta);
}

#top .alternate_color a:hover .avia-bullet {
	border-color: var(--enfold-alternate-color-secondary);
}

#top .alternate_color .sort-param  .current-param a, #top .alternate_color .sort-param  .current-param a:hover {
	color: var(--enfold-alternate-color-primary);
}

#top .alternate_color .sort-param .current-param .avia-bullet, #top .alternate_color .sort-param .current-param a:hover .avia-bullet {
	border-color: var(--enfold-alternate-color-primary);
}

.main_color .cart_dropdown .dropdown_widget li a, #top .main_color  .avia_cart_buttons .button, #top .main_color .dropdown_widget .buttons .button, .main_color .cart_dropdown_first .cart_dropdown_link, #top .main_color p.order-info mark {
	color: var(--enfold-main-color-color);
}

#top #wrap_all .main_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, :not(.html_cart_at_menu) #top #wrap_all .main_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon .av-cart-container svg:first-child, #top .main_color  .avia_cart_buttons .avia-svg-icon svg:first-child {
	stroke: var(--enfold-main-color-color);
	fill: var(--enfold-main-color-color);
}

#top #wrap_all .main_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, .html_cart_at_menu #top #wrap_all .main_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child {}

.main_color .woocommerce-tabs .tabs a, .main_color .product_meta, .main_color .quantity input.qty, .main_color .cart_dropdown .dropdown_widget, .main_color .avia_select_fake_val, .main_color address, .main_color .product>a .main_color .product_excerpt, .main_color .term_description, #top .main_color .price .from, #top #wrap_all .main_color del, .main_color .dynamic-title .dynamic-heading, .main_color .dynamic-title a, .main_color .entry-summary .woocommerce-product-rating  .woocommerce-review-link, .main_color .chosen-container-single .chosen-single span, #top .main_color .select2-container .select2-choice, .main_color .woocommerce-MyAccount-navigation-link.is-active a {
	color: var(--enfold-main-color-meta);
}

.main_color div.product .woocommerce-tabs ul.tabs li.active a, .main_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .main_color .cart_dropdown_link, .main_color .inner_product_header, .main_color .avia-arrow, #top .main_color .variations select, #top .main_color .variations input, #top .main_color #reviews input[type='text'], #top .main_color #reviews input[type='email'], .main_color #reviews .comment-text, .main_color #reviews #comment, .main_color .single-product-main-image .images a, #top .main_color .shop_table.cart .input-text, #top .main_color form.login .input-text, #top .main_color form.register .input-text, .main_color .chosen-container-single .chosen-search, .main_color .products .product-category h3:before, #top .main_color .quantity input.qty {
	background-color: var(--enfold-main-color-bg);
}

.main_color .woocommerce-tabs .tabs .active, .main_color div.product .woocommerce-tabs .panel, .main_color .activeslideThumb, .main_color #payment li, .main_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .main_color .avia_cart, .main_color form.login, .main_color form.register, .main_color .variations_form, .main_color .dynamic-title, .main_color .single-product-main-image .thumbnails a, .main_color .quantity input.qty, .main_color .avia_cart_buttons, #top .main_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .main_color .woocommerce-info, #top .main_color .chosen-container-single .chosen-single, #top .main_color .chosen-search input[type='text'], .main_color .chosen-results, .main_color .chosen-container .chosen-drop, #top .main_color .select2-container .select2-choice, .main_color .widget_layered_nav_filters .chosen a:hover, .main_color .widget_layered_nav .chosen a:hover, .main_color .woocommerce-MyAccount-navigation-link.is-active, .main_color .woocommerce-MyAccount-navigation-link:hover {
	background-color: var(--enfold-main-color-bg2);
}

.main_color .thumbnail_container img, #top .main_color #main .order_details, #top .main_color .chosen-search input[type='text'], #top .main_color .chosen-container-single .chosen-single, #top .main_color .chosen-container-active .chosen-single, #top .main_color .chosen-container .chosen-drop, .main_color .chosen-container .chosen-results, .main_color .products .product-category h3:before, #top .main_color .select2-container .select2-choice {
	border-color: var(--enfold-main-color-border);
}

.main_color .summary div {
	border-color: var(--enfold-main-color-bg2);
}

.main_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .main_color a.remove, #top .main_color .onsale {
	background-color: var(--enfold-main-color-primary);
}

#top .main_color .active-result.highlighted {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
}

.main_color #shop_header a:hover {
	color: #fff;
}

#top .main_color .price, .main_color .stock, #top #wrap_all .main_color ins, .main_color .products .product-category h3 .count, .main_color .widget_layered_nav_filters .chosen a:before, .main_color .widget_layered_nav .chosen a:before {
	color: var(--enfold-main-color-primary);
}

.main_color .dynamic-title a:hover {
	color: var(--enfold-main-color-secondary);
}

.main_color .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: var(--enfold-main-color-border);
}

#top .main_color .chzn-container-single .chzn-single {
	border-color: var(--enfold-main-color-border);
	background-color: var(--enfold-main-color-bg2);
	color: var(--enfold-main-color-meta);
}

.main_color #payment {
	background-color: var(--enfold-main-color-bg2);
}

#top .main_color .quantity input.plus, #top .main_color .quantity input.minus {
	border-color: var(--enfold-main-color-border);
	background-color: var(--enfold-main-color-dark-bg2);
	color: var(--enfold-main-color-meta);
}

.main_color .wc-bookings-booking-form .block-picker li a, #top .main_color .wc-bookings-date-picker .ui-datepicker td {
	border-color: var(--enfold-main-color-border);
}

#top .main_color .wc-bookings-booking-form .block-picker li a:hover, #top .main_color .wc-bookings-booking-form .block-picker li a:focus, #top .main_color .wc-bookings-booking-form .block-picker li a.selected {
	background-color: var(--enfold-main-color-primary) !important;
	color: var(--enfold-main-color-constant-font) !important;
}

#top .main_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .main_color .wc-bookings-date-picker .ui-datepicker-header {
	border-color: var(--enfold-main-color-primary);
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
}

.main_color .wc-bookings-date-picker .ui-datepicker td.bookable a {
	background-color: var(--enfold-main-color-primary) !important;
	color: var(--enfold-main-color-constant-font) !important;
	border-color: var(--enfold-main-color-border);
}

#top .main_color .wc-bookings-date-picker .ui-datepicker th, #top .main_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default {
	color: var(--enfold-main-color-color);
}

#top .main_color .wc_bookings_field_start_date, #top .main_color .wc-bookings-date-picker span.label {
	color: var(--enfold-main-color-meta);
}

#top .main_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .main_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month {
	background-color: var(--enfold-main-color-bg2);
}

#top .wc-bookings-booking-form .blockUI.blockOverlay {
	background-color: var(--enfold-main-color-bg) !important;
}

#top .main_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .main_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a, #top .main_color .wc-bookings-date-picker .ui-datepicker td.bookable-range {
	background: var(--enfold-main-color-primary2) !important;
	color: var(--enfold-main-color-constant-font);
}

.main_color .sort-param > li > span, .main_color .sort-param > li > a, .main_color .sort-param ul {
	background-color: var(--enfold-main-color-bg2);
}

.main_color .sort-param > li:hover > span, .main_color .sort-param > li:hover > a, .main_color .sort-param > li:hover ul, .main_color .product-sorting strong {
	color: var(--enfold-main-color-heading);
}

.main_color .sort-param  a {
	color: var(--enfold-main-color-meta);
}

#top .main_color .sort-param  a:hover {
	color: var(--enfold-main-color-secondary);
}

.main_color .avia-bullet {
	border-color: var(--enfold-main-color-meta);
}

#top .main_color a:hover .avia-bullet {
	border-color: var(--enfold-main-color-secondary);
}

#top .main_color .sort-param  .current-param a, #top .main_color .sort-param  .current-param a:hover {
	color: var(--enfold-main-color-primary);
}

#top .main_color .sort-param .current-param .avia-bullet, #top .main_color .sort-param .current-param a:hover .avia-bullet {
	border-color: var(--enfold-main-color-primary);
}

.added_to_cart_notification, .added_to_cart_notification .avia-arrow {
	background-color: var(--enfold-main-color-bg);
	color: var(--enfold-main-color-meta);
	border-color: var(--enfold-main-color-border);
}

.added_to_cart_notification strong {
	color: var(--enfold-main-color-heading);
}

#top .select2-drop {
	background-color: var(--enfold-main-color-bg);
}

#top .select2-results {
	color: var(--enfold-main-color-meta);
}

#top .select2-search {
	background-color: var(--enfold-main-color-bg2);
}

#top .select2-search, #top .select2-drop-active {
	border-color: var(--enfold-main-color-border);
}

#top .select2-search input[type='text'] {
	background-color: var(--enfold-main-color-bg);
	color: var(--enfold-main-color-meta);
	border-color: var(--enfold-main-color-border);
}

.select2-results .select2-highlighted {
	color: var(--enfold-main-color-constant-font);
	background-color: var(--enfold-main-color-primary);
}

#top .avia-wc-notice-box.main_color .woocommerce-message a.button {
	background-color: var(--enfold-main-color-primary);
	color: var(--enfold-main-color-constant-font);
	border-color: var(--enfold-main-color-button-border);
}

#top .avia-wc-notice-box.main_color .woocommerce-message a.button:hover {
	background-color: var(--enfold-main-color-secondary);
	color: var(--enfold-main-color-bg);
	border-color: var(--enfold-main-color-button-border2);
}

.header_color .cart_dropdown .dropdown_widget li a, #top .header_color  .avia_cart_buttons .button, #top .header_color .dropdown_widget .buttons .button, .header_color .cart_dropdown_first .cart_dropdown_link, #top .header_color p.order-info mark {
	color: var(--enfold-header-color-color);
}

#top #wrap_all .header_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, :not(.html_cart_at_menu) #top #wrap_all .header_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon .av-cart-container svg:first-child, #top .header_color  .avia_cart_buttons .avia-svg-icon svg:first-child {
	stroke: var(--enfold-header-color-color);
	fill: var(--enfold-header-color-color);
}

#top #wrap_all .header_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child, .html_cart_at_menu #top #wrap_all .header_color.av_header_transparency .menu-item.cart_dropdown .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child {}

.header_color .woocommerce-tabs .tabs a, .header_color .product_meta, .header_color .quantity input.qty, .header_color .cart_dropdown .dropdown_widget, .header_color .avia_select_fake_val, .header_color address, .header_color .product>a .header_color .product_excerpt, .header_color .term_description, #top .header_color .price .from, #top #wrap_all .header_color del, .header_color .dynamic-title .dynamic-heading, .header_color .dynamic-title a, .header_color .entry-summary .woocommerce-product-rating  .woocommerce-review-link, .header_color .chosen-container-single .chosen-single span, #top .header_color .select2-container .select2-choice, .header_color .woocommerce-MyAccount-navigation-link.is-active a {
	color: var(--enfold-header-color-meta);
}

.header_color div.product .woocommerce-tabs ul.tabs li.active a, .header_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .header_color .cart_dropdown_link, .header_color .inner_product_header, .header_color .avia-arrow, #top .header_color .variations select, #top .header_color .variations input, #top .header_color #reviews input[type='text'], #top .header_color #reviews input[type='email'], .header_color #reviews .comment-text, .header_color #reviews #comment, .header_color .single-product-main-image .images a, #top .header_color .shop_table.cart .input-text, #top .header_color form.login .input-text, #top .header_color form.register .input-text, .header_color .chosen-container-single .chosen-search, .header_color .products .product-category h3:before, #top .header_color .quantity input.qty {
	background-color: var(--enfold-header-color-bg);
}

.header_color .woocommerce-tabs .tabs .active, .header_color div.product .woocommerce-tabs .panel, .header_color .activeslideThumb, .header_color #payment li, .header_color .widget_price_filter .ui-slider-horizontal .ui-slider-range, .header_color .avia_cart, .header_color form.login, .header_color form.register, .header_color .variations_form, .header_color .dynamic-title, .header_color .single-product-main-image .thumbnails a, .header_color .quantity input.qty, .header_color .avia_cart_buttons, #top .header_color .dropdown_widget .buttons, div .dropdown_widget .cart_list li:hover, .header_color .woocommerce-info, #top .header_color .chosen-container-single .chosen-single, #top .header_color .chosen-search input[type='text'], .header_color .chosen-results, .header_color .chosen-container .chosen-drop, #top .header_color .select2-container .select2-choice, .header_color .widget_layered_nav_filters .chosen a:hover, .header_color .widget_layered_nav .chosen a:hover, .header_color .woocommerce-MyAccount-navigation-link.is-active, .header_color .woocommerce-MyAccount-navigation-link:hover {
	background-color: var(--enfold-header-color-bg2);
}

.header_color .thumbnail_container img, #top .header_color #main .order_details, #top .header_color .chosen-search input[type='text'], #top .header_color .chosen-container-single .chosen-single, #top .header_color .chosen-container-active .chosen-single, #top .header_color .chosen-container .chosen-drop, .header_color .chosen-container .chosen-results, .header_color .products .product-category h3:before, #top .header_color .select2-container .select2-choice {
	border-color: var(--enfold-header-color-border);
}

.header_color .summary div {
	border-color: var(--enfold-header-color-bg2);
}

.header_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle, #top .header_color a.remove, #top .header_color .onsale {
	background-color: var(--enfold-header-color-primary);
}

#top .header_color .active-result.highlighted {
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-constant-font);
}

.header_color #shop_header a:hover {
	color: #fff;
}

#top .header_color .price, .header_color .stock, #top #wrap_all .header_color ins, .header_color .products .product-category h3 .count, .header_color .widget_layered_nav_filters .chosen a:before, .header_color .widget_layered_nav .chosen a:before {
	color: var(--enfold-header-color-primary);
}

.header_color .dynamic-title a:hover {
	color: var(--enfold-header-color-secondary);
}

.header_color .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: var(--enfold-header-color-border);
}

#top .header_color .chzn-container-single .chzn-single {
	border-color: var(--enfold-header-color-border);
	background-color: var(--enfold-header-color-bg2);
	color: var(--enfold-header-color-meta);
}

.header_color #payment {
	background-color: var(--enfold-header-color-bg2);
}

#top .header_color .quantity input.plus, #top .header_color .quantity input.minus {
	border-color: var(--enfold-header-color-border);
	background-color: var(--enfold-header-color-dark-bg2);
	color: var(--enfold-header-color-meta);
}

.header_color .wc-bookings-booking-form .block-picker li a, #top .header_color .wc-bookings-date-picker .ui-datepicker td {
	border-color: var(--enfold-header-color-border);
}

#top .header_color .wc-bookings-booking-form .block-picker li a:hover, #top .header_color .wc-bookings-booking-form .block-picker li a:focus, #top .header_color .wc-bookings-booking-form .block-picker li a.selected {
	background-color: var(--enfold-header-color-primary) !important;
	color: var(--enfold-header-color-constant-font) !important;
}

#top .header_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date, #top .header_color .wc-bookings-date-picker .ui-datepicker-header {
	border-color: var(--enfold-header-color-primary);
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-constant-font);
}

.header_color .wc-bookings-date-picker .ui-datepicker td.bookable a {
	background-color: var(--enfold-header-color-primary) !important;
	color: var(--enfold-header-color-constant-font) !important;
	border-color: var(--enfold-header-color-border);
}

#top .header_color .wc-bookings-date-picker .ui-datepicker th, #top .header_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default {
	color: var(--enfold-header-color-color);
}

#top .header_color .wc_bookings_field_start_date, #top .header_color .wc-bookings-date-picker span.label {
	color: var(--enfold-header-color-meta);
}

#top .header_color .wc-bookings-booking-form .wc-bookings-booking-cost, #top .header_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month {
	background-color: var(--enfold-header-color-bg2);
}

#top .wc-bookings-booking-form .blockUI.blockOverlay {
	background-color: var(--enfold-header-color-bg) !important;
}

#top .header_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default, #top .header_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a, #top .header_color .wc-bookings-date-picker .ui-datepicker td.bookable-range {
	background: var(--enfold-header-color-primary2) !important;
	color: var(--enfold-header-color-constant-font);
}

.header_color .sort-param > li > span, .header_color .sort-param > li > a, .header_color .sort-param ul {
	background-color: var(--enfold-header-color-bg2);
}

.header_color .sort-param > li:hover > span, .header_color .sort-param > li:hover > a, .header_color .sort-param > li:hover ul, .header_color .product-sorting strong {
	color: var(--enfold-header-color-heading);
}

.header_color .sort-param  a {
	color: var(--enfold-header-color-meta);
}

#top .header_color .sort-param  a:hover {
	color: var(--enfold-header-color-secondary);
}

.header_color .avia-bullet {
	border-color: var(--enfold-header-color-meta);
}

#top .header_color a:hover .avia-bullet {
	border-color: var(--enfold-header-color-secondary);
}

#top .header_color .sort-param  .current-param a, #top .header_color .sort-param  .current-param a:hover {
	color: var(--enfold-header-color-primary);
}

#top .header_color .sort-param .current-param .avia-bullet, #top .header_color .sort-param .current-param a:hover .avia-bullet {
	border-color: var(--enfold-header-color-primary);
}

#top .av-cart-counter {
	background-color: var(--enfold-header-color-primary);
	color: var(--enfold-header-color-constant-font);
}

.bbp-topics .bbp-body .bbp-topic-title:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.bbp-topics .bbp-body .topic-voices-multi .bbp-topic-title:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.bbp-topics .bbp-body .super-sticky .bbp-topic-title:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.bbp-topics .bbp-body .sticky .bbp-topic-title:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.bbp-topics .bbp-body .status-closed .bbp-topic-title:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.bbp-topics .bbp-body .super-sticky.status-closed .bbp-topic-title:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.bbp-topics .bbp-body .sticky.status-closed .bbp-topic-title:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

#top .avia-layerslider .ls-nav-prev:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

#top .avia-layerslider .ls-nav-next:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

#top .avia-layerslider .ls-nav-start:before, #top .avia_playpause_icon:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

#top .avia-layerslider .ls-nav-stop:before, #top .avia_playpause_icon.av-pause:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.image-overlay .image-overlay-inside:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.image-overlay.overlay-type-extern .image-overlay-inside:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.image-overlay.overlay-type-video .image-overlay-inside:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

div.avia-popup button.mfp-arrow:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

div.avia-popup button.mfp-arrow-left:before {
	content: "";
	font-family: "entypo-fontello-enfold";
}

.html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
	padding-top: 70px;
}

body.helvetica_neue {
	font-family: "helvetica neue", Helvetica, Arial, sans-serif;
}

:root {
	--enfold-font-family-body: "helvetica neue", Helvetica, Arial, sans-serif;
}

.search .post-meta-infos {
	display: none !important;
}

.header_color .ajax_search_excerpt {
	display: none;
}

.post-meta-infos {
	display: none;
	font-size: 12px;
	position: relative;
	top: -8px;
}

ins:before {
	display: none !important;
}

#header .avia_mega_div {
	overflow: auto;
	max-height: 70vh;
}

h1, h2, h3, h4, h5, h6, #top .title_container .main-title, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox, .av-special-font, .av-current-sort-title {
	font-family: Helvetica, "HelveticaNeue", "Helvetica Neue";
}

body {
	font-size: 18px !important;
}

#top.archive.category .fullsize .template-blog .blog-meta {
	float: left;
	margin: 0;
	display: block;
	position: relative;
	width: 180px;
	height: 180px;
}

#top.archive.category  .fullsize .template-blog .post .entry-content-wrapper > * {
	max-width: 52em;
}

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

.container {
	width: 100%;
}

.container .av-content-small.units {
	width: 65%;
}

.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
	width: 1310px;
	max-width: 90%;
}

.responsive .container {
	max-width: 1310px;
}

#top #wrap_all .all_colors h2 {
	text-transform: none;
}

#top #wrap_all .slideshow_caption h2.avia-caption-title, #top #wrap_all .av-slideshow-caption h2.avia-caption-title {
	text-transform: none;
}

#top #wrap_all .all_colors h1 {
	text-transform: none;
}

#top #header .av-main-nav > li:hover > a {
	color: #80a133;
}

#top #header .av-main-nav > li:hover > a > svg:first-child, #top #wrap_all .header_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon:hover svg:first-child {
	fill: #80a133;
	stroke: #80a133;
}

#top #header .av-main-nav > li:hover > a .avia-menu-text, #top #header .av-main-nav > li:hover > a .avia-menu-subtext {
	color: #80a133;
}

/* Have fun adding your style here :) - PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */

/* General Custom CSS */

/*
Desktop Styles
================================================== */

/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
@media only screen and (min-width: 768px) {}

/*
Mobile Styles
================================================== */

/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 767px) {}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__hidden, .wc-block-components-order-summary-item.is-bundle__hidden {
	display: none !important;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__price_hidden .wc-block-cart-item__prices, table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__price_hidden .wc-block-components-product-badge, .wc-block-components-order-summary-item.is-bundle__price_hidden .wc-block-cart-item__prices, .wc-block-components-order-summary-item.is-bundle__price_hidden .wc-block-components-product-badge {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__title_hidden .wc-block-components-product-name, .wc-block-components-order-summary-item.is-bundle__title_hidden .wc-block-components-product-name {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__subtotal_hidden .wc-block-cart-item__total-price-and-sale-badge-wrapper, .wc-block-components-order-summary-item.is-bundle__subtotal_hidden .wc-block-cart-item__total-price-and-sale-badge-wrapper {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__meta_hidden .wc-block-components-product-details__includes, .wc-block-components-order-summary-item.is-bundle__meta_hidden .wc-block-components-product-details__includes {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-components-product-details__includes .wc-block-components-product-details__name, .wc-block-components-order-summary-item.is-bundle .wc-block-components-product-details__includes .wc-block-components-product-details__name {
	display: block;
	margin-bottom: .5em;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-components-product-details__includes:not(:first-of-type) .wc-block-components-product-details__name, .wc-block-components-order-summary-item.is-bundle .wc-block-components-product-details__includes:not(:first-of-type) .wc-block-components-product-details__name {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-components-product-details__includes+li:not(.wc-block-components-product-details__includes), .wc-block-components-order-summary-item.is-bundle .wc-block-components-product-details__includes+li:not(.wc-block-components-product-details__includes) {
	margin-top: .5em;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-cart-item__edit, .wc-block-components-order-summary-item.is-bundle .wc-block-cart-item__edit {
	margin: .75em 0;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-cart-item__edit a, .wc-block-components-order-summary-item.is-bundle .wc-block-cart-item__edit a {
	text-decoration: underline;
	color: inherit;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled:not(.is-bundled__removable) .wc-block-cart-item__remove-link, .wc-block-components-order-summary-item.is-bundled:not(.is-bundled__removable) .wc-block-cart-item__remove-link {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__hidden, .wc-block-components-order-summary-item.is-bundled__hidden {
	display: none !important;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__description_hidden .wc-block-components-product-metadata__description, .wc-block-components-order-summary-item.is-bundled__description_hidden .wc-block-components-product-metadata__description {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__subtotal_aggregated .wc-block-components-product-badge, .wc-block-components-order-summary-item.is-bundled__indented.is-bundled__subtotal_aggregated .wc-block-components-product-badge {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__subtotal_aggregated .wc-block-cart-item__total, .wc-block-components-order-summary-item.is-bundled__indented.is-bundled__subtotal_aggregated .wc-block-cart-item__total {
	font-size: .875em;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap, .wc-block-components-order-summary-item.is-bundled__indented .wc-block-cart-item__wrap {
	padding-top: 66px;
	font-size: .875em;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap .wc-block-components-product-metadata, table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap .wc-block-cart-item__remove-link, .wc-block-components-order-summary-item.is-bundled__indented .wc-block-cart-item__wrap .wc-block-components-product-metadata, .wc-block-components-order-summary-item.is-bundled__indented .wc-block-cart-item__wrap .wc-block-cart-item__remove-link {
	font-size: .8572em;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image, .wc-block-components-order-summary-item.is-bundled__indented td.wc-block-cart-item__image {
	position: relative;
	z-index: 1;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image a, .wc-block-components-order-summary-item.is-bundled__indented td.wc-block-cart-item__image a {
	height: 50px;
	display: block;
	width: 0px;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image img, .wc-block-components-order-summary-item.is-bundled__indented td.wc-block-cart-item__image img {
	position: absolute;
	left: 100%;
	width: 50px;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image:after, .wc-block-components-order-summary-item.is-bundled__indented td.wc-block-cart-item__image:after {
	margin-left: 100%;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__product:after, .wc-block-components-order-summary-item.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__product:after {
	margin-left: 82px;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__product:after, table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__total:after, .wc-block-components-order-summary-item.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__product:after, .wc-block-components-order-summary-item.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__total:after {
	opacity: .1;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-badge, .wc-block-components-order-summary-item.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-badge {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-price, .wc-block-components-order-summary-item.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-price {
	white-space: nowrap;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-price :after, .wc-block-components-order-summary-item.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-price :after {
	font-family: "FontAwesomePB";
	display: inline-block;
	font-smoothing: antialiased;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	content: "";
	margin-left: .75em;
	opacity: .25;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__price_hidden .wc-block-cart-item__prices, table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__price_hidden .wc-block-components-product-badge, .wc-block-components-order-summary-item.is-bundled__price_hidden .wc-block-cart-item__prices, .wc-block-components-order-summary-item.is-bundled__price_hidden .wc-block-components-product-badge {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_hidden .wc-block-cart-item__total-price-and-sale-badge-wrapper, .wc-block-components-order-summary-item.is-bundled__subtotal_hidden .wc-block-cart-item__total-price-and-sale-badge-wrapper {
	display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__thumbnail_hidden .wc-block-cart-item__image, .wc-block-components-order-summary-item.is-bundled__thumbnail_hidden .wc-block-cart-item__image {
	visibility: hidden;
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap, .is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap {
	padding-top: 0;
	padding-left: 66px;
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited .wc-block-cart-item__wrap, .is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited .wc-block-cart-item__wrap {
	padding-top: 0;
	padding-left: 132px;
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__image img, .is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__image img {
	margin-left: 66px;
}

.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap {
	padding-top: 0;
	padding-left: 66px;
}

.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image img {
	margin-left: 16px;
}

.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited .wc-block-cart-item__wrap {
	padding-top: 0;
	padding-left: 132px;
}

.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__image img {
	margin-left: 82px;
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundle:after, .is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented:not(.is-bundled__last):after, .is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundle:after, .is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented:not(.is-bundled__last):after, .is-mobile table.wc-block-cart-items .wc-block-cart-items__row.is-bundle:after, .is-mobile table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented:not(.is-bundled__last):after {
	margin-left: 80px;
}

.cl-template {
	border-style: solid;
	border-width: 0;
	position: relative;
	display: flex;
	flex: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.cl-template--image-left, .cl-template--image-right {
	flex-direction: row;
}

.cl-template--image-left .cl-element-featured_media--sizing-natural.cl-element-featured_media--no-image, .cl-template--image-right .cl-element-featured_media--sizing-natural.cl-element-featured_media--no-image {
	width: 40%;
}

.cl-template--image-left .cl-element-featured_media--sizing-natural.cl-element-featured_media--no-image .cl-element-featured_media__anchor, .cl-template--image-right .cl-element-featured_media--sizing-natural.cl-element-featured_media--no-image .cl-element-featured_media__anchor {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cl-template--image-top, .cl-template--image-bottom {
	flex-direction: column;
}

.cl-template--image-top .cl-element-featured_media--sizing-natural.cl-element-featured_media--no-image, .cl-template--image-bottom .cl-element-featured_media--sizing-natural.cl-element-featured_media--no-image {
	height: 0;
	padding-top: 75%;
}

.cl-template--image-top .cl-element-featured_media--sizing-natural.cl-element-featured_media--no-image .cl-element-featured_media__anchor, .cl-template--image-bottom .cl-element-featured_media--sizing-natural.cl-element-featured_media--no-image .cl-element-featured_media__anchor {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cl-template h1, .cl-template h2, .cl-template h3, .cl-template h4, .cl-template h5, .cl-template h6, .cl-template div, .cl-template span, .cl-template a, .cl-template p, .cl-template img, .cl-template em, .cl-template big, .cl-template small, .cl-template strike, .cl-template strong, .cl-template b, .cl-template u, .cl-template i, .cl-template section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-style: inherit;
	font-size: 16px;
	font-family: inherit;
	font-family: Arial, Helvetica, sans-serif;
	vertical-align: baseline;
	text-decoration: none;
	line-height: 1.2;
	color: inherit;
	border-style: solid;
	overflow-wrap: break-word;
	word-break: break-word;
	box-shadow: none;
}

.cl-template a img {
	box-shadow: none;
}

.cl-template h1, .cl-template h2, .cl-template h3, .cl-template h4, .cl-template h5, .cl-template h6 {
	font-weight: 600;
	line-height: 1.2;
}

.cl-template h1 a, .cl-template h2 a, .cl-template h3 a, .cl-template h4 a, .cl-template h5 a, .cl-template h6 a {
	font-size: inherit;
	font-weight: inherit;
}

.cl-template h1 {
	font-size: 40px;
}

.cl-template h2 {
	font-size: 32px;
}

.cl-template h3 {
	font-size: 27.2px;
}

.cl-template h4 {
	font-size: 22.4px;
}

.cl-template h5 {
	font-size: 17.6px;
}

.cl-template h6 {
	font-size: 12.8px;
}

.cl-template a:hover {
	color: inherit;
}

.cl-template .cl-element__container {
	display: flex;
	flex-wrap: wrap;
}

.cl-template .cl-element {
	display: flex;
	position: relative;
}

.cl-template .cl-element * {
	overflow-wrap: break-word;
	word-break: break-word;
}

.cl-template .cl-element-author {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	align-self: flex-start;
}

.cl-template .cl-element-author__image {
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	font-size: inherit;
	font-weight: inherit;
	font-style: inherit;
	width: 1.25em;
	height: 1.25em;
}

.cl-template .cl-element-author__image img {
	display: block;
	max-height: 100%;
	max-width: 100%;
	width: 100%;
}

.cl-template .cl-element-author__image--circle {
	overflow: hidden;
}

.cl-template .cl-element-author__image--circle img {
	border-radius: 2em;
}

.cl-template .cl-element-author__text {
	display: flex;
	align-content: center;
	justify-content: center;
	flex: unset;
	align-items: flex-end;
	font-size: inherit;
	text-decoration: inherit;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
}

.cl-template .cl-element .cl-element-author__image+.cl-element-author__text, .cl-template .cl-element .cl-element-author__text+.cl-element-author__image {
	margin-left: .5em;
}

.cl-template .cl-element-section, .cl-template .cl-element-featured_media {
	display: block;
}

.cl-template .cl-element-link__anchor {
	font-family: inherit;
	font-style: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-decoration: inherit;
	display: inline-block;
}

.cl-template .cl-element-section {
	position: relative;
	flex: 1;
}

.cl-template .cl-element-featured_media {
	overflow: hidden;
}

.cl-template .cl-element-featured_media__placeholder-image {
	width: 50%;
	height: 50%;
	top: 25%;
	left: 25%;
	position: absolute;
}

.cl-template .cl-element-featured_media__image {
	display: block;
}

.cl-template .cl-element-custom_field .cl-element__container {
	display: block;
}

.cl-template .cl-element-custom_field strong, .cl-template .cl-element-custom_field b {
	font-weight: 600;
}

.cl-template .cl-element-custom_field em, .cl-template .cl-element-custom_field i {
	font-style: italic;
}

.cl-template .cl-element-custom_field u {
	text-decoration: underline;
}

.cl-template .cl-element-taxonomy {
	flex-flow: row wrap;
}

.cl-template .cl-element-taxonomy__terms {
	flex: 1;
}

.cl-template .cl-element-taxonomy__term {
	display: inline-flex;
}

.cl-template .cl-element-text>span, .cl-template .cl-element-text>div, .cl-template .cl-element-text>p, .cl-template .cl-element-text>small, .cl-template .cl-element-text>section {
	color: inherit;
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	text-decoration: inherit;
	font-size: inherit;
}

.cl-template .cl-element-excerpt {
	display: block;
}

.cl-layout-container {
	--cl-layout-margin: 0;
	--cl-layout-padding: 0;
	--cl-layout-width: 100%;
	--cl-layout-background-color: transparent;
	--cl-layout-background-gradient: none;
	overflow: hidden;
	position: relative;
	padding: var(--cl-layout-margin, 0);
	box-sizing: border-box;
	background-clip: content-box;
	background-color: var(--cl-layout-background-color, transparent);
	background-image: var(--cl-layout-background-gradient, none);
}

.cl-layout {
	position: relative;
	box-sizing: border-box;
	display: flex;
	display: flex;
	--cl-layout-gap-c: 0;
	--cl-layout-gap-r: 0;
	margin: calc(-1 * var(--cl-layout-gap-r, 0)) 0 0 calc(-1 * var(--cl-layout-gap-c, 0px));
	width: auto;
	max-width: none;
	padding: var(--cl-layout-padding, 0px);
	flex-wrap: wrap;
	font-family: inherit;
}

.cl-layout__masonry-content {
	width: 100%;
	display: flex;
	position: relative;
	flex-wrap: wrap;
	margin: 0;
}

.cl-layout__masonry-content>.cl-layout__item, .cl-layout--grid>.cl-layout__item {
	margin: var(--cl-layout-gap-r, 0) 0 0 var(--cl-layout-gap-c, 0px);
}

.cl-layout * {
	box-sizing: border-box;
	font-family: inherit;
}

.cl-layout__item {
	position: relative;
	display: block;
	height: auto;
	flex: 0 0 50%;
}

.cl-layout--equal-rows .cl-template {
	height: 100%;
}

.cl-layout--fill-last-row .cl-layout__item {
	flex-grow: 1;
}

@media only screen and (min-width: 0px) {
	.cl-layout.cl-layout--col-xs-1 .cl-layout__item {
		width: calc(100% - var(--cl-layout-gap-c));
		flex-basis: calc(100% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-2 .cl-layout__item {
		width: calc(50% - var(--cl-layout-gap-c));
		flex-basis: calc(50% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-3 .cl-layout__item {
		width: calc(33.3333% - var(--cl-layout-gap-c));
		flex-basis: calc(33.3333% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-4 .cl-layout__item {
		width: calc(25% - var(--cl-layout-gap-c));
		flex-basis: calc(25% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-5 .cl-layout__item {
		width: calc(20% - var(--cl-layout-gap-c));
		flex-basis: calc(20% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-6 .cl-layout__item {
		width: calc(16.6666% - var(--cl-layout-gap-c));
		flex-basis: calc(16.6666% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-7 .cl-layout__item {
		width: calc(14.2857% - var(--cl-layout-gap-c));
		flex-basis: calc(14.2857% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-8 .cl-layout__item {
		width: calc(12.5% - var(--cl-layout-gap-c));
		flex-basis: calc(12.5% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-9 .cl-layout__item {
		width: calc(11.1111% - var(--cl-layout-gap-c));
		flex-basis: calc(11.1111% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-10 .cl-layout__item {
		width: calc(10% - var(--cl-layout-gap-c));
		flex-basis: calc(10% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-11 .cl-layout__item {
		width: calc(9.0909% - var(--cl-layout-gap-c));
		flex-basis: calc(9.0909% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-xs-12 .cl-layout__item {
		width: calc(8.3333% - var(--cl-layout-gap-c));
		flex-basis: calc(8.3333% - var(--cl-layout-gap-c));
	}
}

@media only screen and (min-width: 600px) {
	.cl-layout.cl-layout--col-s-1 .cl-layout__item {
		width: calc(100% - var(--cl-layout-gap-c));
		flex-basis: calc(100% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-2 .cl-layout__item {
		width: calc(50% - var(--cl-layout-gap-c));
		flex-basis: calc(50% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-3 .cl-layout__item {
		width: calc(33.3333% - var(--cl-layout-gap-c));
		flex-basis: calc(33.3333% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-4 .cl-layout__item {
		width: calc(25% - var(--cl-layout-gap-c));
		flex-basis: calc(25% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-5 .cl-layout__item {
		width: calc(20% - var(--cl-layout-gap-c));
		flex-basis: calc(20% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-6 .cl-layout__item {
		width: calc(16.6666% - var(--cl-layout-gap-c));
		flex-basis: calc(16.6666% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-7 .cl-layout__item {
		width: calc(14.2857% - var(--cl-layout-gap-c));
		flex-basis: calc(14.2857% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-8 .cl-layout__item {
		width: calc(12.5% - var(--cl-layout-gap-c));
		flex-basis: calc(12.5% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-9 .cl-layout__item {
		width: calc(11.1111% - var(--cl-layout-gap-c));
		flex-basis: calc(11.1111% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-10 .cl-layout__item {
		width: calc(10% - var(--cl-layout-gap-c));
		flex-basis: calc(10% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-11 .cl-layout__item {
		width: calc(9.0909% - var(--cl-layout-gap-c));
		flex-basis: calc(9.0909% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-s-12 .cl-layout__item {
		width: calc(8.3333% - var(--cl-layout-gap-c));
		flex-basis: calc(8.3333% - var(--cl-layout-gap-c));
	}
}

@media only screen and (min-width: 960px) {
	.cl-layout.cl-layout--col-m-1 .cl-layout__item {
		width: calc(100% - var(--cl-layout-gap-c));
		flex-basis: calc(100% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-2 .cl-layout__item {
		width: calc(50% - var(--cl-layout-gap-c));
		flex-basis: calc(50% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-3 .cl-layout__item {
		width: calc(33.3333% - var(--cl-layout-gap-c));
		flex-basis: calc(33.3333% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-4 .cl-layout__item {
		width: calc(25% - var(--cl-layout-gap-c));
		flex-basis: calc(25% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-5 .cl-layout__item {
		width: calc(20% - var(--cl-layout-gap-c));
		flex-basis: calc(20% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-6 .cl-layout__item {
		width: calc(16.6666% - var(--cl-layout-gap-c));
		flex-basis: calc(16.6666% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-7 .cl-layout__item {
		width: calc(14.2857% - var(--cl-layout-gap-c));
		flex-basis: calc(14.2857% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-8 .cl-layout__item {
		width: calc(12.5% - var(--cl-layout-gap-c));
		flex-basis: calc(12.5% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-9 .cl-layout__item {
		width: calc(11.1111% - var(--cl-layout-gap-c));
		flex-basis: calc(11.1111% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-10 .cl-layout__item {
		width: calc(10% - var(--cl-layout-gap-c));
		flex-basis: calc(10% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-11 .cl-layout__item {
		width: calc(9.0909% - var(--cl-layout-gap-c));
		flex-basis: calc(9.0909% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-m-12 .cl-layout__item {
		width: calc(8.3333% - var(--cl-layout-gap-c));
		flex-basis: calc(8.3333% - var(--cl-layout-gap-c));
	}
}

@media only screen and (min-width: 1280px) {
	.cl-layout.cl-layout--col-l-1 .cl-layout__item {
		width: calc(100% - var(--cl-layout-gap-c));
		flex-basis: calc(100% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-2 .cl-layout__item {
		width: calc(50% - var(--cl-layout-gap-c));
		flex-basis: calc(50% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-3 .cl-layout__item {
		width: calc(33.3333% - var(--cl-layout-gap-c));
		flex-basis: calc(33.3333% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-4 .cl-layout__item {
		width: calc(25% - var(--cl-layout-gap-c));
		flex-basis: calc(25% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-5 .cl-layout__item {
		width: calc(20% - var(--cl-layout-gap-c));
		flex-basis: calc(20% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-6 .cl-layout__item {
		width: calc(16.6666% - var(--cl-layout-gap-c));
		flex-basis: calc(16.6666% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-7 .cl-layout__item {
		width: calc(14.2857% - var(--cl-layout-gap-c));
		flex-basis: calc(14.2857% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-8 .cl-layout__item {
		width: calc(12.5% - var(--cl-layout-gap-c));
		flex-basis: calc(12.5% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-9 .cl-layout__item {
		width: calc(11.1111% - var(--cl-layout-gap-c));
		flex-basis: calc(11.1111% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-10 .cl-layout__item {
		width: calc(10% - var(--cl-layout-gap-c));
		flex-basis: calc(10% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-11 .cl-layout__item {
		width: calc(9.0909% - var(--cl-layout-gap-c));
		flex-basis: calc(9.0909% - var(--cl-layout-gap-c));
	}
	
	.cl-layout.cl-layout--col-l-12 .cl-layout__item {
		width: calc(8.3333% - var(--cl-layout-gap-c));
		flex-basis: calc(8.3333% - var(--cl-layout-gap-c));
	}
}

/* Template: Default */
.cl-template--id-0 {
	background-color: #fff;
	color: #333;
	margin: 0px;
	padding: 7px 7px 7px 6px;
	border-radius: 4px;
	border-width: 2px;
	border-color: #ccc;
}

.cl-template--id-0 .cl-element--instance-1001 {
	text-align: centercenter;
	font-family: Arial;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	border-radius: 4px;
	background-color: #efefef;
	display: flex;
	justify-content: center;
}

.cl-template--id-0 .cl-element--instance-1001 .cl-element-featured_media__anchor {
	width: 100%;
}

.cl-template--id-0 .cl-element--instance-1001 .cl-element-featured_media__image {
	width: 100%;
}

.cl-template--id-0 .cl-element--instance-1001 .cl-element-featured_media__placeholder-image {
	fill: #c2c2c2;
}

/* section */
.cl-template--id-0 div.cl-element--instance-1002 {
	text-align: left;
	font-family: Arial;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	margin: 0px;
	padding: 5px;
	border-radius: 0px;
	justify-content: flex-start;
}

/* title */
.cl-template--id-0 .cl-element--instance-1003 {
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	text-align: left;
	margin: 0px;
	padding: 5px 0px 5px 0px;
	border-radius: 0px;
	justify-content: flex-start;
}

.cl-template--id-0 .cl-element--instance-1003 .cl-element-title__anchor {
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	display: inline-block;
	line-height: inherit;
}

.cl-template--id-0 .cl-element--instance-1003 .cl-element-title__anchor:hover, .cl-template--id-0 .cl-element--instance-1003 .cl-element-title__anchor:active, .cl-template--id-0 .cl-element--instance-1003 .cl-element-title__anchor:focus {
	font-weight: bold;
	font-style: normal;
	text-decoration: underline;
}

/* excerpt */
.cl-template--id-0 div.cl-element--instance-1004 {
	margin: 0px;
	padding: 5px 0px 5px 0px;
	border-radius: 0px;
}

.cl-template--id-0 div.cl-element--instance-1005 {
	justify-content: flex-end;
	text-align: right;
}

.cl-template--id-0 div.cl-element--instance-1005 .cl-element-link__anchor {
	color: #fff;
	background-color: #0693e3;
	margin: 10px 0px 0px 0px;
	padding: 5px 10px 5px 10px;
	border-radius: 5px;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}

.cl-template--id-0 div.cl-element--instance-1005 .cl-element-link__anchor:hover, .cl-template--id-0 div.cl-element--instance-1005 .cl-element-link__anchor:active, .cl-template--id-0 div.cl-element--instance-1005 .cl-element-link__anchor:focus {
	font-weight: normal;
	font-style: normal;
	text-decoration: underline;
	background-color: #0693e3;
	color: #fff;
}

/* Template: Plus Results Serch */
.cl-template--id-30788 {
	background-color: #fff;
	color: #333;
	padding: 10px;
	border-radius: 4px;
	border-width: 2px;
	border-color: #8eb546;
}

/* title */
.cl-template--id-30788 .cl-element--instance-1013 {
	text-align: left;
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	margin: 0px;
	padding: 5px 0px 5px 0px;
	border-radius: 0px;
	justify-content: flex-start;
}

.cl-template--id-30788 .cl-element--instance-1013 .cl-element-title__anchor {
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	display: inline-block;
	line-height: inherit;
}

.cl-template--id-30788 .cl-element--instance-1013 .cl-element-title__anchor:hover, .cl-template--id-30788 .cl-element--instance-1013 .cl-element-title__anchor:active, .cl-template--id-30788 .cl-element--instance-1013 .cl-element-title__anchor:focus {
	font-weight: bold;
	font-style: normal;
	text-decoration: underline;
}

/* excerpt */
.cl-template--id-30788 div.cl-element--instance-1014 {
	text-align: left;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	margin: 0px;
	padding: 5px 0px 5px 0px;
	border-radius: 0px;
	justify-content: flex-start;
}

.cl-template--id-30788 .cl-element--instance-1015 {
	text-align: left;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	border-radius: 0px;
	background-color: #efefef;
	display: flex;
	justify-content: center;
}

.cl-template--id-30788 .cl-element--instance-1015 .cl-element-featured_media__anchor {
	width: 100%;
}

.cl-template--id-30788 .cl-element--instance-1015 .cl-element-featured_media__image {
	width: 100%;
}

.cl-template--id-30788 .cl-element--instance-1015 .cl-element-featured_media__placeholder-image {
	fill: #c2c2c2;
}

/* section */
.cl-template--id-30788 div.cl-element--instance-1016 {
	text-align: left;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	margin: 0px;
	padding: 10px 0px 0px 0px;
	border-radius: 0px;
	justify-content: flex-start;
}

.bundled_table_item .product-name, .bundled_table_item .product-price, .bundled_table_item:not(.order_item) .product-quantity, .bundled_table_item .product-subtotal, .bundled_table_item .product-total {
	font-size: .875em;
}

.bundled_table_item .bundled_table_item_indent {
	padding-left: 32px;
}

.woocommerce .bundled_table_item td.product-name dl.variation, .woocommerce-page .bundled_table_item td.product-name dl.variation, .bundled_table_item td.product-name .wc-item-meta {
	font-size: 100%;
}

.bundled_table_item, .bundled_table_item td {
	border-top: none !important;
	border-bottom: none !important;
}

.bundle_table_item, .bundle_table_item td {
	border-bottom: none !important;
}

.bundled_table_item_price, .bundled_table_item_subtotal {
	white-space: nowrap;
}

.bundled_table_item_price:after, .bundled_table_item_subtotal:after {
	font-family: "FontAwesomePB";
	font-size: 1rem;
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	content: "";
	margin: 0 2px 0 12px;
	opacity: .25;
}

dt.bundled_title_meta, .bundled_notice {
	margin: 12px 0 5px;
}

a.edit_bundle_in_cart_text {
	color: #888;
	font-weight: normal;
	text-decoration: none;
}

a.edit_bundle_in_cart_text:hover small {
	text-decoration: underline;
}

.wcsatt-add-cart-to-subscription-options .bundled_table_item {
	font-size: .875em;
}

.wcsatt-add-cart-to-subscription-options .bundled_table_item:after {
	font-family: "FontAwesomePB";
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	content: "";
	margin: 0 2px 0 12px;
	opacity: .25;
}

.avia-section.av-37yvi7-70ce0d02a0d75261960efd80a671210e {
	background-color: #709527;
	background-image: unset;
	margin-top: 0px;
	margin-bottom: 0px;
}

.avia-section.av-37yvi7-70ce0d02a0d75261960efd80a671210e .av-section-color-overlay {
	opacity: .2;
	background-color: #000;
}

.flex_column.av-8jb93-afe091795f944d4ac20ac6f1ca36fdb4 {
	padding: 40px 30px 20px 0;
}

#top .flex_column_table.av-equal-height-column-flextable.av-qmqn3-788013db107bfb469ac663673192ee7e {
	margin-top: -10px;
	margin-bottom: 5px;
}

.flex_column.av-qmqn3-788013db107bfb469ac663673192ee7e {
	height: 20px;
}

#top .flex_column.av-lq8d9qdg-fb291b2f12516ea698a59991d0a0a367 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.flex_column.av-lq8d9qdg-fb291b2f12516ea698a59991d0a0a367 {
	padding: 0 0 0 0;
	background-color: #f2f2f2;
}

.responsive #top #wrap_all .flex_column.av-lq8d9qdg-fb291b2f12516ea698a59991d0a0a367 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.avia-image-container.av-7zm5b-05f560da0e87946c685a1c4d34e73850 img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-7zm5b-05f560da0e87946c685a1c4d34e73850 .av-image-caption-overlay-center {
	color: #fff;
}

#top .flex_column.av-2jh6v-5640448e7250922e8af732d8c080a198 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.responsive #top #wrap_all .flex_column.av-2jh6v-5640448e7250922e8af732d8c080a198 {
	margin-top: 0px;
	margin-bottom: 0px;
}

#top .flex_column.av-ivvaf-b4c61cd81b0ea62449b8c05268edbaca {
	margin-top: 0px;
	margin-bottom: 0px;
}

.responsive #top #wrap_all .flex_column.av-ivvaf-b4c61cd81b0ea62449b8c05268edbaca {
	margin-top: 0px;
	margin-bottom: 0px;
}

#top .flex_column.av-lq8di2rq-d230072e0a90c207149d44d77ca6fd21 {
	margin-top: -15px;
	margin-bottom: 0px;
}

.flex_column.av-lq8di2rq-d230072e0a90c207149d44d77ca6fd21 {
	padding: 5px 5px 5px 5px;
	background-color: #f2f2f2;
}

.responsive #top #wrap_all .flex_column.av-lq8di2rq-d230072e0a90c207149d44d77ca6fd21 {
	margin-top: -15px;
	margin-bottom: 0px;
}

#top .flex_column.av-gwerb-5d1b0898d82c66e65157e554954ee490 {
	margin-top: -15px;
	margin-bottom: 0px;
}

.responsive #top #wrap_all .flex_column.av-gwerb-5d1b0898d82c66e65157e554954ee490 {
	margin-top: -15px;
	margin-bottom: 0px;
}

#top .flex_column.av-bol6n-b3d6e36c0e4f74ad2b17d5c1da1447b4 {
	margin-top: -15px;
	margin-bottom: 0px;
}

.responsive #top #wrap_all .flex_column.av-bol6n-b3d6e36c0e4f74ad2b17d5c1da1447b4 {
	margin-top: -15px;
	margin-bottom: 0px;
}

#top .hr.hr-invisible.av-lq8i1638-c69f31c7c2845f6a8953453343753ac8 {
	height: 40px;
}

#top .flex_column_table.av-equal-height-column-flextable.av-djs5z-c8a8c61803f353dde4b3e73e4518b9fc {
	margin-top: 0px;
	margin-bottom: 0px;
}

.flex_column.av-djs5z-c8a8c61803f353dde4b3e73e4518b9fc {
	height: 50px;
}

#top .flex_column_table.av-equal-height-column-flextable.av-1is09j-58e9caea152e8a7f638b7960e4285f4f {
	margin-top: 20px;
	margin-bottom: 20px;
}

.flex_column.av-1is09j-58e9caea152e8a7f638b7960e4285f4f {
	padding: 5px 5px 5px 5px;
	background-color: #f2f2f2;
}

.avia-image-container.av-1ecs0f-f28bc5a8a053597b5782eb1af43c8aa1 img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-1ecs0f-f28bc5a8a053597b5782eb1af43c8aa1 .av-image-caption-overlay-center {
	color: #fff;
}

#top .flex_column_table.av-equal-height-column-flextable.av-1bg5t3-cdf338a62558a217f1abad97077ea9e3 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.flex_column.av-1bg5t3-cdf338a62558a217f1abad97077ea9e3 {
	padding: 5px 5px 5px 5px;
	background-color: #f2f2f2;
}

.avia-image-container.av-12dmen-c84466501bc70824fbfc606bede87b93 img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-12dmen-c84466501bc70824fbfc606bede87b93 .av-image-caption-overlay-center {
	color: #fff;
}

#top .flex_column_table.av-equal-height-column-flextable.av-w1b9r-7eda1180e78117c80865a571a9ff435a {
	margin-top: 20px;
	margin-bottom: 20px;
}

.flex_column.av-w1b9r-7eda1180e78117c80865a571a9ff435a {
	padding: 5px 5px 5px 5px;
	background-color: #f2f2f2;
}

.avia-image-container.av-ohx7j-68dfbd499579c754afbfe6ddfaf05600 img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-ohx7j-68dfbd499579c754afbfe6ddfaf05600 .av-image-caption-overlay-center {
	color: #fff;
}

#top .hr.hr-invisible.av-lq8htjqi-d885beaba73fdeb26e4fb944592537a6 {
	height: 10px;
}

#top .flex_column_table.av-equal-height-column-flextable.av-1ll68n-7d1e225d13a05e41722cf7a1347213b0 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.flex_column.av-1ll68n-7d1e225d13a05e41722cf7a1347213b0 {
	padding: 5px 5px 5px 5px;
	background-color: #f2f2f2;
}

.avia-image-container.av-1d20db-eef439980ebbc831092499460b4a1f65 img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-1d20db-eef439980ebbc831092499460b4a1f65 .av-image-caption-overlay-center {
	color: #fff;
}

#top .flex_column_table.av-equal-height-column-flextable.av-17u0mf-825e44b72dd7074e63f82918f6bd0d83 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.flex_column.av-17u0mf-825e44b72dd7074e63f82918f6bd0d83 {
	padding: 5px 5px 5px 5px;
	background-color: #f2f2f2;
}

.avia-image-container.av-12tsyv-9e6c64a6d4e3271238245fb24615809a img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-12tsyv-9e6c64a6d4e3271238245fb24615809a .av-image-caption-overlay-center {
	color: #fff;
}

#top .flex_column_table.av-equal-height-column-flextable.av-zb73j-ad88be73623f5031e172f57ed206d9ca {
	margin-top: 0px;
	margin-bottom: 0px;
}

.flex_column.av-zb73j-ad88be73623f5031e172f57ed206d9ca {
	padding: 5px 5px 5px 5px;
	background-color: #f2f2f2;
}

.avia-image-container.av-q7l47-837204a9c2443d01e2255b96694fb4d5 img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-q7l47-837204a9c2443d01e2255b96694fb4d5 .av-image-caption-overlay-center {
	color: #fff;
}

.flex_column.av-pcogn-0c917a28b939079b5d7ef981b959cd1f {
	border-radius: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.avia-image-container.av-jsnoovir-4e4cf67214f0930e63aaf5ff9f1f646e img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-jsnoovir-4e4cf67214f0930e63aaf5ff9f1f646e .av-image-caption-overlay-center {
	color: #fff;
}

.avia-image-container.av-jsnoovir-1-fb723b0104b7963a09d44172f4497a1d img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-jsnoovir-1-fb723b0104b7963a09d44172f4497a1d .av-image-caption-overlay-center {
	color: #fff;
}

.avia-image-container.av-jsnsi1q9-f0dc60650f08fbd3c4b8d14206e88208 img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-jsnsi1q9-f0dc60650f08fbd3c4b8d14206e88208 .av-image-caption-overlay-center {
	color: #fff;
}

.flex_column.av-jnaxz-660c852c6d58cc291ed8e2e68c568dd9 {
	border-radius: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.avia-section.av-1q5v93-24761ca16ade6ac7b9a2a6cb8f639d6e {
	background-color: #709527;
	background-image: unset;
}

.avia-section.av-1q5v93-24761ca16ade6ac7b9a2a6cb8f639d6e .av-extra-border-element .av-extra-border-inner {
	background-color: #709527;
}

#top .av-special-heading.av-awlgv-c8bc56694eb44b90b5d9758d00ab7943 {
	padding-bottom: 10px;
	color: #fff;
}

body .av-special-heading.av-awlgv-c8bc56694eb44b90b5d9758d00ab7943 .av-special-heading-tag .heading-char {
	font-size: 25px;
}

.av-special-heading.av-awlgv-c8bc56694eb44b90b5d9758d00ab7943 .special-heading-inner-border {
	border-color: #fff;
}

.av-special-heading.av-awlgv-c8bc56694eb44b90b5d9758d00ab7943 .av-subheading {
	font-size: 15px;
}

.flex_column.av-12a66f-3cca2f377fc75c6cbba76b923083459a {
	border-radius: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.avia-image-container.av-vijcf-01f4d4c5c82a66f1353183a401fbca9e img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-vijcf-01f4d4c5c82a66f1353183a401fbca9e .av-image-caption-overlay-center {
	color: #fff;
	font-size: 28px;
}

.flex_column.av-oetbr-e872d55f89c9863f2cb066c954520a29 {
	border-radius: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.avia-image-container.av-nfyp3-e17b85458c6238bc43faf937c9f52b0d img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-nfyp3-e17b85458c6238bc43faf937c9f52b0d .av-image-caption-overlay-center {
	color: #fff;
	font-size: 28px;
}

.flex_column.av-gz7u7-2d374e7cd3a2b70f5487677b12b82e0a {
	border-radius: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.avia-image-container.av-7846f-329d1c7a26a4be3b3969253efb9ff0f2 img.avia_image {
	box-shadow: none;
}

.avia-image-container.av-7846f-329d1c7a26a4be3b3969253efb9ff0f2 .av-image-caption-overlay-center {
	color: #fff;
	font-size: 28px;
}

/**
 * Sharedaddy Base Styles
 *
 * Contains styles for modules, containers, buttons
 */

/* Master container */
#jp-post-flair {
	padding-top: .5em;
}

/* Overall Sharedaddy block title */
div.sharedaddy, #content div.sharedaddy, #main div.sharedaddy {
	clear: both;
}

div.sharedaddy h3.sd-title {
	margin: 0 0 1em 0;
	display: inline-block;
	line-height: 1.2;
	font-size: 9pt;
	font-weight: 700;
}

body.highlander-light h3.sd-title::before {
	border-top: 1px solid rgba(0, 0, 0, .2);
}

body.highlander-dark h3.sd-title::before {
	border-top: 1px solid rgba(255, 255, 255, .4);
}

/* Sharing services list */
.sd-sharing {
	margin-bottom: 1em;
}

.sd-content ul {
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
}

.sd-content ul li {
	display: inline-block;
	margin: 0 8px 12px 0;
	padding: 0;
}

.sd-content ul li.share-deprecated {
	opacity: .5;
}

.sd-content ul li.share-deprecated a span {
	text-decoration: line-through;
}

.sd-block.sd-gplus {
	margin: 0 0 .5em 0;
}

.sd-gplus .sd-content {
	font-size: 12px;
}

/* Sharing email errors */
.sd-content .share-email-error .share-email-error-title {
	margin: .5em 0;
}

.sd-content .share-email-error .share-email-error-text {
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	margin: .5em 0;
}

/* Ugh. */

/* Buttons */
.sd-social-icon .sd-content ul li a.sd-button, .sd-social-text .sd-content ul li a.sd-button, .sd-content ul li a.sd-button, .sd-content ul li .option a.share-ustom, .sd-content ul li.preview-item div.option.option-smart-off a, .sd-content ul li.advanced a.share-more, .sd-social-icon-text .sd-content ul li a.sd-button, .sd-social-official .sd-content > ul > li > a.sd-button, #sharing_email .sharing_send, .sd-social-official .sd-content > ul > li .digg_button > a {
	/* official Digg button no longer works, needs cleaning */
	text-decoration: none !important;
	display: inline-block;
	font-size: 13px;
	font-family: "Open Sans", sans-serif;
	font-weight: 500;
	border-radius: 4px;
	color: #2c3338 !important;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 0 0 1px rgba(0, 0, 0, .12);
	text-shadow: none;
	line-height: 23px;
	padding: 4px 11px 3px 9px;
}

.sd-social-official .sd-content ul li a.sd-button, .sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a {
	align-items: center;
	display: flex;
	font-size: 12px;
	line-height: 12px;
	padding: 1px 6px 0 5px;
	min-height: 20px;
}

.sd-social-official .sd-content ul.preview li a.sd-button, .sd-social-official .sd-content ul.preview li.preview-item div.option.option-smart-off a {
	position: relative;
	top: 2px;
}

/* Ugh. */
.sd-content ul li a.sd-button > span, .sd-content ul li .option a.share-ustom span, .sd-content ul li.preview-item div.option.option-smart-off a span, .sd-content ul li.advanced a.share-more span, .sd-social-icon-text .sd-content ul li a.sd-button > span, .sd-social-official .sd-content > ul > li > a.sd-button span, .sd-social-official .sd-content > ul > li .digg_button > a span {
	/* official Digg button no longer works, needs cleaning */
	line-height: 23px;
	margin-left: 6px;
}

/* Icon Only */
.sd-social-icon .sd-content ul li a.sd-button > span {
	margin-left: 0;
}

body .sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-icon.no-text span:not(.custom-sharing-span) {
	display: none;
}

/* Text Only */
.sd-social-text .sd-content ul li a.sd-button span {
	margin-left: 3px;
}

.sd-social-official .sd-content ul li a.sd-button > span, .sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a span {
	line-height: 12px;
	margin-left: 3px;
}

.sd-social-official .sd-content > ul > li > a.sd-button::before, .sd-social-official .sd-content > ul > li .digg_button > a::before, .sd-social-official .sd-content .sharing-hidden .inner > ul > li > a.sd-button::before, .sd-social-official .sd-content .sharing-hidden .inner > ul > li .digg_button > a::before {
	margin-bottom: -1px;
}

.sd-social-icon .sd-content ul li a.sd-button:hover, .sd-social-icon .sd-content ul li a.sd-button:active, .sd-social-text .sd-content ul li a.sd-button:hover, .sd-social-text .sd-content ul li a.sd-button:active, .sd-social-icon-text .sd-content ul li a.sd-button:hover, .sd-social-icon-text .sd-content ul li a.sd-button:active, .sd-social-official .sd-content > ul > li > a.sd-button:hover, .sd-social-official .sd-content > ul > li > a.sd-button:active, .sd-social-official .sd-content > ul > li .digg_button > a:hover, .sd-social-official .sd-content > ul > li .digg_button > a:active {
	box-shadow: 0 1px 2px rgba(0, 0, 0, .22), 0 0 0 1px rgba(0, 0, 0, .22);
}

.sd-social-icon .sd-content ul li a.sd-button:active, .sd-social-text .sd-content ul li a.sd-button:active, .sd-social-icon-text .sd-content ul li a.sd-button:active, .sd-social-official .sd-content > ul > li > a.sd-button:active, .sd-social-official .sd-content > ul > li .digg_button > a:active {
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, .16);
}

/* All icons */
.sd-content ul li a.sd-button::before {
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font: 400 18px/1 social-logos;
	vertical-align: top;
	text-align: center;
}

/* text + icon styles should have relative and top position */
.sd-social-icon-text ul li a.sd-button::before {
	position: relative;
	top: 2px;
}

/* Make it look great in Chrome and Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
	.sd-content ul li a.sd-button::before {
		position: relative;
		top: 2px;
	}
}

.sd-social-official ul li a.sd-button::before {
	position: relative;
	top: -2px;
}

/* Make it look great in Chrome and Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
	.sd-social-official ul li a.sd-button::before {
		top: 0;
	}
}

/* Add more pading on touch devices */
.jp-sharing-input-touch .sd-content ul li {
	padding-left: 10px;
}

.sd-content ul li.preview-item.no-icon a.sd-button span {
	margin-left: 0;
}

/* Text only */
.sd-social-text .sd-content ul li a::before, .sd-content ul li.no-icon a::before {
	display: none;
}

body .sd-social-text .sd-content ul li.share-custom a span, body .sd-content ul li.share-custom.no-icon a span {
	background-image: none;
	background-position: -500px -500px !important;
	background-repeat: no-repeat !important;
	padding-left: 0;
	height: 0;
	line-height: inherit;
}

body .sd-social-text .sd-content ul li.share-custom a span.nitro-lazy, body .sd-content ul li.share-custom.no-icon a span.nitro-lazy {
	background-image: none !important;
}

.sd-social-icon .sd-content ul li a.share-more {
	position: relative;
	top: -4px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
	.sd-social-icon .sd-content ul li a.share-more {
		top: 2px;
	}
}

/* Hack to make the share more button look better on Firefox. */
@-moz-document url-prefix() {
	.sd-social-icon .sd-content ul li a.share-more {
		top: 2px;
	}
}

.sd-social-icon .sd-content ul li a.share-more span {
	margin-left: 3px;
}

/* Individual icons */
.sd-social-icon .sd-content ul li.share-print a::before, .sd-social-text .sd-content ul li.share-print a::before, .sd-content ul li.share-print div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-print a::before, .sd-social-official .sd-content li.share-print a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-email a::before, .sd-social-text .sd-content ul li.share-email a::before, .sd-content ul li.share-email div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-email a::before, .sd-social-official .sd-content li.share-email a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-linkedin a::before, .sd-social-text .sd-content ul li.share-linkedin a::before, .sd-content ul li.share-linkedin div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-linkedin a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-twitter a::before, .sd-social-text .sd-content ul li.share-twitter a::before, .sd-content ul li.share-twitter div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-twitter a::before, .sd-social-icon .sd-content ul li.share-x a::before, .sd-social-text .sd-content ul li.share-x a::before, .sd-content ul li.share-x div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-x a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-reddit a::before, .sd-social-text .sd-content ul li.share-reddit a::before, .sd-content ul li.share-reddit div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-reddit a::before, .sd-social-official .sd-content li.share-reddit a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-tumblr a::before, .sd-social-text .sd-content ul li.share-tumblr a::before, .sd-content ul li.share-tumblr div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-tumblr a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-pocket a::before, .sd-social-text .sd-content ul li.share-pocket a::before, .sd-content ul li.share-pocket div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-pocket a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-pinterest a::before, .sd-social-text .sd-content ul li.share-pinterest a::before, .sd-content ul li.share-pinterest div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-pinterest a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-facebook a::before, .sd-social-text .sd-content ul li.share-facebook a::before, .sd-content ul li.share-facebook div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-facebook a::before {
	content: "";
}

.sd-social-icon .sd-content ul li.share-press-this a::before, .sd-social-text .sd-content ul li.share-press-this a::before, .sd-content ul li.share-press-this div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-press-this a::before, .sd-social-official .sd-content li.share-press-this a::before {
	content: "";
}

.sd-social-official .sd-content li.share-press-this a::before {
	color: #2ba1cb;
}

.sd-social-icon .sd-content ul li.share-telegram a::before, .sd-social-text .sd-content ul li.share-telegram a::before, .sd-content ul li.share-telegram div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-telegram a::before, .sd-social-official .sd-content li.share-telegram a::before {
	content: "";
}

.sd-social-official .sd-content li.share-telegram a::before {
	color: #08c;
}

.sd-social-icon .sd-content ul li.share-threads a::before, .sd-social-text .sd-content ul li.share-threads a::before, .sd-content ul li.share-threads div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-threads a::before, .sd-social-official .sd-content li.share-threads a::before {
	content: "";
}

.sd-social-official .sd-content li.share-threads a::before {
	color: #000;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-threads a.sd-button {
	background: #000;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li.share-mastodon a::before, .sd-social-text .sd-content ul li.share-mastodon a::before, .sd-content ul li.share-mastodon div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-mastodon a::before, .sd-social-official .sd-content li.share-mastodon a::before {
	content: "";
}

.sd-social-official .sd-content li.share-mastodon a::before {
	color: #563acc;
}

.sd-social-icon .sd-content ul a.share-more::before, .sd-social-text .sd-content ul a.share-more::before, .sd-content ul li.advanced a.share-more::before, .sd-social-icon-text .sd-content a.share-more::before, .sd-social-official .sd-content a.share-more::before {
	content: "";
}

.sd-social-official .sd-content a.share-more::before {
	color: #2ba1cb;
}

.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a::before, .sd-social-text .sd-content ul li.share-jetpack-whatsapp a::before, .sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-jetpack-whatsapp a::before, .sd-social-official .sd-content li.share-jetpack-whatsapp a::before {
	content: "";
}

.sd-social-official .sd-content li.share-jetpack-whatsapp a::before {
	color: #43d854;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-jetpack-whatsapp a.sd-button {
	background: #43d854;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li.share-nextdoor a::before, .sd-social-text .sd-content ul li.share-nextdoor a::before, .sd-content ul li.share-nextdoor div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-nextdoor a::before, .sd-social-official .sd-content li.share-nextdoor a::before {
	content: "";
}

.sd-social-official .sd-content li.share-nextdoor a::before {
	color: #8ed500;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-nextdoor a.sd-button {
	background: #8ed500;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li.share-bluesky a::before, .sd-social-text .sd-content ul li.share-bluesky a::before, .sd-content ul li.share-bluesky div.option.option-smart-off a::before, .sd-social-icon-text .sd-content li.share-bluesky a::before, .sd-social-official .sd-content li.share-bluesky a::before {
	content: "";
}

.sd-social-official .sd-content li.share-bluesky a::before {
	color: #0085ff;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-bluesky a.sd-button {
	background: #0085ff;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li.share-deprecated a::before, .sd-social-icon-text .sd-content li.share-deprecated a::before, .sd-social-official .sd-content li.share-deprecated a::before, .sd-content ul li.share-deprecated div.option.option-smart-off a::before {
	width: 1em;
	height: 1em;
	content: "🚫";
}

/* Share count */
.sd-social .sd-button .share-count {
	background: #2ea2cc;
	color: #fff;
	border-radius: 10px;
	display: inline-block;
	text-align: center;
	font-size: 10px;
	padding: 1px 3px;
	line-height: 1;
}

.sd-social-official .sd-content > ul > li > a.sd-button span {
	line-height: 1;
}

.sd-social-official .sd-content ul {
	display: flex;
	flex-wrap: wrap;
}

.sd-social-official .sd-content ul::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.sd-social-official .sd-content li.share-press-this a {
	margin: 0 0 5px 0;
}

.sd-social-official .sd-content ul > li {
	display: flex;
	max-height: 18px;
}

.sd-social-official .sd-content ul > li .option-smart-off {
	margin-right: 8px;
}

.sd-social-official .fb-share-button > span {
	vertical-align: top !important;
}

.sd-social-official .sd-content .pocket_button iframe {
	width: 98px;
}

/* Individual official buttons */
.pocket_button iframe, .pinterest_button, .twitter_button, .linkedin_button > span {
	margin: 0 !important;
}

.linkedin_button > span, .pinterest_button a {
	display: block !important;
}

.sd-social-official .sd-content .share-tumblr iframe {
	max-width: 53px;
	width: unset;
}

body .sd-social-official li.share-print, body .sd-social-official li.share-email a, body .sd-social-official li.share-custom a, body .sd-social-official li a.share-more, body .sd-social-official li.share-digg a, body .sd-social-official li.share-press-this a {
	position: relative;
	top: 0;
}

/* Custom icons */
body .sd-social-icon .sd-content li.share-custom > a {
	padding: 2px 3px 0 3px;
	position: relative;
	top: 4px;
}

body .sd-social-icon .sd-content li.share-custom a span, body .sd-social-icon-text .sd-content li.share-custom a span, body .sd-social-text .sd-content li.share-custom a span, body .sd-social-official .sd-content li.share-custom a span, body .sd-content ul li.share-custom a.share-icon span {
	background-size: 16px 16px;
	background-repeat: no-repeat;
	margin-left: 0;
	padding: 0 0 0 19px;
	display: inline-block;
	height: 21px;
	line-height: 16px;
}

body .sd-content ul li.share-custom a span[hidden] {
	display: none;
}

body .sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-icon.no-text .custom-sharing-span {
	color: transparent;
}

body .sd-social-icon .sd-content li.share-custom a span {
	width: 0;
	padding-left: 16px !important;
}

/* Overflow Sharing dialog */
.sharing-hidden .inner {
	position: absolute;
	z-index: 2;
	border: 1px solid #ccc;
	padding: 10px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
	border-radius: 2px;
	margin-top: 5px;
	max-width: 400px;
}

.sharing-hidden .inner ul {
	margin: 0 !important;
}

.sd-social-official .sd-content .sharing-hidden ul > li.share-end {
	clear: both;
	margin: 0 !important;
	height: 0 !important;
}

.sharing-hidden .inner::before, .sharing-hidden .inner::after {
	position: absolute;
	z-index: 1;
	top: -8px;
	left: 20px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 8px solid #ccc;
	content: "";
	display: block;
}

.sharing-hidden .inner::after {
	z-index: 2;
	top: -7px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 8px solid #fff;
}

.sharing-hidden ul {
	margin: 0;
}

/**
 * Special colorful look for "Icon Only" option
 */
.sd-social-icon .sd-content ul li[class*="share-"] a, .sd-social-icon .sd-content ul li[class*="share-"] a:hover, .sd-social-icon .sd-content ul li[class*="share-"] div.option a {
	border-radius: 50%;
	border: 0;
	box-shadow: none;
	padding: 7px;
	position: relative;
	top: -2px;
	line-height: 1;
	width: auto;
	height: auto;
	margin-bottom: 0;
	max-width: 32px;
}

.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button > span, .sd-social-icon .sd-content ul li[class*="share-"] div.option a span {
	line-height: 1;
}

.sd-social-icon .sd-content ul li[class*="share-"] a:hover, .sd-social-icon .sd-content ul li[class*="share-"] div.option a:hover {
	border: none;
	opacity: .6;
}

.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button::before {
	top: 0;
}

.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-custom {
	padding: 8px 8px 6px 8px;
}

.sd-social-icon .sd-content ul li a.sd-button.share-more {
	margin-left: 10px;
}

.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more {
	margin-left: 0;
}

.sd-social-icon .sd-button span.share-count {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 0;
	background: #555;
	font-size: 9px;
}

/* Special look colors */
.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button {
	background: #e9e9e9;
	margin-top: 2px;
	text-indent: 0;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-tumblr a.sd-button {
	background: #2c4762;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-facebook a.sd-button {
	background: #0866ff;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-twitter a.sd-button {
	background: #000;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-x a.sd-button {
	background: #000;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-pinterest a.sd-button {
	background: #ca1f27;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-digg a.sd-button {
	color: #555 !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-press-this a.sd-button {
	background: #4f94d4;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-telegram a.sd-button {
	background: #08c;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-linkedin a.sd-button {
	background: #0077b5;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-pocket a.sd-button {
	background: #ee4056;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-reddit a.sd-button {
	background: #cee3f8;
	color: #555 !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-mastodon a.sd-button {
	background: linear-gradient(to top, #563acc 0%, #6364ff 100%);
	color: #fff !important;
}

#jetpack-source_f_name {
	display: none !important;
	position: absolute !important;
	left: -9000px;
}

.sd-content .share-customize-link {
	margin-top: 8px;
	line-height: 11px;
}

.sd-content .share-customize-link a {
	font-size: 11px;
	font-family: "Open Sans", sans-serif;
}

@media print {
	.sharedaddy.sd-sharing-enabled {
		display: none;
	}
}

.social-logo__amazon:before {
	content: "";
}

.social-logo__behance:before {
	content: "";
}

.social-logo__blogger-alt:before {
	content: "";
}

.social-logo__blogger:before {
	content: "";
}

.social-logo__bluesky:before {
	content: "";
}

.social-logo__codepen:before {
	content: "";
}

.social-logo__dribbble:before {
	content: "";
}

.social-logo__dropbox:before {
	content: "";
}

.social-logo__eventbrite:before {
	content: "";
}

.social-logo__facebook:before {
	content: "";
}

.social-logo__fediverse:before {
	content: "";
}

.social-logo__feed:before {
	content: "";
}

.social-logo__flickr:before {
	content: "";
}

.social-logo__foursquare:before {
	content: "";
}

.social-logo__ghost:before {
	content: "";
}

.social-logo__github:before {
	content: "";
}

.social-logo__google-alt:before {
	content: "";
}

.social-logo__google-plus-alt:before {
	content: "";
}

.social-logo__google-plus:before {
	content: "";
}

.social-logo__google:before {
	content: "";
}

.social-logo__instagram:before {
	content: "";
}

.social-logo__link:before {
	content: "";
}

.social-logo__linkedin:before {
	content: "";
}

.social-logo__mail:before {
	content: "";
}

.social-logo__mastodon:before {
	content: "";
}

.social-logo__medium-alt:before {
	content: "";
}

.social-logo__medium:before {
	content: "";
}

.social-logo__nextdoor:before {
	content: "";
}

.social-logo__patreon:before {
	content: "";
}

.social-logo__pinterest-alt:before {
	content: "";
}

.social-logo__pinterest:before {
	content: "";
}

.social-logo__pocket:before {
	content: "";
}

.social-logo__polldaddy:before {
	content: "";
}

.social-logo__print:before {
	content: "";
}

.social-logo__reddit:before {
	content: "";
}

.social-logo__share:before {
	content: "";
}

.social-logo__skype:before {
	content: "";
}

.social-logo__sms:before {
	content: "";
}

.social-logo__spotify:before {
	content: "";
}

.social-logo__squarespace:before {
	content: "";
}

.social-logo__stumbleupon:before {
	content: "";
}

.social-logo__telegram:before {
	content: "";
}

.social-logo-threads:before {
	content: "";
}

.social-logo__tiktok-alt:before {
	content: "";
}

.social-logo__tiktok:before {
	content: "";
}

.social-logo__tumblr-alt:before {
	content: "";
}

.social-logo__tumblr:before {
	content: "";
}

.social-logo__twitch:before {
	content: "";
}

.social-logo__twitter-alt:before {
	content: "";
}

.social-logo__twitter:before {
	content: "";
}

.social-logo__vimeo:before {
	content: "";
}

.social-logo__whatsapp:before {
	content: "";
}

.social-logo__woocommerce:before {
	content: "";
}

.social-logo__wordpress:before {
	content: "";
}

.social-logo__x:before {
	content: "";
}

.social-logo__xanga:before {
	content: "";
}

.social-logo__youtube:before {
	content: "";
}
