#news .contenu-news .anim {
	position :relative;
	animation: vertical-slide 6s infinite; /* nom de l'animation, durée et boucle */
	-webkit-animation:  vertical-slide 10s infinite;
}
#news .contenu-news:hover .anim {
    position :relative;
	animation-name: none; /* annulation de l'animation quand souris dans le module*/
	-webkit-animation: none;
}

#glossaire .contenu-glossaire .anim {
	position :relative;
	animation: vertical-slide-2 6s infinite; /* nom de l'animation, durée et boucle */
	-webkit-animation:  vertical-slide-2 10s infinite;
}
#glossaire .contenu-glossaire:hover .anim {
    position :relative;
	animation-name: none; /* annulation de l'animation quand souris dans le module*/
	-webkit-animation: none;
}

#annonce .contenu-annonce .anim {
	position :relative;
	animation: vertical-slide 6s infinite; /* nom de l'animation, durée et boucle */
	-webkit-animation:  vertical-slide 15s infinite;
}
#annonce .contenu-annonce:hover .anim {
    position :relative;
	animation-name: none; /* annulation de l'animation quand souris dans le module*/
	-webkit-animation: none;
}


@keyframes vertical-slide {
    0%   {bottom: 0%;}
    50% {bottom: 260px;}
    100%   {bottom: 0px;}
}

@-webkit-keyframes vertical-slide {
    0%   {bottom: 0px;}
    50% {bottom: 260px;}
    100%   {bottom: 0px;}
}

@keyframes vertical-slide-2 {
    0%   {bottom: 0px;}
    50% {bottom: 357px;}
    100%   {bottom: 0px;}
}

@-webkit-keyframes vertical-slide-2 {
    0%   {bottom: 0px;}
    50% {bottom: 357px;}
    100%   {bottom: 0px;}
}