metanorma-itu 2.1.5.1 → 2.1.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -126,26 +126,24 @@ module IsoDoc
126
126
  ::Relaton::Render::ITU::General.new(language: @lang)
127
127
  end
128
128
 
129
- def bibrender(xml)
130
- if f = xml.at(ns("./formattedref"))
131
- f << "." unless /\.$/.match?(f.text)
132
- else
133
- # retain date in order to generate reference tag
134
- xml.children =
135
- "#{bibrenderer.render(xml.to_xml)}"\
136
- "#{xml.xpath(ns('./docidentifier | ./uri | ./note | ./date')).to_xml}"
137
- end
129
+ def bibrender_formattedref(formattedref, _xml)
130
+ formattedref << "." unless /\.$/.match?(formattedref.text)
131
+ end
132
+
133
+ def bibrender_relaton(xml, renderings)
134
+ f = renderings[xml["id"]][:formattedref]
135
+ f &&= "<formattedref>#{f}</formattedref>"
136
+ # retain date in order to generate reference tag
137
+ xml.children =
138
+ "#{f}#{xml.xpath(ns('./docidentifier | ./uri | ./note | ./date')).to_xml}"
138
139
  end
139
140
 
140
141
  def ddmmmmyyyy(date)
141
- if @lang == "zh"
142
- ddMMMyyyy(date)
143
- else
144
- d = date.split("-")
145
- d[1] = @meta.months[d[1].to_sym] if d[1]
146
- d[2] = d[2].sub(/^0/, "") if d[2]
147
- l10n(d.reverse.join(" "))
148
- end
142
+ @lang == "zh" and return ddMMMyyyy(date)
143
+ d = date.split("-")
144
+ d[1] &&= @meta.months[d[1].to_sym]
145
+ d[2] &&= d[2].sub(/^0/, "")
146
+ l10n(d.reverse.join(" "))
149
147
  end
150
148
 
151
149
  def amendment_id(bib)
@@ -9,7 +9,7 @@ module IsoDoc
9
9
  list.tr **attr_code(iso_bibitem_entry_attrs(bibitem, biblio)) do |ref|
10
10
  id = render_identifier(bibitem_ref_code(bibitem))
11
11
  ref.td **{ style: "vertical-align:top" } do |td|
12
- td << (id[:metanorma] || "[#{id[:sdo]}]")
12
+ td << pick_ident(id)
13
13
  &.gsub(/-/, "&#x2011;")&.gsub(/ /, "&#xa0;")
14
14
  date_note_process(bibitem, td)
15
15
  end
@@ -17,6 +17,14 @@ module IsoDoc
17
17
  end
18
18
  end
19
19
 
20
+ def pick_ident(id)
21
+ return id[:metanorma] if id[:metanorma]
22
+ return "[#{id[:sdo]}]" if id[:sdo]
23
+ return id[:ordinal] if id[:ordinal]
24
+
25
+ ""
26
+ end
27
+
20
28
  def std_bibitem_entry(list, bibitem, ordinal, biblio)
21
29
  nonstd_bibitem(list, bibitem, ordinal, biblio)
22
30
  end
@@ -73,7 +81,8 @@ module IsoDoc
73
81
  id = bibitem.xpath(ns("./docidentifier[not(@type = 'metanorma' or "\
74
82
  "#{IGNORE_IDS})]"))
75
83
  id.empty? and
76
- id = bibitem.xpath(ns("./docidentifier[not(@type = 'metanorma')]"))
84
+ id = bibitem.xpath(ns("./docidentifier[not(@type = 'metanorma' or "\
85
+ "@type = 'metanorma-ordinal')]"))
77
86
  return [] if id.empty?
78
87
 
79
88
  id.sort_by { |i| i["type"] == "ITU" ? 0 : 1 }
@@ -225,9 +225,9 @@
225
225
  <zeroOrMore>
226
226
  <ref name="forename"/>
227
227
  </zeroOrMore>
228
- <zeroOrMore>
229
- <ref name="initial"/>
230
- </zeroOrMore>
228
+ <optional>
229
+ <ref name="formatted-initials"/>
230
+ </optional>
231
231
  <ref name="surname"/>
232
232
  <zeroOrMore>
233
233
  <ref name="addition"/>
@@ -247,8 +247,8 @@
247
247
  <ref name="LocalizedString"/>
248
248
  </element>
249
249
  </define>
