@-webkit-keyframes animate-squirrel {
    from {background-position: 0px 0px}
    to {background-position: -750px 0px}
}

@-moz-keyframes animate-squirrel {
    from {background-position: 0px 0px}
    to {background-position: -750px 0px}
}

@keyframes animate-squirrel {
    from {background-position: 0px 0px}
    to {background-position: -750px 0px}
}

.squirrel_01 {
    background: url("./graphics/squirrel_01/squirrel_01.spritesheet.png");
}

.squirrel,
.squirrel_01 {
    height:150px;
    width:150px;
    background-size: 750px 150px;
    margin: 0 auto;
}

.squirrel:hover {
    cursor: pointer;
}

.squirrelTalking { 
    -webkit-animation: animate-squirrel 1.5s 0s steps(5) infinite;
    -moz-animation: animate-squirrel 1.5s 0s steps(5) infinite;                                                
    animation: animate-squirrel 1.5s 0s steps(5) infinite;
}