deplate 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. data/AUTHORS.TXT +2 -1
  2. data/CHANGES.TXT +56 -211
  3. data/NEWS.TXT +15 -38
  4. data/VERSION.TXT +1 -1
  5. data/bin/deplate +0 -0
  6. data/bin/deplate.bat +0 -0
  7. data/etc/deplate.ini +11 -0
  8. data/lib/deplate/commands.rb +8 -3
  9. data/lib/deplate/common.rb +2 -2
  10. data/lib/deplate/core.rb +157 -45
  11. data/lib/deplate/css/article.css +19 -3
  12. data/lib/deplate/css/doc.css +770 -0
  13. data/lib/deplate/elements.rb +7 -7
  14. data/lib/deplate/ents/general-latin1.entities +100 -0
  15. data/lib/deplate/ents/general-utf-8.entities +252 -0
  16. data/lib/deplate/external.rb +3 -2
  17. data/lib/deplate/fmt/html.rb +12 -10
  18. data/lib/deplate/fmt/latex.rb +25 -14
  19. data/lib/deplate/fmt/plain.rb +4 -5
  20. data/lib/deplate/fmt/xhtml11m.rb +25 -0
  21. data/lib/deplate/formatter.rb +106 -32
  22. data/lib/deplate/input.rb +8 -7
  23. data/lib/deplate/lib/Makefile.config +11 -1
  24. data/lib/deplate/locale/de.latin1 +9 -0
  25. data/lib/deplate/macros.rb +23 -18
  26. data/lib/deplate/mod/code-coderay.rb +45 -0
  27. data/lib/deplate/mod/code-gvim.rb +3 -2
  28. data/lib/deplate/mod/code-gvim71.rb +3 -6
  29. data/lib/deplate/mod/code-highlight.rb +3 -2
  30. data/lib/deplate/mod/entities-decode.rb +72 -0
  31. data/lib/deplate/mod/entities-encode.rb +50 -0
  32. data/lib/deplate/mod/guesslanguage.rb +3 -3
  33. data/lib/deplate/mod/html-jsmath.rb +5 -5
  34. data/lib/deplate/mod/html-mathml.rb +40 -0
  35. data/lib/deplate/mod/latex-styles.rb +21 -11
  36. data/lib/deplate/mod/makefile.rb +21 -11
  37. data/lib/deplate/mod/markup-1.rb +3 -3
  38. data/lib/deplate/mod/particle-math.rb +15 -6
  39. data/lib/deplate/particles.rb +2 -2
  40. data/lib/deplate/regions.rb +50 -15
  41. data/lib/deplate/template.rb +7 -2
  42. data/lib/deplate/themes/presentation.html/css/highstep.css +29 -0
  43. data/lib/deplate/themes/presentation.html/css/presentation.css +206 -0
  44. data/lib/deplate/themes/presentation.html/css/website.css +281 -0
  45. data/lib/deplate/themes/presentation.html/prelude.txt +19 -0
  46. data/lib/deplate/themes/presentation.html/resources/spacer.png +0 -0
  47. data/lib/deplate/themes/presentation.html/templates/presentation.html +26 -0
  48. data/lib/deplate/themes/presentation.html/theme.ini +20 -0
  49. data/man/man1/deplate.1 +147 -73
  50. metadata +67 -40
  51. data/bin/deplate.exy +0 -192
@@ -1,8 +1,8 @@
1
1
  /* Layout and decoration */
2
2
  /* @Author: Thomas Link (micathom AT gmail com) */
3
3
  /* @Created: 13-Apr-2004. */
4
- /* @Last Change: 2007-05-22. */
5
- /* @Revision: 0.794 */
4
+ /* @Last Change: 2007-11-04. */
5
+ /* @Revision: 0.799 */
6
6
 
