CSS problem in xml

hi All,
i am trying the use CSS on XML but it’s not working .please tell where i am wrong. i am displaying a data in textArea componet.

thanks
// xml file is here
<cities>
<delhi>
<Acolony areaName=“Alaknanda”>
<span class=‘one’>Batra Dept.</span>
<two>Modern Store</two>
<three>ShriKamalMedicos</three>
</Acolony>
<Acolony areaName=“Amar Colony”>
<one>Sham Store</one>
<two>Narang Store</two>
<three>Home Need</three>
<four>Pawan Stores</four>
<five>standard stores</five>
</Acolony>
<Acolony areaName=“Ashram”>
<one>H.P. Speed Mart</one>
<two>V.K. general Store</two>
<three>Delhi Fruit</three>
<four>J.P. Store</four>
</Acolony>

&lt;/delhi&gt;

</cities>

// css file is here
Acolony {
color: #0000FF;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 30px;
font-weight: normal;

}
one {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
color: #396780;
}

// Action Script Code What i am using

stop();

//init TextArea component
area_txt.wordWrap = true;
area_txt.multiline = true;
area_txt.html=true;
area_txt.editable=false;

// html Format and CSS call
colorStyle = new TextField.StyleSheet();
colorStyle.load(“color.css”);
area_txt.styleSheet = colorStyle;

// XML DATA Load
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.load(“soydaystore1.xml”);
xmlData.onLoad =xmlLoad;
function xmlLoad(loaded)
{
/**************** Kriupa Forum code it’s Working
if (loaded) {
var cityNodes:Array = this.firstChild.childNodes;
var delhiNodes:Array = cityNodes[0].childNodes;
for (var i = 0; i < delhiNodes.length; i++) {
//trace("----------");
var acolony:Array = delhiNodes*.childNodes;
for (var n = 0; n < acolony.length; n++) {
trace(acolony[n].nodeName + " = " + acolony[n].firstChild);
area_txt.text=acolony[n].nodeName + " = " + acolony[n].firstChild;
}
}
}
******************** */
if (loaded) {
xmlNode = this.firstChild;
totalChild=xmlNode.childNodes[0].childNodes.length;

    for(i=0;i&lt;totalChild;i++)
    {
        area_txt.text+=xmlNode.childNodes[0].childNodes*.attributes.areaName+"

“;
totalsubChild=xmlNode.childNodes[0].childNodes*.childNodes.length;
for(k=0;k<totalsubChild;k++)
{
area_txt.text+=” “+xmlNode.childNodes[0].childNodes*.childNodes[k].firstChild+”
";
}
}
//firstImage();
}
else {
content = “file not loaded!”;
}
}