metanorma-ogc 1.5.4.1 → 1.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/lib/asciidoctor/ogc/cleanup.rb +26 -9
- data/lib/asciidoctor/ogc/converter.rb +1 -1
- data/lib/asciidoctor/ogc/isodoc.rng +6 -2
- data/lib/isodoc/ogc/html/htmlstyle.css +27 -12
- data/lib/isodoc/ogc/html/htmlstyle.scss +10 -9
- data/lib/isodoc/ogc/html/wordstyle.css +30 -18
- data/lib/isodoc/ogc/html/wordstyle.scss +30 -18
- data/lib/isodoc/ogc/html/wordstyle_wp.css +22 -12
- data/lib/isodoc/ogc/html/wordstyle_wp.scss +22 -12
- data/lib/isodoc/ogc/metadata.rb +1 -0
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +54 -7
- data/lib/isodoc/ogc/ogc.best-practice.xsl +54 -7
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +54 -7
- data/lib/isodoc/ogc/ogc.community-practice.xsl +54 -7
- data/lib/isodoc/ogc/ogc.community-standard.xsl +54 -7
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +54 -7
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +54 -7
- data/lib/isodoc/ogc/ogc.other.xsl +54 -7
- data/lib/isodoc/ogc/ogc.policy.xsl +54 -7
- data/lib/isodoc/ogc/ogc.reference-model.xsl +54 -7
- data/lib/isodoc/ogc/ogc.release-notes.xsl +54 -7
- data/lib/isodoc/ogc/ogc.standard.xsl +54 -7
- data/lib/isodoc/ogc/ogc.test-suite.xsl +54 -7
- data/lib/isodoc/ogc/ogc.user-guide.xsl +54 -7
- data/lib/isodoc/ogc/ogc.white-paper.xsl +54 -2
- data/lib/isodoc/ogc/presentation_xml_convert.rb +15 -2
- data/lib/metanorma/ogc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69beab43aeb2bcb9aab11ca5567eba0c6cae2232f5258871911c2ff9fd7bedc2
|
4
|
+
data.tar.gz: b5cbea960accc69c1970f98023f3417311d6ec06b1675ea0f426ca7af0eee374
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89c25bf2553b91594d1284fa13ed0ef7a814b7ad03fa57a5ecd6a456d043d5e567a7f3b4c1cfc522d9052de0f306bb4651de2ad67c1af76ba13e6e3166abf1f3
|
7
|
+
data.tar.gz: 5a741f7927bf22d91cdfc63e8ae7bd7bfe2d5617d4de0722110736e65d35f2556c9e296518531bc94cb54f0f97b543a5ab78b9b7e3928a7bcbb84817deeebb46
|
data/Gemfile
CHANGED
@@ -58,6 +58,9 @@ module Asciidoctor
|
|
58
58
|
super
|
59
59
|
a = xmldoc.at("//bibdata/status/stage")
|
60
60
|
a.text == "published" and a.children = "approved"
|
61
|
+
doctype = xmldoc.at("//bibdata/ext/doctype")
|
62
|
+
doctype.text == "technical-paper" and
|
63
|
+
doctype.children = "white-paper"
|
61
64
|
end
|
62
65
|
|
63
66
|
def section_names_terms_cleanup(xml)
|
@@ -171,17 +174,31 @@ module Asciidoctor
|
|
171
174
|
xmldoc.xpath(REQRECPER).each do |r|
|
172
175
|
next unless r["type"]
|
173
176
|
|
174
|
-
r
|
175
|
-
when "requirement", "recommendation", "permission"
|
176
|
-
"general"
|
177
|
-
when "requirements_class" then "class"
|
178
|
-
when "conformance_test" then "verification"
|
179
|
-
when "conformance_class" then "conformanceclass"
|
180
|
-
when "abstract_test" then "abstracttest"
|
181
|
-
else r["type"]
|
182
|
-
end
|
177
|
+
requirement_type1(r)
|
183
178
|
end
|
184
179
|
end
|
180
|
+
|
181
|
+
def requirement_type1(reqt)
|
182
|
+
reqt["type"] = case reqt["type"]
|
183
|
+
when "requirement", "recommendation", "permission"
|
184
|
+
"general"
|
185
|
+
when "requirements_class" then "class"
|
186
|
+
when "conformance_test" then "verification"
|
187
|
+
when "conformance_class" then "conformanceclass"
|
188
|
+
when "abstract_test" then "abstracttest"
|
189
|
+
else reqt["type"]
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
def normref_cleanup(xmldoc)
|
194
|
+
r1 = xmldoc.at("//references[title[translate(text(), 'R', 'r') = "\
|
195
|
+
"'Normative references']]")
|
196
|
+
r2 = xmldoc.at("//references[title[text() = 'References']]")
|
197
|
+
if r1 && r2
|
198
|
+
r2["normative"] = false
|
199
|
+
end
|
200
|
+
super
|
201
|
+
end
|
185
202
|
end
|
186
203
|
end
|
187
204
|
end
|
@@ -31,7 +31,7 @@ module Asciidoctor
|
|
31
31
|
change-request-supporting-document community-practice
|
32
32
|
community-standard discussion-paper engineering-report
|
33
33
|
reference-model release-notes standard user-guide white-paper
|
34
|
-
test-suite}.include? d
|
34
|
+
technical-paper test-suite}.include? d
|
35
35
|
@warned_doctype or
|
36
36
|
@log.add("Document Attributes", nil,
|
37
37
|
"'#{d}' is not a legal document type: reverting to 'standard'")
|
@@ -1973,7 +1973,11 @@
|
|
1973
1973
|
</optional>
|
1974
1974
|
<element name="name">
|
1975
1975
|
<zeroOrMore>
|
1976
|
-
<
|
1976
|
+
<choice>
|
1977
|
+
<ref name="PureTextElement"/>
|
1978
|
+
<ref name="stem"/>
|
1979
|
+
<ref name="index"/>
|
1980
|
+
</choice>
|
1977
1981
|
</zeroOrMore>
|
1978
1982
|
</element>
|
1979
1983
|
<optional>
|
@@ -1987,7 +1991,7 @@
|
|
1987
1991
|
</element>
|
1988
1992
|
</optional>
|
1989
1993
|
<optional>
|
1990
|
-
<element name="grammar
|
1994
|
+
<element name="grammar">
|
1991
1995
|
<ref name="Grammar"/>
|
1992
1996
|
</element>
|
1993
1997
|
</optional>
|
@@ -68,6 +68,12 @@ code *, pre *, tt *, kbd *, samp * {
|
|
68
68
|
font-family: {{monospacefont}} !important;
|
69
69
|
font-variant-ligatures: none; }
|
70
70
|
|
71
|
+
p code, dt code, li code, label code, legend code, caption code, th code, td code,
|
72
|
+
p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
|
73
|
+
p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
|
74
|
+
p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
|
75
|
+
font-size: {{monospacefontsize}}; }
|
76
|
+
|
71
77
|
article, aside, details, figcaption, figure,
|
72
78
|
footer, header, hgroup, menu, nav, section {
|
73
79
|
display: block; }
|
@@ -79,6 +85,9 @@ table {
|
|
79
85
|
h1, h2, h3, h4, h5, h6 {
|
80
86
|
font-family: {{headerfont}}; }
|
81
87
|
|
88
|
+
.h1, .h2, .h3, .h4, .h5, .h6 {
|
89
|
+
font-family: {{headerfont}}; }
|
90
|
+
|
82
91
|
blockquote, q {
|
83
92
|
quotes: none; }
|
84
93
|
blockquote:before, blockquote:after, q:before, q:after {
|
@@ -151,6 +160,12 @@ a.FootnoteRef + a.FootnoteRef:before {
|
|
151
160
|
#white-paper {
|
152
161
|
border-bottom: solid 3px #39CCCC; }
|
153
162
|
|
163
|
+
#technical-paper-band {
|
164
|
+
background-color: #39CCCC; }
|
165
|
+
|
166
|
+
#technical-paper {
|
167
|
+
border-bottom: solid 3px #39CCCC; }
|
168
|
+
|
154
169
|
#engineering-report-band {
|
155
170
|
background-color: #39CCCC; }
|
156
171
|
|
@@ -718,32 +733,32 @@ p {
|
|
718
733
|
margin-top: 1em;
|
719
734
|
margin-bottom: 1em; }
|
720
735
|
|
721
|
-
h1, h2, h3, h4, h5, h6 {
|
736
|
+
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
722
737
|
color: #00335b;
|
723
738
|
font-weight: 400;
|
724
739
|
margin-top: 1.6em;
|
725
740
|
margin-bottom: 0.3em; }
|
726
741
|
|
727
|
-
h1 {
|
742
|
+
h1, .h1 {
|
728
743
|
font-size: 1.8em;
|
729
744
|
text-transform: uppercase;
|
730
745
|
margin-top: 2em; }
|
731
|
-
h1 #content {
|
746
|
+
h1 #content, .h1 #content {
|
732
747
|
margin-top: 2em; }
|
733
748
|
|
734
|
-
h2 {
|
749
|
+
h2, .h2 {
|
735
750
|
margin-top: 1.3em;
|
736
751
|
font-size: 1.7em;
|
737
752
|
font-weight: 300; }
|
738
|
-
h2 p {
|
753
|
+
h2 p, .h2 p {
|
739
754
|
display: inline; }
|
740
755
|
|
741
|
-
h3 {
|
756
|
+
h3, .h3 {
|
742
757
|
margin-top: 1.3em;
|
743
758
|
font-size: 1.5em;
|
744
759
|
font-weight: 100; }
|
745
760
|
|
746
|
-
h4 {
|
761
|
+
h4, .h4 {
|
747
762
|
font-size: 1.4em; }
|
748
763
|
|
749
764
|
.contact-info {
|
@@ -1083,18 +1098,18 @@ a.anchorjs-link:hover {
|
|
1083
1098
|
margin: 2cm 1cm; }
|
1084
1099
|
|
1085
1100
|
@media print {
|
1086
|
-
h1, h2, h3, h4 {
|
1101
|
+
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
|
1087
1102
|
page-break-after: avoid;
|
1088
1103
|
margin-top: 1.2em; }
|
1089
|
-
h1 {
|
1104
|
+
h1, .h1 {
|
1090
1105
|
font-size: 1.5em;
|
1091
1106
|
line-height: 1.5; }
|
1092
|
-
h1.content {
|
1107
|
+
h1.content, .h1.content {
|
1093
1108
|
margin-top: 2em;
|
1094
1109
|
line-height: 2.5em; }
|
1095
|
-
h2 {
|
1110
|
+
h2, .h2 {
|
1096
1111
|
font-size: 1.2em; }
|
1097
|
-
h3 {
|
1112
|
+
h3, .h3 {
|
1098
1113
|
font-size: 1em; }
|
1099
1114
|
.prefatory-section {
|
1100
1115
|
page-break-before: always; }
|
@@ -6,6 +6,7 @@ $doctype-colors-list: (
|
|
6
6
|
best-practice: #39CCCC,
|
7
7
|
discussion-paper: #39CCCC,
|
8
8
|
white-paper: #39CCCC,
|
9
|
+
technical-paper: #39CCCC,
|
9
10
|
engineering-report: #39CCCC,
|
10
11
|
|
11
12
|
release-notes: #FFDC00,
|
@@ -172,14 +173,14 @@ p {
|
|
172
173
|
margin-bottom: 1em;
|
173
174
|
}
|
174
175
|
|
175
|
-
h1, h2, h3, h4, h5, h6 {
|
176
|
+
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
176
177
|
color: #00335b;
|
177
178
|
font-weight: 400;
|
178
179
|
margin-top: 1.6em;
|
179
180
|
margin-bottom: 0.3em;
|
180
181
|
}
|
181
182
|
|
182
|
-
h1 {
|
183
|
+
h1, .h1 {
|
183
184
|
font-size: 1.8em;
|
184
185
|
text-transform: uppercase;
|
185
186
|
margin-top: 2em;
|
@@ -189,7 +190,7 @@ h1 {
|
|
189
190
|
}
|
190
191
|
}
|
191
192
|
|
192
|
-
h2 {
|
193
|
+
h2, .h2 {
|
193
194
|
margin-top: 1.3em;
|
194
195
|
font-size: 1.7em;
|
195
196
|
font-weight: 300;
|
@@ -199,13 +200,13 @@ h2 {
|
|
199
200
|
}
|
200
201
|
}
|
201
202
|
|
202
|
-
h3 {
|
203
|
+
h3, .h3 {
|
203
204
|
margin-top: 1.3em;
|
204
205
|
font-size: 1.5em;
|
205
206
|
font-weight: 100;
|
206
207
|
}
|
207
208
|
|
208
|
-
h4 {
|
209
|
+
h4, .h4 {
|
209
210
|
font-size: 1.4em;
|
210
211
|
}
|
211
212
|
|
@@ -555,12 +556,12 @@ a.anchorjs-link {
|
|
555
556
|
}
|
556
557
|
|
557
558
|
@media print {
|
558
|
-
h1, h2, h3, h4 {
|
559
|
+
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
|
559
560
|
page-break-after: avoid;
|
560
561
|
margin-top: 1.2em;
|
561
562
|
}
|
562
563
|
|
563
|
-
h1 {
|
564
|
+
h1, .h1 {
|
564
565
|
font-size: 1.5em;
|
565
566
|
line-height: 1.5;
|
566
567
|
|
@@ -570,11 +571,11 @@ a.anchorjs-link {
|
|
570
571
|
}
|
571
572
|
}
|
572
573
|
|
573
|
-
h2 {
|
574
|
+
h2, .h2 {
|
574
575
|
font-size: 1.2em
|
575
576
|
}
|
576
577
|
|
577
|
-
h3 {
|
578
|
+
h3, .h3 {
|
578
579
|
font-size: 1em;
|
579
580
|
}
|
580
581
|
|
@@ -370,7 +370,7 @@ span.blackgraphtx {
|
|
370
370
|
div.figure, p.figure {
|
371
371
|
text-align: center; }
|
372
372
|
|
373
|
-
h1 {
|
373
|
+
h1, .h1 {
|
374
374
|
mso-style-priority: 1;
|
375
375
|
mso-style-unhide: no;
|
376
376
|
mso-style-qformat: yes;
|
@@ -385,8 +385,6 @@ h1 {
|
|
385
385
|
line-height: 13.5pt;
|
386
386
|
mso-pagination: widow-orphan;
|
387
387
|
page-break-after: avoid;
|
388
|
-
mso-outline-level: 1;
|
389
|
-
mso-list: l1 level1 lfo6;
|
390
388
|
mso-hyphenate: none;
|
391
389
|
tab-stops: 0.7cm;
|
392
390
|
font-size: 13.0pt;
|
@@ -399,6 +397,10 @@ h1 {
|
|
399
397
|
mso-fareast-language: JA;
|
400
398
|
mso-bidi-font-weight: normal; }
|
401
399
|
|
400
|
+
h1 {
|
401
|
+
mso-outline-level: 1;
|
402
|
+
mso-list: l1 level1 lfo6; }
|
403
|
+
|
402
404
|
h1.Annex {
|
403
405
|
mso-style-priority: 1;
|
404
406
|
mso-style-unhide: no;
|
@@ -457,7 +459,7 @@ h1.Annex {
|
|
457
459
|
mso-fareast-language: JA;
|
458
460
|
mso-bidi-font-weight: normal; }
|
459
461
|
|
460
|
-
h2 {
|
462
|
+
h2, .h2 {
|
461
463
|
mso-style-priority: 2;
|
462
464
|
mso-style-unhide: no;
|
463
465
|
mso-style-qformat: yes;
|
@@ -473,8 +475,6 @@ h2 {
|
|
473
475
|
line-height: 12.5pt;
|
474
476
|
mso-pagination: widow-orphan;
|
475
477
|
page-break-after: avoid;
|
476
|
-
mso-outline-level: 2;
|
477
|
-
mso-list: l1 level2 lfo6;
|
478
478
|
mso-hyphenate: none;
|
479
479
|
tab-stops: 1.0cm;
|
480
480
|
font-size: 12.0pt;
|
@@ -486,7 +486,11 @@ h2 {
|
|
486
486
|
mso-fareast-language: JA;
|
487
487
|
mso-bidi-font-weight: normal; }
|
488
488
|
|
489
|
-
|
489
|
+
h2 {
|
490
|
+
mso-outline-level: 2;
|
491
|
+
mso-list: l1 level2 lfo6; }
|
492
|
+
|
493
|
+
h3, .h3 {
|
490
494
|
mso-style-priority: 3;
|
491
495
|
mso-style-unhide: no;
|
492
496
|
mso-style-qformat: yes;
|
@@ -502,8 +506,6 @@ h3 {
|
|
502
506
|
line-height: 12.0pt;
|
503
507
|
mso-pagination: widow-orphan;
|
504
508
|
page-break-after: avoid;
|
505
|
-
mso-outline-level: 3;
|
506
|
-
mso-list: l1 level3 lfo6;
|
507
509
|
mso-hyphenate: none;
|
508
510
|
tab-stops: 1.3cm;
|
509
511
|
font-size: 11.0pt;
|
@@ -514,7 +516,11 @@ h3 {
|
|
514
516
|
mso-fareast-language: JA;
|
515
517
|
mso-bidi-font-weight: normal; }
|
516
518
|
|
517
|
-
|
519
|
+
h3 {
|
520
|
+
mso-outline-level: 3;
|
521
|
+
mso-list: l1 level3 lfo6; }
|
522
|
+
|
523
|
+
h4, .h4 {
|
518
524
|
mso-style-priority: 4;
|
519
525
|
mso-style-unhide: no;
|
520
526
|
mso-style-qformat: yes;
|
@@ -530,8 +536,6 @@ h4 {
|
|
530
536
|
line-height: 12.0pt;
|
531
537
|
mso-pagination: widow-orphan;
|
532
538
|
page-break-after: avoid;
|
533
|
-
mso-outline-level: 4;
|
534
|
-
mso-list: l1 level4 lfo6;
|
535
539
|
mso-hyphenate: none;
|
536
540
|
tab-stops: 1.6cm;
|
537
541
|
font-size: 11.0pt;
|
@@ -542,7 +546,11 @@ h4 {
|
|
542
546
|
mso-fareast-language: JA;
|
543
547
|
mso-bidi-font-weight: normal; }
|
544
548
|
|
545
|
-
|
549
|
+
h4 {
|
550
|
+
mso-outline-level: 4;
|
551
|
+
mso-list: l1 level4 lfo6; }
|
552
|
+
|
553
|
+
h5, .h5 {
|
546
554
|
mso-style-priority: 5;
|
547
555
|
mso-style-unhide: no;
|
548
556
|
mso-style-qformat: yes;
|
@@ -558,8 +566,6 @@ h5 {
|
|
558
566
|
line-height: 12.0pt;
|
559
567
|
mso-pagination: widow-orphan;
|
560
568
|
page-break-after: avoid;
|
561
|
-
mso-outline-level: 5;
|
562
|
-
mso-list: l1 level5 lfo6;
|
563
569
|
mso-hyphenate: none;
|
564
570
|
tab-stops: 1.9cm;
|
565
571
|
font-size: 11.0pt;
|
@@ -570,7 +576,11 @@ h5 {
|
|
570
576
|
mso-fareast-language: JA;
|
571
577
|
mso-bidi-font-weight: normal; }
|
572
578
|
|
573
|
-
|
579
|
+
h5 {
|
580
|
+
mso-outline-level: 5;
|
581
|
+
mso-list: l1 level5 lfo6; }
|
582
|
+
|
583
|
+
h6, .h6 {
|
574
584
|
mso-style-priority: 6;
|
575
585
|
mso-style-unhide: no;
|
576
586
|
mso-style-qformat: yes;
|
@@ -586,8 +596,6 @@ h6 {
|
|
586
596
|
line-height: 12.0pt;
|
587
597
|
mso-pagination: widow-orphan;
|
588
598
|
page-break-after: avoid;
|
589
|
-
mso-outline-level: 6;
|
590
|
-
mso-list: l1 level6 lfo6;
|
591
599
|
mso-hyphenate: none;
|
592
600
|
tab-stops: 2.2cm;
|
593
601
|
font-size: 11.0pt;
|
@@ -598,6 +606,10 @@ h6 {
|
|
598
606
|
mso-fareast-language: JA;
|
599
607
|
mso-bidi-font-weight: normal; }
|
600
608
|
|
609
|
+
h6 {
|
610
|
+
mso-outline-level: 6;
|
611
|
+
mso-list: l1 level6 lfo6; }
|
612
|
+
|
601
613
|
p.MsoToc1, li.MsoToc1, div.MsoToc1 {
|
602
614
|
mso-style-priority: 39;
|
603
615
|
mso-style-unhide: no;
|
@@ -339,7 +339,7 @@ div.figure, p.figure
|
|
339
339
|
{text-align: center;}
|
340
340
|
|
341
341
|
|
342
|
-
h1
|
342
|
+
h1, .h1
|
343
343
|
{mso-style-priority:1;
|
344
344
|
mso-style-unhide:no;
|
345
345
|
mso-style-qformat:yes;
|
@@ -354,8 +354,6 @@ h1
|
|
354
354
|
line-height:13.5pt;
|
355
355
|
mso-pagination:widow-orphan;
|
356
356
|
page-break-after:avoid;
|
357
|
-
mso-outline-level:1;
|
358
|
-
mso-list:l1 level1 lfo6;
|
359
357
|
mso-hyphenate:none;
|
360
358
|
tab-stops:0.7cm;
|
361
359
|
font-size:13.0pt;
|
@@ -367,6 +365,10 @@ h1
|
|
367
365
|
mso-ansi-language:EN-GB;
|
368
366
|
mso-fareast-language:JA;
|
369
367
|
mso-bidi-font-weight:normal;}
|
368
|
+
h1 {
|
369
|
+
mso-outline-level:1;
|
370
|
+
mso-list:l1 level1 lfo6;
|
371
|
+
}
|
370
372
|
h1.Annex
|
371
373
|
{mso-style-priority:1;
|
372
374
|
mso-style-unhide:no;
|
@@ -423,7 +425,7 @@ h1.Annex
|
|
423
425
|
mso-ansi-language:EN-GB;
|
424
426
|
mso-fareast-language:JA;
|
425
427
|
mso-bidi-font-weight:normal;}
|
426
|
-
h2
|
428
|
+
h2, .h2
|
427
429
|
{mso-style-priority:2;
|
428
430
|
mso-style-unhide:no;
|
429
431
|
mso-style-qformat:yes;
|
@@ -439,8 +441,6 @@ h2
|
|
439
441
|
line-height:12.5pt;
|
440
442
|
mso-pagination:widow-orphan;
|
441
443
|
page-break-after:avoid;
|
442
|
-
mso-outline-level:2;
|
443
|
-
mso-list:l1 level2 lfo6;
|
444
444
|
mso-hyphenate:none;
|
445
445
|
tab-stops:1.0cm;
|
446
446
|
font-size:12.0pt;
|
@@ -451,7 +451,11 @@ h2
|
|
451
451
|
mso-ansi-language:EN-GB;
|
452
452
|
mso-fareast-language:JA;
|
453
453
|
mso-bidi-font-weight:normal;}
|
454
|
-
|
454
|
+
h2 {
|
455
|
+
mso-outline-level:2;
|
456
|
+
mso-list:l1 level2 lfo6;
|
457
|
+
}
|
458
|
+
h3, .h3
|
455
459
|
{mso-style-priority:3;
|
456
460
|
mso-style-unhide:no;
|
457
461
|
mso-style-qformat:yes;
|
@@ -467,8 +471,6 @@ h3
|
|
467
471
|
line-height:12.0pt;
|
468
472
|
mso-pagination:widow-orphan;
|
469
473
|
page-break-after:avoid;
|
470
|
-
mso-outline-level:3;
|
471
|
-
mso-list:l1 level3 lfo6;
|
472
474
|
mso-hyphenate:none;
|
473
475
|
tab-stops:1.3cm;
|
474
476
|
font-size:11.0pt;
|
@@ -478,7 +480,11 @@ h3
|
|
478
480
|
mso-ansi-language:EN-GB;
|
479
481
|
mso-fareast-language:JA;
|
480
482
|
mso-bidi-font-weight:normal;}
|
481
|
-
|
483
|
+
h3 {
|
484
|
+
mso-outline-level:3;
|
485
|
+
mso-list:l1 level3 lfo6;
|
486
|
+
}
|
487
|
+
h4, .h4
|
482
488
|
{mso-style-priority:4;
|
483
489
|
mso-style-unhide:no;
|
484
490
|
mso-style-qformat:yes;
|
@@ -494,8 +500,6 @@ h4
|
|
494
500
|
line-height:12.0pt;
|
495
501
|
mso-pagination:widow-orphan;
|
496
502
|
page-break-after:avoid;
|
497
|
-
mso-outline-level:4;
|
498
|
-
mso-list:l1 level4 lfo6;
|
499
503
|
mso-hyphenate:none;
|
500
504
|
tab-stops:1.6cm;
|
501
505
|
font-size:11.0pt;
|
@@ -505,7 +509,11 @@ h4
|
|
505
509
|
mso-ansi-language:EN-GB;
|
506
510
|
mso-fareast-language:JA;
|
507
511
|
mso-bidi-font-weight:normal;}
|
508
|
-
|
512
|
+
h4 {
|
513
|
+
mso-outline-level:4;
|
514
|
+
mso-list:l1 level4 lfo6;
|
515
|
+
}
|
516
|
+
h5, .h5
|
509
517
|
{mso-style-priority:5;
|
510
518
|
mso-style-unhide:no;
|
511
519
|
mso-style-qformat:yes;
|
@@ -521,8 +529,6 @@ h5
|
|
521
529
|
line-height:12.0pt;
|
522
530
|
mso-pagination:widow-orphan;
|
523
531
|
page-break-after:avoid;
|
524
|
-
mso-outline-level:5;
|
525
|
-
mso-list:l1 level5 lfo6;
|
526
532
|
mso-hyphenate:none;
|
527
533
|
tab-stops:1.9cm;
|
528
534
|
font-size:11.0pt;
|
@@ -532,7 +538,11 @@ h5
|
|
532
538
|
mso-ansi-language:EN-GB;
|
533
539
|
mso-fareast-language:JA;
|
534
540
|
mso-bidi-font-weight:normal;}
|
535
|
-
|
541
|
+
h5 {
|
542
|
+
mso-outline-level:5;
|
543
|
+
mso-list:l1 level5 lfo6;
|
544
|
+
}
|
545
|
+
h6, .h6
|
536
546
|
{mso-style-priority:6;
|
537
547
|
mso-style-unhide:no;
|
538
548
|
mso-style-qformat:yes;
|
@@ -548,8 +558,6 @@ h6
|
|
548
558
|
line-height:12.0pt;
|
549
559
|
mso-pagination:widow-orphan;
|
550
560
|
page-break-after:avoid;
|
551
|
-
mso-outline-level:6;
|
552
|
-
mso-list:l1 level6 lfo6;
|
553
561
|
mso-hyphenate:none;
|
554
562
|
tab-stops:2.2cm;
|
555
563
|
font-size:11.0pt;
|
@@ -559,6 +567,10 @@ h6
|
|
559
567
|
mso-ansi-language:EN-GB;
|
560
568
|
mso-fareast-language:JA;
|
561
569
|
mso-bidi-font-weight:normal;}
|
570
|
+
h6 {
|
571
|
+
mso-outline-level:6;
|
572
|
+
mso-list:l1 level6 lfo6;
|
573
|
+
}
|
562
574
|
p.MsoToc1, li.MsoToc1, div.MsoToc1
|
563
575
|
{mso-style-priority:39;
|
564
576
|
mso-style-unhide:no;
|
@@ -467,7 +467,7 @@ span.blackgraphtx {
|
|
467
467
|
div.figure, p.figure {
|
468
468
|
text-align: center; }
|
469
469
|
|
470
|
-
h1 {
|
470
|
+
h1, .h1 {
|
471
471
|
mso-style-priority: 1;
|
472
472
|
mso-style-unhide: no;
|
473
473
|
mso-style-qformat: yes;
|
@@ -481,8 +481,6 @@ h1 {
|
|
481
481
|
mso-add-space: auto;
|
482
482
|
mso-pagination: widow-orphan lines-together;
|
483
483
|
page-break-after: avoid;
|
484
|
-
mso-outline-level: 1;
|
485
|
-
mso-list: l1 level1 lfo6;
|
486
484
|
tab-stops: 0.7cm;
|
487
485
|
border: none;
|
488
486
|
mso-border-bottom-alt: solid #152B4D 2.25pt;
|
@@ -506,6 +504,10 @@ h1 {
|
|
506
504
|
mso-fareast-language: EN-US;
|
507
505
|
font-weight: normal; }
|
508
506
|
|
507
|
+
h1 {
|
508
|
+
mso-outline-level: 1;
|
509
|
+
mso-list: l1 level1 lfo6; }
|
510
|
+
|
509
511
|
/*
|
510
512
|
h1.Annex
|
511
513
|
{mso-style-priority:1;
|
@@ -537,7 +539,7 @@ h1.Annex
|
|
537
539
|
mso-fareast-language:JA;
|
538
540
|
mso-bidi-font-weight:normal;}
|
539
541
|
*/
|
540
|
-
.h2Annex, h2 {
|
542
|
+
.h2Annex, h2, .h2 {
|
541
543
|
mso-style-priority: 2;
|
542
544
|
mso-style-unhide: no;
|
543
545
|
mso-style-qformat: yes;
|
@@ -567,7 +569,7 @@ h1.Annex
|
|
567
569
|
h2 {
|
568
570
|
mso-list: l1 level2 lfo6; }
|
569
571
|
|
570
|
-
h3 {
|
572
|
+
h3, .h3 {
|
571
573
|
mso-style-priority: 3;
|
572
574
|
mso-style-unhide: no;
|
573
575
|
mso-style-qformat: yes;
|
@@ -582,7 +584,6 @@ h3 {
|
|
582
584
|
line-height: 107%;
|
583
585
|
mso-pagination: widow-orphan lines-together;
|
584
586
|
page-break-after: avoid;
|
585
|
-
mso-outline-level: 3;
|
586
587
|
tab-stops: 1.3cm;
|
587
588
|
font-size: 12.0pt;
|
588
589
|
font-family: {{headerfont}};
|
@@ -594,7 +595,10 @@ h3 {
|
|
594
595
|
font-weight: bold;
|
595
596
|
mso-bidi-font-weight: normal; }
|
596
597
|
|
597
|
-
|
598
|
+
h3 {
|
599
|
+
mso-outline-level: 3; }
|
600
|
+
|
601
|
+
h4, .h4 {
|
598
602
|
mso-style-priority: 4;
|
599
603
|
mso-style-unhide: no;
|
600
604
|
mso-style-qformat: yes;
|
@@ -610,7 +614,6 @@ h4 {
|
|
610
614
|
tab-stops: 1.6cm;
|
611
615
|
mso-pagination: widow-orphan lines-together;
|
612
616
|
page-break-after: avoid;
|
613
|
-
mso-outline-level: 4;
|
614
617
|
font-size: {{normalfontsize}};
|
615
618
|
font-family: {{headerfont}};
|
616
619
|
color: #1F4E79;
|
@@ -621,7 +624,10 @@ h4 {
|
|
621
624
|
font-weight: normal;
|
622
625
|
font-style: italic; }
|
623
626
|
|
624
|
-
|
627
|
+
h4 {
|
628
|
+
mso-outline-level: 4; }
|
629
|
+
|
630
|
+
h5, .h5 {
|
625
631
|
mso-style-priority: 5;
|
626
632
|
mso-style-unhide: no;
|
627
633
|
mso-style-qformat: yes;
|
@@ -637,7 +643,6 @@ h5 {
|
|
637
643
|
tab-stops: 1.9cm;
|
638
644
|
mso-pagination: widow-orphan lines-together;
|
639
645
|
page-break-after: avoid;
|
640
|
-
mso-outline-level: 5;
|
641
646
|
font-size: {{normalfontsize}};
|
642
647
|
font-family: {{headerfont}};
|
643
648
|
color: #1F4E79;
|
@@ -647,7 +652,10 @@ h5 {
|
|
647
652
|
mso-fareast-language: EN-US;
|
648
653
|
font-weight: normal; }
|
649
654
|
|
650
|
-
|
655
|
+
h5 {
|
656
|
+
mso-outline-level: 5; }
|
657
|
+
|
658
|
+
h6, .h6 {
|
651
659
|
mso-style-priority: 6;
|
652
660
|
mso-style-unhide: no;
|
653
661
|
mso-style-qformat: yes;
|
@@ -663,7 +671,6 @@ h6 {
|
|
663
671
|
tab-stops: 2.2cm;
|
664
672
|
mso-pagination: widow-orphan lines-together;
|
665
673
|
page-break-after: avoid;
|
666
|
-
mso-outline-level: 6;
|
667
674
|
font-size: {{normalfontsize}};
|
668
675
|
font-family: {{headerfont}};
|
669
676
|
mso-fareast-font-family: "MS Gothic";
|
@@ -678,6 +685,9 @@ h6 {
|
|
678
685
|
font-weight: bold;
|
679
686
|
mso-bidi-font-weight: normal; }
|
680
687
|
|
688
|
+
h6 {
|
689
|
+
mso-outline-level: 6; }
|
690
|
+
|
681
691
|
p.MsoToc1, li.MsoToc1, div.MsoToc1 {
|
682
692
|
mso-style-priority: 39;
|
683
693
|
mso-style-unhide: no;
|