Place image to right of li link

So, I’m trying to place a pdf image to the right of an li link, but my image instead is replacing the text. What am I doing wrong here???

http://devb.bambl.clients.blinkss.com/schedules/

.PDFbg a {
display:inline-block;
width: 35px;
height: 42px;
background:url(IMAGES/pdf_image.png) 50px 0;
text-indent: -50px;
}

Remove the width on the <a>, along with text-indent etc. Add left padding to the <a> instead. The background image will sit in that padding area and not affect the text.

Thx it worked!

.PDFbg a {
display:inline-block;
padding-left:30px;

height: 42px;
background:url(IMAGES/pdf_image.png) 0 0px no-repeat;

}