I want a layout like this. Please take a look the image

As you can see, i have top bar and footer bar. Since footer bar is solid bar, i can just use div and fill the solid color.
But for the top bar, I have to use image as an background inside div. And here is the image of top bar.

What I want to do is, the black square box (logo) should be fixed at the right corner and the bar should repeat according to the width of the screen.
Please kindly provide me the css for the top bar. Thank you.
Edit: Sorry about my careless. Here is my code.
<html>
<head>
</head>
<body style="margin:0px">
<div style="width:100%; height:100%">
<div style="position:absolute; top:10px; background:url(bglogo.png); width:100%; height:100px"></div>
<div style="position:absolute; bottom:0px; width:100%; height:20px; background:#000"></div>
</div>
</body>
</html>
<!DOCTYPE html>) as the very first line. – thirtydot Aug 12 '11 at 13:37