/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 29-Aug-2017, 20:14:59
    Author     : floodd
*/

@keyframes cf4FadeInOut {
  0% {
    opacity:1;
  }
  17% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

#cf4a img {
    position: absolute;
    right: 10px;
    opacity:0;
    animation-name: cf4FadeInOut;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    /*
    -webkit-animation-name: cf4FadeInOut;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 5;
    -webkit-animation-duration: 10s;

    -moz-animation-name: cf4FadeInOut;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: 5;
    -moz-animation-duration: 10s;

    -o-animation-name: cf4FadeInOut;
    -o-animation-timing-function: ease-in-out;
    -o-animation-iteration-count: 5;
    -o-animation-duration: 10s;
*/

}
#cf4a img:nth-of-type(5) {
  animation-delay: 12s;
}
#cf4a img:nth-of-type(4) {
  animation-delay: 9s;
}
#cf4a img:nth-of-type(3) {
  animation-delay: 6s;
}
#cf4a img:nth-of-type(2) {
  animation-delay: 3s;
}
#cf4a img:nth-of-type(1) {
  animation-delay: 0s;
}