250
- <define name="initial">
251
- <element name="initial">
250
+ <define name="formatted-initials">
251
+ <element name="formatted-initials">
252
252
  <ref name="LocalizedString"/>
253
253
  </element>
254
254
  </define>
@@ -264,6 +264,9 @@
264
264
  </define>
265
265
  <define name="forename">
266
266
  <element name="forename">
267
+ <optional>
268
+ <attribute name="initial"/>
269
+ </optional>
267
270
  <ref name="LocalizedString"/>
268
271
  </element>
269
272
  </define>
@@ -1285,7 +1285,12 @@
1285
1285
  </define>
1286
1286
  <define name="span">
1287
1287
  <element name="span">
1288
- <attribute name="class"/>
1288
+ <optional>
1289
+ <attribute name="class"/>
1290
+ </optional>
1291
+ <optional>
1292
+ <attribute name="style"/>
1293
+ </optional>
1289
1294
  <oneOrMore>
1290
1295
  <ref name="TextElement"/>
1291
1296
  </oneOrMore>
@@ -108,7 +108,7 @@
108
108
  </element>
109
109
  </define>
110
110
  <define name="label">
111
- <element name="label">
111
+ <element name="identifier">
112
112
  <oneOrMore>
113
113
  <ref name="TextElement"/>
114
114
  </oneOrMore>
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module ITU
3
- VERSION = "2.1.5.1".freeze
3
+ VERSION = "2.1.8".freeze
4
4
  end
5
5
  end
data/lib/metanorma-itu.rb CHANGED
@@ -1,7 +1,8 @@
1
1
  require "metanorma/itu"
2
2
  require "asciidoctor"
3
3
  require "isodoc/itu"
4
+ require "metanorma"
4
5
 
5
- if defined? Metanorma
6
+ if defined? Metanorma::Registry
6
7
  Metanorma::Registry.instance.register(Metanorma::ITU::Processor)
7
8
  end
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
26
26
 
27
27
  spec.add_dependency "htmlentities", "~> 4.3.4"
28
- spec.add_dependency "metanorma-standoc", "~> 2.1.0"
28
+ spec.add_dependency "metanorma-standoc", "~> 2.2.0"
29
29
  spec.add_dependency "ruby-jing"
30
30
  spec.add_dependency "twitter_cldr", ">= 3.0.0"
31
31
  spec.add_dependency "tzinfo-data" # we need this for windows only
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-itu
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.5.1
4
+ version: 2.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-18 00:00:00.000000000 Z
11
+ date: 2022-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: htmlentities
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 2.1.0
33
+ version: 2.2.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 2.1.0
40
+ version: 2.2.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: ruby-jing
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -258,6 +258,7 @@ extensions: []
258
258
  extra_rdoc_files: []
259
259
  files:
260
260
  - ".github/workflows/rake.yml"
261
+ - ".github/workflows/release.yml"
261
262
  - ".gitignore"
262
263
  - ".hound.yml"
263
264
  - ".rubocop.yml"
@@ -274,15 +275,12 @@ files:
274
275
  - lib/isodoc/itu/cleanup.rb
275
276
  - lib/isodoc/itu/html/International_Telecommunication_Union_Logo.svg
276
277
  - lib/isodoc/itu/html/Logo_ITU.jpg
277
- - lib/isodoc/itu/html/_coverpage.css
278
278
  - lib/isodoc/itu/html/_coverpage.scss
279
279
  - lib/isodoc/itu/html/header.html
280
280
  - lib/isodoc/itu/html/html_itu_intro.html
281
281
  - lib/isodoc/itu/html/html_itu_titlepage.html
282
- - lib/isodoc/itu/html/htmlstyle.css
283
282
  - lib/isodoc/itu/html/htmlstyle.scss
284
283
  - lib/isodoc/itu/html/itu-document-comb.png
285
- - lib/isodoc/itu/html/itu.css
286
284
  - lib/isodoc/itu/html/itu.scss
287
285
  - lib/isodoc/itu/html/logo-sp.png
288
286
  - lib/isodoc/itu/html/logo.png
@@ -290,7 +288,6 @@ files:
290
288
  - lib/isodoc/itu/html/word_itu_intro.html
291
289
  - lib/isodoc/itu/html/word_itu_titlepage.html
292
290
  - lib/isodoc/itu/html/word_itu_titlepage_sp.html
293
- - lib/isodoc/itu/html/wordstyle.css
294
291
  - lib/isodoc/itu/html/wordstyle.scss
295
292
  - lib/isodoc/itu/html_convert.rb
