
// FireFox renders this font weird. Fix (re:hack) it.
if (/[Ff]ire[Ff]ox/.test(navigator.userAgent) && document.styleSheets)
{
    $.each(document.styleSheets, function(index, styleSheet)
    {
        $.each(styleSheet.cssRules || styleSheet.rules, function(index, rule)
        {
            if (!rule.style)
                return;

            if (rule.style.fontWeight === "lighter")
                rule.style.fontWeight = "normal";

            if (rule.style.fontWeight === "normal")
                rule.style.fontWeight = "200";
        });
    });
}

