Como te decía, este error de IE6 se suele solucionar poniendo algún tipo de borde a los "li":
Cita: #footer ul li {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0px;
border-bottom:1px solid #222;
}
#footer ul li a {
background-color:#ffffff;
color:#000000;
display:block;
padding:3px 6px;
text-decoration:none;
font-family: Verdana;
font-size: 11px;
font-style: normal;
font-weight: normal;
letter-spacing: 1px;
margin:0px;
}
#footer ul li a:hover {
background-color:#6C1605;
color:white;
}
Prueba así.
(Sólo cambio el borde de los "a" a los "li")