As described here, you can fetch a CSS file, for use with the Preview HTML for Ads that the documentation also describes. The problem is that the css file, when downloaded, contains elements like this:
body{background:#fff;font-size:11px;font-family:'lucida grande',tahoma,verdana,arial,sans-serif;color:#333;line-height:1.28;margin:0;padding:0;text-align:left;direction:ltr;unicode-bidi:embed}
h1, h2, h3, h4, h5, h6{font-size:13px;color:#333;margin:0;padding:0}
h1{font-size:14px}
h4, h5{font-size:11px}
p{margin:1em 0}
a{cursor:pointer;color:#3b5998;text-decoration:none}
a:hover{text-decoration:underline}
img{border:0}
td, td.label{font-size:11px;text-align:left}
dd{color:#000}
dt{color:#777}
ul{list-style-type:none;margin:0;padding:0}
So when we put this CSS on the web page, it screws with the formating for the rest of the page. Maybe this is a simple CSS problem, but how do I limit where this CSS will be applied? Do I have to put it inside of a frame or something? Seems annoying...
Thanks!