Este selector no hace absolutamente nada, porque se refiere a un elemento cuyo ID sea "img", que no tienes:
Cita: #img {
border:#444 solid 1px;
float:right;
width:585px;
height:409px;
position:relative;
z-index:1;
}
Seguramente lo que quieres hacer es:
Cita: #contenedor img {
border:#444 solid 1px;
float:right;
width:585px;
height:409px;
position:relative;
z-index:1;
}
es decir, la imagen dentro del div con ID "contenedor"