/*CSS pour les animations*/
/*
DEMO
/* The animation code
@keyframes example {
    0%   {background-color: red; left:0px; top:0px;}
    25%  {background-color: yellow; left:200px; top:0px;}
    50%  {background-color: blue; left:200px; top:200px;}
    75%  {background-color: green; left:0px; top:200px;}
    100% {background-color: red; left:0px; top:0px;}
}
@keyframes example {
    from {background-color: red;}
    to {background-color: yellow;}
}

/* The element to apply the animation to
div {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
}
*/
/*QUAND L'IMAGE DEVIENT VISIBLE*/
@keyframes glisse_gauche
{
	from {margin-left: 100%;}
    to {margin-left: 0;}
}
@keyframes glisse_droite
{
	from {margin-left: 0;}
    to {margin-left: 100%;}
}
@keyframes fondu
{
	from {opacity: 0;}
    to {opacity: 1;}
}
.img_galerie_visible
{
}
.img_visible
{
	display: block;
	width: 100%;
	animation-name: fondu;
    animation-duration: 3s;
}
.img_cache
{
	display: none;
	width: 100%;
}
@keyframes glisse_gauche_galerie
{
	from {margin-left: 100%;}
    to {margin-left: auto;}
}
@keyframes fondu_galerie
{
	from {opacity: 0;}
    to {opacity: 1;}
}
.img_galerie_visible
{
	display: block;
	/*animation-name: glisse_gauche_galerie;
    animation-duration: 3s;*/
	margin: auto;
}
.img_galerie_cache
{
	display: none;
}