Memory issues with looping moveclip and Loader

Hello.

im working on a banner which have all data included from external text file and styled with css. I’ve figured many ssues but tha last one makes me crazy.

the code of the banner you can see here:

the issue it that my main timeline have 2 frames and the file loops. In this case all works fine , but the on every loop the actionscript loads all the Loaders and data again and again and this cause increasing memory usage (about 1 MB per 2/3 loops) .
To fix this I’ve put a stop(); in the first frame , which fixed the memory leak issue, but now the CSS doesn’t load at all - I don’t know why. Also I’ve released that the CSS not loads if the clip have only one frame.

Any ideas?

the cide for the cssloader is


//Load text from external file
var myTextLoader:URLLoader = new URLLoader();
myTextLoader.dataFormat=URLLoaderDataFormat.VARIABLES;
myTextLoader.addEventListener(Event.COMPLETE, onLoaded);


function onLoaded(e:Event):void 
{

     title_txt.htmlText = e.target.data.titleText1;
     body_mc.body_txt1_mc.body_txt1.htmlText = e.target.data.bodyText1;
     body_mc.body_txt2_mc.body_txt2.htmlText = e.target.data.bodyText2;
     price_txt.htmlText = e.target.data.priceText;
     footer_txt.htmlText = e.target.data.footerText;
     order_txt.htmlText = e.target.data.orderText;
     play_txt.htmlText = e.target.data.playText;
}

myTextLoader.load(new URLRequest("myText.txt"));

//Load CSS styles from external file

var cssReq:URLRequest = new URLRequest("style.css");
var cssLoader:URLLoader = new URLLoader();

function cssLoaded(event:Event):void
{
    var sheet:StyleSheet = new StyleSheet();
    sheet.parseCSS(cssLoader.data);
    title_txt.styleSheet = sheet;
    body_mc.body_txt1_mc.body_txt1.styleSheet = sheet;
    body_mc.body_txt2_mc.body_txt2.styleSheet = sheet;
    price_txt.styleSheet = sheet;
    footer_txt.styleSheet = sheet;
    order_txt.styleSheet = sheet;
    play_txt.styleSheet = sheet;
         
}

cssLoader.addEventListener(Event.COMPLETE, cssLoaded);
cssLoader.load(cssReq);