Loading HTML/CSS into Flash

I’ve been struggling with importing CSS and HTML into a Flash file and it seems I’ve become stuck. The code I have so far is such, but it is not working properly, could someone please shed a little light on this situation for me? I’ve got the HTML side of things worked out but the CSS code is what’s giving me trouble. I’ve also attached the respective files. Much thanks.

//Load CSS Data -----------------------------------------------------------

var cssLoader:URLLoader = new URLLoader();
var cssRequest:URLRequest = new URLRequest(“s3.css”);
cssLoader.addEventListener(Event.COMPLETE, cssLoaderComplete);
cssLoader.load(cssRequest);

function cssLoaderComplete(evt:Event):void{
var css:StyleSheet = new StyleSheet();
css.parseCSS(URLLoader(evt.target).data);
textfield_contact.styleSheet = css;
//textfield_contact.htmlText = contentTextData;
}

//Load HTML Data -----------------------------------------------------------

var contentTextLoader:URLLoader = new URLLoader();
var contentTextData:URLRequest = new URLRequest(“contactText.html”);

function textLoadComplete(event:Event):void
{
textfield_contact.htmlText = contentTextLoader.data;
}

contentTextLoader.load(contentTextData);
contentTextLoader.addEventListener(Event.COMPLETE, textLoadComplete);