styles.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029
  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. /** PP STUDIO - BUSINESS SKIN **/
  9. /***********************************/
  10. /*
  11. * Please consult your documentation for PowerPlay Web Administrator for more information...
  12. */
  13. /* default text font families for all text displayed */
  14. HTML
  15. {
  16. font-family: Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  17. word-break: keep-all;
  18. }
  19. /*
  20. Using the language specific font list below can help to workaround the following rendering issues on Browsers:
  21. 1. The Japanese Yen and Korean Won sign appears as the "backslash" when they are represented by the code point "U+005C".
  22. 2. Browser fails to supply a reasonable fall-back font support based on the font list in the "generic fonts" section.
  23. Also, these font lists will be useful for rendering some of the Unified Han ideographs to the form and shape which is
  24. typographically preferred by different Asian writing scripts.
  25. */
  26. /* For Japanese:
  27. HTML
  28. {
  29. 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';
  30. word-break: keep-all;
  31. }
  32. */
  33. /* For Simplified Chinese:
  34. HTML
  35. {
  36. font-family: SimSun, Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  37. word-break: keep-all;
  38. }
  39. */
  40. /* For Traditional Chinese:
  41. HTML
  42. {
  43. font-family: PMingLiU, Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT';
  44. word-break: keep-all;
  45. }
  46. */
  47. /* For Korean:
  48. HTML
  49. {
  50. font-family: Gulim, Tahoma, Arial, Helvetica, sans-serif, 'MS Gothic', 'MS Mincho', 'MS Song', SimSun, NSimSun, MingLiu, PMingLiu, Gulim, GulimChe, Miriam, 'Andale WT K';
  51. word-break: keep-all;
  52. }
  53. */
  54. body
  55. {
  56. border: 0;
  57. overflow: hidden;
  58. background: #ffffff;
  59. }
  60. /* vertical division to the left of the crosstab */
  61. #testDivMain-tab0
  62. {
  63. overflow: hidden;
  64. height: 100%;
  65. color: black;
  66. padding: 0px;
  67. z-index: 0;
  68. }
  69. .dimTreeBorderContainer
  70. {
  71. height: 100%;
  72. float: left;
  73. }
  74. .dimTreeBorder
  75. {
  76. width: 3px;
  77. height: 100%;
  78. border: 1px solid #DADADA;
  79. background-color: #F0F0F0;
  80. margin: 0px;
  81. padding: 0px;
  82. }
  83. .dimTreeBorderImg
  84. {
  85. width: 3px;
  86. }
  87. /* area behind and just underneath the dimension bar */
  88. #testDivBar-tab0
  89. {
  90. width: 100%;
  91. border: 0px;
  92. }
  93. /* placeholder for the dimension bar */
  94. #floatDivBar-tab0
  95. {
  96. position: absolute;
  97. top: 0;
  98. left:0;
  99. width: 165px;
  100. border: 0px;
  101. display: block;
  102. padding: 0px;
  103. margin: 5px;
  104. z-index: 10;
  105. visibility: visible;
  106. }
  107. /* area behind the dimension bar (behind testDivBar-tab0 as well) */
  108. #innerNiceMain-tab0
  109. {
  110. overflow: hidden;
  111. width: 100%;
  112. height: 100%;
  113. background: white;
  114. color: black;
  115. padding: 0px;
  116. }
  117. /* frame containing the crosstab */
  118. #innerNice1-tab0
  119. {
  120. overflow: auto;
  121. width: 100%;
  122. border: none;
  123. background: white;
  124. color: black;
  125. padding: 0px;
  126. }
  127. /*********************************************/
  128. /* Find Dialog */
  129. /*********************************************/
  130. /* Find results background */
  131. .findRow
  132. {
  133. height:15px;
  134. font-size: 9pt;
  135. background: #FFFFFF;
  136. }
  137. .findDialogContent
  138. {
  139. padding: 0px;
  140. margin: 0px;
  141. }
  142. /* Selected Find result Background */
  143. .findRowSelected
  144. {
  145. height:15px;
  146. font-size: 9pt;
  147. background-color: #E3E9F3;
  148. }
  149. /* Find results border */
  150. .findTable
  151. {
  152. border: 1px solid #336699;
  153. }
  154. /* Find results Header */
  155. .findHeaderRow
  156. {
  157. font-size: 9pt;
  158. background-color: #98ABCF;
  159. }
  160. .findLabel
  161. {
  162. font-size: 8pt;
  163. font-weight: bold;
  164. color: #336699;
  165. vertical-align: top;
  166. }
  167. /* Find result descriptions */
  168. DIV.FindResult
  169. {
  170. background-color: #FFFFFF;
  171. width: 97%;
  172. }
  173. /* results label above results */
  174. TD.FindText
  175. {
  176. font-size: 8pt;
  177. font-weight: bold;
  178. color: #336699;
  179. }
  180. /* Previous and Next Links */
  181. .FindResultsLink
  182. {
  183. font-size: 8pt;
  184. color: #0000FF;
  185. text-decoration: none;
  186. }
  187. .FindResultsLinkOver
  188. {
  189. font-size: 8pt;
  190. color: #0000FF;
  191. text-decoration: underline;
  192. cursor: pointer;
  193. cursor: hand;
  194. }
  195. .FindResultsLinkDisabled
  196. {
  197. font-size: 8pt;
  198. color: #999999;
  199. text-decoration: none;
  200. }
  201. /* Find Results */
  202. A.FindResultCategory
  203. {
  204. font-size: 9pt;
  205. text-decoration: none;
  206. vertical-align: top;
  207. color: #000000;
  208. }
  209. /* Error Messages */
  210. TD.FindError
  211. {
  212. font-size: 10pt;
  213. font-weight: bold;
  214. color: black;
  215. }
  216. /* find pane */
  217. .FindPaneContent
  218. {
  219. color: #336699;
  220. width: 100%;
  221. height: 167px;
  222. }
  223. /* find dialog left pane */
  224. .FindPaneLeft
  225. {
  226. width: 50%;
  227. border-right: 1px solid #336699;
  228. }
  229. /* find dialog left pane table */
  230. .FindPaneLeftTable
  231. {
  232. top: 10%;
  233. left: 2%;
  234. }
  235. /* find restriction selection box */
  236. .FindRestriction
  237. {
  238. width: 120px;
  239. }
  240. /* find pattern selection box */
  241. .FindPattern
  242. {
  243. width: 150px;
  244. }
  245. /* find target selection box */
  246. .FindTarget
  247. {
  248. width: 120px;
  249. }
  250. /* find dialog right pane */
  251. .FindPaneRight
  252. {
  253. visibility: hidden;
  254. }
  255. /* find dialog bottom pane */
  256. .FindPaneBottom
  257. {
  258. border-top: 1px solid #336699;
  259. width: 100%;
  260. }
  261. /* find dim/dimenesion selection box container */
  262. .FindControl
  263. {
  264. display: none;
  265. position: absolute;
  266. }
  267. /* find dim/dimenesion selection box */
  268. .FindDimAxis
  269. {
  270. width: 150px;
  271. }
  272. /*********************************************/
  273. /* Custom Subsets Dialog */
  274. /*********************************************/
  275. .CustomSubsetsPaneContent
  276. {
  277. width: 100%;
  278. border-collapse: collapse;
  279. height: 287px;
  280. vertical-align: top;
  281. }
  282. .CustomSubsetsFinalPaneContent
  283. {
  284. width: 100%;
  285. border-collapse: collapse;
  286. height: 155px;
  287. vertical-align: top;
  288. }
  289. .CustomSubsetsTabsTable
  290. {
  291. width: 100%;
  292. margin-top: 2px;
  293. border-collapse: collapse;
  294. }
  295. .CustomSubsetsTabBegin
  296. {
  297. border-bottom: 1px solid #000099;
  298. border-right: 1px solid #000099;
  299. }
  300. .CustomSubsetsTabSpace
  301. {
  302. width: 1px;
  303. }
  304. .CustomSubsetsActiveTab
  305. {
  306. font-size: 10pt;
  307. font-weight: bold;
  308. color: black;
  309. border-left: 2px solid #000099;
  310. border-top: 2px solid #000099;
  311. border-right: 2px solid #000099;
  312. padding-left: 5px;
  313. padding-right: 5px;
  314. }
  315. .CustomSubsetsInactiveTab
  316. {
  317. font-size: 10pt;
  318. color: #000099;
  319. text-decoration: underline;
  320. border: 1px solid #000099;
  321. padding-left: 5px;
  322. padding-right: 5px;
  323. cursor: pointer;
  324. cursor: hand;
  325. }
  326. .CustomSubsetsNoTab
  327. {
  328. width: 100%;
  329. border-bottom: 1px solid #000099;
  330. padding-left: 5px;
  331. padding-right: 5px;
  332. }
  333. .CustomSubsetsPaneLeft
  334. {
  335. width: 50%;
  336. border-right: 1px solid #336699;
  337. padding-left: 7px;
  338. padding-right: 7px;
  339. vertical-align: top;
  340. }
  341. .CustomSubsetsPanePartPicklist
  342. {
  343. width: 0%;
  344. padding-left: 7px;
  345. padding-right: 7px;
  346. vertical-align: top;
  347. }
  348. .CustomSubsetsPaneLeftTable
  349. {
  350. width: 100%;
  351. }
  352. .CustomSubsetsPaneFieldLabel
  353. {
  354. font-size: 8pt;
  355. font-weight: bold;
  356. color: #336699;
  357. white-space: nowrap;
  358. }
  359. .CustomSubsetsPaneCountResults
  360. {
  361. font-size: 8pt;
  362. font-weight: bold;
  363. color: #336699;
  364. white-space: nowrap;
  365. width: 100%;
  366. text-align: left;
  367. }
  368. .CustomSubsetsPaneSectionLabel
  369. {
  370. font-size: 8pt;
  371. font-weight: bold;
  372. color: #336699;
  373. padding-bottom: 7px;
  374. }
  375. .CustomSubsetsPaneFieldCellHalfWidth
  376. {
  377. width:50%;
  378. }
  379. .CustomSubsetsPaneFieldCellFullWidth
  380. {
  381. width:100%;
  382. }
  383. .CustomSubsetsPaneValueField
  384. {
  385. width: 150px;
  386. }
  387. .CustomSubsetsPaneWideValueField
  388. {
  389. width: 300px;
  390. }
  391. .CustomSubsetsInitialPaneLevelsDiv
  392. {
  393. background: white;
  394. overflow: auto;
  395. height: 115px;
  396. width: 350px;
  397. border: 2px inset;
  398. }
  399. .CustomSubsetsPaneLink
  400. {
  401. font-size: 8pt;
  402. color:#0000FF;
  403. text-decoration: none;
  404. cursor: pointer;
  405. cursor: hand;
  406. padding-bottom: 10px;
  407. }
  408. .CustomSubsetsPaneLinkRollover
  409. {
  410. font-size: 8pt;
  411. color:#0000FF;
  412. text-decoration: underline;
  413. cursor: pointer;
  414. cursor: hand;
  415. padding-bottom: 10px;
  416. }
  417. .CustomSubsetsPaneLinkDisabled
  418. {
  419. font-size: 8pt;
  420. color: #999999;
  421. text-decoration: none;
  422. cursor: pointer;
  423. cursor: hand;
  424. padding-bottom: 10px;
  425. }
  426. .CustomSubsetsPaneLinkSmall
  427. {
  428. font-size: 8pt;
  429. color: #0000FF;
  430. text-decoration: none;
  431. cursor: pointer;
  432. cursor: hand;
  433. white-space: nowrap;
  434. }
  435. .CustomSubsetsPaneLinkSmallRollover
  436. {
  437. font-size: 8pt;
  438. color: #0000FF;
  439. text-decoration: underline;
  440. cursor: pointer;
  441. cursor: hand;
  442. white-space: nowrap;
  443. }
  444. .CustomSubsetsAlignTopCell
  445. {
  446. vertical-align: top;
  447. }
  448. .CustomSubsetsInitialPaneLevelItem
  449. {
  450. display: block;
  451. font-size: 9pt;
  452. }
  453. .CustomSubsetsPaneNameDefItem
  454. {
  455. display: block;
  456. font-size: 9pt;
  457. cursor: default;
  458. padding-left: 5px;
  459. }
  460. .CustomSubsetsPaneNameDefItemSel
  461. {
  462. display: block;
  463. font-size: 9pt;
  464. color: white;
  465. background-color: #000066;
  466. cursor: default;
  467. padding-left: 5px;
  468. }
  469. .CustomSubsetsPaneRight
  470. {
  471. width: 50%;
  472. padding-left: 7px;
  473. padding-right: 7px;
  474. vertical-align: top;
  475. }
  476. .CustomSubsetsPaneLeftNoSep
  477. {
  478. width: 50%;
  479. padding-left: 7px;
  480. padding-right: 7px;
  481. vertical-align: top;
  482. }
  483. .CustomSubsetsPaneMost
  484. {
  485. width: 85%;
  486. padding-left: 7px;
  487. padding-right: 7px;
  488. vertical-align: top;
  489. }
  490. .CustomSubsetsPaneABit
  491. {
  492. width: 15%;
  493. padding-top: 28px;
  494. padding-left: 7px;
  495. padding-right: 7px;
  496. vertical-align: top;
  497. }
  498. .CustomSubsetsPaneResultsButton
  499. {
  500. width: 80px;
  501. }
  502. .CustomsubsetsPaneMiddle
  503. {
  504. width: 10%;
  505. vertical-align: middle;
  506. text-align: center;
  507. }
  508. .CustomSubsetsPaneRightTable
  509. {
  510. width: 100%;
  511. }
  512. .CustomSubsetsPaneRightTableHidden
  513. {
  514. display: none;
  515. }
  516. .CustomSubsetsPicklistResultsDiv
  517. {
  518. background: white;
  519. overflow: auto;
  520. height: 180px;
  521. width: 350px;
  522. border: 2px inset;
  523. }
  524. .CustomSubsetsInitialPaneAction
  525. {
  526. font-size: 8pt;
  527. font-weight: bold;
  528. color: #336699;
  529. }
  530. .CustomSubsetsPaneMultiSel
  531. {
  532. width:100%;
  533. height: 200px;
  534. }
  535. .CustomSubsetsPanePicklistMultiSel
  536. {
  537. width:100%;
  538. height: 120px;
  539. }
  540. .CustomSubsetMultiSelCell
  541. {
  542. width: 300px;
  543. }
  544. .CustomSubsetsPaneSelectClearCell
  545. {
  546. text-align: left;
  547. }
  548. .CustomsubsetsPaneBottom
  549. {
  550. width: 100%;
  551. border-top: 1px solid #336699;
  552. }
  553. .CustomSubsetsPaneMDValueField
  554. {
  555. width: 150px;
  556. }
  557. .CustomSubsetsPaneDimbarTable
  558. {
  559. width: 100%;
  560. font-size: 70%;
  561. }
  562. .CustomSubsetsPaneSelectItem
  563. {
  564. color: #999999;
  565. }
  566. .CustomSubsetsPaneTreeDiv
  567. {
  568. background: white;
  569. overflow: auto;
  570. height: 180px;
  571. width: 350px;
  572. border: 2px inset;
  573. }
  574. .CustomSubsetsPaneMeasureTreeDiv
  575. {
  576. background: white;
  577. overflow: auto;
  578. height: 100px;
  579. width: 350px;
  580. border: 2px inset;
  581. }
  582. .CustomSubsetsNamePaneTreeDiv
  583. {
  584. background: white;
  585. overflow: auto;
  586. height: 80px;
  587. width: 350px;
  588. border: 2px inset;
  589. }
  590. .CustomSubsetsMeasurePaneTreeDiv
  591. {
  592. background: white;
  593. overflow: auto;
  594. height: 105px;
  595. width: 350px;
  596. border: 2px inset;
  597. }
  598. .customSubsetsScopeTypeSelect
  599. {
  600. width: 350px;
  601. }
  602. .CustomSubsetsLevelSelectTableHidden
  603. {
  604. display: none;
  605. }
  606. .CustomSubsetsPickListResultsItem
  607. {
  608. display: block;
  609. white-space: nowrap;
  610. font-size: 70%;
  611. }
  612. .CustomSubsetsPickListResultsItemSelected
  613. {
  614. display: block;
  615. white-space: nowrap;
  616. font-size: 70%;
  617. background-color: #C1D6EA;
  618. }
  619. .CustomSubsetsPickListResultsItemText
  620. {
  621. margin: 0px 0px 0px 3px;
  622. padding: 0px 3px 0px 3px;
  623. cursor: default;
  624. text-decoration: none;
  625. color: #000000;
  626. }
  627. .customSubsetsPickListResultsItemTextSelected
  628. {
  629. margin: 0px 0px 0px 3px;
  630. padding: 0px 3px 0px 3px;
  631. cursor: default;
  632. text-decoration: none;
  633. color: #000000;
  634. }
  635. .customSubsetsPickListResultsItemTextStrikeout
  636. {
  637. margin: 0px 0px 0px 3px;
  638. padding: 0px 3px 0px 3px;
  639. cursor: default;
  640. color: gray;
  641. text-decoration: line-through;
  642. }
  643. .CustomSubsetsPickListResultsIcon
  644. {
  645. border: 0px;
  646. width: 16px;
  647. height: 16px;
  648. vertical-align: middle;
  649. }
  650. .CustomSubsetsPickListResultsIcon
  651. {
  652. border: 0px;
  653. margin-left: 2px;
  654. vertical-align: middle;
  655. }
  656. .customSubsetPicklistCellRight
  657. {
  658. text-align: right;
  659. }
  660. .customSubsetsHoverDiv
  661. {
  662. padding: 2px;
  663. font-size: 10pt;
  664. position: absolute;
  665. z-index: 10;
  666. background-color: white;
  667. border: 1px solid black;
  668. color: black;
  669. cursor: default;
  670. }
  671. .customSubsetsHoverDivMouseOver
  672. {
  673. padding: 2px;
  674. font-size: 10pt;
  675. position: absolute;
  676. z-index: 10;
  677. background-color: #000099;
  678. border: 1px solid black;
  679. color: white;
  680. cursor: default;
  681. }
  682. .customSubsetsMessageDiv
  683. {
  684. display: inline;
  685. font-size: 10pt;
  686. font-weight: bold;
  687. padding-left: 5px;
  688. }
  689. .customSubsetsMessageIcon
  690. {
  691. width: 25px;
  692. height: 25px;
  693. margin-left: 5px;
  694. margin-right: 5px;
  695. vertical-align: middle;
  696. }
  697. .CustomSubsetsPaneMesuresRangeInput
  698. {
  699. width: 100px;
  700. }
  701. .customSubsetsArrowButton
  702. {
  703. border: 1px solid #99AACC;
  704. background-color: #F8F8F8;
  705. cursor: hand;
  706. cursor: pointer;
  707. }
  708. .customSubsetsArrowButtonPressed
  709. {
  710. border : 1px solid #336699;
  711. background-color: #BEC8DC;
  712. cursor: hand;
  713. cursor: pointer;
  714. }
  715. .customSubsetsArrowButtonRollover
  716. {
  717. border : 1px solid #336699;
  718. background-color: #E3E9F3;
  719. cursor: hand;
  720. cursor: pointer;
  721. }
  722. .customSubsetsInitPaneTypeHeader
  723. {
  724. padding-top: 10px;
  725. font-size: 8pt;
  726. font-weight: bold;
  727. color: #336699;
  728. }
  729. .CustomSubsetsResultCountFrame
  730. {
  731. border: 0px;
  732. height: 0px;
  733. width: 0px;
  734. position: absolute;
  735. visibility: hidden;
  736. display: block;
  737. }
  738. .scopeTreeOptionsDropDown
  739. {
  740. position: absolute;
  741. width: 350px;
  742. overflow: visible;
  743. background-color: white;
  744. border: 1px solid black;
  745. }
  746. .scopeTreeOptionsOption
  747. {
  748. white-space: nowrap;
  749. cursor: default;
  750. font-size: 10pt;
  751. padding-left: 3px;
  752. width: 350px;
  753. overflow: visible;
  754. }
  755. .scopeTreeOptionsOptionMouseOver
  756. {
  757. white-space: nowrap;
  758. background-color: #336699;
  759. color: white;
  760. cursor: default;
  761. font-size: 10pt;
  762. padding-left: 2px;
  763. width: 350px;
  764. overflow: visible;
  765. }
  766. /*********************************************/
  767. /* Hide/Show Dialog */
  768. /*********************************************/
  769. /* links to select items in the lists */
  770. .selectlink
  771. {
  772. color: #0000FF;
  773. font-size: 8pt;
  774. text-decoration: none;
  775. cursor: pointer;
  776. cursor: hand;
  777. }
  778. .selectlinkRollover
  779. {
  780. color: #0000FF;
  781. font-size: 8pt;
  782. text-decoration: underline;
  783. cursor: pointer;
  784. cursor: hand;
  785. }
  786. /* hide/show dialog labels */
  787. .HideShowLabel
  788. {
  789. font-size: 8pt;
  790. font-weight: bold;
  791. color: #336699;
  792. }
  793. /* hide/show selection boxes */
  794. .HideShowMultiSel
  795. {
  796. width: 300px;
  797. }
  798. /* hide/show dialog bottom pane */
  799. .HideShowPaneBottom
  800. {
  801. width: 100%;
  802. }
  803. .HideShowBottom
  804. {
  805. border-top: 1px solid #336699;
  806. padding: 0px;
  807. margin: 0px;
  808. }
  809. /*********************************************/
  810. /* Calculation Dialog */
  811. /*********************************************/
  812. /* Left border of right hand pane */
  813. .resultsCell
  814. {
  815. }
  816. /* Disabled control text */
  817. TD.CalculationTextDisabled
  818. {
  819. height:15px;
  820. font-size: 8pt;
  821. font-weight: bold;
  822. color: #999999;
  823. }
  824. /* Text */
  825. TD.CalculationText
  826. {
  827. height:15px;
  828. font-size: 8pt;
  829. font-weight: bold;
  830. color: #336699;
  831. padding-top: 3px;
  832. white-space: nowrap;
  833. }
  834. .CalculationPaneSelect
  835. {
  836. width: 170px;
  837. }
  838. .refCalculationText
  839. {
  840. font-size: 10pt;
  841. color: black;
  842. padding-left: 10px;
  843. }
  844. .calculationDeleteContent
  845. {
  846. height: 164px;
  847. }
  848. .calculationAddorEditContent
  849. {
  850. height: 164px;
  851. }
  852. .calculationRenameContent
  853. {
  854. height: 118px;
  855. }
  856. /* calculation pane */
  857. .CalculationContent
  858. {
  859. background-color: #F2F1F1;
  860. width: 100%;
  861. }
  862. .calcDialogContent
  863. {
  864. padding: 0px;
  865. margin: 0px;
  866. }
  867. /* calculation pane */
  868. .OKCancelRowContent
  869. {
  870. height: 164px;
  871. }
  872. /* calculation left pane */
  873. TD.CalculationPaneLeft
  874. {
  875. text-align: left;
  876. vertical-align: top;
  877. color: black;
  878. width: 50%;
  879. border-right: 1px solid #336699;
  880. }
  881. /* calculation bottom pane */
  882. .CalculationPaneBottom
  883. {
  884. width: 100%;
  885. }
  886. .CalculationBottom
  887. {
  888. border-top: 1px solid #336699;
  889. padding: 0px;
  890. margin: 0px;
  891. }
  892. /* Calculation choose type pane */
  893. .CalculationAddOrEdit
  894. {
  895. }
  896. /* Calculation left pane bottom */
  897. .CalculationAddOrEditBottom
  898. {
  899. width: 100%;
  900. }
  901. /* Calculation Name entry field */
  902. .CalculationRename
  903. {
  904. }
  905. /* Calculation left pane bottom */
  906. .CalculationRenameBottom
  907. {
  908. width: 100%;
  909. border-top: 1px solid #336699;
  910. }
  911. /* Calculation add style right hand pane */
  912. .CalculationAddMulti
  913. {
  914. }
  915. /* Calculation roll up multiselect */
  916. .CalculationAddRollupMultiSelect
  917. {
  918. width: 300px;
  919. }
  920. /* Calculation subtract style right hand pane */
  921. .CalculationSubDivPctExpo
  922. {
  923. }
  924. /* Calculation percent of base style right hand pane */
  925. .CalculationPctBasePctCumAccum
  926. {
  927. }
  928. /* Calculation forcast style right hand pane */
  929. .CalculationForecast
  930. {
  931. }
  932. /* Calculation roll up style right hand pane */
  933. .CalculationRollup
  934. {
  935. }
  936. .ForecastMethodExplanation
  937. {
  938. font-size: 9pt;
  939. color: #336699;
  940. }
  941. /*********************************************/
  942. /* PDF Options Dialog */
  943. /*********************************************/
  944. /* Text */
  945. .pdfOptionsLabel
  946. {
  947. font-size: 8pt;
  948. font-weight: bold;
  949. color: #336699;
  950. }
  951. /* Text labels for Radio Buttons */
  952. .pdfOptionsValue
  953. {
  954. font-size: 8pt;
  955. font-weight: bold;
  956. color: #336699;
  957. }
  958. /* PDF options dialog */
  959. .PdfOptionsContent
  960. {
  961. width: 100%;
  962. }
  963. /* PDF options page format selection box */
  964. .PdfOptionsPageFormats
  965. {
  966. width: 160px;
  967. }
  968. /* PDF options pane Bottom */
  969. .PdfOptionsPaneBottom
  970. {
  971. border-top: 1px solid #336699;
  972. width: 100%;
  973. }
  974. /*********************************************/
  975. /* Display Options Dialog */
  976. /*********************************************/
  977. /* Text */
  978. .displayOptionsLabel
  979. {
  980. font-size: 8pt;
  981. font-weight: bold;
  982. color: #336699;
  983. }
  984. /* values in drop down boxes */
  985. .displayOptionsValue
  986. {
  987. font-size: 9pt;
  988. font-weight: normal;
  989. }
  990. /* right pane */
  991. .displayOptionsRight
  992. {
  993. border-left: 1px solid #336699;
  994. }
  995. /* display options bottom pane */
  996. .DisplayOptBottom
  997. {
  998. width: 100%;
  999. border-top: 1px solid #336699;
  1000. }
  1001. /* display options invalid min/max error message */
  1002. .DisplayOptionsError
  1003. {
  1004. font-size: 9pt;
  1005. font-weight: bold;
  1006. visibility: hidden;
  1007. position: absolute;
  1008. }
  1009. /*********************************************/
  1010. /* Edit Title Dialog */
  1011. /*********************************************/
  1012. /* Label Text */
  1013. .editTitleOptionsLabel
  1014. {
  1015. font-size: 8pt;
  1016. font-weight: bold;
  1017. color: #336699;
  1018. }
  1019. /* Text */
  1020. .editTitleOptionsText
  1021. {
  1022. font-size: 8pt;
  1023. font-weight: bold;
  1024. color: #336699;
  1025. }
  1026. /* Links to the right of the custom exceptions list */
  1027. .editTitleLinks
  1028. {
  1029. font-size: 8pt;
  1030. color: #0000FF;
  1031. font-weight: normal;
  1032. cursor: pointer;
  1033. cursor: hand;
  1034. }
  1035. .editTitleLinksRollover
  1036. {
  1037. font-size: 8pt;
  1038. color: #0000FF;
  1039. font-weight: normal;
  1040. text-decoration: underline;
  1041. cursor: pointer;
  1042. cursor: hand;
  1043. }
  1044. .editTitleContentTable
  1045. {
  1046. padding-left: 8px;
  1047. }
  1048. .editTitleContentTableBottom
  1049. {
  1050. padding-left: 8px;
  1051. border-top: 1px solid #336699;
  1052. }
  1053. /*********************************************/
  1054. /* Rank Dialog */
  1055. /*********************************************/
  1056. .rankTextCell
  1057. {
  1058. font-size: 8pt;
  1059. font-weight: bold;
  1060. color: #336699;
  1061. padding-top: 3px;
  1062. }
  1063. .RankPaneLeft
  1064. {
  1065. text-align: left;
  1066. vertical-align: top;
  1067. color: black;
  1068. width: 50%;
  1069. border-right: 1px solid #336699;
  1070. }
  1071. .RankPaneRight
  1072. {
  1073. width: 50%;
  1074. padding-left: 10px;
  1075. }
  1076. .RankContent
  1077. {
  1078. width: 100%;
  1079. }
  1080. .rankDialogContent
  1081. {
  1082. padding: 0px;
  1083. margin: 0px;
  1084. }
  1085. .rankDialogLeftPaneTable
  1086. {
  1087. width: 100%;
  1088. }
  1089. .RankHalfWidthCell
  1090. {
  1091. width: 50%;
  1092. }
  1093. .RankBottom
  1094. {
  1095. border-top: 1px solid #336699;
  1096. padding: 0px;
  1097. }
  1098. .RankPaneSelect
  1099. {
  1100. width: 150px;
  1101. }
  1102. .RankPaneOrdinalInputField
  1103. {
  1104. width: 100px;
  1105. }
  1106. .RankEdit
  1107. {
  1108. }
  1109. /*********************************************/
  1110. /* Crosstab */
  1111. /*********************************************/
  1112. /* row label */
  1113. .rowlabel
  1114. {
  1115. height: 100%;
  1116. vertical-align: top;
  1117. color: #000000;
  1118. text-align: left;
  1119. }
  1120. /* label cell */
  1121. .rowlabelTable
  1122. {
  1123. cursor: auto;
  1124. font-size: 100%;
  1125. font-weight: bold;
  1126. height: 100%;
  1127. color: #000000;
  1128. background-color: #C1D6EA;
  1129. }
  1130. .financialRowLabelTable
  1131. {
  1132. cursor: auto;
  1133. font-size: 100%;
  1134. font-weight: bold;
  1135. height: 100%;
  1136. color: #000000;
  1137. background-color: #FFFFFF;
  1138. }
  1139. /* Column label cell */
  1140. .colLabelTable
  1141. {
  1142. cursor: auto;
  1143. font-size: 100%;
  1144. font-weight: bold;
  1145. color: #000000;
  1146. height: 100%;
  1147. width: 100%;
  1148. background-color: #C0D6EC;
  1149. }
  1150. .financialColLabelTable
  1151. {
  1152. cursor: auto;
  1153. font-size: 100%;
  1154. font-weight: bold;
  1155. color: #000000;
  1156. height: 100%;
  1157. width: 100%;
  1158. background-color: #FFFFFF;
  1159. }
  1160. /* summary label type 1 */
  1161. .summarylabelone
  1162. {
  1163. cursor: auto;
  1164. font-size: 100%;
  1165. border: none;
  1166. background: #DFDFDF;
  1167. height: 100%;
  1168. font-weight: bold;
  1169. text-decoration:none;
  1170. color: black;
  1171. }
  1172. /* summary label type 2 */
  1173. .summarylabeltwo
  1174. {
  1175. cursor: auto;
  1176. font-size: 100%;
  1177. border: none;
  1178. background-color: #F2F1F1;
  1179. height: 100%;
  1180. font-weight: bold;
  1181. text-decoration:none;
  1182. color: black;
  1183. }
  1184. /* 80/20 label */
  1185. .eightytwentylabel
  1186. {
  1187. font-size: 100%;
  1188. height: 100%;
  1189. font-style: italic;
  1190. font-weight: bold;
  1191. color: black;
  1192. }
  1193. /* calculation label */
  1194. .calculationlabel
  1195. {
  1196. font-size: 100%;
  1197. height: 100%;
  1198. font-style: italic;
  1199. font-weight: bold;
  1200. }
  1201. /* row label cell - inner table row */
  1202. .rowlabelTableRow
  1203. {
  1204. height: 100%;
  1205. width: 100%;
  1206. vertical-align: top;
  1207. color: inherit;
  1208. }
  1209. /* row label cell - inner table cell */
  1210. .rowlabelTableCell
  1211. {
  1212. height: 100%;
  1213. width: 100%;
  1214. text-align: left;
  1215. vertical-align: top;
  1216. color: inherit;
  1217. }
  1218. .labelSpacer {
  1219. }
  1220. /* row nest markers */
  1221. .rowNest
  1222. {
  1223. width: 6px;
  1224. height: 100%;
  1225. cursor: default;
  1226. }
  1227. .rowNestCell
  1228. {
  1229. width: 6px;
  1230. }
  1231. .rowNestIMG
  1232. {
  1233. width: 6px;
  1234. height: 1px;
  1235. border: 0px;
  1236. visibility: hidden;
  1237. cursor: default;
  1238. }
  1239. /* row nesting Zone */
  1240. .rowNestZoneImg
  1241. {
  1242. width: 12px;
  1243. height: 1px;
  1244. border: 0px;
  1245. visibility: hidden;
  1246. }
  1247. .nestSpot
  1248. {
  1249. width: 6px;
  1250. height: 100%;
  1251. }
  1252. /* column label */
  1253. .colLabel
  1254. {
  1255. vertical-align: top;
  1256. text-align: center;
  1257. height: 100%;
  1258. padding: 0px;
  1259. }
  1260. /* column nest markers */
  1261. .colNest
  1262. {
  1263. width: 100%;
  1264. height: 6px;
  1265. overflow: hidden;
  1266. cursor: default;
  1267. }
  1268. .colNestImg
  1269. {
  1270. height: 6px;
  1271. width: 1px;
  1272. cursor: default;
  1273. }
  1274. /* column nesting zone */
  1275. .colNestZoneImg
  1276. {
  1277. height: 6px;
  1278. width: 1px;
  1279. visibility: hidden;
  1280. }
  1281. /* nested column labels */
  1282. .colLabelNested
  1283. {
  1284. vertical-align: top;
  1285. text-align: left;
  1286. height: 100%;
  1287. padding: 0px;
  1288. }
  1289. /* nesting area */
  1290. .nestArea
  1291. {
  1292. width: 100%;
  1293. overflow: hidden;
  1294. }
  1295. .summaryText
  1296. {
  1297. color: black;
  1298. }
  1299. /* summary cell type 1 */
  1300. .summarycellone
  1301. {
  1302. background-color: #DFDFDF !important;
  1303. font-weight: bold;
  1304. color: black;
  1305. }
  1306. /* summary cell type 2 */
  1307. .summarycelltwo
  1308. {
  1309. background-color: #F2F1F1 !important;
  1310. font-weight: bold;
  1311. color: black;
  1312. }
  1313. .suppressOptionsLabel
  1314. {
  1315. font-size: 8pt;
  1316. font-weight: bold;
  1317. color: #336699;
  1318. }
  1319. .suppressOptBottom
  1320. {
  1321. width: 100%;
  1322. border-top: 1px solid #336699;
  1323. }
  1324. /* 80/20 image */
  1325. .eightytwentyimage
  1326. {
  1327. height: 15px;
  1328. width: 15px;
  1329. border: 0px;
  1330. }
  1331. /* 80/20 cell */
  1332. .eightytwentycell
  1333. {
  1334. font-style: italic;
  1335. }
  1336. /* calculation cell */
  1337. .calculationcell
  1338. {
  1339. font-style: italic;
  1340. }
  1341. .rankcell
  1342. {
  1343. font-style: italic;
  1344. text-align: center !important;
  1345. }
  1346. /* low value exception */
  1347. .lowexceptioncell
  1348. {
  1349. font-weight: bold;
  1350. color: red;
  1351. text-align: right;
  1352. padding: 2px;
  1353. white-space: nowrap;
  1354. background-color: white;
  1355. }
  1356. /* high value exception cell */
  1357. .highexceptioncell
  1358. {
  1359. font-weight: bold;
  1360. color: green;
  1361. text-align: right;
  1362. padding: 2px;
  1363. white-space: nowrap;
  1364. background-color: white;
  1365. }
  1366. /* measure cell */
  1367. .measurecell
  1368. {
  1369. font-weight: bold;
  1370. text-align: center;
  1371. vertical-align: middle;
  1372. color:#000000;
  1373. padding: 6px;
  1374. background-color: white;
  1375. }
  1376. /* indented crosstab */
  1377. .financialTable
  1378. {
  1379. font-size: 70%;
  1380. border: none;
  1381. background: white;
  1382. }
  1383. /* level selector */
  1384. .levelSelector
  1385. {
  1386. text-align: center;
  1387. vertical-align: middle;
  1388. background-color: white;
  1389. }
  1390. /* level selector in the indented crosstab */
  1391. .financialLevelSelector
  1392. {
  1393. background: silver;
  1394. text-align: center;
  1395. vertical-align: middle;
  1396. }
  1397. /* level rollover image */
  1398. .levelHoverImage
  1399. {
  1400. visibility: hidden;
  1401. border: 0px;
  1402. padding: 0px;
  1403. }
  1404. /* level rollover */
  1405. .levelover
  1406. {
  1407. background: #99CCFF;
  1408. }
  1409. /* Crosstab row/col header selected */
  1410. .header-selected
  1411. {
  1412. background: #336699 !important;
  1413. color: #FFFFFF !important;
  1414. }
  1415. .header-mouse-over
  1416. {
  1417. background-color: #BEC8DC !important;
  1418. color: #0000CC !important;
  1419. }
  1420. .header-highlighted
  1421. {
  1422. background: #BEC8DC;
  1423. color: white;
  1424. }
  1425. /* crosstab level selected */
  1426. .level-selected
  1427. {
  1428. background: #FFFFCC;
  1429. }
  1430. .chart-legend-cell-selected
  1431. {
  1432. border-left: none;
  1433. padding-left: 5px;
  1434. }
  1435. .chart-legend-last-cell-selected
  1436. {
  1437. border-left: none;
  1438. text-align: right;
  1439. padding-left: 5px;
  1440. }
  1441. /* level selection area when level is selected */
  1442. .level-area-selected
  1443. {
  1444. background: #336699;
  1445. }
  1446. /* levels when category dragged over it */
  1447. .level-drag-over
  1448. {
  1449. background: #000000;
  1450. color: #999999;
  1451. }
  1452. /* drop area to nest levels when dragging over */
  1453. .nest-area
  1454. {
  1455. background: #000000;
  1456. }
  1457. /* measures cell when category dragged over it */
  1458. .measure-drag-over
  1459. {
  1460. background: #000000;
  1461. color: #999999;
  1462. }
  1463. /* selected cell */
  1464. .cell-selected
  1465. {
  1466. background: #FFFFCC !important;
  1467. }
  1468. /* cell */
  1469. .cell
  1470. {
  1471. text-align: right;
  1472. padding: 2px;
  1473. white-space: nowrap;
  1474. background-color: white;
  1475. }
  1476. /*cells sharing row or column of selected cells*/
  1477. .cell-intersection-selected
  1478. {
  1479. background-color : #FFCC00 !important;
  1480. }
  1481. /* links */
  1482. .link
  1483. {
  1484. color: inherit;
  1485. font-weight: normal;
  1486. text-decoration: underline;
  1487. cursor: pointer;
  1488. cursor: hand;
  1489. }
  1490. .getDataLaterLabel
  1491. {
  1492. color: #000099;
  1493. font-weight: bold;
  1494. text-decoration: underline;
  1495. cursor: pointer;
  1496. cursor: hand;
  1497. }
  1498. /* clickable areas */
  1499. .clickArea
  1500. {
  1501. cursor: pointer;
  1502. cursor: hand;
  1503. }
  1504. /* sorting icon */
  1505. .sortIcon
  1506. {
  1507. border: 0px;
  1508. width: 15px;
  1509. height: 15px;
  1510. cursor: pointer;
  1511. cursor: hand;
  1512. }
  1513. /* sort icon (hidden) */
  1514. .hiddenSortIcon
  1515. {
  1516. border: 0px;
  1517. width: 15px;
  1518. height: 15px;
  1519. visibility: hidden;
  1520. }
  1521. /* crosstab sort icon area */
  1522. .sortArea
  1523. {
  1524. text-align: center;
  1525. vertical-align: top;
  1526. }
  1527. /* labels on columns */
  1528. .columnLabelArea
  1529. {
  1530. padding-left: 4px;
  1531. padding-right: 4px;
  1532. height: 100%;
  1533. }
  1534. /* labels on rows */
  1535. .rowLabelArea
  1536. {
  1537. padding-top: 2px;
  1538. padding-bottom: 2px;
  1539. padding-left: 2px;
  1540. }
  1541. /* Crosstab outer table */
  1542. .XtabDisplay
  1543. {
  1544. font-size: 70%;
  1545. margin: 10px;
  1546. margin-left: 3px;
  1547. background-color: #A2C4E0;
  1548. }
  1549. /* crosstab status line */
  1550. .StatusLine
  1551. {
  1552. margin: 10px;
  1553. border: none;
  1554. font-size: 70%;
  1555. white-space: nowrap;
  1556. }
  1557. /*********************************************/
  1558. /* Charts */
  1559. /*********************************************/
  1560. /* Nested chart row nesting area */
  1561. .chartrowNest
  1562. {
  1563. width: 8px;
  1564. height: 100%;
  1565. overflow: hidden;
  1566. text-align: right;
  1567. }
  1568. /* chart legend */
  1569. .legend
  1570. {
  1571. font-size: 100%;
  1572. border-collapse: collapse;
  1573. }
  1574. /* legend summary cell */
  1575. .legendSummary
  1576. {
  1577. font-weight: bold;
  1578. color: #000000;
  1579. }
  1580. /* legend summary table cells */
  1581. .legendSummary td
  1582. {
  1583. }
  1584. .legendCell
  1585. {
  1586. color: #000099;
  1587. border-left: none;
  1588. padding-left: 5px;
  1589. }
  1590. .legendimage
  1591. {
  1592. padding: 2px;
  1593. }
  1594. /* chart containing table */
  1595. .simplechart
  1596. {
  1597. border: none;
  1598. margin-left: 10px;
  1599. font-size: 70%;
  1600. }
  1601. /* data description cell above charts */
  1602. .simplechartcell
  1603. {
  1604. border: 1px solid #A2C4E0;
  1605. background-color: #C1D6EA;
  1606. }
  1607. /* column labels for nested charts */
  1608. .chartColumnLabel
  1609. {
  1610. vertical-align: bottom;
  1611. text-align: center;
  1612. height: 100%;
  1613. }
  1614. /* summary labels on nested charts */
  1615. .chartSummaryLabel
  1616. {
  1617. font-weight: bold;
  1618. color: black;
  1619. vertical-align: top;
  1620. }
  1621. /* summary label below single charts */
  1622. .chartSummaryLabelTextDiv
  1623. {
  1624. padding: 2px;
  1625. width: 100%;
  1626. font-size: 70%;
  1627. }
  1628. /* Legends on nested Charts */
  1629. .nestedlegendContainer
  1630. {
  1631. font-size: 100%;
  1632. background-color: #FFFFFF;
  1633. vertical-align: top;
  1634. }
  1635. /* Legends on nested Charts */
  1636. .nestedlegend
  1637. {
  1638. font-size: 100%;
  1639. }
  1640. /* Pie chart legend labels */
  1641. .legendLabel
  1642. {
  1643. vertical-align: top;
  1644. text-align: center;
  1645. }
  1646. /* 80/20 suppressed legend labels */
  1647. .eightytwentyLegendLabel
  1648. {
  1649. color: black;
  1650. vertical-align: top;
  1651. text-align: center;
  1652. font-style: italic;
  1653. font-weight: bold;
  1654. }
  1655. /*Chart legend values */
  1656. .legendValue
  1657. {
  1658. text-align: right;
  1659. }
  1660. /* row labels for nested charts */
  1661. .chartrowlabel
  1662. {
  1663. width: 100%;
  1664. vertical-align: top;
  1665. text-align: left;
  1666. }
  1667. /* row labels for the outer level of nested charts */
  1668. .nestedchartrowlabel
  1669. {
  1670. background-color: #C1D6EA;
  1671. height: 100%;
  1672. text-align: left;
  1673. }
  1674. /* chart */
  1675. IMG.chartImage
  1676. {
  1677. cursor: pointer;
  1678. cursor: hand;
  1679. border: 0px;
  1680. background-color: white;
  1681. }
  1682. .chartImageCell
  1683. {
  1684. background-color: white;
  1685. }
  1686. .chartzoomIcon
  1687. {
  1688. vertical-align: top;
  1689. cursor: pointer;
  1690. cursor: hand;
  1691. }
  1692. /* nested charts outer table */
  1693. .ChartDisplay
  1694. {
  1695. font-size: 70%;
  1696. margin: 10px;
  1697. margin-left: 3px;
  1698. border: none;
  1699. background-color: silver;
  1700. }
  1701. /*********************************************/
  1702. /* Split view */
  1703. /*********************************************/
  1704. .comboBoxesTable
  1705. {
  1706. border: 0px;
  1707. }
  1708. .comboBoxesTableTextCell
  1709. {
  1710. font-size: 70%;
  1711. }
  1712. .comboBoxesTablecbCell
  1713. {
  1714. padding-right: 20px;
  1715. width: 150px;
  1716. }
  1717. /* area containing combo box */
  1718. .ChartDropdownArea
  1719. {
  1720. text-align: left;
  1721. height: 0;
  1722. }
  1723. /*********************************************/
  1724. /* Explain Dialog */
  1725. /*********************************************/
  1726. /* Data for Explain */
  1727. TR.ExplainData
  1728. {
  1729. font-size: 8pt;
  1730. font-weight: normal;
  1731. color: #336699;
  1732. }
  1733. /* Explain headers */
  1734. TD.ExplainText
  1735. {
  1736. font-size: 8pt;
  1737. font-weight: bold;
  1738. color: #336699;
  1739. }
  1740. /* Explain selected category */
  1741. TD.ExplainSelection
  1742. {
  1743. font-size: 8pt;
  1744. font-weight: bold;
  1745. color: #336699;
  1746. background-color:#FFFFCC;
  1747. }
  1748. /* Explain selected cell */
  1749. TD.ExplainCellSelection
  1750. {
  1751. font-size: 8pt;
  1752. font-weight: bold;
  1753. color: #336699;
  1754. background-color:#FFCC00;
  1755. }
  1756. /* Explain text descriptions */
  1757. TD.ExplainDescription
  1758. {
  1759. font-size: 8pt;
  1760. font-weight: bold;
  1761. color: #336699;
  1762. }
  1763. /* Explain custom exception descriptions */
  1764. TD.ExplainCustomExceptionData
  1765. {
  1766. background-color:#FFFFFF;
  1767. }
  1768. .ExplainAdditionalInfo
  1769. {
  1770. padding-top: 5px;
  1771. padding-left:15px;
  1772. font-size: 9pt;
  1773. }
  1774. .ExplainBottom
  1775. {
  1776. width: 100%;
  1777. border-top: 1px solid #336699;
  1778. }
  1779. .ExplainItemsArea
  1780. {
  1781. height: 168px;
  1782. overflow: auto;
  1783. }
  1784. .BookmarkItemsArea
  1785. {
  1786. height: 168px;
  1787. overflow: auto;
  1788. }
  1789. .bookmarklink
  1790. {
  1791. font-size: 8pt;
  1792. font-weight: normal;
  1793. color: #0000FF;
  1794. text-decoration: none;
  1795. }
  1796. .bookmarklinkrollover
  1797. {
  1798. font-size: 8pt;
  1799. font-weight: normal;
  1800. color: #0000FF;
  1801. text-decoration: underline;
  1802. cursor: pointer;
  1803. cursor: hand;
  1804. }
  1805. /*********************************************/
  1806. /* Alert Dialog */
  1807. /*********************************************/
  1808. .AlertContentDiv
  1809. {
  1810. width: 100%;
  1811. }
  1812. .alertContentTable
  1813. {
  1814. height: 164px;
  1815. }
  1816. /* Data for Alert */
  1817. TR.AlertData
  1818. {
  1819. font-size: 8pt;
  1820. font-weight: normal;
  1821. color: #336699;
  1822. }
  1823. /* Alert Text */
  1824. TD.AlertText
  1825. {
  1826. font-size: 8pt;
  1827. font-weight: bold;
  1828. color: #336699;
  1829. }
  1830. /* Header for create agent dialog */
  1831. TD.CreateAgentHeader
  1832. {
  1833. font-size: 8pt;
  1834. font-weight: bold;
  1835. color: #336699;;
  1836. }
  1837. /* Alert selected category */
  1838. TD.AlertSelection
  1839. {
  1840. font-size: 8pt;
  1841. font-weight: bold;
  1842. color: #336699;
  1843. background-color:#FFFFCC;
  1844. }
  1845. /* Alert selected cell */
  1846. TD.AlertCellSelection
  1847. {
  1848. font-size: 8pt;
  1849. font-weight: bold;
  1850. color: #336699;
  1851. background-color:#FFCC00;
  1852. }
  1853. /* Alert text descriptions */
  1854. TD.AlertDescription
  1855. {
  1856. font-size: 8pt;
  1857. font-weight: bold;
  1858. color: #336699;
  1859. }
  1860. TD.AlertError
  1861. {
  1862. font-size: 8pt;
  1863. font-weight: bold;
  1864. color: black;
  1865. }
  1866. .AlertBottom
  1867. {
  1868. width: 100%;
  1869. border-top: 1px solid #336699;
  1870. }
  1871. .alertlink
  1872. {
  1873. font-size: 8pt;
  1874. font-weight: normal;
  1875. color: #0000FF;
  1876. }
  1877. .alertlinkRollover
  1878. {
  1879. font-size: 8pt;
  1880. font-weight: normal;
  1881. color: #0000FF;
  1882. text-decoration: underline;
  1883. cursor: pointer;
  1884. cursor: hand;
  1885. }
  1886. /*********************************************/
  1887. /* Custom Exceptions Dialog */
  1888. /*********************************************/
  1889. /* Text */
  1890. TD.CustomExceptionDescription
  1891. {
  1892. font-size: 8pt;
  1893. font-weight: bold;
  1894. color: #336699;
  1895. }
  1896. /* Labels */
  1897. DIV.CustomExceptionLabel
  1898. {
  1899. font-size: 9pt;
  1900. font-weight: bold;
  1901. background-color: #FFFFFF;
  1902. }
  1903. /* Exception name */
  1904. TD.CustomExceptionName
  1905. {
  1906. font-size: 9pt;
  1907. background-color: #F2F1F1;
  1908. }
  1909. /* Text in boxes detailing exception parameters */
  1910. TD.CustomExceptionDetails
  1911. {
  1912. font-size: 9pt;
  1913. background-color: #FFFFFF;
  1914. }
  1915. /* Text in boxes showing an example of the exception */
  1916. TD.CustomExceptionDetailsNumber
  1917. {
  1918. font-size: 9pt;
  1919. background-color: #FFFFFF;
  1920. }
  1921. /* Links to the right of the custom exceptions list */
  1922. .CustomExceptionLinks
  1923. {
  1924. font-size: 8pt;
  1925. color:#0000FF;
  1926. text-decoration: none;
  1927. cursor: pointer;
  1928. cursor: hand;
  1929. }
  1930. .CustomExceptionLinksRollover
  1931. {
  1932. font-size: 8pt;
  1933. color:#0000FF;
  1934. text-decoration: underline;
  1935. cursor: pointer;
  1936. cursor: hand;
  1937. }
  1938. /* Custom Exception error messages */
  1939. TD.CustomExceptionError
  1940. {
  1941. font-size: 8pt;
  1942. font-weight: bold;
  1943. color: red;
  1944. }
  1945. /* custome exception pane */
  1946. .CustomExContent
  1947. {
  1948. background-color: #F2F1F1;
  1949. width: 100%;
  1950. }
  1951. /* left side of the custom exceptions pane */
  1952. .CustomExPaneLeft
  1953. {
  1954. padding-left: 10px;
  1955. vertical-align: top;
  1956. width: 40%;
  1957. border: 0px;
  1958. }
  1959. /* custom exceptions selection box */
  1960. .CustomExSelect
  1961. {
  1962. width: 100%;
  1963. }
  1964. /* right side of the customs exceptions pane */
  1965. .CustomExPaneRight
  1966. {
  1967. padding-left: 15px;
  1968. vertical-align: top;
  1969. border-left: 1px solid #336699;
  1970. }
  1971. /* used to define that either the create or define custom exception pane is hidden */
  1972. .ExceptionSwapPane
  1973. {
  1974. display: none;
  1975. }
  1976. /* exceptions instruction area */
  1977. TD.CustomExceptionInstructions
  1978. {
  1979. font-size: 8pt;
  1980. padding-top: 10px;
  1981. color: #336699;
  1982. }
  1983. /* custom exceptions bottom pane */
  1984. .CustomExPaneBottom
  1985. {
  1986. border-top: 1px solid #336699;
  1987. width: 100%;
  1988. }
  1989. /* custom exceptions (Maximum/Minimum) popup boxes */
  1990. .CustomExceptionDropText
  1991. {
  1992. position: absolute;
  1993. border: 1px solid #000000;
  1994. visibility: hidden;
  1995. font-size: 9pt;
  1996. font-weight: bold;
  1997. background-color: #FFFFFF;
  1998. }
  1999. /* custom exceptions color select popup box */
  2000. .CustomExceptionDropColor
  2001. {
  2002. position:absolute;
  2003. background-color: #000000;
  2004. border: 1px none #000000;
  2005. visibility:hidden;
  2006. }
  2007. /*********************************************/
  2008. /* menu bar */
  2009. /*********************************************/
  2010. /* floating toolbar */
  2011. .webfx-float-menu-bar
  2012. {
  2013. background: #EFEFEF;
  2014. padding: 2px;
  2015. font-size: 70%;
  2016. width: 100%;
  2017. height: 22px;
  2018. border-width: 1px;
  2019. border-style: solid;
  2020. border-color: #336699;
  2021. position: absolute;
  2022. z-index: 10;
  2023. }
  2024. /*********************************************/
  2025. /* context menu */
  2026. /*********************************************/
  2027. /* context menu (Iframe, not visible) */
  2028. .PP-ContextMenu
  2029. {
  2030. border: 0px;
  2031. height: 0px;
  2032. width: 0px;
  2033. position: absolute;
  2034. visibility: hidden;
  2035. display: block;
  2036. z-index:60000000;
  2037. }
  2038. /* context menu */
  2039. .PP-ContextMenu-Body
  2040. {
  2041. background-color: #FFFFFF;
  2042. margin: 0px;
  2043. padding: 1px;
  2044. border: 1px solid #336699;
  2045. font-size: 8pt;
  2046. }
  2047. .PP-ContextMenu-Body-horizontal
  2048. {
  2049. background-color: #EFEFEF;
  2050. padding: 1px;
  2051. border: 1px solid #336699;
  2052. }
  2053. /* context menu item */
  2054. .PP-ContextMenu-Item
  2055. {
  2056. cursor: default;
  2057. font-size: 8pt;
  2058. padding: 2px 10px 2px 6px;
  2059. border: 1px solid white;
  2060. white-space: nowrap;
  2061. }
  2062. .ContextMenu-ImageItem
  2063. {
  2064. border: 1px solid #EFEFEF;
  2065. }
  2066. .ContextMenu-ImageItemRollover
  2067. {
  2068. border: 1px solid #336699;
  2069. background-color: #E3E9f3;
  2070. }
  2071. /* context menu item (Roll over) */
  2072. .PP-ContextMenu-Over
  2073. {
  2074. cursor: default;
  2075. background-color: #E3E9F3;
  2076. font-size: 8pt;
  2077. padding: 2px 10px 2px 6px;
  2078. color: black;
  2079. border: 1px solid #336699;
  2080. white-space: nowrap;
  2081. }
  2082. /* context menu disabled item */
  2083. .PP-ContextMenu-Disabled-item
  2084. {
  2085. cursor: default;
  2086. font-size: 8pt;
  2087. padding: 2px 10px 2px 6px;
  2088. color: gray;
  2089. border: 1px solid white;
  2090. white-space: nowrap;
  2091. }
  2092. /* context menu disabled item (rollover) */
  2093. .PP-ContextMenu-Disabled-Over
  2094. {
  2095. cursor: default;
  2096. background-color: #E3E9F3;
  2097. padding: 2px 10px 2px 6px;
  2098. color: gray;
  2099. font-size: 8pt;
  2100. border: 1px solid #336699;
  2101. white-space: nowrap;
  2102. }
  2103. /* context menu separator */
  2104. .PP-ContextMenu-Separator
  2105. {
  2106. font-size: 0pt;
  2107. border: 1px inset;
  2108. height: 2px;
  2109. overflow: hidden;
  2110. margin: 3px 1px 3px 1px;
  2111. }
  2112. .PP-ContextMenu-Disabled-Over .PP-ContextMenu-DisabledContainer
  2113. {
  2114. display: block;
  2115. vertical-align: middle;
  2116. }
  2117. .PP-ContextMenu-Disabled .PP-ContextMenu-DisabledContainer
  2118. {
  2119. display: block;
  2120. vertical-align: middle;
  2121. }
  2122. .PP-ContextMenu-Disabled .PP-ContextMenu-DisabledContainer .PP-ContextMenu-DisabledContainer
  2123. {
  2124. }
  2125. .PP-ContextMenu-Disabled-Over .PP-ContextMenu-DisabledContainer .PP-ContextMenu-DisabledContainer
  2126. {
  2127. }
  2128. .ContextMenu-Image
  2129. {
  2130. vertical-align: middle;
  2131. }
  2132. /* alternate drill path */
  2133. .alternatePath
  2134. {
  2135. font-style: italic;
  2136. }
  2137. /*Banner flyouts*/
  2138. .BannerflyOutMenu
  2139. {
  2140. background-color: #FFFFFF;
  2141. margin: 0px;
  2142. padding: 2px;
  2143. border: 1px solid #336699;
  2144. font-size: 8pt;
  2145. }
  2146. .BannerflyOutMenuSeparator
  2147. {
  2148. border-bottom: #c0c0c0 1px solid;
  2149. width:100%;
  2150. margin-bottom:3px;
  2151. margin-top:1px;
  2152. font-size:0px;
  2153. height:1px;
  2154. }
  2155. .BannermenuItemOver
  2156. {
  2157. text-decoration:underline;
  2158. cursor:pointer;
  2159. color: #0000CC;
  2160. font-size: 8pt;
  2161. background-color: #e3e9f3;
  2162. height: 20px;
  2163. vertical-align: middle;
  2164. }
  2165. .BannermenuItemNormal
  2166. {
  2167. text-decoration:underline;
  2168. cursor:pointer;
  2169. color: #0000CC;
  2170. font-size: 8pt;
  2171. background-color: #ffffff;
  2172. height: 20px;
  2173. vertical-align: middle;
  2174. }
  2175. .BannermenuItemIcon
  2176. {
  2177. margin-right: 8px;
  2178. margin-left: 6px;
  2179. vertical-align: middle;
  2180. }
  2181. .BannermenuItemSpacer
  2182. {
  2183. height: 20px;
  2184. width: 5px;
  2185. vertical-align: middle;
  2186. }
  2187. /**********************************************/
  2188. /* Action Pane */
  2189. /**********************************************/
  2190. /* action Pane */
  2191. .ActionPane
  2192. {
  2193. background-color: #F2F1F1;
  2194. color: #000000;
  2195. overflow: auto;
  2196. height: 100%;
  2197. }
  2198. /* action pane header */
  2199. .ActionPaneHeader
  2200. {
  2201. background-color: #98ABCF;
  2202. border: 1px solid #336699;
  2203. width: 100%;
  2204. padding: 3px;
  2205. }
  2206. .ActionPaneHeaderWithTabs
  2207. {
  2208. background-color: #98ABCF;
  2209. border: 1px solid #336699;
  2210. width: 100%;
  2211. padding: 3px;
  2212. }
  2213. /* action pane header text */
  2214. .ActionPaneHeaderText
  2215. {
  2216. font-size: 8pt;
  2217. font-weight: bold;
  2218. color: white;
  2219. padding-left: 5px;
  2220. }
  2221. /* action pane error */
  2222. .paneError
  2223. {
  2224. }
  2225. /***********************************************/
  2226. /* Window */
  2227. /***********************************************/
  2228. /* window banner */
  2229. .Banner
  2230. {
  2231. background-color: #000099;
  2232. }
  2233. /* window banner content */
  2234. .BannerContent
  2235. {
  2236. color: white;
  2237. width: 100%;
  2238. border: 0px;
  2239. }
  2240. /* banner text */
  2241. .banner-title
  2242. {
  2243. font-size: 8pt;
  2244. font-weight: bold;
  2245. color: #FFFFFF;
  2246. white-space: nowrap;
  2247. }
  2248. /* banner report title */
  2249. .banner-report-title
  2250. {
  2251. font-size: 10pt;
  2252. font-weight: bold;
  2253. color: #FFFFFF;
  2254. text-align: center;
  2255. width : 100%;
  2256. }
  2257. /* Iframe for preloading data */
  2258. .resultFrame
  2259. {
  2260. visibility: hidden;
  2261. height: 0px;
  2262. width: 0px;
  2263. top: 0px;
  2264. left: 0px;
  2265. position: absolute;
  2266. }
  2267. /* title area */
  2268. .titleArea
  2269. {
  2270. background: #FFFFFF;
  2271. color: black;
  2272. width: 100%;
  2273. font-size: 70%;
  2274. margin-left: 3px;
  2275. margin-right: 3px;
  2276. margin-top: 2px;
  2277. overflow:hidden;
  2278. }
  2279. /* button to hide x tree */
  2280. .HideTree
  2281. {
  2282. cursor: pointer;
  2283. cursor: hand;
  2284. visibility: hidden;
  2285. width: 8px;
  2286. }
  2287. #fhidden
  2288. {
  2289. position: absolute;
  2290. }
  2291. /***********************************************/
  2292. /* Drag and Drop Toolbar */
  2293. /***********************************************/
  2294. .dragNDropBar
  2295. {
  2296. height: 29px;
  2297. width: 100%;
  2298. background: #CCCCE3;
  2299. }
  2300. .dragNDropTable
  2301. {
  2302. border: 2px solid white;
  2303. height: 100%;
  2304. width: 100%;
  2305. padding: 0px;
  2306. }
  2307. .dragNDropViewCell
  2308. {
  2309. border: 2px solid #CCCCE3;
  2310. width: 100%;
  2311. height: 25px;
  2312. background: white;
  2313. padding: 1px;
  2314. vertical-align: middle;
  2315. font-size: 8pt;
  2316. color: black;
  2317. white-space: nowrap;
  2318. cursor: default;
  2319. }
  2320. /***********************************************/
  2321. /* Toolbar */
  2322. /***********************************************/
  2323. .toolbar-body
  2324. {
  2325. background-color: #EFEFEF;
  2326. border-top: 1px solid #CCCCCC;
  2327. }
  2328. .toolbarButtonNormal
  2329. {
  2330. border: 1px solid #EFEFEF;
  2331. }
  2332. .toolbarButtonRollOver
  2333. {
  2334. border: 1px solid #336699;
  2335. background-color: #E3E9f3;
  2336. }
  2337. .toolbarButtonPressed
  2338. {
  2339. border : 1px solid #336699;
  2340. background-color: #BEC8DC;
  2341. }
  2342. .toolbarButtonRollOverPressed
  2343. {
  2344. border : 1px solid #336699;
  2345. background-color: #E3E9F3;
  2346. }
  2347. .toolbarButtonDisabled
  2348. {
  2349. border: 1px solid #EFEFEF;
  2350. }
  2351. .xtabdragcursor
  2352. {
  2353. position: absolute;
  2354. border: none;
  2355. z-index: 100;
  2356. visibility: hidden;
  2357. }
  2358. .xtabNestBetweenHeadersDiv
  2359. {
  2360. position: absolute;
  2361. background: #000000;
  2362. z-index: 10;
  2363. visibility: hidden;
  2364. }
  2365. /**********************************************/
  2366. /* PowerPlay Report Viewer Modify Report Page */
  2367. /**********************************************/
  2368. .promptModifyTitle
  2369. {
  2370. height: 28px;
  2371. width: 100%;
  2372. font-size: 13pt;
  2373. color: #FF9933;
  2374. font-weight: bold;
  2375. }
  2376. .promptModifyDescption
  2377. {
  2378. text-align: left;
  2379. width: 100%;
  2380. font-size: 10pt;
  2381. }
  2382. .promptDimBar
  2383. {
  2384. background: #CCCCCC;
  2385. }
  2386. .promptSectionTitle
  2387. {
  2388. text-align: left;
  2389. vertical-align: top;
  2390. background: #CCCCFF;
  2391. font-size: 10pt;
  2392. font-weight: bold;
  2393. }
  2394. .promptSectionText
  2395. {
  2396. text-align: left;
  2397. vertical-align: middle;
  2398. font-size: 8pt;
  2399. font-weight: bold;
  2400. }
  2401. .promptSectionOption
  2402. {
  2403. font-size: 9pt;
  2404. font-weight: normal;
  2405. }
  2406. .promptTopBanner
  2407. {
  2408. background: #000099;
  2409. text-align: left;
  2410. vertical-align: top;
  2411. }
  2412. .promptBottomBanner
  2413. {
  2414. width: 100%;
  2415. background: #000099;
  2416. }
  2417. .promptPageBody
  2418. {
  2419. overflow: auto;
  2420. background: #FFFFFF;
  2421. }
  2422. /***********************************/
  2423. /* Dim Tree Message Pane */
  2424. /***********************************/
  2425. .dimtreeMessageDiv
  2426. {
  2427. position: absolute;
  2428. visibility: hidden;
  2429. z-index: 10;
  2430. }
  2431. .dimtreeMSGHeader
  2432. {
  2433. background-color: #98ABCF;
  2434. border: 1px solid #336699;
  2435. width: 100%;
  2436. padding: 3px;
  2437. }
  2438. .dimtreeMSGHeaderText
  2439. {
  2440. font-size: 8pt;
  2441. font-weight: bold;
  2442. color: white;
  2443. padding-left: 5px;
  2444. }
  2445. .dimtreeMSGBody
  2446. {
  2447. background-color: #F2F1F1;
  2448. }
  2449. .dimTreeMSGtext
  2450. {
  2451. font-size: 8pt;
  2452. font-weight: bold;
  2453. color: #336699;
  2454. height: 60px;
  2455. }
  2456. .dimtreemsgBottom
  2457. {
  2458. width: 100%;
  2459. border-top: 1px solid #336699;
  2460. }
  2461. /***********************************/
  2462. /* Dimbar */
  2463. /***********************************/
  2464. .dimbar-table
  2465. {
  2466. width: 100%;
  2467. padding: 0;
  2468. font-size: 70%;
  2469. border-spacing: 0px;
  2470. border: 2px solid white;
  2471. border-right: 4px solid white;
  2472. }
  2473. .dimbar-button-cell
  2474. {
  2475. vertical-align: middle;
  2476. width: 24px;
  2477. margin: 0px;
  2478. padding: 0px 1px 0px 1px;
  2479. }
  2480. .dimbar-content-cell
  2481. {
  2482. padding: 0px;
  2483. margin: 0px;
  2484. display: auto;
  2485. height: 24px;
  2486. overflow: hidden;
  2487. }
  2488. .dimbar-content-div
  2489. {
  2490. height: 26px;
  2491. overflow: hidden;
  2492. background-color: #DEE7F7;
  2493. }
  2494. .dimbar-content-div-wrap
  2495. {
  2496. overflow: visible;
  2497. background-color: #DEE7F7;
  2498. }
  2499. .dimbar-button-img
  2500. {
  2501. border: 1px solid #99AACC;
  2502. background-color: #FFFFFF;
  2503. cursor: pointer;
  2504. cursor: hand;
  2505. }
  2506. .dimbar-button-img-rollover
  2507. {
  2508. border: 1px solid #336699;
  2509. background-color: #E3E9F3;
  2510. cursor: pointer;
  2511. cursor: hand;
  2512. }
  2513. .dimbar-button-img-disabled
  2514. {
  2515. border: 1px solid #E3E3E3;
  2516. background-color: #FFFFFF;
  2517. }
  2518. .dimbar-dimension-link-hidden
  2519. {
  2520. display: none;
  2521. }
  2522. .dimbar-dimension-link
  2523. {
  2524. width: 0px;
  2525. cursor: pointer;
  2526. cursor: hand;
  2527. text-decoration: none;
  2528. color:#000084;
  2529. }
  2530. .dimbar-dimension-link-filtered
  2531. {
  2532. width: 0px;
  2533. cursor: pointer;
  2534. cursor: hand;
  2535. text-decoration: none;
  2536. color:#000000;
  2537. }
  2538. .dimbar-dimension-span
  2539. {
  2540. color:#000084;
  2541. white-space: nowrap;
  2542. padding-left: 5px;
  2543. padding-right: 5px;
  2544. }
  2545. .dimbar-dimension-span-filtered
  2546. {
  2547. color:#000000;
  2548. white-space: nowrap;
  2549. padding-left: 5px;
  2550. padding-right: 5px;
  2551. font-weight: bold;
  2552. }
  2553. .dimbar-arrow
  2554. {
  2555. border: 0;
  2556. padding: 0px;
  2557. vertical-align: text-bottom;
  2558. height: 14px;
  2559. width: 16px;
  2560. }
  2561. .dimbar-item-sibling-img
  2562. {
  2563. height: 3px;
  2564. width: 100%;
  2565. border: 0px;
  2566. }
  2567. .dimbar-item-sibling-cell
  2568. {
  2569. text-align: center;
  2570. cursor: default;
  2571. height: 5px;
  2572. background-color: #DEE7F7;
  2573. }
  2574. .dimbar-item-sibling-cell-rollover-bottom
  2575. {
  2576. text-align: center;
  2577. background-color: #e1ebf2;
  2578. cursor: default;
  2579. height: 5px;
  2580. background-image: url("../../../ppwb/Icon/dimbarItemDown.gif");
  2581. background-repeat: no-repeat;
  2582. background-position: center;
  2583. }
  2584. .dimbar-item-sibling-cell-rollover-top
  2585. {
  2586. text-align: center;
  2587. background-color: #e1ebf2;
  2588. cursor: default;
  2589. height: 5px;
  2590. background-image: url("../../../ppwb/Icon/dimbarItemUp.gif");
  2591. background-repeat: no-repeat;
  2592. background-position: center;
  2593. }
  2594. .dimbar-item-wrapper
  2595. {
  2596. width: 0px;
  2597. height: 0px;
  2598. padding: 0px;
  2599. margin: 0px;
  2600. border: 0px;
  2601. }
  2602. .dimbar-item-table
  2603. {
  2604. display: inline;
  2605. font-size: 100%;
  2606. }
  2607. .dimbar-item-table-hidden
  2608. {
  2609. display: none;
  2610. }
  2611. .dimbar-item-cell
  2612. {
  2613. background-color: transparent;
  2614. border: 1px solid #DEE7F7;
  2615. }
  2616. .dimbar-item-cell-rollover
  2617. {
  2618. background-color: #e1ebf2;
  2619. border: 1px solid #336699;
  2620. }
  2621. /*********************************/
  2622. /* dimbar flyouts */
  2623. /*********************************/
  2624. .dimbar_flyout
  2625. {
  2626. background: white;
  2627. border: 1px solid #336699;
  2628. position: absolute;
  2629. overflow: auto;
  2630. z-index: 20;
  2631. }
  2632. .dimbar_flyout_insert
  2633. {
  2634. border: 1px solid white;
  2635. padding: 0px;
  2636. }
  2637. .dimbar_flyout_entry
  2638. {
  2639. display: block;
  2640. border: 1px solid white;
  2641. font-size: 8pt;
  2642. text-decoration: none;
  2643. color: black;
  2644. padding: 2px 0px 2px 5px;
  2645. white-space: nowrap;
  2646. cursor: pointer;
  2647. cursor: hand;
  2648. }
  2649. .dimbar_flyout_entry_alternate
  2650. {
  2651. display: block;
  2652. border: 1px solid white;
  2653. font-size: 8pt;
  2654. font-style: italic;
  2655. text-decoration: none;
  2656. color: black;
  2657. padding: 2px 0px 2px 5px;
  2658. white-space: nowrap;
  2659. cursor: pointer;
  2660. cursor: hand;
  2661. }
  2662. .dimbar_flyout_entry_rollover
  2663. {
  2664. display: block;
  2665. background: #E3E9F3;
  2666. border: 1px solid #336699;
  2667. font-size: 8pt;
  2668. text-decoration: none;
  2669. color: black;
  2670. padding: 2px 0px 2px 5px;
  2671. white-space: nowrap;
  2672. cursor: pointer;
  2673. cursor: hand;
  2674. }
  2675. .dimbar_flyout_arrow
  2676. {
  2677. float: right;
  2678. border: 0;
  2679. width: 3px;
  2680. margin-right: 3px;
  2681. border: 0px;
  2682. padding: 0px;
  2683. margin-top: 4px;
  2684. }
  2685. .dimbar-flyout-separator
  2686. {
  2687. height: 1px;
  2688. background: #808080;
  2689. overflow: hidden;
  2690. margin: 2px 0px 2px 0px;
  2691. font-size: 0px;
  2692. }
  2693. /*********************************/
  2694. /* dimension viewer */
  2695. /*********************************/
  2696. .dimTree
  2697. {
  2698. overflow: auto;
  2699. width: 100%;
  2700. height: 100%;
  2701. background-color: white;
  2702. }
  2703. .dimtree-page
  2704. {
  2705. padding-top: 5px;
  2706. padding-left: 5px
  2707. }
  2708. .dimtree_item_div
  2709. {
  2710. display: block;
  2711. color: black;
  2712. white-space: nowrap;
  2713. font-size: 70%;
  2714. }
  2715. .dimtree_item_div_selected
  2716. {
  2717. display: block;
  2718. color: black;
  2719. white-space: nowrap;
  2720. font-size: 70%;
  2721. background-color: #C1D6EA;
  2722. }
  2723. .dimtree_item_div_childselect
  2724. {
  2725. display: block;
  2726. color: black;
  2727. white-space: nowrap;
  2728. font-size: 70%;
  2729. background-color: #DEE7F7
  2730. }
  2731. .dimtree_item_div_notTransparent
  2732. {
  2733. display: block;
  2734. color: black;
  2735. white-space: nowrap;
  2736. font-size: 70%;
  2737. background-color: white;
  2738. }
  2739. .dimtree_content_div
  2740. {
  2741. display: block;
  2742. }
  2743. .dimtree_content_div_childselect
  2744. {
  2745. display: block;
  2746. background-color: #DEE7F7
  2747. }
  2748. .dimtree_content_div_hidden
  2749. {
  2750. display: none;
  2751. }
  2752. .dimtree_content_div_notTransparent
  2753. {
  2754. display: block;
  2755. background-color: #FFFFFF;
  2756. }
  2757. .dimtree_package_item
  2758. {
  2759. border: 0px;
  2760. width: 16px;
  2761. height: 16px;
  2762. vertical-align: text-bottom;
  2763. }
  2764. .dimtree_folder_icon
  2765. {
  2766. border: 0px;
  2767. width: 16px;
  2768. height: 16px;
  2769. vertical-align: middle;
  2770. }
  2771. .dimtree_icon
  2772. {
  2773. border: 0px;
  2774. width: 19px;
  2775. height: 16px;
  2776. vertical-align: middle;
  2777. }
  2778. .dimtree_text
  2779. {
  2780. margin: 0px 0px 0px 3px;
  2781. padding: 0px 2px 0px 2px;
  2782. cursor: default;
  2783. text-decoration: none;
  2784. color: black;
  2785. }
  2786. .dimtree_text_disabled
  2787. {
  2788. margin: 0px 0px 0px 3px;
  2789. padding: 0px 2px 0px 2px;
  2790. cursor: default;
  2791. text-decoration: none;
  2792. color: gray;
  2793. }
  2794. .dimtree_text_selected
  2795. {
  2796. margin: 0px 0px 0px 3px;
  2797. padding: 0px 2px 0px 2px;
  2798. cursor: default;
  2799. text-decoration: none;
  2800. color: #FFFFFF !important;
  2801. background-color: #000000 !important;
  2802. }
  2803. .dimtree_text_rollover
  2804. {
  2805. padding: 0px 2px 0px 2px;
  2806. background-color: #C1D6EA;
  2807. color: #000000;
  2808. }
  2809. .nav
  2810. {
  2811. padding: 1px;
  2812. text-align: center;
  2813. cursor: default;
  2814. }
  2815. .pageControlCell
  2816. {
  2817. background-color: white;
  2818. }
  2819. .pageCell
  2820. {
  2821. background-color: white;
  2822. }
  2823. /*********************************/
  2824. /* Common message */
  2825. /*********************************/
  2826. .commonMessageIframeHidden
  2827. {
  2828. display: none;
  2829. }
  2830. .commonMessageIframeBody
  2831. {
  2832. background-color: transparent;
  2833. }
  2834. .commonMessageIframe
  2835. {
  2836. display: block;
  2837. position: absolute;
  2838. top: 16px;
  2839. left: 0px;
  2840. background-color: transparent;
  2841. z-index:100;
  2842. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  2843. }
  2844. .commonMessageIframeInsert
  2845. {
  2846. display: block;
  2847. position: absolute;
  2848. top: 0px;
  2849. left: 0px;
  2850. z-index:200;
  2851. visibility: hidden;
  2852. }
  2853. .commonMessageContainer
  2854. {
  2855. top: 0px;
  2856. left: 0px;
  2857. display: block;
  2858. position: absolute;
  2859. border: 1px solid #336699;
  2860. background-color: white;
  2861. padding: 10px;
  2862. z-index:200;
  2863. }
  2864. .commonMessageTextCell
  2865. {
  2866. font-size: 10pt;
  2867. font-weight: bold;
  2868. color: #336699;
  2869. }
  2870. .commonMessageImgCell
  2871. {
  2872. vertical-align:top;
  2873. }
  2874. .commonMessageButtonDiv
  2875. {
  2876. padding-top: 10px;
  2877. text-align: left;
  2878. }
  2879. .commonMessageImg
  2880. {
  2881. vertical-align: middle;
  2882. margin-right: 10px;
  2883. }
  2884. .commonMessageButtonSpan
  2885. {
  2886. border: 1px solid #999999;
  2887. font-size: 10pt;
  2888. color: #000000;
  2889. width: 70px;
  2890. text-align: center;
  2891. padding-top: 2px;
  2892. padding-bottom: 2px;
  2893. padding-left: 15px;
  2894. padding-right: 15px;
  2895. cursor: default;
  2896. }
  2897. .commonMessageButtonSpanRollover
  2898. {
  2899. border: 1px solid #999999;
  2900. font-size: 10pt;
  2901. color: #000000;
  2902. width: 70px;
  2903. text-align: center;
  2904. padding-top: 2px;
  2905. padding-bottom: 2px;
  2906. padding-left: 15px;
  2907. padding-right: 15px;
  2908. background-color: #E3E9F3;
  2909. cursor: default;
  2910. }
  2911. .commonMessageBlanket
  2912. {
  2913. position: absolute;
  2914. top: 24px;
  2915. left: 0px;
  2916. background: transparent;
  2917. background-image: url("../../../ppwb/Graphics/message_background.gif");
  2918. }
  2919. .commonMessageSelectImitator
  2920. {
  2921. background-color: white;
  2922. border: 2px inset;
  2923. }
  2924. /************************
  2925. Combo Box
  2926. ************************/
  2927. .comboBoxContainer
  2928. {
  2929. width: 100%;
  2930. height: 20px;
  2931. border: 2px inset;
  2932. }
  2933. .comboBoxText
  2934. {
  2935. width: 100%;
  2936. white-space: nowrap;
  2937. cursor: default;
  2938. font-size: 10pt;
  2939. font-weight: normal;
  2940. padding-left: 3px;
  2941. overflow: hidden;
  2942. background-color: white;
  2943. }
  2944. .comboBoxDropDown
  2945. {
  2946. top: 0px;
  2947. left: 0px;
  2948. position: absolute;
  2949. display: block;
  2950. background-color: white;
  2951. border: 1px solid black;
  2952. overflow: auto;
  2953. }
  2954. .comboBoxDropDownLimited
  2955. {
  2956. top: 0px;
  2957. left: 0px;
  2958. height: 80px;
  2959. position: absolute;
  2960. display: block;
  2961. background-color: white;
  2962. border: 1px solid black;
  2963. overflow: auto;
  2964. }
  2965. .comboBoxItem
  2966. {
  2967. height: 16px;
  2968. white-space: nowrap;
  2969. cursor: default;
  2970. font-size: 10pt;
  2971. padding-left: 3px;
  2972. }
  2973. .comboBoxItemOver
  2974. {
  2975. height: 16px;
  2976. white-space: nowrap;
  2977. background-color: #336699;
  2978. color: white;
  2979. cursor: default;
  2980. font-size: 10pt;
  2981. padding-left: 2px;
  2982. overflow: visible;
  2983. }
  2984. .comboBoxItemImg
  2985. {
  2986. border: 0px;
  2987. vertical-align: top;
  2988. }
  2989. /*********************************/
  2990. /* Chart Options */
  2991. /*********************************/
  2992. .ActionPaneTabs
  2993. {
  2994. background-color: #DEE7F7;
  2995. width: 100%;
  2996. height: 20px;
  2997. padding-left: 5px;
  2998. border-left: 1px solid #336699;
  2999. border-right: 1px solid #336699;
  3000. }
  3001. .ActionPaneTabsSpacer
  3002. {
  3003. background-color: #DEE7F7;
  3004. height: 10px;
  3005. }
  3006. .ActionPanePreTabs
  3007. {
  3008. background-color: #DEE7F7;
  3009. border-bottom: 1px solid #336699;
  3010. }
  3011. .ActionPanePostTabs
  3012. {
  3013. width: 100%;
  3014. border-bottom: 1px solid #336699;
  3015. }
  3016. .ActionPaneSelectedTab
  3017. {
  3018. background-color: #F2F1F1;
  3019. border-left: 1px solid #336699;
  3020. border-right: 1px solid #336699;
  3021. border-top: 1px solid #336699;
  3022. border-bottom: 1px solid #F2F1F1;
  3023. font-size: 8pt;
  3024. font-weight: bold;
  3025. color: #336699;
  3026. white-space: nowrap;
  3027. padding-left: 10px;
  3028. padding-right: 10px;
  3029. cursor: pointer;
  3030. cursor: hand;
  3031. }
  3032. .ActionPaneTab
  3033. {
  3034. background-color: #DEE7F7;
  3035. border-top: 2px solid #DEE7F7;
  3036. border-bottom: 1px solid #336699;
  3037. font-size: 8pt;
  3038. text-decoration: underline;
  3039. color: #0000FF;
  3040. white-space: nowrap;
  3041. padding-left: 10px;
  3042. padding-right: 10px;
  3043. cursor: pointer;
  3044. cursor: hand;
  3045. }
  3046. .ActionPaneSelectedTabBody
  3047. {
  3048. display: block;
  3049. width: 100%;
  3050. }
  3051. .ActionPaneTabBody
  3052. {
  3053. display: none;
  3054. }
  3055. .ActionPaneTabBodyTableLeft
  3056. {
  3057. border-right: 1px solid #336699;
  3058. }
  3059. .ActionPaneTabBodyTableRight
  3060. {
  3061. }
  3062. .ChartOptionsLabel
  3063. {
  3064. font-size: 8pt;
  3065. font-weight: bold;
  3066. white-space: nowrap;
  3067. color: #336699;
  3068. }
  3069. .ChartOptionsLabelImgCell
  3070. {
  3071. vertical-align: middle;
  3072. text-align: center;
  3073. }
  3074. .ChartOptionsLabelImg
  3075. {
  3076. width: 100px;
  3077. height: 100px;
  3078. }
  3079. .ActionPaneTabBodyTable
  3080. {
  3081. padding-left: 10px;
  3082. height: 220px;
  3083. width: 100%;
  3084. }
  3085. .ActionPaneSmallerTabBodyTable
  3086. {
  3087. padding-left: 10px;
  3088. height: 185px;
  3089. width: 100%;
  3090. }
  3091. .ChartOptionsStatItemDiv
  3092. {
  3093. padding: 5px;
  3094. }
  3095. .ChartOptionsStatItemTable
  3096. {
  3097. padding: 2px;
  3098. }
  3099. .ChartOptionsPaletteItemTable
  3100. {
  3101. }
  3102. .ChartOptionsPalettePreviewTable
  3103. {
  3104. border: solid 2px #999999;
  3105. }
  3106. .ChartOptionsFontPreview
  3107. {
  3108. padding: 1px;
  3109. padding-left: 5px;
  3110. padding-right: 5px;
  3111. border: solid 2px #999999;
  3112. }
  3113. .xtabOptionsFontPreview
  3114. {
  3115. padding: 1px;
  3116. height: 50px;
  3117. border: solid 1px #000000;
  3118. }
  3119. .ChartOptionsPaletteItemTableCell
  3120. {
  3121. padding: 5px;
  3122. vertical-align: top;
  3123. text-align: left;
  3124. }
  3125. .ChartOptionsLineTypeSelectDiv
  3126. {
  3127. width: 125px;
  3128. }
  3129. .chartOptionsContentTable
  3130. {
  3131. height: 245px;
  3132. width: 100%;
  3133. overflow: auto;
  3134. }
  3135. .pdfOptionsContentTable
  3136. {
  3137. height: 180px;
  3138. overflow: auto;
  3139. }
  3140. .ColorSelectContainer
  3141. {
  3142. width: 80px;
  3143. height: 20px;
  3144. border: 1px solid black;
  3145. }
  3146. .PatternSelectContainer
  3147. {
  3148. width: 80px;
  3149. height: 20px;
  3150. border: 1px solid black;
  3151. }
  3152. .colorComponentVisible
  3153. {
  3154. display: block;
  3155. }
  3156. .colorComponentHidden
  3157. {
  3158. display: none;
  3159. }
  3160. .palettePreviewCell
  3161. {
  3162. width: 30px;
  3163. height: 20px;
  3164. }
  3165. .palettePreviewCellDiv
  3166. {
  3167. width: 100%;
  3168. height: 100%;
  3169. border: 2px solid #EEEEEE;
  3170. vertical-align: middle;
  3171. text-align: center;
  3172. }
  3173. .palettePreviewCellDivSelected
  3174. {
  3175. width: 100%;
  3176. height: 100%;
  3177. border: 2px solid #000099;
  3178. vertical-align: middle;
  3179. text-align: center;
  3180. }
  3181. .chartOptionsFontControlCell
  3182. {
  3183. width: 150px;
  3184. }
  3185. .chartOptionsChartLabelControlCell
  3186. {
  3187. width: 250px;
  3188. }
  3189. .chartOptionsFontSizeControlCell
  3190. {
  3191. width: 40px;
  3192. }
  3193. .chartOptionsFontButton
  3194. {
  3195. border: 1px solid #99AACC;
  3196. background-color: #F8F8F8;
  3197. padding: 1px;
  3198. }
  3199. .chartOptionsFontButtonPressed
  3200. {
  3201. border : 1px solid #336699;
  3202. background-color: #BEC8DC;
  3203. padding: 1px;
  3204. }
  3205. .chartOptionsFontButtonRollover
  3206. {
  3207. border : 1px solid #336699;
  3208. background-color: #E3E9F3;
  3209. padding: 1px;
  3210. }
  3211. .chartOptionsFontButtonRolloverPressed
  3212. {
  3213. border : 1px solid #336699;
  3214. background-color: #BEC8DC;
  3215. padding: 1px;
  3216. }
  3217. /***************************/
  3218. /* Color Picker */
  3219. /***************************/
  3220. .ColorPickerDiv
  3221. {
  3222. position: absolute;
  3223. border: 2px solid #336699;
  3224. background-color: #F8F8F8;
  3225. }
  3226. .PatternPickerDiv
  3227. {
  3228. position: absolute;
  3229. border: 2px solid #336699;
  3230. background-color: #F8F8F8;
  3231. padding: 10px;
  3232. }
  3233. .colorPickerButtonArea
  3234. {
  3235. padding: 10px;
  3236. text-align: left;
  3237. }
  3238. .colorPickerButton
  3239. {
  3240. border: 1px solid #999999;
  3241. font-size: 10pt;
  3242. color: #000000;
  3243. padding-top: 2px;
  3244. padding-bottom: 2px;
  3245. padding-left: 15px;
  3246. padding-right: 15px;
  3247. cursor: default;
  3248. }
  3249. .colorPickerButtonRollover
  3250. {
  3251. border: 1px solid #999999;
  3252. font-size: 10pt;
  3253. color: #000000;
  3254. padding-top: 2px;
  3255. padding-bottom: 2px;
  3256. padding-left: 15px;
  3257. padding-right: 15px;
  3258. background-color: #E3E9F3;
  3259. cursor: default;
  3260. }
  3261. .colorPickerPreview
  3262. {
  3263. width: 80px;
  3264. height: 80px;
  3265. border: 2px solid #336699;
  3266. }
  3267. .colorPickerColorTable
  3268. {
  3269. border: 1px solid #336699;
  3270. }
  3271. .colorPickerLabel
  3272. {
  3273. font-size: 9pt;
  3274. font-weight: bold;
  3275. color: #336699;
  3276. }
  3277. .colorPickerPreviewCell
  3278. {
  3279. text-align: center;
  3280. }
  3281. .colorPickerColorTableContainer
  3282. {
  3283. text-align: center;
  3284. }
  3285. .colorPickerWebSafeColorCell
  3286. {
  3287. height: 8px;
  3288. width: 8px;
  3289. text-align: center;
  3290. vertical-align: middle;
  3291. }
  3292. .colorPickerWebSafeColorCellSelected
  3293. {
  3294. height: 4px;
  3295. width: 4px;
  3296. border: 1px solid #000000;
  3297. }
  3298. .patternPickerPatternCell
  3299. {
  3300. width: 30px;
  3301. height: 20px;
  3302. }
  3303. .patternPickerPatternDiv
  3304. {
  3305. border: 1px solid #336699;
  3306. width: 100%;
  3307. height: 100%;
  3308. }
  3309. .patternPickerPatternDivSelected
  3310. {
  3311. border: 2px solid #000099;
  3312. width: 100%;
  3313. height: 100%;
  3314. }
  3315. .sliderControlArea
  3316. {
  3317. }
  3318. .sliderControlMarker
  3319. {
  3320. position: relative;
  3321. left: 0px;
  3322. }
  3323. .dialogButtonTable
  3324. {
  3325. }
  3326. .dialogButtonTableCell
  3327. {
  3328. padding-left: 3px;
  3329. padding-right: 3px;
  3330. width:70px;
  3331. height:20px !important;
  3332. }
  3333. .dialogButton
  3334. {
  3335. border: 1px solid #999999;
  3336. font-size: 11pt;
  3337. color: #000000;
  3338. padding: 2px;
  3339. text-align: center;
  3340. vertical-align: middle;
  3341. background-color: #FFFFFF;
  3342. cursor: pointer;
  3343. white-space:nowrap;
  3344. cursor: hand;
  3345. }
  3346. .dialogButtonDisabled
  3347. {
  3348. color: #999999;
  3349. border: 1px solid #999999;
  3350. font-size: 11pt;
  3351. color: #999999;
  3352. padding: 2px;
  3353. text-align: center;
  3354. vertical-align: middle;
  3355. background-color: #FFFFFF;
  3356. cursor: pointer;
  3357. white-space:nowrap;
  3358. cursor: hand;
  3359. }
  3360. .dialogButtonRollover
  3361. {
  3362. border: 1px solid #999999;
  3363. font-size: 11pt;
  3364. color: #000000;
  3365. padding: 2px;
  3366. text-align: center;
  3367. vertical-align: middle;
  3368. background-color: #E3E9F3;
  3369. cursor: pointer;
  3370. white-space:nowrap;
  3371. cursor: hand;
  3372. }
  3373. /**********************************/
  3374. /*** HTML TEMPLATE STYLES ***/
  3375. /**********************************/
  3376. .dialogHeader
  3377. {
  3378. border: #336699 1px solid;
  3379. height: 24px;
  3380. background-color: #99aacc;
  3381. }
  3382. .dialogHeaderTitle
  3383. {
  3384. padding-left: 3px;
  3385. font-weight: bold;
  3386. font-size: 70%;
  3387. color: #ffffff;
  3388. padding-top: 4px;
  3389. }
  3390. .dialogHeaderLink
  3391. {
  3392. padding-right: 10px;
  3393. font-size: 70%;
  3394. color: #FFFFFF;
  3395. text-decoration: underline;
  3396. cursor: pointer;
  3397. cursor: hand;
  3398. }
  3399. .dialogHeaderImg
  3400. {
  3401. padding: 3px;
  3402. }
  3403. .dialogText
  3404. {
  3405. font-size: 70%;
  3406. color: #336699;
  3407. }
  3408. .dialogText2
  3409. {
  3410. font-size: 70%;
  3411. }
  3412. .dialogLabel
  3413. {
  3414. font-weight: bold;
  3415. font-size: 70%;
  3416. color: #336699;
  3417. }
  3418. .dialog
  3419. {
  3420. padding: 3px;
  3421. position: absolute;
  3422. top: 0;
  3423. left: 0;
  3424. visibility: hidden;
  3425. }
  3426. .htmlBottom
  3427. {
  3428. background-color: #EFEFEF;
  3429. border: 1px solid #CCCCCC;
  3430. padding: 3px;
  3431. width:100%;
  3432. }
  3433. /*******************************/
  3434. /** for about.html skinning **/
  3435. /*******************************/
  3436. .dialogSubHeaderAnchorContainer
  3437. {
  3438. padding-right: 10px;
  3439. font-size: 70%;
  3440. }
  3441. .bold
  3442. {
  3443. font-weight: bold;
  3444. }
  3445. .dialogHeaderText /* Introductory dialog text*/
  3446. {
  3447. font-size: 70%;
  3448. color: #336699;
  3449. }
  3450. .formText
  3451. {
  3452. font-size: 70%;
  3453. color: #000000;
  3454. }
  3455. .legalText
  3456. {
  3457. font-weight: normal;
  3458. font-size: 70%;
  3459. color: #999999;
  3460. }