@charset "utf-8";
/* CSS Document */
#adani {
 
 
  position: relative;
  -webkit-animation-name: example; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  animation-name: example;
  animation-duration: 4s;
   animation-iteration-count: infinite;
}
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
  0%   { left:0px; top:0px;}
  100%  { left:400px; top:0px;}
 
}
/* Standard syntax */
@keyframes example {
  0%   { left:0px; top:0px;}
 100%  { left:400px; top:0px;}
 } 

