Img in html textbox

I have made a textbox that loads a external HTML file,
the images shows, but it scales it down, even when having set
width and height… that’s very strange…
the textbox is 301px and the picture is 300px.
anyone with simulare experince or just know why flash do this…

the xxxx.html file looks perfect in a browser.

I also notice that I can’t use <br> but a linebrake works fine.
could there be some tag in the <img tag I have missed?

It would be easier to have it as a external HTML file for updates…

Thanks in advance
H

here is the code for the HTML file:

<body>
<headline>Bla bla</headline>
<mainBody>bla bla bla bla bla</mainBody>
<img src=“jpg2.jpg” width=“300” height=“26” align=“right”>
<mainBody>bla bla bla bla bla</mainBody>
</body>

linked to a CSS that looks like this:

body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
headline {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #666666;
font-weight: bold;
display: block;
}
subheadline {
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
font-weight: bold;
display: block;
color: #333333;
}
mainBody {
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
display: block;
color: #333333;
}
biline {
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
font-style: italic;
display: inline;
color: #333333;
}
A {
font-family: Arial,Helvetica,sans-serif;
color:#000000;
font-size: 12px;
display: inline;
text-decoration:underline;
}

and the code in flash:

var myStyle:TextField.StyleSheet = new TextField.StyleSheet();
myStyle.load(“text.css”);
content_2_txt.styleSheet = myStyle;

content_2_txt.multiline= true;
content_2_txt.wordWrap = true;
content_2_txt.html = true;

var story:XML = new XML();
story.ignoreWhite = true;
story.load(“news.html”);
story.onLoad = function () {
content_2_txt.htmlText = story;
}