	@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

@-webkit-keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce
}

@-webkit-keyframes flash {
	0%,
	50%,
	100% {
		opacity: 1
	}
	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {
	0%,
	50%,
	100% {
		opacity: 1
	}
	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1)
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	50% {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1)
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes shake {
	0%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px)
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px)
	}
}

@keyframes shake {
	0%,
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px)
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		transform: rotate(15deg)
	}
	40% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	60% {
		-webkit-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		transform: rotate(5deg)
	}
	80% {
		-webkit-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10%,
	20% {
		-webkit-transform: scale(0.9) rotate(-3deg);
		transform: scale(0.9) rotate(-3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg)
	}
	100% {
		-webkit-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	10%,
	20% {
		-webkit-transform: scale(0.9) rotate(-3deg);
		-ms-transform: scale(0.9) rotate(-3deg);
		transform: scale(0.9) rotate(-3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		-ms-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		-ms-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg)
	}
	100% {
		-webkit-transform: scale(1) rotate(0);
		-ms-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}
	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg)
	}
	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg)
	}
	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg)
	}
	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg)
	}
	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg)
	}
	100% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%)
	}
	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		-ms-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg)
	}
	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		-ms-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg)
	}
	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		-ms-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg)
	}
	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		-ms-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg)
	}
	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		-ms-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg)
	}
	100% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%)
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3)
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	70% {
		-webkit-transform: scale(.9);
		transform: scale(.9)
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3)
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05)
	}
	70% {
		-webkit-transform: scale(.9);
		-ms-transform: scale(.9);
		transform: scale(.9)
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		transform: translateY(30px)
	}
	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px)
	}
	80% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px)
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		transform: translateX(30px)
	}
	80% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		-ms-transform: translateX(30px);
		transform: translateX(30px)
	}
	80% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px)
	}
	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		-ms-transform: translateX(-30px);
		transform: translateX(-30px)
	}
	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}
	80% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px)
	}
	80% {
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px)
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	25% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		transform: scale(1.1)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3)
	}
}

@keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	25% {
		-webkit-transform: scale(.95);
		-ms-transform: scale(.95);
		transform: scale(.95)
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

@keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

@keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

@keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

@keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	-ms-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg)
	}
	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg)
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		-ms-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg)
	}
	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		-ms-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg)
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1
	}
}

.flipInX {
	-webkit-backface-visibility: visible!important;
	-ms-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg)
	}
	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg)
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		-ms-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg)
	}
	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		-ms-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg)
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1
	}
}

.flipInY {
	-webkit-backface-visibility: visible!important;
	-ms-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible!important;
	-ms-backface-visibility: visible!important;
	backface-visibility: visible!important
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

.flipOutY {
	-webkit-backface-visibility: visible!important;
	-ms-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1
	}
	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1
	}
	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		-ms-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1
	}
	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		-ms-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1
	}
	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1
	}
	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0
	}
}

@keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1
	}
	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		-ms-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		-ms-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	40% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	100% {
		-webkit-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0
	}
}

@keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%,
	60% {
		-webkit-transform: rotate(80deg);
		-ms-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	40% {
		-webkit-transform: rotate(60deg);
		-ms-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		-ms-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	100% {
		-webkit-transform: translateY(700px);
		-ms-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg)
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		-ms-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		-ms-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg)
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		-ms-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		-ms-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}


/*!
 * datepickernew v0.6.5
 * https://github.com/fengyuanchen/datepickernew
 *
 * Copyright (c) 2014-2018 Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2018-03-31T06:16:43.444Z
 */

.datepickernew-container {
	background-color: #fff;
	direction: ltr;
	font-size: 12px;
	left: 0;
	line-height: 30px;
	position: fixed;
	top: 0;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 210px;
	z-index: -1;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none
}

.datepickernew-container::before,
.datepickernew-container::after {
	border: 5px solid transparent;
	content: " ";
	display: block;
	height: 0;
	position: absolute;
	width: 0
}

.datepickernew-dropdown {
	border: 1px solid #ccc;
	-webkit-box-shadow: 0 3px 6px #ccc;
	box-shadow: 0 3px 6px #ccc;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	position: absolute;
	z-index: 1
}

.datepickernew-inline {
	position: static
}

.datepickernew-top-left,
.datepickernew-top-right {
	border-top-color: #39f
}

.datepickernew-top-left::before,
.datepickernew-top-left::after,
.datepickernew-top-right::before,
.datepickernew-top-right::after {
	border-top: 0;
	left: 10px;
	top: -5px
}

.datepickernew-top-left::before,
.datepickernew-top-right::before {
	border-bottom-color: #39f
}

.datepickernew-top-left::after,
.datepickernew-top-right::after {
	border-bottom-color: #fff;
	top: -4px
}

.datepickernew-bottom-left,
.datepickernew-bottom-right {
	border-bottom-color: #39f
}

.datepickernew-bottom-left::before,
.datepickernew-bottom-left::after,
.datepickernew-bottom-right::before,
.datepickernew-bottom-right::after {
	border-bottom: 0;
	bottom: -5px;
	left: 10px
}

.datepickernew-bottom-left::before,
.datepickernew-bottom-right::before {
	border-top-color: #39f
}

.datepickernew-bottom-left::after,
.datepickernew-bottom-right::after {
	border-top-color: #fff;
	bottom: -4px
}

.datepickernew-top-right::before,
.datepickernew-top-right::after,
.datepickernew-bottom-right::before,
.datepickernew-bottom-right::after {
	left: auto;
	right: 10px
}

.datepickernew-panel>ul {
	margin: 0;
	padding: 0;
	width: 102%
}

.datepickernew-panel>ul::before,
.datepickernew-panel>ul::after {
	content: " ";
	display: table
}

.datepickernew-panel>ul::after {
	clear: both
}

.datepickernew-panel>ul>li {
	background-color: #fff;
	cursor: pointer;
	float: left;
	height: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 30px
}

.datepickernew-panel>ul>li:hover {
	background-color: #e5f2ff
}

.datepickernew-panel>ul>li.muted,
.datepickernew-panel>ul>li.muted:hover {
	color: #999
}

.datepickernew-panel>ul>li.highlighted {
	background-color: #e5f2ff
}

.datepickernew-panel>ul>li.highlighted:hover {
	background-color: #cce5ff
}

.datepickernew-panel>ul>li.picked,
.datepickernew-panel>ul>li.picked:hover {
	color: #39f
}

.datepickernew-panel>ul>li.disabled,
.datepickernew-panel>ul>li.disabled:hover {
	background-color: #fff;
	color: #ccc;
	cursor: default
}

.datepickernew-panel>ul>li.disabled.highlighted,
.datepickernew-panel>ul>li.disabled:hover.highlighted {
	background-color: #e5f2ff
}

.datepickernew-panel>ul>li[data-view="years prev"],
.datepickernew-panel>ul>li[data-view="year prev"],
.datepickernew-panel>ul>li[data-view="month prev"],
.datepickernew-panel>ul>li[data-view="years next"],
.datepickernew-panel>ul>li[data-view="year next"],
.datepickernew-panel>ul>li[data-view="month next"],
.datepickernew-panel>ul>li[data-view="next"] {
	font-size: 18px
}

