CSS3 transition déconner les polices dans webkit?

Depuis que j'ai ajouté une transition css (le premier était sur le vol stationnaire, le deuxième était une animation), il semble avoir foiré mes polices de caractères, ils ont l'air "différents".

C'est totalement bizarre, j'ai cherché pendant des heures et ne peut pas trouver quelque chose sur elle, je ne peux pas comprendre exactement pourquoi il se passe.

Il semble être ok sous firefox, mais safari et chrome sont d'avoir des problèmes.

http://www.simplerweb.co.uk

Tout en dessous de l'engrenage de l'animation en bas à gauche semble ressembler à un plus léger de la police de poids et le menu de navigation semble le même.

Je suis totalement perdue sur ce coup.

Voici le CSS pour l'animation.

.gearone {height:100px;
width:100px;
top:-10px;
left:-10px;
position:absolute;
background-position:center;
background-repeat:no-repeat;
background-image:url(../images/gearone.png);
-webkit-animation-name:             backrotate; 
-webkit-animation-duration:        13s; 
-webkit-animation-iteration-count:  infinite;
-webkit-transition-timing-function:linear;
-moz-animation-name: backrotate;
-moz-animation-duration: 13s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
}
.geartwo {height:100px;
width:100px;
position:absolute;
background-position:center;
background-repeat:no-repeat;
background-image:url(../images/gearone.png);
top:20px;
left:10px;
-webkit-animation-name:             rotate; 
-webkit-animation-duration:         13s; 
-webkit-animation-iteration-count:  infinite;
-webkit-transition-timing-function:linear;
-moz-animation-name: rotate;
-moz-animation-duration: 13s;
-moz-animation-timing-function:linear;
-moz-animation-iteration-count: infinite;
}
@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(0deg);
}
to { 
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes rotate {
from {
-moz-transform: rotate(0deg);
}
to { 
-moz-transform: rotate(360deg);
}
}
@-webkit-keyframes backrotate {
0% {
-webkit-transform: rotate(360deg);
}
100% {
-webkit-transform: rotate(0deg);
}
}
@-moz-keyframes backrotate {
0% {
-moz-transform: rotate(360deg);
}
100% {
-moz-transform: rotate(0deg);
}
}

source d'informationauteur andy