metanorma-ogc 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/asciidoctor/ogc/boilerplate.xml +3 -3
- data/lib/asciidoctor/ogc/front.rb +7 -19
- data/lib/isodoc/ogc/biblio.rb +33 -4
- data/lib/isodoc/ogc/html/header_wp.html +210 -0
- data/lib/isodoc/ogc/html/logo.png +0 -0
- data/lib/isodoc/ogc/html/ogc.css +6 -3
- data/lib/isodoc/ogc/html/ogc.scss +4 -2
- data/lib/isodoc/ogc/html/ogc_wp.css +758 -0
- data/lib/isodoc/ogc/html/ogc_wp.scss +724 -0
- data/lib/isodoc/ogc/html/word_ogc_intro_wp.html +14 -0
- data/lib/isodoc/ogc/html/word_ogc_titlepage_wp.html +175 -0
- data/lib/isodoc/ogc/html/wordstyle.css +8 -8
- data/lib/isodoc/ogc/html/wordstyle.scss +8 -8
- data/lib/isodoc/ogc/html/wordstyle_wp.css +1181 -0
- data/lib/isodoc/ogc/html/wordstyle_wp.scss +1093 -0
- data/lib/isodoc/ogc/init.rb +9 -0
- data/lib/isodoc/ogc/metadata.rb +30 -27
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +235 -47
- data/lib/isodoc/ogc/ogc.best-practice.xsl +235 -47
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +235 -47
- data/lib/isodoc/ogc/ogc.community-practice.xsl +235 -47
- data/lib/isodoc/ogc/ogc.community-standard.xsl +235 -47
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +235 -47
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +235 -47
- data/lib/isodoc/ogc/ogc.other.xsl +235 -47
- data/lib/isodoc/ogc/ogc.policy.xsl +235 -47
- data/lib/isodoc/ogc/ogc.reference-model.xsl +235 -47
- data/lib/isodoc/ogc/ogc.release-notes.xsl +235 -47
- data/lib/isodoc/ogc/ogc.standard.xsl +235 -47
- data/lib/isodoc/ogc/ogc.test-suite.xsl +235 -47
- data/lib/isodoc/ogc/ogc.user-guide.xsl +235 -47
- data/lib/isodoc/ogc/ogc.white-paper.xsl +233 -32
- data/lib/isodoc/ogc/word_convert.rb +20 -3
- data/lib/isodoc/ogc/xref.rb +20 -13
- data/lib/metanorma/ogc/version.rb +1 -1
- metadata +10 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 294cc548cfcdb632298e8cc49a7fe9b83e1961016f6d65e0fca475ff061fcb1b
|
4
|
+
data.tar.gz: dd506401c8631fc0a703c928572c6e8959dd6ba8471667924a02f1f3996571e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 608c44343f8690d6fba5be75d538f9fe4844cc441111de17e2674ecc8573095058ca8d471a2b9d77b17b5edd79294481f9c2e7b0d88ef845b0b50a79251c7730
|
7
|
+
data.tar.gz: c72fd20a20757bec35cd19f64561b01a87e9a28a30a157396f8768d671be2ac1dfd159054f5fbe78d58e04abe47910d432591c7d9e0af2a79aae7abb0a04d6d1
|
@@ -3,16 +3,16 @@
|
|
3
3
|
<clause>
|
4
4
|
<title>Copyright notice</title>
|
5
5
|
|
6
|
-
<p>Copyright
|
6
|
+
<p align="center">Copyright
|
7
7
|
© {{ docyear }} Open Geospatial Consortium<br/>
|
8
8
|
To obtain additional rights of use, visit
|
9
9
|
<link target="http://www.opengeospatial.org/legal/">http://www.opengeospatial.org/legal/</link></p>
|
10
10
|
</clause>
|
11
11
|
<clause>
|
12
12
|
<title>Note</title>
|
13
|
-
<p>Attention is drawn to the possibility that some of the elements of this document may be the subject of patent rights. The Open Geospatial Consortium shall not be held responsible for identifying any or all such patent rights.</p>
|
13
|
+
<p align="left">Attention is drawn to the possibility that some of the elements of this document may be the subject of patent rights. The Open Geospatial Consortium shall not be held responsible for identifying any or all such patent rights.</p>
|
14
14
|
|
15
|
-
<p>Recipients of this document are requested to submit, with their comments, notification of any relevant patent claims or other intellectual property rights of which they may be aware that might be infringed by any implementation of the standard set forth in this document, and to provide supporting documentation.</p>
|
15
|
+
<p align="left">Recipients of this document are requested to submit, with their comments, notification of any relevant patent claims or other intellectual property rights of which they may be aware that might be infringed by any implementation of the standard set forth in this document, and to provide supporting documentation.</p>
|
16
16
|
</clause>
|
17
17
|
</copyright-statement>
|
18
18
|
<license-statement>
|
@@ -12,8 +12,8 @@ module Asciidoctor
|
|
12
12
|
|
13
13
|
def corporate_author(node, xml)
|
14
14
|
return unless node.attr("submitting-organizations")
|
15
|
-
HTMLEntities.new.decode(node.attr("submitting-organizations"))
|
16
|
-
|
15
|
+
csv_split(HTMLEntities.new.decode(node.attr("submitting-organizations")),
|
16
|
+
";")&.each do |org|
|
17
17
|
xml.contributor do |c|
|
18
18
|
c.role **{ type: "author" }
|
19
19
|
c.organization do |a|
|
@@ -63,13 +63,8 @@ module Asciidoctor
|
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
|
-
def
|
67
|
-
|
68
|
-
c.role **{ type: "publisher" }
|
69
|
-
c.organization do |a|
|
70
|
-
a.name Metanorma::Ogc::ORGANIZATION_NAME_SHORT
|
71
|
-
end
|
72
|
-
end
|
66
|
+
def default_publisher
|
67
|
+
"Open Geospatial Consortium"
|
73
68
|
end
|
74
69
|
|
75
70
|
def metadata_committee(node, xml)
|
@@ -123,16 +118,9 @@ module Asciidoctor
|
|
123
118
|
end
|
124
119
|
|
125
120
|
def metadata_copyright(node, xml)
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
c.from from
|
130
|
-
c.owner do |owner|
|
131
|
-
owner.organization do |o|
|
132
|
-
o.name Metanorma::Ogc::ORGANIZATION_NAME_SHORT
|
133
|
-
end
|
134
|
-
end
|
135
|
-
end
|
121
|
+
node.attr("copyrightyear") and
|
122
|
+
node.set_attr("copyright-year", node.attr("copyrightyear"))
|
123
|
+
super
|
136
124
|
end
|
137
125
|
|
138
126
|
def metadata_date(node, xml)
|
data/lib/isodoc/ogc/biblio.rb
CHANGED
@@ -60,13 +60,34 @@ module IsoDoc
|
|
60
60
|
return [multiplenames_and(names), (abbrs.map { |x| x.text }).join("/")]
|
61
61
|
end
|
62
62
|
|
63
|
+
def extract_author(b)
|
64
|
+
c = b.xpath(ns("./contributor[role/@type = 'author']"))
|
65
|
+
c = b.xpath(ns("./contributor[role/@type = 'editor']")) if c.empty?
|
66
|
+
return nil if c.empty?
|
67
|
+
c.map do |c1|
|
68
|
+
c1&.at(ns("./organization/name"))&.text || extract_person_name(c1)
|
69
|
+
end.reject { |e| e.nil? || e.empty? }.join(", ")
|
70
|
+
end
|
71
|
+
|
72
|
+
def extract_person_name(b)
|
73
|
+
p = b.at(ns("./person/name")) or return
|
74
|
+
c = p.at(ns("./completename")) and return c.text
|
75
|
+
s = p&.at(ns("./surname"))&.text or return
|
76
|
+
i = p.xpath(ns("./initial")) and
|
77
|
+
front = i.map { |e| e.text.gsub(/[^[:upper:]]/, "") }.join("")
|
78
|
+
i.empty? and f = p.xpath(ns("./forename")) and
|
79
|
+
front = f.map { |e| e.text[0].upcase }.join("")
|
80
|
+
front ? "#{s} #{front}" : s
|
81
|
+
end
|
82
|
+
|
83
|
+
|
63
84
|
def date_render(date)
|
64
85
|
return nil if date.nil?
|
65
86
|
on = date&.at(ns("./on"))&.text
|
66
87
|
from = date&.at(ns("./from"))&.text
|
67
88
|
to = date&.at(ns("./to"))&.text
|
68
|
-
return on if on
|
69
|
-
return "#{from}–#{to}" if from
|
89
|
+
return on if on && !on.empty?
|
90
|
+
return "#{from}–#{to}" if from && !from.empty?
|
70
91
|
nil
|
71
92
|
end
|
72
93
|
|
@@ -82,17 +103,24 @@ module IsoDoc
|
|
82
103
|
b.at(ns("./place"))
|
83
104
|
end
|
84
105
|
|
106
|
+
def extract_uri(b)
|
107
|
+
b.at(ns("./uri"))
|
108
|
+
end
|
109
|
+
|
85
110
|
# {author}: {document identifier}, {title}. {publisher}, {city} ({year})
|
86
111
|
def standard_citation(out, b)
|
87
112
|
if ftitle = b.at(ns("./formattedref"))
|
88
113
|
ftitle&.children&.each { |n| parse(n, out) }
|
89
114
|
else
|
90
115
|
pub, pub_abbrev = extract_publisher(b)
|
116
|
+
author = extract_author(b)
|
91
117
|
c = extract_city(b)
|
92
118
|
y = extract_year(b)
|
93
|
-
|
119
|
+
u = extract_uri(b)
|
120
|
+
out << "#{author || pub_abbrev}: " if author || pub_abbrev
|
94
121
|
id = render_identifier(inline_bibitem_ref_code(b))
|
95
122
|
out << id[1] if id[1]
|
123
|
+
out << " (Draft)" if ogc_draft_ref?(b)
|
96
124
|
out << ", "
|
97
125
|
out.i do |i|
|
98
126
|
iso_title(b)&.children&.each { |n| parse(n, i) }
|
@@ -102,7 +130,8 @@ module IsoDoc
|
|
102
130
|
out << ", " if pub && c
|
103
131
|
c&.children&.each { |n| parse(n, out) }
|
104
132
|
out << " " if (pub || c) && y
|
105
|
-
out << "(#{y})." if y
|
133
|
+
out << "(#{y}). " if y
|
134
|
+
u and out << "<a href='#{u.text}'>#{u.text}</a>"
|
106
135
|
end
|
107
136
|
end
|
108
137
|
|
@@ -0,0 +1,210 @@
|
|
1
|
+
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
2
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
3
|
+
xmlns:w="urn:schemas-microsoft-com:office:word"
|
4
|
+
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
|
5
|
+
xmlns:mv="http://macVmlSchemaUri" xmlns="http://www.w3.org/TR/REC-html40">
|
6
|
+
|
7
|
+
<head>
|
8
|
+
<meta name="Title" content="">
|
9
|
+
<meta name="Keywords" content="">
|
10
|
+
<meta "http-equiv"="Content-Type" content="text/html; charset=utf-8">
|
11
|
+
<meta name="ProgId" content="Word.Document">
|
12
|
+
<meta name="Generator" content="Microsoft Word 15">
|
13
|
+
<meta name="Originator" content="Microsoft Word 15">
|
14
|
+
<link id=Main-File rel=Main-File href="../{{ filename }}.html">
|
15
|
+
<!--[if gte mso 9]><xml>
|
16
|
+
<o:shapedefaults v:ext="edit" spidmax="2049"/>
|
17
|
+
</xml><![endif]-->
|
18
|
+
</head>
|
19
|
+
|
20
|
+
<body lang="EN" link="#0563C1" vlink="#954F72">
|
21
|
+
|
22
|
+
<div style='mso-element:footnote-separator' id="fs">
|
23
|
+
|
24
|
+
<p class="MsoNormal" style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal'><span lang=EN-GB><span style='mso-special-character:footnote-separator'>
|
25
|
+
|
26
|
+
</span></span></p>
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<div style='mso-element:footnote-continuation-separator' id="fcs">
|
31
|
+
|
32
|
+
<p class="MsoNormal" style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal'><span lang="EN-GB"><span style='mso-special-character:footnote-continuation-separator'>
|
33
|
+
|
34
|
+
</span></span></p>
|
35
|
+
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div style='mso-element:footnote-continuation-notice' id="fcn">
|
39
|
+
|
40
|
+
<p class="MsoNormal" style='margin-top:0cm;line-height:normal'><span lang=EN-US> </span></p>
|
41
|
+
|
42
|
+
</div>
|
43
|
+
|
44
|
+
|
45
|
+
<div style='mso-element:endnote-separator' id="es">
|
46
|
+
|
47
|
+
<p class="MsoNormal" style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal'><span lang="EN-GB"><span style='mso-special-character:footnote-separator'>
|
48
|
+
|
49
|
+
</span></span></p>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div style='mso-element:endnote-continuation-separator' id="ecs">
|
54
|
+
|
55
|
+
<p class="MsoNormal" style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal'><span lang="EN-GB"><span style='mso-special-character:footnote-continuation-separator'>
|
56
|
+
|
57
|
+
</span></span></p>
|
58
|
+
|
59
|
+
</div>
|
60
|
+
|
61
|
+
<div style='mso-element:endnote-continuation-notice' id="ecn">
|
62
|
+
|
63
|
+
<p class="MsoNormal" style='margin-top:0cm;line-height:normal'><span lang=EN-US> </span></p>
|
64
|
+
|
65
|
+
</div>
|
66
|
+
|
67
|
+
|
68
|
+
<div style='mso-element:header' id="h1">
|
69
|
+
|
70
|
+
<p class="MsoHeader"><span lang="EN-US" style='mso-no-proof:yes'><v:rect
|
71
|
+
id="Rectangle_x0020_5" o:spid="_x0000_s2051" style='position:absolute;margin-left:0;margin-top:-12.55pt;width:611.5pt;height:52.4pt;z-index:-251653120;visibility:visible;mso-wrap-style:square;mso-width-percent:0;mso-height-percent:0;mso-wrap-distance-left:9pt;mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;mso-wrap-distance-bottom:0;mso-position-horizontal:left;mso-position-horizontal-relative:page;mso-position-vertical:absolute;mso-position-vertical-relative:text;mso-width-percent:0;mso-height-percent:0;mso-width-relative:margin;mso-height-relative:margin;v-text-anchor:middle' o:gfxdata="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
|
102
|
+
bFBLBQYAAAAABAAEAPMAAAD1BQAAAAA=
|
103
|
+
" fillcolor="#036" strokecolor="#1f4d78 [1604]" strokeweight="1pt">
|
104
|
+
<w:wrap anchorx="page"/>
|
105
|
+
</v:rect></span></p>
|
106
|
+
|
107
|
+
</div>
|
108
|
+
|
109
|
+
<div style='mso-element:footer' id=f1>
|
110
|
+
|
111
|
+
<p class="MsoFooter" align="right" style='text-align:right'><span lang="EN-US"
|
112
|
+
style='mso-no-proof:yes'><v:shapetype id="_x0000_t202"
|
113
|
+
coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
114
|
+
<v:stroke joinstyle="miter"/>
|
115
|
+
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
116
|
+
</v:shapetype><v:shape id="Text_x0020_Box_x0020_2" o:spid="_x0000_s2050"
|
117
|
+
type="#_x0000_t202" style='position:absolute;left:0;text-align:left;margin-left:-12.75pt;margin-top:-6.8pt;width:185.9pt;height:110.6pt;z-index:251661312;visibility:visible;mso-wrap-style:square;mso-width-percent:400;mso-height-percent:200;mso-wrap-distance-left:9pt;mso-wrap-distance-top:3.6pt;mso-wrap-distance-right:9pt;mso-wrap-distance-bottom:3.6pt;mso-position-horizontal:absolute;mso-position-horizontal-relative:text;mso-position-vertical:absolute;mso-position-vertical-relative:text;mso-width-percent:400;mso-height-percent:200;mso-width-relative:margin;mso-height-relative:margin;v-text-anchor:top' o:gfxdata="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
|
146
|
+
APMAAAB3BQAAAAA=
|
147
|
+
" filled="f" stroked="f">
|
148
|
+
<v:textbox style='mso-fit-shape-to-text:t'>
|
149
|
+
<div>
|
150
|
+
<p class="MsoNormal"><span lang="EN-US" style='color:#E7E6E6;mso-themecolor:background2'>ogc.org</span></p>
|
151
|
+
</div>
|
152
|
+
</table>
|
153
|
+
</v:textbox>
|
154
|
+
<w:wrap type="square"/>
|
155
|
+
</v:shape><v:rect id="Rectangle_x0020_2" o:spid="_x0000_s2049"
|
156
|
+
style='position:absolute;left:0;text-align:left;margin-left:2.5pt;margin-top:-4.1pt;width:611.5pt;height:75.6pt;z-index:-251657216;visibility:visible;mso-wrap-style:square;mso-width-percent:0;mso-height-percent:0;mso-wrap-distance-left:9pt;mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;mso-position-horizontal-relative:page;mso-position-vertical:absolute;mso-position-vertical-relative:text;mso-width-percent:0;mso-height-percent:0;mso-width-relative:margin;mso-height-relative:margin;v-text-anchor:middle'
|
157
|
+
o:gfxdata="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
|
188
|
+
bWxQSwUGAAAAAAQABADzAAAA9gUAAAAA
|
189
|
+
" fillcolor="#036" strokecolor="#1f4d78 [1604]" strokeweight="1pt">
|
190
|
+
<w:wrap anchorx="page"/>
|
191
|
+
</v:rect></span><span lang=EN-US><w:Sdt SdtDocPart="t"
|
192
|
+
DocPartType="Page Numbers (Bottom of Page)" DocPartUnique="t" ID="-2002186409"><span
|
193
|
+
style='color:#E7E6E6;mso-themecolor:background2'>Page | </span><span
|
194
|
+
style='color:#E7E6E6;mso-themecolor:background2'><span style='mso-element:
|
195
|
+
field-begin'></span><span style='mso-spacerun:yes'> </span>PAGE<span
|
196
|
+
style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span style='mso-element:
|
197
|
+
field-separator'></span></span><span style='color:#E7E6E6;
|
198
|
+
mso-themecolor:background2'><span style='mso-no-proof:yes'>2</span></span><span
|
199
|
+
style='color:#E7E6E6;mso-themecolor:background2;mso-no-proof:yes'><span
|
200
|
+
style='mso-element:field-end'></span></span><span
|
201
|
+
style='color:#E7E6E6;mso-themecolor:background2'> </w:Sdt></span><span
|
202
|
+
style='color:#E7E6E6;mso-themecolor:background2'></span></span></p>
|
203
|
+
|
204
|
+
<p class="MsoFooter"><span lang="EN-US"> </span></p>
|
205
|
+
|
206
|
+
</div>
|
207
|
+
|
208
|
+
</body>
|
209
|
+
|
210
|
+
</html>
|
Binary file
|
data/lib/isodoc/ogc/html/ogc.css
CHANGED
@@ -141,11 +141,10 @@ p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote
|
|
141
141
|
text-align: left;
|
142
142
|
line-height: 12.0pt;
|
143
143
|
mso-pagination: widow-orphan;
|
144
|
-
tab-stops:
|
144
|
+
tab-stops: 2.0cm;
|
145
145
|
font-size: 10.0pt;
|
146
146
|
mso-bidi-font-size: 11.0pt;
|
147
147
|
font-family: {{bodyfont}};
|
148
|
-
font-size: 10.0pt;
|
149
148
|
mso-fareast-font-family: {{bodyfont}};
|
150
149
|
mso-bidi-font-family: {{bodyfont}};
|
151
150
|
mso-ansi-language: EN-GB; }
|
@@ -728,6 +727,9 @@ table.MsoISOTable td {
|
|
728
727
|
table.MsoISOTable p {
|
729
728
|
font-size: 10.0pt; }
|
730
729
|
|
730
|
+
table.recommendclass, table.recommendclass p {
|
731
|
+
font-size: 10.0pt; }
|
732
|
+
|
731
733
|
table.MsoTableGrid {
|
732
734
|
mso-style-name: "Table Grid";
|
733
735
|
mso-tstyle-rowband-size: 0;
|
@@ -825,7 +827,8 @@ table.dl {
|
|
825
827
|
margin-left: 20.15pt; }
|
826
828
|
|
827
829
|
div.license, p.license {
|
828
|
-
font-size: 8.0pt;
|
830
|
+
font-size: 8.0pt;
|
831
|
+
font-family: {{bodyfont}}; }
|
829
832
|
|
830
833
|
div.warning p {
|
831
834
|
margin-bottom: 6.0pt;
|
@@ -134,11 +134,10 @@ p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote
|
|
134
134
|
text-align:left;
|
135
135
|
line-height:12.0pt;
|
136
136
|
mso-pagination:widow-orphan;
|
137
|
-
tab-stops:
|
137
|
+
tab-stops:2.0cm;
|
138
138
|
font-size:10.0pt;
|
139
139
|
mso-bidi-font-size:11.0pt;
|
140
140
|
font-family:$bodyfont;
|
141
|
-
font-size:10.0pt;
|
142
141
|
mso-fareast-font-family:$bodyfont;
|
143
142
|
mso-bidi-font-family:$bodyfont;
|
144
143
|
mso-ansi-language:EN-GB;}
|
@@ -686,6 +685,8 @@ table.MsoISOTable td
|
|
686
685
|
padding:0cm 2.85pt 0cm 2.85pt;}
|
687
686
|
table.MsoISOTable p
|
688
687
|
{font-size:10.0pt; }
|
688
|
+
table.recommendclass, table.recommendclass p
|
689
|
+
{font-size:10.0pt; }
|
689
690
|
table.MsoTableGrid
|
690
691
|
{mso-style-name:"Table Grid";
|
691
692
|
mso-tstyle-rowband-size:0;
|
@@ -785,6 +786,7 @@ table.dl
|
|
785
786
|
margin-left:20.15pt;}
|
786
787
|
div.license, p.license {
|
787
788
|
font-size:8.0pt;
|
789
|
+
font-family:$bodyfont;
|
788
790
|
}
|
789
791
|
div.warning p {
|
790
792
|
margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
|
@@ -0,0 +1,758 @@
|
|
1
|
+
p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode, pre {
|
2
|
+
mso-style-unhide: no;
|
3
|
+
mso-style-qformat: yes;
|
4
|
+
mso-style-parent: "";
|
5
|
+
margin-top: 6.0pt;
|
6
|
+
margin-right: 0cm;
|
7
|
+
margin-bottom: 6.0pt;
|
8
|
+
margin-left: 0cm;
|
9
|
+
text-align: left;
|
10
|
+
mso-pagination: widow-orphan;
|
11
|
+
tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
|
12
|
+
font-size: 10.0pt;
|
13
|
+
font-family: {{monospacefont}};
|
14
|
+
mso-fareast-font-family: Calibri;
|
15
|
+
mso-bidi-font-family: "Courier New";
|
16
|
+
mso-ansi-language: EN-GB; }
|
17
|
+
|
18
|
+
p.pseudocode, li.pseudocode, div.pseudocode {
|
19
|
+
mso-style-unhide: no;
|
20
|
+
mso-style-qformat: yes;
|
21
|
+
mso-style-parent: "";
|
22
|
+
margin-top: 6.0pt;
|
23
|
+
margin-right: 0cm;
|
24
|
+
margin-bottom: 6.0pt;
|
25
|
+
margin-left: 0cm;
|
26
|
+
text-align: left;
|
27
|
+
mso-pagination: widow-orphan;
|
28
|
+
tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
|
29
|
+
font-size: 10.5pt;
|
30
|
+
font-family: {{bodyfont}};
|
31
|
+
mso-fareast-font-family: Calibri;
|
32
|
+
mso-bidi-font-family: "Courier New";
|
33
|
+
mso-ansi-language: EN-GB; }
|
34
|
+
|
35
|
+
p.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, div.NormRef {
|
36
|
+
mso-style-unhide: no;
|
37
|
+
mso-style-qformat: yes;
|
38
|
+
mso-style-parent: "";
|
39
|
+
margin-top: 0cm;
|
40
|
+
margin-right: 0cm;
|
41
|
+
margin-bottom: 12.0pt;
|
42
|
+
margin-left: 33.15pt;
|
43
|
+
text-indent: -33.15pt;
|
44
|
+
tab-stops: 33.15pt;
|
45
|
+
line-height: 12.0pt;
|
46
|
+
mso-pagination: widow-orphan;
|
47
|
+
font-size: 10.5pt;
|
48
|
+
font-weight: normal;
|
49
|
+
font-family: {{bodyfont}};
|
50
|
+
mso-fareast-font-family: {{bodyfont}};
|
51
|
+
mso-bidi-font-family: {{bodyfont}};
|
52
|
+
mso-ansi-language: EN-GB; }
|
53
|
+
|
54
|
+
p.FigureTitle {
|
55
|
+
page-break-before: avoid; }
|
56
|
+
|
57
|
+
p.SourceTitle {
|
58
|
+
page-break-before: avoid; }
|
59
|
+
|
60
|
+
p.AdmonitionTitle, p.RecommendationTitle, p.RecommendationTestTitle {
|
61
|
+
page-break-after: avoid; }
|
62
|
+
|
63
|
+
p.TableTitle, p.FigureTitle, p.SourceTitle, p.AdmonitionTitle, p.RecommendationTitle, p.RecommendationTestTitle, p.example-title {
|
64
|
+
mso-style-unhide: no;
|
65
|
+
mso-style-qformat: yes;
|
66
|
+
mso-style-parent: "";
|
67
|
+
margin-top: 0cm;
|
68
|
+
margin-right: 0cm;
|
69
|
+
margin-bottom: 10.0pt;
|
70
|
+
margin-left: 0cm;
|
71
|
+
page-break-after: avoid;
|
72
|
+
line-height: 12.0pt;
|
73
|
+
mso-pagination: widow-orphan;
|
74
|
+
tab-stops: 20.15pt;
|
75
|
+
font-size: 11.0pt;
|
76
|
+
font-family: {{bodyfont}};
|
77
|
+
color: #44546A;
|
78
|
+
mso-themecolor: text2;
|
79
|
+
mso-fareast-font-family: {{bodyfont}};
|
80
|
+
mso-bidi-font-family: {{bodyfont}};
|
81
|
+
mso-ansi-language: EN-GB;
|
82
|
+
font-style: italic; }
|
83
|
+
|
84
|
+
p.TableTitle, p.example-title {
|
85
|
+
page-break-after: avoid; }
|
86
|
+
|
87
|
+
p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote {
|
88
|
+
mso-style-unhide: no;
|
89
|
+
mso-style-qformat: yes;
|
90
|
+
mso-style-parent: "";
|
91
|
+
margin-top: 0cm;
|
92
|
+
margin-right: 0cm;
|
93
|
+
margin-bottom: 12.0pt;
|
94
|
+
margin-left: 0cm;
|
95
|
+
text-align: left;
|
96
|
+
line-height: 12.0pt;
|
97
|
+
mso-pagination: widow-orphan;
|
98
|
+
tab-stops: 2.0cm;
|
99
|
+
font-size: 10.0pt;
|
100
|
+
mso-bidi-font-size: 11.0pt;
|
101
|
+
font-family: {{bodyfont}};
|
102
|
+
mso-fareast-font-family: {{bodyfont}};
|
103
|
+
mso-bidi-font-family: {{bodyfont}};
|
104
|
+
mso-ansi-language: EN-GB; }
|
105
|
+
|
106
|
+
p.ANNEX, li.ANNEX, div.ANNEX {
|
107
|
+
mso-style-name: ANNEX;
|
108
|
+
mso-style-priority: 10;
|
109
|
+
mso-style-unhide: no;
|
110
|
+
mso-style-next: Normal;
|
111
|
+
margin-top: 0cm;
|
112
|
+
margin-right: 0cm;
|
113
|
+
margin-bottom: 24.0pt;
|
114
|
+
margin-left: 0cm;
|
115
|
+
text-align: center;
|
116
|
+
text-indent: 0cm;
|
117
|
+
line-height: 15.5pt;
|
118
|
+
mso-line-height-rule: exactly;
|
119
|
+
page-break-before: always;
|
120
|
+
mso-pagination: widow-orphan;
|
121
|
+
page-break-after: avoid;
|
122
|
+
mso-outline-level: 1;
|
123
|
+
mso-list: l0 level1 lfo12;
|
124
|
+
tab-stops: 20.15pt;
|
125
|
+
font-size: 14.0pt;
|
126
|
+
mso-bidi-font-size: 11.0pt;
|
127
|
+
font-family: {{headerfont}};
|
128
|
+
mso-fareast-font-family: {{headerfont}};
|
129
|
+
mso-bidi-font-family: {{headerfont}};
|
130
|
+
mso-ansi-language: EN-GB;
|
131
|
+
mso-fareast-language: JA;
|
132
|
+
font-weight: bold;
|
133
|
+
mso-bidi-font-weight: normal; }
|
134
|
+
|
135
|
+
p.BiblioTitle, li.BiblioTitle, div.BiblioTitle {
|
136
|
+
mso-style-name: "Biblio Title";
|
137
|
+
mso-style-noshow: yes;
|
138
|
+
mso-style-unhide: no;
|
139
|
+
margin-top: 0cm;
|
140
|
+
margin-right: 0cm;
|
141
|
+
margin-bottom: 15.5pt;
|
142
|
+
margin-left: 0cm;
|
143
|
+
text-align: center;
|
144
|
+
line-height: 15.5pt;
|
145
|
+
mso-pagination: widow-orphan;
|
146
|
+
mso-outline-level: 1;
|
147
|
+
tab-stops: 20.15pt;
|
148
|
+
font-size: 14.0pt;
|
149
|
+
mso-bidi-font-size: 11.0pt;
|
150
|
+
font-family: {{headerfont}};
|
151
|
+
mso-fareast-font-family: {{headerfont}};
|
152
|
+
mso-bidi-font-family: {{headerfont}};
|
153
|
+
mso-ansi-language: EN-GB;
|
154
|
+
font-weight: bold;
|
155
|
+
mso-bidi-font-weight: normal; }
|
156
|
+
|
157
|
+
p.Definition, li.Definition, div.Definition {
|
158
|
+
mso-style-name: Definition;
|
159
|
+
mso-style-priority: 9;
|
160
|
+
mso-style-unhide: no;
|
161
|
+
margin-top: 0cm;
|
162
|
+
margin-right: 0cm;
|
163
|
+
margin-bottom: 12.0pt;
|
164
|
+
margin-left: 0cm;
|
165
|
+
text-align: left;
|
166
|
+
line-height: 12.0pt;
|
167
|
+
mso-pagination: widow-orphan;
|
168
|
+
tab-stops: 20.15pt;
|
169
|
+
font-size: 11.0pt;
|
170
|
+
font-family: {{bodyfont}};
|
171
|
+
mso-fareast-font-family: {{bodyfont}};
|
172
|
+
mso-bidi-font-family: {{bodyfont}};
|
173
|
+
mso-ansi-language: EN-GB; }
|
174
|
+
|
175
|
+
p.ForewordTitle, li.ForewordTitle, div.ForewordTitle {
|
176
|
+
mso-style-name: "Foreword Title";
|
177
|
+
mso-style-noshow: yes;
|
178
|
+
mso-style-unhide: no;
|
179
|
+
margin-top: 0cm;
|
180
|
+
margin-right: 0cm;
|
181
|
+
margin-bottom: 15.5pt;
|
182
|
+
margin-left: 0cm;
|
183
|
+
text-align: left;
|
184
|
+
line-height: 15.5pt;
|
185
|
+
page-break-before: always;
|
186
|
+
mso-pagination: widow-orphan;
|
187
|
+
page-break-after: avoid;
|
188
|
+
mso-outline-level: 1;
|
189
|
+
mso-hyphenate: none;
|
190
|
+
tab-stops: 20.15pt;
|
191
|
+
font-size: 14.0pt;
|
192
|
+
mso-bidi-font-size: 11.0pt;
|
193
|
+
font-family: {{headerfont}};
|
194
|
+
mso-fareast-font-family: {{headerfont}};
|
195
|
+
mso-bidi-font-family: {{headerfont}};
|
196
|
+
mso-ansi-language: EN-GB;
|
197
|
+
font-weight: bold;
|
198
|
+
mso-bidi-font-weight: normal; }
|
199
|
+
|
200
|
+
p.IntroTitle, li.IntroTitle, div.IntroTitle {
|
201
|
+
mso-style-name: "Intro Title";
|
202
|
+
mso-style-noshow: yes;
|
203
|
+
mso-style-unhide: no;
|
204
|
+
mso-style-parent: "Foreword Title";
|
205
|
+
margin-top: 0cm;
|
206
|
+
margin-right: 0cm;
|
207
|
+
margin-bottom: 15.5pt;
|
208
|
+
margin-left: 0cm;
|
209
|
+
text-align: left;
|
210
|
+
line-height: 15.5pt;
|
211
|
+
mso-pagination: widow-orphan;
|
212
|
+
page-break-after: avoid;
|
213
|
+
mso-outline-level: 1;
|
214
|
+
mso-hyphenate: none;
|
215
|
+
tab-stops: 20.15pt;
|
216
|
+
font-size: 14.0pt;
|
217
|
+
mso-bidi-font-size: 11.0pt;
|
218
|
+
font-family: {{headerfont}};
|
219
|
+
mso-fareast-font-family: {{headerfont}};
|
220
|
+
mso-bidi-font-family: {{headerfont}};
|
221
|
+
mso-ansi-language: EN-GB;
|
222
|
+
font-weight: bold;
|
223
|
+
page-break-before: always;
|
224
|
+
mso-bidi-font-weight: normal; }
|
225
|
+
|
226
|
+
p.TitlePageSubhead, li.TitlePageSubhead, div.TitlePageSubhead {
|
227
|
+
mso-style-noshow: yes;
|
228
|
+
mso-style-unhide: no;
|
229
|
+
mso-style-parent: "Foreword Title";
|
230
|
+
margin-top: 0cm;
|
231
|
+
margin-right: 0cm;
|
232
|
+
margin-bottom: 0.0pt;
|
233
|
+
margin-left: 0cm;
|
234
|
+
text-align: center;
|
235
|
+
line-height: 15.5pt;
|
236
|
+
mso-pagination: widow-orphan;
|
237
|
+
page-break-after: avoid;
|
238
|
+
mso-hyphenate: none;
|
239
|
+
tab-stops: 20.15pt;
|
240
|
+
font-size: 10.5pt;
|
241
|
+
mso-bidi-font-size: 11.0pt;
|
242
|
+
font-family: {{headerfont}};
|
243
|
+
mso-fareast-font-family: {{headerfont}};
|
244
|
+
mso-bidi-font-family: {{headerfont}};
|
245
|
+
mso-ansi-language: EN-GB;
|
246
|
+
font-weight: bold;
|
247
|
+
mso-bidi-font-weight: normal; }
|
248
|
+
|
249
|
+
p.Terms, li.Terms, div.Terms {
|
250
|
+
mso-style-name: "Term\(s\)";
|
251
|
+
mso-style-priority: 8;
|
252
|
+
mso-style-unhide: no;
|
253
|
+
mso-style-next: Definition;
|
254
|
+
margin: 0cm;
|
255
|
+
margin-bottom: .0001pt;
|
256
|
+
line-height: 12.0pt;
|
257
|
+
mso-pagination: widow-orphan;
|
258
|
+
page-break-after: avoid;
|
259
|
+
mso-hyphenate: none;
|
260
|
+
tab-stops: 20.15pt;
|
261
|
+
font-size: 11.0pt;
|
262
|
+
font-family: {{headerfont}};
|
263
|
+
mso-fareast-font-family: {{headerfont}};
|
264
|
+
mso-bidi-font-family: {{headerfont}};
|
265
|
+
mso-ansi-language: EN-GB;
|
266
|
+
font-weight: bold;
|
267
|
+
mso-bidi-font-weight: normal; }
|
268
|
+
|
269
|
+
p.AltTerms, li.AltTerms, div.AltTerms {
|
270
|
+
mso-style-name: "AltTerm\(s\)";
|
271
|
+
mso-style-priority: 8;
|
272
|
+
mso-style-unhide: no;
|
273
|
+
mso-style-next: Definition;
|
274
|
+
margin: 0cm;
|
275
|
+
margin-bottom: .0001pt;
|
276
|
+
line-height: 12.0pt;
|
277
|
+
mso-pagination: widow-orphan;
|
278
|
+
page-break-after: avoid;
|
279
|
+
mso-hyphenate: none;
|
280
|
+
tab-stops: 20.15pt;
|
281
|
+
font-size: 11.0pt;
|
282
|
+
font-family: {{bodyfont}};
|
283
|
+
mso-fareast-font-family: {{bodyfont}};
|
284
|
+
mso-bidi-font-family: {{bodyfont}};
|
285
|
+
mso-ansi-language: EN-GB;
|
286
|
+
mso-bidi-font-weight: normal; }
|
287
|
+
|
288
|
+
p.DeprecatedTerms, li.DeprecatedTerms, div.DeprecatedTerms {
|
289
|
+
mso-style-name: "DeprecatedTerm\(s\)";
|
290
|
+
mso-style-priority: 8;
|
291
|
+
mso-style-unhide: no;
|
292
|
+
mso-style-next: Definition;
|
293
|
+
margin: 0cm;
|
294
|
+
margin-bottom: .0001pt;
|
295
|
+
line-height: 12.0pt;
|
296
|
+
mso-pagination: widow-orphan;
|
297
|
+
page-break-after: avoid;
|
298
|
+
mso-hyphenate: none;
|
299
|
+
tab-stops: 20.15pt;
|
300
|
+
font-size: 11.0pt;
|
301
|
+
font-family: {{bodyfont}};
|
302
|
+
mso-fareast-font-family: {{bodyfont}};
|
303
|
+
mso-bidi-font-family: {{bodyfont}};
|
304
|
+
mso-ansi-language: EN-GB;
|
305
|
+
mso-bidi-font-weight: normal; }
|
306
|
+
|
307
|
+
p.TermNum, li.TermNum, div.TermNum {
|
308
|
+
mso-style-name: TermNum;
|
309
|
+
mso-style-priority: 7;
|
310
|
+
mso-style-unhide: no;
|
311
|
+
mso-style-next: "Term\(s\)";
|
312
|
+
margin: 0cm;
|
313
|
+
margin-bottom: .0001pt;
|
314
|
+
line-height: 12.0pt;
|
315
|
+
mso-pagination: widow-orphan;
|
316
|
+
page-break-after: avoid;
|
317
|
+
tab-stops: 20.15pt;
|
318
|
+
font-size: 11.0pt;
|
319
|
+
font-family: {{headerfont}};
|
320
|
+
mso-fareast-font-family: {{headerfont}};
|
321
|
+
mso-bidi-font-family: {{headerfont}};
|
322
|
+
mso-ansi-language: EN-GB;
|
323
|
+
font-weight: bold;
|
324
|
+
mso-bidi-font-weight: normal; }
|
325
|
+
|
326
|
+
p.zzContents, li.zzContents, div.zzContents, p.TOCTitle {
|
327
|
+
mso-style-name: zzContents;
|
328
|
+
mso-style-noshow: yes;
|
329
|
+
mso-style-unhide: no;
|
330
|
+
mso-style-next: "TOC 1";
|
331
|
+
margin-top: 18.0pt;
|
332
|
+
margin-right: 0cm;
|
333
|
+
margin-bottom: 12.0pt;
|
334
|
+
margin-left: 0cm;
|
335
|
+
mso-add-space: auto;
|
336
|
+
mso-pagination: widow-orphan lines-together;
|
337
|
+
page-break-after: avoid;
|
338
|
+
border: none;
|
339
|
+
mso-border-bottom-alt: solid #152B4D 2.25pt;
|
340
|
+
mso-border-bottom-themecolor: accent5;
|
341
|
+
mso-border-bottom-themeshade: 128;
|
342
|
+
padding: 0cm;
|
343
|
+
mso-padding-alt: 0cm 0cm 1.0pt 0cm;
|
344
|
+
font-size: 26.0pt;
|
345
|
+
mso-bidi-font-size: 16.0pt;
|
346
|
+
font-family: {{headerfont}};
|
347
|
+
mso-fareast-font-family: "MS Gothic";
|
348
|
+
mso-fareast-theme-font: major-fareast;
|
349
|
+
mso-bidi-font-family: "Times New Roman";
|
350
|
+
mso-bidi-theme-font: major-bidi;
|
351
|
+
color: #3B3838;
|
352
|
+
mso-themecolor: background2;
|
353
|
+
mso-themeshade: 64;
|
354
|
+
mso-ansi-language: EN-US;
|
355
|
+
mso-fareast-language: EN-US; }
|
356
|
+
|
357
|
+
p.zzCopyright, li.zzCopyright {
|
358
|
+
mso-style-name: zzCopyright;
|
359
|
+
mso-style-noshow: yes;
|
360
|
+
mso-style-unhide: no;
|
361
|
+
mso-style-next: Normal;
|
362
|
+
margin-top: 0cm;
|
363
|
+
margin-right: 14.2pt;
|
364
|
+
margin-bottom: 12.0pt;
|
365
|
+
margin-left: 14.2pt;
|
366
|
+
text-align: left;
|
367
|
+
line-height: 12.0pt;
|
368
|
+
mso-pagination: widow-orphan;
|
369
|
+
tab-stops: 20.15pt 25.7pt 481.15pt;
|
370
|
+
padding: 0cm;
|
371
|
+
mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;
|
372
|
+
font-size: 10.5pt;
|
373
|
+
font-family: {{bodyfont}};
|
374
|
+
mso-fareast-font-family: {{bodyfont}};
|
375
|
+
mso-bidi-font-family: {{bodyfont}};
|
376
|
+
mso-ansi-language: EN-GB; }
|
377
|
+
|
378
|
+
div.zzCopyright {
|
379
|
+
mso-element: para-border-div;
|
380
|
+
border: solid windowtext 1.0pt;
|
381
|
+
mso-border-top-alt: solid windowtext .5pt;
|
382
|
+
mso-border-left-alt: solid windowtext .5pt;
|
383
|
+
mso-border-right-alt: solid windowtext .5pt;
|
384
|
+
mso-border-bottom-alt: solid windowtext .5pt;
|
385
|
+
padding: 1.0pt 4.0pt 0cm 4.0pt;
|
386
|
+
margin-left: 5.1pt;
|
387
|
+
margin-right: 5.1pt; }
|
388
|
+
|
389
|
+
p.zzCopyright_address {
|
390
|
+
margin-top: 0cm;
|
391
|
+
margin-right: 14.2pt;
|
392
|
+
margin-bottom: 0.0pt;
|
393
|
+
margin-left: 14.2pt;
|
394
|
+
mso-layout-grid-align: none;
|
395
|
+
text-autospace: none;
|
396
|
+
padding-left: 20pt;
|
397
|
+
mso-padding-alt-left: 20pt;
|
398
|
+
font-size: 10.0pt;
|
399
|
+
text-align: left;
|
400
|
+
mso-bidi-font-size: 11.0pt; }
|
401
|
+
|
402
|
+
p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle {
|
403
|
+
mso-style-name: zzSTDTitle;
|
404
|
+
mso-style-noshow: yes;
|
405
|
+
mso-style-unhide: no;
|
406
|
+
mso-style-next: Normal;
|
407
|
+
margin-top: 20.0pt;
|
408
|
+
margin-right: 0cm;
|
409
|
+
margin-bottom: 38.0pt;
|
410
|
+
margin-left: 0cm;
|
411
|
+
line-height: 17.5pt;
|
412
|
+
mso-line-height-rule: exactly;
|
413
|
+
mso-pagination: widow-orphan;
|
414
|
+
mso-hyphenate: none;
|
415
|
+
tab-stops: 20.15pt;
|
416
|
+
font-size: 16.0pt;
|
417
|
+
mso-bidi-font-size: 11.0pt;
|
418
|
+
font-family: {{headerfont}};
|
419
|
+
mso-fareast-font-family: {{headerfont}};
|
420
|
+
mso-bidi-font-family: {{headerfont}};
|
421
|
+
mso-ansi-language: EN-GB;
|
422
|
+
font-weight: bold;
|
423
|
+
mso-bidi-font-weight: normal; }
|
424
|
+
|
425
|
+
p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1 {
|
426
|
+
mso-style-name: zzSTDTitle;
|
427
|
+
mso-style-noshow: yes;
|
428
|
+
mso-style-unhide: no;
|
429
|
+
mso-style-next: Normal;
|
430
|
+
margin-top: 0pt;
|
431
|
+
margin-right: 0cm;
|
432
|
+
margin-bottom: 18.0pt;
|
433
|
+
margin-left: 0cm;
|
434
|
+
line-height: 17.5pt;
|
435
|
+
mso-line-height-rule: exactly;
|
436
|
+
mso-pagination: widow-orphan;
|
437
|
+
mso-hyphenate: none;
|
438
|
+
tab-stops: 20.15pt;
|
439
|
+
font-size: 16.0pt;
|
440
|
+
mso-bidi-font-size: 11.0pt;
|
441
|
+
font-family: {{headerfont}};
|
442
|
+
mso-fareast-font-family: {{headerfont}};
|
443
|
+
mso-bidi-font-family: {{headerfont}};
|
444
|
+
mso-ansi-language: EN-GB;
|
445
|
+
font-weight: bold;
|
446
|
+
mso-bidi-font-weight: normal; }
|
447
|
+
|
448
|
+
p.Quote, li.Quote, div.Quote {
|
449
|
+
mso-style-priority: 99;
|
450
|
+
margin-top: 0cm;
|
451
|
+
margin-right: 36.0pt;
|
452
|
+
margin-bottom: 0cm;
|
453
|
+
margin-left: 36.0pt;
|
454
|
+
text-align: left;
|
455
|
+
line-height: 12.0pt;
|
456
|
+
mso-pagination: widow-orphan;
|
457
|
+
tab-stops: 20.15pt;
|
458
|
+
font-size: 11.0pt;
|
459
|
+
font-family: {{bodyfont}};
|
460
|
+
mso-fareast-font-family: {{bodyfont}};
|
461
|
+
mso-bidi-font-family: {{bodyfont}};
|
462
|
+
mso-ansi-language: EN-GB; }
|
463
|
+
|
464
|
+
p.QuoteAttribution {
|
465
|
+
text-align: right;
|
466
|
+
mso-style-priority: 99;
|
467
|
+
margin-top: 0cm;
|
468
|
+
margin-right: 36.0pt;
|
469
|
+
margin-bottom: 0cm;
|
470
|
+
margin-left: 36.0pt;
|
471
|
+
line-height: 12.0pt;
|
472
|
+
mso-pagination: widow-orphan;
|
473
|
+
tab-stops: 20.15pt;
|
474
|
+
font-size: 11.0pt;
|
475
|
+
font-family: {{bodyfont}};
|
476
|
+
mso-fareast-font-family: {{bodyfont}};
|
477
|
+
mso-bidi-font-family: {{bodyfont}};
|
478
|
+
mso-ansi-language: EN-GB; }
|
479
|
+
|
480
|
+
p.Admonition, li.Admonition, div.Admonition {
|
481
|
+
mso-style-priority: 99;
|
482
|
+
margin-top: 0cm;
|
483
|
+
margin-right: 57.6pt;
|
484
|
+
margin-bottom: 0cm;
|
485
|
+
margin-left: 57.6pt;
|
486
|
+
margin-bottom: .0001pt;
|
487
|
+
mso-pagination: widow-orphan;
|
488
|
+
border: none;
|
489
|
+
mso-border-alt: solid #4472C4 .25pt;
|
490
|
+
mso-border-themecolor: accent1;
|
491
|
+
padding: 0cm;
|
492
|
+
mso-padding-alt: 10.0pt 10.0pt 10.0pt 10.0pt;
|
493
|
+
font-size: 11.0pt;
|
494
|
+
font-family: {{bodyfont}};
|
495
|
+
mso-ascii-font-family: {{bodyfont}};
|
496
|
+
mso-ascii-theme-font: minor-latin;
|
497
|
+
mso-fareast-font-family: {{bodyfont}};
|
498
|
+
mso-fareast-theme-font: minor-fareast;
|
499
|
+
mso-hansi-font-family: {{bodyfont}};
|
500
|
+
mso-hansi-theme-font: minor-latin;
|
501
|
+
mso-bidi-font-family: {{bodyfont}};
|
502
|
+
mso-bidi-theme-font: minor-bidi;
|
503
|
+
color: #4472C4;
|
504
|
+
mso-themecolor: accent1;
|
505
|
+
mso-ansi-language: EN-AU;
|
506
|
+
font-style: italic; }
|
507
|
+
|
508
|
+
p.Code, li.Code, div.Code {
|
509
|
+
mso-style-name: Code;
|
510
|
+
mso-style-priority: 16;
|
511
|
+
mso-style-unhide: no;
|
512
|
+
mso-style-qformat: yes;
|
513
|
+
margin: 0cm;
|
514
|
+
margin-bottom: .0001pt;
|
515
|
+
line-height: 10.0pt;
|
516
|
+
mso-pagination: widow-orphan;
|
517
|
+
tab-stops: 20.15pt;
|
518
|
+
font-size: 9.0pt;
|
519
|
+
mso-bidi-font-size: 11.0pt;
|
520
|
+
font-family: {{monospacefont}};
|
521
|
+
mso-fareast-font-family: Calibri;
|
522
|
+
mso-bidi-font-family: "Source Sans Pro";
|
523
|
+
mso-ansi-language: EN-GB; }
|
524
|
+
|
525
|
+
p.Formula, li.Formula, div.Formula {
|
526
|
+
mso-style-name: Formula;
|
527
|
+
mso-style-noshow: yes;
|
528
|
+
mso-style-unhide: no;
|
529
|
+
margin-top: 0cm;
|
530
|
+
margin-right: 0cm;
|
531
|
+
margin-bottom: 11.0pt;
|
532
|
+
margin-left: 20.15pt;
|
533
|
+
line-height: 12.0pt;
|
534
|
+
mso-pagination: widow-orphan;
|
535
|
+
tab-stops: right 487.45pt;
|
536
|
+
font-size: 11.0pt;
|
537
|
+
font-family: {{bodyfont}};
|
538
|
+
mso-fareast-font-family: {{bodyfont}};
|
539
|
+
mso-bidi-font-family: {{bodyfont}};
|
540
|
+
mso-ansi-language: EN-GB; }
|
541
|
+
|
542
|
+
@page WordSection1 {
|
543
|
+
size: 612.0pt 792.0pt;
|
544
|
+
margin: 72.0pt 72.0pt 72.0pt 72.0pt;
|
545
|
+
mso-header-margin: 7.2pt;
|
546
|
+
mso-footer-margin: 21.6pt;
|
547
|
+
mso-page-numbers: 1;
|
548
|
+
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
549
|
+
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
550
|
+
mso-paper-source: 0; }
|
551
|
+
|
552
|
+
div.WordSection1 {
|
553
|
+
page: WordSection1; }
|
554
|
+
|
555
|
+
@page WordSection2 {
|
556
|
+
size: 612.0pt 792.0pt;
|
557
|
+
margin: 72.0pt 72.0pt 72.0pt 72.0pt;
|
558
|
+
mso-header-margin: 7.2pt;
|
559
|
+
mso-footer-margin: 21.6pt;
|
560
|
+
mso-page-numbers: 1;
|
561
|
+
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
562
|
+
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
563
|
+
mso-paper-source: 0; }
|
564
|
+
|
565
|
+
@page WordSection2L {
|
566
|
+
size: 792.0pt 612.0pt;
|
567
|
+
margin: 39.7pt 53.85pt 1.0cm 53.85pt;
|
568
|
+
mso-header-margin: 7.2pt;
|
569
|
+
mso-footer-margin: 21.6pt;
|
570
|
+
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
571
|
+
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
572
|
+
mso-paper-source: 0; }
|
573
|
+
|
574
|
+
@page WordSection2P {
|
575
|
+
size: 612.0pt 792.0pt;
|
576
|
+
margin: 72.0pt 72.0pt 72.0pt 72.0pt;
|
577
|
+
mso-header-margin: 7.2pt;
|
578
|
+
mso-footer-margin: 21.6pt;
|
579
|
+
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
580
|
+
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
581
|
+
mso-paper-source: 0; }
|
582
|
+
|
583
|
+
div.WordSection2 {
|
584
|
+
page: WordSection2; }
|
585
|
+
|
586
|
+
@page WordSection3 {
|
587
|
+
size: 612.0pt 792.0pt;
|
588
|
+
margin: 72.0pt 72.0pt 72.0pt 72.0pt;
|
589
|
+
mso-header-margin: 7.2pt;
|
590
|
+
mso-footer-margin: 21.6pt;
|
591
|
+
mso-page-numbers: 1;
|
592
|
+
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
593
|
+
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
594
|
+
mso-paper-source: 0; }
|
595
|
+
|
596
|
+
@page WordSection3L {
|
597
|
+
size: 792.0pt 612.0pt;
|
598
|
+
margin: 39.7pt 53.85pt 1.0cm 53.85pt;
|
599
|
+
mso-header-margin: 7.2pt;
|
600
|
+
mso-footer-margin: 21.6pt;
|
601
|
+
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
602
|
+
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
603
|
+
mso-paper-source: 0; }
|
604
|
+
|
605
|
+
@page WordSection3P {
|
606
|
+
size: 612.0pt 792.0pt;
|
607
|
+
margin: 72.0pt 72.0pt 72.0pt 72.0pt;
|
608
|
+
mso-header-margin: 7.2pt;
|
609
|
+
mso-footer-margin: 21.6pt;
|
610
|
+
mso-header: url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
611
|
+
mso-footer: url("file:///C:/Doc/FILENAME_files/header.html") f1;
|
612
|
+
mso-paper-source: 0; }
|
613
|
+
|
614
|
+
div.WordSection3 {
|
615
|
+
page: WordSection3; }
|
616
|
+
|
617
|
+
table.MsoISOTable {
|
618
|
+
mso-style-name: "Table ISO";
|
619
|
+
mso-tstyle-rowband-size: 1;
|
620
|
+
mso-tstyle-colband-size: 1;
|
621
|
+
mso-style-priority: 46;
|
622
|
+
mso-style-unhide: no;
|
623
|
+
border: solid #999999 1.0pt;
|
624
|
+
mso-border-themecolor: text1;
|
625
|
+
mso-border-themetint: 102;
|
626
|
+
mso-border-alt: solid #999999 .5pt;
|
627
|
+
mso-border-themecolor: text1;
|
628
|
+
mso-border-themetint: 102;
|
629
|
+
mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;
|
630
|
+
mso-border-insideh: .5pt solid #999999;
|
631
|
+
mso-border-insideh-themecolor: text1;
|
632
|
+
mso-border-insideh-themetint: 102;
|
633
|
+
mso-border-insidev: .5pt solid #999999;
|
634
|
+
mso-border-insidev-themecolor: text1;
|
635
|
+
mso-border-insidev-themetint: 102;
|
636
|
+
mso-para-margin-top: 8.0pt;
|
637
|
+
mso-para-margin-right: 0cm;
|
638
|
+
mso-para-margin-bottom: 0cm;
|
639
|
+
mso-para-margin-left: 0cm;
|
640
|
+
mso-pagination: widow-orphan;
|
641
|
+
font-size: 11.0pt;
|
642
|
+
font-family: {{headerfont}}; }
|
643
|
+
|
644
|
+
table.MsoISOTable th {
|
645
|
+
border: solid windowtext 1pt;
|
646
|
+
background: #003366;
|
647
|
+
padding: 0cm 5.4pt 0cm 5.4pt; }
|
648
|
+
|
649
|
+
table.MsoISOTable td {
|
650
|
+
border: solid windowtext 1pt;
|
651
|
+
mso-border-alt: solid #999999 .5pt;
|
652
|
+
padding: 0cm 5.4pt 0cm 5.4pt; }
|
653
|
+
|
654
|
+
table.MsoISOTable p {
|
655
|
+
font-size: 11.0pt; }
|
656
|
+
|
657
|
+
table.MsoTableGrid {
|
658
|
+
mso-style-name: "Table Grid";
|
659
|
+
mso-tstyle-rowband-size: 0;
|
660
|
+
mso-tstyle-colband-size: 0;
|
661
|
+
mso-style-priority: 39;
|
662
|
+
mso-style-unhide: no;
|
663
|
+
border: solid windowtext 1.0pt;
|
664
|
+
mso-border-alt: solid windowtext .5pt;
|
665
|
+
mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;
|
666
|
+
mso-border-insideh: .5pt solid windowtext;
|
667
|
+
mso-border-insidev: .5pt solid windowtext;
|
668
|
+
mso-para-margin: 0cm;
|
669
|
+
mso-para-margin-bottom: .0001pt;
|
670
|
+
mso-pagination: widow-orphan;
|
671
|
+
font-size: 10.0pt;
|
672
|
+
font-family: {{bodyfont}}; }
|
673
|
+
|
674
|
+
div.formula {
|
675
|
+
tab-stops: right 487.45pt; }
|
676
|
+
|
677
|
+
body {
|
678
|
+
tab-interval: 36.0pt; }
|
679
|
+
|
680
|
+
.coverpage_docnumber {
|
681
|
+
text-align: center;
|
682
|
+
font-size: 14.0pt;
|
683
|
+
font-weight: bold; }
|
684
|
+
|
685
|
+
.coverpage_techcommittee {
|
686
|
+
text-align: center;
|
687
|
+
font-size: 12.0pt; }
|
688
|
+
|
689
|
+
.coverpage_docstage {
|
690
|
+
text-align: center;
|
691
|
+
font-size: 30.0pt;
|
692
|
+
color: #2e81c2; }
|
693
|
+
|
694
|
+
div.coverpage_warning {
|
695
|
+
mso-element: para-border-div;
|
696
|
+
border: solid windowtext 1.0pt #2e81c2;
|
697
|
+
mso-border-alt: solid windowtext .5pt;
|
698
|
+
padding: 1.0pt 4.0pt 1.0pt 4.0pt #2e81c2;
|
699
|
+
font-size: 10.0pt;
|
700
|
+
margin-left: 4.25pt;
|
701
|
+
margin-right: 4.25pt; }
|
702
|
+
|
703
|
+
.coverpage_warning {
|
704
|
+
color: #2e81c2;
|
705
|
+
font-size: 10.0pt; }
|
706
|
+
|
707
|
+
a.TableFootnoteRef, span.TableFootnoteRef {
|
708
|
+
mso-style-priority: 99;
|
709
|
+
mso-style-parent: "Footnote Reference";
|
710
|
+
vertical-align: super; }
|
711
|
+
|
712
|
+
aside {
|
713
|
+
font-size: 10.0pt; }
|
714
|
+
|
715
|
+
p.example, li.example, td.example {
|
716
|
+
margin-right: 0pt;
|
717
|
+
margin-left: 0pt; }
|
718
|
+
|
719
|
+
div.example {
|
720
|
+
margin-right: 36.0pt;
|
721
|
+
margin-left: 36.0pt;
|
722
|
+
margin-top: 0cm;
|
723
|
+
margin-bottom: 0cm; }
|
724
|
+
|
725
|
+
p.example, li.example, div.example, td.example {
|
726
|
+
mso-pagination: none;
|
727
|
+
font-size: 10.0pt;
|
728
|
+
font-family: {{bodyfont}}; }
|
729
|
+
|
730
|
+
td.example p.MsoListParagraph {
|
731
|
+
font-size: 10.0pt; }
|
732
|
+
|
733
|
+
div.example p.MsoListParagraph {
|
734
|
+
font-size: 10.0pt; }
|
735
|
+
|
736
|
+
div.Note p.MsoListParagraph {
|
737
|
+
font-size: 10.0pt; }
|
738
|
+
|
739
|
+
span.note_label, span.example_label, td.example_label, td.note_label {
|
740
|
+
font-size: 10.0pt;
|
741
|
+
font-family: {{bodyfont}}; }
|
742
|
+
|
743
|
+
table.dl {
|
744
|
+
margin-top: 0cm;
|
745
|
+
margin-right: 0cm;
|
746
|
+
margin-bottom: 11.0pt;
|
747
|
+
margin-left: 20.15pt; }
|
748
|
+
|
749
|
+
div.license, p.license {
|
750
|
+
font-size: 8.0pt;
|
751
|
+
font-family: {{bodyfont}}; }
|
752
|
+
|
753
|
+
div.warning p {
|
754
|
+
margin-bottom: 6.0pt;
|
755
|
+
border: none;
|
756
|
+
mso-border-alt: solid windowtext .5pt;
|
757
|
+
padding: 0cm;
|
758
|
+
mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt; }
|