.datepickernew-panel>ul>li[data-view="years current"],
.datepickernew-panel>ul>li[data-view="year current"],
.datepickernew-panel>ul>li[data-view="month current"] {
	width: 150px
}

.datepickernew-panel>ul[data-view="years"]>li,
.datepickernew-panel>ul[data-view="months"]>li {
	height: 52.5px;
	line-height: 52.5px;
	width: 52.5px
}

.datepickernew-panel>ul[data-view="week"]>li,
.datepickernew-panel>ul[data-view="week"]>li:hover {
	background-color: #fff;
	cursor: default
}

.datepickernew-hide {
	display: none
}

.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

.owl-carousel {
	display: none;
	position: relative;
	width: 80%;
	-ms-touch-action: pan-y;
	margin: 0 auto;
	padding: 0
}

.rslides.owl-carousel {
	width: 100%;
	overflow: hidden
}

.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: 0 auto
}

.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out
}

.owl-carousel .owl-item {
	float: left
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer
}

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.grabbing {
	cursor: url(grabbing.png) 8 8, move
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0)
}

.slides li {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	position: relative;
	background: 0;
	position: relative;
	z-index: 99;
	padding: 0;
	margin: 0 1%;
	text-align: center
}

.slides li>a,
.slides li>a:hover {
	display: block;
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
	color: #000;
	margin: 0 auto
}

.slides li>a:hover {
	color: #f3702d
}

.slides li>a img {
	display: block;
	margin: 0 auto 5px auto
}

.slides li>a span {
	display: block
}

.owl-prev,
.owl-next {
	position: absolute;
	top: 45%;
	width: 21px;
	height: 32px;
	overflow: hidden;
	text-indent: -100px;
	border: 0;
	cursor: pointer
}

.owl-prev {
	left: -25px;
	background: url(/portalimages/newImages/media/pre-slide.png) no-repeat left top
}

.owl-next {
	right: -25px;
	background: url(/portalimages/newImages/media/next-slide.png) no-repeat right top
}

.pairthis_section .owl-prev,
.peopleviewed_section .owl-prev,
.recentlyviewed_section .owl-prev {
	width: 14px;
	height: 26px;
	background: url(/portalimages/newImages/media/pre-slide.jpg) no-repeat left top
}

.pairthis_section .owl-next,
.peopleviewed_section .owl-next,
.recentlyviewed_section .owl-next {
	width: 14px;
	height: 26px;
	background: url(/portalimages/newImages/media/next-slide.jpg) no-repeat right top
}

.rslides li {
	position: relative;
	padding: 0
}

.rslides li img {
	display: block;
	width: 100%
}

.rslides li .banner_text {
	position: absolute;
	left: 0;
	top: 49.5%;
	width: 100%;
	margin: auto;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	text-align: center
}

.banner_text_wrap {
	max-width: 28.125em;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	position: relative;
	text-align: center;
	font-size: 2vw
}

.banner_text_wrap:before {
	width: 1.25em;
	height: 1.25em;
	content: "";
	background: url(/portalimages/newImages/media/banner-text-wrap-bg.png) no-repeat left top;
	position: absolute;
	left: 0;
	top: 0
}

.banner_text_wrap:after {
	width: 1.25em;
	height: 1.25em;
	content: "";
	background: url(/portalimages/newImages/media/banner-text-wrap-bg.png) no-repeat right top;
	position: absolute;
	right: 0;
	top: 0
}

.banner_head {
	color: #e5e5e5;
	font-size: 2.1875em;
	line-height: 1em;
	padding: 0 .5714285714285714em .2em;
	position: relative;
	text-transform: uppercase
}

.banner_head span {
	display: block;
	font-size: 1.628571428571429em;
	line-height: 1em;
	padding: .0175438596491228em 0 .0526315789473684em
}

.banner_head:before {
	width: .5714285714285714em;
	height: .5714285714285714em;
	content: "";
	background: url(/portalimages/newImages/media/banner-head-bg.png) no-repeat left bottom;
	position: absolute;
	left: 0;
	bottom: 0
}

.banner_head:after {
	width: .5714285714285714em;
	height: .5714285714285714em;
	content: "";
	background: url(/portalimages/newImages/media/banner-head-bg.png) no-repeat right bottom;
	position: absolute;
	right: 0;
	bottom: 0
}

.banner_text_wrap p {
	margin: 0 auto;
	max-width: 23.25em;
	padding: .5em 0 0;
	color: #fff;
	font-size: 1em;
	line-height: 1.5625em
}

.owl-dots {
	bottom: -6px;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	padding-bottom: 13px;
}

.owl-dots .owl-dot {
	display: inline-block;
	vertical-align: top;
	width: 10px;
	height: 10px;
	margin: 0 3.5px;
	border: 1px solid #fff;
	border-radius: 50%;
	box-sizing: border-box;
	background: 0;
	padding: 0;
	cursor: pointer
}

.owl-dots .owl-dot.active {
	background: #fff
}

.featured_section .owl-carousel .owl-wrapper-outer {
	margin: 75px auto 40px
}

.instagram-feed .owl-prev,
.instagram-feed .owl-next {
	position: absolute;
	top: 0;
	width: 49px;
	height: 100%;
	overflow: hidden;
	text-indent: -100px
}

.instagram-feed .owl-prev {
	display: none
}

.instagram-feed .owl-next {
	right: 0;
	background-color: rgba(255, 255, 255, 0.65);
	background-image: url(/portalimages/newImages/media/next-slide.png);
	background-position: center center;
	background-repeat: no-repeat
}

@media only screen and (min-width:40em) {
	.banner_text_wrap {
		margin-right: 6.65%;
		font-size: 1em
	}
	.rslides li .banner_text {
		text-align: right
	}
	
}

@media only screen and (min-width:1070px) {
	.owl-carousel {
		width: 100%
	}
	.featured_section .owl-carousel {
		width: 94%
	}
	.owl-pagination {
		bottom: 12px
	}
}

.owl-carousel {
	display: none;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%
}

.owl-carousel.owl-loaded {
	display: block
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block
}

.owl-carousel.owl-hidden {
	opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab
}

.owl-carousel.owl-rtl {
	direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
	float: right
}

.no-js .owl-carousel {
	display: block
}

.owl-carousel .animated {
	animation-duration: 1000ms;
	animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
	z-index: 0
}

.owl-carousel .owl-animated-out {
	z-index: 1
}

.owl-carousel .fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

.owl-height {
	transition: height 500ms ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d
}

