metanorma-iec 1.2.6 → 1.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +62 -0
- data/README.adoc +3 -4
- data/lib/asciidoctor/iec/basicdoc.rng +50 -3
- data/lib/asciidoctor/iec/converter.rb +6 -1
- data/lib/asciidoctor/iec/front.rb +13 -0
- data/lib/asciidoctor/iec/iec.rng +55 -1
- data/lib/asciidoctor/iec/iec_intro_en.xml +82 -53
- data/lib/asciidoctor/iec/iec_intro_fr.xml +44 -20
- data/lib/asciidoctor/iec/isodoc.rng +36 -43
- data/lib/asciidoctor/iec/isostandard.rng +11 -0
- data/lib/isodoc/iec/html/htmlstyle.css +9 -5
- data/lib/isodoc/iec/html/htmlstyle.scss +4 -4
- data/lib/isodoc/iec/html/isodoc.css +79 -79
- data/lib/isodoc/iec/html/isodoc.scss +79 -79
- data/lib/isodoc/iec/html/wordstyle.css +120 -120
- data/lib/isodoc/iec/html/wordstyle.scss +120 -120
- data/lib/isodoc/iec/html_convert.rb +8 -0
- data/lib/isodoc/iec/i18n-en.yaml +17 -0
- data/lib/isodoc/iec/i18n-fr.yaml +18 -0
- data/lib/isodoc/iec/iec.international-standard.xsl +827 -384
- data/lib/isodoc/iec/metadata.rb +33 -0
- data/lib/isodoc/iec/presentation_xml_convert.rb +12 -0
- data/lib/isodoc/iec/word_convert.rb +10 -0
- data/lib/metanorma/iec/processor.rb +11 -8
- data/lib/metanorma/iec/version.rb +1 -1
- data/metanorma-iec.gemspec +1 -2
- data/spec/asciidoctor-iec/base_spec.rb +24 -1
- data/spec/asciidoctor-iec/blocks_spec.rb +1 -1
- data/spec/asciidoctor-iec/cleanup_spec.rb +7 -86
- data/spec/asciidoctor-iec/iev_spec.rb +3 -0
- data/spec/asciidoctor-iec/lists_spec.rb +6 -6
- data/spec/asciidoctor-iec/validate_spec.rb +15 -0
- data/spec/isodoc/i18n_spec.rb +36 -16
- data/spec/isodoc/iev_spec.rb +9 -65
- data/spec/isodoc/iso_spec.rb +2 -2
- data/spec/isodoc/metadata_spec.rb +57 -3
- data/spec/isodoc/ref_spec.rb +4 -7
- data/spec/spec_helper.rb +4 -1
- metadata +5 -21
- data/.github/workflows/macos.yml +0 -38
- data/.github/workflows/ubuntu.yml +0 -56
- data/.github/workflows/windows.yml +0 -40
@@ -84,13 +84,13 @@ p.MsoNormal, li.MsoNormal, div.MsoNormal {
|
|
84
84
|
mso-style-link: "PARAGRAPH Char";
|
85
85
|
margin-top: 5.0pt;
|
86
86
|
margin-right: 0cm;
|
87
|
-
margin-bottom:
|
87
|
+
margin-bottom: {{normalfontsize}};
|
88
88
|
margin-left: 0cm;
|
89
89
|
text-align: justify;
|
90
90
|
mso-pagination: widow-orphan;
|
91
91
|
layout-grid-mode: char;
|
92
|
-
font-size:
|
93
|
-
font-family:
|
92
|
+
font-size: {{normalfontsize}};
|
93
|
+
font-family: {{bodyfont}};
|
94
94
|
mso-fareast-font-family: "Times New Roman";
|
95
95
|
letter-spacing: .4pt;
|
96
96
|
mso-ansi-language: EN-GB;
|
@@ -106,8 +106,8 @@ p.MsoNormalIndent, li.MsoNormalIndent, div.MsoNormalIndent {
|
|
106
106
|
margin-bottom: .0001pt;
|
107
107
|
text-align: justify;
|
108
108
|
mso-pagination: widow-orphan;
|
109
|
-
font-size:
|
110
|
-
font-family:
|
109
|
+
font-size: {{normalfontsize}};
|
110
|
+
font-family: {{bodyfont}};
|
111
111
|
mso-fareast-font-family: "Times New Roman";
|
112
112
|
letter-spacing: .4pt;
|
113
113
|
mso-ansi-language: EN-GB;
|
@@ -123,8 +123,8 @@ p.MsoBlockText, li.MsoBlockText, div.MsoBlockText {
|
|
123
123
|
margin-left: 72.0pt;
|
124
124
|
text-align: justify;
|
125
125
|
mso-pagination: widow-orphan;
|
126
|
-
font-size:
|
127
|
-
font-family:
|
126
|
+
font-size: {{normalfontsize}};
|
127
|
+
font-family: {{bodyfont}};
|
128
128
|
mso-fareast-font-family: "Times New Roman";
|
129
129
|
letter-spacing: .4pt;
|
130
130
|
mso-ansi-language: EN-GB;
|
@@ -142,8 +142,8 @@ p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph {
|
|
142
142
|
margin-bottom: .0001pt;
|
143
143
|
text-align: justify;
|
144
144
|
mso-pagination: widow-orphan;
|
145
|
-
font-size:
|
146
|
-
font-family:
|
145
|
+
font-size: {{normalfontsize}};
|
146
|
+
font-family: {{bodyfont}};
|
147
147
|
mso-fareast-font-family: "Times New Roman";
|
148
148
|
letter-spacing: .4pt;
|
149
149
|
mso-ansi-language: EN-GB;
|
@@ -161,8 +161,8 @@ p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphC
|
|
161
161
|
margin-bottom: .0001pt;
|
162
162
|
text-align: justify;
|
163
163
|
mso-pagination: widow-orphan;
|
164
|
-
font-size:
|
165
|
-
font-family:
|
164
|
+
font-size: {{normalfontsize}};
|
165
|
+
font-family: {{bodyfont}};
|
166
166
|
mso-fareast-font-family: "Times New Roman";
|
167
167
|
letter-spacing: .4pt;
|
168
168
|
mso-ansi-language: EN-GB;
|
@@ -179,8 +179,8 @@ p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagrap
|
|
179
179
|
margin-bottom: .0001pt;
|
180
180
|
text-align: justify;
|
181
181
|
mso-pagination: widow-orphan;
|
182
|
-
font-size:
|
183
|
-
font-family:
|
182
|
+
font-size: {{normalfontsize}};
|
183
|
+
font-family: {{bodyfont}};
|
184
184
|
mso-fareast-font-family: "Times New Roman";
|
185
185
|
letter-spacing: .4pt;
|
186
186
|
mso-ansi-language: EN-GB;
|
@@ -197,8 +197,8 @@ p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxS
|
|
197
197
|
margin-bottom: .0001pt;
|
198
198
|
text-align: justify;
|
199
199
|
mso-pagination: widow-orphan;
|
200
|
-
font-size:
|
201
|
-
font-family:
|
200
|
+
font-size: {{normalfontsize}};
|
201
|
+
font-family: {{bodyfont}};
|
202
202
|
mso-fareast-font-family: "Times New Roman";
|
203
203
|
letter-spacing: .4pt;
|
204
204
|
mso-ansi-language: EN-GB;
|
@@ -212,9 +212,9 @@ h1.main {
|
|
212
212
|
mso-style-qformat: yes;
|
213
213
|
mso-style-parent: Normal;
|
214
214
|
mso-style-next: Normal;
|
215
|
-
margin-top:
|
215
|
+
margin-top: {{normalfontsize}};
|
216
216
|
margin-right: 0cm;
|
217
|
-
margin-bottom:
|
217
|
+
margin-bottom: {{normalfontsize}};
|
218
218
|
margin-left: 19.85pt;
|
219
219
|
text-align: left;
|
220
220
|
text-indent: -19.85pt;
|
@@ -226,7 +226,7 @@ h1.main {
|
|
226
226
|
tab-stops: list 19.85pt;
|
227
227
|
layout-grid-mode: char;
|
228
228
|
font-size: 11.0pt;
|
229
|
-
font-family:
|
229
|
+
font-family: {{headerfont}};
|
230
230
|
letter-spacing: .4pt;
|
231
231
|
mso-font-kerning: 0pt;
|
232
232
|
mso-ansi-language: EN-GB;
|
@@ -242,7 +242,7 @@ h1.Annex {
|
|
242
242
|
mso-style-next: ANNEX-heading1;
|
243
243
|
margin-top: 0cm;
|
244
244
|
margin-right: 0cm;
|
245
|
-
margin-bottom:
|
245
|
+
margin-bottom: {{normalfontsize}};
|
246
246
|
margin-left: 0cm;
|
247
247
|
text-align: center;
|
248
248
|
/* text-indent:25.5pt; */
|
@@ -252,7 +252,7 @@ h1.Annex {
|
|
252
252
|
mso-list: l4 level1 lfo19;
|
253
253
|
layout-grid-mode: char;
|
254
254
|
font-size: 12.0pt;
|
255
|
-
font-family:
|
255
|
+
font-family: {{headerfont}};
|
256
256
|
mso-fareast-font-family: "Times New Roman";
|
257
257
|
letter-spacing: .4pt;
|
258
258
|
mso-ansi-language: EN-GB;
|
@@ -280,8 +280,8 @@ h1
|
|
280
280
|
mso-hyphenate: none;
|
281
281
|
tab-stops: list 31.2pt;
|
282
282
|
layout-grid-mode: char;
|
283
|
-
font-size:
|
284
|
-
font-family:
|
283
|
+
font-size: {{normalfontsize}};
|
284
|
+
font-family: {{headerfont}};
|
285
285
|
letter-spacing: .4pt;
|
286
286
|
mso-ansi-language: EN-GB;
|
287
287
|
mso-fareast-language: ZH-CN;
|
@@ -307,8 +307,8 @@ h2 {
|
|
307
307
|
mso-hyphenate: none;
|
308
308
|
tab-stops: list 42.55pt;
|
309
309
|
layout-grid-mode: char;
|
310
|
-
font-size:
|
311
|
-
font-family:
|
310
|
+
font-size: {{normalfontsize}};
|
311
|
+
font-family: {{headerfont}};
|
312
312
|
letter-spacing: .4pt;
|
313
313
|
mso-ansi-language: EN-GB;
|
314
314
|
mso-fareast-language: ZH-CN;
|
@@ -334,8 +334,8 @@ h3 {
|
|
334
334
|
mso-hyphenate: none;
|
335
335
|
tab-stops: list 53.85pt;
|
336
336
|
layout-grid-mode: char;
|
337
|
-
font-size:
|
338
|
-
font-family:
|
337
|
+
font-size: {{normalfontsize}};
|
338
|
+
font-family: {{headerfont}};
|
339
339
|
letter-spacing: .4pt;
|
340
340
|
mso-ansi-language: EN-GB;
|
341
341
|
mso-fareast-language: ZH-CN;
|
@@ -361,8 +361,8 @@ h4 {
|
|
361
361
|
mso-hyphenate: none;
|
362
362
|
tab-stops: list 65.2pt;
|
363
363
|
layout-grid-mode: char;
|
364
|
-
font-size:
|
365
|
-
font-family:
|
364
|
+
font-size: {{normalfontsize}};
|
365
|
+
font-family: {{headerfont}};
|
366
366
|
letter-spacing: .4pt;
|
367
367
|
mso-ansi-language: EN-GB;
|
368
368
|
mso-fareast-language: ZH-CN;
|
@@ -388,8 +388,8 @@ h6 {
|
|
388
388
|
mso-hyphenate: none;
|
389
389
|
tab-stops: list 76.55pt;
|
390
390
|
layout-grid-mode: char;
|
391
|
-
font-size:
|
392
|
-
font-family:
|
391
|
+
font-size: {{normalfontsize}};
|
392
|
+
font-family: {{headerfont}};
|
393
393
|
letter-spacing: .4pt;
|
394
394
|
mso-ansi-language: EN-GB;
|
395
395
|
mso-fareast-language: ZH-CN;
|
@@ -416,8 +416,8 @@ p.MsoHeading7, li.MsoHeading7, div.MsoHeading7 {
|
|
416
416
|
mso-hyphenate: none;
|
417
417
|
tab-stops: list 87.9pt;
|
418
418
|
layout-grid-mode: char;
|
419
|
-
font-size:
|
420
|
-
font-family:
|
419
|
+
font-size: {{normalfontsize}};
|
420
|
+
font-family: {{headerfont}};
|
421
421
|
mso-fareast-font-family: "Times New Roman";
|
422
422
|
letter-spacing: .4pt;
|
423
423
|
mso-ansi-language: EN-GB;
|
@@ -444,8 +444,8 @@ p.MsoHeading8, li.MsoHeading8, div.MsoHeading8 {
|
|
444
444
|
mso-hyphenate: none;
|
445
445
|
tab-stops: list 99.25pt;
|
446
446
|
layout-grid-mode: char;
|
447
|
-
font-size:
|
448
|
-
font-family:
|
447
|
+
font-size: {{normalfontsize}};
|
448
|
+
font-family: {{headerfont}};
|
449
449
|
mso-fareast-font-family: "Times New Roman";
|
450
450
|
letter-spacing: .4pt;
|
451
451
|
mso-ansi-language: EN-GB;
|
@@ -472,8 +472,8 @@ p.MsoHeading9, li.MsoHeading9, div.MsoHeading9 {
|
|
472
472
|
mso-hyphenate: none;
|
473
473
|
tab-stops: list 110.55pt;
|
474
474
|
layout-grid-mode: char;
|
475
|
-
font-size:
|
476
|
-
font-family:
|
475
|
+
font-size: {{normalfontsize}};
|
476
|
+
font-family: {{headerfont}};
|
477
477
|
mso-fareast-font-family: "Times New Roman";
|
478
478
|
letter-spacing: .4pt;
|
479
479
|
mso-ansi-language: EN-GB;
|
@@ -496,8 +496,8 @@ p.MsoToc1, li.MsoToc1, div.MsoToc1 {
|
|
496
496
|
mso-hyphenate: none;
|
497
497
|
tab-stops: 22.7pt right dotted 453.5pt;
|
498
498
|
layout-grid-mode: char;
|
499
|
-
font-size:
|
500
|
-
font-family:
|
499
|
+
font-size: {{normalfontsize}};
|
500
|
+
font-family: {{headerfont}};
|
501
501
|
mso-fareast-font-family: "Times New Roman";
|
502
502
|
letter-spacing: .4pt;
|
503
503
|
mso-ansi-language: EN-GB;
|
@@ -518,8 +518,8 @@ p.MsoToc2, li.MsoToc2, div.MsoToc2 {
|
|
518
518
|
mso-hyphenate: none;
|
519
519
|
tab-stops: 49.65pt right dotted 453.5pt;
|
520
520
|
layout-grid-mode: char;
|
521
|
-
font-size:
|
522
|
-
font-family:
|
521
|
+
font-size: {{normalfontsize}};
|
522
|
+
font-family: {{headerfont}};
|
523
523
|
mso-fareast-font-family: "Times New Roman";
|
524
524
|
letter-spacing: .4pt;
|
525
525
|
mso-ansi-language: EN-GB;
|
@@ -540,8 +540,8 @@ p.MsoToc3, li.MsoToc3, div.MsoToc3 {
|
|
540
540
|
mso-hyphenate: none;
|
541
541
|
tab-stops: 78.0pt right dotted 453.5pt;
|
542
542
|
layout-grid-mode: char;
|
543
|
-
font-size:
|
544
|
-
font-family:
|
543
|
+
font-size: {{normalfontsize}};
|
544
|
+
font-family: {{headerfont}};
|
545
545
|
mso-fareast-font-family: "Times New Roman";
|
546
546
|
letter-spacing: .4pt;
|
547
547
|
mso-ansi-language: EN-GB;
|
@@ -562,8 +562,8 @@ p.MsoToc4, li.MsoToc4, div.MsoToc4 {
|
|
562
562
|
mso-hyphenate: none;
|
563
563
|
tab-stops: 78.0pt 130.4pt right dotted 453.5pt;
|
564
564
|
layout-grid-mode: char;
|
565
|
-
font-size:
|
566
|
-
font-family:
|
565
|
+
font-size: {{normalfontsize}};
|
566
|
+
font-family: {{headerfont}};
|
567
567
|
mso-fareast-font-family: "Times New Roman";
|
568
568
|
letter-spacing: .4pt;
|
569
569
|
mso-ansi-language: EN-GB;
|
@@ -584,8 +584,8 @@ p.MsoToc5, li.MsoToc5, div.MsoToc5 {
|
|
584
584
|
mso-hyphenate: none;
|
585
585
|
tab-stops: 78.0pt 184.3pt right dotted 453.5pt;
|
586
586
|
layout-grid-mode: char;
|
587
|
-
font-size:
|
588
|
-
font-family:
|
587
|
+
font-size: {{normalfontsize}};
|
588
|
+
font-family: {{headerfont}};
|
589
589
|
mso-fareast-font-family: "Times New Roman";
|
590
590
|
letter-spacing: .4pt;
|
591
591
|
mso-ansi-language: EN-GB;
|
@@ -606,8 +606,8 @@ p.MsoToc6, li.MsoToc6, div.MsoToc6 {
|
|
606
606
|
mso-hyphenate: none;
|
607
607
|
tab-stops: 78.0pt 246.65pt right dotted 453.5pt;
|
608
608
|
layout-grid-mode: char;
|
609
|
-
font-size:
|
610
|
-
font-family:
|
609
|
+
font-size: {{normalfontsize}};
|
610
|
+
font-family: {{headerfont}};
|
611
611
|
mso-fareast-font-family: "Times New Roman";
|
612
612
|
letter-spacing: .4pt;
|
613
613
|
mso-ansi-language: EN-GB;
|
@@ -628,8 +628,8 @@ p.MsoToc7, li.MsoToc7, div.MsoToc7 {
|
|
628
628
|
mso-hyphenate: none;
|
629
629
|
tab-stops: 22.7pt right 453.5pt;
|
630
630
|
layout-grid-mode: char;
|
631
|
-
font-size:
|
632
|
-
font-family:
|
631
|
+
font-size: {{normalfontsize}};
|
632
|
+
font-family: {{headerfont}};
|
633
633
|
mso-fareast-font-family: "Times New Roman";
|
634
634
|
letter-spacing: .4pt;
|
635
635
|
mso-ansi-language: EN-GB;
|
@@ -650,8 +650,8 @@ p.MsoToc8, li.MsoToc8, div.MsoToc8 {
|
|
650
650
|
mso-hyphenate: none;
|
651
651
|
tab-stops: 22.7pt right dotted 453.5pt;
|
652
652
|
layout-grid-mode: char;
|
653
|
-
font-size:
|
654
|
-
font-family:
|
653
|
+
font-size: {{normalfontsize}};
|
654
|
+
font-family: {{headerfont}};
|
655
655
|
mso-fareast-font-family: "Times New Roman";
|
656
656
|
letter-spacing: .4pt;
|
657
657
|
mso-ansi-language: EN-GB;
|
@@ -672,8 +672,8 @@ p.MsoToc9, li.MsoToc9, div.MsoToc9 {
|
|
672
672
|
mso-hyphenate: none;
|
673
673
|
tab-stops: 22.7pt right dotted 453.5pt;
|
674
674
|
layout-grid-mode: char;
|
675
|
-
font-size:
|
676
|
-
font-family:
|
675
|
+
font-size: {{normalfontsize}};
|
676
|
+
font-family: {{headerfont}};
|
677
677
|
mso-fareast-font-family: "Times New Roman";
|
678
678
|
letter-spacing: .4pt;
|
679
679
|
mso-ansi-language: EN-GB;
|
@@ -688,8 +688,8 @@ p.MsoHeader, li.MsoHeader, div.MsoHeader {
|
|
688
688
|
mso-pagination: widow-orphan;
|
689
689
|
tab-stops: center 8.0cm right 16.0cm;
|
690
690
|
layout-grid-mode: char;
|
691
|
-
font-size:
|
692
|
-
font-family:
|
691
|
+
font-size: {{normalfontsize}};
|
692
|
+
font-family: {{headerfont}};
|
693
693
|
mso-fareast-font-family: "Times New Roman";
|
694
694
|
letter-spacing: .4pt;
|
695
695
|
mso-ansi-language: EN-GB;
|
@@ -703,8 +703,8 @@ p.MsoHeaderLandscape, li.MsoHeaderLandscape, div.MsoHeaderLandscape {
|
|
703
703
|
mso-pagination: widow-orphan;
|
704
704
|
tab-stops: center 331.0pt right 662.0pt;
|
705
705
|
layout-grid-mode: char;
|
706
|
-
font-size:
|
707
|
-
font-family:
|
706
|
+
font-size: {{normalfontsize}};
|
707
|
+
font-family: {{headerfont}};
|
708
708
|
mso-fareast-font-family: "Times New Roman";
|
709
709
|
letter-spacing: .4pt;
|
710
710
|
mso-ansi-language: EN-GB;
|
@@ -721,8 +721,8 @@ p.MsoFooter, li.MsoFooter, div.MsoFooter {
|
|
721
721
|
mso-pagination: widow-orphan;
|
722
722
|
tab-stops: center 8.0cm right 16.0cm;
|
723
723
|
layout-grid-mode: char;
|
724
|
-
font-size:
|
725
|
-
font-family:
|
724
|
+
font-size: {{normalfontsize}};
|
725
|
+
font-family: {{headerfont}};
|
726
726
|
mso-fareast-font-family: "Times New Roman";
|
727
727
|
letter-spacing: .4pt;
|
728
728
|
mso-ansi-language: EN-GB;
|
@@ -739,8 +739,8 @@ p.MsoFooterLandscape, li.MsoFooterLandscape, div.MsoFooterLandscape {
|
|
739
739
|
mso-pagination: widow-orphan;
|
740
740
|
tab-stops: center 331.0pt right 662.0pt;
|
741
741
|
layout-grid-mode: char;
|
742
|
-
font-size:
|
743
|
-
font-family:
|
742
|
+
font-size: {{normalfontsize}};
|
743
|
+
font-family: {{headerfont}};
|
744
744
|
mso-fareast-font-family: "Times New Roman";
|
745
745
|
letter-spacing: .4pt;
|
746
746
|
mso-ansi-language: EN-GB;
|
@@ -752,7 +752,7 @@ span.MsoFootnoteReference {
|
|
752
752
|
mso-style-parent: "";
|
753
753
|
mso-ansi-font-size: 8.0pt;
|
754
754
|
mso-bidi-font-size: 8.0pt;
|
755
|
-
font-family:
|
755
|
+
font-family: {{bodyfont}};
|
756
756
|
mso-ascii-font-family: Arial;
|
757
757
|
mso-hansi-font-family: Arial;
|
758
758
|
position: relative;
|
@@ -771,8 +771,8 @@ p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText {
|
|
771
771
|
text-indent: -14.2pt;
|
772
772
|
mso-pagination: widow-orphan;
|
773
773
|
layout-grid-mode: char;
|
774
|
-
font-size:
|
775
|
-
font-family:
|
774
|
+
font-size: {{footnotefontsize}};
|
775
|
+
font-family: {{bodyfont}};
|
776
776
|
mso-fareast-font-family: "Times New Roman";
|
777
777
|
letter-spacing: .4pt;
|
778
778
|
mso-ansi-language: EN-GB;
|
@@ -803,7 +803,7 @@ span.Heading1Char {
|
|
803
803
|
mso-style-link: "Heading 1";
|
804
804
|
mso-ansi-font-size: 11.0pt;
|
805
805
|
font-size: 11.0pt;
|
806
|
-
font-family:
|
806
|
+
font-family: {{headerfont}};
|
807
807
|
letter-spacing: .4pt;
|
808
808
|
mso-font-kerning: 0pt;
|
809
809
|
mso-ansi-language: EN-GB;
|
@@ -817,9 +817,9 @@ span.Heading2Char {
|
|
817
817
|
mso-style-locked: yes;
|
818
818
|
mso-style-parent: "";
|
819
819
|
mso-style-link: "Heading 2";
|
820
|
-
mso-ansi-font-size:
|
821
|
-
font-size:
|
822
|
-
font-family:
|
820
|
+
mso-ansi-font-size: {{normalfontsize}};
|
821
|
+
font-size: {{normalfontsize}};
|
822
|
+
font-family: {{headerfont}};
|
823
823
|
letter-spacing: .4pt;
|
824
824
|
mso-ansi-language: EN-GB;
|
825
825
|
mso-fareast-language: ZH-CN;
|
@@ -832,9 +832,9 @@ span.Heading3Char {
|
|
832
832
|
mso-style-locked: yes;
|
833
833
|
mso-style-parent: "";
|
834
834
|
mso-style-link: "Heading 3";
|
835
|
-
mso-ansi-font-size:
|
836
|
-
font-size:
|
837
|
-
font-family:
|
835
|
+
mso-ansi-font-size: {{normalfontsize}};
|
836
|
+
font-size: {{normalfontsize}};
|
837
|
+
font-family: {{headerfont}};
|
838
838
|
letter-spacing: .4pt;
|
839
839
|
mso-ansi-language: EN-GB;
|
840
840
|
mso-fareast-language: JA;
|
@@ -848,9 +848,9 @@ span.Heading4Char {
|
|
848
848
|
mso-style-locked: yes;
|
849
849
|
mso-style-parent: "";
|
850
850
|
mso-style-link: "Heading 4";
|
851
|
-
mso-ansi-font-size:
|
852
|
-
font-size:
|
853
|
-
font-family:
|
851
|
+
mso-ansi-font-size: {{normalfontsize}};
|
852
|
+
font-size: {{normalfontsize}};
|
853
|
+
font-family: {{headerfont}};
|
854
854
|
letter-spacing: .4pt;
|
855
855
|
mso-ansi-language: EN-GB;
|
856
856
|
mso-fareast-language: JA;
|
@@ -864,9 +864,9 @@ span.Heading5Char {
|
|
864
864
|
mso-style-locked: yes;
|
865
865
|
mso-style-parent: "";
|
866
866
|
mso-style-link: "Heading 5";
|
867
|
-
mso-ansi-font-size:
|
868
|
-
font-size:
|
869
|
-
font-family:
|
867
|
+
mso-ansi-font-size: {{normalfontsize}};
|
868
|
+
font-size: {{normalfontsize}};
|
869
|
+
font-family: {{headerfont}};
|
870
870
|
letter-spacing: .4pt;
|
871
871
|
mso-ansi-language: EN-GB;
|
872
872
|
mso-fareast-language: JA;
|
@@ -880,9 +880,9 @@ span.Heading6Char {
|
|
880
880
|
mso-style-locked: yes;
|
881
881
|
mso-style-parent: "";
|
882
882
|
mso-style-link: "Heading 6";
|
883
|
-
mso-ansi-font-size:
|
884
|
-
font-size:
|
885
|
-
font-family:
|
883
|
+
mso-ansi-font-size: {{normalfontsize}};
|
884
|
+
font-size: {{normalfontsize}};
|
885
|
+
font-family: {{headerfont}};
|
886
886
|
letter-spacing: .4pt;
|
887
887
|
mso-ansi-language: EN-GB;
|
888
888
|
mso-fareast-language: JA;
|
@@ -1048,7 +1048,7 @@ span.BodyTextChar {
|
|
1048
1048
|
mso-style-locked: yes;
|
1049
1049
|
mso-style-parent: "";
|
1050
1050
|
mso-style-link: "Body Text";
|
1051
|
-
font-family:
|
1051
|
+
font-family: {{bodyfont}};
|
1052
1052
|
mso-ascii-font-family: Arial;
|
1053
1053
|
mso-hansi-font-family: Arial;
|
1054
1054
|
mso-bidi-font-family: Arial;
|
@@ -1095,7 +1095,7 @@ p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject {
|
|
1095
1095
|
line-height: 12.0pt;
|
1096
1096
|
mso-pagination: widow-orphan;
|
1097
1097
|
tab-stops: 20.15pt;
|
1098
|
-
font-size:
|
1098
|
+
font-size: {{normalfontsize}};
|
1099
1099
|
font-family: {{headerfont}};
|
1100
1100
|
mso-fareast-font-family: {{headerfont}};
|
1101
1101
|
mso-bidi-font-family: {{headerfont}};
|
@@ -1113,7 +1113,7 @@ p.Tablebody, li.Tablebody, div.Tablebody {
|
|
1113
1113
|
margin-left: 0cm;
|
1114
1114
|
line-height: 10.5pt;
|
1115
1115
|
mso-pagination: widow-orphan;
|
1116
|
-
font-size:
|
1116
|
+
font-size: {{normalfontsize}};
|
1117
1117
|
mso-bidi-font-size: 11.0pt;
|
1118
1118
|
font-family: {{bodyfont}};
|
1119
1119
|
mso-fareast-font-family: {{bodyfont}};
|
@@ -1139,8 +1139,8 @@ p.MsoList, li.MsoList, div.MsoList {
|
|
1139
1139
|
mso-pagination: widow-orphan;
|
1140
1140
|
tab-stops: 17.0pt;
|
1141
1141
|
layout-grid-mode: char;
|
1142
|
-
font-size:
|
1143
|
-
font-family:
|
1142
|
+
font-size: {{normalfontsize}};
|
1143
|
+
font-family: {{bodyfont}};
|
1144
1144
|
mso-fareast-font-family: "Times New Roman";
|
1145
1145
|
letter-spacing: .4pt;
|
1146
1146
|
mso-ansi-language: EN-GB;
|
@@ -1159,8 +1159,8 @@ p.MsoListBullet, li.MsoListBullet, div.MsoListBullet {
|
|
1159
1159
|
mso-list: l22 level1 lfo8;
|
1160
1160
|
tab-stops: 17.0pt;
|
1161
1161
|
layout-grid-mode: char;
|
1162
|
-
font-size:
|
1163
|
-
font-family:
|
1162
|
+
font-size: {{normalfontsize}};
|
1163
|
+
font-family: {{bodyfont}};
|
1164
1164
|
mso-fareast-font-family: "Times New Roman";
|
1165
1165
|
letter-spacing: .4pt;
|
1166
1166
|
mso-ansi-language: EN-GB;
|
@@ -1180,8 +1180,8 @@ p.MsoListNumber, li.MsoListNumber, div.MsoListNumber {
|
|
1180
1180
|
mso-list: l15 level1 lfo1;
|
1181
1181
|
tab-stops: 17.0pt;
|
1182
1182
|
layout-grid-mode: char;
|
1183
|
-
font-size:
|
1184
|
-
font-family:
|
1183
|
+
font-size: {{normalfontsize}};
|
1184
|
+
font-family: {{bodyfont}};
|
1185
1185
|
mso-fareast-font-family: "Times New Roman";
|
1186
1186
|
letter-spacing: .4pt;
|
1187
1187
|
mso-ansi-language: EN-GB;
|
@@ -1195,13 +1195,13 @@ p.MsoIndex1, li.MsoIndex1, div.MsoIndex1 {
|
|
1195
1195
|
margin-top: 0cm;
|
1196
1196
|
margin-right: 0cm;
|
1197
1197
|
margin-bottom: 0cm;
|
1198
|
-
margin-left:
|
1198
|
+
margin-left: {{normalfontsize}};
|
1199
1199
|
margin-bottom: .0001pt;
|
1200
1200
|
text-align: justify;
|
1201
|
-
text-indent: -
|
1201
|
+
text-indent: -{{normalfontsize}};
|
1202
1202
|
mso-pagination: widow-orphan;
|
1203
|
-
font-size:
|
1204
|
-
font-family:
|
1203
|
+
font-size: {{normalfontsize}};
|
1204
|
+
font-family: {{bodyfont}};
|
1205
1205
|
mso-fareast-font-family: "Times New Roman";
|
1206
1206
|
letter-spacing: .4pt;
|
1207
1207
|
mso-ansi-language: EN-GB;
|
@@ -1218,10 +1218,10 @@ p.MsoIndex2, li.MsoIndex2, div.MsoIndex2 {
|
|
1218
1218
|
margin-left: 20.0pt;
|
1219
1219
|
margin-bottom: .0001pt;
|
1220
1220
|
text-align: justify;
|
1221
|
-
text-indent: -
|
1221
|
+
text-indent: -{{normalfontsize}};
|
1222
1222
|
mso-pagination: widow-orphan;
|
1223
|
-
font-size:
|
1224
|
-
font-family:
|
1223
|
+
font-size: {{normalfontsize}};
|
1224
|
+
font-family: {{bodyfont}};
|
1225
1225
|
mso-fareast-font-family: "Times New Roman";
|
1226
1226
|
letter-spacing: .4pt;
|
1227
1227
|
mso-ansi-language: EN-GB;
|
@@ -1238,10 +1238,10 @@ p.MsoIndex3, li.MsoIndex3, div.MsoIndex3 {
|
|
1238
1238
|
margin-left: 30.0pt;
|
1239
1239
|
margin-bottom: .0001pt;
|
1240
1240
|
text-align: justify;
|
1241
|
-
text-indent: -
|
1241
|
+
text-indent: -{{normalfontsize}};
|
1242
1242
|
mso-pagination: widow-orphan;
|
1243
|
-
font-size:
|
1244
|
-
font-family:
|
1243
|
+
font-size: {{normalfontsize}};
|
1244
|
+
font-family: {{bodyfont}};
|
1245
1245
|
mso-fareast-font-family: "Times New Roman";
|
1246
1246
|
letter-spacing: .4pt;
|
1247
1247
|
mso-ansi-language: EN-GB;
|
@@ -1258,10 +1258,10 @@ p.MsoIndex4, li.MsoIndex4, div.MsoIndex4 {
|
|
1258
1258
|
margin-left: 40.0pt;
|
1259
1259
|
margin-bottom: .0001pt;
|
1260
1260
|
text-align: justify;
|
1261
|
-
text-indent: -
|
1261
|
+
text-indent: -{{normalfontsize}};
|
1262
1262
|
mso-pagination: widow-orphan;
|
1263
|
-
font-size:
|
1264
|
-
font-family:
|
1263
|
+
font-size: {{normalfontsize}};
|
1264
|
+
font-family: {{bodyfont}};
|
1265
1265
|
mso-fareast-font-family: "Times New Roman";
|
1266
1266
|
letter-spacing: .4pt;
|
1267
1267
|
mso-ansi-language: EN-GB;
|
@@ -1278,10 +1278,10 @@ p.MsoIndex5, li.MsoIndex5, div.MsoIndex5 {
|
|
1278
1278
|
margin-left: 50.0pt;
|
1279
1279
|
margin-bottom: .0001pt;
|
1280
1280
|
text-align: justify;
|
1281
|
-
text-indent: -
|
1281
|
+
text-indent: -{{normalfontsize}};
|
1282
1282
|
mso-pagination: widow-orphan;
|
1283
|
-
font-size:
|
1284
|
-
font-family:
|
1283
|
+
font-size: {{normalfontsize}};
|
1284
|
+
font-family: {{bodyfont}};
|
1285
1285
|
mso-fareast-font-family: "Times New Roman";
|
1286
1286
|
letter-spacing: .4pt;
|
1287
1287
|
mso-ansi-language: EN-GB;
|
@@ -1298,10 +1298,10 @@ p.MsoIndex6, li.MsoIndex6, div.MsoIndex6 {
|
|
1298
1298
|
margin-left: 60.0pt;
|
1299
1299
|
margin-bottom: .0001pt;
|
1300
1300
|
text-align: justify;
|
1301
|
-
text-indent: -
|
1301
|
+
text-indent: -{{normalfontsize}};
|
1302
1302
|
mso-pagination: widow-orphan;
|
1303
|
-
font-size:
|
1304
|
-
font-family:
|
1303
|
+
font-size: {{normalfontsize}};
|
1304
|
+
font-family: {{bodyfont}};
|
1305
1305
|
mso-fareast-font-family: "Times New Roman";
|
1306
1306
|
letter-spacing: .4pt;
|
1307
1307
|
mso-ansi-language: EN-GB;
|
@@ -1318,10 +1318,10 @@ p.MsoIndex7, li.MsoIndex7, div.MsoIndex7 {
|
|
1318
1318
|
margin-left: 70.0pt;
|
1319
1319
|
margin-bottom: .0001pt;
|
1320
1320
|
text-align: justify;
|
1321
|
-
text-indent: -
|
1321
|
+
text-indent: -{{normalfontsize}};
|
1322
1322
|
mso-pagination: widow-orphan;
|
1323
|
-
font-size:
|
1324
|
-
font-family:
|
1323
|
+
font-size: {{normalfontsize}};
|
1324
|
+
font-family: {{bodyfont}};
|
1325
1325
|
mso-fareast-font-family: "Times New Roman";
|
1326
1326
|
letter-spacing: .4pt;
|
1327
1327
|
mso-ansi-language: EN-GB;
|
@@ -1338,10 +1338,10 @@ p.MsoIndex8, li.MsoIndex8, div.MsoIndex8 {
|
|
1338
1338
|
margin-left: 80.0pt;
|
1339
1339
|
margin-bottom: .0001pt;
|
1340
1340
|
text-align: justify;
|
1341
|
-
text-indent: -
|
1341
|
+
text-indent: -{{normalfontsize}};
|
1342
1342
|
mso-pagination: widow-orphan;
|
1343
|
-
font-size:
|
1344
|
-
font-family:
|
1343
|
+
font-size: {{normalfontsize}};
|
1344
|
+
font-family: {{bodyfont}};
|
1345
1345
|
mso-fareast-font-family: "Times New Roman";
|
1346
1346
|
letter-spacing: .4pt;
|
1347
1347
|
mso-ansi-language: EN-GB;
|
@@ -1358,10 +1358,10 @@ p.MsoIndex9, li.MsoIndex9, div.MsoIndex9 {
|
|
1358
1358
|
margin-left: 90.0pt;
|
1359
1359
|
margin-bottom: .0001pt;
|
1360
1360
|
text-align: justify;
|
1361
|
-
text-indent: -
|
1361
|
+
text-indent: -{{normalfontsize}};
|
1362
1362
|
mso-pagination: widow-orphan;
|
1363
|
-
font-size:
|
1364
|
-
font-family:
|
1363
|
+
font-size: {{normalfontsize}};
|
1364
|
+
font-family: {{bodyfont}};
|
1365
1365
|
mso-fareast-font-family: "Times New Roman";
|
1366
1366
|
letter-spacing: .4pt;
|
1367
1367
|
mso-ansi-language: EN-GB;
|
@@ -1375,7 +1375,7 @@ p.MsoIndexHeading, li.MsoIndexHeading, div.MsoIndexHeading {
|
|
1375
1375
|
margin-bottom: .0001pt;
|
1376
1376
|
text-align: justify;
|
1377
1377
|
mso-pagination: widow-orphan;
|
1378
|
-
font-size:
|
1378
|
+
font-size: {{normalfontsize}};
|
1379
1379
|
font-family: "Cambria",serif;
|
1380
1380
|
mso-fareast-font-family: "MS Gothic";
|
1381
1381
|
mso-bidi-font-family: "Times New Roman";
|
@@ -2001,7 +2001,7 @@ table.MsoNormalTable {
|
|
2001
2001
|
mso-para-margin: 0cm;
|
2002
2002
|
mso-para-margin-bottom: .0001pt;
|
2003
2003
|
mso-pagination: widow-orphan;
|
2004
|
-
font-size:
|
2004
|
+
font-size: {{normalfontsize}};
|
2005
2005
|
font-family: {{bodyfont}}; }
|
2006
2006
|
|
2007
2007
|
ol {
|