Flash/xm/txt/css ...need help again..goin nuts ;)

i want to combine this:

[color=red]var thumb_spacing = 40;
var description_lv = new LoadVars();
description_lv.onData = function(raw_text){
description_txt.htmlText = raw_text;
}[/color]
[color=red][/color]

[color=red]function GeneratePortfolio(portfolio_xml){
var portfolioPictures = portfolio_xml.firstChild.childNodes;
for (var i = 0; i < portfolioPictures.length; i++){
var currentPicture = portfolioPictures*;

var currentThumb_mc = menu_mc.createEmptyMovieClip(“thumbnail_mc”+i,i);
currentThumb_mc._x = i * thumb_spacing;

currentThumb_mc.createEmptyMovieClip(“thumb_container”,0);
currentThumb_mc.thumb_container.loadMovie(currentPicture.attributes.thumb);

currentThumb_mc.title = currentPicture.attributes.title;
currentThumb_mc.image = currentPicture.attributes.image;
currentThumb_mc.description = currentPicture.attributes.description;

currentThumb_mc.onRollOver = currentThumb_mc.onDragOver = function(){
info_txt.text = this.title;
}
currentThumb_mc.onRollOut = currentThumb_mc.onDragOut = function(){
info_txt.text = “”;
}
currentThumb_mc.onRelease = function(){
image_mc.loadMovie(this.image);
description_lv.load(this.description);
}
}
}[/color]

[color=red]var portfolio_xml = new XML();
portfolio_xml.ignoreWhite = true;
portfolio_xml.onLoad = function(success){
if (success) GeneratePortfolio(this);
else trace(“Error loading XML file”); // no success? trace error (wont be seen on web)
}
portfolio_xml.load(“webdsign.xml”);[/color]
[color=black][/color]
[color=black]with this:[/color]

[color=blue]var format = new TextField.StyleSheet();
var path = “[/color][color=blue]http://www.kirupa.com/developer/mx2004/code/flash.css[/color][color=blue]”;[/color]
[color=blue]format.load(path);
format.onLoad = function(success) {
if (success) {
output.styleSheet = format;
myLoadVar = new LoadVars ();
portfolio_xml.load(“webdsign.xml”)
myLoadVar.onLoad = function (success){
if (success == true) {
description_txt.variable = “portfolio”
description_txt.htmlText=myLoadVar.portfolio;
}
}[/color]

[color=black]So i want the discription_txt of script part 1 to have a ccs style
and i really run out of ideas with this, ive been messing around for hours and still no so i hope somebody can help :)[/color]
[color=red][color=black][/color]

[/color]