CSS and dynamic flash

Hi, I am trying to style some dynamic text via CSS. Is this possible?
My dynamic text is coming from an XML file and is beig brought in with the following function:


function getCurrentText(textObj, textNumber) {
 sectionNum=getXmlSection(mainObj, "section", "pages");
 currentPage=_root.link-_root.firstPageFrame;
 textObj.htmlText=mainObj["section"][sectionNum]["page"][currentPage]["texts"][0]["pageText"][textNumber].value;
 textSelectable(textObj);
}

And being called as follows:

 _root.getCurrentText(thisText2,1); 

The text is being read from an XML file but the text itself (whats in the dynamic text box) is not XML, its just text.
Is it possible to link a css document to this text?

Thanks