Mira a ver si te vale esto, copia y pega. Como verás es mucho más limpio.
   Código HTML:
 <!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<style type="text/css">
	body { background:#4C5844; margin:0px; padding:0px; font:11px arial; color:#fff; }
	
	#contenedor { width:910px; margin:auto; }
	
		#logo { width:910px; height:35px; background-image:url(http://unbekannt.webcindario.com/practice/header_bg.jpg); background-repeat:no-repeat; }
	
		#cuerpo { width:910px; height:300px; background-image:url(http://unbekannt.webcindario.com/practice/img_content.jpg); }
	
			#contenido { width:650px; float:left; }
			#menu { width:255px; float:right; }
	
	.limpia { clear:both; }
</style>
<body>
<div id="contenedor">
	
	<div id="logo">Logo</div>
	
	<div id="cuerpo">
	
		<div id="contenido">
			contenido
		</div>
	
		<div id="menu">
			menu
		</div>
		
		<div class="limpia"></div>
	
	</div>
	
</div>
</body>
</html>