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

    position: absolute;

    overflow: hidden;
}
.ss5_slideshow-image 
{
    width: 100%;
    height: 100%;

    position: absolute;

    background: no-repeat 50% 50%;
    background-size: cover;
    animation-name: imgAnim;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 16s;
    opacity: 1;
    transform: scale(1.2);
}
.ssPost .ss5_slideshow-image 
{
    max-width: 770px;
}
.ss5_slideshow-image:nth-of-type(1) 
{
    animation-name: imgAnim-1;
    z-index: 3;
}
.ss5_slideshow-image:nth-of-type(2) 
{
    animation-name: imgAnim-2;
    z-index: 2;
}
.ss5_slideshow-image:nth-of-type(3) 
{
    animation-name: imgAnim-3;
    z-index: 1;
}
.ss5_slideshow-image:nth-of-type(4) 
{
    animation-name: imgAnim-4;
    z-index: 0;
}
@keyframes imgAnim-1 
{
    0% 
    {
        opacity: 1;
        transform: scale(1.2);
    }
    24% 
    {
        opacity: 1;
    }
    26% 
    {
        opacity: 0;
        transform: scale(1);
    }
    100% /* L'animation recommence ici */
    {
        opacity: 0;
        transform: scale(1.2);
    }
}
@keyframes imgAnim-2 
{
    24% 
    {
        opacity: 1;
        transform: scale(1.2);
    }
    49% 
    {
        opacity: 1;
    }
    51% 
    {
        opacity: 0;
        transform: scale(1);
    }
    100% 
    {
        opacity: 0;
        transform: scale(1.2);
    }
}
@keyframes imgAnim-3 
{
    49% 
    {
        opacity: 1;
        transform: scale(1.2);
    }
    51% 
    {
        opacity: 1;
    }
    73% 
    {
        opacity: 1;
    }
    76% 
    {
        opacity: 0;
        transform: scale(1);
    }
    100% 
    {
        opacity: 0;
        transform: scale(1.2);
    }
}
@keyframes imgAnim-4 
{
    0% 
    {
        opacity: 0;
    }
    73% 
    {
        opacity: 1;
        transform: scale(1.2);
    }
    76% 
    {
        opacity: 1;
    }
    99% 
    {
        opacity: 1;
    }
    100% 
    {
        opacity: 1;
        transform: scale(1);
    }
}
.ss5_slideshow h1 
{
    padding: 1em 2em;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);

    background-color: rgba(255,255,255,.5);
    box-shadow: 0 1em 2em -1em rgba(0, 0, 0, .5);
    opacity: 0;
    z-index: 99;
    animation-name: textAnim;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 16s;

    font-family: "Italiana";
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5;
}
.ss5_slideshow h1:nth-of-type(1) 
{
    animation-name: textAnim-1;
}
.ss5_slideshow h1:nth-of-type(2) 
{
    animation-name: textAnim-2;
}
.ss5_slideshow h1:nth-of-type(3) 
{
    animation-name: textAnim-3;
}
.ss5_slideshow h1:nth-of-type(4) 
{
    animation-name: textAnim-4;
}
@keyframes textAnim-1 
{
    0% 
    {
        opacity: 1;
    }
    24% 
    {
        opacity: 1;
    }
    26% 
    {
        opacity: 0;
    }
}
@keyframes textAnim-2 
{
    24% 
    {
        opacity: 0;
    }
    26%
    {
        opacity: 1;
    }
    49%
    {
        opacity: 1;
    }
    51% 
    {
        opacity: 0;
    }
}
@keyframes textAnim-3 
{
    49% 
    {
        opacity: 0;
    }
    51% 
    {
        opacity: 1;
    }
    74% 
    {
        opacity: 1;
    }
    76% 
    {
        opacity: 0;
    }
}
@keyframes textAnim-4 
{
    74% 
    {
        opacity: 0;
    }
    76% 
    {
        opacity: 1;
    }
    99% 
    {
        opacity: 1;
    }
    100% 
    {
        opacity: 0;
    }
}
.ss5_slideshow h1 small 
{
    display: block;

    font-size: 0.5em;
    font-weight: 300;
}
.ss5_slideshow h1 small:first-child 
{
    padding-bottom: 0.5em;

    border-bottom: 1px solid rgba(0, 0, 0, .25);
}
.ss5_slideshow h1 small:last-child 
{
    padding-top: 0.5em;
    
    border-top: 1px solid rgba(0, 0, 0, .25);
}