.owl-carousel .item-video {
	height: 400px
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("/portalimages/newImages/media/owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%
}

@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700');
body {
	font-family: 'Playfair Display', serif;
	font-size: 100%;
	background-color: #fff;
	overflow-x: hidden;
	position: relative;
	left: 0;
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

body.active-nav {
	left: 250px
}

form,
body {
	margin: 0;
	padding: 0
}

input,
textarea,
button {
	font-family: 'Playfair Display', serif
}

img {
	border: 0 none;
	max-width: 100%
}

main {
	display: block
}

address {
	font-style: normal
}

ul,
dl,
h1,
h2,
h3,
p,
ol {
	margin: 0
}

ol {
	padding: 0 0 20px 20px
}

.ctr {
	text-align: center
}

.clear {
	clear: both
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box
}

img.b-lazy {
	width: 100%;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: opacity 500ms ease-in-out 100ms;
	-moz-transition: opacity 500ms ease-in-out 100ms;
	-o-transition: opacity 500ms ease-in-out 100ms;
	transition: opacity 500ms ease-in-out 100ms
}

img.b-loaded {
	opacity: 1;
	width: auto
}

a {
	color: #000;
	text-decoration: underline
}

a:hover {
	color: #f3702d;
	text-decoration: none
}

p {
	padding: 0 0 20px 0
}

ul {
	padding: 0 0 20px 0;
	list-style: none
}

ul li {
	background: url(/portalimages/newImages/media/bullet.jpg) no-repeat left 13px;
	padding: 0 0 0 12px
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table
}

.clearfix:after {
	clear: both
}

.inner_wrap {
	padding: 0 10px 0 10px;
	margin: 0 auto;
	max-width: 1266px
}

main {
	border-top: 1px solid #e8e8e8
}

header {
	padding: 50px 0 0 0;
	text-align: center
}

.header_logo {
	display: block;
	max-width: 248px;
	margin: 0 auto 16px auto
}

.header_logo img {
	display: block
}

.mobile-fix-header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 5px 10px;
	left: 0;
	background: #fff;
	border-bottom: 1px solid #ccc;
	z-index: 999;
	text-align: right
}

.search {
	margin: 0;
	text-align: right;
	display: inline-block;
	vertical-align: top
}

.search-field {
	border: medium none;
	color: #000;
	display: inline-block;
	font-size: 14px;
	height: 22px;
	max-width: 80px;
	vertical-align: top;
	outline: 0;
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

.search-field:focus {
	max-width: 150px
}

.search-btn {
	display: inline-block;
	vertical-align: middle
}

.myaccount-nav {
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0 0 2px 0;
	margin: 5px 20px 0 0
}

.myaccount-nav>a span {
	display: none
}

.myaccount-nav>a img {
	display: block
}

.myaccount-nav ul {
	position: absolute;
	padding: 5px 0;
	margin: 0;
	top: 100%;
	border: 1px solid #ccc;
	display: none;
	z-index: 99;
	text-align: left;
	width: 150px;
	background-color: #fff
}

.myaccount-nav:hover ul {
	display: block
}

.myaccount-nav ul>li {
	background: 0;
	line-height: 1em;
	padding: 5px 10px 5px 10px
}

.myaccount-nav ul>li>a {
	font-size: 15px;
	color: #000;
	display: inline-block;
	vertical-align: top;
	text-decoration: none
}

.myaccount-nav ul>li a:hover {
	color: #f3702d;
	    cursor: pointer;
}

header nav {
	background-color: #ececec;
	text-align: left;
	position: fixed;
	left: -250px;
	top: 34px;
	/* 	height: 100%; */
	overflow: auto;
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	width: 250px;
}

header nav.active {
	left: 0;
	height: 100%;
}

a.menu_trigger {
	color: #000;
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	padding: 0 27px 0 0;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	margin: 4px 0 0 0;
	float: left
}

a.menu_trigger span,
a.menu_trigger span:before,
a.menu_trigger span:after {
	cursor: pointer;
	height: 3px;
	width: 22px;
	background: #333;
	position: absolute;
	display: block;
	content: '';
	right: 0;
	top: 7px
}

a.menu_trigger span:before {
	top: -5px;
	right: 0
}

a.menu_trigger span:after {
	top: 5px;
	right: 0
}

a.menu_trigger span,
a.menu_trigger span:before,
a.menu_trigger span:after {
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

a.menu_trigger.active span {
	background-color: transparent
}

a.menu_trigger.active span:before,
a.menu_trigger.active span:after {
	top: 0;
	width: 22px
}

a.menu_trigger.active span:before {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg)
}

a.menu_trigger.active span:after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg)
}

header nav ul {
	padding: 0
}

header nav ul li {
	background: 0
}

.has_child>div>ul>li>ul>li>ul>li {
	padding: 7px 0 12px 10px;
	background: url(/portalimages/newImages/media/topnav_link_bg.jpg)
		no-repeat left 13px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	float: left;
	width: 50%
}

ul.tapnav {
	padding: 10px 0 10px
}

ul.tapnav>li {
	background: 0;
	line-height: 1em;
	padding: 5px 0 5px 10px
}

/* ul.tapnav>li>a,
.has_child a {
	font-size: 16px;
	color: #000;
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
	padding-top: 3px;
	padding-right: 0px;
	height: 10px
} */

.has_child,
.has_child2 {
	position: relative
}

.has_child>span,
.has_child2>span {
	position: absolute;
	right: 0;
	top: 0;
	height: 14px;
	width: 16px;
	z-index: 999;
	cursor: pointer
}

.has_child a {
	font-size: 13px
}

.has_child>a {
	padding: 0 10px 0 0;
	position: relative
}

.has_child>span:after,
.has_child2>span:after {
	content: "\0002B";
	position: absolute;
	right: 0;
	top: 0
}

.has_child.active-menu>span:after,
.has_child2.active-menu>span:after {
	content: "\02212"
}

ul.tapnav>li>a:hover,
ul.tapnav>li a:hover,
ul.tapnav>li.active>a {
	color: #f3702d
}

.has_child>div,
.has_child2>ul {
	display: none
}

.has_child>div,
.has_child>div>ul {
	padding: 5px 0 5px 0
}

.has_child>div>ul>li>a {
	color: #000;
	font-size: 14px
}

.has_child>div>ul>li {
	padding: 5px 0 0 0
}

.has_child>div>ul>li>ul>li,
.has_child>ul>li {
	padding: 3px 0 5px 10px
}

.home_bucket {
	padding: 10px 0 0 0
}

.home_bucket h2,
.featured_section h2,
.most_popular_products h2,
.store_locator_box h2,
.social_box h2,
.instagram-feed h2 {
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
	font-size: 26px;
	color: #000;
	line-height: 26px;
	padding: 18px 0 18px 0;
	margin: 0 0 10px 0;
	text-align: center;
	text-transform: uppercase
}

.instagram-feed h2 span {
	display: block;
	font-size: 14px
}

.home_bucket article a {
	display: block;
	font-size: 22px;
	color: #fefefe;
	line-height: 22px;
	text-decoration: none;
	position: relative
}

.home_bucket article a img {
	display: block;
	width: 100%
}

.home_bucket article a div {
	position: absolute;
	bottom: 15px;
	left: 24px
}

.home_bucket article {
	max-width: 411px;
	margin: 0 auto 10px
}

.home_bucket article a div p {
	padding: 0 0 16px
}

.home_bucket article a div p span {
	display: block;
	font-size: 24px;
	padding: 0 0 5px;
	text-transform: uppercase
}

.home_bucket .col_2 article a div p span {
	font-size: 26px
}

