| 1 | <?php | 
| 2 |  | 
| 3 |  | 
| 4 | $css = <<<EOF | 
| 5 |  | 
| 6 | .navtablehead  { | 
| 7 | background: #003196; | 
| 8 | } | 
| 9 |  | 
| 10 | .navtablesubhead { | 
| 11 | background: #ffffff; | 
| 12 | } | 
| 13 |  | 
| 14 | .navtablesubtitle { | 
| 15 | font-family: ariel, helvetica, sans serif; | 
| 16 | font-size: 8pt; | 
| 17 | color: $subtitlefont; | 
| 18 | background: $subtitle; | 
| 19 | font-weight: bold; | 
| 20 | text-align: center; | 
| 21 | } | 
| 22 | .navtabletitlehead { | 
| 23 | font-family: sans serif, helvetica, arial; | 
| 24 | font-size: 10pt; | 
| 25 | background: $title; | 
| 26 | color: $titlefont; | 
| 27 | font-weight: bold; | 
| 28 | text-align: center; | 
| 29 |  | 
| 30 | } | 
| 31 |  | 
| 32 | .navtablebarleft  { | 
| 33 | background-image: url('/phphtmllib/widgets/images/top-left-corner.gif'); | 
| 34 | background-repeat: no-repeat; | 
| 35 | background-color: $title; | 
| 36 | } | 
| 37 | .navtablebarright { | 
| 38 | background-image: url('/phphtmllib/widgets/images/top-right-corner.gif'); | 
| 39 | background-repeat: no-repeat; | 
| 40 | background-color: $title; | 
| 41 | } | 
| 42 | .navtablediv { | 
| 43 | line-height: 11px; | 
| 44 | font-family: Arial, helvetica, sans serif; | 
| 45 | font-size: 10pt; | 
| 46 | } | 
| 47 | .navtableheight { | 
| 48 | font-size:4pt; | 
| 49 | line-height:3px; | 
| 50 | } | 
| 51 | EOF; | 
| 52 |  | 
| 53 | print $css; | 
| 54 |  | 
| 55 | ?> |