.ss3_wrapper 
{
	width: 100%;
	height: 100%;

	position: relative;

	overflow: hidden;
}
.ss3_slideshow 
{
	width: 100%;
	height: 100%;

	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.ss3_slideshow--hero 
{
	width: 67%;
	height: 100%;
	
	top: 0;
	left: 50%;
	transform: translateX(-50%) skewX(-10deg);
	transform-origin: center;

	overflow: hidden;
	box-shadow: 0 0 5rem rgba(0,0,0,1);
	z-index: 3;
}
.ss3_slideshow--hero .ss3_slides 
{
	width: 150%;
	height: 100%;

	position: absolute;
	top: 0;
	left: -25%;

	animation: 11s slideshow-hero -3s infinite;
}
.ss3_slideshow--hero .ss3_slide1 
{
	animation: 20s slides-set-1 -0.1s infinite;
}
.ss3_slideshow--hero .ss3_slide2 
{
	animation: 20s slides-set-2 -0.1s infinite;
}
.ss3_slideshow--hero .ss3_slide3 
{
	animation: 20s slides-set-3 -0.1s infinite;
}
.ss3_slideshow--contrast 
{
	width: 100%;
	height: 100%;

	transform: none;
	z-index: 1;
}
.ss3_slideshow--contrast--before 
{
	left: 0;
}
.ss3_slideshow--contrast--before .ss3_slides 
{
	width: 100%;
}
.ss3_slideshow--contrast--after 
{
	top: 0;
	bottom: auto;
	left: auto;
	right: 0;

	z-index: 2;
}
.ss3_slideshow--contrast--after .ss3_slides 
{
	width: 100%;

	left: auto;
	right: 0;
}
.ss3_slideshow--contrast .ss3_slides 
{
	animation: 14s slideshow-contrast -5s infinite;
}
.ss3_slideshow--contrast .ss3_slide1 
{
	background-image: linear-gradient(to bottom, rgba(200, 200, 75, 0.25) 0, rgba(200, 75, 75, 0.5) 100%);
	animation: 20s slides-set-1 -0.2s infinite;
}
.ss3_slideshow--contrast .ss3_slide2 
{
	background-image: linear-gradient(to bottom, rgba(200, 200, 75, 0.25) 0, rgba(200, 75, 75, 0.5) 100%);
	animation: 20s slides-set-2 -0.2s infinite;
}
.ss3_slideshow--contrast .ss3_slide3 
{
	background-image: linear-gradient(to bottom, rgba(200, 200, 75, 0.25) 0, rgba(200, 75, 75, 0.5) 100%);
	animation: 20s slides-set-3 -0.2s infinite;
}
.ss3_slideshow--contrast--after 
{
	top: auto;
	bottom: 0;
}
.ss3_slideshow--contrast--after .ss3_slides 
{
	animation: 13s slideshow-contrast -13s infinite;
}
.ss3_slideshow--contrast--after .ss3_slide 
{
	background-position: right;
}
.ss3_slideshow--contrast--after .ss3_slide1 
{
	animation: 20s slides-set-1 infinite;
}
.ss3_slideshow--contrast--after .ss3_slide2 
{
	animation: 20s slides-set-2 infinite;
}
.ss3_slideshow--contrast--after .ss3_slide3 
{
	animation: 20s slides-set-3 infinite;
}
.ss3_slides, .ss3_slide 
{
	width: 100%;
	height: 100%;

	position: absolute;
	top: 0;
	left: 0;
	
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
@keyframes slideshow-hero-mobile 
{
	0% 
	{
		transform: scale(1) skewY(10deg);
   	}
	50% 
	{
		transform: scale(1.05) skewY(10deg);
   	}
	100% 
	{
		transform: scale(1) skewY(10deg);
   	}
}
@keyframes slideshow-hero 
{
	0% 
	{
		transform: scale(1) skewX(10deg);
   	}
	50% 
	{
		transform: scale(1.05) skewX(10deg);
   	}
	100% 
	{
		transform: scale(1) skewX(10deg);
   	}
}
@keyframes slideshow-contrast 
{
	0% 
	{
		transform: scale(1.05);
  	}
	50% 
	{
		transform: scale(1);
   	}
	100% 
	{
		transform: scale(1.05);
   	}
}
@keyframes slides-set-1 
{
	0% 
	{
		opacity: 1;
		transform: scale(1);
   	}
	31% 
	{
		opacity: 1;
		transform: scale(1);
   	}
	34% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
	97% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
	100% 
	{
		opacity: 1;
		transform: scale(1);
   	}
}
@keyframes slides-set-2 
{
	0% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
	31% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
	34% 
	{
		opacity: 1;
		transform: scale(1);
   	}
	64% 
	{
		opacity: 1;
		transform: scale(1);
   	}
	67% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
	100% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
}
@keyframes slides-set-3 
{
	0% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
	64% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
	67% 
	{
		opacity: 1;
		transform: scale(1);
   	}
	97% 
	{
		opacity: 1;
		transform: scale(1);
   	}
	100% 
	{
		opacity: 0;
		transform: scale(1.05);
   	}
}
