CSS styling from AS not external file

I’m trying to apply some simple CSS coding to an html’d dynamic text box, from inside Flash, with AS, rather than from an external .css doc.

This code below should work, but doesn’t. (I tried adding a period in front of customClass–nuthin’; I also tried taking out the fontFamily altogether, as I’m on a Mac and I’ve heard bad things.)

Any ideas? TIA.

/*
var styles = new TextField.StyleSheet();
styles.setStyle(“p”, {textDecoration:“none”, color:"#000000"});
styles.setStyle(“customClass”, {fontFamily:"_serif",fontWeight:‘bold’, color:"#FF0000", fontSize:‘24px’});
html_fld.html = true;
html_fld.styleSheet = this.styles;
html_fld.htmlText = “<p class=‘customClass’>Should be red</p><p>Should be black and <span class=‘customClass’>red again</a></span></p>”;
*/