customdoxygen.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011
  1. /* The standard CSS for doxygen */
  2. body, table, div, p, dl {
  3. font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
  4. font-size: 13px;
  5. line-height: 1.3;
  6. }
  7. /* @group Heading Levels */
  8. h1 {
  9. font-size: 150%;
  10. }
  11. .title {
  12. font-size: 150%;
  13. font-weight: bold;
  14. margin: 10px 2px;
  15. }
  16. h2 {
  17. font-size: 120%;
  18. }
  19. h3 {
  20. font-size: 100%;
  21. }
  22. dt {
  23. font-weight: bold;
  24. }
  25. div.multicol {
  26. -moz-column-gap: 1em;
  27. -webkit-column-gap: 1em;
  28. -moz-column-count: 3;
  29. -webkit-column-count: 3;
  30. }
  31. p.startli, p.startdd, p.starttd {
  32. margin-top: 2px;
  33. }
  34. p.endli {
  35. margin-bottom: 0px;
  36. }
  37. p.enddd {
  38. margin-bottom: 4px;
  39. }
  40. p.endtd {
  41. margin-bottom: 2px;
  42. }
  43. /* @end */
  44. caption {
  45. font-weight: bold;
  46. }
  47. span.legend {
  48. font-size: 70%;
  49. text-align: center;
  50. }
  51. h3.version {
  52. font-size: 90%;
  53. text-align: center;
  54. }
  55. div.qindex, div.navtab{
  56. background-color: #F1F1F1;
  57. border: 1px solid #BDBDBD;
  58. text-align: center;
  59. }
  60. div.qindex, div.navpath {
  61. width: 100%;
  62. line-height: 140%;
  63. }
  64. div.navtab {
  65. margin-right: 15px;
  66. }
  67. /* @group Link Styling */
  68. a {
  69. color: #646464;
  70. font-weight: normal;
  71. text-decoration: none;
  72. }
  73. .contents a:visited {
  74. color: #747474;
  75. }
  76. a:hover {
  77. text-decoration: underline;
  78. }
  79. a.qindex {
  80. font-weight: bold;
  81. }
  82. a.qindexHL {
  83. font-weight: bold;
  84. background-color: #B8B8B8;
  85. color: #ffffff;
  86. border: 1px double #A8A8A8;
  87. }
  88. .contents a.qindexHL:visited {
  89. color: #ffffff;
  90. }
  91. a.el {
  92. font-weight: bold;
  93. }
  94. a.elRef {
  95. }
  96. a.code, a.code:visited {
  97. color: #4665A2;
  98. }
  99. a.codeRef, a.codeRef:visited {
  100. color: #4665A2;
  101. }
  102. /* @end */
  103. dl.el {
  104. margin-left: -1cm;
  105. }
  106. .fragment {
  107. font-family: monospace, fixed;
  108. font-size: 105%;
  109. }
  110. pre.fragment {
  111. border: 1px solid #D5D5D5;
  112. background-color: #FCFCFC;
  113. padding: 4px 6px;
  114. margin: 4px 8px 4px 2px;
  115. overflow: auto;
  116. word-wrap: break-word;
  117. font-size: 9pt;
  118. line-height: 125%;
  119. }
  120. div.ah {
  121. background-color: black;
  122. font-weight: bold;
  123. color: #ffffff;
  124. margin-bottom: 3px;
  125. margin-top: 3px;
  126. padding: 0.2em;
  127. border: solid thin #333;
  128. border-radius: 0.5em;
  129. -webkit-border-radius: .5em;
  130. -moz-border-radius: .5em;
  131. box-shadow: 2px 2px 3px #999;
  132. -webkit-box-shadow: 2px 2px 3px #999;
  133. -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
  134. background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
  135. background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
  136. }
  137. div.groupHeader {
  138. margin-left: 16px;
  139. margin-top: 12px;
  140. font-weight: bold;
  141. }
  142. div.groupText {
  143. margin-left: 16px;
  144. font-style: italic;
  145. }
  146. body {
  147. background-color: white;
  148. color: black;
  149. margin: 0;
  150. }
  151. div.contents {
  152. margin-top: 10px;
  153. margin-left: 8px;
  154. margin-right: 8px;
  155. }
  156. td.indexkey {
  157. background-color: #F1F1F1;
  158. font-weight: bold;
  159. border: 1px solid #D5D5D5;
  160. margin: 2px 0px 2px 0;
  161. padding: 2px 10px;
  162. white-space: nowrap;
  163. vertical-align: top;
  164. }
  165. td.indexvalue {
  166. background-color: #F1F1F1;
  167. border: 1px solid #D5D5D5;
  168. padding: 2px 10px;
  169. margin: 2px 0px;
  170. }
  171. tr.memlist {
  172. background-color: #F2F2F2;
  173. }
  174. p.formulaDsp {
  175. text-align: center;
  176. }
  177. img.formulaDsp {
  178. }
  179. img.formulaInl {
  180. vertical-align: middle;
  181. }
  182. div.center {
  183. text-align: center;
  184. margin-top: 0px;
  185. margin-bottom: 0px;
  186. padding: 0px;
  187. }
  188. div.center img {
  189. border: 0px;
  190. }
  191. address.footer {
  192. text-align: right;
  193. padding-right: 12px;
  194. }
  195. img.footer {
  196. border: 0px;
  197. vertical-align: middle;
  198. }
  199. /* @group Code Colorization */
  200. span.keyword {
  201. color: #008000
  202. }
  203. span.keywordtype {
  204. color: #604020
  205. }
  206. span.keywordflow {
  207. color: #e08000
  208. }
  209. span.comment {
  210. color: #800000
  211. }
  212. span.preprocessor {
  213. color: #806020
  214. }
  215. span.stringliteral {
  216. color: #002080
  217. }
  218. span.charliteral {
  219. color: #008080
  220. }
  221. span.vhdldigit {
  222. color: #ff00ff
  223. }
  224. span.vhdlchar {
  225. color: #000000
  226. }
  227. span.vhdlkeyword {
  228. color: #700070
  229. }
  230. span.vhdllogic {
  231. color: #ff0000
  232. }
  233. blockquote {
  234. background-color: #F9F9F9;
  235. border-left: 2px solid #B8B8B8;
  236. margin: 0 24px 0 4px;
  237. padding: 0 12px 0 16px;
  238. }
  239. /* @end */
  240. /*
  241. .search {
  242. color: #003399;
  243. font-weight: bold;
  244. }
  245. form.search {
  246. margin-bottom: 0px;
  247. margin-top: 0px;
  248. }
  249. input.search {
  250. font-size: 75%;
  251. color: #000080;
  252. font-weight: normal;
  253. background-color: #e8eef2;
  254. }
  255. */
  256. td.tiny {
  257. font-size: 75%;
  258. }
  259. .dirtab {
  260. padding: 4px;
  261. border-collapse: collapse;
  262. border: 1px solid #BDBDBD;
  263. }
  264. th.dirtab {
  265. background: #F1F1F1;
  266. font-weight: bold;
  267. }
  268. hr {
  269. height: 0px;
  270. border: none;
  271. border-top: 1px solid #7A7A7A;
  272. }
  273. hr.footer {
  274. height: 1px;
  275. }
  276. /* @group Member Descriptions */
  277. table.memberdecls {
  278. border-spacing: 0px;
  279. padding: 0px;
  280. }
  281. .mdescLeft, .mdescRight,
  282. .memItemLeft, .memItemRight,
  283. .memTemplItemLeft, .memTemplItemRight, .memTemplParams {
  284. background-color: #FAFAFA;
  285. border: none;
  286. margin: 4px;
  287. padding: 1px 0 0 8px;
  288. }
  289. .mdescLeft, .mdescRight {
  290. padding: 0px 8px 4px 8px;
  291. color: #555;
  292. }
  293. .memItemLeft, .memItemRight, .memTemplParams {
  294. border-top: 1px solid #D5D5D5;
  295. }
  296. .memItemLeft, .memTemplItemLeft {
  297. white-space: nowrap;
  298. }
  299. .memItemRight {
  300. width: 100%;
  301. }
  302. .memTemplParams {
  303. color: #747474;
  304. white-space: nowrap;
  305. }
  306. /* @end */
  307. /* @group Member Details */
  308. /* Styles for detailed member documentation */
  309. .memtemplate {
  310. font-size: 80%;
  311. color: #747474;
  312. font-weight: normal;
  313. margin-left: 9px;
  314. }
  315. .memnav {
  316. background-color: #F1F1F1;
  317. border: 1px solid #BDBDBD;
  318. text-align: center;
  319. margin: 2px;
  320. margin-right: 15px;
  321. padding: 2px;
  322. }
  323. .mempage {
  324. width: 100%;
  325. }
  326. .memitem {
  327. padding: 0;
  328. margin-bottom: 10px;
  329. margin-right: 5px;
  330. }
  331. .memname {
  332. white-space: nowrap;
  333. font-weight: bold;
  334. margin-left: 6px;
  335. }
  336. .memproto, dl.reflist dt {
  337. border-top: 1px solid #C0C0C0;
  338. border-left: 1px solid #C0C0C0;
  339. border-right: 1px solid #C0C0C0;
  340. padding: 6px 0px 6px 0px;
  341. color: #3D3D3D;
  342. font-weight: bold;
  343. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
  344. /* opera specific markup */
  345. box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  346. border-top-right-radius: 8px;
  347. border-top-left-radius: 8px;
  348. /* firefox specific markup */
  349. -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
  350. -moz-border-radius-topright: 8px;
  351. -moz-border-radius-topleft: 8px;
  352. /* webkit specific markup */
  353. -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  354. -webkit-border-top-right-radius: 8px;
  355. -webkit-border-top-left-radius: 8px;
  356. background-image:url('nav_f.png');
  357. background-repeat:repeat-x;
  358. background-color: #EAEAEA;
  359. }
  360. .memdoc, dl.reflist dd {
  361. border-bottom: 1px solid #C0C0C0;
  362. border-left: 1px solid #C0C0C0;
  363. border-right: 1px solid #C0C0C0;
  364. padding: 2px 5px;
  365. background-color: #FCFCFC;
  366. border-top-width: 0;
  367. /* opera specific markup */
  368. border-bottom-left-radius: 8px;
  369. border-bottom-right-radius: 8px;
  370. box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  371. /* firefox specific markup */
  372. -moz-border-radius-bottomleft: 8px;
  373. -moz-border-radius-bottomright: 8px;
  374. -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
  375. background-image: -moz-linear-gradient(center top, #FFFFFF 0%, #FFFFFF 60%, #F9F9F9 95%, #F2F2F2);
  376. /* webkit specific markup */
  377. -webkit-border-bottom-left-radius: 8px;
  378. -webkit-border-bottom-right-radius: 8px;
  379. -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  380. background-image: -webkit-gradient(linear,center top,center bottom,from(#FFFFFF), color-stop(0.6,#FFFFFF), color-stop(0.60,#FFFFFF), color-stop(0.95,#F9F9F9), to(#F2F2F2));
  381. }
  382. dl.reflist dt {
  383. padding: 5px;
  384. }
  385. dl.reflist dd {
  386. margin: 0px 0px 10px 0px;
  387. padding: 5px;
  388. }
  389. .paramkey {
  390. text-align: right;
  391. }
  392. .paramtype {
  393. white-space: nowrap;
  394. }
  395. .paramname {
  396. color: #602020;
  397. white-space: nowrap;
  398. }
  399. .paramname em {
  400. font-style: normal;
  401. }
  402. .params, .retval, .exception, .tparams {
  403. border-spacing: 6px 2px;
  404. }
  405. .params .paramname, .retval .paramname {
  406. font-weight: bold;
  407. vertical-align: top;
  408. }
  409. .params .paramtype {
  410. font-style: italic;
  411. vertical-align: top;
  412. }
  413. .params .paramdir {
  414. font-family: "courier new",courier,monospace;
  415. vertical-align: top;
  416. }
  417. /* @end */
  418. /* @group Directory (tree) */
  419. /* for the tree view */
  420. .ftvtree {
  421. font-family: sans-serif;
  422. margin: 0px;
  423. }
  424. /* these are for tree view when used as main index */
  425. .directory {
  426. font-size: 9pt;
  427. font-weight: bold;
  428. margin: 5px;
  429. }
  430. .directory h3 {
  431. margin: 0px;
  432. margin-top: 1em;
  433. font-size: 11pt;
  434. }
  435. /*
  436. The following two styles can be used to replace the root node title
  437. with an image of your choice. Simply uncomment the next two styles,
  438. specify the name of your image and be sure to set 'height' to the
  439. proper pixel height of your image.
  440. */
  441. /*
  442. .directory h3.swap {
  443. height: 61px;
  444. background-repeat: no-repeat;
  445. background-image: url("yourimage.gif");
  446. }
  447. .directory h3.swap span {
  448. display: none;
  449. }
  450. */
  451. .directory > h3 {
  452. margin-top: 0;
  453. }
  454. .directory p {
  455. margin: 0px;
  456. white-space: nowrap;
  457. }
  458. .directory div {
  459. display: none;
  460. margin: 0px;
  461. }
  462. .directory img {
  463. vertical-align: -30%;
  464. }
  465. /* these are for tree view when not used as main index */
  466. .directory-alt {
  467. font-size: 100%;
  468. font-weight: bold;
  469. }
  470. .directory-alt h3 {
  471. margin: 0px;
  472. margin-top: 1em;
  473. font-size: 11pt;
  474. }
  475. .directory-alt > h3 {
  476. margin-top: 0;
  477. }
  478. .directory-alt p {
  479. margin: 0px;
  480. white-space: nowrap;
  481. }
  482. .directory-alt div {
  483. display: none;
  484. margin: 0px;
  485. }
  486. .directory-alt img {
  487. vertical-align: -30%;
  488. }
  489. /* @end */
  490. div.dynheader {
  491. margin-top: 8px;
  492. }
  493. address {
  494. font-style: normal;
  495. color: #464646;
  496. }
  497. table.doxtable {
  498. border-collapse:collapse;
  499. margin-top: 4px;
  500. margin-bottom: 4px;
  501. }
  502. table.doxtable td, table.doxtable th {
  503. border: 1px solid #4A4A4A;
  504. padding: 3px 7px 2px;
  505. }
  506. table.doxtable th {
  507. background-color: #5B5B5B;
  508. color: #FFFFFF;
  509. font-size: 110%;
  510. padding-bottom: 4px;
  511. padding-top: 5px;
  512. }
  513. table.fieldtable {
  514. width: 100%;
  515. margin-bottom: 10px;
  516. border: 1px solid #C0C0C0;
  517. border-spacing: 0px;
  518. -moz-border-radius: 4px;
  519. -webkit-border-radius: 4px;
  520. border-radius: 4px;
  521. -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
  522. -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  523. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  524. }
  525. .fieldtable td, .fieldtable th {
  526. padding: 3px 7px 2px;
  527. }
  528. .fieldtable td.fieldtype, .fieldtable td.fieldname {
  529. white-space: nowrap;
  530. border-right: 1px solid #C0C0C0;
  531. border-bottom: 1px solid #C0C0C0;
  532. vertical-align: top;
  533. }
  534. .fieldtable td.fielddoc {
  535. border-bottom: 1px solid #C0C0C0;
  536. width: 100%;
  537. }
  538. .fieldtable tr:last-child td {
  539. border-bottom: none;
  540. }
  541. .fieldtable th {
  542. background-image:url('nav_f.png');
  543. background-repeat:repeat-x;
  544. background-color: #EAEAEA;
  545. font-size: 90%;
  546. color: #3D3D3D;
  547. padding-bottom: 4px;
  548. padding-top: 5px;
  549. text-align:left;
  550. -moz-border-radius-topleft: 4px;
  551. -moz-border-radius-topright: 4px;
  552. -webkit-border-top-left-radius: 4px;
  553. -webkit-border-top-right-radius: 4px;
  554. border-top-left-radius: 4px;
  555. border-top-right-radius: 4px;
  556. border-bottom: 1px solid #C0C0C0;
  557. }
  558. .tabsearch {
  559. top: 0px;
  560. left: 10px;
  561. height: 36px;
  562. background-image: url('tab_b.png');
  563. z-index: 101;
  564. overflow: hidden;
  565. font-size: 13px;
  566. }
  567. .navpath ul
  568. {
  569. font-size: 11px;
  570. background-image:url('tab_b.png');
  571. background-repeat:repeat-x;
  572. height:30px;
  573. line-height:30px;
  574. color:#ABABAB;
  575. border:solid 1px #D3D3D3;
  576. overflow:hidden;
  577. margin:0px;
  578. padding:0px;
  579. }
  580. .navpath li
  581. {
  582. list-style-type:none;
  583. float:left;
  584. padding-left:10px;
  585. padding-right:15px;
  586. background-image:url('bc_s.png');
  587. background-repeat:no-repeat;
  588. background-position:right;
  589. color:#595959;
  590. }
  591. .navpath li.navelem a
  592. {
  593. height:32px;
  594. display:block;
  595. text-decoration: none;
  596. outline: none;
  597. }
  598. .navpath li.navelem a:hover
  599. {
  600. color:#929292;
  601. }
  602. .navpath li.footer
  603. {
  604. list-style-type:none;
  605. float:right;
  606. padding-left:10px;
  607. padding-right:15px;
  608. background-image:none;
  609. background-repeat:no-repeat;
  610. background-position:right;
  611. color:#595959;
  612. font-size: 8pt;
  613. }
  614. div.summary
  615. {
  616. float: right;
  617. font-size: 8pt;
  618. padding-right: 5px;
  619. width: 50%;
  620. text-align: right;
  621. }
  622. div.summary a
  623. {
  624. white-space: nowrap;
  625. }
  626. div.ingroups
  627. {
  628. margin-left: 5px;
  629. font-size: 8pt;
  630. padding-left: 5px;
  631. width: 50%;
  632. text-align: left;
  633. }
  634. div.ingroups a
  635. {
  636. white-space: nowrap;
  637. }
  638. div.header
  639. {
  640. background-image:url('nav_h.png');
  641. background-repeat:repeat-x;
  642. background-color: #FAFAFA;
  643. margin: 0px;
  644. border-bottom: 1px solid #D5D5D5;
  645. }
  646. div.headertitle
  647. {
  648. padding: 5px 5px 5px 7px;
  649. }
  650. dl
  651. {
  652. padding: 0 0 0 10px;
  653. }
  654. /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */
  655. dl.section
  656. {
  657. border-left:4px solid;
  658. padding: 0 0 0 6px;
  659. }
  660. dl.note
  661. {
  662. border-color: #D0C000;
  663. }
  664. dl.warning, dl.attention
  665. {
  666. border-color: #FF0000;
  667. }
  668. dl.pre, dl.post, dl.invariant
  669. {
  670. border-color: #00D000;
  671. }
  672. dl.deprecated
  673. {
  674. border-color: #505050;
  675. }
  676. dl.todo
  677. {
  678. border-color: #00C0E0;
  679. }
  680. dl.test
  681. {
  682. border-color: #3030E0;
  683. }
  684. dl.bug
  685. {
  686. border-color: #C08050;
  687. }
  688. dl.section dd {
  689. margin-bottom: 6px;
  690. }
  691. #projectlogo
  692. {
  693. text-align: center;
  694. vertical-align: bottom;
  695. border-collapse: separate;
  696. }
  697. #projectlogo img
  698. {
  699. border: 0px none;
  700. }
  701. #projectname
  702. {
  703. font: 300% Tahoma, Arial,sans-serif;
  704. margin: 0px;
  705. padding: 2px 0px;
  706. }
  707. #projectbrief
  708. {
  709. font: 120% Tahoma, Arial,sans-serif;
  710. margin: 0px;
  711. padding: 0px;
  712. }
  713. #projectnumber
  714. {
  715. font: 100% Tahoma, Arial,sans-serif;
  716. margin: 0px;
  717. padding: 0px;
  718. }
  719. #titlearea
  720. {
  721. padding: 0px;
  722. margin: 0px;
  723. width: 100%;
  724. border-bottom: 1px solid #848484;
  725. }
  726. .image
  727. {
  728. text-align: center;
  729. }
  730. .dotgraph
  731. {
  732. text-align: center;
  733. }
  734. .mscgraph
  735. {
  736. text-align: center;
  737. }
  738. .caption
  739. {
  740. font-weight: bold;
  741. }
  742. div.zoom
  743. {
  744. border: 1px solid #AFAFAF;
  745. }
  746. dl.citelist {
  747. margin-bottom:50px;
  748. }
  749. dl.citelist dt {
  750. color:#545454;
  751. float:left;
  752. font-weight:bold;
  753. margin-right:10px;
  754. padding:5px;
  755. }
  756. dl.citelist dd {
  757. margin:2px 0;
  758. padding:5px 0;
  759. }
  760. div.toc {
  761. padding: 14px 25px;
  762. background-color: #F7F7F7;
  763. border: 1px solid #E3E3E3;
  764. border-radius: 7px 7px 7px 7px;
  765. float: right;
  766. height: auto;
  767. margin: 0 20px 10px 10px;
  768. width: 200px;
  769. }
  770. div.toc li {
  771. background: url("bdwn.png") no-repeat scroll 0 5px transparent;
  772. font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
  773. margin-top: 5px;
  774. padding-left: 10px;
  775. padding-top: 2px;
  776. }
  777. div.toc h3 {
  778. font: bold 12px/1.2 Arial,FreeSans,sans-serif;
  779. color: #747474;
  780. border-bottom: 0 none;
  781. margin: 0;
  782. }
  783. div.toc ul {
  784. list-style: none outside none;
  785. border: medium none;
  786. padding: 0px;
  787. }
  788. div.toc li.level1 {
  789. margin-left: 0px;
  790. }
  791. div.toc li.level2 {
  792. margin-left: 15px;
  793. }
  794. div.toc li.level3 {
  795. margin-left: 30px;
  796. }
  797. div.toc li.level4 {
  798. margin-left: 45px;
  799. }
  800. @media print
  801. {
  802. #top { display: none; }
  803. #side-nav { display: none; }
  804. #nav-path { display: none; }
  805. body { overflow:visible; }
  806. h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  807. .summary { display: none; }
  808. .memitem { page-break-inside: avoid; }
  809. #doc-content
  810. {
  811. margin-left:0 !important;
  812. height:auto !important;
  813. width:auto !important;
  814. overflow:inherit;
  815. display:inline;
  816. }
  817. pre.fragment
  818. {
  819. overflow: visible;
  820. text-wrap: unrestricted;
  821. white-space: -moz-pre-wrap; /* Moz */
  822. white-space: -pre-wrap; /* Opera 4-6 */
  823. white-space: -o-pre-wrap; /* Opera 7 */
  824. white-space: pre-wrap; /* CSS3 */
  825. word-wrap: break-word; /* IE 5.5+ */
  826. }
  827. }