Bonjour à tous,

J'ai une div (un backgroud) avec un margin-top:10px;
A l'interieur de celle-ci, j'ai un autre background mais j'aimerai que cette dernière ne prenne pas en compte ce margin top


 <li class="bg_reste" style="margin-top:10px;">
     <div class="bg_recherche"></div>
</li>


avec le css


.bg_recherche {
background-image:url(images/bloc_recherche_bg.gif);
background-repeat:no-repeat;
width:192px;
height:36px;
margin-left:17px;
margin-top:0px;
padding-top:0px;
}

.bg_reste {
background-image:url(images/menu_reste.gif);
background-repeat:repeat-x;
backgrdoun-position:bottom;
height:37px;
width:208px;
}


je ne sais pas du tout quoi faire et du coup suis bloqué..

quelqu'un pourrait il m'aider?

Merci beaucoup