This is a rough tidy up and more what I was talking about. (I left your IDs as they were, though I wouldn't use them myself.)
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>mfoam</title>
<style type="text/css" media="all">
body {
font: 75% Eurostile, sans-serif;
background: #5a74a5 url(http://test-bench.99k.org/images/FR_Web_Background.jpg) repeat-x 50% 0;
}
#top, #left_content, #left_bottom_content, #center_content, #right_content, #footer {
background: #fff;
-moz-border-radius: 1em;
border-radius: 1em;
padding: 10px;
margin: 0 0 10px;
}
.wrapper {width: 940px; margin: 0 auto; overflow: hidden; margin-top: 20px;}
.content-left {width:200px; float: left;}
.content-right {width: 730px; float: right;}
#footer {clear:both;}
</style>
</head>
<body>
<div class="wrapper">
<div id="top">
<img src="http://test-bench.99k.org/images/mfoam_logo.png" width="312" height="96" alt="mfoam logo">
</div>
<div class="content-left">
<div id="left_content">
<p>test text</p>
</div>
<div id="left_bottom_content">
<p>left bottom content!</p>
<p>flresent Opera (version 10.5 onward), Safari (version 5 onward) and Chrome (version 5 onward) all support the individual border-*-radius properties and the border-radius shorthand property as natively defined in the current W3C Specification (although there are still outstanding bugs on issues such as border style transitions, using percentages for lengths, etc.).</p>
<p>Mozilla Firefox (version 1.0 onward) supports border-radius with the -moz- prefix, although there are some discrepancies between the Mozilla implementation and the current W3C specification (see below).</p>
</div>
</div><!-- end content-left -->
<div class="content-right">
<div id="right_content">
<p>test right text</p>
</div>
<div id="center_content">
<p>At p</p>
<p>flresent Opera (version 10.5 onward), Safari (version 5 onward) and Chrome (version 5 onward) all support the individual border-*-radius properties and the border-radius shorthand property as natively defined in the current W3C Specification (although there are still outstanding bugs on issues such as border style transitions, using percentages for lengths, etc.).</p>
<p>Mozilla Firefox (version 1.0 onward) supports border-radius with the -moz- prefix, although there are some discrepancies between the Mozilla implementation and the current W3C specification (see below).</p>
<p>Update:Recent Firefox nightly versions support border-radius without the -moz- prefix.</p>
<p>Safari and Chrome (and other webkit based browsers) have supported border-radius with the -webkit- prefix since version 3 (no longer needed from version 5 onward), although again with some discrepancies from the current specification (see this article for further details of how older versions of Webkit handle border-radius).</p>
<p>Even Microsoft have promised, and demonstrated in their recent preview release, support for border-radius from Internet Explorer 9 onward (without prefix).</p>
</div>
</div><!-- end right-content -->
<div id="footer">
<p>text for footer</p>
</div>
</div><!-- end wrapper -->
</body>
</html>
Save that code as a .html file, open it in your browser, and see if it's more like what you want.
Bookmarks