@-webkit-keyframes tabdance {
0%, 100% {
-webkit-transform: rotate(0) skewx(0);
}
17% {
-webkit-transform: rotate(4deg) skewx(4deg);
}
92% {
-webkit-transform: rotate(-4deg) skewx(-4deg);
}
}
@-moz-keyframes tabdance {
0%, 100% {
-moz-transform: rotate(0) skewx(0);
}
17% {
-moz-transform: rotate(4deg) skewx(4deg);
}
92% {
-moz-transform: rotate(-4deg) skewx(-4deg);
}
}
@-ms-keyframes tabdance {
0%, 100% {
-ms-transform: rotate(0) skewx(0);
}
17% {
-ms-transform: rotate(4deg) skewx(4deg);
}
92% {
-ms-transform: rotate(-4deg) skewx(-4deg);
}
}
@-o-keyframes tabdance {
0%, 100% {
-o-transform: rotate(0) skewx(0);
}
17% {
-o-transform: rotate(4deg) skewx(4deg);
}
92% {
-o-transform: rotate(-4deg) skewx(-4deg);
}
}
@keyframes tabdance {
0%, 100% {
transform: rotate(0) skewx(0);
}
17% {
transform: rotate(4deg) skewx(4deg);
}
92% {
transform: rotate(-4deg) skewx(-4deg);
}
}
#xg_navigation ul li a {
-webkit-animation-name: tabdance;
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: infinite;
-webkit-animation-duration: 1s;
-moz-animation-name: tabdance;
-moz-animation-timing-function: ease-in-out;
-moz-animation-iteration-count: infinite;
-moz-animation-duration: 1s;
-ms-animation-name: tabdance;
-ms-animation-timing-function: ease-in-out;
-ms-animation-iteration-count: infinite;
-ms-animation-duration: 1s;
-o-animation-name: tabdance;
-o-animation-timing-function: ease-in-out;
-o-animation-iteration-count: infinite;
-o-animation-duration: 1s;
animation-name: tabdance;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
animation-duration: 1s;
}