/*
 * DS9 Press page style sheet
 *
 * Note: Netscape has some very nasty CSS problems:
 *       1. Inherited styles are lost after a <TABLE>, i.e., styles definded
 *          in BODY are lost.  If you place a font-family in BODY, the <P>
 *          after a <TABLE> reverts to the default font.
 *       2. Font-family styles do not work within DT and DD style definitions.
 *       3. Attempting to set table cell padding does not work correctly.
 *          While padding-top appears to work, padding-bottom does not.
 *          There appears to be no stylesheet values that are equal to the
 *          CELLPADDING and CELLSPACING elements.
 */

BODY {
   color: black;
   background: white;
}

DIV {
   text-align: center;
   padding-bottom: 20px;
}

TH {
   font-family: Helvetica, Arial, sans-serif;
   line-height: 2;
   color: red;
   padding-top: 20px;
}

TH.prod {
   line-height: 0px;
}

TD {
   padding: 0px 0px;
}

TD.synop {
   text-align: justify;
}

H1, H2, H3, H4 {
   font-family: Helvetica, Arial, sans-serif;
}

H4 {
   color: green
}


/*
 * NOTES:
 *
 * Font sizes have the following table for sizes:
 *
 *  Size    <Hn>   font-size
 *  ------------------------
 *    1     <H6>       8pt
 *    2     <H5>      10pt
 *    3     <H4>      12pt   Default font size
 *    4     <H3>      14pt
 *    5     <H2>      18pt
 *    6     <H1>      24pt
 *
 * Font sizes 5/6 (H1/H2) render at the same size 5 under Unix Netscape
 *
 */