.home_bucket article a div>span {
	border: 1px solid #fff;
	color: #fefefe;
	display: inline-block;
	font-size: 12px;
	line-height: 12px;
	padding: 7px 13px 6px;
	vertical-align: top
}

.home_bucket article a:hover div>span {
	color: #f3702d;
	border: 1px solid #f3702d
}

.most_popular_products {
	padding: 0 0 52px 0
}

.store_locator_box,
.social_box {
	padding: 0 0 47px 0
}

.store_locator_box>div {
	background: #e7e7e7;
	padding: 32px 22px 14px
}

.store_locator_box>div>p {
	font-size: 13px;
	color: #000;
	line-height: 25px;
	text-align: justify
}



.store-form select option {
	padding: 5px 10px 5px 10px
}





.instagram-feed {
	margin: 0 0 5px
}

footer {
	background: #ececec;
	padding: 25px 0 14px
}

footer nav {
	padding: 0 0 20px 0
}
footer nav {
    width: 50%;
    float:left;
}
footer nav>span,
.social_icon>span {
	display: block;
	font-size: 15px;
	line-height: 14px;
	color: #000;
	padding: 0 0 17px 0
}

footer nav>ul {
	padding: 0
}

footer nav:nth-of-type(2) ul,
footer nav:nth-of-type(3) ul {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin: 0 1% 0 0
}

footer nav>ul>li {
	line-height: 1em;
	padding: 0 0 9px 0;
	background: 0
}

footer nav>ul>li>a {
	display: inline-block;
	vertical-align: top;
	font-size: 1em;
	line-height: 16px;
	color: #696969;
	text-decoration: none
}

footer nav>ul>li>a:hover,
.social_icon a:hover {
	color: #f6821f
}

.social_icon {
	font-size: 13px;
	line-height: 26px;
	color: #696969;
	padding: 0 0 20px
}

.social_icon>a {
	color: #696969;
	text-decoration: none
}

.social_icon p {
	padding: 15px 0 0 0
}

.social_icon p a {
	display: inline-block;
	vertical-align: top;
	margin: 0 12px 0 0
}

.social_icon p a img {
	display: block
}

.social_icon p a:hover img {
	opacity: .75
}

.footer_bottom {
	clear: both;
	border-top: 1px solid #acacac;
	padding: 11px 0 0 0
}

.footer_about_trigger {
	color: #000;
	font-size: 14px;
	padding: 0 0 14px
}

.footer_about_trigger>span {
	display: inline-block;
	vertical-align: top;
	padding: 0 26px 0 0;
	position: relative;
	cursor: pointer
}

.footer_about_trigger>span:after {
	content: "\02212";
	position: absolute;
	right: 0;
	top: 0
}

.footer_about_trigger>span.close:after {
	content: "\0002B"
}

.footer_about_content {
	clear: both;
	color: #000;
	display: block;
	font-size: 13px;
	line-height: 26px;
	padding: 0 0 44px;
	text-align: left
}

.footer_about_content p {
	padding: 0 0 8px
}

.copyright_text {
	color: #000;
	font-size: 13px
}

.instagram-feed .slides li>a {
	position: relative
}

.instagram-feed .slides li>a:hover:after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.82);
	background-image: url(/portalimages/newImages/media/instagram-feed-bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 99
}

h1 {
	font-size: 20px;
	color: #000;
	line-height: 24px;
	padding: 0 0 30px 0
}

h2 {
	font-size: 18px;
	color: #000;
	line-height: 22px;
	padding: 0 0 20px 0;
	font-weight: 400
}

h3 {
	font-size: 16px;
	color: #000;
	line-height: 20px;
	padding: 0 0 20px 0
}

#return-to-top {
	bottom: 20px;
	color: #000;
	display: none;
	font-size: 15px;
	position: fixed;
	right: 10px;
	text-decoration: none;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 9999
}

#return-to-top span {
	font-family: Arial;
	display: block;
	font-size: 20px;
	line-height: 1em;
	color: #696969;
	text-align: center;
	margin: 0 0 5px 0
}

.bradecrumb_link {
	font-size: 13px;
	line-height: 15px;
	color: #f3702d;
	padding: 50px 0 50px 0
}

.bradecrumb_link>a {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px 0 0;
	position: relative;
	text-decoration: none;
	color: #000
}

.bradecrumb_link>a:hover {
	color: #f47123
}

.bradecrumb_link>a:after {
	content: "\000BB";
	position: absolute;
	right: -14px;
	top: 0
}

.product_bucket {
	text-align: center
}

.product_bucket>div {
	display: inline-block;
	vertical-align: top;
	margin: 0 1% 30px 1%
}

.product_bucket>div>a {
	display: block;
	font-size: 14px;
	color: #000;
	line-height: 20px;
	text-decoration: none
}

.product_bucket>div>a:hover {
	color: #f47123
}

.product_bucket>div>a>div {
	position: relative;
	margin: 0 0 12px 0
}

.product_bucket>div>a>div img {
	display: block
}

.product_bucket>div>a>div>span {
	visibility: hidden;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 99;
	opacity: 0;
	width: 90%
}

.product_bucket>div>a:hover>div>span,
.product_bucket>div>a:hover>div:before {
	visibility: visible;
	opacity: 1
}

.product_bucket>div>a>div:before {
	content: "";
	position: absolute;
	visibility: hidden;
	opacity: 0;
	background: rgba(0, 0, 0, 0.83);
	z-index: 9;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0
}

.product_bucket>div>a>div>span>h2 {
	font-size: 19px;
	color: #fff;
	line-height: 21px;
	padding: 0 0 10px 0;
	text-transform: uppercase
}

.product_bucket>div>a>div>span>h3 {
	color: #f47123;
	font-size: 15px;
	line-height: 17px;
	padding: 0 0 20px 0
}

.product_bucket>div>a>div>span>p {
	padding: 0 0 10px 0;
	font-size: 15px;
	color: #fff;
	line-height: 1em
}

.product_bucket>div>a>div>span>p span {
	color: #9a9999
}

.single_product>div {
	margin: 0 0 26px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box
}

.single_product>div>img {
	display: block;
	margin: 0 auto 9px auto
}

