XML Feed CSS HTML Actionscript Help

Hi everyone! I am trying to embed a blog into a website built with Flash MX 2004. The feed from the blog at typepad.com comes through fine but it isn’t loading the CSS which is hosted at tyepad.com. I read some information about crossdomain.xml but not sure if that is the problem. When I try the same thing in html without flash it loads the CSS just fine. Any help would be great!! It’s pretty simple but here is what I have so far:

var css = new TextField.StyleSheet();
css.load(“http://typepad.com/.shared/themes/walt/theme-vicksburg_red.css”);
myText.styleSheet = css;
news = new XML();
news.load(“http://xxxxxx.typepad.com/xxxx/xxxx/xxxx/index.html”);
news.onLoad = function () {
myText.text = news;
}