123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /****************************************************************
- ** Licensed Materials - Property of IBM
- **
- ** IBM Cognos Products: mdsrv
- **
- ** (C) Copyright IBM Corp. 2008, 2015
- **
- ** US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- *****************************************************************/
- /***********************************************************************************************
- // Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- // Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- ***********************************************************************************************/
- /** Root table. */
- .businessViewRootTable {
- border:none;
- width:100%;
- font-family: Tahoma, 'Arial Unicode MS', 'Andale WT', Arial, 'MS UI Gothic', Gulim, SimSun, PMingLiU, Raghu8, sans-serif;
- }
- /** Secondary grouping table. */
- .groupingTables {
- border:solid 1px white;
- width:100%;
- }
- /** Nested tables. */
- .nestingTable{
- width:100%;
- }
- /** Compound property cells [objects with more then a simple value */
- .dataCell {
- vertical-align:top;
- font-size: 70%;
- color:#000000;
- padding: 3px 5px;
- }
- /** Secondary headers. */
- .header2 {
- vertical-align:top;
- background-color:#eeeeee;
- font-size: 70%;
- color:#000000;
- font-weight: bold;
- padding: 3px 5px;
- }
- /** Class for TD used to display image for FM type. */
- .fmicon {
- width:16px;
- height:16px;
- }
- .fmicon img {
- width:16px;
- height:16px;
- }
- .itemHeaderFirst {
- width:150px;
- vertical-align:top;
- background-color:#eeeeee;
- font-size: 70%;
- color:#000000;
- font-weight: bold;
- padding: 3px 5px;
- border-right:2px solid white;
- }
- /** Secondary headerss, which are the last secondary header in their groups. */
- .itemHeader{
- width:150px;
- vertical-align:top;
- background-color:#eeeeee;
- font-size: 70%;
- color:#000000;
- font-weight: bold;
- padding: 3px 5px;
- border-top:2px solid white;
- border-right:2px solid white;
- }
- /** Third headers. */
- .header3 {
- width:40%;
- vertical-align:top;
- }
- /* Default Font for the Report */
- /* --------------------------- */
- .pg /* page */,
- .pp /* prompt page */
- {
- font-family: Tahoma, 'Arial Unicode MS', 'Andale WT', Arial, 'MS UI Gothic', Gulim, SimSun, PMingLiU, Raghu8, sans-serif;
- }
- /*
- A bug in IE prevents TABLE elements from properly inheriting text properties.
- These properties include color, font-size, font-weight, font-style,
- font-variant, text-decoration, text-transform, letter-spacing, and line-height.
- All of the text properties of TABLE elements, except font-family, are inherited
- from the BODY element otherwise setting these on the page would be enough.
- */
- .pg /* page */,
- .pp /* prompt page */,
- .tb /* table */,
- .rt /* repeaterTable */,
- .sc /* section list */,
- .ls /* list */,
- .xt /* crosstab */
- {
- color: #000000;
- }
- .pg /* page */,
- .pp /* prompt page */,
- .tb /* table */,
- .rt /* repeaterTable */,
- .sc /* section list */
- {
- font-size: 10pt;
- }
- /* Page Styles */
- /* ----------- */
- .pg /* page */
- {
- width: 100%;
- height: 100%;
- }
- .pb /* page body */
- {
- height: 100%;
- vertical-align: top;
- padding: 3px 5px;
- }
- .ph /* page header */,
- .pf /* page footer */
- {
- vertical-align: top;
- padding: 3px 5px;
- }
- /* Title Styles */
- /* ----------- */
- .ta /* report title area (container of the report title text) */
- {
- font-size: 14pt;
- font-weight: bold;
- color: #325c88;
- text-align: left;
- padding: 3px 5px;
- }
- .tt /* report title text */
- {
- text-decoration: underline;
- }
- .ts /* subtitle area */
- {
- font-size: 10pt;
- color: #325c88;
- text-align: left;
- padding: 3px 5px;
- font-weight: bold;
- border:solid 1px grey;
- }
- caption {
- font-family: Tahoma,'Arial Unicode MS','Andale WT',Arial,'MS UI Gothic',Gulim,SimSun,PMingLiU,Raghu8,sans-serif;
- font-weight: bold;
- }
- .businessViewRootTable {
- table-layout:fixed;
- }
- #NormalOrDetailedViewCell {
- font-size: 10pt;
- }
- .textGraphLink {
- font-size: 70%;
- }
- .referencesList {
- list-style-type = "none";
- }
- #tableOfContents {
- border: 1px solid #325C88;
- font-size: 70%;
- font-weight: normal;
- margin-bottom: 5px;
- margin-top: 5px;
- padding-bottom: 5px;
- padding-top: 5px;
- width: 40%;
- }
|