.share_bar {
	background: #ededed;
	font-size: 17px;
	color: #202020;
	line-height: 17px;
	text-align: center;
	padding: 6px 5px 9px 5px;
	width: 100%;
	position: fixed;
	bottom: -100%;
	z-index: 99;
	left: 0;
	text-align: left;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.share_bar.active {
	bottom: 81px
}

.share_bar>a {
	display: block;
	margin: 5px 0 5px 0;
	text-decoration: none;
	color: #000
}

.share_bar>a>img {
	display: inline-block;
	vertical-align: middle
}

.share_bar>a>span {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 10px
}

.single_product_des {
	background: #ededed;
	padding: 30px
}

.single_product_des h2 {
	font-size: 17px;
	line-height: 19px;
	color: #f58220;
	padding: 0 0 20px
}

.single_product_des dl {
	font-size: 15px;
	color: #303030;
	border-bottom: 1px solid #e4e4e4;
	margin: 0;
	width: 100%;
	display: table
}

.single_product_des h2.description_head {
	padding-top: 30px
}

.single_product_des dl dt,
.single_product_des dl dd {
	padding: 15px 15px 15px 0;
	display: table-cell;
	vertical-align: top;
	width: 40%
}

.single_product_des dl dd {
	padding: 15px 0 15px 15px
}

.description_text {
	min-height: 88px
}

.description_text p {
	font-size: 15px;
	color: #1b1b1b;
	line-height: 21px;
	padding: 0 0 15px 0
}

.page-content {
	font-size: 18px;
	line-height: 30px;
	padding: 0 0 80px 0
}

.page-heading {
	border-bottom: 1px solid #e8e8e8;
	border-top: 1px solid #e8e8e8;
	text-align: center;
	padding: 16px 0 18px 0;
	margin: 0 0 30px 0
}

.page-heading h1 {
	font-size: 26px;
	font-weight: 400;
	padding: 0;
	color: #474646;
	text-transform: uppercase
}

.media-wrap {
	padding: 64px 20px 64px 20px;
	background: #e7e7e7
}

.media-wrap .media-slider {
	max-width: 881px;
	margin: 0 auto
}

.media-wrap .media-slider li {
	padding: 0
}

.media-wrap .media-slider li img {
	display: block;
	margin: 0 auto;
	border: 15px solid #fff;
	box-sizing: border-box
}

.media-wrap .media-slider li iframe {
	display: block;
	margin: 0 auto;
	border: 15px solid #fff;
	height: 499px;
	width: 100%;
	max-width: 850px;
	box-sizing: border-box
}

.contact-orange-text {
	font-size: 15px;
	color: #f3702c;
	line-height: 30px;
	padding: 0 0 40px 0
}

.contact-wrap,
.store-wrap {
	background: #e7e7e7;
	padding: 94px
}

.contact-wrap form {
	font-size: 14px;
	line-height: 16px;
	color: #393939
}

.contact-wrap form input,
.contact-wrap form textarea {
	font-family: 'Playfair Display', serif;
	border: 1px solid #dcd9d9;
	box-sizing: border-box;
	padding: 5px;
	background: #fff;
	width: 100%;
	height: 36px;
	font-size: 14px;
	color: #393939
}

.contact-wrap form textarea {
	height: 141px
}

.contact-wrap form label {
	display: block;
	padding: 0 0 10px 0
}

.contact-wrap form label span {
	color: #f3702c
}

.contact-wrap form div,
.contact-wrap form article {
	padding: 0 0 20px 0
}

.contact-wrap form button {
	font-family: 'Playfair Display', serif;
	background: #666;
	width: 72px;
	height: 35px;
	border: 0;
	font-size: 15px;
	line-height: 33px;
	color: #fff;
	margin-right: 18px;
	cursor: pointer
}

.contact-wrap form button:hover {
	background: #f4702d
}

.contact-wrap form button:nth-of-type(1) {
	background: #f4702d
}

.contact-wrap form button:nth-of-type(1):hover {
	background: #666
}

.tabcontent>article {
	display: none;
	min-height: 250px
}

.tabcontent>article.active {
	display: block
}

.tab {
	padding: 0 0 50px 0
}

.tab ul li {
	display: inline-block;
	vertical-align: top;
	padding: 5px;
	cursor: pointer;
	border-left: 1px solid #fff;
	margin: 0 0 1px 0;
	font-size: 15px;
	color: #fff;
	background: #212121;
	float: left;
	text-transform: uppercase;
	width: 50%;
	box-sizing: border-box;
	text-align: center
}

.tab ul li:first-child {
	border: 0
}

.tab ul li.active {
	background: #f3702d
}

.map iframe {
	height: 528px;
	width: 100%;
	margin: 0 auto;
	display: block;
	box-sizing: border-box
}

.content div {
	font-size: 12px;
	color: #303030;
	line-height: 25px;
	padding: 25px 15px 15px 20px;
	box-sizing: border-box;
	max-width: 234px;
	width: 100%;
	margin: 0 2% 20px 2%;
	display: inline-block;
	vertical-align: top
}

.content div span {
	font-size: 14px;
	line-height: 25px;
	display: block;
	color: #f3702d
}

.content div:first-child {
	background: #fff
}

.about-text {
	font-size: 16px;
	line-height: 25px;
	padding: 0 0 40px 0;
	color: #090909
}

.about-text span {
	display: inline-block;
	vertical-align: bottom;
	font-size: 34px;
	color: #f3702d;
	line-height: 38px
}

.timeline-wrap {
	text-align: center
}

.timeline {
	width: 141px;
	height: 41px;
	font-size: 20px;
	line-height: 37px;
	background: #212121;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	display: inline-block;
	vertical-align: top
}

.about-section dl {
	margin: 0
}

.about-section dl dt,
.about-section dl dd {
	display: block;
	padding: 36px 20px 0 42px;
	margin: 0
}

.about-section dl dt {
	font-size: 12px;
	line-height: 14px;
	color: #1f1f1f;
	text-align: center;
	padding: 36px 44px 0 20px;
	text-transform: uppercase;
	letter-spacing: 3px
}

.about-section dl dt span {
	display: block;
	font-size: 28px;
	line-height: 28px;
	color: #1f1f1f;
	font-weight: 700;
	padding: 5px 0 10px
}

.about-section dl dd div {
	max-width: 743px;
	background: #fff;
	padding: 17px 33px 22px;
	font-size: 14px;
	line-height: 25px;
	color: #151515;
	position: relative
}

.about-section dl dd div:before {
	bottom: 100%;
	content: "";
	position: absolute;
	left: 48%;
	border-bottom: 10px solid #fff;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent
}

.about-section dl dd div span {
	font-size: 18px;
	display: block;
	line-height: 20px;
	padding: 0 0 8px 0;
	color: #f3702d;
	font-weight: 700
}

.about-section p {
	color: #090909;
	font-size: 14px;
	line-height: 30px;
	padding: 30px 0 0 0;
	max-width: 992px;
	margin: 0 auto;
	text-align: center
}

.about-section p span {
	color: #f3702d
}

.orange-text {
	color: #f3702c
}

.gold-coin-section {
	background: #ededed;
	margin: 30px 0 50px
}

.gold-coin-section>div:first-child {
	padding: 20px 10px
}

.gold-coin-section>div:first-child p {
	margin-top: 50px
}

.goldcoin-form {
	max-width: 500px;
	margin: 0 auto
}

.goldcoin-form>span {
	display: block;
	margin-bottom: 25px
}

.goldcoin-form label {
	display: inline-block;
	vertical-align: middle;
	width: 80px
}

.goldcoin-form div {
	display: block;
	clear: both;
	margin-bottom: 25px
}

.goldcoin-form input,
.goldcoin-form select {
	font-family: 'Playfair Display', serif;
	border: 1px solid #dcd9d9;
	box-sizing: border-box;
	padding: 5px;
	background: #fff;
	width: calc(100% - 80px);
	height: 36px;
	font-size: 14px;
	color: #393939;
	display: inline-block;
	vertical-align: middle
}

.goldcoin-form select {
	width: calc(100% - 84px)
}

.goldcoin-form .form-control {
	width: calc(100% - 107px)
}

.goldcoin-form span img {
	display: inline-block;
	vertical-align: middle;
	margin-left: 3px
}

.goldcoin-form button {
	font-family: 'Playfair Display', serif;
	background: #666;
	width: 72px;
	height: 35px;
	border: 0;
	font-size: 15px;
	line-height: 33px;
	color: #fff;
	margin-right: 18px;
	cursor: pointer
}

.goldcoin-form button:hover {
	background: #f4702d
}

.goldcoin-form button:nth-of-type(1) {
	background: #f4702d;
	width: auto
}

.goldcoin-form button:nth-of-type(1):hover {
	background: #666
}

.gold-coin-section #product-slider {
	max-width: 530px
}

