Estoy viendo tu código, y recien ahora me doy cuenta de un detalle,
tenes puesto
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#11a5c0', endColorstr='#0f788c',GradientType=0 ); /* IE6-9 */
y eso hace que no trabaje adecuadamente, pra el gradient tenes que usar
-pie-background: linear-gradient(#EEFF99, #66EE33);
Resumiendo, para que funcionen en todas partes los tres efectos (radius, shadow, gradient) (+ PIE.htc para IE)
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"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> #footer1{
position: relative;
left:0px;
color:black;
width:970px;
height:102px;
margin: 0px auto;
border: 1px solid #696;
padding: 60px 0;
text-align: center;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: #666 4px 8px 3px;
-moz-box-shadow: #666 4px 8px 3px;
box-shadow: #666 4px 8px 3px;
background: #EEFF99;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#EEFF99), to(#66EE33));
background: -webkit-linear-gradient(#EEFF99, #66EE33);
background: -moz-linear-gradient(#EEFF99, #66EE33);
background: -ms-linear-gradient(#EEFF99, #66EE33);
background: -o-linear-gradient(#EEFF99, #66EE33);
background: linear-gradient(#EEFF99, #66EE33);
-pie-background: linear-gradient(#EEFF99, #66EE33);
behavior: url(PIE.htc);
}
<div id="footer1">Footer 1
</div>
Saludos