pues eso, necesito usar el margin top, para que no salga arriba pegado del todo, los divs tengo 2, 1 para meter el contenido, y otro para el bloque que sale en la imagen...
 
aqui dejo el codigo, por si no me entiendes aver si asi:    
Código CSS:
Ver original- @charset "utf-8"; 
- /* CSS Document */ 
- body { 
-     margin-top: 0px; 
-     margin-bottom: 0px; 
-     background-image:url(fondo.png); 
-     background-attachment:fixed; 
- } 
- .contenedor { 
-     height: 555px; 
-     width: 1002px; 
-     margin-right: auto; 
-     margin-left: auto; 
- } 
- .encabezado { 
-     background-image:url(encabezado.png); 
-     height: 85px; 
-     width: 1002px; 
- } 
- .contenido { 
-     background-image:url(fondo_contenido.png); 
-     height: 450px; 
-     width: 1002px; 
- } 
- .bloque_centro { 
-     background-image:url(contenido_grande.png); 
-     height: 324px; 
-     width: 777px; 
-     margin-top: 20px; 
-     margin-left: 20px; 
- } 
- .pie { 
-     background-repeat:no-repeat; 
-     background-image:url(pie.png); 
-     height: 27px; 
-     width: 1004px; 
-     margin-left: 3px; 
- } 
Código HTML:
Ver original- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
- <html xmlns="http://www.w3.org/1999/xhtml"> 
- <link href="imagenes/css.css" rel="stylesheet" type="text/css" /> 
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
-   
- <div class="encabezado"></div> 
- <div class="bloque_centro"></div>