Lo que pasa es que Internet Explorer no es adivino y necesita de un DOCTYPE. Así funciona perfectamente en IE 9.
Código CSS:
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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
#contenedor{
text-align:left;
width:90%;
height:900px;
}
#encabezado{
height:160px;
width:100%;
}
#logo{
float:left;
margin-left:0px;
margin-right:0px;
background-color:#FFF;
}
#head2{
margin-top:10px;
width:100%;
height:109px;
}
.separador{
background-color:transparent;
height:2px;
}
#destacado1{
width:100%;
height:37px;
background-color:#f99d02;
}
#Buscador{
width:100%;
height:44px;
background-color:#cacace;
}
#destacado2{
width:100%;
height:24px;
background-image:url(../img/back_destacado2.jpg);
}
</style>
</head>
<body>
<div id="encabezado">
<div id="logo">
<img src="template/img/lOGO.gif" width="224px" height="152px" >
</div>
<div id="head2">
<div id="destacado1">
</div>
<div class="separador"></div>
<div id="Buscador">
</div>
<div class="separador"></div>
<div id="destacado2">
</div>
</div>
</div>
</body>
</html>