7
7
  @page {
8
8
  size:portrait;
@@ -49,6 +49,10 @@ hr {
49
49
  hr.pagebreak {
50
50
  color: #000000;
51
51
  }
52
+ div.parbreak {
53
+ margin: 10px 0 10px 0;
54
+ text-align: center;
55
+ }
52
56
 
53
57
 
54
58
  h1, h2, h3, h4, h5, h6 {
@@ -95,7 +99,7 @@ table, tr, th, td {
95
99
  color : black;
96
100
  }
97
101
  table {
98
- border: 1pt solid #000000;
102
+ /* border: 1pt solid #000000; */
99
103
  }
100
104
  tr, th, td {
101
105
  padding: 2pt;
@@ -548,3 +552,15 @@ td.buttonRow {
548
552
  }
549
553
 
550
554
 
555
+ .bold {
556
+ font-weight: bold;
557
+ font-style: normal;
558
+ }
559
+ .emphasized {
560
+ font-style: italic;
561
+ }
562
+
563
+ .center {
564
+ text-align: center;
565
+ }
566
+
@@ -0,0 +1,770 @@
1
+ /* Layout and decoration */
2
+ /* @Author: Thomas Link (samul AT web.de) */
3
+ /* @Created: 13-Apr-2004. */
4
+ /* @Last Change: 2008-07-06. */
5
+ /* @Revision: 0.1202 */
6
+
7
+ body {
8
+ padding: 1px;
9
+ color: #000000;
10
+ background-color: #ffffff;
11
+ text-align: left;
12
+ }
13
+
14
+ a {
15
+ color : black;
16
+ }
17
+ a:link {
18
+ color : #0071f0;
19
+ }
20
+ a:visited {
21
+ color : #30306f;
22
+ }
23
+ a:hover {
24
+ color: #0071f0;
25
+ }
26
+ a:link.ref {
27
+ }
28
+ a:visited.ref {
29
+ }
30
+
31
+ p {
32
+ /* border-left: 10px solid #ffffff; */
33
+ /* border-right: 10px solid #ffffff; */
34
+ margin: 0 10px 0 10px;
35
+ padding: 5px;
36
+ /* text-indent: 20px; */
37
+ }
38
+ big {
39
+ }
40
+
41
+ hr {
42
+ }
43
+ hr.pagebreak {
44
+ color: #000000;
45
+ }
46
+
47
+ img {
48
+ border: 0;
49
+ vertical-align: middle;
50
+ }
51
+ img.latex {
52
+ vertical-align: middle;
53
+ }
54
+ img.inline {
55
+ }
56
+
57
+ h1, h2, h3, h4, h5, h6 {
58
+ padding-left: 20px;
59
+ text-align: left;
60
+ }
61
+ h1 {
62
+ margin-top: 30px;
63
+ margin-bottom: 20px;
64
+ padding-top: 10px;
65
+ padding-bottom: 10px;
66
+ border-left:10px solid #ffe590;
67
+ background-color: #fff3d0;
68
+ }
69
+ h2 {
70
+ margin-top: 30px;
71
+ margin-bottom: 10px;
72
+ border-left:10px solid #ffe590;
73
+ }
74
+ h3 {
75
+ border-left:10px solid #ffe590;
76
+ margin-top: 20px;
77
+ margin-bottom: 10px;
78
+ }
79
+ h4 {
80
+ border-left:10px solid #ffe590;
81
+ margin-top: 10px;
82
+ margin-bottom: 10px;
83
+ }
84
+ h5 {
85
+ border-left:10px solid #ffe590;
86
+ margin-top: 10px;
87
+ margin-bottom: 5px;
88
+ }
89
+ h6 {
90
+ border-left:10px solid #ffe590;
91
+ margin-top: 10px;
92
+ }
93
+
94
+ em {
95
+ }
96
+
97
+ blockquote {
98
+ margin: 20px 60px 20px 60px;
99
+ }
100
+ blockquote.quote {
101
+ }
102
+
103
+ blockquote.longquote {
104
+ }
105
+ blockquote.abstract {
106
+ }
107
+
108
+ ul {
109
+ }
110
+ ol {
111
+ }
112
+ dl {
113
+ }
114
+ dt {
115
+ margin-left: 10px;
116
+ padding-left: 10px;
117
+ padding-top: 2px;
118
+ padding-bottom: 2px;
119
+ }
120
+ dd {
121
+ margin-bottom: 10px;
122
+ }
123
+ li {
124
+ padding: 2px;
125
+ margin-right: 20px;
126
+ }
127
+ ul.Task {
128
+ list-style-type: none;
129
+ }
130
+ li[class|=Task] {
131
+ }
132
+ li.Task-A {
133
+ }
134
+ li.Task-B {
135
+ }
136
+ li.Task-C {
137
+ }
138
+ li.Task-D {
139
+ }
140
+ li.Task-E {
141
+ }
142
+ li.Task-F {
143
+ }
144
+ li.done[class^=Task] {
145
+ color: #606060;
146
+ text-decoration: line-through;
147
+ }
148
+ span[class|=Task] {
149
+ font-weight: bold;
150
+ padding: 0 5px 0 5px;
151
+ position: relative;
152
+ right: 10px;
153
+ }
154
+ span.Task-A {
155
+ background-color: #ff7f7f;
156
+ }
157
+ span.Task-B {
158
+ background-color: #7fff7f;
159
+ }
160
+ span.Task-C {
161
+ background-color: #7f7fff;
162
+ }
163
+ span.Task-D {
164
+ background-color: #7fffff;
165
+ }
166
+ span.Task-E {
167
+ background-color: #ff7fff;
168
+ }
169
+ span.Task-F {
170
+ background-color: #ffff7f;
171
+ }
172
+ br.itempara {
173
+ }
174
+ p.itempara {
175
+ border-left: 0;
176
+ border-right: 0;
177
+ padding: 0;
178
+ }
179
+
180
+ pre {
181
+ margin-left: 40px;
182
+ margin-right: 40px;
183
+ padding: 5px;
184
+ }
185
+
186
+ pre.verbatim {
187
+ background-color: #eaeaea;
188
+ border-left: 5px solid #efefef;
189
+ }
190
+
191
+ div.code {
192
+ background-color: #fffff0;
193
+ border: 1px double #fff0f0;
194
+ }
195
+
196
+ /* Tables */
197
+ div.table {
198
+ /* text-align: center; */
199
+ padding: 20px;
200
+ }
201
+ div.tableNote {
202
+ /* text-align: center; */
203
+ }
204
+ table, tr, th, td {
205
+ border-style: none;
206
+ /* background-color:#eaeaea; */
207
+ border-spacing: 0;
208
+ color : black;
209
+ }
210
+ table {
211
+ /* border-left: 10px solid #ffffff; */
212
+ /* border-right: 10px solid #ffffff; */
213
+ /* margin: 0 10px 0 10px; */
214
+ margin: 0;
215
+ }
216
+ thead {
217
+ }
218
+ tfoot {
219
+ }
220
+ tr, th, td {
221
+ padding: 2px;
222
+ border: 1px solid #ffffff;
223
+ }
224
+ tr {
225
+ }
226
+ tr.head {
227
+ }
228
+ tr.foot {
229
+ }
230
+ tr.high {
231
+ }
232
+ th {
233
+ }
234
+ td {
235
+ }
236
+ td.head {
237
+ }
238
+ td.foot {
239
+ }
240
+ td.high {
241
+ }
242
+
243
+ /* Styled Tables */
244
+ .small {
245
+ }
246
+ .scriptsize {
247
+ }
248
+ .footnotesize {
249
+ }
250
+
251
+ .grid {
252
+ background-color:#ffffff;
253
+ border-collapse: collapse;
254
+ }
255
+ div.grid {
256
+ border: 0;
257
+ }
258
+ th.grid, td.grid {
259
+ border: 1px solid #000000;
260
+ padding: 2px;
261
+ }
262
+
263
+ .formal {
264
+ background-color:#ffffff;
265
+ }
266
+ div.formal {
267
+ border: 0;
268
+ }
269
+ table.formal {
270
+ border-top: 2px solid #000000;
271
+ border-bottom: 2px solid #000000;
272
+ border-left: 0;
273
+ border-right: 0;
274
+ }
275
+ thead.formal {
276
+ }
277
+ tfoot.formal {
278
+ }
279
+ tr.formal[class~="head"] {
280
+ }
281
+ tr.formal[class~="foot"] {
282
+ }
283
+ td.formal, th.formal {
284
+ border: 0;
285
+ padding: 2px;
286
+ }
287
+ th.formal[class~="head"] {
288
+ border-bottom: 1px solid #000000;
289
+ }
290
+ td.formal[class~="foot"] {
291
+ border-top: 1px solid #000000;
292
+ }
293
+
294
+ .box {
295
+ background-color:#ffffff;
296
+ }
297
+ div.box {
298
+ border: 0;
299
+ }
300
+ table.box {
301
+ border: 1px solid #000000;
302
+ }
303
+ thead.box, tfoot.box {
304
+ border: 1px solid #000000;
305
+ }
306
+ td.box, th.box {
307
+ border: 0;
308
+ padding: 2px;
309
+ }
310
+ th.box[class~="head"] {
311
+ border-bottom: 1px solid #000000;
312
+ }
313
+ td.box[class~="foot"] {
314
+ border-top: 1px solid #000000;
315
+ }
316
+ td.box[class~="high"] {
317
+ border-left: 1px solid #000000;
318
+ border-right: 1px solid #000000;
319
+ }
320
+
321
+ .overlay {
322
+ background-color:#ffffff;
323
+ }
324
+ div.overlay {
325
+ border: 0;
326
+ }
327
+ table.overlay {
328
+ border: 1px solid #000000;
329
+ }
330
+ thead.overlay {
331
+ background-color: #e0e0e0;
332
+ border: 1px solid #000000;
333
+ }
334
+ tfoot.overlay {
335
+ background-color: #eaeaea;
336
+ border: 1px solid #000000;
337
+ }
338
+ tr.overlay[class~="head"] {
339
+ }
340
+ td.overlay, th.overlay {
341
+ border: 0;
342
+ padding: 2px;
343
+ }
344
+ th.overlay[class~="head"] {
345
+ background-color: #e0e0e0;
346
+ border-bottom: 1px solid #000000;
347
+ }
348
+ td.overlay[class~="foot"] {
349
+ background-color: #eaeaea;
350
+ border-top: 1px solid #000000;
351
+ }
352
+ td.overlay[class~="high"] {
353
+ border-left: 1px solid #000000;
354
+ border-right: 1px solid #000000;
355
+ background-color: #eaeaea;
356
+ }
357
+
358
+
359
+ /* htmlnavigation: Usage note */
360
+ .htmlnavigationnote {
361
+ color: #888888;
362
+ }
363
+ p.htmlnavigationnote {
364
+ }
365
+ ul.htmlnavigationnote {
366
+ }
367
+ li.htmlnavigationnote {
368
+ }
369
+ hr.htmlnavigationnote {
370
+ margin-top: 20px;
371
+ /* border: 1px; */
372
+ }
373
+
374
+
375
+ /* Navigation bar */
376
+ a:link.navbarUrl, a:visited.navbarUrl {
377
+ color : #7f607f;
378
+ }
379
+ a:link.navbarUrl {
380
+ }
381
+ a:visited.navbarUrl {
382
+ }
383
+ .navbar, .navmenu, .navgo {
384
+ background: #ffffff;
385
+ vertical-align: middle;
386
+ }
387
+ table.navbar {
388
+ width: 100%;
389
+ margin: 20px 0 20px 0;
390
+ }
391
+ td.navbar {
392
+ text-align: center;
393
+ }
394
+ td.navmenu {
395
+ width: 80%;
396
+ text-align: left;
397
+ }
398
+ select.navmenu {
399
+ width:250px;
400
+ border:0;
401
+ }
402
+ p.navgo {
403
+ border: 0;
404
+ padding: 0;
405
+ margin: 0;
406
+ }
407
+ button.navgo {
408
+ border: 0;
409
+ }
410
+
411
+
412
+ /* Figure */
413
+ div.figure {
414
+ text-align: center;
415
+ padding: 20px;
416
+ }
417
+
418
+
419
+ /* Caption */
420
+ caption {
421
+ }
422
+ p.caption {
423
+ }
424
+
425
+
426
+ /* Title */
427
+ div.title {
428
+ text-align: left;
429
+ padding: 20px;
430
+ margin: 20px 0 20px 0;
431
+ border-top: 1px solid #ffe590;
432
+ border-right: 10px solid #ffe590;
433
+ border-left: 1px solid #ffe590;
434
+ border-bottom: 5px solid #ffe590;
435
+ background-color: #fff3d0;
436
+ }
437
+ p.title, p.author, p.authornote, p.date {
438
+ margin: 0;
439
+ border: 0;
440
+ }
441
+ p.title {
442
+ }
443
+ p.author {
444
+ }
445
+ p.authornote {
446
+ }
447
+ p.date {
448
+ }
449
+ hr.title {
450
+ color: #f1f08f;
451
+ background-color: #e4f8fc;
452
+ border: 1px solid #f1f08f;
453
+ padding: 1px;
454
+ margin: 0 45% 0 45%;
455
+ }
456
+
457
+
458
+ /* Table of Contents etc. */
459
+ div.toc, div.lot, div.lof {
460
+ }
461
+ ul.toc, ul.lot, ul.lof {
462
+ }
463
+ li.toc, li.lot, li.lof {
464
+ list-style-type : none;
465
+ padding: 1px;
466
+ }
467
+
468
+ div.toc {
469
+ }
470
+ p.toc {
471
+ }
472
+ ul.toc, li.toc {
473
+ }
474
+ ul.toc {
475
+ }
476
+ li.toc {
477
+ }
478
+
479
+ div.lot {
480
+ }
481
+ p.lot {
482
+ }
483
+ ul.lot, li.lot {
484
+ }
485
+ ul.lot {
486
+ }
487
+ li.lot {
488
+ }
489
+
490
+ div.lof {
491
+ }
492
+ p.lof {
493
+ }
494
+ ul.lof, li.lof {
495
+ }
496
+ ul.lof {
497
+ }
498
+ li.lof {
499
+ }
500
+ hr.list {
501
+ color:#f1f08f;
502
+ background-color: #e4f8fc;
503
+ border:1px solid #f1f08f;
504
+ padding: 1px;
505
+ margin: 0 45% 0 45%;
506
+ }
507
+
508
+ div#List_of_Examples * li {
509
+ list-style-type : none;
510
+ padding: 1px;
511
+ }
512
+
513
+ /* Mini Table of Contents */
514
+ #Contents {
515
+ position: absolute;
516
+ top:50px;
517
+ left:0px;
518
+ padding:0px;
519
+ visibility:hidden;
520
+ margin:0px;
521
+ }
522
+ #ContentsBlock {
523
+ position: absolute;
524
+ top:30px;
525
+ left:0px;
526
+ padding:0px;
527
+ }
528
+ div.minitoc {
529
+ max-height: 500px;
530
+ background: #f1f1f1;
531
+ border-top: 1px solid #e0e0e0;
532
+ border-bottom: 1px solid #e0e0e0;
533
+ border-right: 1px solid #e0e0e0;
534
+ }
535
+ h1.minitoc {
536
+ margin: 0;
537
+ padding: 5px;
538
+ border: 0;
539
+ }
540
+ ul.minitoc {
541
+ }
542
+ li.minitoc {
543
+ }
544
+
545
+
546
+ /* Footnotes */
547
+ a:link.footnote, a:visited.footnote {
548
+ vertical-align: top;
549
+ }
550
+ a:link.footnote {
551
+ }
552
+ a:visited.footnote {
553
+ }
554
+ div.footnotes {
555
+ border-top: 1px dashed #888888;
556
+ margin-top: 30px;
557
+ padding-top: 10px;
558
+ }
559
+ p.footnotes {
560
+ border-top: 1px solid #ffe590;
561
+ padding-top: 10px;
562
+ margin: 40px 40% 0 0;
563
+ }
564
+ ol.footnotes {
565
+ }
566
+ li.footnotes {
567
+ }
568
+
569
+
570
+ /* OpenOffice compatible footnotes */
571
+ .sdfootnoteanc {
572
+ vertical-align: top;
573
+ color: #30306f;
574
+ }
575
+ .sdfootnotesym {
576
+ background-color: #e4f8fc;
577
+ vertical-align: top;
578
+ color: #30306f;
579
+ margin-right: 4px;
580
+ }
581
+
582
+ p.sdfootnote {
583
+ /* margin-left: 5%; */
584
+ /* margin-right: 5%; */
585
+ }
586
+
587
+
588
+ /* Bibliography */
589
+ .bib, .bibLef, .bibRight {
590
+ background-color:#ffffff;
591
+ }
592
+ table.bib {
593
+ width: 100%;
594
+ }
595
+ td.bibLeft {
596
+ }
597
+ td.bib {
598
+ }
599
+ td.bibRight {
600
+ }
601
+ h1.bib {
602
+ }
603
+ p.bib {
604
+ margin-left: 20px;
605
+ text-indent: -20px;
606
+ }
607
+
608
+
609
+ /* Index */
610
+ h2.index {
611
+ }
612
+ p.indextoc {
613
+ }
614
+ dl.index {
615
+ }
616
+ dt.index {
617
+ }
618
+ dd.index {
619
+ }
620
+
621
+
622
+ /* Marker */
623
+ div.note, div.warning, div.caution, div.important {
624
+ /* position: absolute; */
625
+ /* left: 720px; */
626
+ /* width: 100px; */
627
+ /* background-color: #eaeaea; */
628
+ /* background-color: #ffe590; */
629
+ background-color: #fff3d0;
630
+ /* background-color: #ffff00; */
631
+ }
632
+ p.note, p.warning, p.caution, p.important {
633
+ padding: 5px;
634
+ margin: 0;
635
+ }
636
+ p.note {
637
+ border-left: 10px solid #ffff00;
638
+ border-right: 10px solid #ffff00;
639
+ }
640
+ p.warning {
641
+ border-left: 10px solid #cf0000;
642
+ border-right: 10px solid #cf0000;
643
+ }
644
+ p.caution {
645
+ border-left: 10px solid #ef4f00;
646
+ border-right: 10px solid #ef4f00;
647
+ }
648
+ p.important {
649
+ border-left: 10px solid #009f9f;
650
+ border-right: 10px solid #009f9f;
651
+ }
652
+
653
+ em.marker {
654
+ color : #910000;
655
+ background-color: #ffff00;
656
+ }
657
+ span.marker {
658
+ position: absolute;
659
+ left: -25px;
660
+ width: 60px;
661
+ text-align: right;
662
+ }
663
+
664
+
665
+ /* Header, Footer */
666
+ .header, .footer {
667
+ margin: 20px 0 20px 0;
668
+ background-color: #eeeeee;
669
+ border: 0;
670
+ text-align: right;
671
+ vertical-align: middle;
672
+ }
673
+ div.header, div.footer {
674
+ }
675
+ table.header, table.footer {
676
+ width: 100%;
677
+ }
678
+ thead.header, thead.footer {
679
+ }
680
+ tr.header, tr.footer {
681
+ }
682
+ th.header, th.footer {
683
+ }
684
+ td.header, td.footer {
685
+ }
686
+ p.header, p.footer {
687
+ }
688
+
689
+ /* Validate HTML */
690
+ div.pageicons {
691
+ text-align: right;
692
+ margin: 10px;
693
+ }
694
+ .validhtml {
695
+ background-color:#ffffff;
696
+ }
697
+ table.validhtml {
698
+ }
699
+ tr.validhtml {
700
+ }
701
+ td.validhtml {
702
+ }
703
+
704
+
705
+ /* ProgressBar */
706
+ .progressBar {
707
+ max-width: 150px;
708
+ }
709
+ div.progressBar {
710
+ background-color: #dfdfff;
711
+ text-align: center;
712
+ vertical-align: middle;
713
+ padding-top: 10px;
714
+ padding-bottom: 10px;
715
+ }
716
+ table.progressBar {
717
+ table-layout: fixed;
718
+ min-width: 130px;
719
+ border: 1px solid #30306f;
720
+ padding: 0;
721
+ margin: 2px 4px 2px 4px;
722
+ }
723
+ td.progressBarDone, tr.progressBarDone {
724
+ border: 0;
725
+ background-color: #ffe590;
726
+ }
727
+ td.progressBarToBeDone, tr.progressBarToBeDone {
728
+ border: 0;
729
+ background-color: #dfdfff;
730
+ }
731
+ span.progress {
732
+ color: #30306f;
733
+ }
734
+
735
+ li.todo[class~="plus"] {
736
+ list-style-type: none;
737
+ }
738
+ li.todo[class~="plus"]:before {
739
+ font-weight: bold;
740
+ content: "[TODO]";
741
+ color: #ff0000;
742
+ background-color: #ffff00;
743
+ }
744
+ li.todo[class~="dash"] {
745
+ list-style-type: none;
746
+ text-decoration:line-through;
747
+ color: #555555;
748
+ }
749
+ li.todo[class~="dash"]:before {
750
+ font-weight: bold;
751
+ content: "[DONE]";
752
+ }
753
+
754
+ iframe {
755
+ border: 0;
756
+ }
757
+
758
+ .bold {
759
+ font-weight: bold;
760
+ font-style: normal;
761
+ }
762
+
763
+ p.comments {
764
+ text-align: right;
765
+ }
766
+
767
+ .centered {
768
+ text-align: center;
769
+ }
770
+