/* CSS Document */
body:active{
  cursor: url(../../img/fingerclick.png), auto;
}

.banana {
	 background-image: url("../../img/bananas1.png");
	height:421px;
	width:210px;
}

.banana:active{
	cursor: url(../../img/finger.png), auto;
	 background-image: url("../../img/bananas1.png");
	height:423px;
	width:210px;


	-webkit-animation: play .15s steps(5) ;
       -moz-animation: play .15s steps(5) ;
        -ms-animation: play .15s steps(5) ;
         -o-animation: play .15s steps(5) ;
            animation: play .15s steps(5);
}

@-webkit-keyframes play {
   from { background-position:    0px; }
     to { background-position: -1311px; }
}

@-moz-keyframes play {
   from { background-position:    0px; }
     to { background-position: -1311px; }
}