.margin-top {
	margin-top: 50px
}

.gold-thankyou {
	background: #e7e7e7;
	margin-bottom: 50px
}

.gold-thankyou div {
	padding: 30px
}

.gold-thankyou div h2 {
	font-size: 40px;
	padding-bottom: 20px;
	text-transform: uppercase;
	line-height: 1em
}

.gold-thankyou a {
	text-decoration: none;
	color: #f3702d
}

.form-block {
	background: #e7e7e7;
	padding: 35px 5px
}

.form-block form input[type="text"],
.form-block form input[type="email"],
.form-block form input[type="password"],
.form-block form input[type="phone"],
.store-locator-form input[type="text"],
.form-block form select,
.inquiry-popup textarea,
.inquiry-thankyou-popup textarea,
.inquiry-thankyou-popup input[type="text"],
.inquiry-thankyou-popup input[type="email"],
.inquiry-popup input[type="text"],
.inquiry-popup input[type="email"] {
	font-family: 'Playfair Display', serif;
	border: 1px solid #dcd9d9;
	box-sizing: border-box;
	padding: 5px;
	background: #fff;
	width: 100%;
	height: 36px;
	font-size: 14px;
	color: #393939;
	max-width: 313px;
}

.text-field {
	vertical-align: middle!important
}

.inquiry-popup textarea {
	height: 136px
}

.form-block form select {
	color: #393939
}

.btn_locate,
.inquiry-popup button,
.inquiry-thankyou-popup button {
	font-family: 'Playfair Display', serif;
	background: #090909;
	height: 47px;
	border: 0;
	font-size: 16px;
	line-height: 33px;
	color: #fff;
	margin-right: 9px;
	margin-bottom: 10px;
	cursor: pointer;
	max-width: 172px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	width: 100%;
	min-width: 111px
}

.inquiry-popup,
.inquiry-thankyou-popup button {
	width: 100%;
	text-align: center;
	max-width: none;
	height: auto;
	padding: 10px 15px;
	line-height: 18px
}

.form-block form button:hover,
.form-block div .btn_page:hover,
.btn_locate:hover,
.inquiry-popup button:hover,
.common-form button:hover,
.inquiry-thankyou-popup button:hover {
	background: #f4702d
}

.form-block div .btn_page {
	background: #090909;
	padding: 16px 30px 16px 30px;
	text-align: center
}

.form-row {
	display: table;
	width: 100%;
}

.form-row-head {
	display: table;
	width: 100%;
}

.form-row>div {
	display: table-cell;
	vertical-align: top;
	padding: 10px 0 10px 25px;
}

.form-row-head>div {
	display: table-cell;
	vertical-align: top;
	padding: 10px 0 10px 25px;
}

.form-row>div span {
	display: block;
	padding: 10px 0 20px;
}

.form-row-head>div span {
	display: block;
	padding: 10px 0 20px;
}

.form-row>div.label {
	text-align: right;
	padding: 10px 30px 10px 0;
	width: 35%;
	border-right: 1px solid #ffffff;
}

.form-row-head>div.label {
	text-align: right;
	padding: 10px 30px 10px 0;
	width: 35%;
	border-right: 1px solid #ffffff;
}

.form-row>div.label>label {
	padding-top: 6px;
	display: block;
	position: relative;
}

.form-row-head>div.label>label {
	padding-top: 6px;
	display: block;
	position: relative;
}

.form-row>div.label>label:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	right: -38px;
	/* background:#f3702d; */
	top: 10px;
	border-radius: 50%;
}

.form-row-head>div.label>label:after {
	position: absolute;
	width: 15px;
	height: 15px;
	right: -38px;
	background: #f3702d;
	top: 10px;
	border-radius: 50%;
}

.login-btn {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px 10px 0
}

.form-right {
	text-align: center;
	padding: 50px 0 0 0
}

.form-right p {
	font-size: 16px;
	color: #090909;
	padding-bottom: 10px;
}

.send-btn {
	margin-top: 30px
}

.form-row>div.label.no-border {
	border: 0
}

.form-row>div span.datepickernew {
	position: relative;
	padding: 0
}

.form-row>div span.datepickernew:after {
	content: "";
	position: absolute;
	right: 1px;
	top: 1px;
	height: 34px;
	width: 41px;
	background: url(/portalimages/newImages/media/datepickernew-bg.jpg) no-repeat center center
}

.form-myaccount .form-block>div>p {
	padding-bottom: 10px
}

.form-myaccount .form-row>div.label {
	text-align: left
}

.form-block form button.btn-orange {
	background: #f4702d
}

.form-block form button.btn-orange:hover {
	background: #090909
}

.form-myaccount .common-form {
	margin-bottom: 50px
}

.store-wrap .store-locator-form,
.store-wrap .store-locator-result {
	max-width: 900px;
	margin: 0 auto
}

.store-wrap .store-form select {
	width: 100%
}

.store-locator-form>div {
	padding: 0 0 10px
}

.store-locator-form label {
	display: block;
	margin-bottom: 10px
}

.btn_locate {
	height: 35px;
	margin-top: 40px;
	line-height: 35px
}

.store-locator-result>div {
	font-size: 14px;
	line-height: 18px;
	color: #939393;
	padding: 20px 0;
	box-sizing: border-box
}

.store-locator-result>div p {
	padding-bottom: 15px
}

.store-locator-result>div strong {
	color: #090909
}

a.btn_page.btn_wishlist:after {
	content: "";
	background: url(/portalimages/newImages/media/btn_wishlist_bg.png) no-repeat left top;
	width: 17px;
	height: 16px;
	position: absolute;
	left: 12px;
	top: 14px
}

.wishlist-bucket>div>a>div:after {
	content: "";
	background: url(/portalimages/newImages/media/btn_wishlist_bg_active.png) no-repeat left top;
	width: 17px;
	height: 16px;
	position: absolute;
	right: 12px;
	top: 14px;
	z-index: 9
}

.filter-column {
	padding-bottom: 20px;
	text-align: right
}

.filter-column form span {
	font-weight: bold;
	display: inline-block;
	vertical-align: top;
	padding-right: 10px
}

.signup-form {
	padding-top: 20px
}

.signup-form-span {
	display: block;
	font-size: 14px;
	line-height: 14px;
	color: #000;
	padding: 0 0 17px 0
}

