metanorma-nist 1.2.1 → 1.2.2
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/README.adoc +14 -0
- data/lib/asciidoctor/nist/converter.rb +13 -2
- data/lib/asciidoctor/nist/front.rb +0 -4
- data/lib/asciidoctor/nist/isodoc.rng +4 -1
- data/lib/asciidoctor/nist/nist.rng +18 -0
- data/lib/isodoc/nist/base_convert.rb +26 -14
- data/lib/isodoc/nist/html/nist.css +6 -6
- data/lib/isodoc/nist/html/nist.scss +6 -6
- data/lib/isodoc/nist/html/nist_cswp.css +6 -6
- data/lib/isodoc/nist/html/nist_cswp.scss +6 -6
- data/lib/isodoc/nist/html/wordstyle.css +83 -3
- data/lib/isodoc/nist/html/wordstyle.scss +74 -3
- data/lib/isodoc/nist/html/wordstyle_cswp.css +77 -2
- data/lib/isodoc/nist/html/wordstyle_cswp.scss +68 -2
- data/lib/isodoc/nist/html_convert.rb +1 -0
- data/lib/isodoc/nist/nist.cswp.xsl +80 -21
- data/lib/isodoc/nist/nist.sp.xsl +89 -29
- data/lib/isodoc/nist/section.rb +19 -8
- data/lib/isodoc/nist/word_convert.rb +41 -0
- data/lib/metanorma/nist/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: 567105c7de8ee67a8864ef8f5001ef078ad65580a15c7766ac32faa65aa192a3
|
|
4
|
+
data.tar.gz: 12507bb0dad9555461ca6ed5fa9943c6d4c14e9f2505cbff626aeec6c18825d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75df1bf28376729c76247c9a23132fc58aa369f32cceff62a54951dd80a4ffddb96766be7b6187f2085767fd444859af98e628cf77e8c69ccf21aacd6ba88016
|
|
7
|
+
data.tar.gz: 3ef6cac86084b8c56c2b634fb3064408465c5e311331f812446a688c78557512fc1cc4f67c0dfdf0d0087e49413584c7bf4d850eb0fae96936550fc856d9255c
|
data/README.adoc
CHANGED
|
@@ -659,6 +659,20 @@ Errata tables must have a header row containing the headings _Date, Type, Change
|
|
|
659
659
|
|===
|
|
660
660
|
----
|
|
661
661
|
|
|
662
|
+
=== Lists
|
|
663
|
+
|
|
664
|
+
If an ordered list is intended to describe “steps” within a process, it should start with Arabic numbers and should be encoded with the class `steps`:
|
|
665
|
+
|
|
666
|
+
Encoding an ordered list as steps:
|
|
667
|
+
|
|
668
|
+
[source, asciidoctor]
|
|
669
|
+
----
|
|
670
|
+
[class=steps]
|
|
671
|
+
. First Step
|
|
672
|
+
. Second Step
|
|
673
|
+
. Third Step
|
|
674
|
+
----
|
|
675
|
+
|
|
662
676
|
=== Glosaries
|
|
663
677
|
|
|
664
678
|
Glossaries are given as definition lists with role attribute `[.glossary]`:
|
|
@@ -61,6 +61,15 @@ module Asciidoctor
|
|
|
61
61
|
super
|
|
62
62
|
end
|
|
63
63
|
|
|
64
|
+
def olist(node)
|
|
65
|
+
id = Asciidoctor::Standoc::Utils::anchor_or_uuid(node)
|
|
66
|
+
noko do |xml|
|
|
67
|
+
xml.ol **attr_code(id: id, class: node.attr("class")) do |xml_ol|
|
|
68
|
+
node.items.each { |item| li(xml_ol, item) }
|
|
69
|
+
end
|
|
70
|
+
end.join("\n")
|
|
71
|
+
end
|
|
72
|
+
|
|
64
73
|
def glossary(node)
|
|
65
74
|
noko do |xml|
|
|
66
75
|
xml.dl **{id: Asciidoctor::Standoc::Utils::anchor_or_uuid(node),
|
|
@@ -79,8 +88,8 @@ module Asciidoctor
|
|
|
79
88
|
end
|
|
80
89
|
|
|
81
90
|
def doctype(node)
|
|
82
|
-
d =
|
|
83
|
-
d =
|
|
91
|
+
d = super || "standard"
|
|
92
|
+
d = "standard" if d == "article" # article is Asciidoctor default
|
|
84
93
|
d
|
|
85
94
|
end
|
|
86
95
|
|
|
@@ -140,6 +149,8 @@ module Asciidoctor
|
|
|
140
149
|
case ret
|
|
141
150
|
when "glossary", "terminology"
|
|
142
151
|
"terms and definitions"
|
|
152
|
+
when "introduction"
|
|
153
|
+
"donotrecognise_introduction"
|
|
143
154
|
else
|
|
144
155
|
super
|
|
145
156
|
end
|
|
@@ -42,8 +42,11 @@
|
|
|
42
42
|
</define>
|
|
43
43
|
<define name="xref">
|
|
44
44
|
<element name="xref">
|
|
45
|
+
<!-- attribute target { xsd:IDREF }, -->
|
|
45
46
|
<attribute name="target">
|
|
46
|
-
<data type="
|
|
47
|
+
<data type="string">
|
|
48
|
+
<param name="pattern">\i\c*|\c+#\c+</param>
|
|
49
|
+
</data>
|
|
47
50
|
</attribute>
|
|
48
51
|
<optional>
|
|
49
52
|
<attribute name="type">
|
|
@@ -9,6 +9,24 @@
|
|
|
9
9
|
<start>
|
|
10
10
|
<ref name="nist-standard"/>
|
|
11
11
|
</start>
|
|
12
|
+
<define name="ol">
|
|
13
|
+
<element name="ol">
|
|
14
|
+
<attribute name="id">
|
|
15
|
+
<data type="ID"/>
|
|
16
|
+
</attribute>
|
|
17
|
+
<optional>
|
|
18
|
+
<attribute name="class">
|
|
19
|
+
<value>steps</value>
|
|
20
|
+
</attribute>
|
|
21
|
+
</optional>
|
|
22
|
+
<oneOrMore>
|
|
23
|
+
<ref name="li"/>
|
|
24
|
+
</oneOrMore>
|
|
25
|
+
<zeroOrMore>
|
|
26
|
+
<ref name="note"/>
|
|
27
|
+
</zeroOrMore>
|
|
28
|
+
</element>
|
|
29
|
+
</define>
|
|
12
30
|
<define name="DocumentType">
|
|
13
31
|
<value>standard</value>
|
|
14
32
|
</define>
|
|
@@ -6,18 +6,6 @@ require "fileutils"
|
|
|
6
6
|
module IsoDoc
|
|
7
7
|
module NIST
|
|
8
8
|
module BaseConvert
|
|
9
|
-
def keywords(docxml, out)
|
|
10
|
-
f = docxml.at(ns("//preface/clause[@type = 'keywords']")) || return
|
|
11
|
-
intro_clause(f, out)
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
def skip_render(c, isoxml)
|
|
15
|
-
return false unless c.name == "reviewernote"
|
|
16
|
-
status = isoxml&.at(ns("//bibdata/status/stage"))&.text
|
|
17
|
-
return true if status.nil?
|
|
18
|
-
/^final/.match status
|
|
19
|
-
end
|
|
20
|
-
|
|
21
9
|
def requirement_cleanup(docxml)
|
|
22
10
|
docxml.xpath("//div[@class = 'recommend' or @class = 'require' "\
|
|
23
11
|
"or @class = 'permission']").each do |d|
|
|
@@ -33,6 +21,7 @@ module IsoDoc
|
|
|
33
21
|
|
|
34
22
|
def dl_parse(node, out)
|
|
35
23
|
return glossary_parse(node, out) if node["type"] == "glossary"
|
|
24
|
+
return glossary_parse(node, out) if node.parent.name == "definitions"
|
|
36
25
|
super
|
|
37
26
|
end
|
|
38
27
|
|
|
@@ -63,9 +52,20 @@ module IsoDoc
|
|
|
63
52
|
end
|
|
64
53
|
|
|
65
54
|
def boilerplate(node, out)
|
|
66
|
-
|
|
67
|
-
|
|
55
|
+
boilerplate = node.at(ns("//boilerplate")) or return
|
|
56
|
+
out.div **{class: "authority"} do |s|
|
|
57
|
+
boilerplate.children.each do |n|
|
|
58
|
+
if n.name == "title"
|
|
59
|
+
s.h1 do |h|
|
|
60
|
+
n.children.each { |nn| parse(nn, h) }
|
|
61
|
+
end
|
|
62
|
+
else
|
|
63
|
+
parse(n, s)
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
page_break(s)
|
|
68
67
|
end
|
|
68
|
+
end
|
|
69
69
|
|
|
70
70
|
def children_parse(node, out)
|
|
71
71
|
node.children.each do |n|
|
|
@@ -180,6 +180,18 @@ module IsoDoc
|
|
|
180
180
|
out << " — "
|
|
181
181
|
node.at(ns("./p")).children.each { |n| parse(n, out) }
|
|
182
182
|
end
|
|
183
|
+
|
|
184
|
+
def ol_depth(node)
|
|
185
|
+
return super unless node["class"] == "steps" or
|
|
186
|
+
node.at(".//ancestor::xmlns:ol[@class = 'steps']")
|
|
187
|
+
depth = node.ancestors("ul, ol").size + 1
|
|
188
|
+
type = :arabic
|
|
189
|
+
type = :alphabet if [2, 7].include? depth
|
|
190
|
+
type = :roman if [3, 8].include? depth
|
|
191
|
+
type = :alphabet_upper if [4, 9].include? depth
|
|
192
|
+
type = :roman_upper if [5, 10].include? depth
|
|
193
|
+
ol_style(type)
|
|
194
|
+
end
|
|
183
195
|
end
|
|
184
196
|
end
|
|
185
197
|
end
|
|
@@ -828,7 +828,7 @@ div.WordSection1 {
|
|
|
828
828
|
{% endif %}
|
|
829
829
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
|
830
830
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
|
831
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
831
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
832
832
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
833
833
|
mso-paper-source: 0; }
|
|
834
834
|
|
|
@@ -843,7 +843,7 @@ div.WordSection1 {
|
|
|
843
843
|
{% endif %}
|
|
844
844
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
|
|
845
845
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2l;
|
|
846
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
846
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
|
847
847
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
|
848
848
|
mso-paper-source: 0; }
|
|
849
849
|
|
|
@@ -858,7 +858,7 @@ div.WordSection1 {
|
|
|
858
858
|
{% endif %}
|
|
859
859
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
|
860
860
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
|
861
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
861
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
862
862
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
863
863
|
mso-paper-source: 0; }
|
|
864
864
|
|
|
@@ -877,7 +877,7 @@ div.WordSection2 {
|
|
|
877
877
|
{% endif %}
|
|
878
878
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
|
879
879
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
|
880
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
880
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
881
881
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
882
882
|
mso-paper-source: 0; }
|
|
883
883
|
|
|
@@ -892,7 +892,7 @@ div.WordSection2 {
|
|
|
892
892
|
{% endif %}
|
|
893
893
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
|
|
894
894
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2l;
|
|
895
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
895
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
|
896
896
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
|
897
897
|
mso-paper-source: 0; }
|
|
898
898
|
|
|
@@ -907,7 +907,7 @@ div.WordSection2 {
|
|
|
907
907
|
{% endif %}
|
|
908
908
|
mso-even-header: url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
|
909
909
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
|
910
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
910
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
911
911
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
912
912
|
mso-paper-source: 0; }
|
|
913
913
|
|
|
@@ -790,7 +790,7 @@ div.WordSection1
|
|
|
790
790
|
{% endif %}
|
|
791
791
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
|
792
792
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
|
793
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
793
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
794
794
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
795
795
|
mso-paper-source:0;}
|
|
796
796
|
@page WordSection2L {
|
|
@@ -804,7 +804,7 @@ div.WordSection1
|
|
|
804
804
|
{% endif %}
|
|
805
805
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
|
|
806
806
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2l;
|
|
807
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
807
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
|
808
808
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
|
809
809
|
mso-paper-source:0;}
|
|
810
810
|
@page WordSection2P {
|
|
@@ -818,7 +818,7 @@ div.WordSection1
|
|
|
818
818
|
{% endif %}
|
|
819
819
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
|
820
820
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
|
821
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
821
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
822
822
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
823
823
|
mso-paper-source:0;}
|
|
824
824
|
div.WordSection2
|
|
@@ -835,7 +835,7 @@ div.WordSection2
|
|
|
835
835
|
{% endif %}
|
|
836
836
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
|
837
837
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
|
838
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
838
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
839
839
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
840
840
|
mso-paper-source:0;}
|
|
841
841
|
@page WordSection3L {
|
|
@@ -849,7 +849,7 @@ div.WordSection2
|
|
|
849
849
|
{% endif %}
|
|
850
850
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
|
|
851
851
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2l;
|
|
852
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
852
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
|
853
853
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
|
854
854
|
mso-paper-source:0;}
|
|
855
855
|
@page WordSection3P {
|
|
@@ -863,7 +863,7 @@ div.WordSection2
|
|
|
863
863
|
{% endif %}
|
|
864
864
|
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
|
865
865
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
|
866
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
866
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
867
867
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
868
868
|
mso-paper-source:0;}
|
|
869
869
|
div.WordSection3
|
|
@@ -776,7 +776,7 @@ div.WordSection1 {
|
|
|
776
776
|
{% endif %}
|
|
777
777
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
|
778
778
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
|
779
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
779
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
|
780
780
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
781
781
|
mso-paper-source: 0; }
|
|
782
782
|
|
|
@@ -791,7 +791,7 @@ div.WordSection1 {
|
|
|
791
791
|
{% endif %}
|
|
792
792
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
|
|
793
793
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1l;
|
|
794
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
794
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1l;
|
|
795
795
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
|
796
796
|
mso-paper-source: 0; }
|
|
797
797
|
|
|
@@ -806,7 +806,7 @@ div.WordSection1 {
|
|
|
806
806
|
{% endif %}
|
|
807
807
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
|
808
808
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
|
809
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
809
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
|
810
810
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
811
811
|
mso-paper-source: 0; }
|
|
812
812
|
|
|
@@ -825,7 +825,7 @@ div.WordSection2 {
|
|
|
825
825
|
{% endif %}
|
|
826
826
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
|
827
827
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
|
828
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
828
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
829
829
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
830
830
|
mso-paper-source: 0; }
|
|
831
831
|
|
|
@@ -840,7 +840,7 @@ div.WordSection2 {
|
|
|
840
840
|
{% endif %}
|
|
841
841
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
|
|
842
842
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1l;
|
|
843
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
843
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
|
844
844
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
|
845
845
|
mso-paper-source: 0; }
|
|
846
846
|
|
|
@@ -855,7 +855,7 @@ div.WordSection2 {
|
|
|
855
855
|
{% endif %}
|
|
856
856
|
mso-first-header: url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
|
857
857
|
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
|
858
|
-
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html")
|
|
858
|
+
mso-even-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
859
859
|
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
860
860
|
mso-paper-source: 0; }
|
|
861
861
|
|
|
@@ -742,7 +742,7 @@ div.WordSection1
|
|
|
742
742
|
{% endif %}
|
|
743
743
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
|
744
744
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
|
745
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
745
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
|
746
746
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
747
747
|
mso-paper-source:0;}
|
|
748
748
|
@page WordSection2L {
|
|
@@ -756,7 +756,7 @@ div.WordSection1
|
|
|
756
756
|
{% endif %}
|
|
757
757
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
|
|
758
758
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1l;
|
|
759
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
759
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1l;
|
|
760
760
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2l;
|
|
761
761
|
mso-paper-source:0;}
|
|
762
762
|
@page WordSection2P {
|
|
@@ -770,7 +770,7 @@ div.WordSection1
|
|
|
770
770
|
{% endif %}
|
|
771
771
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
|
772
772
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
|
773
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
773
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
|
774
774
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
|
775
775
|
mso-paper-source:0;}
|
|
776
776
|
div.WordSection2
|
|
@@ -787,7 +787,7 @@ div.WordSection2
|
|
|
787
787
|
{% endif %}
|
|
788
788
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
|
789
789
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
|
790
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
790
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
791
791
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
792
792
|
mso-paper-source:0;}
|
|
793
793
|
@page WordSection3L {
|
|
@@ -801,7 +801,7 @@ div.WordSection2
|
|
|
801
801
|
{% endif %}
|
|
802
802
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
|
|
803
803
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1l;
|
|
804
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
804
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
|
805
805
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
|
|
806
806
|
mso-paper-source:0;}
|
|
807
807
|
@page WordSection3P {
|
|
@@ -815,7 +815,7 @@ div.WordSection2
|
|
|
815
815
|
{% endif %}
|
|
816
816
|
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
|
|
817
817
|
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
|
818
|
-
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html")
|
|
818
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
819
819
|
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
|
820
820
|
mso-paper-source:0;}
|
|
821
821
|
div.WordSection3
|
|
@@ -191,7 +191,7 @@ p.MsoFooter, li.MsoFooter, div.MsoFooter {
|
|
|
191
191
|
margin: 0cm;
|
|
192
192
|
margin-bottom: .0001pt;
|
|
193
193
|
mso-pagination: widow-orphan;
|
|
194
|
-
tab-stops:
|
|
194
|
+
tab-stops: center 3.25in;
|
|
195
195
|
font-size: 12pt;
|
|
196
196
|
font-family: {{bodyfont}};
|
|
197
197
|
mso-fareast-font-family: "Times New Roman";
|
|
@@ -203,7 +203,7 @@ p.MsoFooterLandscape, li.MsoFooterLandscape, div.MsoFooterLandscape {
|
|
|
203
203
|
margin: 0cm;
|
|
204
204
|
margin-bottom: .0001pt;
|
|
205
205
|
mso-pagination: widow-orphan;
|
|
206
|
-
tab-stops:
|
|
206
|
+
tab-stops: center 4.5in;
|
|
207
207
|
font-size: 12pt;
|
|
208
208
|
font-family: {{bodyfont}};
|
|
209
209
|
mso-fareast-font-family: "Times New Roman";
|
|
@@ -454,7 +454,6 @@ h1.NormalTitle {
|
|
|
454
454
|
mso-style-parent: "Heading 1";
|
|
455
455
|
mso-style-link: "Heading 2 Char";
|
|
456
456
|
mso-style-next: Normal;
|
|
457
|
-
text-align: center;
|
|
458
457
|
margin-top: 3.0pt;
|
|
459
458
|
margin-right: 0cm;
|
|
460
459
|
margin-bottom: 12.0pt;
|
|
@@ -475,6 +474,12 @@ h1.NormalTitle {
|
|
|
475
474
|
mso-fareast-language: JA;
|
|
476
475
|
mso-bidi-font-weight: normal; }
|
|
477
476
|
|
|
477
|
+
.h2Annex {
|
|
478
|
+
text-align: left; }
|
|
479
|
+
|
|
480
|
+
.h2Preface {
|
|
481
|
+
text-align: center; }
|
|
482
|
+
|
|
478
483
|
h2 {
|
|
479
484
|
mso-style-priority: 2;
|
|
480
485
|
mso-style-unhide: no;
|
|
@@ -1371,6 +1376,81 @@ p.Tablebody, li.Tablebody, div.Tablebody {
|
|
|
1371
1376
|
margin-left: 162.0pt;
|
|
1372
1377
|
text-indent: -18.0pt; }
|
|
1373
1378
|
|
|
1379
|
+
/* steps ordered list */
|
|
1380
|
+
@list l4 {
|
|
1381
|
+
mso-list-id: 525294608;
|
|
1382
|
+
mso-list-template-ids: 676331812; }
|
|
1383
|
+
|
|
1384
|
+
@list l4:level1 {
|
|
1385
|
+
mso-level-text: "%1\)";
|
|
1386
|
+
mso-level-tab-stop: none;
|
|
1387
|
+
mso-level-number-position: left;
|
|
1388
|
+
margin-left: 1.4cm;
|
|
1389
|
+
text-indent: -1.4cm; }
|
|
1390
|
+
|
|
1391
|
+
@list l4:level2 {
|
|
1392
|
+
mso-level-text: "%2\)";
|
|
1393
|
+
mso-level-number-format: alpha-lower;
|
|
1394
|
+
mso-level-tab-stop: none;
|
|
1395
|
+
mso-level-number-position: left;
|
|
1396
|
+
margin-left: 2.1cm;
|
|
1397
|
+
text-indent: -0.7cm; }
|
|
1398
|
+
|
|
1399
|
+
@list l4:level3 {
|
|
1400
|
+
mso-level-number-format: roman-lower;
|
|
1401
|
+
mso-level-text: "%3\)";
|
|
1402
|
+
mso-level-tab-stop: none;
|
|
1403
|
+
mso-level-number-position: left;
|
|
1404
|
+
margin-left: 2.8cm;
|
|
1405
|
+
text-indent: -0.7cm; }
|
|
1406
|
+
|
|
1407
|
+
@list l4:level4 {
|
|
1408
|
+
mso-level-number-format: alpha-upper;
|
|
1409
|
+
mso-level-text: "%4\)";
|
|
1410
|
+
mso-level-tab-stop: none;
|
|
1411
|
+
mso-level-number-position: left;
|
|
1412
|
+
margin-left: 3.5cm;
|
|
1413
|
+
text-indent: -0.7cm; }
|
|
1414
|
+
|
|
1415
|
+
@list l4:level5 {
|
|
1416
|
+
mso-level-number-format: roman-upper;
|
|
1417
|
+
mso-level-text: "%5\)";
|
|
1418
|
+
mso-level-tab-stop: none;
|
|
1419
|
+
mso-level-number-position: left;
|
|
1420
|
+
margin-left: 4.2cm;
|
|
1421
|
+
text-indent: -0.7cm; }
|
|
1422
|
+
|
|
1423
|
+
@list l4:level6 {
|
|
1424
|
+
mso-level-text: "%6\)";
|
|
1425
|
+
mso-level-tab-stop: none;
|
|
1426
|
+
mso-level-number-position: left;
|
|
1427
|
+
margin-left: 4.9cm;
|
|
1428
|
+
text-indent: -0.7cm; }
|
|
1429
|
+
|
|
1430
|
+
@list l4:level7 {
|
|
1431
|
+
mso-level-tab-stop: none;
|
|
1432
|
+
mso-level-number-format: alpha-lower;
|
|
1433
|
+
mso-level-text: "%7\)";
|
|
1434
|
+
mso-level-number-position: left;
|
|
1435
|
+
margin-left: 5.6cm;
|
|
1436
|
+
text-indent: -0.7cm; }
|
|
1437
|
+
|
|
1438
|
+
@list l4:level8 {
|
|
1439
|
+
mso-level-number-format: roman-lower;
|
|
1440
|
+
mso-level-text: "%8\)";
|
|
1441
|
+
mso-level-tab-stop: none;
|
|
1442
|
+
mso-level-number-position: left;
|
|
1443
|
+
margin-left: 6.3cm;
|
|
1444
|
+
text-indent: -0.7cm; }
|
|
1445
|
+
|
|
1446
|
+
@list l4:level9 {
|
|
1447
|
+
mso-level-number-format: alpha-upper;
|
|
1448
|
+
mso-level-text: "%9\)";
|
|
1449
|
+
mso-level-tab-stop: none;
|
|
1450
|
+
mso-level-number-position: left;
|
|
1451
|
+
margin-left: 7.0cm;
|
|
1452
|
+
text-indent: -0.7cm; }
|
|
1453
|
+
|
|
1374
1454
|
div.ListContLevel1 {
|
|
1375
1455
|
mso-style-priority: 34;
|
|
1376
1456
|
margin-left: 18.0pt;
|