@keyframes wink {
  from {color: #c10000;} to {color: #025;}
   }
@-moz-keyframes wink {
  from {color: #c10000;} to {color: #025;}
   }
@-o-keyframes wink {
  from {color: #c10000;} to {color: #025;}
   }
@-webkit-keyframes wink {
  from {color: #c10000;} to {color: #025;}
   }
.aLink:hover #sOne, .aLink:hover #sTwo {
   animation-duration: 1s;
   animation-name: wink;
   animation-timing-function:cubic-bezier(1,0.1,0.1,1);
   animation-iteration-count: infinite;
   animation-direction: alternate;
   -moz-animation-duration: 1s;
   -moz-animation-name: wink;
   -moz-animation-timing-function:cubic-bezier(1,0.1,0.1,1);
   -moz-animation-iteration-count: infinite;
   -moz-animation-direction: alternate;
   -o-animation-duration: 1s;
   -o-animation-name: wink;
   -o-animation-timing-function:cubic-bezier(1,0.1,0.1,1);
   -o-animation-iteration-count: infinite;
   -o-animation-direction: alternate;
   -webkit-animation-duration: 1s;
   -webkit-animation-name: wink;
   -webkit-animation-timing-function:cubic-bezier(1,0.1,0.1,1);
   -webkit-animation-iteration-count: infinite;
   -webkit-animation-direction: alternate;
   }