.signup-form form input {
	font-family: 'Playfair Display', serif;
	border: 1px solid #dcd9d9;
	box-sizing: border-box;
	padding: 5px;
	background: #fff;
	width: 100%;
	height: 36px;
	font-size: 14px;
	color: #393939;
	width: 70%;
	float: left
}

.signup-form form button {
	font-family: 'Playfair Display', serif;
	background: #090909;
	height: 36px;
	border: 0;
	font-size: 16px;
	line-height: 33px;
	color: #fff;
	cursor: pointer;
	max-width: 172px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	width: 28%;
	float: right
}

.signup-form form button:hover {
	background: #f4702d
}

.myaccount-menu {
	border: 1px solid #ccc;
	padding: 20px 20px 15px;
	margin-bottom: 20px
}

.myaccount-menu span {
	display: block;
	font-size: 16px;
	line-height: 1em;
	color: #000;
	font-weight: 700;
	padding: 0 0 10px;
	border-bottom: 1px solid #ccc
}

.myaccount-menu ul li {
	border-bottom: 1px solid #ccc;
	padding: 5px 0;
	background: 0
}

.myaccount-menu ul li.active a {
	color: #f3702d
}

.myaccount-menu ul li a {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 18px;
	color: #000;
	text-decoration: none
}

.myaccount-menu ul li a:hover {
	text-decoration: underline
}

.button-bar {
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #e7e7e7;
	padding: 20px;
	left: 0;
	z-index: 99;
	text-align: center
}

.inquiry-popup,
.inquiry-thankyou-popup {
	position: fixed;
	left: 0;
	right: 0;
	margin: auto;
	top: 0;
	bottom: 0;
	max-height: 500px;
	max-width: 422px;
	width: 100%;
	border: 1px solid #c3c3c3;
	display: none;
	background: #e7e7e7;
	font-size: 14px;
	overflow: auto
}

.inquiry-popup,
.inquiry-thankyou-popup {
	padding: 0 0 10px
}

.inquiry-popup .common-form,
.inquiry-thankyou-popup .common-form {
	width: 90%;
	margin: 0 auto
}

.inquiry-popup.active {
	display: block;
	z-index: 9999
}

.inquiry-thankyou-popup.active {
	display: block;
	z-index: 9999
}

.ip-header {
	font-size: 22px;
	color: #212121;
	line-height: 1em;
	padding: 10px 10px;
	position: relative;
	background: #212121;
	color: #fff;
	margin-bottom: 20px
}

.ip-header a {
	font-family: arial;
	color: #fff;
	text-decoration: none;
	right: 10px;
	position: absolute;
	top: 5px
}

.inquiry-popup p {
	width: 90%;
	margin: 0 auto
}

.inquiry-thankyou-popup p {
	width: 90%;
	margin: 0 auto
}

