el problema esta en el #centro
#centro {
position:absolute;
margin: 50px 0 0 20px;
width:334px;
height:283px;
background:url("images/bautizo.jpg") no-repeat;
float:center;
}
en realidad ff esta renderizandolo bien el q hace cualquiera como siempre es el innombrable
. float center no existe , es right o left.
proba con esto:
#centro {
width:334px;
height:283px;
background:url("images/bautizo.jpg") no-repeat;
float:left;
}
salu2