@charset 'UTF-8';
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden

@import url(https://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic);
@import url(https://fonts.googleapis.com/css?family=Playfair+Display:400,400italic,700,700italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic);
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Lato:400,100,100italic,300,300italic,400italic,700,700italic,900,900italic);
*/
.animated{
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;

	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
}
.animated.infinite{
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
}
.animated.hinge{
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut{
	-webkit-animation-duration: 0.75s;
	        animation-duration: 0.75s;
}
.animated.flipOutX,
.animated.flipOutY{
	-webkit-animation-duration: 0.75s;
	        animation-duration: 0.75s;
}
@-webkit-keyframes bounce{
	from,
	20%,
	53%,
	80%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	40%,
	43%{
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		        transform: translate3d(0, -30px, 0);
	}
	70%{
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		        transform: translate3d(0, -15px, 0);
	}
	90%{
		-webkit-transform: translate3d(0, -4px, 0);
		        transform: translate3d(0, -4px, 0);
	}
}
@keyframes bounce{
	from,
	20%,
	53%,
	80%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	40%,
	43%{
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		        transform: translate3d(0, -30px, 0);
	}
	70%{
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		        transform: translate3d(0, -15px, 0);
	}
	90%{
		-webkit-transform: translate3d(0, -4px, 0);
		        transform: translate3d(0, -4px, 0);
	}
}
.bounce{
	-webkit-animation-name: bounce;
	        animation-name: bounce;
	-webkit-transform-origin: center bottom;
	        transform-origin: center bottom;
}
@-webkit-keyframes flash{
	from,
	50%,
	to{
		opacity: 1;
	}
	25%,
	75%{
		opacity: 0;
	}
}
@keyframes flash{
	from,
	50%,
	to{
		opacity: 1;
	}
	25%,
	75%{
		opacity: 0;
	}
}
.flash{
	-webkit-animation-name: flash;
	        animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse{
	from{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
	50%{
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		        transform: scale3d(1.05, 1.05, 1.05);
	}
	to{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
@keyframes pulse{
	from{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
	50%{
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		        transform: scale3d(1.05, 1.05, 1.05);
	}
	to{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
.pulse{
	-webkit-animation-name: pulse;
	        animation-name: pulse;
}
@-webkit-keyframes rubberBand{
	from{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
	30%{
		-webkit-transform: scale3d(1.25, 0.75, 1);
		        transform: scale3d(1.25, 0.75, 1);
	}
	40%{
		-webkit-transform: scale3d(0.75, 1.25, 1);
		        transform: scale3d(0.75, 1.25, 1);
	}
	50%{
		-webkit-transform: scale3d(1.15, 0.85, 1);
		        transform: scale3d(1.15, 0.85, 1);
	}
	65%{
		-webkit-transform: scale3d(0.95, 1.05, 1);
		        transform: scale3d(0.95, 1.05, 1);
	}
	75%{
		-webkit-transform: scale3d(1.05, 0.95, 1);
		        transform: scale3d(1.05, 0.95, 1);
	}
	to{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
@keyframes rubberBand{
	from{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
	30%{
		-webkit-transform: scale3d(1.25, 0.75, 1);
		        transform: scale3d(1.25, 0.75, 1);
	}
	40%{
		-webkit-transform: scale3d(0.75, 1.25, 1);
		        transform: scale3d(0.75, 1.25, 1);
	}
	50%{
		-webkit-transform: scale3d(1.15, 0.85, 1);
		        transform: scale3d(1.15, 0.85, 1);
	}
	65%{
		-webkit-transform: scale3d(0.95, 1.05, 1);
		        transform: scale3d(0.95, 1.05, 1);
	}
	75%{
		-webkit-transform: scale3d(1.05, 0.95, 1);
		        transform: scale3d(1.05, 0.95, 1);
	}
	to{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
.rubberBand{
	-webkit-animation-name: rubberBand;
	        animation-name: rubberBand;
}
@-webkit-keyframes shake{
	from,
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90%{
		-webkit-transform: translate3d(-10px, 0, 0);
		        transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80%{
		-webkit-transform: translate3d(10px, 0, 0);
		        transform: translate3d(10px, 0, 0);
	}
}
@keyframes shake{
	from,
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90%{
		-webkit-transform: translate3d(-10px, 0, 0);
		        transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80%{
		-webkit-transform: translate3d(10px, 0, 0);
		        transform: translate3d(10px, 0, 0);
	}
}
.shake{
	-webkit-animation-name: shake;
	        animation-name: shake;
}
@-webkit-keyframes swing{
	20%{
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		        transform: rotate3d(0, 0, 1, 15deg);
	}
	40%{
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		        transform: rotate3d(0, 0, 1, -10deg);
	}
	60%{
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		        transform: rotate3d(0, 0, 1, 5deg);
	}
	80%{
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		        transform: rotate3d(0, 0, 1, -5deg);
	}
	to{
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		        transform: rotate3d(0, 0, 1, 0deg);
	}
}
@keyframes swing{
	20%{
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		        transform: rotate3d(0, 0, 1, 15deg);
	}
	40%{
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		        transform: rotate3d(0, 0, 1, -10deg);
	}
	60%{
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		        transform: rotate3d(0, 0, 1, 5deg);
	}
	80%{
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		        transform: rotate3d(0, 0, 1, -5deg);
	}
	to{
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		        transform: rotate3d(0, 0, 1, 0deg);
	}
}
.swing{
	-webkit-animation-name: swing;
	        animation-name: swing;
	-webkit-transform-origin: top center;
	        transform-origin: top center;
}
@-webkit-keyframes tada{
	from{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
	10%,
	20%{
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90%{
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80%{
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
@keyframes tada{
	from{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
	10%,
	20%{
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90%{
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80%{
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to{
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
.tada{
	-webkit-animation-name: tada;
	        animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble{
	from{
		-webkit-transform: none;
		        transform: none;
	}
	15%{
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30%{
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45%{
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60%{
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75%{
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	to{
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes wobble{
	from{
		-webkit-transform: none;
		        transform: none;
	}
	15%{
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30%{
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45%{
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60%{
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75%{
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	to{
		-webkit-transform: none;
		        transform: none;
	}
}
.wobble{
	-webkit-animation-name: wobble;
	        animation-name: wobble;
}
@-webkit-keyframes jello{
	from,
	11.1%,
	to{
		-webkit-transform: none;
		        transform: none;
	}
	22.2%{
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		        transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3%{
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		        transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4%{
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		        transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5%{
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		        transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6%{
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		        transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7%{
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		        transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8%{
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
@keyframes jello{
	from,
	11.1%,
	to{
		-webkit-transform: none;
		        transform: none;
	}
	22.2%{
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		        transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3%{
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		        transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4%{
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		        transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5%{
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		        transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6%{
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		        transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7%{
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		        transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8%{
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.jello{
	-webkit-animation-name: jello;
	        animation-name: jello;
	-webkit-transform-origin: center;
	        transform-origin: center;
}
@-webkit-keyframes bounceIn{
	from,
	20%,
	40%,
	60%,
	80%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0%{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		        transform: scale3d(0.3, 0.3, 0.3);
	}
	20%{
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		        transform: scale3d(1.1, 1.1, 1.1);
	}
	40%{
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		        transform: scale3d(0.9, 0.9, 0.9);
	}
	60%{
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		        transform: scale3d(1.03, 1.03, 1.03);
	}
	80%{
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		        transform: scale3d(0.97, 0.97, 0.97);
	}
	to{
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
@keyframes bounceIn{
	from,
	20%,
	40%,
	60%,
	80%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0%{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		        transform: scale3d(0.3, 0.3, 0.3);
	}
	20%{
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		        transform: scale3d(1.1, 1.1, 1.1);
	}
	40%{
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		        transform: scale3d(0.9, 0.9, 0.9);
	}
	60%{
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		        transform: scale3d(1.03, 1.03, 1.03);
	}
	80%{
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		        transform: scale3d(0.97, 0.97, 0.97);
	}
	to{
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
.bounceIn{
	-webkit-animation-name: bounceIn;
	        animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown{
	from,
	60%,
	75%,
	90%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0%{
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		        transform: translate3d(0, -3000px, 0);
	}
	60%{
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		        transform: translate3d(0, 25px, 0);
	}
	75%{
		-webkit-transform: translate3d(0, -10px, 0);
		        transform: translate3d(0, -10px, 0);
	}
	90%{
		-webkit-transform: translate3d(0, 5px, 0);
		        transform: translate3d(0, 5px, 0);
	}
	to{
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes bounceInDown{
	from,
	60%,
	75%,
	90%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0%{
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		        transform: translate3d(0, -3000px, 0);
	}
	60%{
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		        transform: translate3d(0, 25px, 0);
	}
	75%{
		-webkit-transform: translate3d(0, -10px, 0);
		        transform: translate3d(0, -10px, 0);
	}
	90%{
		-webkit-transform: translate3d(0, 5px, 0);
		        transform: translate3d(0, 5px, 0);
	}
	to{
		-webkit-transform: none;
		        transform: none;
	}
}
.bounceInDown{
	-webkit-animation-name: bounceInDown;
	        animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft{
	from,
	60%,
	75%,
	90%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0%{
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		        transform: translate3d(-3000px, 0, 0);
	}
	60%{
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		        transform: translate3d(25px, 0, 0);
	}
	75%{
		-webkit-transform: translate3d(-10px, 0, 0);
		        transform: translate3d(-10px, 0, 0);
	}
	90%{
		-webkit-transform: translate3d(5px, 0, 0);
		        transform: translate3d(5px, 0, 0);
	}
	to{
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes bounceInLeft{
	from,
	60%,
	75%,
	90%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0%{
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		        transform: translate3d(-3000px, 0, 0);
	}
	60%{
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		        transform: translate3d(25px, 0, 0);
	}
	75%{
		-webkit-transform: translate3d(-10px, 0, 0);
		        transform: translate3d(-10px, 0, 0);
	}
	90%{
		-webkit-transform: translate3d(5px, 0, 0);
		        transform: translate3d(5px, 0, 0);
	}
	to{
		-webkit-transform: none;
		        transform: none;
	}
}
.bounceInLeft{
	-webkit-animation-name: bounceInLeft;
	        animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight{
	from,
	60%,
	75%,
	90%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from{
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		        transform: translate3d(3000px, 0, 0);
	}
	60%{
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		        transform: translate3d(-25px, 0, 0);
	}
	75%{
		-webkit-transform: translate3d(10px, 0, 0);
		        transform: translate3d(10px, 0, 0);
	}
	90%{
		-webkit-transform: translate3d(-5px, 0, 0);
		        transform: translate3d(-5px, 0, 0);
	}
	to{
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes bounceInRight{
	from,
	60%,
	75%,
	90%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from{
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		        transform: translate3d(3000px, 0, 0);
	}
	60%{
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		        transform: translate3d(-25px, 0, 0);
	}
	75%{
		-webkit-transform: translate3d(10px, 0, 0);
		        transform: translate3d(10px, 0, 0);
	}
	90%{
		-webkit-transform: translate3d(-5px, 0, 0);
		        transform: translate3d(-5px, 0, 0);
	}
	to{
		-webkit-transform: none;
		        transform: none;
	}
}
.bounceInRight{
	-webkit-animation-name: bounceInRight;
	        animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp{
	from,
	60%,
	75%,
	90%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		        transform: translate3d(0, 3000px, 0);
	}
	60%{
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		        transform: translate3d(0, -20px, 0);
	}
	75%{
		-webkit-transform: translate3d(0, 10px, 0);
		        transform: translate3d(0, 10px, 0);
	}
	90%{
		-webkit-transform: translate3d(0, -5px, 0);
		        transform: translate3d(0, -5px, 0);
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
@keyframes bounceInUp{
	from,
	60%,
	75%,
	90%,
	to{
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		        transform: translate3d(0, 3000px, 0);
	}
	60%{
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		        transform: translate3d(0, -20px, 0);
	}
	75%{
		-webkit-transform: translate3d(0, 10px, 0);
		        transform: translate3d(0, 10px, 0);
	}
	90%{
		-webkit-transform: translate3d(0, -5px, 0);
		        transform: translate3d(0, -5px, 0);
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
.bounceInUp{
	-webkit-animation-name: bounceInUp;
	        animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut{
	20%{
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		        transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55%{
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		        transform: scale3d(1.1, 1.1, 1.1);
	}
	to{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		        transform: scale3d(0.3, 0.3, 0.3);
	}
}
@keyframes bounceOut{
	20%{
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		        transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55%{
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		        transform: scale3d(1.1, 1.1, 1.1);
	}
	to{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		        transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut{
	-webkit-animation-name: bounceOut;
	        animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown{
	20%{
		-webkit-transform: translate3d(0, 10px, 0);
		        transform: translate3d(0, 10px, 0);
	}
	40%,
	45%{
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		        transform: translate3d(0, -20px, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		        transform: translate3d(0, 2000px, 0);
	}
}
@keyframes bounceOutDown{
	20%{
		-webkit-transform: translate3d(0, 10px, 0);
		        transform: translate3d(0, 10px, 0);
	}
	40%,
	45%{
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		        transform: translate3d(0, -20px, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		        transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown{
	-webkit-animation-name: bounceOutDown;
	        animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft{
	20%{
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		        transform: translate3d(20px, 0, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		        transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes bounceOutLeft{
	20%{
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		        transform: translate3d(20px, 0, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		        transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft{
	-webkit-animation-name: bounceOutLeft;
	        animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight{
	20%{
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		        transform: translate3d(-20px, 0, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		        transform: translate3d(2000px, 0, 0);
	}
}
@keyframes bounceOutRight{
	20%{
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		        transform: translate3d(-20px, 0, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		        transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight{
	-webkit-animation-name: bounceOutRight;
	        animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp{
	20%{
		-webkit-transform: translate3d(0, -10px, 0);
		        transform: translate3d(0, -10px, 0);
	}
	40%,
	45%{
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		        transform: translate3d(0, 20px, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		        transform: translate3d(0, -2000px, 0);
	}
}
@keyframes bounceOutUp{
	20%{
		-webkit-transform: translate3d(0, -10px, 0);
		        transform: translate3d(0, -10px, 0);
	}
	40%,
	45%{
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		        transform: translate3d(0, 20px, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		        transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp{
	-webkit-animation-name: bounceOutUp;
	        animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
@keyframes fadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
.fadeIn{
	-webkit-animation-name: fadeIn;
	        animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown{
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes fadeInDown{
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.fadeInDown{
	-webkit-animation-name: fadeInDown;
	        animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig{
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		        transform: translate3d(0, -2000px, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes fadeInDownBig{
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		        transform: translate3d(0, -2000px, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.fadeInDownBig{
	-webkit-animation-name: fadeInDownBig;
	        animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft{
	from{
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes fadeInLeft{
	from{
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.fadeInLeft{
	-webkit-animation-name: fadeInLeft;
	        animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig{
	from{
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		        transform: translate3d(-2000px, 0, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes fadeInLeftBig{
	from{
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		        transform: translate3d(-2000px, 0, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.fadeInLeftBig{
	-webkit-animation-name: fadeInLeftBig;
	        animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight{
	from{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes fadeInRight{
	from{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.fadeInRight{
	-webkit-animation-name: fadeInRight;
	        animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig{
	from{
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		        transform: translate3d(2000px, 0, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes fadeInRightBig{
	from{
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		        transform: translate3d(2000px, 0, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.fadeInRightBig{
	-webkit-animation-name: fadeInRightBig;
	        animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp{
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes fadeInUp{
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.fadeInUp{
	-webkit-animation-name: fadeInUp;
	        animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig{
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		        transform: translate3d(0, 2000px, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes fadeInUpBig{
	from{
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		        transform: translate3d(0, 2000px, 0);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.fadeInUpBig{
	-webkit-animation-name: fadeInUpBig;
	        animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
	}
}
@keyframes fadeOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
	}
}
.fadeOut{
	-webkit-animation-name: fadeOut;
	        animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
	}
}
@keyframes fadeOutDown{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown{
	-webkit-animation-name: fadeOutDown;
	        animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		        transform: translate3d(0, 2000px, 0);
	}
}
@keyframes fadeOutDownBig{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		        transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig{
	-webkit-animation-name: fadeOutDownBig;
	        animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
	}
}
@keyframes fadeOutLeft{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft{
	-webkit-animation-name: fadeOutLeft;
	        animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		        transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes fadeOutLeftBig{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		        transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig{
	-webkit-animation-name: fadeOutLeftBig;
	        animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
	}
}
@keyframes fadeOutRight{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight{
	-webkit-animation-name: fadeOutRight;
	        animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		        transform: translate3d(2000px, 0, 0);
	}
}
@keyframes fadeOutRightBig{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		        transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig{
	-webkit-animation-name: fadeOutRightBig;
	        animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
	}
}
@keyframes fadeOutUp{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp{
	-webkit-animation-name: fadeOutUp;
	        animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		        transform: translate3d(0, -2000px, 0);
	}
}
@keyframes fadeOutUpBig{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		        transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig{
	-webkit-animation-name: fadeOutUpBig;
	        animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip{
	from{
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
	}
	40%{
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
	}
	50%{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
	}
	80%{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
	}
	to{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
}
@keyframes flip{
	from{
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
	}
	40%{
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
	}
	50%{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
	}
	80%{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
	}
	to{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
}
.animated.flip{
	-webkit-animation-name: flip;
	        animation-name: flip;

	-webkit-backface-visibility: visible;
	        backface-visibility: visible;
}
@-webkit-keyframes flipInX{
	from{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
	}
	40%{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
	}
	60%{
		opacity: 1;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
	}
	80%{
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	to{
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
}
@keyframes flipInX{
	from{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
	}
	40%{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
	}
	60%{
		opacity: 1;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
	}
	80%{
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	to{
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
}
.flipInX{
	-webkit-animation-name: flipInX;
	        animation-name: flipInX;

	-webkit-backface-visibility: visible !important;
	        backface-visibility: visible !important;
}
@-webkit-keyframes flipInY{
	from{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
	}
	40%{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
	}
	60%{
		opacity: 1;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
	}
	80%{
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to{
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
}
@keyframes flipInY{
	from{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
	}
	40%{
		-webkit-animation-timing-function: ease-in;
		        animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
	}
	60%{
		opacity: 1;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
	}
	80%{
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to{
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
}
.flipInY{
	-webkit-animation-name: flipInY;
	        animation-name: flipInY;

	-webkit-backface-visibility: visible !important;
	        backface-visibility: visible !important;
}
@-webkit-keyframes flipOutX{
	from{
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
	30%{
		opacity: 1;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
	}
	to{
		opacity: 0;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
	}
}
@keyframes flipOutX{
	from{
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
	30%{
		opacity: 1;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
	}
	to{
		opacity: 0;
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
	}
}
.flipOutX{
	-webkit-animation-name: flipOutX;
	        animation-name: flipOutX;

	-webkit-backface-visibility: visible !important;
	        backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY{
	from{
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
	30%{
		opacity: 1;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
	}
	to{
		opacity: 0;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
	}
}
@keyframes flipOutY{
	from{
		-webkit-transform: perspective(400px);
		        transform: perspective(400px);
	}
	30%{
		opacity: 1;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
	}
	to{
		opacity: 0;
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
	}
}
.flipOutY{
	-webkit-animation-name: flipOutY;
	        animation-name: flipOutY;

	-webkit-backface-visibility: visible !important;
	        backface-visibility: visible !important;
}
@-webkit-keyframes lightSpeedIn{
	from{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		        transform: translate3d(100%, 0, 0) skewX(-30deg);
	}
	60%{
		opacity: 1;
		-webkit-transform: skewX(20deg);
		        transform: skewX(20deg);
	}
	80%{
		opacity: 1;
		-webkit-transform: skewX(-5deg);
		        transform: skewX(-5deg);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes lightSpeedIn{
	from{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		        transform: translate3d(100%, 0, 0) skewX(-30deg);
	}
	60%{
		opacity: 1;
		-webkit-transform: skewX(20deg);
		        transform: skewX(20deg);
	}
	80%{
		opacity: 1;
		-webkit-transform: skewX(-5deg);
		        transform: skewX(-5deg);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.lightSpeedIn{
	-webkit-animation-name: lightSpeedIn;
	        animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	        animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		        transform: translate3d(100%, 0, 0) skewX(30deg);
	}
}
@keyframes lightSpeedOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		        transform: translate3d(100%, 0, 0) skewX(30deg);
	}
}
.lightSpeedOut{
	-webkit-animation-name: lightSpeedOut;
	        animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	        animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		        transform: rotate3d(0, 0, 1, -200deg);
		-webkit-transform-origin: center;
		        transform-origin: center;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: center;
		        transform-origin: center;
	}
}
@keyframes rotateIn{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		        transform: rotate3d(0, 0, 1, -200deg);
		-webkit-transform-origin: center;
		        transform-origin: center;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: center;
		        transform-origin: center;
	}
}
.rotateIn{
	-webkit-animation-name: rotateIn;
	        animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		        transform: rotate3d(0, 0, 1, -45deg);
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
}
@keyframes rotateInDownLeft{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		        transform: rotate3d(0, 0, 1, -45deg);
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
}
.rotateInDownLeft{
	-webkit-animation-name: rotateInDownLeft;
	        animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		        transform: rotate3d(0, 0, 1, 45deg);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
}
@keyframes rotateInDownRight{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		        transform: rotate3d(0, 0, 1, 45deg);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
}
.rotateInDownRight{
	-webkit-animation-name: rotateInDownRight;
	        animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		        transform: rotate3d(0, 0, 1, 45deg);
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
}
@keyframes rotateInUpLeft{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		        transform: rotate3d(0, 0, 1, 45deg);
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
}
.rotateInUpLeft{
	-webkit-animation-name: rotateInUpLeft;
	        animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		        transform: rotate3d(0, 0, 1, -90deg);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
}
@keyframes rotateInUpRight{
	from{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		        transform: rotate3d(0, 0, 1, -90deg);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
}
.rotateInUpRight{
	-webkit-animation-name: rotateInUpRight;
	        animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut{
	from{
		opacity: 1;
		-webkit-transform-origin: center;
		        transform-origin: center;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		        transform: rotate3d(0, 0, 1, 200deg);
		-webkit-transform-origin: center;
		        transform-origin: center;
	}
}
@keyframes rotateOut{
	from{
		opacity: 1;
		-webkit-transform-origin: center;
		        transform-origin: center;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		        transform: rotate3d(0, 0, 1, 200deg);
		-webkit-transform-origin: center;
		        transform-origin: center;
	}
}
.rotateOut{
	-webkit-animation-name: rotateOut;
	        animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft{
	from{
		opacity: 1;
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		        transform: rotate3d(0, 0, 1, 45deg);
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
}
@keyframes rotateOutDownLeft{
	from{
		opacity: 1;
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		        transform: rotate3d(0, 0, 1, 45deg);
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
}
.rotateOutDownLeft{
	-webkit-animation-name: rotateOutDownLeft;
	        animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight{
	from{
		opacity: 1;
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		        transform: rotate3d(0, 0, 1, -45deg);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
}
@keyframes rotateOutDownRight{
	from{
		opacity: 1;
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		        transform: rotate3d(0, 0, 1, -45deg);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
}
.rotateOutDownRight{
	-webkit-animation-name: rotateOutDownRight;
	        animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft{
	from{
		opacity: 1;
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		        transform: rotate3d(0, 0, 1, -45deg);
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
}
@keyframes rotateOutUpLeft{
	from{
		opacity: 1;
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		        transform: rotate3d(0, 0, 1, -45deg);
		-webkit-transform-origin: left bottom;
		        transform-origin: left bottom;
	}
}
.rotateOutUpLeft{
	-webkit-animation-name: rotateOutUpLeft;
	        animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight{
	from{
		opacity: 1;
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		        transform: rotate3d(0, 0, 1, 90deg);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
}
@keyframes rotateOutUpRight{
	from{
		opacity: 1;
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
	to{
		opacity: 0;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		        transform: rotate3d(0, 0, 1, 90deg);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}
}
.rotateOutUpRight{
	-webkit-animation-name: rotateOutUpRight;
	        animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge{
	0%{
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		-webkit-transform-origin: top left;
		        transform-origin: top left;
	}
	20%,
	60%{
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		        transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		        transform-origin: top left;
	}
	40%,
	80%{
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		opacity: 1;
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		        transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		        transform-origin: top left;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, 700px, 0);
		        transform: translate3d(0, 700px, 0);
	}
}
@keyframes hinge{
	0%{
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		-webkit-transform-origin: top left;
		        transform-origin: top left;
	}
	20%,
	60%{
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		        transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		        transform-origin: top left;
	}
	40%,
	80%{
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		opacity: 1;
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		        transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		        transform-origin: top left;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(0, 700px, 0);
		        transform: translate3d(0, 700px, 0);
	}
}
.hinge{
	-webkit-animation-name: hinge;
	        animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn{
	from{
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
@keyframes rollIn{
	from{
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	to{
		opacity: 1;
		-webkit-transform: none;
		        transform: none;
	}
}
.rollIn{
	-webkit-animation-name: rollIn;
	        animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}
@keyframes rollOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}
.rollOut{
	-webkit-animation-name: rollOut;
	        animation-name: rollOut;
}
@-webkit-keyframes zoomIn{
	from{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		        transform: scale3d(0.3, 0.3, 0.3);
	}
	50%{
		opacity: 1;
	}
}
@keyframes zoomIn{
	from{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		        transform: scale3d(0.3, 0.3, 0.3);
	}
	50%{
		opacity: 1;
	}
}
.zoomIn{
	-webkit-animation-name: zoomIn;
	        animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown{
	from{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	}
	60%{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
}
@keyframes zoomInDown{
	from{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	}
	60%{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
}
.zoomInDown{
	-webkit-animation-name: zoomInDown;
	        animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft{
	from{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	}
	60%{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	}
}
@keyframes zoomInLeft{
	from{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	}
	60%{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	}
}
.zoomInLeft{
	-webkit-animation-name: zoomInLeft;
	        animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight{
	from{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	}
	60%{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	}
}
@keyframes zoomInRight{
	from{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	}
	60%{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	}
}
.zoomInRight{
	-webkit-animation-name: zoomInRight;
	        animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp{
	from{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
	}
	60%{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
}
@keyframes zoomInUp{
	from{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
	}
	60%{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
}
.zoomInUp{
	-webkit-animation-name: zoomInUp;
	        animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut{
	from{
		opacity: 1;
	}
	50%{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		        transform: scale3d(0.3, 0.3, 0.3);
	}
	to{
		opacity: 0;
	}
}
@keyframes zoomOut{
	from{
		opacity: 1;
	}
	50%{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		        transform: scale3d(0.3, 0.3, 0.3);
	}
	to{
		opacity: 0;
	}
}
.zoomOut{
	-webkit-animation-name: zoomOut;
	        animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown{
	40%{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
	to{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		        transform-origin: center bottom;
	}
}
@keyframes zoomOutDown{
	40%{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
	to{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		        transform-origin: center bottom;
	}
}
.zoomOutDown{
	-webkit-animation-name: zoomOutDown;
	        animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft{
	40%{
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		        transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		        transform-origin: left center;
	}
}
@keyframes zoomOutLeft{
	40%{
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		        transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		        transform-origin: left center;
	}
}
.zoomOutLeft{
	-webkit-animation-name: zoomOutLeft;
	        animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight{
	40%{
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		        transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		        transform-origin: right center;
	}
}
@keyframes zoomOutRight{
	40%{
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to{
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		        transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		        transform-origin: right center;
	}
}
.zoomOutRight{
	-webkit-animation-name: zoomOutRight;
	        animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp{
	40%{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
	to{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		        transform-origin: center bottom;
	}
}
@keyframes zoomOutUp{
	40%{
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
	to{
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		        transform-origin: center bottom;
	}
}
.zoomOutUp{
	-webkit-animation-name: zoomOutUp;
	        animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown{
	from{
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInDown{
	from{
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
.slideInDown{
	-webkit-animation-name: slideInDown;
	        animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft{
	from{
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInLeft{
	from{
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
.slideInLeft{
	-webkit-animation-name: slideInLeft;
	        animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight{
	from{
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInRight{
	from{
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
.slideInRight{
	-webkit-animation-name: slideInRight;
	        animation-name: slideInRight;
}
@-webkit-keyframes slideInUp{
	from{
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInUp{
	from{
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
.slideInUp{
	-webkit-animation-name: slideInUp;
	        animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown{
	from{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to{
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
}
@keyframes slideOutDown{
	from{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to{
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
}
.slideOutDown{
	-webkit-animation-name: slideOutDown;
	        animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft{
	from{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to{
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
}
@keyframes slideOutLeft{
	from{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to{
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
}
.slideOutLeft{
	-webkit-animation-name: slideOutLeft;
	        animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight{
	from{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to{
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
}
@keyframes slideOutRight{
	from{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to{
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
}
.slideOutRight{
	-webkit-animation-name: slideOutRight;
	        animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp{
	from{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to{
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
}
@keyframes slideOutUp{
	from{
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to{
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
}
.slideOutUp{
	-webkit-animation-name: slideOutUp;
	        animation-name: slideOutUp;
}
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html{
	font-family: sans-serif;

	-webkit-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
}
body{
	margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary{
	display: block;
}
audio,
canvas,
progress,
video{
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]){
	display: none;
	height: 0;
}
[hidden],
template{
	display: none;
}
a{
	background-color: transparent;
}
a:active,
a:hover{
	outline: 0;
}
abbr[title]{
	border-bottom: 1px dotted;
}
b,
strong{
	font-weight: bold;
}
dfn{
	font-style: italic;
}
h1{
	font-size: 2em;
	margin: 0.67em 0;
}
mark{
	background: #ffff00;
	color: #000000;
}
small{
	font-size: 80%;
}
sub,
sup{
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup{
	top: -0.5em;
}
sub{
	bottom: -0.25em;
}
img{
	border: 0;
}
svg:not(:root){
	overflow: hidden;
}
figure{
	margin: 1em 40px;
}
hr{
	box-sizing: content-box;
	height: 0;
}
pre{
	overflow: auto;
}
code,
kbd,
pre,
samp{
	font-family: monospace, monospace;
	font-size: 1em;
}
button,
input,
optgroup,
select,
textarea{
	color: inherit;
	font: inherit;
	margin: 0;
}
button{
	overflow: visible;
}
button,
select{
	text-transform: none;
}
button,
html input[type='button'],
input[type='reset'],
input[type='submit']{
	cursor: pointer;

	-webkit-appearance: button;
}
button[disabled],
html input[disabled]{
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner{
	border: 0;
	padding: 0;
}
input{
	line-height: normal;
}
input[type='checkbox'],
input[type='radio']{
	box-sizing: border-box;
	padding: 0;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button{
	height: auto;
}
input[type='search']{
	box-sizing: content-box;

	-webkit-appearance: textfield;
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration{
	-webkit-appearance: none;
}
fieldset{
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend{
	border: 0;
	padding: 0;
}
textarea{
	overflow: auto;
}
optgroup{
	font-weight: bold;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th{
	padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print{
	*,
	*:before,
	*:after{
		background: transparent !important;
		box-shadow: none !important;
		color: #000000 !important;
		text-shadow: none !important;
	}
	a,
	a:visited{
		text-decoration: underline;
	}
	a[href]:after{
		content: ' (' attr(href) ')';
	}
	abbr[title]:after{
		content: ' (' attr(title) ')';
	}
	a[href^='#']:after,
	a[href^='javascript:']:after{
		content: '';
	}
	pre,
	blockquote{
		border: 1px solid #999999;

		page-break-inside: avoid;
	}
	thead{
		display: table-header-group;
	}
	tr,
	img{
		page-break-inside: avoid;
	}
	img{
		max-width: 100% !important;
	}
	p,
	h2,
	h3{
		orphans: 3;
		widows: 3;
	}
	h2,
	h3{
		page-break-after: avoid;
	}
	.navbar{
		display: none;
	}
	.btn > .caret,
	.dropup > .btn > .caret{
		border-top-color: #000000 !important;
	}
	.label{
		border: 1px solid #000000;
	}
	.table{
		border-collapse: collapse !important;
	}
	.table td,
	.table th{
		background-color: #ffffff !important;
	}
	.table-bordered th,
	.table-bordered td{
		border: 1px solid #dddddd !important;
	}
}

.glyphicon{
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	position: relative;
	top: 1px;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before{
	content: '\2a';
}
.glyphicon-plus:before{
	content: '\2b';
}
.glyphicon-euro:before,
.glyphicon-eur:before{
	content: '\20ac';
}
.glyphicon-minus:before{
	content: '\2212';
}
.glyphicon-cloud:before{
	content: '\2601';
}
.glyphicon-envelope:before{
	content: '\2709';
}
.glyphicon-pencil:before{
	content: '\270f';
}
.glyphicon-glass:before{
	content: '\e001';
}
.glyphicon-music:before{
	content: '\e002';
}
.glyphicon-search:before{
	content: '\e003';
}
.glyphicon-heart:before{
	content: '\e005';
}
.glyphicon-star:before{
	content: '\e006';
}
.glyphicon-star-empty:before{
	content: '\e007';
}
.glyphicon-user:before{
	content: '\e008';
}
.glyphicon-film:before{
	content: '\e009';
}
.glyphicon-th-large:before{
	content: '\e010';
}
.glyphicon-th:before{
	content: '\e011';
}
.glyphicon-th-list:before{
	content: '\e012';
}
.glyphicon-ok:before{
	content: '\e013';
}
.glyphicon-remove:before{
	content: '\e014';
}
.glyphicon-zoom-in:before{
	content: '\e015';
}
.glyphicon-zoom-out:before{
	content: '\e016';
}
.glyphicon-off:before{
	content: '\e017';
}
.glyphicon-signal:before{
	content: '\e018';
}
.glyphicon-cog:before{
	content: '\e019';
}
.glyphicon-trash:before{
	content: '\e020';
}
.glyphicon-home:before{
	content: '\e021';
}
.glyphicon-file:before{
	content: '\e022';
}
.glyphicon-time:before{
	content: '\e023';
}
.glyphicon-road:before{
	content: '\e024';
}
.glyphicon-download-alt:before{
	content: '\e025';
}
.glyphicon-download:before{
	content: '\e026';
}
.glyphicon-upload:before{
	content: '\e027';
}
.glyphicon-inbox:before{
	content: '\e028';
}
.glyphicon-play-circle:before{
	content: '\e029';
}
.glyphicon-repeat:before{
	content: '\e030';
}
.glyphicon-refresh:before{
	content: '\e031';
}
.glyphicon-list-alt:before{
	content: '\e032';
}
.glyphicon-lock:before{
	content: '\e033';
}
.glyphicon-flag:before{
	content: '\e034';
}
.glyphicon-headphones:before{
	content: '\e035';
}
.glyphicon-volume-off:before{
	content: '\e036';
}
.glyphicon-volume-down:before{
	content: '\e037';
}
.glyphicon-volume-up:before{
	content: '\e038';
}
.glyphicon-qrcode:before{
	content: '\e039';
}
.glyphicon-barcode:before{
	content: '\e040';
}
.glyphicon-tag:before{
	content: '\e041';
}
.glyphicon-tags:before{
	content: '\e042';
}
.glyphicon-book:before{
	content: '\e043';
}
.glyphicon-bookmark:before{
	content: '\e044';
}
.glyphicon-print:before{
	content: '\e045';
}
.glyphicon-camera:before{
	content: '\e046';
}
.glyphicon-font:before{
	content: '\e047';
}
.glyphicon-bold:before{
	content: '\e048';
}
.glyphicon-italic:before{
	content: '\e049';
}
.glyphicon-text-height:before{
	content: '\e050';
}
.glyphicon-text-width:before{
	content: '\e051';
}
.glyphicon-align-left:before{
	content: '\e052';
}
.glyphicon-align-center:before{
	content: '\e053';
}
.glyphicon-align-right:before{
	content: '\e054';
}
.glyphicon-align-justify:before{
	content: '\e055';
}
.glyphicon-list:before{
	content: '\e056';
}
.glyphicon-indent-left:before{
	content: '\e057';
}
.glyphicon-indent-right:before{
	content: '\e058';
}
.glyphicon-facetime-video:before{
	content: '\e059';
}
.glyphicon-picture:before{
	content: '\e060';
}
.glyphicon-map-marker:before{
	content: '\e062';
}
.glyphicon-adjust:before{
	content: '\e063';
}
.glyphicon-tint:before{
	content: '\e064';
}
.glyphicon-edit:before{
	content: '\e065';
}
.glyphicon-share:before{
	content: '\e066';
}
.glyphicon-check:before{
	content: '\e067';
}
.glyphicon-move:before{
	content: '\e068';
}
.glyphicon-step-backward:before{
	content: '\e069';
}
.glyphicon-fast-backward:before{
	content: '\e070';
}
.glyphicon-backward:before{
	content: '\e071';
}
.glyphicon-play:before{
	content: '\e072';
}
.glyphicon-pause:before{
	content: '\e073';
}
.glyphicon-stop:before{
	content: '\e074';
}
.glyphicon-forward:before{
	content: '\e075';
}
.glyphicon-fast-forward:before{
	content: '\e076';
}
.glyphicon-step-forward:before{
	content: '\e077';
}
.glyphicon-eject:before{
	content: '\e078';
}
.glyphicon-chevron-left:before{
	content: '\e079';
}
.glyphicon-chevron-right:before{
	content: '\e080';
}
.glyphicon-plus-sign:before{
	content: '\e081';
}
.glyphicon-minus-sign:before{
	content: '\e082';
}
.glyphicon-remove-sign:before{
	content: '\e083';
}
.glyphicon-ok-sign:before{
	content: '\e084';
}
.glyphicon-question-sign:before{
	content: '\e085';
}
.glyphicon-info-sign:before{
	content: '\e086';
}
.glyphicon-screenshot:before{
	content: '\e087';
}
.glyphicon-remove-circle:before{
	content: '\e088';
}
.glyphicon-ok-circle:before{
	content: '\e089';
}
.glyphicon-ban-circle:before{
	content: '\e090';
}
.glyphicon-arrow-left:before{
	content: '\e091';
}
.glyphicon-arrow-right:before{
	content: '\e092';
}
.glyphicon-arrow-up:before{
	content: '\e093';
}
.glyphicon-arrow-down:before{
	content: '\e094';
}
.glyphicon-share-alt:before{
	content: '\e095';
}
.glyphicon-resize-full:before{
	content: '\e096';
}
.glyphicon-resize-small:before{
	content: '\e097';
}
.glyphicon-exclamation-sign:before{
	content: '\e101';
}
.glyphicon-gift:before{
	content: '\e102';
}
.glyphicon-leaf:before{
	content: '\e103';
}
.glyphicon-fire:before{
	content: '\e104';
}
.glyphicon-eye-open:before{
	content: '\e105';
}
.glyphicon-eye-close:before{
	content: '\e106';
}
.glyphicon-warning-sign:before{
	content: '\e107';
}
.glyphicon-plane:before{
	content: '\e108';
}
.glyphicon-calendar:before{
	content: '\e109';
}
.glyphicon-random:before{
	content: '\e110';
}
.glyphicon-comment:before{
	content: '\e111';
}
.glyphicon-magnet:before{
	content: '\e112';
}
.glyphicon-chevron-up:before{
	content: '\e113';
}
.glyphicon-chevron-down:before{
	content: '\e114';
}
.glyphicon-retweet:before{
	content: '\e115';
}
.glyphicon-shopping-cart:before{
	content: '\e116';
}
.glyphicon-folder-close:before{
	content: '\e117';
}
.glyphicon-folder-open:before{
	content: '\e118';
}
.glyphicon-resize-vertical:before{
	content: '\e119';
}
.glyphicon-resize-horizontal:before{
	content: '\e120';
}
.glyphicon-hdd:before{
	content: '\e121';
}
.glyphicon-bullhorn:before{
	content: '\e122';
}
.glyphicon-bell:before{
	content: '\e123';
}
.glyphicon-certificate:before{
	content: '\e124';
}
.glyphicon-thumbs-up:before{
	content: '\e125';
}
.glyphicon-thumbs-down:before{
	content: '\e126';
}
.glyphicon-hand-right:before{
	content: '\e127';
}
.glyphicon-hand-left:before{
	content: '\e128';
}
.glyphicon-hand-up:before{
	content: '\e129';
}
.glyphicon-hand-down:before{
	content: '\e130';
}
.glyphicon-circle-arrow-right:before{
	content: '\e131';
}
.glyphicon-circle-arrow-left:before{
	content: '\e132';
}
.glyphicon-circle-arrow-up:before{
	content: '\e133';
}
.glyphicon-circle-arrow-down:before{
	content: '\e134';
}
.glyphicon-globe:before{
	content: '\e135';
}
.glyphicon-wrench:before{
	content: '\e136';
}
.glyphicon-tasks:before{
	content: '\e137';
}
.glyphicon-filter:before{
	content: '\e138';
}
.glyphicon-briefcase:before{
	content: '\e139';
}
.glyphicon-fullscreen:before{
	content: '\e140';
}
.glyphicon-dashboard:before{
	content: '\e141';
}
.glyphicon-paperclip:before{
	content: '\e142';
}
.glyphicon-heart-empty:before{
	content: '\e143';
}
.glyphicon-link:before{
	content: '\e144';
}
.glyphicon-phone:before{
	content: '\e145';
}
.glyphicon-pushpin:before{
	content: '\e146';
}
.glyphicon-usd:before{
	content: '\e148';
}
.glyphicon-gbp:before{
	content: '\e149';
}
.glyphicon-sort:before{
	content: '\e150';
}
.glyphicon-sort-by-alphabet:before{
	content: '\e151';
}
.glyphicon-sort-by-alphabet-alt:before{
	content: '\e152';
}
.glyphicon-sort-by-order:before{
	content: '\e153';
}
.glyphicon-sort-by-order-alt:before{
	content: '\e154';
}
.glyphicon-sort-by-attributes:before{
	content: '\e155';
}
.glyphicon-sort-by-attributes-alt:before{
	content: '\e156';
}
.glyphicon-unchecked:before{
	content: '\e157';
}
.glyphicon-expand:before{
	content: '\e158';
}
.glyphicon-collapse-down:before{
	content: '\e159';
}
.glyphicon-collapse-up:before{
	content: '\e160';
}
.glyphicon-log-in:before{
	content: '\e161';
}
.glyphicon-flash:before{
	content: '\e162';
}
.glyphicon-log-out:before{
	content: '\e163';
}
.glyphicon-new-window:before{
	content: '\e164';
}
.glyphicon-record:before{
	content: '\e165';
}
.glyphicon-save:before{
	content: '\e166';
}
.glyphicon-open:before{
	content: '\e167';
}
.glyphicon-saved:before{
	content: '\e168';
}
.glyphicon-import:before{
	content: '\e169';
}
.glyphicon-export:before{
	content: '\e170';
}
.glyphicon-send:before{
	content: '\e171';
}
.glyphicon-floppy-disk:before{
	content: '\e172';
}
.glyphicon-floppy-saved:before{
	content: '\e173';
}
.glyphicon-floppy-remove:before{
	content: '\e174';
}
.glyphicon-floppy-save:before{
	content: '\e175';
}
.glyphicon-floppy-open:before{
	content: '\e176';
}
.glyphicon-credit-card:before{
	content: '\e177';
}
.glyphicon-transfer:before{
	content: '\e178';
}
.glyphicon-cutlery:before{
	content: '\e179';
}
.glyphicon-header:before{
	content: '\e180';
}
.glyphicon-compressed:before{
	content: '\e181';
}
.glyphicon-earphone:before{
	content: '\e182';
}
.glyphicon-phone-alt:before{
	content: '\e183';
}
.glyphicon-tower:before{
	content: '\e184';
}
.glyphicon-stats:before{
	content: '\e185';
}
.glyphicon-sd-video:before{
	content: '\e186';
}
.glyphicon-hd-video:before{
	content: '\e187';
}
.glyphicon-subtitles:before{
	content: '\e188';
}
.glyphicon-sound-stereo:before{
	content: '\e189';
}
.glyphicon-sound-dolby:before{
	content: '\e190';
}
.glyphicon-sound-5-1:before{
	content: '\e191';
}
.glyphicon-sound-6-1:before{
	content: '\e192';
}
.glyphicon-sound-7-1:before{
	content: '\e193';
}
.glyphicon-copyright-mark:before{
	content: '\e194';
}
.glyphicon-registration-mark:before{
	content: '\e195';
}
.glyphicon-cloud-download:before{
	content: '\e197';
}
.glyphicon-cloud-upload:before{
	content: '\e198';
}
.glyphicon-tree-conifer:before{
	content: '\e199';
}
.glyphicon-tree-deciduous:before{
	content: '\e200';
}
.glyphicon-cd:before{
	content: '\e201';
}
.glyphicon-save-file:before{
	content: '\e202';
}
.glyphicon-open-file:before{
	content: '\e203';
}
.glyphicon-level-up:before{
	content: '\e204';
}
.glyphicon-copy:before{
	content: '\e205';
}
.glyphicon-paste:before{
	content: '\e206';
}
.glyphicon-alert:before{
	content: '\e209';
}
.glyphicon-equalizer:before{
	content: '\e210';
}
.glyphicon-king:before{
	content: '\e211';
}
.glyphicon-queen:before{
	content: '\e212';
}
.glyphicon-pawn:before{
	content: '\e213';
}
.glyphicon-bishop:before{
	content: '\e214';
}
.glyphicon-knight:before{
	content: '\e215';
}
.glyphicon-baby-formula:before{
	content: '\e216';
}
.glyphicon-tent:before{
	content: '\26fa';
}
.glyphicon-blackboard:before{
	content: '\e218';
}
.glyphicon-bed:before{
	content: '\e219';
}
.glyphicon-apple:before{
	content: '\f8ff';
}
.glyphicon-erase:before{
	content: '\e221';
}
.glyphicon-hourglass:before{
	content: '\231b';
}
.glyphicon-lamp:before{
	content: '\e223';
}
.glyphicon-duplicate:before{
	content: '\e224';
}
.glyphicon-piggy-bank:before{
	content: '\e225';
}
.glyphicon-scissors:before{
	content: '\e226';
}
.glyphicon-bitcoin:before{
	content: '\e227';
}
.glyphicon-btc:before{
	content: '\e227';
}
.glyphicon-xbt:before{
	content: '\e227';
}
.glyphicon-yen:before{
	content: '\00a5';
}
.glyphicon-jpy:before{
	content: '\00a5';
}
.glyphicon-ruble:before{
	content: '\20bd';
}
.glyphicon-rub:before{
	content: '\20bd';
}
.glyphicon-scale:before{
	content: '\e230';
}
.glyphicon-ice-lolly:before{
	content: '\e231';
}
.glyphicon-ice-lolly-tasted:before{
	content: '\e232';
}
.glyphicon-education:before{
	content: '\e233';
}
.glyphicon-option-horizontal:before{
	content: '\e234';
}
.glyphicon-option-vertical:before{
	content: '\e235';
}
.glyphicon-menu-hamburger:before{
	content: '\e236';
}
.glyphicon-modal-window:before{
	content: '\e237';
}
.glyphicon-oil:before{
	content: '\e238';
}
.glyphicon-grain:before{
	content: '\e239';
}
.glyphicon-sunglasses:before{
	content: '\e240';
}
.glyphicon-text-size:before{
	content: '\e241';
}
.glyphicon-text-color:before{
	content: '\e242';
}
.glyphicon-text-background:before{
	content: '\e243';
}
.glyphicon-object-align-top:before{
	content: '\e244';
}
.glyphicon-object-align-bottom:before{
	content: '\e245';
}
.glyphicon-object-align-horizontal:before{
	content: '\e246';
}
.glyphicon-object-align-left:before{
	content: '\e247';
}
.glyphicon-object-align-vertical:before{
	content: '\e248';
}
.glyphicon-object-align-right:before{
	content: '\e249';
}
.glyphicon-triangle-right:before{
	content: '\e250';
}
.glyphicon-triangle-left:before{
	content: '\e251';
}
.glyphicon-triangle-bottom:before{
	content: '\e252';
}
.glyphicon-triangle-top:before{
	content: '\e253';
}
.glyphicon-console:before{
	content: '\e254';
}
.glyphicon-superscript:before{
	content: '\e255';
}
.glyphicon-subscript:before{
	content: '\e256';
}
.glyphicon-menu-left:before{
	content: '\e257';
}
.glyphicon-menu-right:before{
	content: '\e258';
}
.glyphicon-menu-down:before{
	content: '\e259';
}
.glyphicon-menu-up:before{
	content: '\e260';
}
*{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
*:before,
*:after{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
html{
	font-size: 10px;

	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body{
	background-color: #ffffff;
	color: #333333;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
}
input,
button,
select,
textarea{
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
a.custom.module-alert {
color: #fde500;
    text-decoration: underline;
}
a{
	color: #693390;
	text-decoration: none;
}
a:hover,
a:focus{
	color: #3f1d58;
	text-decoration: underline;
}
a:focus{
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
figure{
	margin: 0;
}
img{
	vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img{
	display: block;
	height: auto;
	max-width: 100%;
}
.img-rounded{
	border-radius: 6px;
}
.img-thumbnail{
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
	display: inline-block;
	height: auto;
	line-height: 1.42857143;
	max-width: 100%;
	padding: 4px;
	-webkit-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}
.img-circle{
	border-radius: 50%;
}
hr{
	border: 0;
	border-top: 1px solid #eeeeee;
	margin-bottom: 10px;
	margin-top: 10px;
}
.sr-only{
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus{
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
[role='button']{
	cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6{
	color: inherit;
	font-family: inherit;
	font-weight: 500;
	line-height: 1.1;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small{
	color: #777777;
	font-weight: normal;
	line-height: 1;
}
h1,
.h1,
h2,
.h2,
h3,
.h3{
	margin-bottom: 10px;
	margin-top: 20px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small{
	font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6{
	margin-bottom: 10px;
	margin-top: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small{
	font-size: 75%;
}
h1,
.h1{
	font-family: montserrat;
	font-size: 33px;
}
h2,
.h2{
	color: #693390;
	font-family: montserrat;
	font-size: 28px;
}
h3,
.h3{
	font-size: 24px;
	line-height: 27px;
}
h4,
.h4{
	font-size: 18px;
}
h5,
.h5{
	font-size: 14px;
}
h6,
.h6{
	font-size: 12px;
}
p{
	color: #333333;
	font-family: 'Lato';
	font-size: 15px;
	line-height: 25px;
	margin: 0 0 10px;
}
.lead{
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
	margin-bottom: 20px;
}
@media (min-width: 768px){
	.lead{
		font-size: 21px;
	}
	.martop15{
		margin-top: 15px;
	}
}
small,
.small{
	font-size: 85%;
}
mark,
.mark{
	background-color: #fcf8e3;
	padding: 0.2em;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}
.text-center{
	text-align: center;
}
.text-justify{
	text-align: justify;
}
.text-nowrap{
	white-space: nowrap;
}
.text-lowercase{
	text-transform: lowercase;
}
.text-uppercase{
	text-transform: uppercase;
}
.text-capitalize{
	text-transform: capitalize;
}
.text-muted{
	color: #777777;
}
.text-primary{
	color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus{
	color: #286090;
}
.text-success{
	color: #3c763d;
}
a.text-success:hover,
a.text-success:focus{
	color: #2b542c;
}
.text-info{
	color: #31708f;
}
a.text-info:hover,
a.text-info:focus{
	color: #245269;
}
.text-warning{
	color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus{
	color: #66512c;
}
.text-danger{
	color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus{
	color: #843534;
}
.bg-primary{
	background-color: #337ab7;
	color: #ffffff;
}
a.bg-primary:hover,
a.bg-primary:focus{
	background-color: #286090;
}
.bg-success{
	background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus{
	background-color: #c1e2b3;
}
.bg-info{
	background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus{
	background-color: #afd9ee;
}
.bg-warning{
	background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus{
	background-color: #f7ecb5;
}
.bg-danger{
	background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus{
	background-color: #e4b9b9;
}
.page-header{
	border-bottom: 1px solid #eeeeee;
	margin: 40px 0 20px;
	padding-bottom: 9px;
}
ul,
ol{
	margin-bottom: 10px;
	margin-top: 0;
}
ul ul,
ol ul,
ul ol,
ol ol{
	margin-bottom: 0;
}
.list-unstyled{
	list-style: none;
	padding-left: 0;
}
.list-inline{
	list-style: decimal;
	margin-left: -5px;
	padding-left: 0;
}
.list-inline > li{
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}
dl{
	margin-bottom: 20px;
	margin-top: 0;
}
dt,
dd{
	line-height: 1.42857143;
}
dt{
	font-weight: bold;
}
dd{
	margin-left: 0;
}
@media (min-width: 768px){
	.dl-horizontal dt{
		clear: left;
		float: left;
		overflow: hidden;
		text-align: right;
		text-overflow: ellipsis;
		white-space: nowrap;
		width: 160px;
	}
	.dl-horizontal dd{
		margin-left: 180px;
	}
}
abbr[title],
abbr[data-original-title]{
	border-bottom: 1px dotted #777777;
	cursor: help;
}
.initialism{
	font-size: 90%;
	text-transform: uppercase;
}
blockquote{
	border-left: 5px solid #eeeeee;
	font-size: 17.5px;
	margin: 0 0 20px;
	padding: 10px 20px;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child{
	margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small{
	color: #777777;
	display: block;
	font-size: 80%;
	line-height: 1.42857143;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before{
	content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right{
	border-left: 0;
	border-right: 5px solid #eeeeee;
	padding-left: 0;
	padding-right: 15px;
	text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before{
	content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after{
	content: '\00A0 \2014';
}
address{
	font-style: normal;
	line-height: 1.42857143;
	margin-bottom: 20px;
}
code,
kbd,
pre,
samp{
	font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}
code{
	background-color: #f9f2f4;
	border-radius: 4px;
	color: #c7254e;
	font-size: 90%;
	padding: 2px 4px;
}
kbd{
	background-color: #333333;
	border-radius: 3px;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
	color: #ffffff;
	font-size: 90%;
	padding: 2px 4px;
}
kbd kbd{
	box-shadow: none;
	font-size: 100%;
	font-weight: bold;
	padding: 0;
}
pre{
	background-color: #f5f5f5;
	border: 1px solid #cccccc;
	border-radius: 4px;
	color: #333333;
	display: block;
	font-size: 13px;
	line-height: 1.42857143;
	margin: 0 0 10px;
	padding: 9.5px;
	word-break: break-all;
	word-wrap: break-word;
}
pre code{
	background-color: transparent;
	border-radius: 0;
	color: inherit;
	font-size: inherit;
	padding: 0;
	white-space: pre-wrap;
}
.pre-scrollable{
	max-height: 340px;
	overflow-y: scroll;
}
.container{
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (min-width: 768px){
	.container{
		width: 750px;
	}
}
@media (min-width: 992px){
	.container{
		width: 970px;
	}
}
@media (min-width: 1200px){
	.container{
		width: 1170px;
	}
}
.container-fluid{
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.row{
	margin-left: -15px;
	margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12{
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12{
	float: left;
}
.col-xs-12{
	width: 100%;
}
.col-xs-11{
	width: 91.66666667%;
}
.col-xs-10{
	width: 83.33333333%;
}
.col-xs-9{
	width: 75%;
}
.col-xs-8{
	width: 66.66666667%;
}
.col-xs-7{
	width: 58.33333333%;
}
.col-xs-6{
	width: 50%;
}
.col-xs-5{
	width: 41.66666667%;
}
.col-xs-4{
	width: 33.33333333%;
}
.col-xs-3{
	width: 25%;
}
.col-xs-2{
	width: 16.66666667%;
}
.col-xs-1{
	width: 8.33333333%;
}
.col-xs-pull-12{
	right: 100%;
}
.col-xs-pull-11{
	right: 91.66666667%;
}
.col-xs-pull-10{
	right: 83.33333333%;
}
.col-xs-pull-9{
	right: 75%;
}
.col-xs-pull-8{
	right: 66.66666667%;
}
.col-xs-pull-7{
	right: 58.33333333%;
}
.col-xs-pull-6{
	right: 50%;
}
.col-xs-pull-5{
	right: 41.66666667%;
}
.col-xs-pull-4{
	right: 33.33333333%;
}
.col-xs-pull-3{
	right: 25%;
}
.col-xs-pull-2{
	right: 16.66666667%;
}
.col-xs-pull-1{
	right: 8.33333333%;
}
.col-xs-pull-0{
	right: auto;
}
.col-xs-push-12{
	left: 100%;
}
.col-xs-push-11{
	left: 91.66666667%;
}
.col-xs-push-10{
	left: 83.33333333%;
}
.col-xs-push-9{
	left: 75%;
}
.col-xs-push-8{
	left: 66.66666667%;
}
.col-xs-push-7{
	left: 58.33333333%;
}
.col-xs-push-6{
	left: 50%;
}
.col-xs-push-5{
	left: 41.66666667%;
}
.col-xs-push-4{
	left: 33.33333333%;
}
.col-xs-push-3{
	left: 25%;
}
.col-xs-push-2{
	left: 16.66666667%;
}
.col-xs-push-1{
	left: 8.33333333%;
}
.col-xs-push-0{
	left: auto;
}
.col-xs-offset-12{
	margin-left: 100%;
}
.col-xs-offset-11{
	margin-left: 91.66666667%;
}
.col-xs-offset-10{
	margin-left: 83.33333333%;
}
.col-xs-offset-9{
	margin-left: 75%;
}
.col-xs-offset-8{
	margin-left: 66.66666667%;
}
.col-xs-offset-7{
	margin-left: 58.33333333%;
}
.col-xs-offset-6{
	margin-left: 50%;
}
.col-xs-offset-5{
	margin-left: 41.66666667%;
}
.col-xs-offset-4{
	margin-left: 33.33333333%;
}
.col-xs-offset-3{
	margin-left: 25%;
}
.col-xs-offset-2{
	margin-left: 16.66666667%;
}
.col-xs-offset-1{
	margin-left: 8.33333333%;
}
.col-xs-offset-0{
	margin-left: 0;
}
@media (min-width: 768px){
	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12{
		float: left;
	}
	.col-sm-12{
		width: 100%;
	}
	.col-sm-11{
		width: 91.66666667%;
	}
	.col-sm-10{
		width: 83.33333333%;
	}
	.col-sm-9{
		width: 75%;
	}
	.col-sm-8{
		width: 66.66666667%;
	}
	.col-sm-7{
		width: 58.33333333%;
	}
	.col-sm-6{
		width: 50%;
	}
	.col-sm-5{
		width: 41.66666667%;
	}
	.col-sm-4{
		width: 33.33333333%;
	}
	.col-sm-3{
		width: 25%;
	}
	.col-sm-2{
		width: 16.66666667%;
	}
	.col-sm-1{
		width: 8.33333333%;
	}
	.col-sm-pull-12{
		right: 100%;
	}
	.col-sm-pull-11{
		right: 91.66666667%;
	}
	.col-sm-pull-10{
		right: 83.33333333%;
	}
	.col-sm-pull-9{
		right: 75%;
	}
	.col-sm-pull-8{
		right: 66.66666667%;
	}
	.col-sm-pull-7{
		right: 58.33333333%;
	}
	.col-sm-pull-6{
		right: 50%;
	}
	.col-sm-pull-5{
		right: 41.66666667%;
	}
	.col-sm-pull-4{
		right: 33.33333333%;
	}
	.col-sm-pull-3{
		right: 25%;
	}
	.col-sm-pull-2{
		right: 16.66666667%;
	}
	.col-sm-pull-1{
		right: 8.33333333%;
	}
	.col-sm-pull-0{
		right: auto;
	}
	.col-sm-push-12{
		left: 100%;
	}
	.col-sm-push-11{
		left: 91.66666667%;
	}
	.col-sm-push-10{
		left: 83.33333333%;
	}
	.col-sm-push-9{
		left: 75%;
	}
	.col-sm-push-8{
		left: 66.66666667%;
	}
	.col-sm-push-7{
		left: 58.33333333%;
	}
	.col-sm-push-6{
		left: 50%;
	}
	.col-sm-push-5{
		left: 41.66666667%;
	}
	.col-sm-push-4{
		left: 33.33333333%;
	}
	.col-sm-push-3{
		left: 25%;
	}
	.col-sm-push-2{
		left: 16.66666667%;
	}
	.col-sm-push-1{
		left: 8.33333333%;
	}
	.col-sm-push-0{
		left: auto;
	}
	.col-sm-offset-12{
		margin-left: 100%;
	}
	.col-sm-offset-11{
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10{
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9{
		margin-left: 75%;
	}
	.col-sm-offset-8{
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7{
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6{
		margin-left: 50%;
	}
	.col-sm-offset-5{
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4{
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3{
		margin-left: 25%;
	}
	.col-sm-offset-2{
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1{
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0{
		margin-left: 0;
	}
}
@media (min-width: 992px){
	.col-md-1,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-md-10,
	.col-md-11,
	.col-md-12{
		float: left;
	}
	.col-md-12{
		width: 100%;
	}
	.col-md-11{
		width: 91.66666667%;
	}
	.col-md-10{
		width: 83.33333333%;
	}
	.col-md-9{
		width: 75%;
	}
	.col-md-8{
		width: 66.66666667%;
	}
	.col-md-7{
		width: 58.33333333%;
	}
	.col-md-6{
		width: 50%;
	}
	.col-md-5{
		width: 41.66666667%;
	}
	.col-md-4{
		width: 33.33333333%;
	}
	.col-md-3{
		width: 25%;
	}
	.col-md-2{
		width: 16.66666667%;
	}
	.col-md-1{
		width: 8.33333333%;
	}
	.col-md-pull-12{
		right: 100%;
	}
	.col-md-pull-11{
		right: 91.66666667%;
	}
	.col-md-pull-10{
		right: 83.33333333%;
	}
	.col-md-pull-9{
		right: 75%;
	}
	.col-md-pull-8{
		right: 66.66666667%;
	}
	.col-md-pull-7{
		right: 58.33333333%;
	}
	.col-md-pull-6{
		right: 50%;
	}
	.col-md-pull-5{
		right: 41.66666667%;
	}
	.col-md-pull-4{
		right: 33.33333333%;
	}
	.col-md-pull-3{
		right: 25%;
	}
	.col-md-pull-2{
		right: 16.66666667%;
	}
	.col-md-pull-1{
		right: 8.33333333%;
	}
	.col-md-pull-0{
		right: auto;
	}
	.col-md-push-12{
		left: 100%;
	}
	.col-md-push-11{
		left: 91.66666667%;
	}
	.col-md-push-10{
		left: 83.33333333%;
	}
	.col-md-push-9{
		left: 75%;
	}
	.col-md-push-8{
		left: 66.66666667%;
	}
	.col-md-push-7{
		left: 58.33333333%;
	}
	.col-md-push-6{
		left: 50%;
	}
	.col-md-push-5{
		left: 41.66666667%;
	}
	.col-md-push-4{
		left: 33.33333333%;
	}
	.col-md-push-3{
		left: 25%;
	}
	.col-md-push-2{
		left: 16.66666667%;
	}
	.col-md-push-1{
		left: 8.33333333%;
	}
	.col-md-push-0{
		left: auto;
	}
	.col-md-offset-12{
		margin-left: 100%;
	}
	.col-md-offset-11{
		margin-left: 91.66666667%;
	}
	.col-md-offset-10{
		margin-left: 83.33333333%;
	}
	.col-md-offset-9{
		margin-left: 75%;
	}
	.col-md-offset-8{
		margin-left: 66.66666667%;
	}
	.col-md-offset-7{
		margin-left: 58.33333333%;
	}
	.col-md-offset-6{
		margin-left: 50%;
	}
	.col-md-offset-5{
		margin-left: 41.66666667%;
	}
	.col-md-offset-4{
		margin-left: 33.33333333%;
	}
	.col-md-offset-3{
		margin-left: 25%;
	}
	.col-md-offset-2{
		margin-left: 16.66666667%;
	}
	.col-md-offset-1{
		margin-left: 8.33333333%;
	}
	.col-md-offset-0{
		margin-left: 0;
	}
}
@media (min-width: 1200px){
	.col-lg-1,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12{
		float: left;
	}
	.col-lg-12{
		width: 100%;
	}
	.col-lg-11{
		width: 91.66666667%;
	}
	.col-lg-10{
		width: 83.33333333%;
	}
	.col-lg-9{
		width: 75%;
	}
	.col-lg-8{
		width: 66.66666667%;
	}
	.col-lg-7{
		width: 58.33333333%;
	}
	.col-lg-6{
		width: 50%;
	}
	.col-lg-5{
		width: 41.66666667%;
	}
	.col-lg-4{
		width: 33.33333333%;
	}
	.col-lg-3{
		width: 25%;
	}
	.col-lg-2{
		width: 16.66666667%;
	}
	.col-lg-1{
		width: 8.33333333%;
	}
	.col-lg-pull-12{
		right: 100%;
	}
	.col-lg-pull-11{
		right: 91.66666667%;
	}
	.col-lg-pull-10{
		right: 83.33333333%;
	}
	.col-lg-pull-9{
		right: 75%;
	}
	.col-lg-pull-8{
		right: 66.66666667%;
	}
	.col-lg-pull-7{
		right: 58.33333333%;
	}
	.col-lg-pull-6{
		right: 50%;
	}
	.col-lg-pull-5{
		right: 41.66666667%;
	}
	.col-lg-pull-4{
		right: 33.33333333%;
	}
	.col-lg-pull-3{
		right: 25%;
	}
	.col-lg-pull-2{
		right: 16.66666667%;
	}
	.col-lg-pull-1{
		right: 8.33333333%;
	}
	.col-lg-pull-0{
		right: auto;
	}
	.col-lg-push-12{
		left: 100%;
	}
	.col-lg-push-11{
		left: 91.66666667%;
	}
	.col-lg-push-10{
		left: 83.33333333%;
	}
	.col-lg-push-9{
		left: 75%;
	}
	.col-lg-push-8{
		left: 66.66666667%;
	}
	.col-lg-push-7{
		left: 58.33333333%;
	}
	.col-lg-push-6{
		left: 50%;
	}
	.col-lg-push-5{
		left: 41.66666667%;
	}
	.col-lg-push-4{
		left: 33.33333333%;
	}
	.col-lg-push-3{
		left: 25%;
	}
	.col-lg-push-2{
		left: 16.66666667%;
	}
	.col-lg-push-1{
		left: 8.33333333%;
	}
	.col-lg-push-0{
		left: auto;
	}
	.col-lg-offset-12{
		margin-left: 100%;
	}
	.col-lg-offset-11{
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10{
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9{
		margin-left: 75%;
	}
	.col-lg-offset-8{
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7{
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6{
		margin-left: 50%;
	}
	.col-lg-offset-5{
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4{
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3{
		margin-left: 25%;
	}
	.col-lg-offset-2{
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1{
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0{
		margin-left: 0;
	}
}
table{
	background-color: transparent;
}
caption{
	color: #777777;
	padding-bottom: 8px;
	padding-top: 8px;
	text-align: left;
}
th{
	text-align: left;
}
.table{
	margin-bottom: 20px;
	max-width: 100%;
	width: 100%;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td{
	border-top: 1px solid #dddddd;
	line-height: 1.42857143;
	padding: 8px;
	vertical-align: top;
}
.table > thead > tr > th{
	border-bottom: 2px solid #dddddd;
	vertical-align: bottom;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td{
	border-top: 0;
}
.table > tbody + tbody{
	border-top: 2px solid #dddddd;
}
.table .table{
	background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td{
	padding: 5px;
}
.table-bordered{
	border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td{
	border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td{
	border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd){
	background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover{
	background-color: #f5f5f5;
}
table col[class*='col-']{
	display: table-column;
	float: none;
	position: static;
}
table td[class*='col-'],
table th[class*='col-']{
	display: table-cell;
	float: none;
	position: static;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th{
	background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th{
	background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th{
	background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th{
	background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th{
	background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th{
	background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th{
	background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th{
	background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th{
	background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th{
	background-color: #ebcccc;
}
.table-responsive{
	min-height: 0.01%;
	overflow-x: auto;
}
@media screen and (max-width: 767px){
	.table-responsive{
		border: 1px solid #dddddd;
		margin-bottom: 15px;
		overflow-y: hidden;
		width: 100%;

		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.table-responsive > .table{
		margin-bottom: 0;
	}
	.table-responsive > .table > thead > tr > th,
	.table-responsive > .table > tbody > tr > th,
	.table-responsive > .table > tfoot > tr > th,
	.table-responsive > .table > thead > tr > td,
	.table-responsive > .table > tbody > tr > td,
	.table-responsive > .table > tfoot > tr > td{
		white-space: nowrap;
	}
	.table-responsive > .table-bordered{
		border: 0;
	}
	.table-responsive > .table-bordered > thead > tr > th:first-child,
	.table-responsive > .table-bordered > tbody > tr > th:first-child,
	.table-responsive > .table-bordered > tfoot > tr > th:first-child,
	.table-responsive > .table-bordered > thead > tr > td:first-child,
	.table-responsive > .table-bordered > tbody > tr > td:first-child,
	.table-responsive > .table-bordered > tfoot > tr > td:first-child{
		border-left: 0;
	}
	.table-responsive > .table-bordered > thead > tr > th:last-child,
	.table-responsive > .table-bordered > tbody > tr > th:last-child,
	.table-responsive > .table-bordered > tfoot > tr > th:last-child,
	.table-responsive > .table-bordered > thead > tr > td:last-child,
	.table-responsive > .table-bordered > tbody > tr > td:last-child,
	.table-responsive > .table-bordered > tfoot > tr > td:last-child{
		border-right: 0;
	}
	.table-responsive > .table-bordered > tbody > tr:last-child > th,
	.table-responsive > .table-bordered > tfoot > tr:last-child > th,
	.table-responsive > .table-bordered > tbody > tr:last-child > td,
	.table-responsive > .table-bordered > tfoot > tr:last-child > td{
		border-bottom: 0;
	}
}
fieldset{
	border: 0;
	margin: 0;
	min-width: 0;
	padding: 0;
}
legend{
	border: 0;
	border-bottom: 1px solid #e5e5e5;
	color: #333333;
	display: block;
	font-size: 21px;
	line-height: inherit;
	margin-bottom: 20px;
	padding: 0;
	width: 100%;
}
label{
	display: inline-block;
	font-weight: bold;
	margin-bottom: 5px;
	max-width: 100%;
}
input[type='search']{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
input[type='radio'],
input[type='checkbox']{
	line-height: normal;
	margin: 4px 0 0;
	margin-top: 1px \9;
}
input[type='file']{
	display: block;
}
input[type='range']{
	display: block;
	width: 100%;
}
select[multiple],
select[size]{
	height: auto;
}
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus{
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
output{
	color: #555555;
	display: block;
	font-size: 14px;
	line-height: 1.42857143;
	padding-top: 7px;
}
.form-control{
	background-color: #ffffff;
	background-image: none;
	border: 1px solid #cccccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	color: #555555;
	display: block;
	font-size: 14px;
	height: 34px;
	line-height: 1.42857143;
	padding: 6px 12px;
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	     -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	        transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	width: 100%;
}
.form-control:focus{
	border-color: #66afe9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102, 175, 233, 0.6);
	        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102, 175, 233, 0.6);
	outline: 0;
}
.form-control::-moz-placeholder{
	color: #999999;
	opacity: 1;
}
.form-control:-ms-input-placeholder{
	color: #999999;
}
.form-control::-webkit-input-placeholder{
	color: #999999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control{
	background-color: #eeeeee;
	opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control{
	cursor: not-allowed;
}
textarea.form-control{
	height: auto;
}
input[type='search']{
	-webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0){
	input[type='date'].form-control,
	input[type='time'].form-control,
	input[type='datetime-local'].form-control,
	input[type='month'].form-control{
		line-height: 34px;
	}
	input[type='date'].input-sm,
	input[type='time'].input-sm,
	input[type='datetime-local'].input-sm,
	input[type='month'].input-sm,
	.input-group-sm input[type='date'],
	.input-group-sm input[type='time'],
	.input-group-sm input[type='datetime-local'],
	.input-group-sm input[type='month']{
		line-height: 30px;
	}
	input[type='date'].input-lg,
	input[type='time'].input-lg,
	input[type='datetime-local'].input-lg,
	input[type='month'].input-lg,
	.input-group-lg input[type='date'],
	.input-group-lg input[type='time'],
	.input-group-lg input[type='datetime-local'],
	.input-group-lg input[type='month']{
		line-height: 46px;
	}
}
.form-group{
	margin-bottom: 15px;
}
.radio,
.checkbox{
	display: block;
	margin-bottom: 10px;
	margin-top: 10px;
	position: relative;
}
.radio label,
.checkbox label{
	cursor: pointer;
	font-weight: normal;
	margin-bottom: 0;
	min-height: 20px;
	padding-left: 20px;
}
.radio input[type='radio'],
.radio-inline input[type='radio'],
.checkbox input[type='checkbox'],
.checkbox-inline input[type='checkbox']{
	margin-left: -20px;
	margin-top: 4px \9;
	position: absolute;
}
.radio + .radio,
.checkbox + .checkbox{
	margin-top: -5px;
}
.radio-inline,
.checkbox-inline{
	cursor: pointer;
	display: inline-block;
	font-weight: normal;
	margin-bottom: 0;
	padding-left: 20px;
	position: relative;
	vertical-align: middle;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline{
	margin-left: 10px;
	margin-top: 0;
}
input[type='radio'][disabled],
input[type='checkbox'][disabled],
input[type='radio'].disabled,
input[type='checkbox'].disabled,
fieldset[disabled] input[type='radio'],
fieldset[disabled] input[type='checkbox']{
	cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline{
	cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label{
	cursor: not-allowed;
}
.form-control-static{
	margin-bottom: 0;
	min-height: 34px;
	padding-bottom: 7px;
	padding-top: 7px;
}
.form-control-static.input-lg,
.form-control-static.input-sm{
	padding-left: 0;
	padding-right: 0;
}
.input-sm{
	border-radius: 3px;
	font-size: 12px;
	height: 30px;
	line-height: 1.5;
	padding: 5px 10px;
}
select.input-sm{
	height: 30px;
	line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm{
	height: auto;
}
.form-group-sm .form-control{
	border-radius: 3px;
	font-size: 12px;
	height: 30px;
	line-height: 1.5;
	padding: 5px 10px;
}
.form-group-sm select.form-control{
	height: 30px;
	line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control{
	height: auto;
}
.form-group-sm .form-control-static{
	font-size: 12px;
	height: 30px;
	line-height: 1.5;
	min-height: 32px;
	padding: 6px 10px;
}
.input-lg{
	border-radius: 6px;
	font-size: 18px;
	height: 46px;
	line-height: 1.3333333;
	padding: 10px 16px;
}
select.input-lg{
	height: 46px;
	line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg{
	height: auto;
}
.form-group-lg .form-control{
	border-radius: 6px;
	font-size: 18px;
	height: 46px;
	line-height: 1.3333333;
	padding: 10px 16px;
}
.form-group-lg select.form-control{
	height: 46px;
	line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control{
	height: auto;
}
.form-group-lg .form-control-static{
	font-size: 18px;
	height: 46px;
	line-height: 1.3333333;
	min-height: 38px;
	padding: 11px 16px;
}
.has-feedback{
	position: relative;
}
.has-feedback .form-control{
	padding-right: 42.5px;
}
.form-control-feedback{
	display: block;
	height: 34px;
	line-height: 34px;
	pointer-events: none;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 34px;
	z-index: 2;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback{
	height: 46px;
	line-height: 46px;
	width: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback{
	height: 30px;
	line-height: 30px;
	width: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label{
	color: #3c763d;
}
.has-success .form-control{
	border-color: #3c763d;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus{
	border-color: #2b542c;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon{
	background-color: #dff0d8;
	border-color: #3c763d;
	color: #3c763d;
}
.has-success .form-control-feedback{
	color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label{
	color: #8a6d3b;
}
.has-warning .form-control{
	border-color: #8a6d3b;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus{
	border-color: #66512c;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon{
	background-color: #fcf8e3;
	border-color: #8a6d3b;
	color: #8a6d3b;
}
.has-warning .form-control-feedback{
	color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label{
	color: #a94442;
}
.has-error .form-control{
	border-color: #a94442;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus{
	border-color: #843534;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon{
	background-color: #f2dede;
	border-color: #a94442;
	color: #a94442;
}
.has-error .form-control-feedback{
	color: #a94442;
}
.has-feedback label ~ .form-control-feedback{
	top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback{
	top: 0;
}
.help-block{
	color: #737373;
	display: block;
	margin-bottom: 10px;
	margin-top: 5px;
}
@media (min-width: 768px){
	.form-inline .form-group{
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle;
	}
	.form-inline .form-control{
		display: inline-block;
		vertical-align: middle;
		width: auto;
	}
	.form-inline .form-control-static{
		display: inline-block;
	}
	.form-inline .input-group{
		display: inline-table;
		vertical-align: middle;
	}
	.form-inline .input-group .input-group-addon,
	.form-inline .input-group .input-group-btn,
	.form-inline .input-group .form-control{
		width: auto;
	}
	.form-inline .input-group > .form-control{
		width: 100%;
	}
	.form-inline .control-label{
		margin-bottom: 0;
		vertical-align: middle;
	}
	.form-inline .radio,
	.form-inline .checkbox{
		display: inline-block;
		margin-bottom: 0;
		margin-top: 0;
		vertical-align: middle;
	}
	.form-inline .radio label,
	.form-inline .checkbox label{
		padding-left: 0;
	}
	.form-inline .radio input[type='radio'],
	.form-inline .checkbox input[type='checkbox']{
		margin-left: 0;
		position: relative;
	}
	.form-inline .has-feedback .form-control-feedback{
		top: 0;
	}
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline{
	margin-bottom: 0;
	margin-top: 0;
	padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox{
	min-height: 27px;
}
.form-horizontal .form-group{
	margin-left: -15px;
	margin-right: -15px;
}
@media (min-width: 768px){
	.form-horizontal .control-label{
		margin-bottom: 0;
		padding-top: 7px;
		text-align: right;
	}
}
.form-horizontal .has-feedback .form-control-feedback{
	right: 15px;
}
@media (min-width: 768px){
	.form-horizontal .form-group-lg .control-label{
		font-size: 18px;
		padding-top: 14.333333px;
	}
}
@media (min-width: 768px){
	.form-horizontal .form-group-sm .control-label{
		font-size: 12px;
		padding-top: 6px;
	}
}
.btn{
	background-color: #693390;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #ffffff !important;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.1;
	margin-bottom: 0;
	padding: 6px 9px;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	vertical-align: middle;
	white-space: nowrap;

	touch-action: manipulation;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus{
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus{
	color: #333333;
	text-decoration: none;
}
.btn:active,
.btn.active{
	background-image: none;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	outline: 0;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn{
	-webkit-box-shadow: none;
	        box-shadow: none;
	cursor: not-allowed;
	opacity: 0.65;

	filter: alpha(opacity=65);
}
a.btn.disabled,
fieldset[disabled] a.btn{
	pointer-events: none;
}
.btn-default{
	background-color: #ffffff;
	border-color: #cccccc;
	color: #333333;
}
.btn-default:focus,
.btn-default.focus{
	background-color: #e6e6e6;
	border-color: #8c8c8c;
	color: #333333;
}
.btn-default:hover{
	background-color: #e6e6e6;
	border-color: #adadad;
	color: #333333;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default{
	background-color: #e6e6e6;
	border-color: #adadad;
	color: #333333;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus{
	background-color: #d4d4d4;
	border-color: #8c8c8c;
	color: #333333;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default{
	background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active{
	background-color: #ffffff;
	border-color: #cccccc;
}
.btn-default .badge{
	background-color: #333333;
	color: #ffffff;
}
.btn-primary{
	background-color: #693390;
	border-color: #693390;
	color: #ffffff;
}
.btn-primary:focus,
.btn-primary.focus{
	background-color: #286090;
	border-color: #122b40;
	color: #ffffff;
}
.btn-primary:hover{
	background-color: #286090;
	border-color: #204d74;
	color: #ffffff;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary{
	background-color: #286090;
	border-color: #204d74;
	color: #ffffff;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus{
	background-color: #204d74;
	border-color: #122b40;
	color: #ffffff;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary{
	background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active{
	background-color: #337ab7;
	border-color: #2e6da4;
}
.btn-primary .badge{
	background-color: #ffffff;
	color: #337ab7;
}
.btn-success{
	background-color: #5cb85c;
	border-color: #4cae4c;
	color: #ffffff;
}
.btn-success:focus,
.btn-success.focus{
	background-color: #449d44;
	border-color: #255625;
	color: #ffffff;
}
.btn-success:hover{
	background-color: #449d44;
	border-color: #398439;
	color: #ffffff;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success{
	background-color: #449d44;
	border-color: #398439;
	color: #ffffff;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus{
	background-color: #398439;
	border-color: #255625;
	color: #ffffff;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success{
	background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active{
	background-color: #5cb85c;
	border-color: #4cae4c;
}
.btn-success .badge{
	background-color: #ffffff;
	color: #5cb85c;
}
.btn-info{
	background-color: #5bc0de;
	border-color: #46b8da;
	color: #ffffff;
}
.btn-info:focus,
.btn-info.focus{
	background-color: #31b0d5;
	border-color: #1b6d85;
	color: #ffffff;
}
.btn-info:hover{
	background-color: #31b0d5;
	border-color: #269abc;
	color: #ffffff;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info{
	background-color: #31b0d5;
	border-color: #269abc;
	color: #ffffff;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus{
	background-color: #269abc;
	border-color: #1b6d85;
	color: #ffffff;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info{
	background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active{
	background-color: #5bc0de;
	border-color: #46b8da;
}
.btn-info .badge{
	background-color: #ffffff;
	color: #5bc0de;
}
.btn-warning{
	background-color: #f0ad4e;
	border-color: #eea236;
	color: #ffffff;
}
.btn-warning:focus,
.btn-warning.focus{
	background-color: #ec971f;
	border-color: #985f0d;
	color: #ffffff;
}
.btn-warning:hover{
	background-color: #ec971f;
	border-color: #d58512;
	color: #ffffff;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning{
	background-color: #ec971f;
	border-color: #d58512;
	color: #ffffff;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus{
	background-color: #d58512;
	border-color: #985f0d;
	color: #ffffff;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning{
	background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active{
	background-color: #f0ad4e;
	border-color: #eea236;
}
.btn-warning .badge{
	background-color: #ffffff;
	color: #f0ad4e;
}
.btn-danger{
	background-color: #d9534f;
	border-color: #d43f3a;
	color: #ffffff;
  line-height: 1.0;
}
.btn-danger:focus,
.btn-danger.focus{
	background-color: #c9302c;
	border-color: #761c19;
	color: #ffffff;
}
.btn-danger:hover{
	background-color: #c9302c;
	border-color: #ac2925;
	color: #ffffff;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger{
	background-color: #c9302c;
	border-color: #ac2925;
	color: #ffffff;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus{
	background-color: #ac2925;
	border-color: #761c19;
	color: #ffffff;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger{
	background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active{
	background-color: #d9534f;
	border-color: #d43f3a;
}
.btn-danger .badge{
	background-color: #ffffff;
	color: #d9534f;
}
.btn-link{
	border-radius: 0;
	color: #693390;
	font-weight: normal;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link{
	background-color: transparent;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active{
	border-color: transparent;
}
.btn-link:hover,
.btn-link:focus{
	background-color: transparent;
	color: #3f1d58;
	text-decoration: underline;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus{
	color: #777777;
	text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn{
	border-radius: 6px;
	font-size: 18px;
	line-height: 1.3333333;
	padding: 10px 16px;
}
.btn-sm,
.btn-group-sm > .btn{
	border-radius: 3px;
	font-size: 12px;
	line-height: 1.5;
	padding: 5px 10px;
}
.btn-xs,
.btn-group-xs > .btn{
	border-radius: 3px;
	font-size: 12px;
	line-height: 1.5;
	padding: 1px 5px;
}
.btn-block{
	display: block;
	width: 100%;
}
.btn-block + .btn-block{
	margin-top: 5px;
}
input[type='submit'].btn-block,
input[type='reset'].btn-block,
input[type='button'].btn-block{
	width: 100%;
}
.fade{
	opacity: 0;
	-webkit-transition: opacity 0.15s linear;
	     -o-transition: opacity 0.15s linear;
	        transition: opacity 0.15s linear;
}
/*.fade.in {
  opacity: 1;
}

*/
.collapse{
	display: none;
}
.collapse.in{
	display: block;
}
tr.collapse.in{
	display: table-row;
}
tbody.collapse.in{
	display: table-row-group;
}
.collapsing{
	height: 0;
	overflow: hidden;
	position: relative;
	-webkit-transition-duration: 0.35s;
	        transition-duration: 0.35s;
	-webkit-transition-property: height, visibility;
	        transition-property: height, visibility;
	-webkit-transition-timing-function: ease;
	        transition-timing-function: ease;
}
.caret{
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px dashed;
	border-top: 4px solid \9;
	display: inline-block;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	width: 0;
}
.dropup,
.dropdown{
	position: relative;
}
.dropdown-toggle:focus{
	outline: 0;
}
.dropdown-menu{
	background-clip: padding-box;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	display: none;
	float: left;
	font-size: 14px;
	left: 0;
	list-style: none;
	margin: 2px 0 0;
	min-width: 160px;
	padding: 5px 0;
	position: absolute;
	text-align: left;
	top: 100%;
	z-index: 1000;
}
.dropdown-menu.pull-right{
	left: auto;
	right: 0;
}
.dropdown-menu .divider{
	background-color: #e5e5e5;
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
}
.dropdown-menu > li > a{
	clear: both;
	color: #333333;
	display: block;
	font-weight: normal;
	line-height: 1.42857143;
	padding: 3px 20px;
	white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus{
	background-color: #f5f5f5;
	color: #262626;
	text-decoration: none;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus{
	background-color: #337ab7;
	color: #ffffff;
	outline: 0;
	text-decoration: none;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus{
	color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus{
	background-color: transparent;
	background-image: none;
	cursor: not-allowed;
	text-decoration: none;

	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu{
	display: block;
}
.open > a{
	outline: 0;
}
.dropdown-menu-right{
	left: auto;
	right: 0;
}
.dropdown-menu-left{
	left: 0;
	right: auto;
}
.dropdown-header{
	color: #777777;
	display: block;
	font-size: 12px;
	line-height: 1.42857143;
	padding: 3px 20px;
	white-space: nowrap;
}
.dropdown-backdrop{
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 990;
}
.pull-right > .dropdown-menu{
	left: auto;
	right: 0;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret{
	border-bottom: 4px dashed;
	border-bottom: 4px solid \9;
	border-top: 0;
	content: '';
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu{
	bottom: 100%;
	margin-bottom: 2px;
	top: auto;
}
@media (min-width: 768px){
	.navbar-right .dropdown-menu{
		left: auto;
		right: 0;
	}
	.navbar-right .dropdown-menu-left{
		left: 0;
		right: auto;
	}
}
.btn-group,
.btn-group-vertical{
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn{
	float: left;
	position: relative;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active{
	z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group{
	margin-left: -1px;
}
.btn-toolbar{
	margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group{
	float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group{
	margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle){
	border-radius: 0;
}
.btn-group > .btn:first-child{
	margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle){
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child){
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}
.btn-group > .btn-group{
	float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn{
	border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle{
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child{
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle{
	outline: 0;
}
.btn-group > .btn + .dropdown-toggle{
	padding-left: 8px;
	padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle{
	padding-left: 12px;
	padding-right: 12px;
}
.btn-group.open .dropdown-toggle{
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link{
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.btn .caret{
	margin-left: 0;
}
.btn-lg .caret{
	border-bottom-width: 0;
	border-width: 5px 5px 0;
}
.dropup .btn-lg .caret{
	border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn{
	display: block;
	float: none;
	max-width: 100%;
	width: 100%;
}
.btn-group-vertical > .btn-group > .btn{
	float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group{
	margin-left: 0;
	margin-top: -1px;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child){
	border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child){
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-right-radius: 4px;
}
.btn-group-vertical > .btn:last-child:not(:first-child){
	border-bottom-left-radius: 4px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn{
	border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.btn-group-justified{
	border-collapse: separate;
	display: table;
	table-layout: fixed;
	width: 100%;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group{
	display: table-cell;
	float: none;
	width: 1%;
}
.btn-group-justified > .btn-group .btn{
	width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu{
	left: auto;
}
[data-toggle='buttons'] > .btn input[type='radio'],
[data-toggle='buttons'] > .btn-group > .btn input[type='radio'],
[data-toggle='buttons'] > .btn input[type='checkbox'],
[data-toggle='buttons'] > .btn-group > .btn input[type='checkbox']{
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
	position: absolute;
}
.input-group{
	border-collapse: separate;
	display: table;
	position: relative;
}
.input-group[class*='col-']{
	float: none;
	padding-left: 0;
	padding-right: 0;
}
.input-group .form-control{
	float: left;
	margin-bottom: 0;
	position: relative;
	width: 100%;
	z-index: 2;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn{
	border-radius: 6px;
	font-size: 18px;
	height: 46px;
	line-height: 1.3333333;
	padding: 10px 16px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn{
	height: 46px;
	line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn{
	height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn{
	border-radius: 3px;
	font-size: 12px;
	height: 30px;
	line-height: 1.5;
	padding: 5px 10px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn{
	height: 30px;
	line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn{
	height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control{
	display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child){
	border-radius: 0;
}
.input-group-addon,
.input-group-btn{
	vertical-align: middle;
	white-space: nowrap;
	width: 1%;
}
.input-group-addon{
	background-color: #eeeeee;
	border: 1px solid #cccccc;
	border-radius: 4px;
	color: #555555;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	padding: 6px 12px;
	text-align: center;
}
.input-group-addon.input-sm{
	border-radius: 3px;
	font-size: 12px;
	padding: 5px 10px;
}
.input-group-addon.input-lg{
	border-radius: 6px;
	font-size: 18px;
	padding: 10px 16px;
}
.input-group-addon input[type='radio'],
.input-group-addon input[type='checkbox']{
	margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn{
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}
.input-group-addon:first-child{
	border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn{
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}
.input-group-addon:last-child{
	border-left: 0;
}
.input-group-btn{
	font-size: 0;
	position: relative;
	white-space: nowrap;
}
.input-group-btn > .btn{
	position: relative;
}
.input-group-btn > .btn + .btn{
	margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active{
	z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group{
	margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group{
	margin-left: -1px;
	z-index: 2;
}
.nav{
	list-style: none;
	margin-bottom: 0;
	padding-left: 30px;
}
.nav > li{
	display: block;
	position: relative;
}
.nav > li > a{
	display: block;
	padding: 10px 15px;
	position: relative;
}
.nav > li > a:hover,
.nav > li > a:focus{
	background-color: #eeeeee;
	text-decoration: none;
}
.nav > li.disabled > a{
	color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus{
	background-color: transparent;
	color: #777777;
	cursor: not-allowed;
	text-decoration: none;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus{
	background-color: #eeeeee;
	border-color: #693390;
}
.nav .nav-divider{
	background-color: #e5e5e5;
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
}
.nav > li > a > img{
	max-width: none;
}
.nav-tabs{
	border-bottom: 1px solid #dddddd;
}
.nav-tabs > li{
	float: left;
	margin-bottom: -1px;
}
.nav-tabs > li > a{
	border: 1px solid transparent;
	border-radius: 4px 4px 0 0;
	line-height: 1.42857143;
	margin-right: 2px;
}
.nav-tabs > li > a:hover{
	border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus{
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-bottom-color: transparent;
	color: #555555;
	cursor: default;
}
.nav-tabs.nav-justified{
	border-bottom: 0;
	width: 100%;
}
.nav-tabs.nav-justified > li{
	float: none;
}
.nav-tabs.nav-justified > li > a{
	margin-bottom: 5px;
	text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu{
	left: auto;
	top: auto;
}
@media (min-width: 768px){
	.nav-tabs.nav-justified > li{
		display: table-cell;
		width: 1%;
	}
	.nav-tabs.nav-justified > li > a{
		margin-bottom: 0;
	}
}
.nav-tabs.nav-justified > li > a{
	border-radius: 4px;
	margin-right: 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus{
	border: 1px solid #dddddd;
}
@media (min-width: 768px){
	.nav-tabs.nav-justified > li > a{
		border-bottom: 1px solid #dddddd;
		border-radius: 4px 4px 0 0;
	}
	.nav-tabs.nav-justified > .active > a,
	.nav-tabs.nav-justified > .active > a:hover,
	.nav-tabs.nav-justified > .active > a:focus{
		border-bottom-color: #ffffff;
	}
}
.nav-pills > li{
	float: left;
}
.nav-pills > li > a{
	border-radius: 4px;
}
.nav-pills > li + li{
	margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus{
	background-color: #337ab7;
	color: #3f1d58;
}
.nav-stacked > li{
	float: none;
}
.nav-stacked > li + li{
	margin-left: 0;
	margin-top: 2px;
}
.nav-justified{
	width: 100%;
}
.nav-justified > li{
	float: none;
}
.nav-justified > li > a{
	margin-bottom: 5px;
	text-align: center;
}
.nav-justified > .dropdown .dropdown-menu{
	left: auto;
	top: auto;
}
@media (min-width: 768px){
	.nav-justified > li{
		display: table-cell;
		width: 1%;
	}
	.nav-justified > li > a{
		margin-bottom: 0;
	}
}
.nav-tabs-justified{
	border-bottom: 0;
}
.nav-tabs-justified > li > a{
	border-radius: 4px;
	margin-right: 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus{
	border: 1px solid #dddddd;
}
@media (min-width: 768px){
	.nav-tabs-justified > li > a{
		border-bottom: 1px solid #dddddd;
		border-radius: 4px 4px 0 0;
	}
	.nav-tabs-justified > .active > a,
	.nav-tabs-justified > .active > a:hover,
	.nav-tabs-justified > .active > a:focus{
		border-bottom-color: #ffffff;
	}
}
.tab-content > .tab-pane{
	display: none;
}
.tab-content > .active{
	display: block;
}
.nav-tabs .dropdown-menu{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	margin-top: -1px;
}
.navbar{
	border: 1px solid transparent;
	margin-bottom: 20px;
	min-height: 50px;
	position: relative;
}
@media (min-width: 768px){
	.navbar{
		border-radius: 4px;
	}
}
@media (min-width: 768px){
	.navbar-header{
		float: left;
	}
}
.navbar-collapse{
	border-top: 1px solid transparent;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	overflow-x: visible;
	padding-left: 15px;
	padding-right: 15px;

	-webkit-overflow-scrolling: touch;
}
.navbar-collapse.in{
	overflow-y: auto;
}
@media (min-width: 768px){
	.navbar-collapse{
		border-top: 0;
		box-shadow: none;
		width: auto;
	}
	.navbar-collapse.collapse{
		display: block !important;
		height: auto !important;
		overflow: visible !important;
		padding-bottom: 0;
	}
	.navbar-collapse.in{
		overflow-y: visible;
	}
	.navbar-fixed-top .navbar-collapse,
	.navbar-static-top .navbar-collapse,
	.navbar-fixed-bottom .navbar-collapse{
		padding-left: 0;
		padding-right: 0;
	}
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse{
	max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape){
	.navbar-fixed-top .navbar-collapse,
	.navbar-fixed-bottom .navbar-collapse{
		max-height: 200px;
	}
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse{
	margin-left: -15px;
	margin-right: -15px;
}
@media (min-width: 768px){
	.container > .navbar-header,
	.container-fluid > .navbar-header,
	.container > .navbar-collapse,
	.container-fluid > .navbar-collapse{
		margin-left: 0;
		margin-right: 0;
	}
}
.navbar-static-top{
	border-width: 0 0 1px;
	z-index: 1000;
}
@media (min-width: 768px){
	.navbar-static-top{
		border-radius: 0;
	}
}
.navbar-fixed-top,
.navbar-fixed-bottom{
	left: 0;
	position: fixed;
	right: 0;
	z-index: 1030;
}
@media (min-width: 768px){
	.navbar-fixed-top,
	.navbar-fixed-bottom{
		border-radius: 0;
	}
}
.navbar-fixed-top{
	border-width: 0 0 1px;
	top: 0;
}
.navbar-fixed-bottom{
	border-width: 1px 0 0;
	bottom: 0;
	margin-bottom: 0;
}
.navbar-brand{
	float: left;
	font-size: 18px;
	height: 50px;
	line-height: 20px;
	padding: 15px 15px;
}
.navbar-brand:hover,
.navbar-brand:focus{
	text-decoration: none;
}
.navbar-brand > img{
	display: block;
}
@media (min-width: 768px){
	.navbar > .container .navbar-brand,
	.navbar > .container-fluid .navbar-brand{
		margin-left: -15px;
	}
}
.navbar-toggle{
	background-color: transparent;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	float: right;
	margin-bottom: 8px;
	margin-right: 15px;
	margin-top: 8px;
	padding: 9px 10px;
	position: relative;
}
.navbar-toggle:focus{
	outline: 0;
}
.navbar-toggle .icon-bar{
	border-radius: 1px;
	display: block;
	height: 2px;
	width: 22px;
}
.navbar-toggle .icon-bar + .icon-bar{
	margin-top: 4px;
}
@media (min-width: 768px){
	.navbar-toggle{
		display: none;
	}
}
.navbar-nav{
	margin: 7.5px -15px;
}
.navbar-nav > li > a{
	line-height: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}
@media (max-width: 767px){
	.navbar-nav .open .dropdown-menu{
		background-color: transparent;
		border: 0;
		box-shadow: none;
		float: none;
		margin-top: 0;
		position: static;
		width: auto;
	}
	.navbar-nav .open .dropdown-menu > li > a,
	.navbar-nav .open .dropdown-menu .dropdown-header{
		padding: 5px 15px 5px 25px;
	}
	.navbar-nav .open .dropdown-menu > li > a{
		line-height: 20px;
	}
	.navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-nav .open .dropdown-menu > li > a:focus{
		background-image: none;
	}
}
@media (min-width: 768px){
	.navbar-nav{
		float: left;
		margin: 0;
	}
	.navbar-nav > li{
		float: left;
	}
	.navbar-nav > li > a{
		padding-bottom: 15px;
		padding-top: 15px;
	}
}
.navbar-form{
	border-bottom: 1px solid transparent;
	border-top: 1px solid transparent;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
	        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
	margin-bottom: 8px;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: 8px;
	padding: 10px 15px;
}
@media (min-width: 768px){
	.navbar-form .form-group{
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle;
	}
	.navbar-form .form-control{
		display: inline-block;
		vertical-align: middle;
		width: auto;
	}
	.navbar-form .form-control-static{
		display: inline-block;
	}
	.navbar-form .input-group{
		display: inline-table;
		vertical-align: middle;
	}
	.navbar-form .input-group .input-group-addon,
	.navbar-form .input-group .input-group-btn,
	.navbar-form .input-group .form-control{
		width: auto;
	}
	.navbar-form .input-group > .form-control{
		width: 100%;
	}
	.navbar-form .control-label{
		margin-bottom: 0;
		vertical-align: middle;
	}
	.navbar-form .radio,
	.navbar-form .checkbox{
		display: inline-block;
		margin-bottom: 0;
		margin-top: 0;
		vertical-align: middle;
	}
	.navbar-form .radio label,
	.navbar-form .checkbox label{
		padding-left: 0;
	}
	.navbar-form .radio input[type='radio'],
	.navbar-form .checkbox input[type='checkbox']{
		margin-left: 0;
		position: relative;
	}
	.navbar-form .has-feedback .form-control-feedback{
		top: 0;
	}
}
@media (max-width: 767px){
	.navbar-form .form-group{
		margin-bottom: 5px;
	}
	.navbar-form .form-group:last-child{
		margin-bottom: 0;
	}
}
@media (min-width: 768px){
	.navbar-form{
		border: 0;
		-webkit-box-shadow: none;
		        box-shadow: none;
		margin-left: 0;
		margin-right: 0;
		padding-bottom: 0;
		padding-top: 0;
		width: auto;
	}
}
.navbar-nav > li > .dropdown-menu{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	margin-top: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	margin-bottom: 0;
}
.navbar-btn{
	margin-bottom: 8px;
	margin-top: 8px;
}
.navbar-btn.btn-sm{
	margin-bottom: 10px;
	margin-top: 10px;
}
.navbar-btn.btn-xs{
	margin-bottom: 14px;
	margin-top: 14px;
}
.navbar-text{
	margin-bottom: 15px;
	margin-top: 15px;
}
@media (min-width: 768px){
	.navbar-text{
		float: left;
		margin-left: 15px;
		margin-right: 15px;
	}
}
@media (min-width: 768px){
	.navbar-left{
		float: left !important;
	}
	.navbar-right{
		float: right !important;
		margin-right: -15px;
	}
	.navbar-right ~ .navbar-right{
		margin-right: 0;
	}
}
.navbar-default{
	background-color: #f8f8f8;
	border-color: #e7e7e7;
}
.navbar-default .navbar-brand{
	color: #777777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus{
	background-color: transparent;
	color: #5e5e5e;
}
.navbar-default .navbar-text{
	color: #777777;
}
.navbar-default .navbar-nav > li > a{
	color: #777777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus{
	background-color: transparent;
	color: #333333;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus{
	background-color: #e7e7e7;
	color: #555555;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus{
	background-color: transparent;
	color: #cccccc;
}
.navbar-default .navbar-toggle{
	border-color: #dddddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus{
	background-color: #dddddd;
}
.navbar-default .navbar-toggle .icon-bar{
	background-color: #888888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form{
	border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus{
	background-color: #e7e7e7;
	color: #555555;
}
@media (max-width: 767px){
	.navbar-default .navbar-nav .open .dropdown-menu > li > a{
		color: #777777;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus{
		background-color: transparent;
		color: #333333;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus{
		background-color: #e7e7e7;
		color: #555555;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
	.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus{
		background-color: transparent;
		color: #cccccc;
	}
}
.navbar-default .navbar-link{
	color: #777777;
}
.navbar-default .navbar-link:hover{
	color: #333333;
}
.navbar-default .btn-link{
	color: #777777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus{
	color: #333333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus{
	color: #cccccc;
}
.navbar-inverse{
	background-color: #222222;
	border-color: #080808;
}
.navbar-inverse .navbar-brand{
	color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus{
	background-color: transparent;
	color: #ffffff;
}
.navbar-inverse .navbar-text{
	color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a{
	color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus{
	background-color: transparent;
	color: #ffffff;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus{
	background-color: #080808;
	color: #ffffff;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus{
	background-color: transparent;
	color: #444444;
}
.navbar-inverse .navbar-toggle{
	border-color: #333333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus{
	background-color: #333333;
}
.navbar-inverse .navbar-toggle .icon-bar{
	background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form{
	border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus{
	background-color: #080808;
	color: #ffffff;
}
@media (max-width: 767px){
	.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header{
		border-color: #080808;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu .divider{
		background-color: #080808;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a{
		color: #9d9d9d;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus{
		background-color: transparent;
		color: #ffffff;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
	.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus{
		background-color: #080808;
		color: #ffffff;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
	.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus{
		background-color: transparent;
		color: #444444;
	}
}
.navbar-inverse .navbar-link{
	color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover{
	color: #ffffff;
}
.navbar-inverse .btn-link{
	color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus{
	color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus{
	color: #444444;
}
.breadcrumb{
	background-color: #f5f5f5;
	border-radius: 4px;
	list-style: none;
	margin-bottom: 20px;
	padding: 8px 15px;
}
.breadcrumb > li{
	display: inline-block;
}
.breadcrumb > li + li:before{
	color: #cccccc;
	content: '/\00a0';
	padding: 0 5px;
}
.breadcrumb > .active{
	color: #777777;
}
.pagination{
	border-radius: 4px;
	display: inline-block;
	margin: 20px 0;
	padding-left: 0;
}
.pagination > li{
	display: inline;
}
.pagination > li > a,
.pagination > li > span{
	background-color: #ffffff;
	border: 1px solid #dddddd;
	color: #693390;
	float: left;
	line-height: 1.42857143;
	margin-left: -1px;
	padding: 6px 12px;
	position: relative;
	text-decoration: none;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span{
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
	margin-left: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span{
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus{
	background-color: #eeeeee;
	border-color: #dddddd;
	color: #3f1d58;
	z-index: 3;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus{
	background-color: #337ab7;
	border-color: #337ab7;
	color: #ffffff;
	cursor: default;
	z-index: 2;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus{
	background-color: #ffffff;
	border-color: #dddddd;
	color: #777777;
	cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span{
	font-size: 18px;
	line-height: 1.3333333;
	padding: 10px 16px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span{
	border-bottom-left-radius: 6px;
	border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span{
	border-bottom-right-radius: 6px;
	border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span{
	font-size: 12px;
	line-height: 1.5;
	padding: 5px 10px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span{
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span{
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
}
.pager{
	list-style: none;
	margin: 20px 0;
	padding-left: 0;
	text-align: center;
}
.pager li{
	display: inline;
}
.pager li > a,
.pager li > span{
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 15px;
	display: inline-block;
	padding: 5px 14px;
}
.pager li > a:hover,
.pager li > a:focus{
	background-color: #eeeeee;
	text-decoration: none;
}
.pager .next > a,
.pager .next > span{
	float: right;
}
.pager .previous > a,
.pager .previous > span{
	float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span{
	background-color: #ffffff;
	color: #777777;
	cursor: not-allowed;
}
.label{
	border-radius: 0.25em;
	color: #ffffff;
	display: inline;
	font-size: 75%;
	font-weight: bold;
	line-height: 1;
	padding: 0.2em 0.6em 0.3em;
	text-align: center;
	vertical-align: baseline;
	white-space: nowrap;
}
a.label:hover,
a.label:focus{
	color: #ffffff;
	cursor: pointer;
	text-decoration: none;
}
.label:empty{
	display: none;
}
.btn .label{
	position: relative;
	top: -1px;
}
.label-default{
	background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus{
	background-color: #5e5e5e;
}
.label-primary{
	background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus{
	background-color: #286090;
}
.label-success{
	background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus{
	background-color: #449d44;
}
.label-info{
	background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus{
	background-color: #31b0d5;
}
.label-warning{
	background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus{
	background-color: #ec971f;
}
.label-danger{
	background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus{
	background-color: #c9302c;
}
.badge{
	background-color: #777777;
	border-radius: 10px;
	color: #ffffff;
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	min-width: 10px;
	padding: 3px 7px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}
.badge:empty{
	display: none;
}
.btn .badge{
	position: relative;
	top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge{
	padding: 1px 5px;
	top: 0;
}
a.badge:hover,
a.badge:focus{
	color: #ffffff;
	cursor: pointer;
	text-decoration: none;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge{
	background-color: #ffffff;
	color: #693390;
}
.list-group-item > .badge{
	float: right;
}
.list-group-item > .badge + .badge{
	margin-right: 5px;
}
.nav-pills > li > a > .badge{
	margin-left: 3px;
}
.jumbotron{
	background-color: #eeeeee;
	color: inherit;
	margin-bottom: 30px;
	padding-bottom: 30px;
	padding-top: 30px;
}
.jumbotron h1,
.jumbotron .h1{
	color: inherit;
}
.jumbotron p{
	font-size: 21px;
	font-weight: 200;
	margin-bottom: 15px;
}
.jumbotron > hr{
	border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron{
	border-radius: 6px;
}
.jumbotron .container{
	max-width: 100%;
}
@media screen and (min-width: 768px){
	.jumbotron{
		padding-bottom: 48px;
		padding-top: 48px;
	}
	.container .jumbotron,
	.container-fluid .jumbotron{
		padding-left: 60px;
		padding-right: 60px;
	}
	.jumbotron h1,
	.jumbotron .h1{
		font-size: 63px;
	}
}
.thumbnail{
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
	display: block;
	line-height: 1.42857143;
	margin-bottom: 20px;
	padding: 4px;
	-webkit-transition: border 0.2s ease-in-out;
	     -o-transition: border 0.2s ease-in-out;
	        transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img{
	margin-left: auto;
	margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active{
	border-color: #693390;
}
.thumbnail .caption{
	color: #333333;
	padding: 9px;
}
.alert{
	border: 1px solid transparent;
	border-radius: 4px;
	margin-bottom: 20px;
	padding: 15px;
}
.alert h4{
	color: #f2dede;
	line-height: 3px;
	margin-bottom: 0 !important;
	margin-top: 0;
}
.alert .alert-link{
	font-weight: bold;
}
.alert > p,
.alert > ul{
	margin-bottom: 0;
}
.alert > p + p{
	margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible{
	padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close{
	color: inherit;
	position: relative;
	right: -21px;
	top: -2px;
}
.alert-success{
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d;
}
.alert-success hr{
	border-top-color: #c9e2b3;
}
.alert-success .alert-link{
	color: #2b542c;
}
.alert-info{
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f;
}
.alert-info hr{
	border-top-color: #a6e1ec;
}
.alert-info .alert-link{
	color: #245269;
}
.alert-warning{
	background-color: #fcf8e3;
	border-color: #faebcc;
	color: #8a6d3b;
}
.alert-warning hr{
	border-top-color: #f7e1b5;
}
.alert-warning .alert-link{
	color: #66512c;
}
.alert-danger{
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
}
.alert-danger hr{
	border-top-color: #e4b9c0;
}
.alert-danger .alert-link{
	color: #843534;
}
@-webkit-keyframes progress-bar-stripes{
	from{
		background-position: 40px 0;
	}
	to{
		background-position: 0 0;
	}
}
@keyframes progress-bar-stripes{
	from{
		background-position: 40px 0;
	}
	to{
		background-position: 0 0;
	}
}
.progress{
	background-color: #f5f5f5;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	height: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}
.progress-bar{
	background-color: #337ab7;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	color: #ffffff;
	float: left;
	font-size: 12px;
	height: 100%;
	line-height: 20px;
	text-align: center;
	-webkit-transition: width 0.6s ease;
	     -o-transition: width 0.6s ease;
	        transition: width 0.6s ease;
	width: 0;
}
.progress-striped .progress-bar,
.progress-bar-striped{
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active{
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	     -o-animation: progress-bar-stripes 2s linear infinite;
	        animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success{
	background-color: #5cb85c;
}
.progress-striped .progress-bar-success{
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info{
	background-color: #5bc0de;
}
.progress-striped .progress-bar-info{
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning{
	background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning{
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger{
	background-color: #d9534f;
}
.progress-striped .progress-bar-danger{
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media{
	margin-top: 15px;
}
.media:first-child{
	margin-top: 0;
}
.media,
.media-body{
	overflow: hidden;
	zoom: 1;
}
.media-body{
	width: 10000px;
}
.media-object{
	display: block;
}
.media-object.img-thumbnail{
	max-width: none;
}
.media-right,
.media > .pull-right{
	padding-left: 10px;
}
.media-left,
.media > .pull-left{
	padding-right: 10px;
}
.media-left,
.media-right,
.media-body{
	display: table-cell;
	vertical-align: top;
}
.media-middle{
	vertical-align: middle;
}
.media-bottom{
	vertical-align: bottom;
}
.media-heading{
	margin-bottom: 5px;
	margin-top: 0;
}
.media-list{
	list-style: none;
	padding-left: 0;
}
.list-group{
	margin-bottom: 20px;
	padding-left: 0;
}
.list-group-item{
	background-color: #ffffff;
	border: 1px solid #dddddd;
	display: block;
	margin-bottom: -1px;
	padding: 10px 15px;
	position: relative;
}
.list-group-item:first-child{
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.list-group-item:last-child{
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-bottom: 0;
}
a.list-group-item,
button.list-group-item{
	color: #555555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading{
	color: #333333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus{
	background-color: #f5f5f5;
	color: #555555;
	text-decoration: none;
}
button.list-group-item{
	text-align: left;
	width: 100%;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus{
	background-color: #eeeeee;
	color: #777777;
	cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading{
	color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text{
	color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus{
	background-color: #337ab7;
	border-color: #337ab7;
	color: #ffffff;
	z-index: 2;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small{
	color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text{
	color: #c7ddef;
}
.list-group-item-success{
	background-color: #dff0d8;
	color: #3c763d;
}
a.list-group-item-success,
button.list-group-item-success{
	color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading{
	color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus{
	background-color: #d0e9c6;
	color: #3c763d;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus{
	background-color: #3c763d;
	border-color: #3c763d;
	color: #ffffff;
}
.list-group-item-info{
	background-color: #d9edf7;
	color: #31708f;
}
a.list-group-item-info,
button.list-group-item-info{
	color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading{
	color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus{
	background-color: #c4e3f3;
	color: #31708f;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus{
	background-color: #31708f;
	border-color: #31708f;
	color: #ffffff;
}
.list-group-item-warning{
	background-color: #fcf8e3;
	color: #8a6d3b;
}
a.list-group-item-warning,
button.list-group-item-warning{
	color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading{
	color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus{
	background-color: #faf2cc;
	color: #8a6d3b;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus{
	background-color: #8a6d3b;
	border-color: #8a6d3b;
	color: #ffffff;
}
.list-group-item-danger{
	background-color: #f2dede;
	color: #a94442;
}
a.list-group-item-danger,
button.list-group-item-danger{
	color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading{
	color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus{
	background-color: #ebcccc;
	color: #a94442;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus{
	background-color: #a94442;
	border-color: #a94442;
	color: #ffffff;
}
.list-group-item-heading{
	margin-bottom: 5px;
	margin-top: 0;
}
.list-group-item-text{
	line-height: 1.3;
	margin-bottom: 0;
}
.panel{
	background-color: #ffffff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}
.panel-body{
	padding: 15px;
}
.panel-heading{
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding: 10px 15px;
}
.panel-heading > .dropdown .dropdown-toggle{
	color: inherit;
}
.panel-title{
	color: inherit;
	font-size: 16px;
	margin-bottom: 0;
	margin-top: 0;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a{
	color: inherit;
}
.panel-footer{
	background-color: #f5f5f5;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-top: 1px solid #dddddd;
	padding: 10px 15px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group{
	margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item{
	border-radius: 0;
	border-width: 1px 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child{
	border-top: 0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child{
	border-bottom: 0;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child{
	border-top-width: 0;
}
.list-group + .panel-footer{
	border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table{
	margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption{
	padding-left: 15px;
	padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child{
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child{
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child{
	border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child{
	border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child{
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child{
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child{
	border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child{
	border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body{
	border-top: 1px solid #dddddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td{
	border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered{
	border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child{
	border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child{
	border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th{
	border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th{
	border-bottom: 0;
}
.panel > .table-responsive{
	border: 0;
	margin-bottom: 0;
}
.panel-group{
	margin-bottom: 20px;
}
.panel-group .panel{
	border-radius: 4px;
	margin-bottom: 0;
}
.panel-group .panel + .panel{
	margin-top: 5px;
}
.panel-group .panel-heading{
	border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group{
	border-top: 1px solid #dddddd;
}
.panel-group .panel-footer{
	border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body{
	border-bottom: 1px solid #dddddd;
}
.panel-default{
	border-color: #dddddd;
}
.panel-default > .panel-heading{
	background-color: #f5f5f5;
	border-color: #dddddd;
	color: #333333;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body{
	border-top-color: #dddddd;
}
.panel-default > .panel-heading .badge{
	background-color: #333333;
	color: #f5f5f5;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body{
	border-bottom-color: #dddddd;
}
.panel-primary{
	border-color: #337ab7;
}
.panel-primary > .panel-heading{
	background-color: #337ab7;
	border-color: #337ab7;
	color: #ffffff;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body{
	border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge{
	background-color: #ffffff;
	color: #337ab7;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body{
	border-bottom-color: #337ab7;
}
.panel-success{
	border-color: #d6e9c6;
}
.panel-success > .panel-heading{
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body{
	border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge{
	background-color: #3c763d;
	color: #dff0d8;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body{
	border-bottom-color: #d6e9c6;
}
.panel-info{
	border-color: #bce8f1;
}
.panel-info > .panel-heading{
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body{
	border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge{
	background-color: #31708f;
	color: #d9edf7;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body{
	border-bottom-color: #bce8f1;
}
.panel-warning{
	border-color: #faebcc;
}
.panel-warning > .panel-heading{
	background-color: #fcf8e3;
	border-color: #faebcc;
	color: #8a6d3b;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body{
	border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge{
	background-color: #8a6d3b;
	color: #fcf8e3;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body{
	border-bottom-color: #faebcc;
}
.panel-danger{
	border-color: #ebccd1;
}
.panel-danger > .panel-heading{
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body{
	border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge{
	background-color: #a94442;
	color: #f2dede;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body{
	border-bottom-color: #ebccd1;
}
.embed-responsive{
	display: block;
	height: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video{
	border: 0;
	bottom: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.embed-responsive-16by9{
	padding-bottom: 56.25%;
}
.embed-responsive-4by3{
	padding-bottom: 75%;
}
.well{
	background-color: transparent;
	border: none;
	border-radius: 0;
	margin-bottom: 20px;
	min-height: 20px;
	padding: 19px;
}

.well blockquote{
	border-color: #dddddd;
	border-color: rgba(0, 0, 0, 0.15);
}
.well-lg{
	border-radius: 6px;
	padding: 24px;
}
.well-sm{
	border-radius: 3px;
	padding: 9px;
}
.close{
	color: #000000;
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	opacity: 0.2;
	text-shadow: 0 1px 0 #ffffff;

	filter: alpha(opacity=20);
}
.close:hover,
.close:focus{
	color: #000000;
	cursor: pointer;
	opacity: 0.5;
	text-decoration: none;

	filter: alpha(opacity=50);
}
button.close{
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;

	-webkit-appearance: none;
}
/*.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

*/
@media (min-width: 768px){
	.modal-dialog{
		margin: 30px auto;
		width: 600px;
	}
	.modal-content{
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}
	.modal-sm{
		width: 300px;
	}
}
@media (min-width: 992px){
	.modal-lg{
		width: 900px;
	}
}


.tooltip{
	display: block;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	letter-spacing: normal;
	line-height: 1.42857143;
	opacity: 0;
	position: absolute;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	white-space: normal;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;
	z-index: 1070;

	filter: alpha(opacity=0);
	line-break: auto;
}
.tooltip.in{
	opacity: 0.9;

	filter: alpha(opacity=90);
}
.tooltip.top{
	margin-top: -3px;
	padding: 5px 0;
}
.tooltip.right{
	margin-left: 3px;
	padding: 0 5px;
}
.tooltip.bottom{
	margin-top: 3px;
	padding: 5px 0;
}
.tooltip.left{
	margin-left: -3px;
	padding: 0 5px;
}
.tooltip-inner{
	background-color: #000000;
	border-radius: 4px;
	color: #ffffff;
	max-width: 200px;
	padding: 3px 8px;
	text-align: center;
}
.tooltip-arrow{
	border-color: transparent;
	border-style: solid;
	height: 0;
	position: absolute;
	width: 0;
}
.tooltip.top .tooltip-arrow{
	border-top-color: #000000;
	border-width: 5px 5px 0;
	bottom: 0;
	left: 50%;
	margin-left: -5px;
}
.tooltip.top-left .tooltip-arrow{
	border-top-color: #000000;
	border-width: 5px 5px 0;
	bottom: 0;
	margin-bottom: -5px;
	right: 5px;
}
.tooltip.top-right .tooltip-arrow{
	border-top-color: #000000;
	border-width: 5px 5px 0;
	bottom: 0;
	left: 5px;
	margin-bottom: -5px;
}
.tooltip.right .tooltip-arrow{
	border-right-color: #000000;
	border-width: 5px 5px 5px 0;
	left: 0;
	margin-top: -5px;
	top: 50%;
}
.tooltip.left .tooltip-arrow{
	border-left-color: #000000;
	border-width: 5px 0 5px 5px;
	margin-top: -5px;
	right: 0;
	top: 50%;
}
.tooltip.bottom .tooltip-arrow{
	border-bottom-color: #000000;
	border-width: 0 5px 5px;
	left: 50%;
	margin-left: -5px;
	top: 0;
}
.tooltip.bottom-left .tooltip-arrow{
	border-bottom-color: #000000;
	border-width: 0 5px 5px;
	margin-top: -5px;
	right: 5px;
	top: 0;
}
.tooltip.bottom-right .tooltip-arrow{
	border-bottom-color: #000000;
	border-width: 0 5px 5px;
	left: 5px;
	margin-top: -5px;
	top: 0;
}
.popover{
	background-clip: padding-box;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	display: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	left: 0;
	letter-spacing: normal;
	line-height: 1.42857143;
	max-width: 276px;
	padding: 1px;
	position: absolute;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	top: 0;
	white-space: normal;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;
	z-index: 1060;

	line-break: auto;
}
.popover.top{
	margin-top: -10px;
}
.popover.right{
	margin-left: 10px;
}
.popover.bottom{
	margin-top: 10px;
}
.popover.left{
	margin-left: -10px;
}
.popover-title{
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	border-radius: 5px 5px 0 0;
	font-size: 14px;
	margin: 0;
	padding: 8px 14px;
}
.popover-content{
	padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after{
	border-color: transparent;
	border-style: solid;
	display: block;
	height: 0;
	position: absolute;
	width: 0;
}
.popover > .arrow{
	border-width: 11px;
}
.popover > .arrow:after{
	border-width: 10px;
	content: '';
}
.popover.top > .arrow{
	border-bottom-width: 0;
	border-top-color: #999999;
	border-top-color: rgba(0, 0, 0, 0.25);
	bottom: -11px;
	left: 50%;
	margin-left: -11px;
}
.popover.top > .arrow:after{
	border-bottom-width: 0;
	border-top-color: #ffffff;
	bottom: 1px;
	content: ' ';
	margin-left: -10px;
}
.popover.right > .arrow{
	border-left-width: 0;
	border-right-color: #999999;
	border-right-color: rgba(0, 0, 0, 0.25);
	left: -11px;
	margin-top: -11px;
	top: 50%;
}
.popover.right > .arrow:after{
	border-left-width: 0;
	border-right-color: #ffffff;
	bottom: -10px;
	content: ' ';
	left: 1px;
}
.popover.bottom > .arrow{
	border-bottom-color: #999999;
	border-bottom-color: rgba(0, 0, 0, 0.25);
	border-top-width: 0;
	left: 50%;
	margin-left: -11px;
	top: -11px;
}
.popover.bottom > .arrow:after{
	border-bottom-color: #ffffff;
	border-top-width: 0;
	content: ' ';
	margin-left: -10px;
	top: 1px;
}
.popover.left > .arrow{
	border-left-color: #999999;
	border-left-color: rgba(0, 0, 0, 0.25);
	border-right-width: 0;
	margin-top: -11px;
	right: -11px;
	top: 50%;
}
.popover.left > .arrow:after{
	border-left-color: #ffffff;
	border-right-width: 0;
	bottom: -10px;
	content: ' ';
	right: 1px;
}
.carousel{
	position: relative;
}
.carousel-inner{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.carousel-inner > .item{
	display: none;
	position: relative;
	-webkit-transition: 0.6s ease-in-out left;
	     -o-transition: 0.6s ease-in-out left;
	        transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img{
	line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d){
	.carousel-inner > .item{
		-webkit-transition: -webkit-transform 0.6s ease-in-out;
		   -moz-transition:    -moz-transform 0.6s ease-in-out;
		     -o-transition:      -o-transform 0.6s ease-in-out;
		        transition:         transform 0.6s ease-in-out;

		-webkit-backface-visibility: hidden;
		   -moz-backface-visibility: hidden;
		        backface-visibility: hidden;
		-webkit-perspective: 1000px;
		   -moz-perspective: 1000px;
		        perspective: 1000px;
	}
	.carousel-inner > .item.next,
	.carousel-inner > .item.active.right{
		left: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		        transform: translate3d(100%, 0, 0);
	}
	.carousel-inner > .item.prev,
	.carousel-inner > .item.active.left{
		left: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		        transform: translate3d(-100%, 0, 0);
	}
	.carousel-inner > .item.next.left,
	.carousel-inner > .item.prev.right,
	.carousel-inner > .item.active{
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev{
	display: block;
}
.carousel-inner > .active{
	left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev{
	position: absolute;
	top: 0;
	width: 100%;
}
.carousel-inner > .next{
	left: 100%;
}
.carousel-inner > .prev{
	left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right{
	left: 0;
}
.carousel-inner > .active.left{
	left: -100%;
}
.carousel-inner > .active.right{
	left: 100%;
}
.carousel-control{
	bottom: 0;
	color: #ffffff;
	font-size: 50px;
	left: 0;
	opacity: 0.5;
	position: absolute;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	top: 0;
	width: 15%;

	filter: alpha(opacity=50);
}
.carousel-control.left{
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-image:      -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-image:         linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-repeat: repeat-x;

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right{
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-image:      -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-image:         linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-repeat: repeat-x;
	left: auto;
	right: 0;

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus{
	color: #ffffff;
	opacity: 0.9;
	outline: 0;
	text-decoration: none;

	filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right{
	display: inline-block;
	margin-top: -10px;
	position: absolute;
	top: 50%;
	z-index: 5;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left{
	left: 50%;
	margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right{
	margin-right: -10px;
	right: 50%;
}
.carousel-control .icon-prev,
.carousel-control .icon-next{
	font-family: serif;
	height: 20px;
	line-height: 1;
	width: 20px;
}
.carousel-control .icon-prev:before{
	content: '\2039';
}
.carousel-control .icon-next:before{
	content: '\203a';
}
.carousel-indicators{
	bottom: 10px;
	left: 50%;
	list-style: none;
	margin-left: -30%;
	padding-left: 0;
	position: absolute;
	text-align: center;
	width: 60%;
	z-index: 15;
}
.carousel-indicators li{
	background-color: #000000 \9;
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #ffffff;
	border-radius: 10px;
	cursor: pointer;
	display: inline-block;
	height: 10px;
	margin: 1px;
	text-indent: -999px;
	width: 10px;
}
.carousel-indicators .active{
	background-color: #ffffff;
	height: 12px;
	margin: 0;
	width: 12px;
}
.carousel-caption{
	bottom: 20px;
	color: #ffffff;
	left: 15%;
	padding-bottom: 20px;
	padding-top: 20px;
	position: absolute;
	right: 15%;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	z-index: 10;
}
.carousel-caption .btn{
	text-shadow: none;
}
@media screen and (min-width: 768px){
	.carousel-control .glyphicon-chevron-left,
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-prev,
	.carousel-control .icon-next{
		font-size: 30px;
		height: 30px;
		margin-top: -15px;
		width: 30px;
	}
	.carousel-control .glyphicon-chevron-left,
	.carousel-control .icon-prev{
		margin-left: -15px;
	}
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-next{
		margin-right: -15px;
	}
	.carousel-caption{
		left: 20%;
		padding-bottom: 30px;
		right: 20%;
	}
	.carousel-indicators{
		bottom: 20px;
	}
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after{
	content: ' ';
	display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after{
	clear: both;
}
.center-block{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.pull-right{
	float: right !important;
}
.pull-left{
	float: left !important;
}
.hide{
	display: none !important;
}
.show{
	display: block !important;
}
.invisible{
	visibility: hidden;
}
.text-hide{
	background-color: transparent;
	border: 0;
	color: transparent;
	font: 0/0 a;
	text-shadow: none;
}
.hidden{
	display: none !important;
}
.affix{
	position: fixed;
}
@-ms-viewport{
	width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg{
	display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block{
	display: none !important;
}
@media (max-width: 767px){
	.visible-xs{
		display: block !important;
	}
	table.visible-xs{
		display: table !important;
	}
	tr.visible-xs{
		display: table-row !important;
	}
	th.visible-xs,
	td.visible-xs{
		display: table-cell !important;
	}
}
@media (max-width: 767px){
	.visible-xs-block{
		display: block !important;
	}
}
@media (max-width: 767px){
	.visible-xs-inline{
		display: inline !important;
	}
}
@media (max-width: 767px){
	.visible-xs-inline-block{
		display: inline-block !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.visible-sm{
		display: block !important;
	}
	table.visible-sm{
		display: table !important;
	}
	tr.visible-sm{
		display: table-row !important;
	}
	th.visible-sm,
	td.visible-sm{
		display: table-cell !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.visible-sm-block{
		display: block !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.visible-sm-inline{
		display: inline !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.visible-sm-inline-block{
		display: inline-block !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.visible-md{
		display: block !important;
	}
	table.visible-md{
		display: table !important;
	}
	tr.visible-md{
		display: table-row !important;
	}
	th.visible-md,
	td.visible-md{
		display: table-cell !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.visible-md-block{
		display: block !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.visible-md-inline{
		display: inline !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.visible-md-inline-block{
		display: inline-block !important;
	}
}
@media (min-width: 1200px){
	.visible-lg{
		display: block !important;
	}
	table.visible-lg{
		display: table !important;
	}
	tr.visible-lg{
		display: table-row !important;
	}
	th.visible-lg,
	td.visible-lg{
		display: table-cell !important;
	}
}
@media (min-width: 1200px){
	.visible-lg-block{
		display: block !important;
	}
}
@media (min-width: 1200px){
	.visible-lg-inline{
		display: inline !important;
	}
}
@media (min-width: 1200px){
	.visible-lg-inline-block{
		display: inline-block !important;
	}
}
@media (max-width: 767px){
	.hidden-xs{
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.hidden-sm{
		display: none !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.hidden-md{
		display: none !important;
	}
}
@media (min-width: 1200px){
	.hidden-lg{
		display: none !important;
	}
}
.visible-print{
	display: none !important;
}
@media print{
	.visible-print{
		display: block !important;
	}
	table.visible-print{
		display: table !important;
	}
	tr.visible-print{
		display: table-row !important;
	}
	th.visible-print,
	td.visible-print{
		display: table-cell !important;
	}
}
.visible-print-block{
	display: none !important;
}
@media print{
	.visible-print-block{
		display: block !important;
	}
}
.visible-print-inline{
	display: none !important;
}
@media print{
	.visible-print-inline{
		display: inline !important;
	}
}
.visible-print-inline-block{
	display: none !important;
}
@media print{
	.visible-print-inline-block{
		display: inline-block !important;
	}
}
@media print{
	.hidden-print{
		display: none !important;
	}
}
.carousel-control{
	color: #ffffff;
	text-shadow: none;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-menu-left,
.carousel-control .glyphicon-menu-right{
	display: inline-block;
	margin-top: -10px;
	position: absolute;
	top: 50%;
	z-index: 5;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-menu-left{
	left: 50%;
	margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-menu-right{
	margin-right: -10px;
	right: 50%;
}
@media screen and (min-width: 768px){
	.carousel-control .glyphicon-menu-left,
	.carousel-control .glyphicon-menu-right,
	.carousel-control .icon-prev,
	.carousel-control .icon-next{
		color: #ffffff;
		font-size: 50px;
		height: 30px;
		margin-top: -15px;
		/* Opera */
		opacity: 1;
		text-shadow: none;
		/* W3C */
		-webkit-transform: scale(1, 2);
		/* Safari and Chrome */
		   -moz-transform: scale(1, 2);
		/* Firefox */
		    -ms-transform: scale(1, 2);
		/* IE 9 */
		     -o-transform: scale(1, 2);
		        transform: scale(1, 2);
		width: 30px;

		filter: alpha(opacity=100);
	}
	.carousel-control .glyphicon-menu-left,
	.carousel-control .icon-prev{
		margin-left: -15px;
	}
	.carousel-control .glyphicon-menu-right,
	.carousel-control .icon-next{
		margin-right: -15px;
	}
}
/* =Info Bar
-------------------------------------------------------------- */
/* =Header
-------------------------------------------------------------- */
.shadow-dark{
	background: url('../images/bottom-shadowheader.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	bottom: -8px;
	display: none;
	height: 10px;
	position: absolute;
	width: 100%;
}
.darkHeader .center-shadow{
	display: block;
}
/* =Footer
-------------------------------------------------------------- */
/* =Extras
-------------------------------------------------------------- */
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after{
	clear: both;
	content: '';
	display: block;
	height: 0;
	visibility: hidden;
}
/*css for main-navigaation*/
/* =Media Queries
-------------------------------------------------------------- */
@media all and (max-width: 660px){
	/* =Header
  -------------------------------------------------------------- */
	header h1#logo{
		display: block;
		float: none;
		height: 100px;
		line-height: 100px;
		margin: 0 auto;
		text-align: center;
	}
	header nav{
		display: block;
		float: none;
		height: 50px;
		margin: 0 auto;
		text-align: center;
	}
	header nav a{
		line-height: 50px;
		margin: 0 10px;
	}
	header.smaller{
		height: 75px;
	}
	header.smaller h1#logo{
		font-size: 30px;
		height: 40px;
		line-height: 40px;
	}
	header.smaller nav{
		height: 35px;
	}
	header.smaller nav a{
		line-height: 35px;
	}
}
@media all and (max-width: 767px){
	header.smaller{
		position: static;
	}
	.shadow-box-part{
		background-size: 100% 100%;
	}
}
@media all and (max-width: 600px){
	#info-bar a{
		display: block;
	}
	#info-bar span.all-tutorials,
	#info-bar span.back-to-tutorial{
		width: 100%;
	}
	#info-bar span.all-tutorials,
	#info-bar span.back-to-tutorial{
		float: none;
		text-align: center;
	}
	#info-bar span.all-tutorials{
		border-bottom: solid 1px #0793e2;
	}
}
@media all and (min-width: 768px){
	header.smaller .navbar-nav li .mega-menu{
		top: 65px;
	}
	header.smaller li.active1 .mega-menu span.mega-corenr1{
		top: -5px;
	}
	header.smaller li.active2 .mega-menu span.mega-corenr1{
		top: -5px;
	}
	header.smaller li.active3 .mega-menu span.mega-corenr1{
		top: -5px;
	}
	header.smaller li.active4 .mega-menu span.mega-corenr1{
		top: -5px;
	}
	header.smaller .logo > a{
		height: 115px;
	}
	.darkHeader{
		background-color: #ffffff;
		background-position: 29% bottom;
		background-repeat: no-repeat;
		background-size: 82% auto;
		height: 55px;
		opacity: 1;
		padding-bottom: 10px;
		position: fixed;
		top: 129px;

		-webkit-backface-visibility: hidden;
	}
}
@media all and (min-width: 1201px){
	.main-navagation.darkHeader > ul li a{
		font-size: 19px;
	}
}
/*
 You probably do not need to edit this at all.

 Add some SmartMenus required styles not covered in Bootstrap 3's default CSS.
 These are theme independent and should work with any Bootstrap 3 theme mod.
*/
/* sub menus arrows */
.navbar-nav .sub-arrow,
.navbar-nav .collapsible .sub-arrow{
	border-bottom: 4px dashed transparent;
	border-left: 4px dashed transparent;
	border-right: 4px dashed transparent;
	border-top: 4px solid;
	display: inline-block;
	height: 0;
	margin-left: 6px;
	margin-right: 0;
	margin-top: 0;
	overflow: hidden;
	position: static;
	vertical-align: middle;
	width: 0;
}
.navbar-fixed-bottom .sub-arrow{
	border-bottom: 4px solid;
	border-top: 4px dashed transparent;
	margin-top: -5px;
}
.navbar-nav ul .sub-arrow{
	border-bottom: 4px dashed transparent;
	border-left: 4px solid;
	border-top: 4px dashed transparent;
	margin-right: 15px;
	margin-top: 6px;
	position: absolute;
	right: 0;
}
.navbar-nav ul a.has-submenu{
	padding-right: 30px;
}
/* scrolling arrows for tall menus */
.navbar-nav span.scroll-up,
.navbar-nav span.scroll-down{
	display: none;
	height: 20px;
	overflow: hidden;
	position: absolute;
	text-align: center;
	visibility: hidden;
}
.navbar-nav span.scroll-up-arrow,
.navbar-nav span.scroll-down-arrow{
	border-bottom: 7px solid;
	border-left: 7px dashed transparent;
	border-right: 7px dashed transparent;
	border-top: 7px dashed transparent;
	height: 0;
	left: 50%;
	margin-left: -8px;
	overflow: hidden;
	position: absolute;
	top: -2px;
	width: 0;
}
.navbar-nav span.scroll-down-arrow{
	border-bottom: 7px dashed transparent;
	border-left: 7px dashed transparent;
	border-right: 7px dashed transparent;
	border-top: 7px solid;
	top: 6px;
}
/* add more indentation for 2+ level sub in collapsible mode - Bootstrap normally supports just 1 level sub menus */
.navbar-nav .collapsible ul .dropdown-menu > li > a,
.navbar-nav .collapsible ul .dropdown-menu .dropdown-header{
	padding-left: 35px;
}
.navbar-nav .collapsible ul ul .dropdown-menu > li > a,
.navbar-nav .collapsible ul ul .dropdown-menu .dropdown-header{
	padding-left: 45px;
}
.navbar-nav .collapsible ul ul ul .dropdown-menu > li > a,
.navbar-nav .collapsible ul ul ul .dropdown-menu .dropdown-header{
	padding-left: 55px;
}
.navbar-nav .collapsible ul ul ul ul .dropdown-menu > li > a,
.navbar-nav .collapsible ul ul ul ul .dropdown-menu .dropdown-header{
	padding-left: 65px;
}
/* fix SmartMenus sub menus auto width (subMenusMinWidth and subMenusMaxWidth options) */
.navbar-nav .dropdown-menu > li > a{
	text-align: left;
	white-space: normal;
}
.navbar-nav ul.sm-nowrap > li > a{
	white-space: nowrap;
}
/* fix .navbar-right subs alignment */
.navbar-right ul.dropdown-menu{
	left: 0;
	right: auto;
}
/* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
.navbar-nav .collapsible ul{
	display: none;
	left: auto !important;
	margin-left: 0 !important;
	margin-top: 0 !important;
	max-width: none !important;
	min-width: 0 !important;
	position: static !important;
	top: auto !important;
	width: auto !important;
}
.navbar-nav .collapsible ul.sm-nowrap > li > a{
	white-space: normal;
}
.navbar-nav .collapsible iframe{
	display: none;
}

/* Common styles of menus */
.dl-menuwrapper{
	float: left;
	max-width: 300px;
	position: relative;
	width: 100%;

	-webkit-perspective: 1000px;
	        perspective: 1000px;
	-webkit-perspective-origin: 50% 200%;
	        perspective-origin: 50% 200%;
}
.dl-menuwrapper:first-child{
	margin-right: 100px;
}
.dl-menuwrapper button{
	background: #cccccc;
	border: none;
	cursor: pointer;
	height: 36px;
	outline: none;
	overflow: hidden;
	position: relative;
	text-indent: -900em;
	width: 38px;
}
.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul{
	background: #aaaaaa;
}
.dl-menuwrapper button:after{
	background: #ffffff;
	box-shadow: 0 8px 0 #ffffff,  0 16px 0 #ffffff;
	content: '';
	height: 3px;
	left: 16%;
	position: absolute;
	top: 9px;
	width: 68%;
}
.dl-menuwrapper ul{
	border-bottom: 1px solid #dcdcdc;
	list-style: none;
	padding: 0;
	position: relative;

	-webkit-transform-style: preserve-3d;
	        transform-style: preserve-3d;
}
.dl-menuwrapper li{
	position: relative;
	-webkit-transition: all 0.6s ease 0.2s;
	   -moz-transition: all 0.6s ease 0.2s;
	    -ms-transition: all 0.6s ease 0.2s;
	        transition: all 0.6s ease 0.2s;
}
.dl-menuwrapper li a{
	color: #ffffff;
	display: block;
	font-size: 16px;
	font-weight: 300;
	line-height: 20px;
	outline: none;
	padding: 15px 20px;
	position: relative;
}
.no-touch .dl-menuwrapper li a:hover{
	background: rgba(255, 248, 213, 0.1);
}
.dl-menuwrapper li.dl-back > a{
	background: rgba(0, 0, 0, 0.1);
	padding-left: 30px;
}
.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after{
	color: #ffffff;
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: 22px;
	font-weight: bold;
	line-height: 50px;
	position: absolute;
	top: 0;

	-webkit-font-smoothing: antialiased;
	speak: none;
}
.dl-menuwrapper li.dl-back a{
	text-transform: capitalize;
}
.dl-menuwrapper li.dl-back:after{
	color: #ffffff;
	font-size: 22px;
	left: 10px;
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.dl-menuwrapper li > a:after{
	color: rgba(0, 0, 0, 0.15);
	right: 10px;
}
.dl-menuwrapper .dl-menu{
	margin: 5px 0 0 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	-webkit-transform: translateY(10px);
	        transform: translateY(10px);
	width: 100%;

	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.dl-menuwrapper .dl-menu.dl-menu-toggle{
	transition: all 0.3s ease;
}
.dl-menuwrapper .dl-menu.dl-menuopen{
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	        transform: translateY(0px);
}
/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu{
	display: none;
}
/*

When a submenu is openend, we will hide all li siblings.

For that we give a class to the parent menu called "dl-subview".

We also hide the submenu link.

The opened submenu will get the class "dl-subviewopen".

All this is done for any sub-level being entered.

*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a{
	display: none;
}
.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li{
	display: block;
}
/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu{
	left: 0;
	margin: 0;
	position: absolute;
	top: 50px;
	width: 100%;
}
/* Animation classes for moving out and in */
.dl-menu.dl-animate-out-1{
	-webkit-animation: MenuAnimOut1 0.4s;
	        animation: MenuAnimOut1 0.4s;
}
.dl-menu.dl-animate-out-2{
	-webkit-animation: MenuAnimOut2 0.3s ease-in-out;
	        animation: MenuAnimOut2 0.3s ease-in-out;
}
.dl-menu.dl-animate-out-3{
	-webkit-animation: MenuAnimOut3 0.4s ease;
	        animation: MenuAnimOut3 0.4s ease;
}
.dl-menu.dl-animate-out-4{
	-webkit-animation: MenuAnimOut4 0.4s ease;
	        animation: MenuAnimOut4 0.4s ease;
}
.dl-menu.dl-animate-out-5{
	-webkit-animation: MenuAnimOut5 0.4s ease;
	        animation: MenuAnimOut5 0.4s ease;
}
@-webkit-keyframes MenuAnimOut1{
	50%{
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	75%{
		opacity: 0.5;
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateZ(-500px) rotateY(0deg);
	}
}
@-webkit-keyframes MenuAnimOut2{
	100%{
		opacity: 0;
		-webkit-transform: translateX(-100%);
	}
}
@-webkit-keyframes MenuAnimOut3{
	100%{
		opacity: 0;
		-webkit-transform: translateZ(300px);
	}
}
@-webkit-keyframes MenuAnimOut4{
	100%{
		opacity: 0;
		-webkit-transform: translateZ(-300px);
	}
}
@-webkit-keyframes MenuAnimOut5{
	100%{
		opacity: 0;
		-webkit-transform: translateY(40%);
	}
}
@keyframes MenuAnimOut1{
	50%{
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		        transform: translateZ(-250px) rotateY(30deg);
	}
	75%{
		opacity: 0.5;
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		        transform: translateZ(-372.5px) rotateY(15deg);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		        transform: translateZ(-500px) rotateY(0deg);
	}
}
@keyframes MenuAnimOut2{
	100%{
		opacity: 0;
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
}
@keyframes MenuAnimOut3{
	100%{
		opacity: 0;
		-webkit-transform: translateZ(300px);
		        transform: translateZ(300px);
	}
}
@keyframes MenuAnimOut4{
	100%{
		opacity: 0;
		-webkit-transform: translateZ(-300px);
		        transform: translateZ(-300px);
	}
}
@keyframes MenuAnimOut5{
	100%{
		opacity: 0;
		-webkit-transform: translateY(40%);
		        transform: translateY(40%);
	}
}
.dl-menu.dl-animate-in-1{
	-webkit-animation: MenuAnimIn1 0.3s;
	        animation: MenuAnimIn1 0.3s;
}
.dl-menu.dl-animate-in-2{
	-webkit-animation: MenuAnimIn2 0.3s ease-in-out;
	        animation: MenuAnimIn2 0.3s ease-in-out;
}
.dl-menu.dl-animate-in-3{
	-webkit-animation: MenuAnimIn3 0.4s ease;
	        animation: MenuAnimIn3 0.4s ease;
}
.dl-menu.dl-animate-in-4{
	-webkit-animation: MenuAnimIn4 0.4s ease;
	        animation: MenuAnimIn4 0.4s ease;
}
.dl-menu.dl-animate-in-5{
	-webkit-animation: MenuAnimIn5 0.4s ease;
	        animation: MenuAnimIn5 0.4s ease;
}
@-webkit-keyframes MenuAnimIn1{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(-500px) rotateY(0deg);
	}
	20%{
		opacity: 0.5;
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px) rotateY(0deg);
	}
}
@-webkit-keyframes MenuAnimIn2{
	0%{
		opacity: 0;
		-webkit-transform: translateX(-100%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0px);
	}
}
@-webkit-keyframes MenuAnimIn3{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(300px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
	}
}
@-webkit-keyframes MenuAnimIn4{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(-300px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
	}
}
@-webkit-keyframes MenuAnimIn5{
	0%{
		opacity: 0;
		-webkit-transform: translateY(40%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}
@keyframes MenuAnimIn1{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		        transform: translateZ(-500px) rotateY(0deg);
	}
	20%{
		opacity: 0.5;
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		        transform: translateZ(-250px) rotateY(30deg);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px) rotateY(0deg);
		        transform: translateZ(0px) rotateY(0deg);
	}
}
@keyframes MenuAnimIn2{
	0%{
		opacity: 0;
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0px);
		        transform: translateX(0px);
	}
}
@keyframes MenuAnimIn3{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(300px);
		        transform: translateZ(300px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
		        transform: translateZ(0px);
	}
}
@keyframes MenuAnimIn4{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(-300px);
		        transform: translateZ(-300px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
		        transform: translateZ(0px);
	}
}
@keyframes MenuAnimIn5{
	0%{
		opacity: 0;
		-webkit-transform: translateY(40%);
		        transform: translateY(40%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
.dl-menuwrapper > .dl-submenu.dl-animate-in-1{
	-webkit-animation: SubMenuAnimIn1 0.4s ease;
	        animation: SubMenuAnimIn1 0.4s ease;
}
.dl-menuwrapper > .dl-submenu.dl-animate-in-2{
	-webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
	        animation: SubMenuAnimIn2 0.3s ease-in-out;
}
.dl-menuwrapper > .dl-submenu.dl-animate-in-3{
	-webkit-animation: SubMenuAnimIn3 0.4s ease;
	        animation: SubMenuAnimIn3 0.4s ease;
}
.dl-menuwrapper > .dl-submenu.dl-animate-in-4{
	-webkit-animation: SubMenuAnimIn4 0.4s ease;
	        animation: SubMenuAnimIn4 0.4s ease;
}
.dl-menuwrapper > .dl-submenu.dl-animate-in-5{
	-webkit-animation: SubMenuAnimIn5 0.4s ease;
	        animation: SubMenuAnimIn5 0.4s ease;
}
@-webkit-keyframes SubMenuAnimIn1{
	0%{
		opacity: 0;
		-webkit-transform: translateX(50%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0px);
	}
}
@-webkit-keyframes SubMenuAnimIn2{
	0%{
		opacity: 0;
		-webkit-transform: translateX(100%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0px);
	}
}
@-webkit-keyframes SubMenuAnimIn3{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(-300px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
	}
}
@-webkit-keyframes SubMenuAnimIn4{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(300px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
	}
}
@-webkit-keyframes SubMenuAnimIn5{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(-200px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0);
	}
}
@keyframes SubMenuAnimIn1{
	0%{
		opacity: 0;
		-webkit-transform: translateX(50%);
		        transform: translateX(50%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0px);
		        transform: translateX(0px);
	}
}
@keyframes SubMenuAnimIn2{
	0%{
		opacity: 0;
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0px);
		        transform: translateX(0px);
	}
}
@keyframes SubMenuAnimIn3{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(-300px);
		        transform: translateZ(-300px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
		        transform: translateZ(0px);
	}
}
@keyframes SubMenuAnimIn4{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(300px);
		        transform: translateZ(300px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
		        transform: translateZ(0px);
	}
}
@keyframes SubMenuAnimIn5{
	0%{
		opacity: 0;
		-webkit-transform: translateZ(-200px);
		        transform: translateZ(-200px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateZ(0);
		        transform: translateZ(0);
	}
}
.dl-menuwrapper > .dl-submenu.dl-animate-out-1{
	-webkit-animation: SubMenuAnimOut1 0.4s ease;
	        animation: SubMenuAnimOut1 0.4s ease;
}
.dl-menuwrapper > .dl-submenu.dl-animate-out-2{
	-webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
	        animation: SubMenuAnimOut2 0.3s ease-in-out;
}
.dl-menuwrapper > .dl-submenu.dl-animate-out-3{
	-webkit-animation: SubMenuAnimOut3 0.4s ease;
	        animation: SubMenuAnimOut3 0.4s ease;
}
.dl-menuwrapper > .dl-submenu.dl-animate-out-4{
	-webkit-animation: SubMenuAnimOut4 0.4s ease;
	        animation: SubMenuAnimOut4 0.4s ease;
}
.dl-menuwrapper > .dl-submenu.dl-animate-out-5{
	-webkit-animation: SubMenuAnimOut5 0.4s ease;
	        animation: SubMenuAnimOut5 0.4s ease;
}
@-webkit-keyframes SubMenuAnimOut1{
	0%{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateX(50%);
	}
}
@-webkit-keyframes SubMenuAnimOut2{
	0%{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateX(100%);
	}
}
@-webkit-keyframes SubMenuAnimOut3{
	0%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateZ(-300px);
	}
}
@-webkit-keyframes SubMenuAnimOut4{
	0%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateZ(300px);
	}
}
@-webkit-keyframes SubMenuAnimOut5{
	0%{
		opacity: 1;
		-webkit-transform: translateZ(0);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateZ(-200px);
	}
}
@keyframes SubMenuAnimOut1{
	0%{
		opacity: 1;
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateX(50%);
		        transform: translateX(50%);
	}
}
@keyframes SubMenuAnimOut2{
	0%{
		opacity: 1;
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
}
@keyframes SubMenuAnimOut3{
	0%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
		        transform: translateZ(0px);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateZ(-300px);
		        transform: translateZ(-300px);
	}
}
@keyframes SubMenuAnimOut4{
	0%{
		opacity: 1;
		-webkit-transform: translateZ(0px);
		        transform: translateZ(0px);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateZ(300px);
		        transform: translateZ(300px);
	}
}
@keyframes SubMenuAnimOut5{
	0%{
		opacity: 1;
		-webkit-transform: translateZ(0);
		        transform: translateZ(0);
	}
	100%{
		opacity: 0;
		-webkit-transform: translateZ(-200px);
		        transform: translateZ(-200px);
	}
}
/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu{
	opacity: 1;
	position: relative;
	-webkit-transform: none;
	        transform: none;
}
.no-js .dl-menuwrapper li .dl-submenu{
	display: block;
}
.no-js .dl-menuwrapper li.dl-back{
	display: none;
}
.no-js .dl-menuwrapper li > a:not(:only-child){
	background: rgba(0, 0, 0, 0.1);
}
.no-js .dl-menuwrapper li > a:not(:only-child):after{
	content: '';
}
/* Colors for demos */
/* Demo 1 */
.demo-1 .dl-menuwrapper button{
	background: #c62860;
}
.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul{
	background: #9e1847;
}
/* Demo 2 */
.demo-2 .dl-menuwrapper button{
	background: #5cc7ec;
	border: 1px solid #b5e6f6;
}
.demo-2 .dl-menuwrapper button:hover,
.demo-2 .dl-menuwrapper button.dl-active,
.demo-2 .dl-menuwrapper ul{
	background: rgba(92, 199, 236, 0.9) none repeat scroll 0 0;
	-webkit-transition: all 0.6s ease 0.2s;
	   -moz-transition: all 0.6s ease 0.2s;
	    -ms-transition: all 0.6s ease 0.2s;
	        transition: all 0.6s ease 0.2s;
}
/* Demo 3 */
.demo-3 .dl-menuwrapper button{
	background: rgba(92, 199, 236, 0.9) none repeat scroll 0 0;
}
.dl-menuwrapper li:hover{
	background: #5cc7ec none repeat scroll 0 0;
}
.demo-3 .dl-menuwrapper button:hover,
.demo-3 .dl-menuwrapper button.dl-active,
.demo-3 .dl-menuwrapper ul{
	background: #00b4ae;
}
/* Demo 4 */
.demo-4 .dl-menuwrapper button{
	background: #90b912;
}
.demo-4 .dl-menuwrapper button:hover,
.demo-4 .dl-menuwrapper button.dl-active,
.demo-4 .dl-menuwrapper ul{
	background: #79a002;
}
/* Demo 5 */
.demo-5 .dl-menuwrapper button{
	background: #744783;
}
.demo-5 .dl-menuwrapper button:hover,
.demo-5 .dl-menuwrapper button.dl-active,
.demo-5 .dl-menuwrapper ul{
	background: #643771;
}
/*css for menu only*/
/* new css
============================ */
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
@media only screen and (min-width: 768px){
	.slideDown{
		-webkit-animation-duration: 1s;
		        animation-duration: 1s;
		-webkit-animation-name: slideDown;
		        animation-name: slideDown;
		-webkit-animation-timing-function: ease;
		        animation-timing-function: ease;
		visibility: visible !important;
	}
	@keyframes slideDown{
		0%{
			transform: translateY(-100%);
		}
		50%{
			transform: translateY(8%);
		}
		65%{
			transform: translateY(-4%);
		}
		80%{
			transform: translateY(4%);
		}
		95%{
			transform: translateY(-2%);
		}
		100%{
			transform: translateY(0%);
		}
	}
	@-webkit-keyframes slideDown{
		0%{
			-webkit-transform: translateY(-100%);
		}
		50%{
			-webkit-transform: translateY(8%);
		}
		65%{
			-webkit-transform: translateY(-4%);
		}
		80%{
			-webkit-transform: translateY(4%);
		}
		95%{
			-webkit-transform: translateY(-2%);
		}
		100%{
			-webkit-transform: translateY(0%);
		}
	}
	/*
==============================================
slideUp
==============================================
*/
	.slideUp{
		-webkit-animation-duration: 0.6s;
		        animation-duration: 0.6s;
		-webkit-animation-name: slideUp;
		        animation-name: slideUp;
		-webkit-animation-timing-function: ease;
		        animation-timing-function: ease;
		visibility: visible !important;
	}
	@keyframes slideUp{
		0%{
			transform: translateY(100%);
		}
		100%{
			transform: translateY(0%);
		}
	}
	@-webkit-keyframes slideUp{
		0%{
			-webkit-transform: translateY(100%);
		}
		100%{
			-webkit-transform: translateY(0%);
		}
	}
	/*
==============================================
slideLeft
==============================================
*/
	.slideLeft{
		-webkit-animation-duration: 1s;
		        animation-duration: 1s;
		-webkit-animation-name: slideLeft;
		        animation-name: slideLeft;
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		visibility: visible !important;
	}
	@keyframes slideLeft{
		0%{
			transform: translateX(150%);
		}
		50%{
			transform: translateX(-8%);
		}
		65%{
			transform: translateX(4%);
		}
		80%{
			transform: translateX(-4%);
		}
		95%{
			transform: translateX(2%);
		}
		100%{
			transform: translateX(0%);
		}
	}
	@-webkit-keyframes slideLeft{
		0%{
			-webkit-transform: translateX(150%);
		}
		50%{
			-webkit-transform: translateX(-8%);
		}
		65%{
			-webkit-transform: translateX(4%);
		}
		80%{
			-webkit-transform: translateX(-4%);
		}
		95%{
			-webkit-transform: translateX(2%);
		}
		100%{
			-webkit-transform: translateX(0%);
		}
	}
	/*
==============================================
slideRight
==============================================
*/
	.slideRight{
		-webkit-animation-duration: 1s;
		        animation-duration: 1s;
		-webkit-animation-name: slideRight;
		        animation-name: slideRight;
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		visibility: visible !important;
	}
	@keyframes slideRight{
		0%{
			transform: translateX(-150%);
		}
		50%{
			transform: translateX(8%);
		}
		65%{
			transform: translateX(-4%);
		}
		80%{
			transform: translateX(4%);
		}
		95%{
			transform: translateX(-2%);
		}
		100%{
			transform: translateX(0%);
		}
	}
	@-webkit-keyframes slideRight{
		0%{
			-webkit-transform: translateX(-150%);
		}
		50%{
			-webkit-transform: translateX(8%);
		}
		65%{
			-webkit-transform: translateX(-4%);
		}
		80%{
			-webkit-transform: translateX(4%);
		}
		95%{
			-webkit-transform: translateX(-2%);
		}
		100%{
			-webkit-transform: translateX(0%);
		}
	}
	/*
==============================================
slideExpandUp
==============================================
*/
	.slideExpandUp{
		-webkit-animation-duration: 1.6s;
		        animation-duration: 1.6s;
		-webkit-animation-name: slideExpandUp;
		        animation-name: slideExpandUp;
		-webkit-animation-timing-function: ease -out;
		        animation-timing-function: ease-out;
		visibility: visible !important;
	}
	@keyframes slideExpandUp{
		0%{
			transform: translateY(100%) scaleX(0.5);
		}
		30%{
			transform: translateY(-8%) scaleX(0.5);
		}
		40%{
			transform: translateY(2%) scaleX(0.5);
		}
		50%{
			transform: translateY(0%) scaleX(1.1);
		}
		60%{
			transform: translateY(0%) scaleX(0.9);
		}
		70%{
			transform: translateY(0%) scaleX(1.05);
		}
		80%{
			transform: translateY(0%) scaleX(0.95);
		}
		90%{
			transform: translateY(0%) scaleX(1.02);
		}
		100%{
			transform: translateY(0%) scaleX(1);
		}
	}
	@-webkit-keyframes slideExpandUp{
		0%{
			-webkit-transform: translateY(100%) scaleX(0.5);
		}
		30%{
			-webkit-transform: translateY(-8%) scaleX(0.5);
		}
		40%{
			-webkit-transform: translateY(2%) scaleX(0.5);
		}
		50%{
			-webkit-transform: translateY(0%) scaleX(1.1);
		}
		60%{
			-webkit-transform: translateY(0%) scaleX(0.9);
		}
		70%{
			-webkit-transform: translateY(0%) scaleX(1.05);
		}
		80%{
			-webkit-transform: translateY(0%) scaleX(0.95);
		}
		90%{
			-webkit-transform: translateY(0%) scaleX(1.02);
		}
		100%{
			-webkit-transform: translateY(0%) scaleX(1);
		}
	}
	/*
==============================================
expandUp
==============================================
*/
	.expandUp{
		-webkit-animation-duration: 0.7s;
		        animation-duration: 0.7s;
		-webkit-animation-name: expandUp;
		        animation-name: expandUp;
		-webkit-animation-timing-function: ease;
		        animation-timing-function: ease;
		visibility: visible !important;
	}
	@keyframes expandUp{
		0%{
			transform: translateY(100%) scale(0.6) scaleY(0.5);
		}
		60%{
			transform: translateY(-7%) scaleY(1.12);
		}
		75%{
			transform: translateY(3%);
		}
		100%{
			transform: translateY(0%) scale(1) scaleY(1);
		}
	}
	@-webkit-keyframes expandUp{
		0%{
			-webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
		}
		60%{
			-webkit-transform: translateY(-7%) scaleY(1.12);
		}
		75%{
			-webkit-transform: translateY(3%);
		}
		100%{
			-webkit-transform: translateY(0%) scale(1) scaleY(1);
		}
	}
	/*
==============================================
fadeIn
==============================================
*/
	.fadeIn{
		-webkit-animation-duration: 1.5s;
		        animation-duration: 1.5s;
		-webkit-animation-name: fadeIn;
		        animation-name: fadeIn;
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		visibility: visible !important;
	}
	@keyframes fadeIn{
		0%{
			opacity: 0.0;
			transform: scale(0);
		}
		60%{
			transform: scale(1.1);
		}
		80%{
			opacity: 1;
			transform: scale(0.9);
		}
		100%{
			opacity: 1;
			transform: scale(1);
		}
	}
	@-webkit-keyframes fadeIn{
		0%{
			opacity: 0.0;
			-webkit-transform: scale(0);
		}
		60%{
			-webkit-transform: scale(1.1);
		}
		80%{
			opacity: 1;
			-webkit-transform: scale(0.9);
		}
		100%{
			opacity: 1;
			-webkit-transform: scale(1);
		}
	}
	/*
==============================================
expandOpen
==============================================
*/
	.expandOpen{
		-webkit-animation-duration: 1.2s;
		        animation-duration: 1.2s;
		-webkit-animation-name: expandOpen;
		        animation-name: expandOpen;
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		visibility: visible !important;
	}
	@keyframes expandOpen{
		0%{
			transform: scale(1.8);
		}
		50%{
			transform: scale(0.95);
		}
		80%{
			transform: scale(1.05);
		}
		90%{
			transform: scale(0.98);
		}
		100%{
			transform: scale(1);
		}
	}
	@-webkit-keyframes expandOpen{
		0%{
			-webkit-transform: scale(1.8);
		}
		50%{
			-webkit-transform: scale(0.95);
		}
		80%{
			-webkit-transform: scale(1.05);
		}
		90%{
			-webkit-transform: scale(0.98);
		}
		100%{
			-webkit-transform: scale(1);
		}
	}
	/*
==============================================
bigEntrance
==============================================
*/
	.bigEntrance{
		-webkit-animation-duration: 1.6s;
		        animation-duration: 1.6s;
		-webkit-animation-name: bigEntrance;
		        animation-name: bigEntrance;
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		visibility: visible !important;
	}
	@keyframes bigEntrance{
		0%{
			opacity: 0.2;
			transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
		}
		30%{
			opacity: 1;
			transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
		}
		45%{
			opacity: 1;
			transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
		}
		60%{
			opacity: 1;
			transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
		}
		75%{
			opacity: 1;
			transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
		}
		90%{
			opacity: 1;
			transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
		}
		100%{
			opacity: 1;
			transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
		}
	}
	@-webkit-keyframes bigEntrance{
		0%{
			opacity: 0.2;
			-webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
		}
		30%{
			opacity: 1;
			-webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
		}
		45%{
			opacity: 1;
			-webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
		}
		60%{
			opacity: 1;
			-webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
		}
		75%{
			opacity: 1;
			-webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
		}
		90%{
			opacity: 1;
			-webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
		}
		100%{
			opacity: 1;
			-webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
		}
	}
	/*
==============================================
hatch
==============================================
*/
	.hatch{
		-webkit-animation-duration: 2s;
		        animation-duration: 2s;
		-webkit-animation-name: hatch;
		        animation-name: hatch;
		-webkit-animation-timing-function: ease-in-out;
		        animation-timing-function: ease-in-out;
		-webkit-transform-origin: 50% 100%;
		    -ms-transform-origin: 50% 100%;
		        transform-origin: 50% 100%;
		visibility: visible !important;
	}
	@keyframes hatch{
		0%{
			transform: rotate(0deg) scaleY(0.6);
		}
		20%{
			transform: rotate(-2deg) scaleY(1.05);
		}
		35%{
			transform: rotate(2deg) scaleY(1);
		}
		50%{
			transform: rotate(-2deg);
		}
		65%{
			transform: rotate(1deg);
		}
		80%{
			transform: rotate(-1deg);
		}
		100%{
			transform: rotate(0deg);
		}
	}
	@-webkit-keyframes hatch{
		0%{
			-webkit-transform: rotate(0deg) scaleY(0.6);
		}
		20%{
			-webkit-transform: rotate(-2deg) scaleY(1.05);
		}
		35%{
			-webkit-transform: rotate(2deg) scaleY(1);
		}
		50%{
			-webkit-transform: rotate(-2deg);
		}
		65%{
			-webkit-transform: rotate(1deg);
		}
		80%{
			-webkit-transform: rotate(-1deg);
		}
		100%{
			-webkit-transform: rotate(0deg);
		}
	}
	/*
==============================================
bounce
==============================================
*/
	.bounce{
		-webkit-animation-duration: 1.6s;
		        animation-duration: 1.6s;
		-webkit-animation-name: bounce;
		        animation-name: bounce;
		-webkit-animation-timing-function: ease;
		        animation-timing-function: ease;
		-webkit-transform-origin: 50% 100%;
		    -ms-transform-origin: 50% 100%;
		        transform-origin: 50% 100%;
	}
	@keyframes bounce{
		0%{
			transform: translateY(0%) scaleY(0.6);
		}
		60%{
			transform: translateY(-100%) scaleY(1.1);
		}
		70%{
			transform: translateY(0%) scaleY(0.95) scaleX(1.05);
		}
		80%{
			transform: translateY(0%) scaleY(1.05) scaleX(1);
		}
		90%{
			transform: translateY(0%) scaleY(0.95) scaleX(1);
		}
		100%{
			transform: translateY(0%) scaleY(1) scaleX(1);
		}
	}
	@-webkit-keyframes bounce{
		0%{
			-webkit-transform: translateY(0%) scaleY(0.6);
		}
		60%{
			-webkit-transform: translateY(-100%) scaleY(1.1);
		}
		70%{
			-webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
		}
		80%{
			-webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
		}
		90%{
			-webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
		}
		100%{
			-webkit-transform: translateY(0%) scaleY(1) scaleX(1);
		}
	}
	/*
==============================================
pulse
==============================================
*/
	.pulse{
		-webkit-animation-duration: 1.5s;
		        animation-duration: 1.5s;
		-webkit-animation-iteration-count: infinite;
		        animation-iteration-count: infinite;
		-webkit-animation-name: pulse;
		        animation-name: pulse;
	}
	@keyframes pulse{
		0%{
			opacity: 0.7;
			transform: scale(0.9);
		}
		50%{
			opacity: 1;
			transform: scale(1);
		}
		100%{
			opacity: 0.7;
			transform: scale(0.9);
		}
	}
	@-webkit-keyframes pulse{
		0%{
			opacity: 0.7;
			-webkit-transform: scale(0.95);
		}
		50%{
			opacity: 1;
			-webkit-transform: scale(1);
		}
		100%{
			opacity: 0.7;
			-webkit-transform: scale(0.95);
		}
	}
	/*
==============================================
floating
==============================================
*/
	.floating{
		-webkit-animation-duration: 1.5s;
		        animation-duration: 1.5s;
		-webkit-animation-iteration-count: infinite;
		        animation-iteration-count: infinite;
		-webkit-animation-name: floating;
		        animation-name: floating;
	}
	@keyframes floating{
		0%{
			transform: translateY(0%);
		}
		50%{
			transform: translateY(8%);
		}
		100%{
			transform: translateY(0%);
		}
	}
	@-webkit-keyframes floating{
		0%{
			-webkit-transform: translateY(0%);
		}
		50%{
			-webkit-transform: translateY(8%);
		}
		100%{
			-webkit-transform: translateY(0%);
		}
	}
	/*
==============================================
tossing
==============================================
*/
	.tossing{
		-webkit-animation-duration: 2.5s;
		        animation-duration: 2.5s;
		-webkit-animation-iteration-count: infinite;
		        animation-iteration-count: infinite;
		-webkit-animation-name: tossing;
		        animation-name: tossing;
	}
	@keyframes tossing{
		0%{
			transform: rotate(-4deg);
		}
		50%{
			transform: rotate(4deg);
		}
		100%{
			transform: rotate(-4deg);
		}
	}
	@-webkit-keyframes tossing{
		0%{
			-webkit-transform: rotate(-4deg);
		}
		50%{
			-webkit-transform: rotate(4deg);
		}
		100%{
			-webkit-transform: rotate(-4deg);
		}
	}
	/*
==============================================
pullUp
==============================================
*/
	.pullUp{
		-webkit-animation-duration: 1.1s;
		        animation-duration: 1.1s;
		-webkit-animation-name: pullUp;
		        animation-name: pullUp;
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		-webkit-transform-origin: 50% 100%;
		    -ms-transform-origin: 50% 100%;
		        transform-origin: 50% 100%;
	}
	@keyframes pullUp{
		0%{
			transform: scaleY(0.1);
		}
		40%{
			transform: scaleY(1.02);
		}
		60%{
			transform: scaleY(0.98);
		}
		80%{
			transform: scaleY(1.01);
		}
		100%{
			transform: scaleY(0.98);
		}
		80%{
			transform: scaleY(1.01);
		}
		100%{
			transform: scaleY(1);
		}
	}
	@-webkit-keyframes pullUp{
		0%{
			-webkit-transform: scaleY(0.1);
		}
		40%{
			-webkit-transform: scaleY(1.02);
		}
		60%{
			-webkit-transform: scaleY(0.98);
		}
		80%{
			-webkit-transform: scaleY(1.01);
		}
		100%{
			-webkit-transform: scaleY(0.98);
		}
		80%{
			-webkit-transform: scaleY(1.01);
		}
		100%{
			-webkit-transform: scaleY(1);
		}
	}
	/*
==============================================
pullDown
==============================================
*/
	.pullDown{
		-webkit-animation-duration: 0.6s;
		        animation-duration: 0.6s;
		-webkit-animation-name: pullDown;
		        animation-name: pullDown;
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		-webkit-transform-origin: 50% 0;
		    -ms-transform-origin: 50% 0;
		        transform-origin: 50% 0;
	}
	@keyframes pullDown{
		0%{
			transform: scaleY(0.1);
		}
		100%{
			transform: scaleY(1);
		}
	}
	@-webkit-keyframes pullDown{
		0%{
			-webkit-transform: scaleY(0.1);
		}
		100%{
			-webkit-transform: scaleY(1);
		}
	}
	/*
==============================================
stretchLeft
==============================================
*/
	.stretchLeft{
		-webkit-animation-duration: 1.5s;
		        animation-duration: 1.5s;
		-webkit-animation-name: stretchLeft;
		        animation-name: stretchLeft;
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		-webkit-transform-origin: 100% 0;
		    -ms-transform-origin: 100% 0;
		        transform-origin: 100% 0;
	}
	@keyframes stretchLeft{
		0%{
			transform: scaleX(0.3);
		}
		40%{
			transform: scaleX(1.02);
		}
		60%{
			transform: scaleX(0.98);
		}
		80%{
			transform: scaleX(1.01);
		}
		100%{
			transform: scaleX(0.98);
		}
		80%{
			transform: scaleX(1.01);
		}
		100%{
			transform: scaleX(1);
		}
	}
	@-webkit-keyframes stretchLeft{
		0%{
			-webkit-transform: scaleX(0.3);
		}
		40%{
			-webkit-transform: scaleX(1.02);
		}
		60%{
			-webkit-transform: scaleX(0.98);
		}
		80%{
			-webkit-transform: scaleX(1.01);
		}
		100%{
			-webkit-transform: scaleX(0.98);
		}
		80%{
			-webkit-transform: scaleX(1.01);
		}
		100%{
			-webkit-transform: scaleX(1);
		}
	}
	/*
==============================================
stretchRight
==============================================
*/
	.stretchRight{
		-webkit-animation-duration: 1.5s;
		        animation-duration: 1.5s;
		-webkit-animation-name: stretchRight;
		        animation-name: stretchRight;
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
		-webkit-transform-origin: 0 0;
		    -ms-transform-origin: 0 0;
		        transform-origin: 0 0;
	}
	@keyframes stretchRight{
		0%{
			transform: scaleX(0.3);
		}
		40%{
			transform: scaleX(1.02);
		}
		60%{
			transform: scaleX(0.98);
		}
		80%{
			transform: scaleX(1.01);
		}
		100%{
			transform: scaleX(0.98);
		}
		80%{
			transform: scaleX(1.01);
		}
		100%{
			transform: scaleX(1);
		}
	}
	@-webkit-keyframes stretchRight{
		0%{
			-webkit-transform: scaleX(0.3);
		}
		40%{
			-webkit-transform: scaleX(1.02);
		}
		60%{
			-webkit-transform: scaleX(0.98);
		}
		80%{
			-webkit-transform: scaleX(1.01);
		}
		100%{
			-webkit-transform: scaleX(0.98);
		}
		80%{
			-webkit-transform: scaleX(1.01);
		}
		100%{
			-webkit-transform: scaleX(1);
		}
	}
}
.sss{
	display: block;
	height: 0;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
}
.ssslide{
	display: none;
	left: 0;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.ssslide img{
	display: block;
	height: auto;
	margin: 0;
	max-width: 100%;
	padding: 0;
	position: relative;
}
.footer .bx-next,
.footer .bx-prev{
	height: 39px;
	margin: 0;
	position: absolute;
	text-indent: -9999px;
	top: 0;
	width: 18px;
}
.footer .bx-wrapper{
	height: 87px;
	position: relative;
	width: 87px !important;
}
.slider > img{
	height: 87px;
	width: 87px !important;
}
.footer .bx-prev{
	background: url('../images/footer-prev-arr.png') no-repeat;
	left: -64px;
	text-indent: -9999px;
	top: 28%;
}
.footer .bx-next{
	background: url('../images/footer-next-arr.png') no-repeat;
	right: -63px;
	text-indent: -9999px;
	top: 28%;
}
.footer .bx-prev:hover,
.footer .bx-next:hover{
	cursor: pointer;
}
.image_box_container{
	display: block;
	line-height: normal;
	margin: 20px 0 20px 0;
	overflow: hidden;
	padding: 0;
	text-align: center;
	vertical-align: baseline;
	width: 100%;
}
.image_box_container ul.image_container{
	display: block;
	height: 101px;
	line-height: normal;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
	vertical-align: baseline;
	width: 100%;
}
.image_box_container ul.image_container li{
	float: left;
	height: 99px;
	line-height: normal;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	margin: 0 0 0 0;
	padding: 0;
	position: relative;
	text-align: center;
	vertical-align: baseline;
	width: 16.5%;
}
.image_box_container ul.image_container li .image{
	border: none;
	cursor: pointer;
	display: inline-block;
	height: 116px;
	line-height: normal;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	padding: 0;
	position: relative;
	text-align: center;
	transform: translateZ(0);
	vertical-align: middle;
	width: 116px;
}
.image_box_container ul.image_container li .image img{
	border-color: #a68dbf;
	        border-radius: 50%;
	   -moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-style: solid;
	border-width: 3px;
	cursor: pointer;
	display: inline;
	height: 96px;
	line-height: normal;
	margin: 0;
	padding: 0;
	text-align: center;
	-webkit-transition: border 1s linear;
	   -moz-transition: border 1s linear;
	     -o-transition: border 1s linear;
	        transition: border 1s linear;
	vertical-align: middle;
	width: 96px;
}
.image_box_container ul.image_container li .image:before{
	border-color: #fae8f4;
	        border-radius: 50%;
	   -moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-style: solid;
	border-width: 10px;
	bottom: 10px;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: -10px;
	-webkit-transition-duration: 0.3s;
	        transition-duration: 0.3s;
	-webkit-transition-property: top, right, bottom, left, border-width;
	        transition-property: top, right, bottom, left, border-width;
}
.image_box_container ul.image_container li .image:hover:before,
.image_box_container ul.image_container li .image:focus:before,
.image_box_container ul.image_container li .image:active:before{
	border-width: 15px;
	bottom: 5px;
	left: -5px;
	right: -5px;
	top: -15px;
}
.image_box_container ul.image_container li .circle-1:hover:before{
	border-color: #ffeae2;
}
.image_box_container ul.image_container li .circle-1:hover:before img{
	border-color: #f0751b;
}
.image_box_container ul.image_container li .circle-2:hover:before{
	border-color: #d7fdff;
}
.image_box_container ul.image_container li .circle-2:hover:before img{
	border-color: #10bcc6;
}
.image_box_container ul.image_container li .circle-3:hover:before{
	border-color: #fddee0;
}
.image_box_container ul.image_container li .circle-3:hover:before img{
	border-color: #cf464a;
}
.image_box_container ul.image_container li .circle-4:hover:before{
	border-color: #f4e2ee;
}
.image_box_container ul.image_container li .circle-4:hover:before img{
	border-color: #ca459d;
}
.image_box_container ul.image_container li .circle-5:hover:before{
	border-color: #f2f8d6;
}
.image_box_container ul.image_container li .circle-5:hover:before img{
	border-color: #89a20f;
}
.image_box_container ul.image_container li .circle-6:hover:before{
	border-color: #fef7ca;
}
.image_box_container ul.image_container li .circle-6:hover:before img{
	border-color: #e9a503;
}
.image_box_container ul.image_container li .name{
	bottom: 0;
	color: #693391;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	left: 0;
	line-height: normal;
	margin-top: 150px;
	padding: 0;
	position: absolute;
	right: 0;
	text-align: center;
	text-transform: uppercase;
	top: 0;
	vertical-align: baseline;
	width: 100%;
}
.image_box_container ul.image_container li .name1_hv{
	color: #f0751b;
}
.image_box_container ul.image_container li .name2_hv{
	color: #10bcc6;
}
.image_box_container ul.image_container li .name3_hv{
	color: #cf464a;
}
.image_box_container ul.image_container li .name4_hv{
	color: #c9499c;
}
.image_box_container ul.image_container li .name5_hv{
	color: #89a20f;
}
.image_box_container ul.image_container li .name6_hv{
	color: #e9a503;
}
.image_box_container .display_content{
	float: left;
	list-style: none;
	margin: 70px 0 0 0 ;
	width: 100%;
}
.image_box_container .display_content .image1_content,
.image_box_container .display_content .image2_content,
.image_box_container .display_content .image3_content,
.image_box_container .display_content .image4_content,
.image_box_container .display_content .image5_content,
.image_box_container .display_content .image6_content{
	background-color: rgba(255, 246, 26, 0.22);
	color: #df83c0;
	display: none;
	float: left;
	font-family: 'Lato';
	font-size: 17px;
	height: inherit;
	line-height: 24px;
	list-style: none;
	margin: 20px 0 0 0;
	opacity: 0;
	padding: 30px 0 30px 0;
	position: relative;
	text-align: center;
	text-transform: none;
	-webkit-transition: opacity 5s linear;
	   -moz-transition: opacity 5s linear;
	     -o-transition: opacity 5s linear;
	        transition: opacity 5s linear;
	width: 100%;
}
.image_box_container .display_content .image1_content .text-top-arrow,
.image_box_container .display_content .image2_content .text-top-arrow,
.image_box_container .display_content .image3_content .text-top-arrow,
.image_box_container .display_content .image4_content .text-top-arrow,
.image_box_container .display_content .image5_content .text-top-arrow,
.image_box_container .display_content .image6_content .text-top-arrow{
	content: ' ';
	left: 0;
	margin: 0;
	padding: 0;
	position: relative;
	top: -30px;
	width: 16.5%;
}
.image_box_container .display_content .image1_content .text-top-arrow:after,
.image_box_container .display_content .image2_content .text-top-arrow:after,
.image_box_container .display_content .image3_content .text-top-arrow:after,
.image_box_container .display_content .image4_content .text-top-arrow:after,
.image_box_container .display_content .image5_content .text-top-arrow:after,
.image_box_container .display_content .image6_content .text-top-arrow:after,
.image_box_container .display_content .image1_content .text-top-arrow:before,
.image_box_container .display_content .image2_content .text-top-arrow:before,
.image_box_container .display_content .image3_content .text-top-arrow:before,
.image_box_container .display_content .image4_content .text-top-arrow:before,
.image_box_container .display_content .image5_content .text-top-arrow:before,
.image_box_container .display_content .image6_content .text-top-arrow:before{
	border: solid transparent;
	border-color: rgba(136, 183, 213, 0);
	border-width: 10px;
	bottom: 100%;
	content: ' ';
	height: 0;
	left: 50%;
	margin-left: -10px;
	pointer-events: none;
	position: absolute;
	width: 0;
}
.image_box_container .display_content .image1_content{
	background-color: #ffeae2;
	color: #f0751b;
}
.image_box_container .display_content .image1_content .text-top-arrow{
	left: 0;
}
.image_box_container .display_content .image1_content .text-top-arrow:before{
	border-bottom-color: #ffeae2;
}
.image_box_container .display_content .image2_content{
	background-color: #d7fdff;
	color: #10bcc6;
}
.image_box_container .display_content .image2_content .text-top-arrow{
	left: 16.5%;
}
.image_box_container .display_content .image2_content .text-top-arrow:before{
	border-bottom-color: #d7fdff;
}
.image_box_container .display_content .image3_content{
	background-color: #fddee0;
	color: #cf464a;
}
.image_box_container .display_content .image3_content .text-top-arrow{
	left: 33%;
}
.image_box_container .display_content .image3_content .text-top-arrow:before{
	border-bottom-color: #fddee0;
}
.image_box_container .display_content .image4_content{
	background-color: #fae8f4;
	color: #c9499c;
}
.image_box_container .display_content .image4_content .text-top-arrow{
	left: 49.5%;
}
.image_box_container .display_content .image4_content .text-top-arrow:before{
	border-bottom-color: #fae8f4;
}
.image_box_container .display_content .image5_content{
	background-color: #f2f8d6;
	color: #89a20f;
}
.image_box_container .display_content .image5_content .text-top-arrow{
	left: 66%;
}
.image_box_container .display_content .image5_content .text-top-arrow:before{
	border-bottom-color: #f2f8d6;
}
.image_box_container .display_content .image6_content{
	background-color: #fef7ca;
	color: #e9a503;
}
.image_box_container .display_content .image6_content .text-top-arrow{
	left: 82.5%;
}
.image_box_container .display_content .image6_content .text-top-arrow:before{
	border-bottom-color: #fef7ca;
}
.image_box_container .display_content .dsp_content{
	opacity: 1;
}
/*


add breadcrump instead of left menu

*/
@font-face{
	font-family: 'MyriadProRegular';
	font-style: normal;
	font-weight: normal;

	src: url('MyriadPro-Regular.eot');
	src: local('?'), url('MyriadPro-Regular.woff') format('woff'), url('MyriadPro-Regular.ttf') format('truetype'), url('MyriadPro-Regular.svg') format('svg');
}
@font-face{
	font-family: 'MyriadProBold';
	font-style: normal;
	font-weight: normal;

	src: url('myriadpro-bold-webfont.eot');
	src: url('myriadpro-bold-webfont.eot?#iefix') format('embedded-opentype'), url('myriadpro-bold-webfont.woff') format('woff'), url('myriadpro-bold-webfont.ttf') format('truetype'), url('myriadpro-bold-webfont.svg#MyriadProBold') format('svg');
}
@font-face{
	font-family: 'MyriadPro-Light';
	font-style: normal;
	font-weight: normal;

	src: url('myriadprolight.eot');
	src: url('myriadprolight.eot?#iefix') format('embedded-opentype'), url('myriadprolight.woff') format('woff'), url('myriadprolight.ttf') format('truetype'), url('myriadprolight.svg#MyriadPro-Light') format('svg');
}
a:hover{
	opacity: 0.4;
	text-decoration: none;
	-webkit-transition: all 0.1s linear;
	   -moz-transition: all 0.1s linear;
	     -o-transition: all 0.1s linear;
	        transition: all 0.1s linear;
}


*{
	list-style: none;
}

*/
html,
html a{
	text-shadow: 0 0 0 rgba(0, 0, 0, 0.004);

	-webkit-font-smoothing: antialiased !important;
}
img{
	/* width: 100%; */
}
hr{
	border-color: #eeeeee;
}
.wraper{
	position: relative;
	width: 100%;
	z-index: 99999;
}
.content-part{
	overflow-x: hidden;
	text-align: left;
	/*p, li {
    color: #717171;
    font-family: arial;
    font-size: 15px;
    line-height: 25px;
    margin: 0 0 6px;
  }*/
}
.content-part ul{
	margin-left: 20px;
}
.content-part ul li{
	list-style: disc;
}
.content-part .editorial-block-3{
	clear: both;
	color: #666666;
	display: block;
	font-family: 'Lato';
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 30px;
	overflow: hidden;
	padding: 0;
}
.content-part .editorial-block-3 img{
	display: block;
	margin-bottom: 7px;
	margin-top: 5px;
}
.content-part .editorial-block-3 h6{
	color: #8161a1;
	font-size: 16px;
	padding-bottom: 5px;
}
.right-part .shadow-box .text-part.more-items a{
	color: #c9168c;
	text-decoration: none;
}
.right-part .shadow-box .text-part p{
	color: #693390;
	display: inline-block;
	font-family: 'Lato';
	font-size: 14px;
	line-height: 16px;
	margin-top: 7px;
}
.right-part .shadow-box .text-part a.learn-more{
	color: #693390;
	font-family: 'Montserrat';
	font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
}
.shadows{
	background-image: url('../images/shadow.png');
	background-position: right top;
	background-repeat: no-repeat;
	height: 100%;
	position: absolute;
	right: -5px;
	width: 18px;
}
.breadcrumb{
	background-color: transparent;
	font-family: 'Lato';
	line-height: 16px;
}
.breadcrumb li a{
	color: #666666;
}
.breadcrumb > .active{
	color: #c9168c;
}
.content-part > h1,
.photogallery > h1,
.stay_social > h1,
.projects_landing_new > h1,
.dpt-a > h1,
.resources_page > h1{
	color: #693390;
	font-family: 'Lato';
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 5px;
}
.content-part h4,
.photogallery > h4,
.stay_social > h4,
.projects_landing_new > h4,
.dpt-a > h4,
.resources_page > h4{
	color: #693390;
	font-family: 'Lato';
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 6px;
	margin-top: 5px;
}
.social-links{
	float: right;
	margin: 0;
	margin-top: 4px;
	padding: 0;
}
.social-links span{
	float: left;
	margin: 0;
	padding: 0 2px;
}
.social-links span a{
	background: url(../images/social-icon-sprit.png);
	display: block;
	height: 28px;
	width: 28px;
}
.social-links span a.twt{
	background-position: -32px 0;
}
.social-links span a.inst{
	background-position: -64px 0;
}

.social-links span a.email{
	background: url(../images/social-icon-email.png);
}
.main-navagation{
	background-color: #ffffff;
	float: left;
	height: 40px;
	padding: 0;
	position: fixed;
	top: 140px;
	width: 100%;
	z-index: 9999999;
}
.main-navagation ul.nav{
	list-style: none;
	margin: 0;
	padding: 5px 0;
	text-align: center;
}
.main-navagation ul.nav li{
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	padding: 10px 30px;
}
.main-navagation ul.nav li a{
	color: #693390;
	font-family: 'Montserrat';
	font-size: 15px;
	font-weight: normal;
	padding: 0;
	text-transform: uppercase;
}
.main-navagation ul.nav li a:hover{
	color: #c9168c;
	text-decoration: none;
}
.main-navagation ul.nav li > a{
	padding-bottom: 9px;
}
.main-navagation ul.nav li ul.dropdown-menu{
	border-top-width: 0;
	text-align: left;
}
.main-navagation ul.nav li ul.dropdown-menu li{
	margin: 0;
	padding: 0;
	width: 100%;
}
.main-navagation ul.nav li ul.dropdown-menu li a{
	color: #666666;
	font-family: 'Lato';
	font-size: 15px;
	padding: 4px 15px;
	text-transform: none;
}
.main-navagation ul.nav li ul.dropdown-menu li a:hover{
	background-color: inherit;
	color: #c9168c;
}
.main-navagation ul.nav li ul.dropdown-menu li.active{
	background-color: rgba(0, 0, 0, 0);
}
.main-navagation ul.nav li ul.dropdown-menu li.active a{
	background-color: rgba(0, 0, 0, 0);
	color: #c9168c;
}
.main-navagation ul.nav li.active{
	background: url(../images/li-activebg.png);
}
.main-navagation ul.nav li.active a{
	color: #c9168c;
}
.main-navagation .nav3{
	text-align: center;
}
.main-navagation .nav3 > ul{
	display: inline-block;
	float: none;
}
.main-navagation .nav3 > ul > li{
	padding: 5px 0 0 15px;
}
.main-navagation .center-shadow{
	background-color: #ffffff;
	bottom: 0;
	height: 30px;
	margin: 0 auto;
	position: absolute;
	width: 100%;
}
.main-navagation .center-shadow:after{
	border-radius: 50%;
	bottom: 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.75);
	content: '';
	height: 40%;
	left: 2.5%;
	position: absolute;
	width: 95%;
	z-index: -1;
}
.main-content ul.catgry{
	margin: 0 0 20px 0;
	padding: 0;
}
.main-content ul.catgry li{
	padding-top: 15px;
}
.main-content ul.catgry li a{
	color: #666666;
	display: block;
	font-family: 'Lato';
	font-size: 16px;
	line-height: 18px;
	text-decoration: none;
}
.main-content ul.catgry li a .arrow{
	background: url('../images/arrows_sprite.png') no-repeat;
	background-position: -6px 0;
	display: inline-block;
	height: 9px;
	margin-left: 10px;
	width: 5px;
}
.main-content ul.catgry li a:hover{
	color: #b82394;
	text-decoration: none;
}
.main-content ul.catgry li a:hover .arrow{
	background-position: -11px 0;
	height: 9px;
	width: 10px;
}
.main-content ul.catgry li.active a{
	color: #b82394;
}
.main-content ul.catgry li.active a .arrow{
	background-position: -11px 0;
	height: 9px;
	width: 10px;
}
.main-content ul.catgry .subcatgry{
	padding-left: 15px;
}
.main-content .middle-part{
	padding-left: 20px;
	padding-right: 20px;
}
.main-content .left-part{
	padding-right: 0;
}
.main-content .left-menu-tabs{
	margin: 10px 0;
	padding: 0;
}
.main-content .left-menu-tabs li.grey-tab{
	background: repeating-linear-gradient(-45deg, #ffffff, #f1f1f1 5px, #959595 2px, #959595 2px);
	height: 30px;
	text-align: center;
	width: 50%;
}
.main-content .left-menu-tabs li.grey-tab a{
	background-color: #dddddd;
	border-radius: 0;
	color: #666667;
	font-size: 14px;
	height: 30px;
	margin: 0;
	padding: 0;
}
.main-content .left-menu-tabs li.grey-tab a:focus,
.main-content .left-menu-tabs li.grey-tab a:hover{
	background-color: transparent;
	color: #666668;
}
.main-content .left-menu-tabs li.grey-tab.active a{
	background-color: transparent;
	color: #666669;
}
.main-content .left-menu-tabs .tab-content{
	background: repeating-linear-gradient(-45deg, #ffffff, #f1f1f1 5px, #959595 2px, #959595 2px);
	border: 1px #dddddd solid;
	border-top: none;
	color: #666668;
	font-size: 12px;
	padding: 10px;
}
.main-content .left-menu-tabs .tab-content p{
	margin: 3px 0;
	padding: 0;
}
.main-content .left-menu-tabs .filter-by-author{
	margin: 30px 0 30px 0;
	padding: 0;
}
.main-content .left-menu-tabs .filter-by-author h4{
	color: #666666;
	font-size: 12px;
}
.main-content .left-menu-tabs .filter-by-author select{
	width: 100%;
}
.footer{
	background: #f4e4f1 none repeat scroll 0 0;
	color: #6f38a5;
	float: left;
	font-family: Montserrat;
	font-size: 14px;
	height: 48px;
	line-height: 32px;
	padding: 8px 0;
	position: relative;
	text-transform: uppercase;
	width: 100%;
}
.footer .copyright{
	margin: 0;
}
.footer p{
	display: inline-block;
}
.footer .social-links-footer{
	float: right;
	margin-left: 15px;
}
.footer .social-links-footer .social-links{
	margin: 1px 0 0 20px;
	padding: 0;
}
.slider-wrapper{
	height: 100%;
}
.slider-wrapper .carousel-inner .item img{
	width: 100%;
}
.slider-wrapper .carousel-control{
	background-color: rgba(0, 0, 0, 0);
	background-repeat: repeat-x;
	width: 150px;
}
.slider-wrapper .carousel-control.left{
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.25) 75px, rgba(0, 0, 0, 0) 100%);
}
.slider-wrapper .carousel-control.right{
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0px, rgba(255, 255, 255, 0.25) 75px);
}
.wide-part{
	display: table;
	height: 370px;
	width: 100%;
}
.wide-part > div{
	display: table-cell;
	width: 50%;
}
.wide-part .image-wrapper{
	background-color: rgba(221, 132, 209, 0.31);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.wide-part .text-wrapper{
	background-color: #a580c0;
	color: #ffffff;
	padding: 30px;
}
.wide-part .text-wrapper h1{
	font-family: montserrat;
	font-size: 36px;
	line-height: 36px;
	margin: 0;
	padding: 20px 0 0 0;
	text-transform: uppercase;
}
.wide-part .text-wrapper .post{
	color: #520b83;
	font-family: 'pt serif';
	font-size: 24px;
	line-height: 24px;
	margin-bottom: 20px;
	margin-top: 30px;
	text-align: left;
	vertical-align: baseline;
}
.wide-part .text-wrapper p{
	color: #ffffff;
	font-family: 'Lato';
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
	margin: 0;
	padding: 0;
}
.wide-part .text-wrapper a{
	color: #ffffff;
	display: inline-block;
	font-family: montserrat;
	font-size: 16px;
	margin: 50px 0 0 0;
	padding: 0;
	text-decoration: none;
	text-transform: uppercase;
}
.abt-text{
	margin-bottom: 50px;
	margin-top: 20px;
	text-align: center;
}
.abt-text h1{
	color: #693390;
	font-family: pt serif;
	font-size: 25px;
	margin-bottom: 15px;
}
.abt-text p{
	color: #8161a1;
	font-family: 'Lato';
	font-size: 18px;
	line-height: 28px;
}
.news-wrapper{
	margin-top: 45px;
}
.news-wrapper .heading h2{
	border-bottom: none /*2px solid #b1b1b1*/;
	color: #520b83;
	font-family: montserrat;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 0;
	margin-bottom: 10px;
	padding-bottom: 15px;
	text-align: center;
	text-transform: none;
}
.news-wrapper .post-part{
	margin-top: 22px;
}
.news-wrapper .post-part .media-post{
	float: left;
	margin-right: 15px;
}
.news-wrapper .post-part .post-heading{
	color: #663399;
	cursor: pointer;
	font-family: 'Lato';
	font-size: 21px;
	margin: 5px 0;
	padding: 0;
}
.news-wrapper .post-part .post-date{
	color: #666666;
	font-family: 'Lato';
	font-size: 14px;
	margin-top: 10px;
}

.news-wrapper .post-part p{
	color: #666666;
	font-family: 'Lato';
	font-size: 16px;
}
.news-wrapper .post-part img{
	-webkit-box-shadow: 0 2px 6px #000000;
	   -moz-box-shadow: 0 2px 6px #000000;
	        box-shadow: 0 2px 6px #000000;

	    -ms-box-shadow: 0 2px 6px #000000;
}
.news-wrapper .post-part .video-part img{
	margin-bottom: 10px;
	width: 100%;
}
.grey-section{
	background: #f0f0f1 none repeat scroll 0 0;
	margin: 30px 0 0 0;
	padding-bottom: 20px;
	padding-top: 20px;
}
.grey-section .heading{
	color: #663399;
	font-family: montserrat;
	font-size: 19px;
	margin-bottom: 15px;
	margin-top: 15px;
	padding-top: 0;
	text-transform: uppercase;
}
.grey-section .post-heading{
	color: #663399;
	cursor: pointer;
	font-family: 'Lato';
	font-size: 21px;
	margin-top: 28px;
}
.grey-section .post-date{
	color: #666666;
	font-family: 'Lato';
	font-size: 14px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.grey-section p{
	color: #666666;
	font-family: 'Lato';
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 10px 0;
	padding: 0;
}
.grey-section .read-more{
	color: #663399;
	font-family: 'lato';
	font-size: 15px;
	font-size: 13px;
	font-weight: bold;
	/* text-transform: uppercase; */
	text-decoration: none;
}
.client{
	margin-bottom: 40px;
	margin-top: 50px;
}
.client img{
	box-shadow: 0 2px 7px #818080;
}
.client h1.heading{
	color: #663399;
	font-family: 'Montserrat';
	font-size: 30px;
	font-weight: bold;
	text-transform: none;
}
.client p{
	color: #885ba9;
	font-family: 'PT Serif';
	font-size: 21px;
}
.client .info-testimonial{
	color: #6f3698;
	font-family: 'Lato';
	font-size: 17px;
}
.sponsor{
	line-height: 25px;
	padding-right: 3px;
	width: 100%;
}
.sponsor img{
	border: solid 5px #ffffff;
	box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
	margin-bottom: 5px;
}
.sponsor .sponsors-names{
	color: #6c3e97;
	font-family: Lato;
	font-size: 16px;
	margin-top: 20px;
}
.template-b .quote{
	background-color: #ededed;
	border: none;
	border-left: 4px #6c3e97 solid;
	font-family: 'Lato';
	font-style: italic;
	margin-top: 30px;
	padding: 20px 30px;
}
.three-columns > div img:first-child{
	border: solid 5px #ffffff;
	box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
	margin-bottom: 5px;
}
.three-columns img{
	margin-left: auto;
	margin-right: auto;
	width: 97%;
}
.three-columns h5{
	color: #6c3e97;
	font-family: Lato;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 15px;
}
.mentors{
	border-bottom: 2px solid #808080;
	position: relative;
}
.mentors .mentor_block{
	position: relative;
}
.mentors .mentor_block .description{
	margin-top: 80px;
}
.mentors .mentor_block .description .first_name{
	color: #693390;
	font-family: 'Lato';
	font-size: 24px;
	font-weight: bold;
	line-height: 26px;
}
.mentors .mentor_block .description .last_name{
	color: #693390;
	font-family: 'Lato';
	font-size: 24px;
	font-weight: bold;
	line-height: 26px;
	padding-bottom: 13px;
}
.mentors .mentor_block .description .work_place{
	color: #693390;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
	text-transform: none;
}
.mentors .mentor_block .description .slogan{
	color: #693390;
	font-family: 'Lato';
	font-size: 13.81px;
	line-height: 19px;
	margin-top: 14px;
}
.mentors .mentor_block .description .social_links{
	margin-top: 10px;
}
.mentors .mentor_block .description .social_links a.social_sprite{
	background: url('../images/social_sprite.png') no-repeat;
	background-size: 100%;
	display: block;
	float: left;
	height: 26px;
	width: 26px;
}
.mentors .mentor_block .description .social_links a.twitter{
	background-position: 0 0;
}
.mentors .mentor_block .description .social_links a.facebook{
	background-position: -26px 0;
	margin: 0 6px;
}
.mentors .mentor_block .description .social_links a.linkedin{
	background-position: -52px 0;
}
.mentors .mentor_block .bottom_image .women{
	height: auto;
	width: 100%;
}
.mentors .team_wrap{
	left: 0;
	margin: auto;
	overflow: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20%;
}
.mentors .team_wrap .team{
	background-color: #fcf3f9;
	padding: 20px;
	text-align: center;
}
.mentors .team_wrap .team .name{
	color: #693390;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 17px;
	font-weight: bold;
	text-transform: uppercase;
	white-space: nowrap;
}
.mentors .team_wrap .team .skill{
	color: #693390;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	white-space: nowrap;
}
.mentors .category_wrap{
	left: 0;
	position: absolute;
	top: 0;
}
.mentors .category_wrap .category{
	background: none;
	border: 2px solid #693390;
	color: #693390;
	float: left;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: normal;
	padding: 7px 10px;
	text-align: center;
	text-transform: uppercase;
}
.mentors_landing{
	border-bottom: none;
}
.mentors_landing .learn_more{
	color: #bb1489;
	cursor: pointer;
	display: block;
	float: left;
	font-family: 'Montserrat', sans-serif;
	font-size: 14.88px;
	line-height: 20px;
	padding: 7px 10px;
	text-align: center;
	text-transform: uppercase;
}
.mentors_landing .learn_more:focus{
	text-decoration: none !important;
}
.sidebar_title{
	color: #bb1489;
	font-family: 'Lato';
	font-size: 19px;
}
.sidebar_shadow{
	background: url('../images/sidebar_shadow.png') no-repeat;
	background-clip: border-box;
	background-size: 100% 100%;
	height: 11px;
}
.quotes{
	color: #693390;
	font-family: 'Oswald', sans-serif;
	font-size: 14.88px;
}
.quotes .quote_left{
	border-left: 1px solid black;
	margin-bottom: 12px;
	margin-top: 12px;
	padding: 0 10px;
}
.quotes .quote_right{
	background-color: #fdf8fb;
	margin-bottom: 12px;
	margin-top: 12px;
	padding: 12px;
}
.faces img{
	margin-bottom: 14px;
}
.about_us .title{
	color: #693390;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
}
.about_us p{
	font-family: 'Lato', sans-serif;
	line-height: 25px;
}
.middle_shadow_down{
	background: url('../images/middle_shadow_down.png') no-repeat;
	background-clip: border-box;
	background-size: 100% 100%;
	height: 13px;
	margin: 5px 0 10px;
}
.middle_shadow_up{
	background: url('../images/middle_shadow_up.png') no-repeat;
	background-clip: border-box;
	background-size: 100% 100%;
	height: 11px;
	margin: 10px 0 5px;
}
.gallery .gallery_item{
	border: 1px solid #999999;
	position: relative;
}
.gallery .gallery_item .gallery_descr{
	padding: 5px 10px 10px 10px;
}
.gallery .gallery_item .gallery_descr p{
	color: #666666;
	font-family: 'Lato';
	font-size: 14px;
	line-height: 16px;
}
.gallery .gallery_item .gallery_descr p.gallery_tag{
	color: #693390;
}
.gallery .gallery_item .gallery_over_wrap{
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.gallery .gallery_item .gallery_over_wrap .gallery_over{
	background-color: rgba(52, 52, 52, 0.75);
	color: #ffffff;
	font-family: 'Lato';
	font-size: 15px;
	font-weight: bold;
	line-height: 15px;
	padding: 8px;
}
.gallery .gallery_item .ContentHe{
	background-color: rgba(255, 255, 255, 0.85);
}
.gallery .gallery_item .ContentHe .Content{
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}
.gallery .gallery_item .ContentHe .Content img{
	display: block;
	height: auto;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	position: absolute;
	top: 50%;
	width: 50px;
}
.isotope-grid .isotope-item{
	margin-bottom: 15px;
	margin-top: 15px;
}
.isotope-grid .isotope-item .gallery_item .overlay{
	background: url('../images/fancybox-bg.png');
	background-position: center;
	opacity: 0;
	position: absolute;
	-webkit-transform: scale(100%);
	   -moz-transform: scale(100%);
	    -ms-transform: scale(100%);
	        transform: scale(100%);
	-webkit-transition: all 0.5s ease 0s;
	   -moz-transition: all 0.5s ease 0s;
	    -ms-transition: all 0.5s ease 0s;
	        transition: all 0.5s ease 0s;
	z-index: 1;
}
.iso{
	background-color: rgba(241, 241, 241, 0.51);
	margin-top: 40px;
	padding-bottom: 10px;
	padding-top: 10px;
	/* ENTRY SHADOW */
}
.iso .load-more{
	text-align: center;
}
.iso .load-more span{
	background: black;
	border-radius: 50%;
	color: white;
	display: inline-block;
	font-size: 32px;
	height: 50px;
	line-height: 43px;
	width: 50px;
}
.iso .grid-sizer{
	width: 290px;
}
.iso .widget.featured{
	width: 570px;
}
.iso .widget{
	margin: 0;
	margin-bottom: 22px;
	padding-left: 0;
	padding-right: 0;
	width: 280px;
}
.iso .widget .entry-container{
	margin: 0;
	margin-left: 11px;
	margin-right: 11px;
	min-height: 1px;
	opacity: 1;
	padding: 0;
}
.iso .widget .entry-container .entry-image{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	position: relative;
	width: 100%;
}
.iso .widget .entry-container .entry-image :before{
	background: none;
	border-bottom: 12px solid #ffffff;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	bottom: 0;
	content: '';
	height: 0;
	left: 50px;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	width: 0;
}
.iso .widget .entry-container .entry-image a .entry-image-overlay{
	background: url('../images/icon_cross.png'), url('../images/overlay_bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px 10px, 100% 100%;
	display: block;
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s ease-in;
	   -moz-transition: all 0.3s ease-in;
	     -o-transition: all 0.3s ease-in;
	        transition: all 0.3s ease-in;
	width: 100%;
}
.iso .widget .entry-container .entry-image a img{
	margin-bottom: -6px;
	width: 100%;
}
.iso .widget .entry-container .entry{
	background: #ffffff;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	min-height: 50px;
	padding: 22px 22px 22px 22px;
	width: 100%;
}
.iso .widget .entry-container .entry .heading{
	border-bottom-color: #dddddd;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	display: block;
	margin: 0;
	margin-bottom: 15px;
	padding: 0;
	padding-bottom: 15px;
}
.iso .widget .entry-container .entry .heading a{
	color: #693390;
	display: inline;
	font-family: Lato;
	font-size: 17px;
	height: 20px;
	letter-spacing: 0.3px;
	text-decoration: none;
	text-transform: none;
}
.iso .widget .entry-container .entry p{
	color: #888888;
	display: block;
	font-family: Lato, sans-serif;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
	margin-bottom: 12px;
	padding: 0;
	width: 100%;
}
.iso .widget .entry-container .entry .entry-footer{
	box-sizing: border-box;
	display: block;
	height: 25px;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}
.iso .widget .entry-container .entry .entry-footer ul{
	display: block;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.iso .widget .entry-container .entry .entry-footer li{
	color: #666666;
	cursor: pointer;
	display: block;
	font-family: Arimo, sans-serif;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	list-style-type: square;
	margin: 0;
	opacity: 0.35;
	padding: 0;
	text-align: left;
}
.iso .widget .entry-container .entry .entry-footer li .icon{
	display: inline-block;
	height: 15px;
	margin-right: 6px;
	position: relative;
	top: 4px;
	width: 15px;
}
.iso .widget .entry-container .entry .entry-footer li .like{
	background: url('../images/icon_like.png') no-repeat center;
	background-size: contain;
}
.iso .widget .entry-container .entry .entry-footer .left{
	float: left;
}
.iso .widget .entry-container .entry .entry-footer .right{
	float: right;
}
.iso .widget .entry-container .entry .stripes{
	background-attachment: scroll;
	background-clip: border-box;
	background-color: rgba(0, 0, 0, 0);
	background-image: url('../images/stripes.png');
	background-origin: padding-box;
	background-size: auto;
	bottom: 0;
	display: block;
	height: 8px;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 100%;
	z-index: 2;
}
.iso .widget:hover .entry{
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	   -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	        box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.iso .widget:hover .entry-image-overlay{
	background-size: 40px 40px, 100% 100%;
	opacity: 1;
}
.iso .widget:hover .entry-image:before{
	background: none;
	border-bottom: 12px solid #f3f3f3;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	bottom: 0;
	content: '';
	height: 0;
	left: 50px;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	width: 0;
	z-index: 3;
}
.iso .drop-shadow{
	position: relative;
}
.iso .drop-shadow:before,
.iso .drop-shadow:after{
	content: '';
	position: absolute;
	z-index: -2;
}
.iso .curved:before{
	     border-radius: 10px;
	     border-radius: 0.2px;
	-moz-border-radius: 20px;
	-moz-border-radius: 0.1px;
	bottom: 10px;
	box-shadow: 20px 0 30px #d3d0cb;
	left: 0;
	left: 12px;
	right: 50%;
	right: 12px;
	top: 10px;
}
.iso .curved-small:before{
	     border-radius: 10px;
	     border-radius: 0.2px;
	-moz-border-radius: 20px;
	-moz-border-radius: 0.1px;
	bottom: 10px;
	box-shadow: 15px 0 10px #d3d0cb;
	left: 0;
	left: 12px;
	right: 50%;
	right: 12px;
	top: 10px;
}
.idea-zone-details h1.big{
	color: #693390;
	font-family: 'PT Serif', serif;
	font-size: 48px;
	margin: 0;
	padding: 50px 150px 50px 150px;
	text-align: center;
}
.idea-zone-details .ago-by{
	color: #8899a6;
	font-family: 'Droid Serif', serif;
	font-size: 16px;
	font-style: italic;
	line-height: 32px;
	padding: 0;
	text-align: center;

	marging: 30px 0 40px 0;
}
.idea-zone-details .ago-by .red{
	color: #ff2641;
}
.idea-zone-details .ago-by hr{
	border-color: #eeeeee;
	position: relative;
	top: -5px;
}
.idea-zone-details p{
	color: #666666;
	font-family: 'Lato', serif;
	font-size: 16px;
	line-height: 32px;
	padding: 10px 100px 10px 100px;
}
.idea-zone-details .quote{
	color: #c62aa8;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-style: italic;
	line-height: 32px;
	padding: 30px 150px 30px 150px;
	text-align: center;
}
.idea-zone-details img{
	margin: 40px 0;
	padding: 0;
}
.idea-zone-details .similar-posts h3{
	color: #666666;
	font-family: 'PT Serif', serif;
	font-size: 24px;
	margin: 0;
	padding: 0 0 40px 110px;
}
.idea-zone-details .similar-posts img{
	margin: 0;
	padding: 0;
}
.idea-zone-details .similar-posts > div{
	margin: 0;
	padding: 20px 0 40px 0;
	text-align: center;
}
.idea-zone-details .similar-posts > div h4{
	color: #693390;
	font-family: 'PT Serif', serif;
	font-size: 20px;
	margin: 0;
	padding: 20px;
	text-align: center;
}

@media (max-width: 479px){
	header{
		-webkit-animation: none;
		        animation: none;
		background: #ffffff;
		float: left;
		height: 75px;
		top: 0;
		width: 100%;
		z-index: 9999;

		-webkit-backface-visibility: hidden;
	}
	header a{
		opacity: 1;
		outline: none;
		text-decoration: none;
		-webkit-transition: all 0.4s ease 0s;
		   -moz-transition: all 0.4s ease 0s;
		    -ms-transition: all 0.4s ease 0s;
		        transition: all 0.4s ease 0s;
	}
	header a:hover{
		opacity: 0.6;
		text-decoration: none;
	}
	header .top-header{
		margin-bottom: 5px;
		position: relative;
	}
	header .top-header .logo{
		float: left;
		left: 0;
		position: absolute;
		top: 0;
	}
	header .top-header .logo img{
		height: 50px;
		margin: 10px 25px 10px 5px;
		width: 200px;
	}
	header .right-header .topbar .top-part-login{
		float: right;
		margin-top: 2px;
	}
	header .right-header .topbar .top-part-login a.login{
		background: #693390 none repeat scroll 0 0;
		color: #ffffff;
		display: block;
		font-family: montserrat;
		font-size: 9px;
		margin-right: 0;
		padding: 5px 10px;
		text-transform: uppercase;
		width: 100%;
	}
	.mobile-menu-wrap{
		display: block;
	}
	.dl-menuwrapper{
		left: -20px;
		top: 15px;
		width: 200px;
	}
	.main-content{
		float: left;
		padding: 26px 0;
		width: 100%;
	}
	.main-content .middle-section .image-section{
		width: 100%;
	}
	.main-content .middle-section .image-section img{
		border: solid 5px #ffffff;
		box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
		margin-bottom: 5px;
	}
	.main-content .middle-section .image-section .text-right{
		color: #693390;
		font-family: 'Lato';
		font-size: 13px;
	}
	.footer{
		font-size: 10px;
		line-height: 32px;
	}
	.carousel-caption{
		bottom: 4px;
		padding-bottom: 4px;
	}
	.carousel-caption.darker_greenish{
		background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
		color: #6e449c;
		font-family: pt serif;
		font-size: 10px;
		line-height: 14px;
		padding-left: 4px;
		padding-right: 4px;
		text-shadow: none;
	}
	.carousel-caption.darker_greenish h1{
		color: #c13598;
		font-family: montserrat;
		font-size: 14px;
		margin: 0;
		text-transform: uppercase;
	}
	.image_box_container{
		height: 180px;
	}
	.image_box_container ul.image_container li .image{
		height: 50px;
		width: 50px;
	}
	.image_box_container ul.image_container li .image a img{
		height: 50px;
		width: 50px;
	}
	.image_box_container ul.image_container li .arrow{
		width: 50px;
	}
	.image_box_container ul.image_container li .name{
		font-size: 5px;
		width: 50px;
	}
	.image_box_container ul.image_container li .name1_hv,
	.image_box_container ul.image_container li .name2_hv,
	.image_box_container ul.image_container li .name3_hv,
	.image_box_container ul.image_container li .name4_hv,
	.image_box_container ul.image_container li .name5_hv,
	.image_box_container ul.image_container li .name6_hv{
		font-size: 5px;
		width: 50px;
	}
	.image_box_container .display_content{
		margin: -20px 0 0 0;
	}
	.image_box_container .display_content .image1_content,
	.image_box_container .display_content .image2_content,
	.image_box_container .display_content .image3_content,
	.image_box_container .display_content .image4_content,
	.image_box_container .display_content .image5_content,
	.image_box_container .display_content .image6_content{
		font-size: 8px;
		line-height: 14px;
		padding: 5px 0 5px 0;
	}
	.wide-part{
		display: block;
	}
	.wide-part > div{
		display: block;
		width: 100%;
	}
	.wide-part .image-wrapper{
		height: 150px;
	}
	.wide-part .text-wrapper{
		padding: 10px;
	}
	.wide-part .text-wrapper h1{
		font-size: 16px;
	}
	.wide-part .text-wrapper .post{
		font-size: 14px;
		margin-bottom: 5px;
		margin-top: 5px;
	}
	.wide-part .text-wrapper p{
		font-size: 10px;
		line-height: 14px;
	}
	.wide-part .text-wrapper a{
		font-size: 10px;
	}
	.footer{
		font-size: 8px;
	}
	/* .footer .social-links-footer .social-links {
    margin-top: 8px;
    margin-left: 5px;
  }
  .footer .social-links-footer .social-links span a {
    background-size: 50px;
    width: 15px;
    height: 15px;
  }
  .footer .social-links-footer .social-links span a.twt {
    background-position: -18px 0;
  }
  .footer .social-links-footer .social-links span a.inst {
    background-position: -35px 0;
  }
  
  */

	.mentors .mentor_block .bottom_image .women{
		margin-top: 160px;
	}
	.mentors .team_wrap{
		left: 0;
		margin: inherit;
		top: 48%;
		width: 40%;
	}
	.idea-zone-details h1.big{
		font-size: 24px;
		padding: 15px 25px 15px 25px;
	}
	.idea-zone-details .ago-by{
		font-size: 12px;
		line-height: 16px;

		marging: 5px 0 5px 0;
	}
	.idea-zone-details .ago-by hr{
		top: 0;
	}
	.idea-zone-details p{
		font-size: 12px;
		line-height: 18px;
		padding: 5px 25px 5px 25px;
	}
	.idea-zone-details .quote{
		font-size: 16px;
		line-height: 20px;
		padding: 5px 50px 5px 50px;
	}
	.idea-zone-details img{
		margin: 10px 0;
	}
	.idea-zone-details .similar-posts h3{
		padding-bottom: 10px;
		padding-left: 10px;
	}
	.idea-zone-details .similar-posts > div h4{
		font-size: 13px;
		padding: 5px;
	}
	.iso .grid-sizer{
		width: 160px;
	}
	.iso .widget.featured{
		width: 300px;
	}
	.iso .widget{
		width: 150px;
	}
}
@media (min-width: 480px) and (max-width: 767px){
	header{
		-webkit-animation: none;
		        animation: none;
		background: #ffffff;
		float: left;
		height: 75px;
		top: 0;
		width: 100%;
		z-index: 9999;

		-webkit-backface-visibility: hidden;
	}
	header a{
		opacity: 1;
		outline: none !important;
		text-decoration: none;
		-webkit-transition: all 0.4s ease 0s;
		   -moz-transition: all 0.4s ease 0s;
		    -ms-transition: all 0.4s ease 0s;
		        transition: all 0.4s ease 0s;
	}
	header a:hover{
		opacity: 0.6;
		text-decoration: none;
	}
	header .top-header{
		margin-bottom: 16px;
		position: relative;
	}
	header .top-header .logo{
		float: left;
		left: 0;
		position: absolute;
		top: 0;
	}
	header .top-header .logo img{
		height: 62px;
		margin: 10px 25px 10px 5px;
		width: 250px;
	}
	header .right-header .topbar .top-part-login{
		float: right;
		margin-top: 3px;
	}
	header .right-header .topbar .top-part-login a.login{
		background: #693390 none repeat scroll 0 0;
		color: #ffffff;
		display: block;
		font-family: montserrat;
		font-size: 11px;
		margin-right: 12px;
		padding: 10px 25px;
		text-transform: uppercase;
		width: 100%;
	}
	.mobile-menu-wrap{
		display: block;
	}
	.dl-menuwrapper{
		left: -20px;
		top: 10px;
		width: 250px;
	}
	.main-content{
		float: left;
		padding: 26px 0;
		width: 100%;
	}
	.main-content .middle-section .image-section{
		width: 100%;
	}
	.main-content .middle-section .image-section img{
		border: solid 5px #ffffff;
		box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
		margin-bottom: 5px;
	}
	.main-content .middle-section .image-section .text-right{
		color: #693390;
		font-family: 'Lato';
		font-size: 13px;
	}
	.carousel-caption{
		bottom: 5px;
		padding-bottom: 5px;
	}
	.carousel-caption.darker_greenish{
		background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
		color: #693390;
		font-family: pt serif;
		font-size: 10px;
		line-height: 14px;
		padding-left: 5px;
		padding-right: 5px;
		text-shadow: none;
	}
	.carousel-caption.darker_greenish h1{
		color: #c13598;
		font-family: montserrat;
		font-size: 14px;
		margin: 0;
		text-transform: uppercase;
	}
	.image_box_container{
		height: 230px;
	}
	.image_box_container ul.image_container li .image{
		height: 75px;
		width: 75px;
	}
	.image_box_container ul.image_container li .image a img{
		height: 75px;
		width: 75px;
	}
	.image_box_container ul.image_container li .arrow{
		width: 75px;
	}
	.image_box_container ul.image_container li .name{
		font-size: 8px;
		width: 75px;
	}
	.image_box_container ul.image_container li .name1_hv,
	.image_box_container ul.image_container li .name2_hv,
	.image_box_container ul.image_container li .name3_hv,
	.image_box_container ul.image_container li .name4_hv,
	.image_box_container ul.image_container li .name5_hv,
	.image_box_container ul.image_container li .name6_hv{
		font-size: 8px;
		width: 75px;
	}
	.image_box_container .display_content{
		margin: 10px 0 0 0;
	}
	.image_box_container .display_content .image1_content,
	.image_box_container .display_content .image2_content,
	.image_box_container .display_content .image3_content,
	.image_box_container .display_content .image4_content,
	.image_box_container .display_content .image5_content,
	.image_box_container .display_content .image6_content{
		font-size: 12px;
		line-height: 15px;
		padding: 10px 0 10px 0;
	}
	.wide-part .image-wrapper{
	}
	.wide-part .text-wrapper{
		padding: 20px;
	}
	.wide-part .text-wrapper h1{
		font-size: 20px;
	}
	.wide-part .text-wrapper .post{
		font-size: 18px;
		margin-bottom: 5px;
		margin-top: 10px;
	}
	.wide-part .text-wrapper p{
		font-size: 12px;
		line-height: 16px;
	}
	.wide-part .text-wrapper a{
		font-size: 12px;
	}
	.footer{
		font-size: 10px;
	}
	.mentors .mentor_block .bottom_image .women{
		margin-top: 160px;
	}
	.mentors .team_wrap{
		left: 0;
		margin: inherit;
		top: 40%;
		width: 30%;
	}
	.idea-zone-details h1.big{
		font-size: 36px;
		padding: 30px 50px 30px 50px;
	}
	.idea-zone-details .ago-by{
		font-size: 14px;
		line-height: 20px;

		marging: 20px 0 30px 0;
	}
	.idea-zone-details .ago-by hr{
		top: 0;
	}
	.idea-zone-details p{
		font-size: 14px;
		line-height: 24px;
		padding: 10px 50px 10px 50px;
	}
	.idea-zone-details .quote{
		font-size: 18px;
		line-height: 24px;
		padding: 10px 100px 10px 100px;
	}
	.idea-zone-details img{
		margin: 20px 0;
	}
	.idea-zone-details .similar-posts h3{
		padding-left: 60px;
	}
	.iso .grid-sizer{
		width: 230px;
	}
	.iso .widget.featured{
		width: 450px;
	}
	.iso .widget{
		width: 225px;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	header{
		background: #ffffff;
		float: left;
		height: 130px;
		top: 0;
		width: 100%;
		z-index: 9999;

		-webkit-backface-visibility: hidden;
	}
	header a{
		opacity: 1;
		outline: none !important;
		text-decoration: none;
		-webkit-transition: all 0.4s ease 0s;
		   -moz-transition: all 0.4s ease 0s;
		    -ms-transition: all 0.4s ease 0s;
		        transition: all 0.4s ease 0s;
	}
	header a:hover{
		opacity: 0.6;
		text-decoration: none;
	}
	header .top-header{
		margin-bottom: 16px;
		position: relative;
	}
	header .top-header .logo{
		float: left;
		left: 40px;
		position: absolute;
		top: 0;
		z-index: 5;
	}
	header .top-header .logo img{
		height: 62px;
		margin: 15px 25px 10px 5px;
		width: 250px;
	}
	header .right-header .topbar .top-part-login{
		float: left;
	}
	header .right-header .topbar .top-part-login a.login{
		background: #693390 none repeat scroll 0 0;
		color: #ffffff;
		display: block;
		font-family: montserrat;
		font-size: 13px;
		margin-right: 12px;
		padding: 10px 30px;
		text-transform: uppercase;
	}
	.mobile-menu-wrap{
		display: block;
	}
	.dl-menuwrapper{
		left: 0;
		top: -67px;
		width: 250px;
		z-index: 4;
	}
	.main-content{
		float: left;
		padding: 26px 0;
		width: 100%;
	}
	.main-content .middle-section .image-section{
		width: 100%;
	}
	.main-content .middle-section .image-section img{
		border: solid 5px #ffffff;
		box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
		margin-bottom: 5px;
	}
	.main-content .middle-section .image-section .text-right{
		color: #693390;
		font-family: 'Lato';
		font-size: 13px;
	}
	.top-margin{
		margin-top: 15px;
	}
	.carousel-caption{
		bottom: 10px;
		padding-bottom: 10px;
	}
	.carousel-caption.darker_greenish{
		background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
		color: #693390;
		font-family: pt serif;
		font-size: 14px;
		line-height: 20px;
		padding-left: 10px;
		padding-right: 10px;
		text-shadow: none;
	}
	.carousel-caption.darker_greenish h1{
		color: #c13598;
		font-family: montserrat;
		font-size: 20px;
		margin: 0;
		text-transform: uppercase;
	}
	.image_box_container{
		height: 280px;
	}
	.image_box_container ul.image_container li .image{
		height: 100px;
		width: 100px;
	}
	.image_box_container ul.image_container li .image a img{
		height: 100px;
		width: 100px;
	}
	.image_box_container ul.image_container li .arrow{
		width: 100px;
	}
	.image_box_container ul.image_container li .name{
		font-size: 12px;
		width: 100px;
	}
	.image_box_container ul.image_container li .name1_hv,
	.image_box_container ul.image_container li .name2_hv,
	.image_box_container ul.image_container li .name3_hv,
	.image_box_container ul.image_container li .name4_hv,
	.image_box_container ul.image_container li .name5_hv,
	.image_box_container ul.image_container li .name6_hv{
		font-size: 12px;
		line-height: 15px;
		width: 100px;
	}
	.image_box_container .display_content{
		margin: 20px 0 0 0;
	}
	.wide-part .image-wrapper{
	}
	.wide-part .text-wrapper{
		padding: 25px;
	}
	.wide-part .text-wrapper h1{
		font-size: 24px;
	}
	.wide-part .text-wrapper .post{
		font-size: 20px;
		margin-bottom: 10px;
		margin-top: 20px;
	}
	.wide-part .text-wrapper p{
		font-size: 14px;
		line-height: 20px;
	}
	.wide-part .text-wrapper a{
		font-size: 14px;
	}
	.mentors .mentor_block .description{
		margin-top: 60px;
	}
	.mentors .mentor_block .description .slogan{
		font-size: 13px;
		line-height: 17px;
	}
	.mentors .mentor_block .bottom_image .women{
		margin-top: 130px;
	}
	.mentors .team_wrap{
		width: 20%;
	}
	.mentors_landing .learn_more{
		margin-top: 15px;
	}
	.gallery .col-md-4{
		padding-left: 8px;
		padding-right: 7px;
	}
	.gallery .gallery_item .gallery_descr p{
		font-size: 12px;
	}
	.gallery .gallery_item .gallery_over_wrap .gallery_over{
		font-size: 12px;
	}
	.isotope-grid .isotope-item{
		margin-bottom: 5px;
		margin-top: 5px;
	}
	.idea-zone-details h1.big{
		font-size: 48px;
		padding: 50px 100px 50px 100px;
	}
	.idea-zone-details .ago-by{
		font-size: 16px;
		line-height: 32px;
		margin: 30px 0 40px 0;
	}
	.idea-zone-details .ago-by hr{
		top: -5px;
	}
	.idea-zone-details p{
		padding: 10px 50px 10px 50px;
	}
	.idea-zone-details .quote{
		padding: 30px 100px 30px 100px;
	}
	.idea-zone-details .similar-posts h3{
		padding-left: 60px;
	}
	.iso .grid-sizer{
		width: 250px;
	}
	.iso .widget.featured{
		width: 488px;
	}
	.iso .widget{
		width: 240px;
	}
	.image_box_container ul.image_container li{
		height: auto;
	}
	.image_box_container ul.image_container li .image img{
		height: 80px;
		width: 80px;
	}
	.image_box_container ul.image_container li .name{
		margin-top: 120px;
		width: 100%;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	header{
		background: #ffffff;
		float: left;
		top: 0;
		width: 100%;
		z-index: 9999;

		-webkit-backface-visibility: hidden;
		/*height: 165px;*/
	}
	header a{
		opacity: 1;
		outline: none !important;
		text-decoration: none;
		-webkit-transition: all 0.4s ease 0s;
		   -moz-transition: all 0.4s ease 0s;
		    -ms-transition: all 0.4s ease 0s;
		        transition: all 0.4s ease 0s;
	}
	header a:hover{
		opacity: 0.6;
		text-decoration: none;
	}
	header .top-header{
		margin-bottom: 5px;
		position: relative;
	}
	header .top-header .logo{
		float: left;
		left: 0;
		position: absolute;
		top: 0;
	}
	header .top-header .logo img{
		height: 75px;
		margin: 40px 25px 40px 5px;
		width: 300px;
	}
	header .right-header .topbar .top-part-login{
		float: right;
	}
	header .right-header .topbar .top-part-login a.login{
		background: #693390 none repeat scroll 0 0;
		color: #ffffff;
		display: block;
		font-family: montserrat;
		font-size: 13px;
		margin-right: 12px;
		padding: 10px 30px;
		text-transform: uppercase;
	}
	.main-navagation{
		top: 129px;
	}
	.main-navagation ul.nav li{
		margin-left: 5px;
		margin-right: 5px;
	}
	.main-navagation ul.nav li a{
		font-size: 13px;
	}
	.main-navagation ul.nav li ul.dropdown-menu li a{
		font-family: 'Lato';
		font-size: 14px;
	}
	.main-navagation ul.nav li.active{
		background: url(../images/li-activebg.png);
	}
	.main-navagation ul.nav li.active a{
		color: #c9168c;
	}
	.main-navagation .nav3{
		text-align: center;
	}
	.main-navagation .nav3 > ul{
		display: inline-block;
		float: none;
	}
	.main-navagation .nav3 > ul > li{
		padding-left: 10px;
	}
	.mobile-menu-wrap{
		display: none;
	}
	.main-content{
		float: left;
		padding: 0;
		width: 100%;
	}
	.main-content .middle-section .image-section{
		width: 100%;
	}
	.main-content .middle-section .image-section img{
		border: solid 5px #ffffff;
		box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
		margin-bottom: 5px;
	}
	.main-content .middle-section .image-section .text-right{
		color: #693390;
		font-family: 'Lato';
		font-size: 13px;
	}
	.top-margin{
		margin-top: 20px;
	}
	.carousel-caption{
		bottom: 20px;
		padding-bottom: 15px;
	}
	.carousel-caption.darker_greenish{
		background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
		color: #693390;
		font-family: pt serif;
		font-size: 18px;
		line-height: 24px;
		padding-left: 20px;
		padding-right: 20px;
		text-shadow: none;
	}
	.carousel-caption.darker_greenish h1{
		color: #c13598;
		font-family: montserrat;
		font-size: 24px;
		margin: 0;
		text-transform: uppercase;
	}
	.mentors .mentor_block .description{
		margin-top: 60px;
	}
	.mentors .mentor_block .description .slogan{
		font-size: 13px;
		line-height: 17px;
	}
	.mentors .mentor_block .bottom_image .women{
		margin-top: 130px;
	}
	.mentors .team_wrap{
		width: 20%;
	}
	.mentors_landing .learn_more{
		margin-top: 10px;
	}
	.gallery .col-md-4{
		padding-left: 8px;
		padding-right: 7px;
	}
	.gallery .gallery_item .gallery_descr p{
		font-size: 12px;
	}
	.gallery .gallery_item .gallery_over_wrap .gallery_over{
		font-size: 13px;
	}
	.isotope-grid .isotope-item{
		margin-bottom: 5px;
		margin-top: 5px;
	}
	.iso .grid-sizer{
		width: 240px;
	}
	.iso .widget.featured{
		width: 476px;
	}
	.iso .widget{
		width: 235px;
	}
	.wide-part .text-wrapper .inner-wrapper{
		width: 446px;
	}
}
@media (min-width: 1200px){
	header.header{
		background: #ffffff;
		float: left;
		top: 0;
		width: 100%;
		z-index: 9999;

		-webkit-backface-visibility: hidden;
		/*height: 180px;*/
	}
	header a{
		opacity: 1;
		outline: none !important;
		text-decoration: none;
		-webkit-transition: all 0.4s ease 0s;
		   -moz-transition: all 0.4s ease 0s;
		    -ms-transition: all 0.4s ease 0s;
		        transition: all 0.4s ease 0s;
	}
	header a:hover{
		opacity: 0.6;
		text-decoration: none;
	}
	header .top-header{
		margin-bottom: 5px;
		position: relative;
	}
	header .top-header .logo{
		float: left;
		left: 0;
		position: absolute;
		top: 0;
	}
	header .top-header .logo img{
		height: 75px;
		margin: 40px 25px 40px 5px;
		width: 300px;
	}
	header .right-header .topbar .top-part-login{
		float: left;
	}
	header .right-header .topbar .top-part-login a.login{
		background: #693390 none repeat scroll 0 0;
		color: #ffffff;
		display: block;
		font-family: montserrat;
		font-size: 13px;
		margin-right: 12px;
		padding: 10px 30px;
		text-transform: uppercase;
	}
	.mobile-menu-wrap{
		display: none;
	}
	.frontpage .main-content{
		padding-top: 0 !important;
	}
	.main-content{
		float: left;
		margin-top: 155px;
		padding: 0;
		padding: 26px 0;
		width: 100%;
	}
	.main-content .middle-section .image-section{
		width: 100%;
	}
	.main-content .middle-section .image-section img{
		border: solid 5px #ffffff;
		box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
		margin-bottom: 5px;
	}
	.main-content .middle-section .image-section .text-right{
		color: #693390;
		font-family: 'Lato';
		font-size: 13px;
	}
	.top-margin{
		margin-top: 25px;
	}
	.carousel-caption{
		bottom: 30px;
		padding-bottom: 20px;
	}
	.carousel-caption.darker_greenish{
		background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
		color: #693390;
		font-family: pt serif;
		font-size: 21px;
		line-height: 30px;
		padding-left: 30px;
		padding-right: 30px;
		text-shadow: none;
	}
	.carousel-caption.darker_greenish h1{
		color: #c13598;
		font-family: montserrat;
		font-size: 27px;
		margin: 0;
		text-transform: uppercase;
	}
	.mentors .mentor_block .bottom_image .women{
		margin-top: 160px;
	}
	.mentors .team_wrap{
		width: 20%;
	}
	.wide-part .text-wrapper .inner-wrapper{
		width: 550px;
	}
}
/**

Add anywhere on the HTML page

<div class="lg">lg</div>
<div class="md">md</div>
<div class="sm">sm</div>
<div class="xs">xs</div>
<div class="xxs">xxs</div>


*/
@media (min-width: 1200px){
	.lg{
		background-color: red;
		color: white;
		display: block;
		position: fixed;
		text-align: center;
		width: 50px;
		z-index: 100000;
	}
	.md{
		display: none;
	}
	.sm{
		display: none;
	}
	.xs{
		display: none;
	}
	.xxs{
		display: none;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.lg{
		display: none;
	}
	.md{
		background-color: #c68b0c;
		color: white;
		display: block;
		position: fixed;
		text-align: center;
		width: 50px;
		z-index: 100000;
	}
	.sm{
		display: none;
	}
	.xs{
		display: none;
	}
	.xxs{
		display: none;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.lg{
		display: none;
	}
	.md{
		display: none;
	}
	.sm{
		background-color: #368c0d;
		color: white;
		display: block;
		position: fixed;
		text-align: center;
		width: 50px;
		z-index: 100000;
	}
	.xs{
		display: none;
	}
	.xxs{
		display: none;
	}
}
@media (min-width: 480px) and (max-width: 767px){
	.lg{
		display: none;
	}
	.md{
		display: none;
	}
	.sm{
		display: none;
	}
	.xs{
		background-color: #12b2ff;
		color: white;
		display: block;
		position: fixed;
		text-align: center;
		width: 50px;
		z-index: 100000;
	}
	.xxs{
		display: none;
	}
	.slider-wrapper .carousel-control{
		top: 50%;
		-webkit-transform: translateY(-50%);
		   -moz-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		     -o-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
}
@media (max-width: 479px){
	#big-carousel2 .carousel-control span{
		top: 25%;
	}
	.lg{
		display: none;
	}
	.md{
		display: none;
	}
	.sm{
		display: none;
	}
	.xs{
		display: none;
	}
	.xxs{
		background-color: #ae10ff;
		color: white;
		display: block;
		position: fixed;
		text-align: center;
		width: 50px;
		z-index: 100000;
	}
}


/*ADD NEW CSS*/
header .top-header .logo img.cust{
	height: auto;
	margin: 15px 0 0!important;
	width: 250px;
}
p.backtext{
	letter-spacing: 0.1em;
	margin: 5px 0 10px 39px;
}

.main-navagation ul.nav li a.cust{
	color: #8755ab;
	font-family: Arial, sans-serif;
	font-size: 14px;
	text-transform: none;
}
.main-navagation{
	top: 90px;
}
.font20{
	font-size: 20px!important;
	font-weight: 700!important;
}

.dl-menuwrapper.cust{
	left: 0;
	margin-top: -50px;
	max-width: 100%;
	right: 0;
	text-align: right;
	top: 0;
	width: 100%;
}
.dl-menuwrapper .dl-menu.cust{
	max-width: 250px;
	right: 0;
	text-align: left;
}
header.height{
	box-shadow: 5px 5px 5px #cccccc;
	height: auto;
}


.timesheet-btn{
	background: #c82892;
	border: 1px solid transparent;
	border-radius: 0;
	color: #ffffff;
	float: none;
	font-family: Lato;
	font-size: 16px;
	font-weight: 700;
	margin: auto;
}
.timesheet-btn:hover,
.timesheet-btn:focus,
.timesheet-btn:visited{
	background: #ffffff;
	border: 1px solid #c82892;
	color: #c82892;
}
.iso.mar-non{
	margin-top: 0;
}
.main-content.martop{
	margin-top: 110px;
}

.entry.drop-shadow .heading{
	margin-top: 0;
	padding-top: 10px;
}
.entry.drop-shadow .heading a{
	color: #693390;
	display: inline;
	font-family: Lato;
	font-size: 17px;
	font-weight: 700;
	height: 20px;
	letter-spacing: 0.3px;
	padding-top: 40px;
	text-decoration: none;
	text-transform: none;
}
.entry.drop-shadow p{
	color: #888888;
	font-family: Lato, sans-serif;
	font-size: 14px;
	line-height: 20px;
}


h3.title{
	color: #8755ab;
	font-family: 'Lato', sans-serif;
	font-size: 25px;
	font-weight: 700;
	margin: 0;
}
h3.title span{
	font-size: 20px;
}
h4.title{
	color: #c12593;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin: 35px 0 20px 0;
}

@media (max-width: 767px){
	h3.title span{
		margin: 0 0 20px 0;
	}
	h4.title{
		color: #c12593;
		font-family: 'Lato', sans-serif;
		font-size: 16px;
		font-weight: 700;
		margin: 15px 0 20px 0;
	}
	.font20{
		font-size: 16px!important;
		font-weight: 400!important;
	}
}
@media (max-width: 479px){
	.main-content.martop{
		margin-top: 90px;
	}
	header .top-header .logo img.cust{
		height: auto;
		margin: 15px 0 0!important;
		width: 150px;
	}
  
	h3.title{
		font-size: 20px;
	}
	h3.title span{
		font-size: 14px;
	}


	a.back{
		float: left;
		margin-top: 48px;
		width: 151px;
	}

	.dl-menuwrapper.cust{
		left: 0;
		margin-top: -40px;
		max-width: 100%;
		right: 0;
		text-align: right;
		top: 0;
		width: 100%;
	}

	.iso.mar-non{
		margin-top: 0;
	}
	.iso .widget.featured.width{
		max-width: 100%;
		width: 100%;
	}
	.iso .widget.width{
		max-width: 100%;
		width: 100%;
	}
	.slider-wrapper .carousel-control{
		top: 20%;
	}
}


@media screen and (max-width: 767px){
	.top-header .social-links{
		display: none;
	}
	header .top-header .logo img{
		margin: 20px 0 10px !important;
	}
	header .top-header .logo{
		left: 40px;
		z-index: 5;
	}
	.dl-menuwrapper{
		top: -56px;
		z-index: 4;
	}

	.carousel-caption.darker_greenish{
		font-size: 15px;
		padding: 0 30px;
		position: static;
	}
	.carousel-caption.darker_greenish p{
		font-size: 15px;
		line-height: 1.5;
		padding: 0 15px;
	}
	.carousel-caption.darker_greenish h1{
		font-size: 19px;
		line-height: 1.2;
	}
	.carousel-caption.darker_greenish{
		padding: 5px 20px 0;
	}
	.image_box_container > .container{
		display: none;
	}
	.image_box_container .display_content p{
		font-size: 15px;
	}

	.wide-part .image-wrapper{
		height: 230px;
	}
	#big-carousel .carousel-control .icon-prev,
	#big-carousel .carousel-control .glyphicon-menu-left,
	#big-carousel .carousel-control .icon-next,
	#big-carousel .carousel-control .glyphicon-menu-right{
		display: none;
	}
	.wide-part .text-wrapper{
		padding: 10px 20px;
	}
	.wide-part .text-wrapper h1{
		font-size: 21px;
		padding-top: 0;
	}
	.wide-part .text-wrapper .post{
		font-size: 17px;
	}
	.wide-part .text-wrapper p,
	.wide-part .text-wrapper a{
		font-size: 12px;
	}
	.wide-part .text-wrapper p{
		line-height: 1.4;
	}
	.wide-part .text-wrapper a{
		margin-top: 20px;
	}
	.grey-section{
		margin-left: 15px;
		margin-right: 15px;
		padding-top: 5px;
	}
	#big-carousel .carousel-control{
		display: none;
	}
	.slider-wrapper .carousel-control{
		height: 33px;
		margin: 0 20px;
		width: 17px;
	}
	#big-carousel2 .carousel-control{
		background: none;
		opacity: 1;
		z-index: 9;
	}
	#big-carousel2 .carousel-control span:before{
		display: none;
	}
	#big-carousel2 .carousel-control span{
		background: url(../images/slider-arrow.png) no-repeat left top;
		height: 33px;
		left: 0;
		width: 17px;
	}
	#big-carousel2 .carousel-control span.glyphicon-menu-right{
		background-position: -18px 0;
		left: auto;
		right: 0;
	}
	#big-carousel2 .carousel-indicators{
		display: none;
	}
	#big-carousel2{
		margin-bottom: 0;
	}
	.image_box_container .display_content p{
		font-size: 14px;
		line-height: 1.5;
	}
	.image_box_container{
		height: auto;
	}
	.image_box_container .display_content .image1_content,
	.image_box_container .display_content .image2_content,
	.image_box_container .display_content .image3_content,
	.image_box_container .display_content .image4_content,
	.image_box_container .display_content .image5_content,
	.image_box_container .display_content .image6_content{
		display: block;
	}
	.image_box_container .display_content{
		margin-top: 0;
	}
	.image_box_container{
		margin: 0;
	}
	.image_box_container .display_content .item{
		opacity: 1;
		padding: 22px 15px;
		transition: left 0.6s ease-in-out 0s;
	}
	.image_box_container .display_content .item .text-top-arrow{
		display: none;
	}
	.image_box_container .display_content .active.item{
		display: block;
	}
	.image_box_container .display_content .name{
		color: #693390;
		font-size: 16px;
		margin-bottom: 10px;
	}
	.owl-wrapper-outer{
		display: block !important;
	}
	.owl-controls{
		display: block !important;
	}
	.owl-controls .owl-buttons div{
		background: url(../images/slider-arrow-purple.png) no-repeat left top;
		font-size: 0;
		height: 33px;
		left: 2%;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		   -moz-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		     -o-transform: translateY(-50%);
		        transform: translateY(-50%);
		width: 17px;
	}
	.owl-controls .owl-buttons div.owl-next{
		background-position: -18px 0;
		left: auto;
		right: 2%;
	}
	.userBtn{
		right: 8px;
		top: 24px;
	}
	#userProfilecollapse{
		overflow: hidden;
		right: 8px;
		top: 65px;
	}
	.mob-accord{
		overflow: hidden;
		padding: 0;
	}
	.mob-accord .mob-accord-btn{
		cursor: pointer;
	}
	.mob-accord .mob-accord-content{
		/*display: none;*/
	}
	.mob-accord .mob-accord-content .row div:last-child{
		padding-bottom: 10px;
	}
	.wide-part .text-wrapper a{
		display: none;
	}
	.content-part .filter{
		display: none;
	}
	.events-section .gray-text .seperator-mob{
		background: none;
		display: block;
		height: 1px;
	}
	.content-part p{
      line-height: 21px;
	}
	#sidebar-calendar,
	.__life_skill .rel-lnk-top{
		display: none;
	}
	.__life_skill .rel-lnk-top#custom-select{
		display: block;
	}
	.main-content .left-part{
		padding-right: 15px;
	}
	.header{
	}
	.mentors .category_wrap .category{
		float: right;
		margin-right: 15px;
	}
	.mentors .mentor_block .description .first_name,
	.mentors .mentor_block .description .last_name{
		font-size: 20px;
		line-height: 1;
	}
	.mentors .mentor_block .description.desc1{
		margin-top: 4px !important;
	}
	.imageBorder{
		border-width: 5px;
	}
	.mentors .mentor_block .description .slogan{
		font-size: 12px;
		line-height: 15px;
	}
	.content-right .first_name,
	.content-right .last_name{
		padding-left: 0;
	}
	.main-content.mentors_mentees .middle_shadow_up{
		display: none;
	}

	.resources_page .event-box.new > .event > .row > .event-left{
		margin-bottom: 15px;
	}
}

.user-bio{
	display: block;
}
.video-section .intro-post{
	padding-top: 8px;
}
.location-name{
	display: inline-block;
	font-weight: 700;
	padding-bottom: 8px;
}
.content-part .event-address{
	line-height: 22px;
}
#cal-inner th,
#order_continuebtn a:hover{
	color: #693390 !important;
}
#calendar-table{
	width: 100% !important;
}
#cal-inner{
	width:         calc(100% - 14px) !important;
	width: -webkit-calc(100% - 14px) !important;
}


/*Sparx CSS Start Here*/



.main-navagation{
	top: 120px !important;
}
.initiative .main-navagation{
	top: 160px !important;
}

#pics{
	margin-bottom: 15px;
}
.content-part h4{
	margin-top: 0;
}

#calendar-table .title{
	color: #693390 !important;
}


.left-side-bar .directory-searchform{
	background: #ebecec;
	border-radius: 2px;
	margin-bottom: 29px;
	position: relative;
}
.left-side-bar .directory-searchform:after{
	background: url(../images/form-shadow.png) no-repeat center bottom;
	bottom: -22px;
	content: '';
	height: 9px;
	left: 0;
	position: absolute;
	width: 100%;
}
.left-side-bar .srch-box{
	background: none;
	border: none;
	border-radius: 2px;
	color: #696969;
	max-width: 140px;
	padding: 9px 12px;
	text-transform: uppercase;
}
.left-side-bar .search-box{
	background: url(../images/search.png) no-repeat center center;
	border: none;
	float: right;
	font-size: 0;
	height: 38px;
	padding: 0;
	width: 38px;
}

.employees-list{
	font-family: 'Montserrat';
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
}

.employees-list li{
	border-top: 1px solid #d3d4d4;
	float: none;
	overflow: hidden;
	padding: 18px 0;
	position: relative;
}
.employees-list li:first-child{
	border: none;
}
.employees-list li .employees-detail-content{
	overflow: hidden;
	position: relative;
}
.employees-list li .img-box{
	border: 4px solid #cccccc;
	float: left;
	margin-bottom: 0;
	margin-right: 28px;
	width: auto;
}
.employees-list li .img-box img{
	height: 100px;
	width: 100px;
}
.employees-list li .staff-details{
	display: block;
}
.employees-list li .staff-details h2{
	color: #693390;
	font-size: 25px;
	margin: 0 0 10px;
	text-transform: uppercase;
	word-break: break-all;
}
.employees-list li .staff-details span{
	color: #666666;
	display: block;
}

.employees-list li a.more{
	background: url(../images/more.png) no-repeat 0 0;
	bottom: 25px;
	height: 15px;
	position: absolute;
	right: 25px;
	width: 15px;
}
.employees-list li a.more.less{
	background: url(../images/less.png) no-repeat 0 0;
}
.employees-list li .profile_list{
	display: none;
	float: left;
	padding: 20px 0 0 136px;
	width: 100%;
}
.employees-list li .profile_list .text-div{
	float: none !important;
	height: auto !important;
}
.employees-list li .profile_list .address{
	float: none;
	width: auto;
}
.employees-list li .profile_list .address p{
	line-height: 1.3;
	margin-bottom: 0;
	text-transform: capitalize;
}
.employees-list li .profile_list .social-links{
	float: none;
	margin: 20px 0;
	overflow: hidden;
	width: auto;
}
.employees-list li .profile_list h4{
	margin: 0;
}
.employees-list li .profile_list p{
	line-height: 1;
}
.employees-list li .profile_list .bio{
	padding-bottom: 20px;
}

.employees-pager{
	color: #693390;
	overflow: hidden;
	text-align: center;
	text-transform: capitalize;
}
.employees-pager a{
	cursor: pointer;
}
.num-box{
	border: 1px solid #dddddd ;
	border-radius: 3px;
}
.num-box > div{
	padding: 5px 12px;
}
.num-box > div.md-mid-1{
	padding-right: 5px !important;
}
.num-box > div.md-mid-2{
	padding-left: 0;
}
.num-box > div.md-prev{
	border-right: 1px solid #dddddd;
}
.num-box > div.md-next{
	border-left: 1px solid #dddddd;
}
.per-page{
	margin-left: 25px;
}
.per-page select{
	border: 1px solid #dddddd ;
	border-radius: 3px;
	padding: 5px 12px;
}
.employees-pager div{
	display: inline-block;
	float: none !important;
}

.select-row{
	border: 1px solid #b7b7b7;
	border-radius: 2px;
	margin-bottom: 12px;
	position: relative;
}
.select-row:after{
	background: url(../images/select-arrow.png) no-repeat center center #ffffff;
	border-radius: 2px;
	content: '';
	height: 35px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 34px;
}
.select-row select{
	background: none;
	border: none;
	border-radius: 2px;
	color: #666666;
	font-weight: bold;
	height: 35px;
	padding: 8px 10px;
	width: 100%;
}

.alpha-search{
}
.alpha-search ul{
	background: #f3f3f3;
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	padding: 5px;
}
.alpha-search ul li{
	list-style: none;
	padding: 0 5px;
}
.alpha-search ul li a{
	font-size: 20px;
	font-weight: bold;
	text-decoration: none !important;
}
.alpha-search ul li a.active{
	opacity: 0.4;
}

.left-side-bar #submit{
	background: #693390;
	border: none;
	color: #ffffff;
	padding: 5px 18px;
}
.left-side-bar #submit:hover{
	opacity: 0.4;
}
.left-side-bar #clear{
	background: #f1f0f1;
	color: #693390;
	float: right;
	padding: 5px 7px;
	text-decoration: none !important;
}

.filter-section h2{
	background: #f3f3f3;
	color: #693390;
	cursor: pointer;
	display: none;
	font-size: 14px;
	margin: 10px 0;
	padding: 12px 15px;
	position: relative;
	text-transform: uppercase;
}
.filter-section h2 i{
	background: url(../images/plus.png) no-repeat 0 0;
	height: 15px;
	position: absolute;
	right: 15px;
	top: 12px;
	transition: all 0.2s linear 0s;
	width: 15px;
}
.filter-section h2 i.open{
	background: url(../images/minus.png) no-repeat 0 0;
}

.communication{
	padding: 10px 0;
}
.communication li{
	border: none;
	color: #693390;
	display: inline-block;
	overflow: visible;
	padding: 0 16px;
	position: relative;
	vertical-align: top;
}
.communication li:after{
	background: #666666;
	content: '';
	height: 100%;
	left: -1px;
	position: absolute;
	top: 0;
	width: 1px;
}
.communication li:first-child{
	padding-left: 0;
}
.communication li:first-child:after{
	display: none;
}
.communication li a{
	color: #693390;
}
.communication li span{
	color: #666666;
	margin-right: 5px;
}

.main-content ul.catgry{
	margin-top: 0;
}


@media screen and (max-width: 767px){
	.shadows{
		display: none;
	}
	.col-lg-2.col-md-2.left-part.visible-lg-block.visible-md-block{
		display: block !important;
	}
	.filter-section h2{
		display: block;
	}
	.filter-section .filter-fields{
		display: none;
	}
	.left-side-bar .directory-searchform{
		background: none;
		border: 1px solid #b7b7b7;
		margin-bottom: 20px;
	}
	.left-side-bar .directory-searchform:after{
		display: none;
	}
	.employees-list li .profile_list{
		padding: 20px 0 0 0;
	}
	.employees-list li a.more span{
		right: 0;
	}
	.left-side-bar #clear{
		float: none;
		margin-left: 10px;
	}
	.main-content .middle-part{
		padding: 0;
	}
	.filter-section .filter-fields{
		padding-bottom: 20px;
	}

	.employees-list li .img-box{
		margin-right: 10px;
	}
	.employees-list li .staff-details h2{
		font-size: 15px;
	}
	.employees-list li a.more{
		bottom: 0;
		right: 0;
	}
	/*.employees-list li .img-box{ float: none; display: block; margin: 0 auto; width: 108px;  }
.employees-list li .staff-details{ float: left; width: 100%; margin-top: 15px; }*/
}

@media (min-width: 768px) and (max-width: 991px){
	.col-lg-2.col-md-2.left-part.visible-lg-block.visible-md-block{
		display: block !important;
	}
	.main-content .left-part{
		padding: 0 15px;
	}
	.main-content .middle-section{
		padding: 0;
		width: 100%;
	}
	.left-side-bar #clear{
		float: none;
		margin-left: 10px;
	}
	.main-content .middle-part{
		padding: 0 15px;
	}
	.filter-section .filter-fields{
		padding-bottom: 20px;
	}
}

@media (min-width: 992px) and (max-width: 1199px){
	.left-side-bar .srch-box{
		max-width: 106px;
	}
	.left-side-bar #submit{
		margin-top: 5px;
	}
	.left-side-bar #clear{
		display: inline-block;
		float: none;
		margin-top: 5px;
	}
}

.mentors .category_wrap{
	z-index: 99;
}

.date_dropdown{
	font-size: 15px;
	height: 30px;
	padding: 2px 12px;
}

.schName{
	color: #693390;
}

.schYear{
	color: #693390;
	display: block;
	font-family: montserrat;
	font-size: 18px;
	padding: 2px 0;
}

.mentors .mentor_block .description .slogan{
	color: #611e8c !important;
}

.mentors .category_wrap .category{
	letter-spacing: -0.05em;
}

.mentors .category_wraping{
	position: static !important;
}

.mentors .mentor_block .bottom_image .women{
}

.mentors .mentor_block .description.desc1{
	margin-top: 0 !important;
}

.imageBorder img{
	border: 2px solid #ffffff;
	margin-top: 0 !important;
	  /*border-radius: 50%;*/
}

.imageBorder a{
	display: block;
	max-height: 120px;
	overflow: hidden;
}

.imageBorder{
	border: 6px solid #e6dded;
	height: 124px !important;
	line-height: 124px;
	overflow: hidden;
	width: 124px !important;
  border-radius: 50%;
}

.mentors_landing .category_wrap{
	margin-bottom: 25px;
	margin-top: 10px;
}

.mentors_landing{
	/* padding-bottom: 30px; */
	margin-bottom: 15px;
}

.rightImg{
	float: right;
}


/*.middle-section .middle-part .middle_shadow_down{ height:30px; }*/


/* 29 Feb 2016 */

.form-control.date_dropdown{
	color: #666666;
	font-family: 'Lato';
	font-size: 16px;
	padding: 3px 12px;
}

.s-hidden{
	padding-right: 10px;
	visibility: hidden;
}

.select{
	border: 1px solid #cccccc;
	color: black;
	cursor: pointer;
	display: block;
	position: relative;
}

.styledSelect{
	background-color: white;
	bottom: 0;
	color: #666666;
	font-family: 'Lato';
	font-size: 16px;
	font-weight: normal;
	left: 0;
	line-height: 32px;
	padding: 0 10px;
	position: absolute;
	right: 0;
	top: 0;
}

.styledSelect:after{
	border: 5px solid transparent;
	border-color: #666666 transparent transparent transparent;
	content: '';
	height: 0;
	position: absolute;
	right: 8px;
	top: 14px;
	width: 0;
}

.options{
	background-color: white;
	border: 1px solid #cccccc;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	list-style: none;
	margin: 0 0;
	padding: 0 0;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 999;
}

.options li{
	color: #666666;
	font-family: 'Lato';
	font-size: 16px;
	line-height: 25px;
	margin: 0 0;
	padding: 0 10px;
}

.options li:hover{
	background-color: #999999;
	color: white;
}

.btn.btn-primary.btn-purple{
	background: #9072ad;
	border-color: #9072ad;
	        border-radius: 0;
	   -moz-border-radius: 0;
	-webkit-border-radius: 0;
	color: #ffffff;
	display: block;
	font-family: montserrat;
	font-size: 13px;
	margin: 0 0 20px;
	margin-right: 12px;
	padding: 10px 30px;
	text-transform: uppercase;
	width: 100%;
}

.btn.btn-primary.btn-purple:hover,
.btn.btn-primary.btn-purple:active,
.btn.btn-primary.btn-purple:focus{
	background: #9072ad;
}

body .modal{
	z-index: 99999999;
}

body .modal-backdrop{
	z-index: 9999999;
}

.st_sharethis_custom img{
	width: 16px;
}

.st_sharethis_custom{
	margin: 0 0 0 15px;
}

.main-content .iso .widget .entry-container .entry .entry-footer li{
	opacity: 1;
}

.main-content .iso .widget .entry-container .entry .entry-footer li.left,
.main-content .iso .widget .entry-container .entry .entry-footer li .like,
.main-content .iso .widget .entry-container .entry .entry-footer li span{
	opacity: 0.35;
}


/*#myModal .modal-dialog { max-width:300px; }*/

#myModal .modal-header{
	border-bottom: none;
}

#myModal .modal-title{
	color: #693390;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0;
	padding: 0 0 15px;
	text-align: center;
	text-transform: uppercase;
}

.__popup_wrap{
	text-align: center;
}

#myModal .__popup_logo img{
	max-width: 224px;
}

#myModal .__popup_logo{
	display: inline-block;
	margin-bottom: 30px;
}

#myModal .modal-body{
	padding: 10px 30px 40px;
}

.login-form input[type='text'],
.login-form input[type='password']{
	background: #f2f2f2;
	border: none;
	box-shadow: none;
	color: #7b7b7b;
	display: block;
	height: 37px;
	line-height: 100%;
	margin: 0 0 12px;
	padding: 4px 10px;
	width: 100%;
}

.login-form input[type='submit'],
.login-form .__login-btn{
	background: #9072ad;
	border: none;
	color: #ffffff;
	font-family: montserrat;
	font-size: 18px;
	height: 45px;
	line-height: 45px;
	margin: 0 0 15px;
	padding: 0 15px;
	text-transform: uppercase;
	width: 100%;
}

.login-form input[type='submit']:hover,
.login-form .__login-btn:hover{
	opacity: 0.4;
}

.login-form .forgot{
	display: block;
	text-align: center;
}

.login-form .forgot a{
	color: #7e4092;
	font-size: 14px;
	font-weight: 700;
	text-transform: capitalize;
}

#big-carousel2 .wide-part .text-wrapper .inner-wrapper{
	width: 100%;
}

#big-carousel2 .carousel-indicators{
	bottom: -45px;
}

#big-carousel2 .carousel-indicators li{
	background: #c5c5c5;
	border: none;
	height: 12px;
	margin: 3px;
	width: 12px;
}

#big-carousel2 .carousel-indicators .active{
	background: #a580c0;
	border: none;
}

#big-carousel2 .wide-part{
	height: auto;
}

#big-carousel2{
	margin-bottom: 45px;
}


/* User Profile Header Start */

header .top-header{
	clear: both;
}

header .top-header .logo{
	position: relative !important;
}

header .top-header .logo img{
	margin: 20px 0 !important;
}

#userProfilecollapse{
	background: #9170af none repeat scroll 0 0;
	font-family: 'Montserrat';
}

.userName{
	background: #9c80b8 none repeat scroll 0 0;
	color: #ffffff;
	float: left;
	padding: 10px;
}

.userName::before{
	background: #9c80b8 none repeat scroll 0 0;
	content: '';
	height: 100%;
	position: absolute;
	right: 100%;
	top: 0;
	width: 100%;
}

.userName a{
	color: #ffffff;
}

.userName a:hover{
	cursor: pointer;
}

.userMenu{
	background: #9170af none repeat scroll 0 0;
	float: left;
}

.userMenu ul{
	padding: 0;
}

.userMenu li{
	float: left;
	padding: 10px 20px;
}

.userMenu li a{
	color: #ffffff;
}


/* User Profile Header End */


/* 01 july 2016 :: for side bar*/


/*.main-content ul.catgry li a { text-transform: capitalize; }*/

.main-content ul.catgry ul.sub-menu{
	padding: 0;
}

.sub-menu li a{
	padding-left: 15px;
}

.thumb-image h3{
	color: #693390;
	font-family: 'Lato';
	margin-bottom: 8px;
	margin-top: 0;
}

.shadow-box .thumb-image .sidebar_link{
	color: #693390;
	margin-bottom: 0;
	margin-top: 10px;
}

#pics img.cycle-slide{
	border: solid 5px #ffffff;
	-webkit-box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
	   -moz-box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
	        box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
	margin: 0 0 5px;

	    -ms-box-shadow: 0 0 5px rgba(1, 1, 1, 0.75);
}

#pics .text-right{
	color: #693390;
	font-family: 'Lato';
	font-size: 13px;
}

.editorial-mdl-bottom{
	border: none;
	margin-bottom: 0;
}

.event-box{
	padding: 4px 0 18px 6px;
}

.event-box .sky-blue-text{
	color: #693390;
	font-family: 'Lato';
}

.event-box .gray-text.italic a{
	font-family: 'Lato';
	font-style: normal;
}

.content-part h1.heading{
	color: #693390;
	font-family: 'Lato';
}

.gray-text .st_sharethis_custom{
	margin: 0;
}

.event-box .gray-text.event-links{
	font-size: 0;
}

.event-box .gray-text.event-links .separetor{
	margin: 9px 10px 0;
	vertical-align: top;
}

.event-box .gray-text.text-upper .separetor{
	margin: 8px 10px 0;
	vertical-align: top;
}

.dark-green-text.medium.event-links .st_sharethis_custom{
	margin: 0;
}

.event-title,
.resources_page .event a{
	color: #693390;
	font-family: 'Lato';
	margin-top: 0 !important;
}

.resources_page .event p{
	font-family: 'Lato';
}

.content-part ul.pagination{
	margin-left: 0;
}

.main-content ul#menu.catgry li.active a{
	color: #666666;
}

.main-content ul#menu.catgry li.active > a{
	color: #b82394;
}

.galley-box a{
	-webkit-transition: all 0.6s ease 0.2s;
	   -moz-transition: all 0.6s ease 0.2s;
	    -ms-transition: all 0.6s ease 0.2s;
	     -o-transition: all 0.6s ease 0.2s;
	        transition: all 0.6s ease 0.2s;
}

.galley-box a:hover{
	opacity: 1;
	-webkit-transition: all 0.6s ease 0.2s;
	   -moz-transition: all 0.6s ease 0.2s;
	    -ms-transition: all 0.6s ease 0.2s;
	     -o-transition: all 0.6s ease 0.2s;
	        transition: all 0.6s ease 0.2s;
}

.gallery .img-box{
	max-width: 225px;
}

div#fancybox-wrap{
	z-index: 9999999;
}

.event-img-inline .eve-cal-sub a img{
	width: auto;
}

.event-img-inline .eve-cal-sub a{
	display: block;
	padding: 2px 5px 5px;
}

.eve-addtocal .eve-cal-sub a img{
	width: auto;
}

.eve-addtocal .eve-cal-sub a{
	clear: both;
	display: block;
	padding: 2px 5px 5px;
}

body .main-navagation ul.nav li ul.dropdown-menu li a{
	padding: 4px 35px 0 15px;
	position: relative;
}

.main-content .ideazone_rightcol .middle-part{
	padding: 0;
}


/* 14 July 2016 */

.slideshow-main.__life_skill h1{
	color: #693390;
	font-family: 'Lato';
	font-size: 25px;
	margin: 0 0 15px;
}

.slideshow-main.__life_skill h4{
	color: #8161a1;
	font-family: 'Lato';
	font-size: 18px;
	line-height: 29px;
	margin-bottom: 15px;
	margin-top: 14px;
}

.slideshow-main.__life_skill h2{
	color: #693390 !important;
	font-family: 'Lato' !important;
}

.slideshow-main.__life_skill .fck-field p{
	color: #666666;
	font-family: 'Lato';
	font-size: 16px;
	line-height: 30px;
}

.slideshow-main.__life_skill .rel-lnk-rgt{
	margin: 0 0 12px;
}

.slideshow-main.__life_skill .rel-lnk-rgt img{
	width: auto;
}

.slideshow-main.__life_skill .editorial-cnt-banner .slideshowbanner-image{
	height: auto;
	max-width: 100%;
	width: 100%;
}

.slideshow-main.__life_skill .editorial-cnt-banner .slideshowbanner-image img{
	height: auto;
	max-height: 360px;
	max-width: 100%;
	width: auto;
}


/* 15 July 2016 */

.image-section .text-right a{
	display: inline-block;
	line-height: 130%;
}

.editorial-block-btm3 h6{
	color: #693390;
	font-family: 'Lato';
}

.editorial-block-btm3 p{
	color: #666666;
	font-family: 'Lato';
	font-size: 16px;
	line-height: 30px;
}

.content-part p{
	color: #333333;
	font-family: 'Lato';
	font-size: 15px;
	line-height: 25px;
}

.editorial-block-btm3 a{
	color: #9072ad;
	font-family: Montserrat, sans-serif;
}

div.footer .social-links-footer{
	display: block;
	float: right;
	margin-left: 0;
}

.footer p{
	display: inline-block;
	float: left;
}

.footer_link{
	display: inline-block;
	float: right;
}

.footer_link a{
	margin: 0 0 0 10px;
}

.content-part .sponsor p{
	line-height: 25px;
}


/* 23 July 2016 */

.social-links span a.youtube{
	background-position: -96px 0;
}

.social-links span a.linkedin{
	background-position: -128px 0;
}

.directory-box .user-title{
	color: #693390;
	font-family: 'Lato';
	font-size: 25px;
	line-height: 100% !important;
	margin: 0 0 5px;
}

.directory-box h2{
	font-family: 'Lato';
	font-size: 16px;
	margin-bottom: 0;
	margin-top: 0;
}

.event-section .directory-box a{
	color: #b82394;
}

.event-section .event-box{
	padding: 20px 0 26px 6px;
}

.pagination .prev > a{
	border: 1px solid #dddddd !important;
}

#big-carousel a:hover{
	opacity: 1;
}


/* 27 July 2016 */

.main-content ul.catgry > li:first-child{
	padding-top: 0;
}

.content-part > h1,
.photogallery > h1,
.stay_social > h1,
.projects_landing_new > h1,
.dpt-a > h1,
.resources_page > h1{
	margin-top: 0;
}

.__mediapost{
	max-width: 156px;
}

.initiative .main-navagation{
	top: 140px;
}

#gre_section .intro-post{
	margin: 0 0 20px;
}


/* 29 July 2016 */

.faq-main h1{
	color: #6f38a5;
	font-family: 'Lato';
	font-size: 25px;
}

.faq-main p,
.captcha p,
.reset-password p{
	color: #666666;
}

.captcha h1{
	color: #6f38a5;
	font-family: 'Lato';
	font-size: 25px;
}

label{
	color: #666666 'important';
	font-family: 'Lato' !important;
}
label.error{
  color:#red !important
}
}
select.styled{
	border: 1px solid #cccccc;
	border-radius: 0;
	box-shadow: none;
	color: #555555;
	height: 34px;
	line-height: 1.42857;
	opacity: 1 !important;
	padding: 6px 12px;
	position: relative;
	width: 100% !important;
	z-index: 5;
}

.username-forgot-password{
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	color: #555555;
	font-size: 14px !important;
	height: 34px;
	line-height: 1.42857;
	margin-right: 5px;
	padding: 6px 12px;
	position: relative;
	width: 200px;
	z-index: 5;
}

#selectState,
#selectReferrer{
	display: none;
}

.btn{
	vertical-align: inherit !important;
}

.btn-default{
	color: #666666 !important;
}

.btn-default:hover{
	background-color: #9072ad !important;
	border-color: #9072ad !important;
	color: #ffffff !important;
}

.reset-password h1{
	color: #6f38a5;
	font-family: 'Lato';
	font-size: 25px;
}

.content-part ul{
	margin-left: 0 !important;
}

.reset-password ul li{
	list-style-type: none !important;
}

#new_password,
#new_password_again{
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	color: #555555;
	height: 34px;
	line-height: 1.42857;
	padding: 6px 12px;
	position: relative;
	z-index: 5;
}

.faq-cont form{
	font-size: 0;
}

.form-control::-moz-placeholder{
	color: #666666;
}

.main-content .middle-section .image-section .text-right{
	line-height: 150%;
}

.user-mail > a{
	display: block;
	font-family: 'lato';
	margin-top: 15px !important;
}

.main-content .left-menu-tabs .tab-content p{
	margin: 4px 0 !important;
}

.left-menu-tabs ul li{
	padding: 0 !important;
}

.main-content .left-menu-tabs li.grey-tab a{
	line-height: 30px;
}


/* 05Oct2016 for opacity */


/* 04-10-2016 :: Start */

.event-box div{
	color: #693390 !important;
}

#cal-inner th{
	color: #693390 !important;
}

#order_continuebtn a{
	background: #693390 !important;
	font-weight: bold;
}

#ticketorderform #order_continuebtn a:hover{
	background: #693390 !important;
	color: #ffffff !important;
}

#tkt_review-table .title{
	color: #693390 !important;
}

.reg_evttitle{
	color: #693390 !important;
}

#table_tkt_review th{
	color: #693390 !important;
}

#steps{
	color: #693390 !important;
}

.content-part ul li{
	/*list-style: none !important;*/
}

.tickettype_title h3{
	color: #693390 !important;
}

form#event_attendees_form #submitorder{
	background: #693390 !important;
	font-weight: bold;
}

form#event_attendees_form #submitorder:hover{
	background: #693390 !important;
	color: #ffffff !important;
}

#my_ticket h2 b{
	color: #693390 !important;
	font-size: 14px !important;
}

#sysloadingimage img{
	border: none !important;
	height: 32px !important;
	width: 32px !important;
}

#my_ticket table tr td{
	border-top: none !important;
}

#createAcc{
	background: #693390 !important;
	font-weight: bold;
}

#createAcc:hover{
	background: #693390 !important;
	color: #ffffff !important;
}

.content_heading_expand h1{
	color: #693390 !important;
	font-size: 18px !important;
}

.event_login .adminform input#loginAcc{
	background: #693390 !important;
	font-weight: bold;
}

.event_login .adminform input#loginAcc:hover{
	background: #693390 !important;
	color: #ffffff !important;
}

.forgot1 a{
	color: #693390 !important;
}

#newevent_login{
	z-index: 999 !important;
}

.whoscoming{
	float: right;
	margin-right: 25px;
}

.event_login .evt_details{
	width: 326px !important;
}

.reglogin_here a{
	color: #693390 !important;
}

.reglogin_here a:hover{
	cursor: pointer;
}

.login_here a{
	color: #693390 !important;
}

.view_all_news{
	margin-top: 5px;
	text-align: center;
}

.view_all_news a{
	color: #693390;
	font-family: 'Lato';
	font-size: 16px;
}

.view_all_news a:hover{
	color: #693390 !important;
	opacity: 0.4;
}

.view_all_news a:focus{
	text-decoration: none !important;
}

.news-wrapper .post-part{
	overflow: hidden;
}

#sysloadingimage_cact img{
	width: 32px !important;
}

#orderloading_img img{
	width: 32px !important;
}

#sysloadingimage_cact{
	float: right !important;
	margin: 17px 0 10px !important;
	width: auto !important;
}

#sysloadingimage_1 img{
	margin: -32px 0 0;
	width: 32px !important;
}

.content-part{
	overflow-x: visible !important;
}

#step_1_dt,
#step_2_dt,
#step_3_dt{
	width: 100% !important;
}

#TB_window{
	z-index: 99999999 !important;
}

#TB_load img{
	margin: -32px 0 0;
	width: 32px !important;
}

.table_tkt_type_name th{
	border: 1px solid #dddddd;
	min-width: 180px;
	padding: 5px;
}

.table_tkt_type_name td{
	border: 1px solid #dddddd;
	padding: 5px;
}


/* 04-10-2016 :: End */


/* 14-10-2016 :: Start */

.sky-blue-text{
	font-size: 20px !important;
}

#step_1,
#step_2,
#step_3{
	width: 100%;
}

.event-box img{
	margin-right: 35px !important;
}

.month{
	font-family: 'Lato' !important;
}

.supercal-month th{
	font-family: 'Lato' !important;
}

.supercal table td{
	font-family: 'Lato' !important;
}

#myinfo_myprofileforms .content-expand{
	border: 1px solid #dddddd;
	padding: 10px;
}

#myinfo_myprofileforms #personal-prof-ul{
	margin: 0 !important;
	padding: 0 !important;
}

#myinfo_myprofileforms ul#personal-prof-ul ul.first_name{
	margin: 0 !important;
	padding: 0 !important;
}

#myinfo_myprofileforms #personal-prof-ul li{
	width: 100% !important;
}

#myinfo_myprofileforms #personal-prof-ul li label{
	clear: both;
	float: left;
	width: 100% !important;
}

#myinfo_myprofileforms #personal-prof-ul li #usr_gender{
	float: left !important;
}

#myinfo_myprofileforms #personal-prof-ul li contact-info-gender label{
	float: none !important;
	margin-right: 5px;
	max-width: 200px;
	width: auto !important;
}

#myinfo_myprofileforms #personal-prof-ul .contact-info-gender .lbl{
	width: 200px !important;
}

#myinfo_myprofileforms #personal-prof-ul .contact-info-gender label{
	padding: 0 !important;
	width: auto !important;
}


/* 14-10-2016 :: End */


/* 17 Oct 2016 :: Start :: For My Profile page */

.myprofile_personal h1,
.social_main .popup-title h3{
	color: #693390;
	font-family: 'Lato';
	font-size: 25px;
	margin-bottom: 15px;
	margin-top: 0;
}

.myprofile_personal .expand_toggle{
	float: left;
	height: auto;
	position: relative;
	width: 100%;
}

.myprofile_personal .expand_toggle .expand_btn{
	border: none;
	border-bottom-width: 0;
	border-right-width: 0;
	border-top-width: 0;
	float: left;
	height: 30px;
	width: 100%;
}

.myprofile_personal .expand_toggle .expand_btn .expand_ul{
	list-style: none;
}

.myprofile_personal .expand_toggle .expand_btn .expand_ul li{
	clear: none;
	float: left;
	padding: 0;
}

.myprofile_personal .btn_expand{
	background: url(../images/expand_box_bg.jpg) repeat-x;
	border-right: 1px solid #cbcbcb;
	border-top: 1px solid #cbcbcb;
	color: #666666;
	font-weight: normal;
	height: 29px;
	line-height: 20px;
	line-height: 28px;
	padding: 0 20px;
	text-align: center;
}

.myprofile_personal .btn_expand:hover,
.btn_expand-active,
.tab-active{
	background: #9170af;
	border-right: 1px solid #9170af;
	border-top: 1px solid #9170af;
	color: #ffffff;
	font-weight: normal;
	height: auto;
	line-height: 22px;
	padding: 4px 20px;
	text-align: center;
}

.myprofile_personal .expand_toggle .expand_btn .expand_ul li a{
	color: #a8a8a8;
}

.myprofile_personal .expand_toggle .expand_btn .expand_ul li a:hover{
	color: #6b9cc5;
}

.myprofile_personal .btn_expand_chck{
	color: #6b9cc5;
	font-weight: bold;
	margin: 5px 0 0 20px;
	padding: 0;
}

.myprofile_personal .btn_expand_chck ul{
	list-style: none;
}

.myprofile_personal .btn_expand_chck ul li{
	float: left;
}

.myprofile_personal .btn_expand_chck ul li input[type='checkbox']{
	float: left;
	margin: 4px 5px 0 0;
}

.myprofile_personal .btn_expand_.md-member-namechck ul li label{
	color: #a8a8a8;
	font-family: 'Lato';
	font-size: 13px;
	font-style: italic;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

.myprofile_personal .expand_toggle ul.expand_ul li.renew_click{
	color: #999999;
	float: right;
	margin: 5px 0 0;
}

.myprofile_personal .clear{
	clear: both;
}

#myinfo_myprofileforms .myprofile_personal .content-expand{
	border: 1px solid #cbcbcb;
	float: left;
	height: auto;
	padding: 5px 0 20px;
	position: relative;
	width: 100%;
}

.myprofile_personal#myprofile .content-expand .expand_toggle_heading{
	border-bottom: 2px dotted #cbcbcb;
	float: left;
	height: auto;
	margin: 0;
	min-height: 34px;
	padding: 10px 21px 0;
	width: 100%;
}

.myprofile_personal#myprofile .content-expand .expand_toggle_heading .content_heading_expand{
	cursor: pointer;
	float: left;
	padding-bottom: 10px;
	width: 100%;
}

.myprofile_personal .content-expand .expand_toggle_heading h1{
	color: #3e73a5;
	float: left;
	font-size: 16px;
	letter-spacing: -0.5px;
	margin: 0;
	padding: 0;
	width: 100%;
}

.myprofile_personal#myprofile .content_heading_expand h1 span{
	background: url('../images/arrow-right.jpg') no-repeat scroll right center;
	float: right;
	width: 15px;
}

.myprofile_personal#myprofile .content_heading_expand h1 span.arrow{
	background: url('../images/arrow-hover.jpg') no-repeat scroll 3px 0;
	margin-top: 4px;
}

.myprofile_personal .submit-content{
	text-align: center;
}

.myprofile_personal .sub_heading_2,
.myprofile_personal .sub_heading{
	color: #a8a8a8;
	font-family: 'Lato';
	font-size: 11px;
	font-style: italic;
	font-weight: normal;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 0 15px;
}

.content-part .myprofile_personal ul{
	margin: 0;
	padding: 0;
}

#myinfo_myprofileforms .myprofile_personal #personal-prof-ul{
	float: left;
	margin: 0;
	padding: 0 0 10px !important;
}

.myprofile_personal #personal-prof-ul li{
	float: left;
	padding: 1px 1% 9px 0;
	width: 100%;
}

#myinfo_myprofileforms .myprofile_personal #personal-prof-ul ul.first_name li{
	padding-bottom: 0;
}

#myinfo_myprofileforms .myprofile_personal #personal-prof-ul li input[type='text'],
#myinfo_myprofileforms .myprofile_personal #personal-prof-ul li input[type='email'],
#myinfo_myprofileforms .myprofile_personal input[type='text'],
#myinfo_myprofileforms .myprofile_personal input[type='email'],
.usr_contactaddrfield select{
	border: 1px solid #999999;
	        border-radius: 0;
	   -moz-border-radius: 0;
	-webkit-border-radius: 0;
	float: left;
	font-family: 'Lato';
	margin: 0;
	max-width: 250px;
	outline: 0 none !important;
	padding: 6px 12px;
	-webkit-transition: all ease 0.3s;
	   -moz-transition: all ease 0.3s;
	        transition: all ease 0.3s;
	width: 100%;

	-webkit-appearance: none;
}

#myinfo_myprofileforms .myprofile_personal #personal-prof-ul li input[type='text']:focus,
#myinfo_myprofileforms .myprofile_personal #personal-prof-ul li input[type='email']:focus,
#myinfo_myprofileforms .myprofile_personal input[type='text']:focus,
#myinfo_myprofileforms .myprofile_personal input[type='email']:focus{
	border-color: #693390;
}

#myinfo_myprofileforms .myprofile_personal #personal-prof-ul li label.radio-inline{
	clear: none;
	width: auto !important;
}

.myprofile_personal .expand_toggle .expand_btn_inner .expand_ul li{
	float: left;
}

.myprofile_personal .btn_expand_inner{
	background: #f5f5f5;
	border-right: 1px solid #cbcbcb;
	border-top: 1px solid #cbcbcb;
	color: #666666;
	cursor: pointer;
	font-family: 'Lato';
	font-size: 12px;
	font-weight: normal;
	height: auto;
	line-height: 26px;
	padding: 4px 7px 2px;
	text-align: center;
}

.myprofile_personal .btn_expand_inner-active{
	background: #9c80b8;
	border-top: 1px solid #9c80b8;
	color: #ffffff;
	font-family: 'Lato';
	font-size: 12px;
	font-weight: normal;
	height: auto;
	line-height: 26px;
	padding: 4px 7px 2px;
	text-align: center;
}

.myprofile_personal .border-outline{
	border: 1px solid #cbcbcb;
	float: left;
	margin: 0 0 20px !important;
	padding: 15px;
	width: 100%;
}

.content-part .myprofile_personal ul.expand_ul{
	border-left: 1px solid #cbcbcb;
	float: left;
}

.myprofile_personal ul.mysocial_list-1 li .face_div li span{
	background-color: #e5f0f6;
	float: left;
	height: 30px;
	line-height: 30px;
	margin: 2px 0;
	padding: 0 22px;
	text-align: left;
}

.myprofile_personal #mysocial_list .mysocial_list-1 li .face_div li{
	clear: none;
	display: inline;
	float: left;
	margin: 0;
	padding: 0;
	width: auto;
}

.myprofile_personal ul.mysocial_list-1 li .face_div li a,
.thickbox{
	color: #73a1c1;
	font-size: 12px;
	margin: 0 6px;
}

.myprofile_personal .face_div li a{
	color: #a8a8a8 !important;
	font-size: 13px !important;
	line-height: 32px !important;
}

.myprofile_personal ul.mysocial_list-1 li .face_div li a,
.thickbox{
	color: #73a1c1;
	font-size: 12px;
	margin: 0 6px;
}

.myprofile_personal #mysocial_list{
	float: left;
	margin: 0 0 20px;
	width: 100%;
}

.myprofile_personal #mysocial_list .mysocial_list-1{
	float: left;
	width: 100%;
}

.myprofile_personal #mysocial_list .mysocial_list-1 li{
	display: block;
	float: left;
	width: 100%;
}

.myprofile_personal #mysocial_list .mysocial_list-1 li .face_div li{
}


/* 17 Oct 2016 :: End :: For My Profile page */


/* 17 Oct 2016 :: Start :: For My Account Access */

.myprofile-account.myprofile_personal .account-form .separator span{
	color: #666666;
	display: block;
	font-family: 'Lato';
	font-size: 13px;
	font-weight: bold;
	line-height: 150%;
	margin: 0 0 2px 0;
	padding: 0;
}

.myprofile-account.myprofile_personal .separator{
	margin: 0 0 15px;
}

.myprofile-account.myprofile_personal .account-text{
	border: 1px solid #999999;
	        border-radius: 0;
	   -moz-border-radius: 0;
	-webkit-border-radius: 0;
	font-family: 'Lato';
	margin: 0;
	max-width: 250px;
	outline: 0 none !important;
	padding: 6px 12px;
	-webkit-transition: all ease 0.3s;
	   -moz-transition: all ease 0.3s;
	        transition: all ease 0.3s;
	width: 100%;

	-webkit-appearance: none;
}

.myprofile-account.myprofile_personal .account-text:focus{
	border-color: #693390;
}

.myprofile-account.myprofile_personal .account-form{
	border-bottom: 1px dotted #cccccc;
	margin: 0;
	padding: 0 0 2px;
	width: 100%;
}

.myprofile-account.myprofile_personal .remember-login{
	font-family: 'Lato';
	margin: 0;
	padding: 10px 0 0;
	width: 100%;
}

.myprofile-account.myprofile_personal .remember-login p{
	color: #666666;
	font-family: Arial;
	font-size: 81.3%;
	line-height: 120%;
	margin-top: 8px;
	padding: 0 0 15px;

	overflow-wrap: break-word;
}


/* 17 Oct 2016 :: End :: For My Account Access */

body .form-control{
	/* -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 none !important; */
}

body .form-control:focus{
	border-color: #693390;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
	outline: 0 none !important;
}

body .btn-default,
.btn-default:focus,
.btn-default.focus{
	background-color: #693390;
	border-color: #693390;
	border-radius: 3px;
	color: #ffffff !important;
	/* text-transform: uppercase; */
}


/* 18 Oct 2016 :: RSPV */

.my-registration.myprofile_personal table.table.table-bordered.table-condensed{
	font-family: 'Lato';
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100% !important;
}

.my-registration.myprofile_personal #tkt_review-table .title{
	font-family: 'Lato';
	width: 100%;
}

.my-registration.myprofile_personal .separetor{
	margin: 4px 5px 0;
	vertical-align: top;
}

.my-registration.myprofile_personal #tkt_review-table tr td,
.my-registration.myprofile_personal #tkt_review-table tr th{
	padding: 15px;
}

.my-registration.myprofile_personal #tkt_review-table #table_tkt_review th{
	background-color: #efefef;
	font-family: 'Lato';
	font-size: 11px;
	font-weight: bold;
	padding: 6px 8px;
}

.my-registration.myprofile_personal #tkt_review-table #table_tkt_review td{
	font-family: 'Lato';
	font-size: 12px;
	padding: 6px 8px;
}

#tkt_review-table td #table_tkt_review:first-child{
	margin-top: 0;
}

#tkt_review-table td #table_tkt_review:last-child{
	margin-bottom: 0;
}

@media (min-width: 320px){
	.username-forgot-password{
		font-size: 14px !important;
		width: 170px;
	}
}


/* End 29-07-2016 */


/* 2 Aug 2016 */

.example-pager > span{
	color: #693390;
	font-size: 50px;
	margin: 0 1px;
}

.example-pager > span.cycle-pager-active{
	color: #c9168c;
}

.idea-zone-details h2{
	color: #693390;
	font-family: 'Lato';
	font-size: 25px;
	margin: 0 0 15px;
	padding: 0 100px;
}

.idea-zone-details h3{
	color: #8161a1;
	font-family: 'Lato';
	font-size: 18px;
	line-height: 29px;
	margin: 0 0 5px;
	padding: 0 100px;
}

.cycle-slideshow.ideazoneslideshow{
	max-width: 100%;
}

.noresult{
	background: #eeeeee;
	color: #b82394;
	font-family: 'Lato';
	font-size: 18px;
	margin: 30px 0 0;
	padding: 20px;
	text-align: center;
}


/* 29 Aug 2016 :: E092 :: Mentors_mentees */

.main-content.mentors_mentees h3.schName{
	font-family: 'Lato';
	font-size: 25px;
	margin-bottom: 0;
	margin-top: 0;
}

.main-content.mentors_mentees ul.list-special > li > a:before{
	content: '';
}

.main-content.mentors_mentees .mentors .mentor_block .description .work_place{
	padding: 6px 0 0;
}

.main-content.mentors_mentees .mentors .mentor_block .description .slogan{
	margin-top: 6px;
}

.main-content.mentors_mentees .middle_shadow_up{
	margin-top: 3px;
}

.main-content.mentors_mentees .schYear{
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0.5px;
	padding: 2px 0 0;
}


/* 19 Oct 2016 */

.event-box div.eve-addtocal{
	position: absolute;
	z-index: 99;
}

.event-box div.eve-addtocal div.eve-cal-sub{
	background: #ffffff !important;
	border: 1px solid #cdcdcd;
	border-top-color: #ffffff;
	padding: 3px;
}

.eve-addtocal .eve-cal-sub a{
	font-family: 'Lato';
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 8px;
	padding: 0;
}

.eve-addtocal .eve-cal-sub a:last-child{
	margin: 0;
}

.eve-addtocal .eve-cal-sub a img{
	border: none;
	margin: 0 !important;
	padding: 0 5px;
}

.eve-addtocal .eve-cal-sub a:hover{
	opacity: 1;
}

.content-part .calent_detail_event h1.heading{
	margin-top: 2px;
}

.event-box.event-img.event-img-inline .image_class{
	padding-left: 235px;
}

.event_popup_wrapper{
	position: relative;
}

.event_popup_wrapper .eve-addtocal{
	left: 0;
	margin-left: 134px !important;
	top: 34px;
}

.event_popup_wrapper .eve-addtocal.register_event{
	margin-left: 81px !important;
}

.event_popup_wrapper .eve-addtocal .eve-cal-sub{
	margin-top: -12px !important;
}

.eve-addtocal .eve-cal-sub{
	margin-top: -12px !important;
}

div.supercal .supercal-header{
	line-height: 20px;
	padding: 0;
}

div.supercal .supercal-header .month > div{
	padding: 8px 36px;
}

div.supercal td.selected{
	background: #9170af !important;
	color: #ffffff !important;
}

div.supercal td:hover{
	color: #693390;
}

div.supercal table td.has-events{
	background: #9c80b8;
	color: #ffffff;
	font-weight: bold;
}


/* 19-10-2016 :: Start */

.sky-blue-text{
	color: #693390 !important;
}

#my_education .title1 label{
	font-weight: bold !important;
}

.title2 strong{
	font-family: 'lato';
	font-weight: bold;
}

.title2 select{
	margin-bottom: 12px;
	max-width: 250px;
}

.select2-container{
	margin-bottom: 10px !important;
	max-width: 250px !important;
}

.title2 select.form-control{
	padding: 6px 7px !important;
}

.graduate_title{
	color: #8161a1 !important;
	margin-top: 20px;
}

.undergraduate_title{
	/*margin-top: 20px;*/
	color: #8161a1 !important;
}

#user-photos img{
	max-width: 300px;
}


/* 19-10-2016 :: End */


/* 21-10-2016 */

.event_details_custom{
	padding-right: 15px !important;
}

#personal-bio{
	overflow-x: scroll;
	overflow-y: hidden;
}

.user_company_school,
.usr_graduation_year_new{
	margin-bottom: 20px;
}


/* 21-10-2016 */


/* 22-10-2016 */


/* 22-10-2016 */

@media (min-width: 992px){
	#__sidebar_toggle,
	#userProfilecollapse{
		display: block;
	}
	#sidebar_left.collapse{
		display: block !important;
	}
	/* 26 Aug 2016 */
}

@media (max-width:991px){
	.userBtn{
		background: #744783 none repeat scroll 0 0;
		border-radius: 0 !important;
		color: #ffffff !important;
		padding: 6px 12px 8px !important;
		position: absolute;
		z-index: 2;
	}
	#userProfilecollapse{
		position: absolute;
		top: 36px;
		width: 250px;
		z-index: 9;
	}
	#userProfilecollapse .container{
		width: 100%;
	}
	.userName{
		float: none;
		text-align: left !important;
	}
	.userMenu ul{
		margin-bottom: 0;
	}
	.userMenu li{
		padding: 10px 0;
		width: 100%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px){
	.gallery .img-box{
		max-width: 180px;
	}
	.albm-title{
		line-height: 15px;
		padding-bottom: 10px;
		padding-top: 10px;
	}
	.slideshow-main.__life_skill #custom-select select{
		width: 160px;
	}
	/* 28-08-2016 */
	.main-content{
		padding: 26px 0 !important;
	}
	.rightImg{
		float: none;
	}
	div.supercal .supercal-header .change-month{
		width: 26px;
	}
	div.supercal .supercal-header .month{
		font-size: 16px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px){
	.imageBorder{
		height: auto !important;
		line-height: 100%;
		width: auto !important;
	}

	.imageBorder a{
		max-height: none;
	}

	.gallery .img-box{
		max-width: 153px;
	}
	.albm-title{
		line-height: 15px;
		padding-bottom: 10px;
		padding-top: 10px;
	}
	.slideshow-main.__life_skill .slide_row{
		border-top: none;
	}
	.slideshow-main.__life_skill .slide_row .col-md-8{
		border-right: none !important;
		padding-right: 0 !important;
	}
	.editorial-mdl-bottom .col-md-4{
		border-left: none;
	}
	.directory-box img{
		margin-bottom: 10px;
	}
	.myprofile_personal .usr_addrfield-smlmedium,
	.myprofile_personal .usr_addrfield-full{
		width: 200px !important;
	}
	.myprofile_personal #useraddress ul.usr_primeaddress li input[type='text'],
	.myprofile_personal #useraddress ul.usr_additionaladdress li input[type='text']{
		max-width: 200px;
	}
	.myprofile_personal .usr_addrfield-small input[type='text']{
		width: 100% !important;
	}
	.myprofile_personal .usr_addrfield-small{
		width: 92px !important;
	}
	#myinfo_myprofileforms .myprofile_personal #personal-prof-ul li input[type='text'],
	#myinfo_myprofileforms .myprofile_personal #personal-prof-ul li input[type='email'],
	#myinfo_myprofileforms .myprofile_personal input[type='text'],
	#myinfo_myprofileforms .myprofile_personal input[type='email'],
	.usr_contactaddrfield select{
		max-width: 200px;
	}
}

@media (max-width: 767px){
	/*.event-box .gray-text.event-links .separetor { margin: 4px 10px 0; vertical-align: top; }*/
	.event-box .gray-text.text-upper .separetor{
		margin: 4px 10px 0;
		vertical-align: top;
	}
	.imageBorder{
		/*height: auto !important;
		line-height: 100%;
		width: auto !important;
		*/
  }
  
	.imageBorder a{
		max-height: none;
	}
	.rightImg{
		float: none;
	}
	.leftImg{
		float: right;
	}
	.marBtm{
		margin-bottom: 40px;
	}
	#mm_landing .main-content .left-part{
		padding-right: 15px;
	}
	/* header .top-header .logo img {
        margin: 46px 0 20px !important;
    }
    */
	/* 1 July 2016 */
	.event-img img{
		margin-bottom: 10px;
	}
	.gallery .img-box{
		margin-left: 0 !important;
		max-width: inherit;
		text-align: center;
		width: 100%;
	}
	.galley-box{
		clear: both;
		display: inline-block;
		max-width: 207px;
		vertical-align: top;
		width: 100%;
	}
	.slideshow-main.__life_skill .slide_row{
		border-top: none;
	}
	.slideshow-main.__life_skill .slide_row .col-md-8{
		border-right: none !important;
		padding-right: 0 !important;
	}
	.editorial-mdl-bottom .col-md-4{
		border-left: none;
	}
	.directory-box img{
		margin-bottom: 10px;
	}
	/* Footer Responsive */
	body .footer{
		font-size: 12px;
		height: auto;
		line-height: 100%;
		padding: 20px 0;
	}
	body div.footer .social-links-footer{
		float: none;
	}
	body .footer p{
		display: block;
		float: none;
		margin: 12px 0;
		text-align: center;
	}
	body .footer_link{
		display: block;
		float: none;
		text-align: center;
	}
	body .footer .social-links-footer .social-links{
		float: none;
		margin: 0;
		text-align: center;
	}
	.footer .social-links span{
		display: inline-block;
		float: none;
	}
	div.footer .social-links-footer .social-links span a{
		background-size: auto auto;
		height: 28px;
		width: 28px;
	}
	div.footer .social-links-footer .social-links span a.twt{
		background-position: -32px 0;
	}
	div.footer .social-links-footer .social-links span a.inst{
		background-position: -64px 0;
	}
	.mentors .mentor_block .description .first_name,
	.mentors .mentor_block .description .last_name{
		word-wrap: break-word;
	}
	/* 04-10-2016 :: Start */
	.whoscoming{
		margin-right: 0;
	}
	/* 04-10-2016 :: End */
	/* 17 Oct 2016 */
	body .shadows{
		right: 0;
	}
	#myprofile.myprofile_personal .content-expand .expand_toggle_heading{
		padding: 10px 15px 0;
	}
	#myinfo_myprofileforms .myprofile_personal #personal-prof-ul li{
		padding: 1px 0 9px;
	}
	.myprofile_personal #addresses .border-outline{
		padding: 10px 15px 12px;
	}
	.myprofile_personal .usr_addrfield-smlmedium{
		width: 100% !important;
	}
	.myprofile_personal .usr_addrfield-small{
		width: 100% !important;
	}
	.myprofile_personal #useraddress ul.usr_primeaddress li input[type='text'],
	.myprofile_personal #useraddress ul.usr_additionaladdress li input[type='text']{
		max-width: 250px !important;
		width: 100% !important;
	}
	.myprofile_personal .usr_addrfield-full{
		width: 100% !important;
	}
	.myprofile_personal ul.mysocial_list-1 li .face_div li span{
		font-size: 11px;
		padding: 0 12px;
	}
	/* 17 Oct 2016 */
	/*.my-registration.myprofile_personal table.table.table-bordered.table-condensed {
        display: table;
        border-top: 1px solid #dddddd !important;
    }
    .my-registration.myprofile_personal table.table.table-bordered.table-condensed tr, .my-registration.myprofile_personal table.table.table-bordered.table-condensed tbody {
        display: inherit;
        width: 100%;
    }
    .my-registration.myprofile_personal table.table.table-bordered.table-condensed  tr  td, .my-registration.myprofile_personal table.table.table-bordered.table-condensed  tr  th {
        display: table-cell;
        width: 25% !important;
        white-space: nowrap !important;

    }
    .my-registration.myprofile_personal #tkt_review-table #table_tkt_review tr th:first-child ,
    .my-registration.myprofile_personal #tkt_review-table #table_tkt_review tr td:first-child{
         width: 120px !important;
    }
    .my-registration.myprofile_personal #tkt_review-table #table_tkt_review tr th:nth-child(2) ,
    .my-registration.myprofile_personal #tkt_review-table #table_tkt_review tr td:nth-child(2) {
         width: 120px !important;
    }*/
	/* 19 Oct 2016 */
	.event-box.event-img.event-img-inline .image_class{
		padding-left: 0;
	}
	.event-box.event-img.event-img-inline .event_img_wrap img{
		float: none !important;
		margin: 0 auto 15px !important;
	}
	.event-box.event-img.event-img-inline .event_img_wrap{
		display: block !important;
		margin: 0 auto;
		max-width: 200px;
		width: 100%;
	}
	div.supercal .supercal-header .change-month{
		margin-top: -7px;
	}
	.eve-addtocal .eve-cal-sub{
		margin-top: -4px !important;
	}
	.event-box .gray-text.event-links .separetor{
		margin-top: 4px;
	}
	.event_popup_wrapper .eve-addtocal .eve-cal-sub{
		margin-top: -17px !important;
	}
}

@media only screen and (min-width: 320px) and (max-width: 479px){
	.imageBorder{
		height: 120px !important;
		line-height: 98px;
		width: 120px !important;
	}
	.content-right .first_name,
	.content-right .last_name,
	.content-right .work_place,
	.content-right .slogan{
		padding-left: 10px;
	}
	.content-left .first_name,
	.content-left .last_name,
	.content-left .work_place,
	.content-left .slogan{
		padding-right: 10px;
	}
	.event-box .gray-text.event-links{
		line-height: 20px;
	}
	.event-box .gray-text.event-links .separetor{
		margin: 4px 10px 0;
		vertical-align: top;
	}
	.event_popup_wrapper .eve-addtocal .eve-cal-sub{
		margin-top: -17px !important;
		width: 130px;
	}
	.event-box.event-img.event-img-inline .col-xs-12.col-sm-12.col-md-12{
		padding-left: 0;
	}
}


.fixedheader{
	position: fixed;
}

strong.formRequired {
     font-weight: bold;
     font-style: normal;
     margin-left: 3px;
     color: #ff0000;
}

.formResponsive input, .formResponsive textarea, .formResponsive select {
    width: 350px;
}

.formResponsive input[type="submit"], .formResponsive button[type="submit"] {
     background-color: transparent;
     background-image: -webkit-linear-gradient(top, #ffffff, #eecef9);
     color: #69338f;
}

.formResponsive input[type="reset"], .formResponsive button[type="reset"] {
     background-image: -webkit-linear-gradient(top, #bc90f7, #69338f);
}

.formResponsive input[type="reset"]:hover {     
background-color: #211f1f;
}

.formResponsive input[type="submit"]:hover {
     background-color: #d08fcb;
     color: #000000;
}

#cj-wrapper .panel-info {
    border-color: #c4b3d2 !important;
}


#cj-wrapper .panel-info > .panel-heading {
    color: #693390 !important;
    background-color: #ece3f4 !important;
    border-color: #693390 !important;
}

#cj-wrapper .abc-checkbox label {
    padding-left: 10px !important;
}

#cj-wrapper .abc-radio {
    cursor: default;
    padding-left: -10px;
}
 .chzn-container-single .chzn-single, {
    height: 26px;
    font-family: lato;
    font-size: 15px;
    color: #666666;
    width: 250px;
}



@media (max-width: 767px) {
	#cj-wrapper .abc-radio {
		line-height: 25px !important;
		break-after: right !important;
	}

	#cj-wrapper .abc-radio label {
		float: left
	}

	#cj-wrapper .abc-radio {
		padding-left: 15px !important;
	}

	#cj-wrapper .abc-checkbox {
		padding-left: 0px !important;
	}
}

#admin_image{
	width:300px !important;
	padding-top:20px;
}
#admin_image_caption_td {
	vertical-align: top;
	padding-top:20px;
	padding-left:5px;
}

#admin_image_caption {
	font-family: Arial;
	font-size: 14px;
	color: #333333;
	line-height: 22px;
}
#tdspacer {
	max-width:100%;
	white-space:nowrap;
}
th.mod_mentoring--th-feedback:last-child{
	width: 1%;
	white-space: nowrap;
}

a.btn-purple,
.btn-purple2 { background:#693390 !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color:#fff;
	display:inline-block;
	white-space:nowrap;
	font-size:14px;
	line-height:30px;
	padding:0 10px;
	border:1px solid #c68bb2;
	font-family:'Lato', sans-serif;
}