Loading externall CSS and text

I have modified the following code found http://www.kirupa.com/developer/mx2004/cssfile.htm

However, it seems like the portions of the text that i apply a style to don’t show at all. All other text (which i didn’t apply style-def to) appears fine.
I’ve gone over this code at least 40-50 times, but i just can’t figure out what i’m missing.

[AS] var format = new TextField.StyleSheet();
var path = “http://www.kirupa.com/developer/mx2004/code/flash.css”;
format.load(path);
format.onLoad = function(success) {
if (success) {
_root.scroller_right.main2.myTextField2.styleSheet = format;
loadText2 = new LoadVars();
loadText2.load(“display_home_2.txt”);
loadText2.onLoad = function(success) {
if (success == true) {
// trace(success);
_root.scroller_right.main2.myTextField2.variable = “displayText”;
_root.scroller_right.main2.myTextField2.html = true;
_root.scroller_right.main2.myTextField2.htmlText = loadText2.displayText;
bottom2 = main2._y+mask_mc2._height-main2._height-space2;
}else{
_root.scroller_right.main2.myTextField2.htmlText = “<p class=‘two’>Error loading content!</p>”;

}
}
}
else {
_root.scroller_right.main2.myTextField2.htmlText = “Error loading CSS file!”;
}
}; [/AS]