I would try something along the lines of:
li img{
position:relative;
z-index:-99999;
}
li span{
position:relative;
z-index:99999;
}
.under-text-over-image{
position:relative;
z-index:11111;
}
something along these lines, usually works for me when using z-index.
Hope this helps you.