Matthias: IE8 übernimmt Schriftformatierung nicht?!

Beitrag lesen

folgendes Problem:
ich möchte css-Tabellenformatierung in eine externe Datei formate.css auslagern.
Die Formatierung
...

     <th style="text-align:center; font-size:16px; font-weight:bold; color:#9B0000;">  
               Scorerpunkte  
            </th>

...
funktioniert bei Firefox und IE.
Ersetze ich diese durch

     <th class="scorertable">  
               Scorerpunkte  
            </th>

mit

.scorertable { text-align:center; font-size:16px; font-weight:bold; color:#9B0000;}

in der formate.css funtioniert nur bei Firefox, der IE ignoriert die Schriftattribute. Woran könnte das liegen?