Embedding fonts and CSS

I’m having real problems getting my embedded fonts to display on publish using CSS. I’ve added new fonts to my library, exported for actionscript, set my textfield.embedFonts to true, linked my stylesheet, and no dice.

Works fine without the embeds, but goes blank with them.

CSS:


story, cast, trailers, photos, tickets, links, pressSec {
	font-family: DeckerText; <--Name of embedded font symbol...also tried Decker
	font-size: 14;
	text-align: justify;
	}
...

AS

		
var textContent	= textHolder.createTextField("textContent", getRealDepth(textHolder), 40, 90, textWidth-70, 1024);  // Cant attach to container???
			textContent.multiline 		= true;
			textContent.wordWrap 		= true;
			textContent.html			= true;
			textContent.condenseWhite	= true;
			textContent.autoSize		= "left";
			textContent.styleSheet		= docStyles;
			textContent.embedFonts 		= true;

I loaded my CSS in frame 2, so that’s fine. What am I missing here?