You won't get equal heights for the 2 left DIVs combined and the right DIV. Unless ofcourse you specify those, or if the contents produce the same heights... But this shouldn't be a problem i think?
Update
<style type="text/css">
#container {float:right;position:relative;}
#left {float:left; width:75%;} /** ? don't know if you need widths? **/
float:left;}
#left_1 {float:left;}
#left_2 {float:left;clear:left; width:75%;}
clear:left;float:left;}
#right {float:right; width:25%;}
float:right;}
#bottom {float:left;clear:both;}
</style>
<div id="container">
<div id="left"></div>
>
<div id="left_1">left 1</div>
<div id="left_2"></div>
>left 2</div>
</div>
<div id="right"></div>
>right</div>
<div id="bottom"></div>
>bottom</div>
</div>
