| 1 | <?php | 
| 2 |  | 
| 3 |  | 
| 4 | $css =<<<EOF | 
| 5 | TABLE.treenavwrapper { | 
| 6 | background: #000066; | 
| 7 | } | 
| 8 |  | 
| 9 | TABLE.treenavinnertable { | 
| 10 | background: #CAD5EB; | 
| 11 | } | 
| 12 |  | 
| 13 | TD.treenavspacer { | 
| 14 | background: #000066; | 
| 15 | } | 
| 16 |  | 
| 17 | A.treenavnormal:active, A.treenavnormal:link { | 
| 18 | font-family: ariel, helvetica, lucida; | 
| 19 | font-size: 10pt; | 
| 20 | font-weight: bold; | 
| 21 | color: #000000; | 
| 22 | text-decoration: none; | 
| 23 | } | 
| 24 |  | 
| 25 | A.treenavnormal:hover { | 
| 26 | font-family: ariel, helvetica, lucida; | 
| 27 | font-size: 10pt; | 
| 28 | font-weight: bold; | 
| 29 | color: #FFFFFF; | 
| 30 | text-decoration: underline; | 
| 31 | } | 
| 32 |  | 
| 33 | A.treenavselected:active, A.treenavselected:link { | 
| 34 | font-family: ariel, helvetica, lucida; | 
| 35 | font-size: 10pt; | 
| 36 | font-weight: bold; | 
| 37 | color: #FFFFFF; | 
| 38 | text-decoration: none; | 
| 39 | } | 
| 40 |  | 
| 41 | A.treenavselected:hover { | 
| 42 | font-family: ariel, helvetica, lucida; | 
| 43 | font-size: 10pt; | 
| 44 | font-weight: bold; | 
| 45 | color: #FFFFFF; | 
| 46 | text-decoration: underline; | 
| 47 | } | 
| 48 | EOF; | 
| 49 |  | 
| 50 | print $css; | 
| 51 | ?> |