añade un contenedor del 100% de anchura con la altura y position absolute y dentro el top tal y como lo hiciste y el pie igual
Código HTML:
Ver original#contenedor{height:90px;width:100%;margin-bottom:20px;position:absolute;}
#pie{
//background-repeat:repeat-x;
min-width:auto;
height:90px;
width: expression((documentElement.clientWidth <900) ? "900px" : "100%" );
visibility: visible;
width: 895px;
margin-left: auto;
margin-right: auto;
background-image: url(../imagenes/pie.jpg);
border-left-color: #fff;
border-left-style: solid;
border-right-color: #fff;
border-right-style: solid;
border-bottom-color: #fff;
border-bottom-style: solid;
position: relative;
}
<div id="pie">contenido aqui
</div>