.filter-column {
	text-align: left;
	background: #fff; //position:fixed;//bottom:0;padding:20px;width:100%;//left:0}.filterby{font-size:16px;color:#000;position:relative;display:inline-block;vertical-align:top;padding-bottom:10px;cursor:pointer;font-weight:bold}.filterby:after{content:"+";margin-left:5px}.filterby.active:after{content:"-"}.filter-option{display:none}.filter-option.active{display:block;border:1px solid #ccc;padding:20px}.filter-option ul li{display:inline-block;vertical-align:top;margin-right:1%;margin-bottom:5px;background:0}.filter-option ul li:first-child{display:block;font-weight:bold}.wishlist-bucket article{display:flex;margin-bottom:15px}.wishlist-bucket article div{width:100%}.wishlist-bucket article div:first-child{padding:0 30px 0 0;width:34%}.wishlist-bucket article div p{padding-bottom:10px;font-size:15px}.added-date{font-size:12px;padding-bottom:10px;border-bottom:1px solid #ccc;margin-bottom:20px}.saved-address{padding:20px;background:#f5f5f5;margin-bottom:20px}.share-btn{display:inline-block;vertical-align:middle;max-width:29px;margin-top:6px;margin-right:5%;width:20%;text-align:center}
	.popup-window {
		position: absolute;
		left: 0;
		right: 0;
		max-width: 940px;
		width: 100%;
		top: 5px;
		display: none;
		padding-bottom: 10px;
		z-index: 1000;
		margin: auto;
		background: #e7e7e7;
	}
	.popup-window.active {
		display: block
	}
	.popup-window>div {
		display: none
	}
	.popup-window>div.form-block {
		padding: 10px
	}
	.register-now.active,
	.login-form.active,
	.newbilling.active,
	.newshipping.active,
	.forgot-password.active {
		display: block
	}
	.popup-window.active-popup {
		display: block
	}
	@media only screen and (min-width:40em) {
		.header_logo {
			display: inline-block;
			vertical-align: top
		}
		.search {
			margin: 0
		}
		.myaccount-nav {
			margin-top: 0
		}
		.myaccount-nav>a img {
			display: none
		}
		.myaccount-nav>a {
			text-decoration: none
		}
		.myaccount-nav>a span {
			display: block;
			font-size: 16px;
			color: #000;
			text-decoration: none;
			margin: 2px;
			    cursor: pointer;
		}
		.col_3,
		.col_2 {
			overflow: hidden
		}
		.col_3>article {
			float: left;
			margin: 0 1% 10px 0;
			max-width: none;
			width: 32.65%
		}
		.col_2>article {
			float: left;
			margin: 0 1% 10px 0;
			max-width: none;
			width: 49.5%
		}
		.col_3>article:nth-of-type(3n),
		.col_2>article:nth-of-type(2n) {
			margin: 0 0 10px
		}
		footer nav {
			float: left;
			width: 50%
		}
		.social_icon {
			float: left
		}
		.contact-wrap form div {
			float: left;
			width: 49%
		}
		.contact-wrap form div:nth-of-type(2n) {
			padding: 0 0 20px 2%
		}
		.tab ul li {
			width: 33%
		}
		.content {
			float: left;
			margin: 0 0 0 5%;
			width: 55%
		}
		.timeline-wrap {
			width: 48%
		}
		.about-section dl {
			display: table;
			width: 100%
		}
		.about-section dl dt,
		.about-section dl dd {
			display: table-cell;
			vertical-align: top;
			padding: 36px 20px 0 42px;
			margin: 0
		}
		.about-section dl dt {
			font-size: 12px;
			line-height: 14px;
			color: #1f1f1f;
			width: 24%;
			text-align: right;
			padding: 37px 42px 0 20px;
			background: url(/portalimages/newImages/media/about-dot-bg.png) no-repeat right top
		}
		.about-section dl dd div:before {
			bottom: auto;
			left: auto;
			right: 100%;
			top: 13px;
			border-bottom: 10px solid transparent;
			border-top: 10px solid transparent;
			border-right: 10px solid #fff;
			border-left: 0
		}
		.goldcoin-form>span {
			float: left;
			width: 50%;
			margin-bottom: 25px
		}
		.goldcoin-form .padding-right {
			box-sizing: border-box;
			padding-right: 10px
		}
		.gold-thankyou div {
			display: inline-block;
			vertical-align: middle;
			width: 49.5%;
			box-sizing: border-box;
			padding: 0
		}
		.gold-thankyou div:first-child {
			padding: 30px
		}
		.gold-thankyou div h2 {
			font-size: 70px
		}
		.form-block {
			padding: 35px 35px;
			margin-bottom: 50px
		}
		.common-form {
			display: block;
			width: 90%
		}
		.form-block.form-myaccount>div .common-form {
			width: 100%
		}
		.store-locator-form {
			overflow: hidden
		}
		.store-locator-form>div {
			float: left;
			width: 25%;
			padding-left: 20px;
			box-sizing: border-box
		}
		.store-locator-result>div {
			padding: 0 25px 0 20px;
			margin: 40px 0;
			float: left;
			width: 70%;
			border-right: 1px solid #fff
		}
		.store-locator-result>div:last-child {
			padding: 0 20px 0 25px;
			text-align: right;
			border: 0;
			width: 30%
		}
		.two-column-form .form-block,
		.two-column-form .wishlist-bucket {
			float: right;
			width: 73%
		}
		.myaccount-menu {
			float: left;
			width: 25%
		}
		.filter-column {
			position: relative;
			padding: 0;
			left: 0;
			top: 0;
			margin-bottom: 20px
		}
	}
	@media only screen and (min-width:60em) {
		header {
			padding: 16px 0 0 0
		}
		.inner_wrap {
			padding: 0 25px
		}
		.mobile-fix-header {
			width: auto;
			right: 0;
			border: 0;
			position: static
		}
		.header_logo {
			margin: -33px 0 16px 0
		}
		a.menu_trigger {
			display: none
		}
		header nav {
			display: block;
			background: 0;
			border-top: 1px solid #e8e8e8;
			position: static;
			overflow: visible;
			width: auto
		}
		ul.tapnav {
			display: -webkit-box;
			display: -moz-box;
			display: -ms-flexbox;
			display: -moz-flex;
			display: -webkit-flex;
			display: flex;
			text-align: center;
			margin: 0 auto;
			max-width: 1180px;
			padding: 0
		}
		ul.tapnav>li {
			flex-grow: 1;
			position: relative;
			border-left: 1px solid #e8e8e8;
			padding: 8px 10px 12px 10px
		}
		ul.tapnav>li:first-child {
			border: 0
		}
		ul.tapnav>li>ul,
		.has_child>div {
			position: absolute;
			right: 0;
			top: 100%;
			display: none;
			z-index: 99;
			background: #fff;
			border-top: 1px solid #e8e8e8
		}
		ul.tapnav>li:hover>ul,
		.has_child:hover>div {
			display: block
		}
		ul.tapnav>li>ul>li {
			display: block;
			padding: 10px 20px 10px
		}
		.has_child:hover>div ul.tapnav>li>ul>li>a {
			display: block;
			white-space: nowrap
		}
		.has_child>a:after,
		.has_child2>a:after {
			display: none
		}
		.has_child>span,
		.has_child2>span {
			display: none
		}
		.has_child>div {
			right: auto;
			left: 0;
			width: 800px;
			box-sizing: border-box;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			-o-box-sizing: border-box;
			-ms-box-sizing: border-box;
			padding: 20px 50px;
			border-top: 1px solid #e8e8e8;
			text-align: left
		}
		.has_child.login-link>div {
			width: auto;
			padding: 10px;
			border: 0
		}
		.has_child.login-link>div>ul>li {
			float: none;
			width: auto
		}
		.has_child>div>ul>li {
			float: left;
			width: 47%
		}
		.has_child>div>ul>li:nth-of-type(2) {
			margin: 0 0 0 5%
		}
		.has_child>div>ul>li:nth-of-type(3) {
			margin: 20px 0 30px 5%
		}
		.has_child>div>ul>li>a,
		.has_child>div>ul>li>a:hover {
			color: #000;
			cursor: pointer;
			padding: 0 0 5px;
			margin: 0 0 5px;
			border-bottom: 1px solid #e8e8e8;
			display: block
		}
		.has_child.login-link>div>ul>li>a {
			border: 0;
			cursor: pointer
		}
		.has_child>div>ul>li:nth-of-type(3)>a {
			cursor: pointer
		}
		.has_child>div>ul>li:nth-of-type(3)>a:hover {
			color: #f6821f
		}
		.has_child2>ul {
			display: inline-block;
			vertical-align: top
		}
		.has_child>div>ul>li>ul>li {
			padding: 7px 0 12px 10px;
			background: url(/portalimages/newImages/media/topnav_link_bg.jpg) no-repeat left 13px;
			box-sizing: border-box;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			-o-box-sizing: border-box;
			-ms-box-sizing: border-box;
			float: left;
			width: 50%
		}
		.store_locator_box,
		.social_box {
			float: left;
			width: 49%
		}
		.social_box {
			margin: 0 0 0 2%
		}
	
		footer nav {
			width: 18%
		}
		footer nav:first-child {
			width: 18%
		}
		.footer_bottom {
			text-align: center;
			padding: 11px 84px 0 0
		}
		.footer_about_trigger {
			float: left
		}
		.footer_about_content {
			text-align: left
		}
		.copyright_text {
			display: inline-block;
			vertical-align: top
		}
		.website_by {
			float: right
		}
		.privacy_policy {
			font-size: 13px;
			float: left
		}
		.share_bar {
			width: 81.4%;
			margin: 0 0 0 18.7%;
			position: relative;
			left: 0;
			top: 14px
		}
		.product_bucket {
			text-align: left
		}
		.product_bucket p {
			text-align: center
		}
		.product_bucket>div {
			float: left;  
			margin: 0 1.32% 30px 0;
			width: 24%;
			text-align: center
		}
		.product_bucket>div:nth-of-type(4n) {
			margin: 0 0 30px
		}
		.single_product>div {
			float: left;
			width: 53.5%;
			position: relative
		}
		.single_product>div:first-child {
			margin: 0 1% 26px 0;
			width: 45.5%
		}
		.contact-wrap form div,
		.contact-wrap form div:nth-of-type(2n) {
			width: 23.5%;
			padding: 0 0 40px 2%
		}
		.contact-wrap form div:first-child {
			padding: 0
		}
		.contact-wrap form article {
			float: left;
			width: 49%
		}
		.contact-wrap form article:nth-of-type(2n) {
			padding: 0 0 40px 2%
		}
		.store-wrap {
			position: relative
		}
		.form-myaccount .form-row>div.label {
			width: 30%
		}
		.form-block>div {
			float: left;
			width: 70%;
			border-right: 1px solid #fff;
			box-sizing: border-box
		}
		.form-block>div.form-right {
			text-align: center;
			width: 30%;
			border: 0
		}
		.form-block.form-myaccount>div {
			border: 0;
			width: 50%
		}
		.form-block.form-myaccount>div:last-child {
			padding-left: 30px
		}
		.button-bar {
			padding: 0;
			width: auto;
			left: 0;
			top: ;
			position: relative;
			background: 0;
			z-index: 0;
			text-align: left
		}
		.share-btn {
			display: none
		}
		.share_bar>a {
			display: inline-block;
			vertical-align: middle;
			margin: 0 0 0 6px
		}
		.share_bar>a>span {
			display: none
		}
	}