This is the CSS for a Container with Banner Space
#container {
width: 850px;
height:600px;
background-color: silver;
margin:auto;
}
#banner {
width:800px;
height:160px;
background-color:ButtonShadow;
margin:auto;
}
This is the HTML
<div id="container">
<div id="banner">
</div>
</div>