iTunes "Now Playing" CSS

A while ago, I played around with my site StyleSheet, and set it up so that a paragraph of text with the class iTunes had a little icon placed next to it. This seems to have stopped working. Must look into it. Edit: I fixed it. Originally the code was:

    .itunes:before
    {
            content:url('/images/itunes.gif');
    }

I changed it to:

    .itunes
    {
    	background:url('/images/itunes.gif') no-repeat;
            text-indent:16px;
            font-size:0.8em;
    }