I have a page that I have been working on that I am inserting Bookmarks on the section headings, H2. In my style sheet (CSS) I have set the style to be Oblique<pre>H2
{
FONT-WEIGHT: bold;
BACKGROUND: none transparent scroll repeat 0% 0%;
MARGIN-BOTTOM: 0em;
COLOR: blue;
FONT-STYLE: oblique;
FONT-FAMILY: Tahoma,Arial,Helvetica;
}</pre>
When I print it comes out upright, not oblique or italic. Sample of web page <pre>[/list]
<h2 id="Policy">Policy Statement</h2>
<div align="center"></pre>
In an effort to correct this problem, I set a series of styles specifically for printing:<pre>@media print {
H1 { PAGE-BREAK-BEFORE: auto; ORPHANS: 10; WIDOWS: 20; }
H2 { PAGE-BREAK-BEFORE: auto; ORPHANS: 10; WIDOWS: 20; FONT-STYLE: italic; }
H2 { A:NAME { FONT-STYLE: italic; } }
}</pre>
Any ideas what I am doing wrong?? I really need bookmarks or IDs so my table of contects works.



