I'm encountering a problem in my CSS:
body.transparent {background-color: transparent;color:#ffffff;text-shadow: 0 -1px #000, 1px 0 #000, 0 1px #000, -1px 0 #000;}
The text-shadow was intended to apply only to simple, non-formatted text. However, it is also affecting the links.
How can I prevent the links on this body class from having a shadow? (Note that it should only apply to this specific body class and not others.)