ppweb_main.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. /*
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: pps
  4. (C) Copyright IBM Corp. 2005, 2017
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. /*
  8. * Please consult your documentation for PowerPlay Web Administrator for more information...
  9. */
  10. /*
  11. * Notes regarding use of this file:
  12. *
  13. * Generally, specifications that can be overridden in the Administrator are
  14. * commented out here. Also, what is shown here is the default, which is also
  15. * specified in the HTML code itself, this ensures same look for the Netscape 3.
  16. * The one exception is that there is no cheap way to specify a different font
  17. * for Netscape 3, so that is only possible using CSS.
  18. *
  19. * There are a number of differences of how IE and Netscape treat CSS,
  20. * generally speaking, the Netscape 4 implementation has bugs and is somewhat
  21. * incomplete, please see comments below for differences.
  22. * One other point to note is that simple typo errors could cause the rest of
  23. * the file to be ignored, so watch out for extraneous characters, mismatched
  24. * braces etc.
  25. */
  26. /* default text font families for all text displayed */
  27. HTML
  28. {
  29. font-family: Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  30. word-break: keep-all;
  31. }
  32. /*
  33. Using the language specific font list below can help to workaround the following rendering issues on Browsers:
  34. 1. The Japanese Yen and Korean Won sign appears as the "backslash" when they are represented by the code point "U+005C".
  35. 2. Browser fails to supply a reasonable fall-back font support based on the font list in the "generic fonts" section.
  36. Also, these font lists will be useful for rendering some of the Unified Han ideographs to the form and shape which is
  37. typographically preferred by different Asian writing scripts.
  38. */
  39. /* For Japanese:
  40. HTML
  41. {
  42. font-family: 'MS UI Gothic', Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam,'Andale WT J';
  43. word-break: keep-all;
  44. }
  45. */
  46. /* For Simplified Chinese:
  47. HTML
  48. {
  49. font-family: SimSun, Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  50. word-break: keep-all;
  51. }
  52. */
  53. /* For Traditional Chinese:
  54. HTML
  55. {
  56. font-family: PMingLiU, Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  57. word-break: keep-all;
  58. }
  59. */
  60. /* For Korean:
  61. HTML
  62. {
  63. font-family: Gulim, Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT K';
  64. word-break: keep-all;
  65. }
  66. */
  67. /* Netscape 4 ignores the BODY tag */
  68. /* Text properties here are ignored unless table declarations commented out below */
  69. BODY {
  70. font-size: 10pt;
  71. font-weight: normal;
  72. }
  73. A.SMALL {
  74. font-size: 8pt;
  75. font-weight: normal;
  76. color: #000099;
  77. }
  78. /* Links with cursor over them */
  79. A:hover
  80. {
  81. color: orange;
  82. }
  83. A.MTW {
  84. font-weight: bold;
  85. font-size: 9pt;
  86. color: white;
  87. text-decoration: none;
  88. }
  89. /* Medium bold text */
  90. .MT {
  91. font-weight: bold;
  92. font-size: 10pt;
  93. }
  94. /* Medium WHITE bold text */
  95. .MTW {
  96. font-weight: bold;
  97. font-size: 9pt;
  98. color: white;
  99. }
  100. /* Medium and Large ORANGE bold text */
  101. .MTO {
  102. font-weight: bold;
  103. font-size: 9pt;
  104. color: orange;
  105. }
  106. .LTO {
  107. font-weight: bold;
  108. font-size: 10pt;
  109. color: orange;
  110. }
  111. /* Exception Highlighting high and low*/
  112. .EH {
  113. font-weight: bold;
  114. color: green;
  115. }
  116. .EL {
  117. font-weight: bold;
  118. color: red;
  119. }
  120. /* Drop downs in crosstab */
  121. /* May not work in IE */
  122. /* Please do not comment this out */
  123. .Drop {
  124. font-size: 9pt;
  125. font-weight: normal;
  126. }
  127. /* Dimension Line */
  128. #lDim
  129. {
  130. }
  131. /* Toolbar */
  132. .ToolBar
  133. {
  134. }
  135. /* Need to comment out total level cell tags below in this file to enable this */
  136. /* Column control table cell (outside of crosstab, e.g. Financial Format) */
  137. /*--------------------
  138. .ColumnControl {
  139. background: #cccccc;
  140. }
  141. --------------------*/
  142. /* Row control table cell (outside of crosstab, e.g. Financial Format) */
  143. /*--------------------
  144. .RowControl {
  145. background: #cccccc;
  146. }
  147. --------------------*/
  148. /* Scrollarea (IE) */
  149. .Scrollarea {
  150. font-size: 9pt;
  151. font-weight: normal;
  152. }
  153. .Scrollarea TD {
  154. font-size: 9pt;
  155. font-weight: normal;
  156. }
  157. /* Scrollarea (Netscape) - this is actually incorrect syntax for CSS */
  158. .Scrollarea.TH {
  159. font-size: 9pt;
  160. font-weight: bold;
  161. }
  162. .Scrollarea.TD {
  163. font-size: 9pt;
  164. font-weight: normal;
  165. }
  166. /* Buttonbar (IE) */
  167. .Buttonbar TH {
  168. font-size: 9pt;
  169. font-weight: bold;
  170. }
  171. .Buttonbar TD {
  172. font-size: 9pt;
  173. font-weight: normal;
  174. }
  175. /* Buttonbar (Netscape) - this is actually incorrect syntax for CSS */
  176. .Buttonbar.TH {
  177. font-size: 9pt;
  178. font-weight: bold;
  179. }
  180. .Buttonbar.TD {
  181. font-size: 9pt;
  182. font-weight: normal;
  183. }
  184. /* Crosstab (IE) */
  185. .Crosstab TH {
  186. font-size: 10pt;
  187. font-weight: bold;
  188. }
  189. .Crosstab TD {
  190. font-size: 10pt;
  191. font-weight: normal;
  192. }
  193. /* Crosstab (Netscape) - this is actually incorrect syntax for CSS */
  194. .Crosstab.TH {
  195. font-size: 10pt;
  196. font-weight: bold;
  197. }
  198. .Crosstab.TD {
  199. font-size: 10pt;
  200. font-weight: normal;
  201. }
  202. /* Chart (IE) - Multiple Chart Cells */
  203. .Chart TH {
  204. font-size: 10pt;
  205. font-weight: bold;
  206. }
  207. .Chart TD {
  208. font-size: 10pt;
  209. font-weight: normal;
  210. }
  211. /* Chart (Netscape) - Multiple Chart Cells - this is actually incorrect syntax for CSS */
  212. .Chart.TH {
  213. font-size: 10pt;
  214. font-weight: bold;
  215. }
  216. .Chart.TD {
  217. font-size: 10pt;
  218. font-weight: normal;
  219. }
  220. /* Crosstab status information */
  221. .StatusBar { font-family: Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  222. font-size: 10pt;
  223. font-weight: normal;
  224. font-style: italic;
  225. }
  226. /* Measures dropdown table cell */
  227. /*--------------------
  228. .Measures {
  229. }
  230. --------------------*/
  231. /* Column Headings for total levels */
  232. TH.CH1 {
  233. font-size: 10pt;
  234. background: #ccccff;
  235. }
  236. TH.CH2 {
  237. font-size: 10pt;
  238. background: #9999ff;
  239. }
  240. TH.CH3 {
  241. font-size: 10pt;
  242. background: #6666ff;
  243. }
  244. TH.CH4 {
  245. font-size: 10pt;
  246. background: #3333ff;
  247. }
  248. TH.CH5 {
  249. font-size: 10pt;
  250. background: #ccccff;
  251. }
  252. TH.CH6 {
  253. font-size: 10pt;
  254. background: #9999ff;
  255. }
  256. TH.CH7 {
  257. font-size: 10pt;
  258. background: #ccccff;
  259. }
  260. TH.CH8 {
  261. font-size: 10pt;
  262. background: #9999ff;
  263. }
  264. /* Row Headings for total levels */
  265. TH.RH1 {
  266. font-size: 10pt;
  267. background: #ccccff;
  268. }
  269. TH.RH2 {
  270. font-size: 10pt;
  271. background: #9999ff;
  272. }
  273. TH.RH3 {
  274. font-size: 10pt;
  275. background: #ccccff;
  276. }
  277. TH.RH4 {
  278. font-size: 10pt;
  279. background: #9999ff;
  280. }
  281. TH.RH5 {
  282. font-size: 10pt;
  283. background: #ccccff;
  284. }
  285. TH.RH6 {
  286. font-size: 10pt;
  287. background: #9999ff;
  288. }
  289. TH.RH7 {
  290. font-size: 10pt;
  291. background: #ccccff;
  292. }
  293. TH.RH8 {
  294. font-size: 10pt;
  295. background: #9999ff;
  296. }
  297. /* Data for total levels */
  298. /* Note that the .Tx tags are used in both the <B> tag and
  299. * its surrounding <TD> tag. However, Netscape and IE have
  300. * different inheritance rules, so you need to experiment here
  301. * to get it to do what you want.
  302. */
  303. .T1 {
  304. font-size: 10pt;
  305. font-weight: bold;
  306. background: #ccccff;
  307. }
  308. .T2 {
  309. font-size: 10pt;
  310. font-weight: bold;
  311. background: #9999ff;
  312. }
  313. .T3 {
  314. font-size: 10pt;
  315. font-weight: bold;
  316. background: #ccccff;
  317. }
  318. .T4 {
  319. font-size: 10pt;
  320. font-weight: bold;
  321. background: #9999ff;
  322. }
  323. .T5 {
  324. font-size: 10pt;
  325. font-weight: bold;
  326. background: #ccccff;
  327. }
  328. .T6 {
  329. font-size: 10pt;
  330. font-weight: bold;
  331. background: #9999ff;
  332. }
  333. .T7 {
  334. font-size: 10pt;
  335. font-weight: bold;
  336. background: #ccccff;
  337. }
  338. .T8 {
  339. font-size: 10pt;
  340. font-weight: bold;
  341. background: #9999ff;
  342. }
  343. /* Data for crosstab */
  344. /* Previous table cell declarations will take precedence */
  345. TR.Data {
  346. font-size: 10pt;
  347. font-weight: bold;
  348. }
  349. /* Legend headings */
  350. .LH {
  351. font-size: 8pt;
  352. font-weight: bold;
  353. }
  354. /* Legend elements (links and data) */
  355. .LE {
  356. font-size: 8pt;
  357. font-weight: normal;
  358. }
  359. /* Data for Explain */
  360. TR.ExplainData {
  361. font-size: 10pt;
  362. font-weight: normal;
  363. }
  364. /* Explain headers */
  365. TD.ExplainHeader {
  366. font-size: 10pt;
  367. font-weight: bold;
  368. }
  369. /* Explain selected category */
  370. TD.ExplainSelection {
  371. font-size: 10pt;
  372. font-weight: bold;
  373. background-color:#FFFFCC;
  374. }
  375. /* Explain selected cell */
  376. TD.ExplainCellSelection {
  377. font-size: 10pt;
  378. font-weight: bold;
  379. background-color:#FFFF99;
  380. }
  381. /* Explain text descriptions */
  382. TD.ExplainDescription {
  383. font-size: 9pt;
  384. font-weight: bold;
  385. }
  386. /* Data for Alert */
  387. TR.AlertData {
  388. font-size: 10pt;
  389. font-weight: normal;
  390. }
  391. /* Alert headers */
  392. TD.AlertHeader {
  393. font-size: 10pt;
  394. font-weight: bold;
  395. }
  396. TD.CreateAgentHeader {
  397. font-size: 10pt;
  398. font-weight: bold;
  399. }
  400. TD.CreateDisAgentHeader {
  401. font-size: 10pt;
  402. font-weight: bold;
  403. color: gray;
  404. }
  405. /* Alert selected category */
  406. TD.AlertSelection {
  407. font-size: 10pt;
  408. font-weight: bold;
  409. background-color:#FFFFCC;
  410. }
  411. /* Alert selected cell */
  412. TD.AlertCellSelection {
  413. font-size: 10pt;
  414. font-weight: bold;
  415. background-color:#FFFF99;
  416. }
  417. /* Alert text descriptions */
  418. TD.AlertDescription {
  419. font-size: 9pt;
  420. font-weight: bold;
  421. }
  422. /* Data for Custom Exceptions */
  423. TR.CustomExceptionData {
  424. font-size: 10pt;
  425. font-weight: normal;
  426. }
  427. /* Custom Exception cell text */
  428. TD.CustomException {
  429. font-size: 10pt;
  430. font-weight: normal;
  431. }
  432. /* Custom Exception headers */
  433. TD.CustomExceptionHeader {
  434. font-size: 10pt;
  435. font-weight: bold;
  436. }
  437. /* Custom Exception selected category */
  438. TD.CustomExceptionSelection {
  439. font-size: 10pt;
  440. font-weight: bold;
  441. background-color: #FFFFCC;
  442. border-color: #FFFFFF;
  443. border-width: 1px;
  444. border-style: solid;
  445. }
  446. /* Custom Exception text descriptions */
  447. TD.CustomExceptionDescription {
  448. font-size: 9pt;
  449. font-weight: bold;
  450. }
  451. /* Custom Exception text descriptions */
  452. DIV.CustomExceptionLabel {
  453. font-size: 9pt;
  454. font-weight: bold;
  455. background-color: #FFFFFF;
  456. }
  457. /* Custom Exception error messages */
  458. TD.CustomExceptionError {
  459. font-size: 9pt;
  460. font-weight: bold;
  461. color: red;
  462. }
  463. /* Find result descriptions */
  464. DIV.FindResult {
  465. background-color: #FFFFFF;
  466. width: 97%;
  467. }
  468. TD.FindText {
  469. font-size: 9pt;
  470. font-weight: bold;
  471. }
  472. TD.FindResultLabel {
  473. font-size: 9pt;
  474. height: 15px;
  475. width: 25px;
  476. vertical-align: top;
  477. font-style: italic;
  478. text-align: left;
  479. }
  480. TD.FindResultPath {
  481. font-size: 9pt;
  482. height: 15px;
  483. width: 100%;
  484. vertical-align: top;
  485. text-align: left;
  486. }
  487. TD.FindResultMessage {
  488. font-size: 9pt;
  489. height: 15px;
  490. width: 100%;
  491. vertical-align: top;
  492. font-style: italic;
  493. text-align: left;
  494. }
  495. A.FindResultCategory {
  496. font-size: 9pt;
  497. text-decoration: none;
  498. vertical-align: top;
  499. color: #000000;
  500. }
  501. TD.FindError {
  502. font-size: 9pt;
  503. font-weight: bold;
  504. color: black;
  505. }
  506. /* Suppression Options */
  507. TD.SuppressionOptionsDescription {
  508. font-size: 9pt;
  509. font-weight: bold;
  510. }
  511. /* Custom Exception text descriptions */
  512. DIV.SuppressionOptionsLabel {
  513. font-size: 9pt;
  514. font-weight: bold;
  515. background-color: #FFFFFF;
  516. }
  517. .CalculationPaneSelect
  518. {
  519. width: 170px;
  520. }
  521. /* Dropdown text */
  522. .droplist {
  523. font-family: Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  524. font-weight: normal;
  525. text-decoration: none;
  526. font-size: 8pt;
  527. }
  528. /* Dropdown links - Netscape only */
  529. A.droplist {
  530. font-family: Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  531. font-weight: normal;
  532. text-decoration: none;
  533. font-size: 8pt;
  534. }
  535. .menuLink {
  536. font-family: Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  537. font-size: 9pt;
  538. font-weight: normal;
  539. text-decoration: underline;
  540. color: blue;
  541. white-space: nowrap;
  542. }
  543. SPAN.menuItem {
  544. font-family: Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  545. font-size: 9pt;
  546. font-weight: normal;
  547. color: black;
  548. }
  549. /* "Home" cell - contains the Measures drop down */
  550. TH.Measures {
  551. border: 1px solid Gray;
  552. }
  553. /* Column Headings for data columns when grand totals are hidden */
  554. TH.HTCH {
  555. font-size: 10pt;
  556. border : 1px solid Gray;
  557. }
  558. /* Column Headings for total levels when grand totals are hidden */
  559. TH.HTCH1 {
  560. font-size: 10pt;
  561. background: #ccccff;
  562. border : 1px solid Gray;
  563. }
  564. TH.HTCH2 {
  565. font-size: 10pt;
  566. background: #9999ff;
  567. border : 1px solid Gray;
  568. }
  569. TH.HTCH3 {
  570. font-size: 10pt;
  571. background: #ccccff;
  572. border : 1px solid Gray;
  573. }
  574. TH.HTCH4 {
  575. font-size: 10pt;
  576. background: #9999ff;
  577. border : 1px solid Gray;
  578. }
  579. TH.HTCH5 {
  580. font-size: 10pt;
  581. background: #ccccff;
  582. border : 1px solid Gray;
  583. }
  584. TH.HTCH6 {
  585. font-size: 10pt;
  586. background: #9999ff;
  587. border : 1px solid Gray;
  588. }
  589. TH.HTCH7 {
  590. font-size: 10pt;
  591. background: #ccccff;
  592. border : 1px solid Gray;
  593. }
  594. TH.HTCH8 {
  595. font-size: 10pt;
  596. background: #9999ff;
  597. border : 1px solid Gray;
  598. }
  599. /* Row Heading for data rows when totals are hidden */
  600. TH.HTRH {
  601. font-size: 10pt;
  602. border : 1px solid Gray;
  603. }
  604. /* Row Headings for total levels when grand totals are hidden */
  605. TH.HTRH1 {
  606. font-size: 10pt;
  607. background: #ccccff;
  608. border : 1px solid Gray;
  609. }
  610. TH.HTRH2 {
  611. font-size: 10pt;
  612. background: #9999ff;
  613. border : 1px solid Gray;
  614. }
  615. TH.HTRH3 {
  616. font-size: 10pt;
  617. background: #ccccff;
  618. border : 1px solid Gray;
  619. }
  620. TH.HTRH4 {
  621. font-size: 10pt;
  622. background: #9999ff;
  623. border : 1px solid Gray;
  624. }
  625. TH.HTRH5 {
  626. font-size: 10pt;
  627. background: #ccccff;
  628. border : 1px solid Gray;
  629. }
  630. TH.HTRH6 {
  631. font-size: 10pt;
  632. background: #9999ff;
  633. border : 1px solid Gray;
  634. }
  635. TH.HTRH7 {
  636. font-size: 10pt;
  637. background: #ccccff;
  638. border : 1px solid Gray;
  639. }
  640. TH.HTRH8 {
  641. font-size: 10pt;
  642. background: #9999ff;
  643. border : 1px solid Gray;
  644. }
  645. /* Data for total levels when grand totals are hidden */
  646. .HT1 {
  647. font-size: 10pt;
  648. font-weight: bold;
  649. background: #ccccff;
  650. border : 1px solid Gray;
  651. }
  652. .HT2 {
  653. font-size: 10pt;
  654. font-weight: bold;
  655. background: #9999ff;
  656. border : 1px solid Gray;
  657. }
  658. .HT3 {
  659. font-size: 10pt;
  660. font-weight: bold;
  661. background: #ccccff;
  662. border : 1px solid Gray;
  663. }
  664. .HT4 {
  665. font-size: 10pt;
  666. font-weight: bold;
  667. background: #9999ff;
  668. border : 1px solid Gray;
  669. }
  670. .HT5 {
  671. font-size: 10pt;
  672. font-weight: bold;
  673. background: #ccccff;
  674. border : 1px solid Gray;
  675. }
  676. .HT6 {
  677. font-size: 10pt;
  678. font-weight: bold;
  679. background: #9999ff;
  680. border : 1px solid Gray;
  681. }
  682. .HT7 {
  683. font-size: 10pt;
  684. font-weight: bold;
  685. background: #ccccff;
  686. border : 1px solid Gray;
  687. }
  688. .HT8 {
  689. font-size: 10pt;
  690. font-weight: bold;
  691. background: #9999ff;
  692. border : 1px solid Gray;
  693. }
  694. /* Data cells when either Row or Column total is hidden */
  695. TD.HTData {
  696. font-size: 10pt;
  697. font-weight: normal;
  698. border : 1px solid Gray;
  699. }
  700. /* Selected data cell */
  701. TD.Selected {
  702. background-color: #FFFFCC;
  703. border : 1px solid Gray;
  704. }
  705. /* Intersection of a selected row and column */
  706. TD.SelectedCell {
  707. background-color: #FFFF99;
  708. border : 1px solid Gray;
  709. }
  710. /* Selected row/column label */
  711. TH.Selected {
  712. background-color: #FFFFCC;
  713. border : 1px solid Gray;
  714. }