Dynamic Scroller with Easing and CSS

I’ve got a variation of the Claudio Scroller that loads data into two text fields from an external text file. The first text field is the section header and is intended to be unscrollable. I do not want css styles applied to it.

The second text field contains the scrollable content and I DO want CSS styles applied to it.

The zip below contains my SWF, FLA, text file and css file. I’m thinking I am missing something minor because when I remove the following code to import the CSS file:

var format = new TextField.StyleSheet();
var path = “css/flash.css”;
format.load(path);
format.onLoad = function(success) {
if (success) {
main.maininfo.styleSheet = format;
myLoadVar = new LoadVars ();
myLoadVar.load(“textfiles/sample.txt”)
myLoadVar.onLoad = function (success){
if (success == true) {
main.maininfo.variable = “sample”
main.maininfo.htmlText=myLoadVar.sample;
}
}
} else {
main.maininfo.text = “Error loading CSS file!”;
}
};

… then it loads fine again but just doesn’t display any styles. But with the above code intact, I get an error and it doesn’t display anything…