296
293
  - lib/isodoc/itu/i18n-ar.yaml
@@ -342,7 +339,7 @@ homepage: https://github.com/metanorma/metanorma-itu
342
339
  licenses:
343
340
  - BSD-2-Clause
344
341
  metadata: {}
345
- post_install_message:
342
+ post_install_message:
346
343
  rdoc_options: []
347
344
  require_paths:
348
345
  - lib
@@ -357,8 +354,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
357
354
  - !ruby/object:Gem::Version
358
355
  version: '0'
359
356
  requirements: []
360
- rubygems_version: 3.3.16
361
- signing_key:
357
+ rubygems_version: 3.1.6
358
+ signing_key:
362
359
  specification_version: 4
363
360
  summary: Metanorma for the ITU
364
361
  test_files: []
@@ -1,372 +0,0 @@
1
- html, body, div, span, applet, object, iframe,
2
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
3
- a, abbr, acronym, address, big, cite, code,
4
- del, dfn, em, img, ins, kbd, q, s, samp,
5
- small, strike, strong, sub, sup, tt, var,
6
- b, u, i, center,
7
- ol, ul, li,
8
- fieldset, form, label, legend,
9
- table, caption, tbody, tfoot, thead, tr, th, td,
10
- article, aside, canvas, details, embed,
11
- figure, figcaption, footer, header, hgroup,
12
- menu, output, ruby, section, summary,
13
- time, mark, audio, video {
14
- margin: 0;
15
- padding: 0; }
16
-
17
- html, body, div, span, applet, object, iframe,
18
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
19
- a, abbr, acronym, address, big, cite, code,
20
- del, dfn, em, img, ins, kbd, q, s, samp,
21
- small, strike, strong, sub, sup, tt, var,
22
- b, u, i, center,
23
- dl, dt, dd, ol, ul, li,
24
- fieldset, form, label, legend,
25
- table, caption, tbody, tfoot, thead, tr, th, td,
26
- article, aside, canvas, details, embed,
27
- figure, figcaption, footer, header, hgroup,
28
- menu, nav, output, ruby, section, summary,
29
- time, mark, audio, video {
30
- border: 0;
31
- font-size: 100%; }
32
-
33
- html, body, div, span, applet, object, iframe,
34
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
35
- a, abbr, acronym, address, big, cite, code,
36
- del, dfn, em, img, ins, kbd, q, s, samp,
37
- small, strike, strong, tt, var,
38
- b, u, i, center,
39
- dl, dd, ol, ul, li,
40
- fieldset, form, label, legend,
41
- table, caption, tbody, tfoot, thead, tr, th, td,
42
- article, aside, canvas, details, embed,
43
- figure, figcaption, footer, header, hgroup,
44
- menu, nav, output, ruby, section, summary,
45
- time, mark, audio, video {
46
- vertical-align: baseline; }
47
-
48
- html, body, div, span, applet, object, iframe,
49
- p, blockquote,
50
- a, abbr, acronym, address, big, cite,
51
- del, dfn, em, img, ins, q, s,
52
- small, strike, strong, sub, sup, var,
53
- b, u, i, center,
54
- dl, dt, dd, ol, ul, li,
55
- fieldset, form, label, legend,
56
- table, caption, tbody, tfoot, thead, tr, th, td,
57
- article, aside, canvas, details, embed,
58
- figure, figcaption, footer, header, hgroup,
59
- menu, nav, output, ruby, section, summary,
60
- time, mark, audio, video {
61
- font-family: {{bodyfont}}; }
62
-
63
- code, pre, tt, kbd, samp {
64
- font-family: {{monospacefont}};
65
- font-variant-ligatures: none; }
66
-
67
- code *, pre *, tt *, kbd *, samp * {
68
- font-family: {{monospacefont}} !important;
69
- font-variant-ligatures: none; }
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
-
77
- article, aside, details, figcaption, figure,
78
- footer, header, hgroup, menu, nav, section {
79
- display: block; }
80
-
81
- table {
82
- border-collapse: collapse;
83
- border-spacing: 0; }
84
-
85
- h1, h2, h3, h4, h5, h6 {
86
- font-family: {{headerfont}}; }
87
-
88
- .h1, .h2, .h3, .h4, .h5, .h6 {
89
- font-family: {{headerfont}}; }
90
-
91
- blockquote, q {
92
- quotes: none; }
93
- blockquote:before, blockquote:after, q:before, q:after {
94
- content: '';
95
- content: none; }
96
-
97
- .h2Annex {
98
- font-family: {{headerfont}}; }
99
-
100
- dl {
101
- display: grid;
102
- grid-template-columns: max-content auto; }
103
- dl dt p, dl dd p {
104
- margin-top: 0; }
105
- dl dt {
106
- grid-column-start: 1; }
107
- dl dd {
108
- grid-column-start: 2; }
109
-
110
- b, strong {
111
- font-weight: bold; }
112
-
113
- div.document-stage-band, div.document-type-band {
114
- background-color: #333333; }
115
-
116
- a.FootnoteRef + a.FootnoteRef:before {
117
- content: ", ";
118
- vertical-align: super; }
119
-
120
- .addition {
121
- color: blue; }
122
-
123
- .deletion {
124
- color: red;
125
- text-decoration: line-through; }
126
-
127
- #standard-band {
128
- background-color: #0AC442; }
129
-
130
- #standard {
131
- border-bottom: solid 3px #0AC442; }
132
-
133
- #directive-band {
134
- background-color: #540D6E; }
135
-
136
- #directive {
137
- border-bottom: solid 3px #540D6E; }
138
-
139
- #guide-band {
140
- background-color: #D183C9; }
141
-
142
- #guide {
143
- border-bottom: solid 3px #D183C9; }
144
-
145
- #specification-band {
146
- background-color: #65AFFF; }
147
-
148
- #specification {
149
- border-bottom: solid 3px #65AFFF; }
150
-
151
- #report-band {
152
- background-color: #3A405A; }
153
-
154
- #report {
155
- border-bottom: solid 3px #3A405A; }
156
-
157
- #amendment-band {
158
- background-color: #F26430; }
159
-
160
- #amendment {
161
- border-bottom: solid 3px #F26430; }
162
-
163
- #corrigendum-band {
164
- background-color: #C84630; }
165
-
166
- #corrigendum {
167
- border-bottom: solid 3px #C84630; }
168
-
169
- #administrative-band {
170
- background-color: #BFAE48; }
171
-
172
- #administrative {
173
- border-bottom: solid 3px #BFAE48; }
174
-
175
- #advisory-band {
176
- background-color: #BD9391; }
177
-
178
- #advisory {
179
- border-bottom: solid 3px #BD9391; }
180
-
181
- #proposal-band {
182
- background-color: #39A0ED; }
183
-
184
- #proposal {
185
- border-bottom: solid 3px #39A0ED; }
186
-
187
- #working-draft-band {
188
- background-color: #2D7393; }
189
-
190
- #working-draft {
191
- border-bottom: solid 3px #2D7393; }
192
-
193
- #committee-draft-band {
194
- background-color: #2A6B7C; }
195
-
196
- #committee-draft {
197
- border-bottom: solid 3px #2A6B7C; }
198
-
199
- #draft-standard-band {
200
- background-color: #1C7F7A; }
201
-
202
- #draft-standard {
203
- border-bottom: solid 3px #1C7F7A; }
204
-
205
- #final-draft-band {
206
- background-color: #53C170; }
207
-
208
- #final-draft {
209
- border-bottom: solid 3px #53C170; }
210
-
211
- #published-band {
212
- background-color: #069E2D; }
213
-
214
- #published {
215
- border-bottom: solid 3px #069E2D; }
216
-
217
- #withdrawn-band {
218
- background-color: #004E64; }
219
-
220
- #withdrawn {
221
- border-bottom: solid 3px #004E64; }
222
-
223
- #cancelled-band {
224
- background-color: #2E382E; }
225
-
226
- #cancelled {
227
- border-bottom: solid 3px #2E382E; }
228
-
229
- .icon-svg {
230
- width: 100%;
231
- color: #5ecf86; }
232
-
233
- .wrapper-top {
234
- background: #fff;
235
- color: #141115;
236
- padding: 3em 0 6em 10em;
237
- margin-left: 0em;
238
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAosAAAGmCAYAAAAUMM5iAAAACXBIWXMAACxKAAAsSgF3enRNAAAR60lEQVR4nO3dQWtd1doH8LXtobeKpVioCFq4nYnYgSPByev8Ti7SD1AnvdN8hPQb5A73LBk7sQPhHdkEP4CviA4U2iQFuSJqzkBQEPZLUjvo6X1ytmS71rOb32+axd5P1rPO4c/aO1ndcKf8T3laV0637udl5JgxprxXjZoy1TL1mKnqWTcuUy1/9lq17jVFPdnWzpT3ex7np1Y9/1v64T8jawLOiUUp5dqf/DKp+SVaOyyedUymWrKOWVf387guao/xGZ1HLRnHXBpRL3DOvKDhAABEhEUAAELCIgAAIWERAIBQ9831DwbTA8Ab735WXrz6w7mfB+Apd+0sAgAQEhYBAAgJiwAAhIRFAABCwiIAACFhEQCAkLAIAEBIWAQAICQsAgAQEhYBAAgJiwAAhIRFAABCC1MDAMzMQemHv2taHXYWAYC52dSxeoRFAGBOjncVt3WsHmERAJiT27pVl7AIAMzFXumHXd2qS1gEAObCu4oNCIsAwBzcs6vYhrAIAMzBhi61ISwCANntlH7Y16U2hEUAIDvvKjYkLAIAmd21q9iWsAgAZLUspWzpTlvCIgCQ1VbphyPdaUtYBAAyOrCrmIOwCABktGlXMQdhEQDI5qD0w7au5CAsAgDZ+AfciQiLAEAme6UfPtaRPLrhTrm1Uk23prp1P884plZNmWrJOmZd3TV/p9r3qzXGZ3QetWQc45QM4Bl2FgEACAmLAACEhEUAAELCIgAAIWERAICQsAgAQEhYBAAgJCwCABASFgEACAmLAACEusOb7/9iehhh7DFpsMramYlrb3757aVXfvzpvM8D8JTtxa9HV18yJwAMwws3z/0kAKt2PYYGACAkLAIAEBIWAQAICYsAAISERQAAQsIiAAAhYREAgJCwCABASFgEACAkLAIAEBIWAQAILUwNAMl9WPphW5OgDTuLAGT2haAIbQmLAGS2oTvQlrAIQFZ7pR92dQfaEhYByGpTZ6A9YRGAjO7ZVYQchEUAMvKuIiQhLAKQzU7ph31dgRyERQAyWXpXEXIRFgHIZMuuIuQiLAKQxfIkLAKpCIsAZHG8q3ikG5CLsAhABgelH7yrCAkJiwBkIChCUsIiAK0d7ypu6wLkJCwC0NptHYC8hEUAWtpzrB/kJiwC0JJ3FSG5brhTbq2U2K0ped3PM46pVVOmWrKOWVd3zd+p9v1qjfEZnUctGcc4Zg94hp1FAABCwiIAACFhEQCAkLAIAEBIWAQAICQsAgAQEhYBAAgJiwAAhIRFAABCwiIAAKHu8Ob7v5geRhh7TBqssnZm4tqbX3576ZUffzrv8wA8ZXvx69HVl8wJAMPwws1zPwnAql2PoQEACAmLAACEhEUAAELCIgAAIWERAICQsAgAQEhYBAAgJCwCABASFgEACAmLAACEhEUAAEILUwMAzMyylPL30g9HGvfXs7MIAMzNlqBYj7AIAMzJQemHTR2rR1gEAOZEUKxMWAQA5uJ4V3Fbt+oSFgGAubitU/UJiwDAHOyVftjVqfqERQBgDryr2IiwCABkd8+uYjvCIgCQ3YYOtSMsAgCZ7ZR+2NehdoRFACAz7yo2JiwCAFndtavYnrAIAGS0PDkDmuaERQAgo63SD0c6056wCABkc2BXMQ9hEQDIZtOuYh7CIgCQyUHph20dyaMb7pRbK9V0a6pb9/OMY2rVlKmWrGPW1V3zd6p9v1pjfEbnUUvGMf6fHfAMO4sAAISERQAAQsIiAAAhYREAgJCwCABASFgEACAkLAIAEBIWAQAICYsAAISERQAAQt3hzfd/MT2MMPaYNFhl7czEtTe//PbSKz/+dN7nAXjK9uLXo6svmRMAhuGFm+d+EoBVux5DAwAQEhYBAAgJiwAAhIRFAABCwiIAACFhEQCAkLAIAEBIWAQAICQsAgAQEhYBAAgJiwAAhBamBoDk7h6fT6tJ0MS+sAhAZgelHzZ1CNrxGBqAzARFaExYBCCrL0o/bOsOtCUsApDVhs5Ae8IiABntlX7wRy2QgLAIQEbeVYQkhEUAsrlnVxHyEBYByMa7ipCIsAhAJjulH/Z1BPIQFgHIYuldRchHWAQgiy27ipCPsAhABsuTsAikIywCkMHxruKRTkA+wiIArR2UfvCuIiQlLALQmqAIiQmLALR0vKu4rQOQl7AIQEu3zT7k1g13yq2VCrs1Fa/7ecYxtWrKVEvWMevqrvk71b5frTE+o/OoJeMY/xAbeIadRQAAQsIiAAAhYREAgJCwCABASFgEACAkLAIAEBIWAQAICYsAAISERQAAQsIiAACh7vDm+7+YHkYYe0warLJ2ZuLam19+e+mVH3867/MAPGV78evR1ZfMCQDD8MLNcz8JwKpdj6EBAAgJiwAAhIRFAABCwiIAACFhEQCAkLAIAEBIWAQAICQsAgAQEhYBAAgJiwAAhIRFAABCC1MDAMzMspRyu5RypHF/uX1hEQCYm63SDx/rWh0eQwMAc7I8CYtUIywCAHNyvKvo8XNFwiIAMBcHpR82dasuYREAmAtBsQFhEQCYg+NdxW2dqk9YBADm4LYutSEsAgDZ7ZV+2NWlNoRFACA77yo2JCwCAJnds6vYlrAIAGS2oTttCYsAQFY7pR/2dactYREAyMq7igkIiwBARnftKuYgLAIA2SxPzoAmBWERAMhmq/TDka7kICwCAJkc2FXMZfHq25+vnrPYnb3CYYJrnJjqOmOvNeX94pt0k9VSpd7HRvX07PWMm5txV5rOiGtNtubHOPVeXba1M76nE9U0SS9qrsM0vbhw8bePSikPqtUD/92+XcVcFleuP/xkpaJ1X1w1g86UX7Q17peplqxj1tX9PK6L2mN8RudRS8Yxn/qDAmCVx9AAAISERQAAQsIiAAAhYREAgJCwCABASFgEACAkLAIAEBIWAQAICYsAAIS6799756tG01PzeLSx8tQ03bF3E6l6nN061s4pRh4nWbWkBDX8IdU6fiJNTZdfP7x/6crPhwlKAfLYXSwf3XhLQwB4+bXvPjz3kwA8w2NoAABCwiIAACFhEQCAkLAIAEBIWAQAICQsAgAQEhYBAAgJiwAAhIRFAABCwiIAACFhEQCA0MLUAJDcv0spH2sSNLEvLAKQ2bKUsln64UiXoA2PoQHITFCExoRFALI6KP2wpTvQlrAIQFabOgPtCYsAZPRF6YdtnYH2hEUAMtrQFchBWAQgm73SD7u6AjkIiwBk411FSERYBCCTe3YVIRdhEYBMvKsIyQiLAGSxU/phXzcgF2ERgAyW3lWEnIRFADLYsqsIOQmLALS2PAmLQErCIgCtHe8qHukC5CQsAtDSQekH7ypCYsIiAC0JipDc4tW3P189qL07e8nDBNc4MdV1xl5ryvvFN+kmq6VKvY+N6unZ6xk3N+OuNJ0R15pszY9x6r26bGtnfE8nqmmSXtRch2l6ceHibx+VUh5Uq+eYf8AN6S2uXH/4yUqR6764agadKb9oa9wvUy1Zx6yr+3lcF7XH+IzOo5aMYz71F8nAKo+hAQAICYsAAISERQAAQsIiAAAhYREAgJCwCABASFgEACAkLAIAEBIWAQAIdd+/985Xjaan5vFoY+Wpabpj7yZS9Ti7daydU4w8TrJqSQlq+EOqdfxEmpouv354/9KVnw8TlALksbtYPrrxloYA8PJr33147icBeIbH0AAAhIRFAABCwiIAACFhEQCAkLAIAEBIWAQAICQsAgAQEhYBAAgJiwAAhIRFAABCwiIAAKGFqQEAZuiuplWxKywCAHOzU/phU9fq8BgaAJiTZSlFUKxIWAQA5mSr9MO+jtUjLAIAc7E8CYtUJSwCAHNxvKt4pFt1CYsAwBwc+KOWNoRFAGAOBMVGhEUAILvjXcVtXWpDWAQAsrutQ+0IiwBAZnulH3Z1qB1hEQDIzLuKjQmLAEBW9+wqticsAgBZbehMe8IiAJDRjmP9chAWAYCMvKuYhLAIAGRz165iHsIiAJDJ8uQMaNJYvPr256v/Eb07e3HDBNc4MdV1xl5ryvvFN+kmq6VKvY+N6unZ6xk3N+OuNJ0R15pszY9x6r26bGtnfE8nqmmSXtRch2l6ceHibx+VUh5Uqwf+u6PSD0fmJo/FlesPP1mpZt0XV82gM+UXbY37Zaol65h1dT+P66L2GJ/RedSSccynHv0BqzyGBgAgJCwCABASFgEACAmLAACEhEUAAELCIgAAIWERAICQsAgAQEhYBAAg1H3/3jtfNZqemsejjZWnpumOvZtI1ePs1rF2TjHyOMmqJSWo4Q+p1vETaWq6/Prh/UtXfj5MUAqQx+5i+ejGWxoCwMuvfffhuZ8E4BkeQwMAEBIWAQAICYsAAISERQAAQsIiAAAhYREAgJCwCABASFgEACAkLAIAEBIWAQAICYsAAIQWpgaA5PZKKbuaBE3sCosAZLYspfyz9MORLkEbHkMDkNmWoAhtCYsAZLU8CYtAU8IiAFlt2lWE9oRFADI6KP1gVxESEBYByGhTVyAHYRGAbI53Fbd1BXIQFgHI5raOQB7CIgCZ7JV+8A+4IRFhEYBMvKsIyQiLAGRxz64i5CMsApDFhk5APsIiABnslH7Y1wnIR1gEoLWldxUhL2ERgNa27CpCXsIiAC0tT8IikJawCEBLx7uKRzoAeS2uXH/4daPquoSzkqemLtv8DJnqsXZO0aVbO5nqSbWOn8izdi78fr+Uclj1pv3gXUVIrhvulFsrJa774hrzxZZtTK2aMtWSdcy6umv+TrXvV2uMz+g8ask4xl8kA8/wGBoAgJCwCABASFgEACAkLAIAEBIWAQAICYsAAISERQAAQsIiAAAhYREAgNBi+ejGP1Z+OMHRU5MdqTXlMVhTnjRxJiOPY0tT72Ojenr2eqY7qq7y2ql6jNyp9+qyrZ3xPZ2opkl6UXMdpunF3y4vH138V/egWj3AHOx331z/YNAqAN5497Py4tUfzv08AE+56zE0AAAhYREAgJCwCABASFgEACAkLAIAEBIWAQAICYsAAISERQAAQsIiAAAhYREAgJCwCABAaGFqAIAZ+ncp5Ujj/nK7wiIAMDc7pR82dK0Oj6EBgLnZ1LF6hEUAYE6OdxX3daweYREAmIulXcX6hEUAYC627CrWJywCAHOwPAmLVCcsAgBzcLyr6F/lNCAsAgDZHZR+8K5iI8IiAJCdoNiQsAgAZHa8q7itQ+0IiwBAZrd1py1hEQDIaq/0w67utCUsAgBZeVcxAWERAMjonl3FHIRFACCjDV3JQVgEALLZcaxfHsIiAJCNdxUTWVy5/vDrRuV0CecjT01dtvkZMtVj7ZyiS7d2MtWTah0/kWftXPj9finlMEEpnG//Z1cxl264U26tVLTui2vMF1u2MbVqylRL1jHr6q75O9W+X60xPqPzqCXjGI/+gGd4DA0AQEhYBAAgJCwCABASFgEACAmLAACEhEUAAELCIgAAIWERAICQsAgAQGixfHTjHys/nODoqcmO1JryGKwpT5o4k5HHsaWp97FRPT17PdMdVVd57VQ9Ru7Ue3XZ1s74nk5U0yS9qLkO0/Tib5eXjy7+q3tQrR5gDva7b65/MGgVAG+8+1l58eoP534egKfc9RgaAICQsAgAQEhYBAAgJCwCABASFgEACAmLAACEhEUAAELCIgAAIWERAICQsAgAQEhYBAAgtDA1ACS3V0rZ1SRoYldYBCC726Uf9nUJ2vAYGoDMdgRFaEtYBCCrZSllQ3egLWERgKy2Sj8c6Q60JSwCkNHyJCwCzQmLAGS0aVcRchAWAcjmoPSDXUVIQlgEIJtNHYE8hEUAMvmi9MO2jkAewiIAmfhXOZCMsAhAFnulHxzrB8kIiwBk4V1FSEhYBCCDe3YVISdhEYAMvKsISQmLALS2U/phXxcgJ2ERgJaW3lWE3IRFAFrasqsIuS2uXH/4daMKu4Qzk6emLtv8DJnqsXZO0aVbO5nqSbWOn8izdi78fr+Uclj5to71g+S64U65tVLiui+uMV9s2cbUqilTLVnHrKu75u9U+361xviMzqOWjGO8Owg8w2NoAABCwiIAACFhEQCAkLAIAEBocXJw+5/jLy1j/tJyHD2LmZvTmZ/YFPX8568qDpipUsr/A7DyYzjXcbY2AAAAAElFTkSuQmCC);
239
- background-repeat: repeat-y;
240
- background-size: 100px; }
241
-
242
- .doc-type {
243
- font-size: 18px;
244
- letter-spacing: 4px;
245
- color: #797979;
246
- margin-bottom: 42px; }
247
-
248
- .ITU-sector, .doc-identifier {
249
- font-size: 42px;
250
- font-weight: 800;
251
- display: inline; }
252
-
253
- .doc-subidentifier {
254
- font-size: 20px; }
255
-
256
- .doc-info-left {
257
- float: right;
258
- padding-right: 42px; }
259
-
260
- .doc-identifier, .publication-month {
261
- display: block;
262
- text-align: right; }
263
-
264
- .publication-month {
265
- font-size: 18px;
266
- padding-top: 10px;
267
- line-height: 1; }
268
-
269
- .doc-category {
270
- text-transform: uppercase;
271
- font-size: 16px;
272
- line-height: 1.2; }
273
-
274
- .coverpage-title {
275
- margin-top: 42px; }
276
- .coverpage-title span {
277
- display: block;
278
- font-size: 20px;
279
- line-height: 1.5; }
280
-
281
- .coverpage-maturity,
282
- .coverpage-stage {
283
- font-family: {{bodyfont}};
284
- font-weight: 400;
285
- font-size: 1em;
286
- margin: 0 0 2em 0;
287
- text-transform: uppercase; }
288
-
289
- span.doc-title, span.doc-annextitle {
290
- font-size: 26px;
291
- font-weight: 800;
292
- margin-top: 20px;
293
- margin-right: 42px; }
294
-
295
- span.doc-title {
296
- border-top: 2px solid #DA1D52; }
297
-
298
- .doc-footer {
299
- margin-top: 100px; }
300
- .doc-footer .keywords {
301
- display: block; }
302
- .doc-footer div {
303
- clear: both; }
304
- .doc-footer span, .doc-footer .keywords {
305
- font-size: 18px;
306
- font-weight: 400;
307
- letter-spacing: 0;
308
- color: black;
309
- float: left;
310
- padding-right: 10px; }
311
-
312
- .WordSection11 {
313
- padding: 0 2em 0 3em; }
314
-
315
- .info-section {
316
- padding: 0; }
317
- @media print {
318
- .info-section {
319
- display: none; } }
320
- .prefatory-section {
321
- padding: 0 3em 0 6em; }
322
-
323
- .zzSTDTitle1, .zzSTDTitle2, .zzSTDTitle3, .MsoCommentText {
324
- display: none; }
325
-
326
- .coverpage {
327
- text-align: left;
328
- padding-left: 1.5em; }
329
- @media print {
330
- .coverpage {
331
- height: 23cm; } }
332
- /* Document Identity */
333
- .coverpage-doc-identity {
334
- font-size: 2em;
335
- line-height: 2em; }
336
-
337
- .coverpage-title .title-second {
338
- display: none; }
339
-
340
- .coverpage-stage-block {
341
- font-family: {{bodyfont}};
342
- font-weight: 600;
343
- font-size: 1.25em;
344
- margin: 2em 0em 2em 0em;
345
- text-transform: uppercase; }
346
-
347
- /* Draft Warning */
348
- .coverpage-warning {
349
- border: #f36f36 solid 2px;
350
- color: #f36f36 !important;
351
- margin: 1em 2em;
352
- color: #2e81c2;
353
- padding: 2em 1em 1em 1em;
354
- border-radius: 25px; }
355
-
356
- .coverpage-warning h1 {
357
- margin-top: 0em; }
358
-
359
- .coverpage-warning .title {
360
- font-family: {{bodyfont}};
361
- font-weight: 300;
362
- text-transform: uppercase;
363
- font-size: 1.2em; }
364
-
365
- /* Copyright */
366
- .copyright {
367
- padding: 1em;
368
- font-size: 0.9em;
369
- text-align: left; }
370
- @media print {
371
- .copyright {
372
- page-break-before: always; } }