@keyframes pippo {
 0% {
   opacity:1;
 }
 17% {
   opacity:1;
 }
 25% {
   opacity:0;
 }
 92% {
   opacity:0;
 }
 100% {
   opacity:0;
 }
}

#Sly10a {
	position:relative;
	height: auto; /*height:350px;*/
	width:auto;
	margin:0 auto;
	 }
#Sly10a img {
  position:absolute;
  z-index:5;
  /*left:0;*/
  /*box-shadow:2px 2px 5px #CCC;*/
  animation-name: pippo;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 72s;
 }

#Sly10a img:nth-of-type(1) {

  animation-delay: 54s;
}

#Sly10a img:nth-of-type(2) {

  animation-delay: 48s;
}

#Sly10a img:nth-of-type(3) {

  animation-delay: 42s;
}

#Sly10a img:nth-of-type(4) {

  animation-delay: 36s;
}
#Sly10a img:nth-of-type(5) {

  animation-delay: 30s;
}

#Sly10a img:nth-of-type(6) {

  animation-delay: 24s;
}
#Sly10a img:nth-of-type(7) {

  animation-delay: 18s;
}
#Sly10a img:nth-of-type(8) {

  animation-delay: 12s;
}
#Sly10a img:nth-of-type(9) {

  animation-delay: 6s;
}
#Sly10a img:nth-of-type(10) {

  animation-delay: 0s;
}