Help with xml

I have 2 questions

Question 1;
I’m having a problem attaching the .CSS to my content. here is my code

The .CSS “mazda_compare.css”

name {
color: #ffffff;
font-family: Tahoma;
font-size: 18px;
font-weight: bold;
display: block;
}
comment {
color: #ffffff;
font-family: Tahoma;
font-size: 14px;
font-weight: normal;
display: block;
}

The XML file “car1.xml”

<?xml version=“1.0”?>
<compare>
<vehicle>
<name>Mazda 6 Sedan</name>
<comment>The Mazda 6 Sedan;is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file. </comment>
</vehicle>
</compare>

[color=black]Script[/color]

//init TextArea component
comment_txt.html = true;
comment_txt.wordWrap = true;
comment_txt.multiline = true;
comment_txt.label.condenseWhite=true;
//load css
compareStyle = new TextField.StyleSheet();
compareStyle.load(“mazda_compare.css”);
name_txt.styleSheet = compareStyle;
comment_txt.styleSheet = compareStyle;
//load xml
function loadXML(loaded) {
if (loaded) {
_root.vehicle = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.comments = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
name_txt.text = _root.vehicle;
comment_txt.text = _root.comments;
} else {
trace(“file not loaded!”);
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load(“car1.xml”);

I have 2 dynamic boxes where the text show up but the css is not applied
name_txt
comment_txt

can any one figure out why?

Question 2;
I want to also incorporate an image aswell what are the steps…
I have seen tons of tuts with galleries but no luck…

when I do the following it does not work

The XML file “car1.xml”

<?xml version=“1.0”?>
<compare>
<vehicle>
<name>Mazda 6 Sedan</name>
<comment>The Mazda 6 Sedan;is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file.The Mazda 6 SDN is a great working file. </comment>
<image>mazda6.jpg</image>
</vehicle>
</compare>

[color=black]Script[/color]

//init TextArea component
comment_txt.html = true;
comment_txt.wordWrap = true;
comment_txt.multiline = true;
comment_txt.label.condenseWhite=true;
//load css
compareStyle = new TextField.StyleSheet();
compareStyle.load(“mazda_compare.css”);
name_txt.styleSheet = compareStyle;
comment_txt.styleSheet = compareStyle;
//load xml
function loadXML(loaded) {
if (loaded) {
_root.vehicle = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.comments = this.firstChild.childNodes[0].childNode[1].firstChild.nodeValue;
_root.image = this.firstChild.childNodes[0].childNode[2].firstChild.nodeValue;
name_txt.text = _root.vehicle;
comment_txt.text = _root.comments;
picture_holder.loadMovie(image);
} else {
trace(“file not loaded!”);
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load(“car1.xml”);

I made an empty MC and called it picture_holder but when I test the movie nothing happens…
I’m getting my *** kicked here can any1 help?