Possible Duplicate:
Why would html text sometimes appear garbled when viewing on Chrome or Safari on Windows?
I tested my pages in browsers for awhile as I've been designing. and I've noticed the header tags <h1> through <h6> are not being rendered correctly in safari...like there's a missing font. I'm running twitter-bootstrap and for some reason I cannot fix this problem.

I honestly think its my computer fonts and not the browser.
If I disable optimizelegibility in CSS it works fine in Safari, however, every other computer I've tried it on works just fine.
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 18px;
color: #333333;
background-color: #222222;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
font-family: inherit;
font-weight: bold;
color: inherit;
text-rendering: optimizelegibility; /*Causing problems */
}
I don't even have helvetica Neue on my windows computer, I have all the Neue LT fonts, however.
UPDATE
Okay I used font frenzy and revert my fonts back to windows installed phones. I never had Helvetica Neue only Helvetica Neue LT.
I got it to display normal, but this raises a good question. Are people with these fonts install going to have the same issue as me?
Should I attempt to use fontface to fix this? How honestly could I make this so no everyone would have the same problem as I did.