CSS and Rollover Scrolling ? HELP

Before I toss my laptop into the creek, I need help on a simple CSS /AS / functionality issue…

How do I combine this??

I have a textbox that gets this text and is controll by 2 arrows that can scroll the text by rolling over the button/mcs. The text is loaded like so:

loadVariablesNum(“ProjRollText2.txt”, 0);

Now, I want to use a CSS page to format it and I use:

var format = new TextField.StyleSheet();
var path = “cmc.css”;
format.load(path);
format.onLoad = function(success) {
if (success) {
output.styleSheet = format;
myLoadVar = new LoadVars();
myLoadVar.load(“ProjRollText2.txt”);
myLoadVar.onLoad = function(success) {
if (success == true) {
output.variable = “textbox1”;
output.htmlText = myLoadVar.textbox1;
}
};
} else {
output.text = “Error loading CSS file!”;
}
};

That works great but I loose the text and scrolling…

Then I will need to make that text talk to a CF page…

AnyIdeas…