metanorma-itu 1.2.6 → 1.2.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +29 -8
  3. data/README.adoc +3 -4
  4. data/lib/asciidoctor/itu/basicdoc.rng +50 -3
  5. data/lib/asciidoctor/itu/boilerplate.xml +8 -2
  6. data/lib/asciidoctor/itu/cleanup.rb +9 -0
  7. data/lib/asciidoctor/itu/converter.rb +1 -0
  8. data/lib/asciidoctor/itu/front.rb +42 -8
  9. data/lib/asciidoctor/itu/isodoc.rng +61 -3
  10. data/lib/asciidoctor/itu/itu.rng +71 -0
  11. data/lib/asciidoctor/itu/validate.rb +14 -13
  12. data/lib/isodoc/itu/base_convert.rb +65 -58
  13. data/lib/isodoc/itu/cleanup.rb +55 -0
  14. data/lib/isodoc/itu/html/header.html +12 -16
  15. data/lib/isodoc/itu/html/html_itu_intro.html +4 -3
  16. data/lib/isodoc/itu/html/html_itu_titlepage.html +23 -17
  17. data/lib/isodoc/itu/html/htmlstyle.css +793 -745
  18. data/lib/isodoc/itu/html/htmlstyle.scss +15 -12
  19. data/lib/isodoc/itu/html/itu.css +43 -43
  20. data/lib/isodoc/itu/html/itu.scss +44 -43
  21. data/lib/isodoc/itu/html/logo-sp.png +0 -0
  22. data/lib/isodoc/itu/html/word_itu_intro.html +19 -3
  23. data/lib/isodoc/itu/html/word_itu_titlepage.html +37 -8
  24. data/lib/isodoc/itu/html/word_itu_titlepage_sp.html +108 -0
  25. data/lib/isodoc/itu/html/wordstyle.css +40 -37
  26. data/lib/isodoc/itu/html/wordstyle.scss +40 -37
  27. data/lib/isodoc/itu/html_convert.rb +4 -1
  28. data/lib/isodoc/itu/i18n-en.yaml +44 -0
  29. data/lib/isodoc/itu/itu.recommendation-annex.xsl +720 -154
  30. data/lib/isodoc/itu/itu.recommendation.xsl +720 -154
  31. data/lib/isodoc/itu/itu.resolution.xsl +720 -154
  32. data/lib/isodoc/itu/itu.technical-paper.xsl +5284 -0
  33. data/lib/isodoc/itu/itu.technical-report.xsl +5284 -0
  34. data/lib/isodoc/itu/metadata.rb +59 -9
  35. data/lib/isodoc/itu/pdf_convert.rb +2 -0
  36. data/lib/isodoc/itu/presentation_xml_convert.rb +104 -2
  37. data/lib/isodoc/itu/ref.rb +0 -13
  38. data/lib/isodoc/itu/terms.rb +7 -30
  39. data/lib/isodoc/itu/word_cleanup.rb +5 -1
  40. data/lib/isodoc/itu/word_convert.rb +15 -1
  41. data/lib/isodoc/itu/xref.rb +93 -39
  42. data/lib/metanorma/itu/processor.rb +10 -8
  43. data/lib/metanorma/itu/version.rb +1 -1
  44. data/metanorma-itu.gemspec +2 -2
  45. metadata +11 -6
@@ -1,10 +1,11 @@
1
- <div id="boilerplate-legal-destination"/>
1
+ {% if doctype != "Service Publication" %}
2
+ <div id="boilerplate-legal-destination"/>
2
3
  <div id="boilerplate-license-destination"/>
3
-
4
+ {% endif %}
4
5
 
5
6
 
6
7
  <nav>
7
- <h1 id="content">Contents</h1>
8
+ <h1 id="content">{{ table_of_contents}}</h1>
8
9
  <div id="toc"></div>
9
10
 
10
11
  </nav>
@@ -3,7 +3,7 @@
3
3
  </div>
4
4
 
5
5
  <div class="document-type-band" id="{{ doctype | downcase | replace: ' ', '-' }}-band">
6
- <p class="document-type">ITU {{ doctype }}</p>
6
+ <p class="document-type">ITU {{ doctype_display }}</p>
7
7
  </div>
8
8
 
9
9
 
@@ -16,7 +16,8 @@
16
16
  <div class="coverpage">
17
17
  <div class="wrapper-top">
18
18
 
19
- {% if doctype == "Technical Report" and unpublished %}
19
+ {% if unpublished %}
20
+ {% if doctype == "Technical Report" or doctype == "Technical Paper" or doctype == "Implementers Guide" %}
20
21
  <table>
21
22
  <tr><th>Question(s):</th><td colspan="2">{{ group }}</td><th colspan="2">Meeting, date:</th><td colspan="3">{{ meeting }}{% if meeting and meeting_date %}, {% endif %}{{ meeting_date }}</td></tr>
22
23
  <tr><th>Study Group:</th><td>{{ subgroup }}</td><th>Working Party:</th><td>{{ workgroup }}</td><th colspan="3">Intended type of document (R-C-TD):</th><td>{{ intended_type }}</td></tr>
@@ -29,6 +30,7 @@
29
30
  {% endfor %}
30
31
  </table>
31
32
 
33
+ {% endif %}
32
34
  {% endif %}
33
35
 
34
36
  <div class="coverpage-doc-identity">
@@ -41,15 +43,17 @@
41
43
 
42
44
  <div class="doc-info-left">
43
45
  <div class="doc-identifier">
44
- {{ docnumeric }}
46
+ {% if doctype != "Recommendation" %}{{doctype }} {% endif %}{{ docnumeric }}
45
47
  {% if amendmentid %}<div class="doc-subidentifier">{{ amendmentid }}</div>{% endif %}
46
48
  {% if corrigendumid %}<div class="doc-subidentifier">{{ corrigendumid }}</div>{% endif %}
47
49
  {% if edition %} <div> Revision {{ edition }}</div> {% endif %}
48
50
  <div> {{ draftinfo }}</div>
49
51
  </div>
52
+ {% if pubdate_monthyear %}
50
53
  <div class="publication-month">
51
54
  ({{ pubdate_monthyear }})
52
55
  </div>
56
+ {% endif %}
53
57
  </div>
54
58
 
55
59
  <div class="doc-category">
@@ -59,15 +63,28 @@
59
63
  </div>
60
64
 
61
65
  <div class="coverpage-title">
62
- <span class="doc-series">{% if series %}Series {{ series }}{% endif %}</span>
63
-
66
+ {% if series %}
67
+ <span class="doc-series">Series {{ series }}</span>
68
+ {% endif %}
69
+ {% if series1 %}
64
70
  <span class="doc-subSeries">
65
71
  {{ series1 }} {% if series2 %}&mdash; {{ series2 }}{% endif %}
66
72
  </span>
73
+ {% endif %}
74
+ {% if meeting %}
75
+ <span class="doc-series">{{ meeting | upcase }}</span>
76
+ {% endif %}
77
+ {% if meeting_place or meeting_date %}
78
+ <span class="doc-subSeries">{{ meeting_place }}{% if meeting_place and meeting_date %}, {% endif %}{{ meeting_date }}</span>
79
+ {% endif %}
80
+
67
81
  <span class="doc-title">{{ doctitle }}</span>
68
82
  {% if docsubtitle %}
69
83
  <br/><span class="doc-subtitle">{{ docsubtitle }}</span>
70
84
  {% endif %}
85
+ {% if positiontitle %}
86
+ <br/><span class="doc-annextitle">{{ positiontitle }}</span>
87
+ {% endif %}
71
88
  {% if annextitle %}
72
89
  <br/><span class="doc-annextitle">{{ annexid }}{% if annexid and annextitle %}: {% endif %}{{ annextitle }}</span>
73
90
  {% endif %}
@@ -91,7 +108,7 @@
91
108
  </div>
92
109
  {% endif %}
93
110
  <div>
94
- <span class="doc-type">{% if stage == "Draft" %}Draft {% endif %}{{ doctype }}</span>
111
+ <span class="doc-type">{% if stage == "Draft" %}Draft {% endif %}{% if recommendationnumber %}{{ recommendationnumber }} {% endif %}{{ doctype_display }}</span>
95
112
  <span class="ITU-sector">ITU-{{ bureau }}</span>
96
113
  <span class="doc-identifier">{{ docnumeric }}</span>
97
114
  </div>
@@ -107,17 +124,6 @@
107
124
  </div>
108
125
 
109
126
  <div class="WordSection11">
110
- <!--
111
- <div class="coverpage-stage-block">
112
- <span class="coverpage-stage" id="{{ doctype | downcase | replace: ' ', '-' }}">{{ doctype }}</span>
113
- </div>
114
-
115
- <div class="coverpage-stage-block">
116
- <span class="coverpage-maturity" id="{{ stage }}">{{ stage }}</span>
117
-
118
- </div>
119
- -->
120
-
121
127
  {% if unpublished %}
122
128
  <div class="coverpage-warning">
123
129
  <div id="draft-warning-destination"/>
@@ -145,16 +145,16 @@ a.FootnoteRef + a.FootnoteRef:before {
145
145
  border-bottom: solid 3px #a3d88f; }
146
146
 
147
147
  #technical-paper-band {
148
- background-color: #53dd6c; }
148
+ background-color: #ff6b6b; }
149
149
 
150
150
  #technical-paper {
151
- border-bottom: solid 3px #53dd6c; }
151
+ border-bottom: solid 3px #ff6b6b; }
152
152
 
153
153
  #technical-report-band {
154
- background-color: #53dd6c; }
154
+ background-color: #ff6b6b; }
155
155
 
156
156
  #technical-report {
157
- border-bottom: solid 3px #53dd6c; }
157
+ border-bottom: solid 3px #ff6b6b; }
158
158
 
159
159
  #focus-group-band {
160
160
  background-color: #750697; }
@@ -169,10 +169,34 @@ a.FootnoteRef + a.FootnoteRef:before {
169
169
  border-bottom: solid 3px #750697; }
170
170
 
171
171
  #joint-itu-iso-iec-band {
172
- background-color: #48a0e7; }
172
+ background-color: #edc9ff; }
173
173
 
174
174
  #joint-itu-iso-iec {
175
- border-bottom: solid 3px #48a0e7; }
175
+ border-bottom: solid 3px #edc9ff; }
176
+
177
+ #service-publication-band {
178
+ background-color: #750697; }
179
+
180
+ #service-publication {
181
+ border-bottom: solid 3px #750697; }
182
+
183
+ #resolution-band {
184
+ background-color: #f2b79f; }
185
+
186
+ #resolution {
187
+ border-bottom: solid 3px #f2b79f; }
188
+
189
+ #handbook-band {
190
+ background-color: #750697; }
191
+
192
+ #handbook {
193
+ border-bottom: solid 3px #750697; }
194
+
195
+ #question-band {
196
+ background-color: #750697; }
197
+
198
+ #question {
199
+ border-bottom: solid 3px #750697; }
176
200
 
177
201
  #in-force-band {
178
202
  background-color: #d9f39d; }
@@ -204,808 +228,280 @@ a.FootnoteRef + a.FootnoteRef:before {
204
228
  #withdrawn {
205
229
  border-bottom: solid 3px #7e0d13; }
206
230
 
207
- dl.glossary dt {
208
- font-weight: bold; }
231
+ html, body, div, span, applet, object, iframe,
232
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
233
+ a, abbr, acronym, address, big, cite, code,
234
+ del, dfn, em, img, ins, kbd, q, s, samp,
235
+ small, strike, strong, sub, sup, tt, var,
236
+ b, u, i, center,
237
+ ol, ul, li,
238
+ fieldset, form, label, legend,
239
+ table, caption, tbody, tfoot, thead, tr, th, td,
240
+ article, aside, canvas, details, embed,
241
+ figure, figcaption, footer, header, hgroup,
242
+ menu, output, ruby, section, summary,
243
+ time, mark, audio, video {
244
+ margin: 0;
245
+ padding: 0; }
209
246
 
210
- body {
211
- margin-left: auto;
212
- margin-right: auto;
213
- max-width: 100%;
214
- font-size: 14px;
215
- font-weight: 400;
216
- line-height: 1.6em;
217
- color: #141115;
218
- background-color: #fff; }
219
- body main {
220
- margin: 0 3em 0 6em; }
247
+ html, body, div, span, applet, object, iframe,
248
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
249
+ a, abbr, acronym, address, big, cite, code,
250
+ del, dfn, em, img, ins, kbd, q, s, samp,
251
+ small, strike, strong, sub, sup, tt, var,
252
+ b, u, i, center,
253
+ dl, dt, dd, ol, ul, li,
254
+ fieldset, form, label, legend,
255
+ table, caption, tbody, tfoot, thead, tr, th, td,
256
+ article, aside, canvas, details, embed,
257
+ figure, figcaption, footer, header, hgroup,
258
+ menu, nav, output, ruby, section, summary,
259
+ time, mark, audio, video {
260
+ border: 0;
261
+ font-size: 100%; }
221
262
 
222
- @media screen and (min-width: 768px) {
223
- nav {
224
- position: fixed;
225
- top: 0;
226
- bottom: 0;
227
- left: 0;
228
- width: 323px;
229
- font-size: 0.9em;
230
- overflow: auto;
231
- padding: 0 0 0 45px;
232
- background-color: #fff; } }
263
+ html, body, div, span, applet, object, iframe,
264
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
265
+ a, abbr, acronym, address, big, cite, code,
266
+ del, dfn, em, img, ins, kbd, q, s, samp,
267
+ small, strike, strong, tt, var,
268
+ b, u, i, center,
269
+ dl, dd, ol, ul, li,
270
+ fieldset, form, label, legend,
271
+ table, caption, tbody, tfoot, thead, tr, th, td,
272
+ article, aside, canvas, details, embed,
273
+ figure, figcaption, footer, header, hgroup,
274
+ menu, nav, output, ruby, section, summary,
275
+ time, mark, audio, video {
276
+ vertical-align: baseline; }
233
277
 
234
- @media print {
235
- nav {
236
- position: relative;
237
- width: auto;
238
- font-size: 0.9em;
239
- overflow: auto;
240
- padding: 0;
241
- margin-right: 0;
242
- background-color: white; } }
278
+ html, body, div, span, applet, object, iframe,
279
+ p, blockquote,
280
+ a, abbr, acronym, address, big, cite,
281
+ del, dfn, em, img, ins, q, s,
282
+ small, strike, strong, sub, sup, var,
283
+ b, u, i, center,
284
+ dl, dt, dd, ol, ul, li,
285
+ fieldset, form, label, legend,
286
+ table, caption, tbody, tfoot, thead, tr, th, td,
287
+ article, aside, canvas, details, embed,
288
+ figure, figcaption, footer, header, hgroup,
289
+ menu, nav, output, ruby, section, summary,
290
+ time, mark, audio, video {
291
+ font-family: {{bodyfont}}; }
243
292
 
244
- nav #toc {
245
- font-family: {{bodyfont}};
246
- font-weight: 400; }
247
- @media screen and (max-width: 768px) {
248
- nav #toc {
249
- padding: 0 1.5em;
250
- overflow: visible; } }
251
- #toc {
252
- font-family: {{bodyfont}};
253
- font-weight: 400; }
254
- #toc ul {
255
- margin: 0;
256
- padding: 0;
257
- list-style: none; }
258
- #toc ul li a {
259
- padding: 5px 10px; }
260
- #toc ul a {
261
- color: #141115;
262
- text-decoration: none;
263
- display: block; }
264
- #toc ul a:hover {
265
- box-shadow: none;
266
- color: white; }
267
- #toc .h2 {
268
- padding-left: 30px; }
269
- #toc .h3 {
270
- padding-left: 50px; }
271
- #toc .toc-active, #toc li:hover {
272
- background: #da1d52;
273
- box-shadow: inset -5px 0px 10px -5px #da1d52 !important; }
274
- #toc .toc-active a, #toc li:hover a {
275
- color: white; }
276
- @media print {
277
- #toc .toc-active, #toc li:hover {
278
- background: white;
279
- box-shadow: none !important; }
280
- #toc .toc-active a {
281
- color: #141115; }
282
- #toc li:hover a {
283
- color: black; } }
284
- #toc .h1 {
285
- text-transform: uppercase; }
286
- #toc li a {
287
- font-size: 14px; }
288
- #toc li:hover a {
289
- background: none;
290
- box-shadow: none; }
291
- #toc li:before {
292
- content: " ";
293
- display: none; }
294
- @media print {
295
- #toc .toc-active a {
296
- color: #4D7EA5; }
297
- #toc .toc-active, #toc li:hover {
298
- background: white;
299
- box-shadow: none !important; }
300
- #toc li:hover a {
301
- color: black; } }
302
- #toc-list ul {
303
- margin-bottom: 0.25em; }
293
+ code, pre, tt, kbd, samp {
294
+ font-family: {{monospacefont}};
295
+ font-variant-ligatures: none; }
304
296
 
305
- #toc-list li {
306
- list-style-type: none; }
297
+ code *, pre *, tt *, kbd *, samp * {
298
+ font-family: {{monospacefont}} !important;
299
+ font-variant-ligatures: none; }
307
300
 
308
- @media screen and (min-width: 768px) {
309
- #toggle {
310
- position: fixed;
311
- height: 100%;
312
- width: 30px;
313
- background-color: #da1d52;
314
- color: white !important;
315
- cursor: pointer;
316
- z-index: 100; }
317
- #toggle span {
318
- text-align: center;
319
- width: 100%;
320
- position: absolute;
321
- top: 50%;
322
- transform: translate(0, -50%); } }
301
+ article, aside, details, figcaption, figure,
302
+ footer, header, hgroup, menu, nav, section {
303
+ display: block; }
323
304
 
324
- @media screen and (max-width: 768px) {
325
- #toggle {
326
- display: none; } }
305
+ table {
306
+ border-collapse: collapse;
307
+ border-spacing: 0; }
327
308
 
328
- @media print {
329
- #toggle {
330
- display: none; } }
309
+ h1, h2, h3, h4, h5, h6 {
310
+ font-family: {{headerfont}}; }
331
311
 
332
- @media screen and (min-width: 768px) {
333
- .container {
334
- padding-left: 360px; } }
312
+ blockquote, q {
313
+ quotes: none; }
314
+ blockquote:before, blockquote:after, q:before, q:after {
315
+ content: '';
316
+ content: none; }
335
317
 
336
- @media print {
337
- .container {
338
- padding-left: 0; } }
318
+ .h2Annex {
319
+ font-family: {{headerfont}}; }
339
320
 
340
- .rule {
341
- width: 100%;
342
- height: 1px;
343
- background-color: #00539F;
344
- margin: 2em 0; }
345
- @media screen and (min-width: 768px) {
346
- .rule.toc {
347
- display: none; } }
348
- .rule-2 {
349
- width: 100%;
350
- height: 1px;
351
- background-color: #00539F; }
321
+ dl {
322
+ display: grid;
323
+ grid-template-columns: max-content auto; }
324
+ dl dt p, dl dd p {
325
+ margin-top: 0; }
326
+ dl dt {
327
+ grid-column-start: 1; }
328
+ dl dd {
329
+ grid-column-start: 2; }
352
330
 
353
- .rule-thick {
354
- width: 100%;
355
- height: 3px;
356
- background-color: #00539F;
357
- margin-top: 3em; }
331
+ b, strong {
332
+ font-weight: bold; }
358
333
 
359
- @media screen and (min-width: 768px) {
360
- h1.toc-contents {
361
- margin-top: 1em; }
362
- ul#toc-list {
363
- padding: 0;
364
- margin: 0; } }
334
+ div.document-stage-band, div.document-type-band {
335
+ background-color: #333333; }
365
336
 
366
- .figure {
367
- line-height: 1.6em;
368
- padding: 1.5em;
369
- margin: 2em 0 1em 0;
370
- overflow: auto;
371
- font-family: {{monospacefont}};
372
- font-variant-ligatures: none;
373
- background-color: #f6f6f6;
374
- font-size: 0.8em; }
375
- .figure .FigureTitle, .figure .figure-title {
376
- font-weight: 700;
377
- font-size: 1em;
378
- text-align: center; }
379
- .figure > img {
380
- margin-left: auto;
381
- margin-right: auto;
382
- display: block;
383
- max-width: 100%;
384
- height: auto; }
337
+ a.FootnoteRef + a.FootnoteRef:before {
338
+ content: ", ";
339
+ vertical-align: super; }
385
340
 
386
- .SourceTitle {
387
- font-weight: 700;
388
- font-size: 1em;
389
- text-align: center; }
341
+ #recommendation-band {
342
+ background-color: #a3d88f; }
390
343
 
391
- pre {
392
- font-family: {{monospacefont}};
393
- font-variant-ligatures: none;
394
- background-color: #f6f6f6;
395
- font-size: 0.8em;
396
- line-height: 1.6em;
397
- padding: 1.5em;
398
- margin: 2em 0 1em 0;
399
- overflow-y: auto;
400
- overflow-x: scroll;
401
- font-size: 0.8em; }
344
+ #recommendation {
345
+ border-bottom: solid 3px #a3d88f; }
402
346
 
403
- .example pre, .example .pseudocode {
404
- background: none;
405
- margin: 0;
406
- padding: 0 0 0 2em; }
347
+ #recommendation-amendment-band {
348
+ background-color: #a3d88f; }
407
349
 
408
- .document-stage-band {
409
- left: 0;
410
- top: 0;
411
- height: 100%;
412
- position: fixed;
413
- display: block;
414
- z-index: 101;
415
- box-shadow: -5px 0px 10px #1d1d1d; }
416
- .document-stage-band > :first-child {
417
- position: relative;
418
- width: 25px;
419
- font-weight: 300;
420
- height: 160px;
421
- color: white;
422
- text-transform: uppercase;
423
- font-size: 0.9em;
424
- font-weight: 400;
425
- letter-spacing: 0.05em;
426
- margin: 0;
427
- margin-left: 6px;
428
- writing-mode: tb-rl;
429
- -webkit-transform: rotate(180deg);
430
- -moz-transform: rotate(180deg);
431
- -o-transform: rotate(180deg);
432
- white-space: nowrap;
433
- display: block;
434
- bottom: 0; }
435
- @media print {
436
- .document-stage-band {
437
- display: none; } }
438
- .document-type-band {
439
- left: 0;
440
- top: 180px;
441
- height: 100%;
442
- position: fixed;
443
- display: block;
444
- z-index: 102; }
445
- .document-type-band > :first-child {
446
- position: relative;
447
- width: 25px;
448
- font-weight: 400;
449
- color: white;
450
- text-transform: uppercase;
451
- font-size: 0.9em;
452
- font-weight: 400;
453
- letter-spacing: 0.05em;
454
- margin: 0;
455
- margin-left: 6px;
456
- writing-mode: tb-rl;
457
- -webkit-transform: rotate(180deg);
458
- -moz-transform: rotate(180deg);
459
- -o-transform: rotate(180deg);
460
- white-space: nowrap;
461
- display: block;
462
- bottom: 0; }
463
- @media print {
464
- .document-type-band {
465
- display: none; } }
466
- .document-type-band .document-type {
467
- top: 20px; }
350
+ #recommendation-amendment {
351
+ border-bottom: solid 3px #a3d88f; }
468
352
 
469
- .logo-wrapper {
470
- width: 100%;
471
- display: block;
472
- height: 100px;
473
- padding-top: 75px;
474
- position: relative; }
475
- .logo-wrapper img, .logo-wrapper svg {
476
- float: right;
477
- padding-right: 42px; }
353
+ #recommendation-supplement-band {
354
+ background-color: #a3d88f; }
478
355
 
479
- #ITU-logo {
480
- width: 150px;
481
- height: auto;
482
- margin-left: auto; }
356
+ #recommendation-supplement {
357
+ border-bottom: solid 3px #a3d88f; }
483
358
 
484
- svg {
485
- position: absolute;
486
- top: 0;
487
- right: 0;
488
- bottom: 0;
489
- left: 0; }
359
+ #recommendation-corrigendum-band {
360
+ background-color: #a3d88f; }
490
361
 
491
- .authors-container {
492
- margin-top: 2em; }
362
+ #recommendation-corrigendum {
363
+ border-bottom: solid 3px #a3d88f; }
493
364
 
494
- .affiliation {
495
- font-style: italic; }
365
+ #recommendation-errata-band {
366
+ background-color: #a3d88f; }
496
367
 
497
- /* Headings */
498
- h1, h2, h3, h4, h5, h6, .h1Annex {
499
- font-weight: 400;
500
- margin-top: 1.6em;
501
- margin-bottom: 0.3em; }
368
+ #recommendation-errata {
369
+ border-bottom: solid 3px #a3d88f; }
502
370
 
503
- @media print {
504
- h1, h2, h3, h4, .h1Annex {
505
- page-break-after: avoid;
506
- margin-top: 1.2em; } }
371
+ #recommendation-annex-band {
372
+ background-color: #a3d88f; }
507
373
 
508
- h1, .h1Annex {
509
- font-size: 1.4em;
510
- text-transform: uppercase;
511
- margin-top: 2em; }
512
- h1#content, #content.h1Annex {
513
- margin-top: 2em; }
514
- @media print {
515
- h1, .h1Annex {
516
- font-size: 1.5em;
517
- line-height: 1.5; }
518
- h1.content, .h1Annex.content {
519
- margin-top: 2em;
520
- line-height: 2.5em; } }
521
- h2 {
522
- margin-top: 1.7em;
523
- font-size: 1.5em; }
524
- h2 p {
525
- display: inline; }
526
- @media print {
527
- h2 {
528
- font-size: 1.2em; } }
529
- h3 {
530
- margin-top: 1.5em;
531
- font-size: 1.4em; }
532
- @media print {
533
- h3 {
534
- font-size: 1em; } }
535
- h4 {
536
- font-size: 1.2em; }
374
+ #recommendation-annex {
375
+ border-bottom: solid 3px #a3d88f; }
537
376
 
538
- /* Terms */
539
- .TermNum, .Terms, .AltTerms {
540
- font-weight: 400; }
377
+ #technical-paper-band {
378
+ background-color: #ff6b6b; }
541
379
 
542
- h2.TermNum {
543
- margin-bottom: 0; }
380
+ #technical-paper {
381
+ border-bottom: solid 3px #ff6b6b; }
544
382
 
545
- p.AltTerms {
546
- font-size: 20px;
547
- margin-top: 1em; }
383
+ #technical-report-band {
384
+ background-color: #ff6b6b; }
548
385
 
549
- /* Links, selection */
550
- a, a:visited {
551
- text-decoration: none;
552
- color: #00539F; }
386
+ #technical-report {
387
+ border-bottom: solid 3px #ff6b6b; }
553
388
 
554
- a:hover {
555
- color: white;
556
- background: #00539F;
557
- box-shadow: 3px 0 0 #00539F, -3px 0 0 #00539F; }
389
+ #focus-group-band {
390
+ background-color: #750697; }
558
391
 
559
- ::selection {
560
- background: #00539F;
561
- /* WebKit/Blink Browsers */
562
- color: white; }
392
+ #focus-group {
393
+ border-bottom: solid 3px #750697; }
563
394
 
564
- ::-moz-selection {
565
- background: #00539F;
566
- /* Gecko Browsers */
567
- color: white; }
395
+ #implementers-guide-band {
396
+ background-color: #750697; }
568
397
 
569
- /* Lists */
570
- ul, ol {
571
- margin-left: 1.2em; }
398
+ #implementers-guide {
399
+ border-bottom: solid 3px #750697; }
572
400
 
573
- ul > li {
574
- list-style: none; }
575
- ul > li:before {
576
- content: "\2014";
577
- display: inline-block;
578
- width: 1em;
579
- margin-left: -1.2em; }
580
- ul > li p:first-child {
581
- display: inline; }
582
- ul > li:first-child {
583
- margin-top: 1em; }
401
+ #joint-itu-iso-iec-band {
402
+ background-color: #edc9ff; }
584
403
 
585
- /* Bibliograhy */
586
- p.Biblio, p.NormRef {
587
- margin-top: 1em;
588
- margin-left: 2em; }
404
+ #joint-itu-iso-iec {
405
+ border-bottom: solid 3px #edc9ff; }
589
406
 
590
- /* Blocks */
591
- .Note {
592
- background-color: #ffca3a;
593
- color: #141115;
594
- padding: 1.2em;
595
- margin: 1em 0 1em 0; }
596
- .Note p {
597
- margin: 0; }
407
+ #service-publication-band {
408
+ background-color: #750697; }
598
409
 
599
- .Admonition {
600
- background-color: #ffcccc;
601
- color: #47430c;
602
- padding: 1.2em;
603
- margin: 1em 0 1em 0; }
604
- .Admonition p {
605
- margin: 0; }
410
+ #service-publication {
411
+ border-bottom: solid 3px #750697; }
606
412
 
607
- .example {
608
- background-color: #e1eef1;
609
- padding: 1.2em;
610
- margin: 2em 0 1em 0;
611
- text-align: left;
612
- padding-left: 3.2em; }
613
- .example p {
614
- margin: 0; }
615
- .example .example-title {
616
- font-weight: 700;
617
- text-transform: uppercase;
618
- margin-left: -2em; }
619
- .example .example-title {
620
- margin-top: 0;
621
- margin-left: -1.5em; }
622
- .example pre, .example .pseudocode {
623
- background: none;
624
- margin: 0;
625
- padding: 0 0 0 2em; }
626
-
627
- .pseudocode {
628
- background-color: #f6f6f6;
629
- padding: 1.2em;
630
- margin: 2em 0 1em 0;
631
- padding-left: 2em; }
632
- .pseudocode .example-title {
633
- font-weight: 700;
634
- text-transform: uppercase;
635
- text-align: center;
636
- margin-top: 0;
637
- margin-left: -1.5em; }
413
+ #resolution-band {
414
+ background-color: #f2b79f; }
638
415
 
639
- .recommend {
640
- background-color: #ccffcc;
641
- padding: 1.2em;
642
- margin: 2em 0 1em 0; }
416
+ #resolution {
417
+ border-bottom: solid 3px #f2b79f; }
643
418
 
644
- .recommend .RecommendationTitle {
645
- font-weight: 700;
646
- font-size: 1em;
647
- text-align: center; }
419
+ #handbook-band {
420
+ background-color: #750697; }
648
421
 
649
- .require .RecommendationTitle {
650
- font-weight: 700;
651
- font-size: 1em;
652
- text-align: center; }
422
+ #handbook {
423
+ border-bottom: solid 3px #750697; }
653
424
 
654
- .permission .RecommendationTitle {
655
- font-weight: 700;
656
- font-size: 1em;
657
- text-align: center; }
425
+ #question-band {
426
+ background-color: #750697; }
658
427
 
659
- /* Tables */
660
- table.biblio td {
661
- padding-right: 0.5em; }
428
+ #question {
429
+ border-bottom: solid 3px #750697; }
662
430
 
663
- table:not(.biblio) {
664
- width: 100%;
665
- font-weight: 300;
666
- margin: 1em 0 2em 0;
667
- margin-left: auto;
668
- margin-right: auto;
669
- padding-right: 2em;
670
- color: #141115; }
671
- table:not(.biblio), table:not(.biblio) th, table:not(.biblio) td {
672
- border: none;
673
- font-size: 0.95em; }
674
- table:not(.biblio) th, table:not(.biblio) td {
675
- padding: 1em; }
676
- table:not(.biblio) td.header {
677
- font-weigth: 400; }
678
- table:not(.biblio), table:not(.biblio) th, table:not(.biblio) td {
679
- border: none !important; }
680
- table:not(.biblio) tr:nth-child(even) {
681
- background: #f1f8ff; }
682
- table:not(.biblio) tr:nth-child(odd) {
683
- background: #f6f8fa; }
431
+ #in-force-band {
432
+ background-color: #d9f39d; }
684
433
 
685
- p.TableTitle {
686
- text-align: center;
687
- margin-top: 2.5em;
688
- font-weight: 400; }
434
+ #in-force {
435
+ border-bottom: solid 3px #d9f39d; }
689
436
 
690
- /* Footnotes */
691
- a.footnote-number {
692
- vertical-align: super;
693
- font-size: 0.8em; }
437
+ #in-force-prepublished-band {
438
+ background-color: #fdf906; }
694
439
 
695
- .footnote {
696
- font-size: 0.9em; }
440
+ #in-force-prepublished {
441
+ border-bottom: solid 3px #fdf906; }
697
442
 
698
- .Quote {
699
- background-color: #f6f6f6;
700
- font-style: italic;
701
- width: 80%;
702
- padding: 1.5em;
703
- margin-top: 2em;
704
- margin-left: auto;
705
- margin-right: auto; }
443
+ #superseded-band {
444
+ background-color: #fd06fd; }
706
445
 
707
- .formula {
708
- background-color: #f6f6f6;
709
- padding: 1.5em;
710
- margin-top: 2em;
711
- text-align: center; }
446
+ #superseded {
447
+ border-bottom: solid 3px #fd06fd; }
712
448
 
713
- dl.formula_dl {
714
- background-color: #f6f6f6;
715
- margin-left: 1.4cm;
716
- margin-right: 1.4cm; }
449
+ #superseded-draft-band {
450
+ background-color: #fd06fd; }
717
451
 
718
- .contact-info {
719
- padding: 2em;
720
- margin-top: 5em;
721
- width: 280px;
722
- text-align: left;
723
- color: #00539F !important;
724
- background-color: #f1f8ff;
725
- border-radius: 25px; }
726
- .contact-info a, .contact-info a:hover {
727
- color: #00539F; }
728
- .contact-info a:hover {
729
- text-decoration: underline;
730
- background: none;
731
- box-shadow: 0 0 0 0; }
732
- .contact-info p, .contact-info a {
733
- font-family: {{monospacefont}};
734
- font-variant-ligatures: none;
735
- font-weight: 400; }
736
- .contact-info .name {
737
- font-weight: 700;
738
- font-size: 14px;
739
- margin-bottom: 5px; }
740
- .contact-info .address {
741
- font-size: 12px;
742
- line-height: 1.3em;
743
- margin-top: 0; }
452
+ #superseded-draft {
453
+ border-bottom: solid 3px #fd06fd; }
744
454
 
745
- span.keyword {
746
- font-weight: 600; }
455
+ #withdrawn-band {
456
+ background-color: #7e0d13; }
747
457
 
748
- p {
749
- margin-top: 1em;
750
- margin-bottom: 1em; }
458
+ #withdrawn {
459
+ border-bottom: solid 3px #7e0d13; }
751
460
 
752
- .addition {
753
- color: blue; }
461
+ .icon-svg {
462
+ width: 100%;
463
+ color: #5ecf86; }
754
464
 
755
- .deletion {
756
- color: red;
757
- text-decoration: line-through; }
465
+ .wrapper-top {
466
+ background: #fff;
467
+ color: #141115;
468
+ padding: 3em 0 6em 10em;
469
+ margin-left: 0em;
470
+ background: url(data:image/png;base64,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);
471
+ background-repeat: repeat-y;
472
+ background-size: 100px; }
758
473
 
759
- html, body, div, span, applet, object, iframe,
760
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
761
- a, abbr, acronym, address, big, cite, code,
762
- del, dfn, em, img, ins, kbd, q, s, samp,
763
- small, strike, strong, sub, sup, tt, var,
764
- b, u, i, center,
765
- ol, ul, li,
766
- fieldset, form, label, legend,
767
- table, caption, tbody, tfoot, thead, tr, th, td,
768
- article, aside, canvas, details, embed,
769
- figure, figcaption, footer, header, hgroup,
770
- menu, output, ruby, section, summary,
771
- time, mark, audio, video {
772
- margin: 0;
773
- padding: 0; }
474
+ .doc-type {
475
+ font-size: 18px;
476
+ letter-spacing: 4px;
477
+ color: #797979;
478
+ margin-bottom: 42px; }
774
479
 
775
- html, body, div, span, applet, object, iframe,
776
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
777
- a, abbr, acronym, address, big, cite, code,
778
- del, dfn, em, img, ins, kbd, q, s, samp,
779
- small, strike, strong, sub, sup, tt, var,
780
- b, u, i, center,
781
- dl, dt, dd, ol, ul, li,
782
- fieldset, form, label, legend,
783
- table, caption, tbody, tfoot, thead, tr, th, td,
784
- article, aside, canvas, details, embed,
785
- figure, figcaption, footer, header, hgroup,
786
- menu, nav, output, ruby, section, summary,
787
- time, mark, audio, video {
788
- border: 0;
789
- font-size: 100%; }
480
+ .ITU-sector, .doc-identifier {
481
+ font-size: 42px;
482
+ font-weight: 800;
483
+ display: inline; }
790
484
 
791
- html, body, div, span, applet, object, iframe,
792
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
793
- a, abbr, acronym, address, big, cite, code,
794
- del, dfn, em, img, ins, kbd, q, s, samp,
795
- small, strike, strong, tt, var,
796
- b, u, i, center,
797
- dl, dd, ol, ul, li,
798
- fieldset, form, label, legend,
799
- table, caption, tbody, tfoot, thead, tr, th, td,
800
- article, aside, canvas, details, embed,
801
- figure, figcaption, footer, header, hgroup,
802
- menu, nav, output, ruby, section, summary,
803
- time, mark, audio, video {
804
- vertical-align: baseline; }
485
+ .doc-subidentifier {
486
+ font-size: 20px; }
805
487
 
806
- html, body, div, span, applet, object, iframe,
807
- p, blockquote,
808
- a, abbr, acronym, address, big, cite,
809
- del, dfn, em, img, ins, q, s,
810
- small, strike, strong, sub, sup, var,
811
- b, u, i, center,
812
- dl, dt, dd, ol, ul, li,
813
- fieldset, form, label, legend,
814
- table, caption, tbody, tfoot, thead, tr, th, td,
815
- article, aside, canvas, details, embed,
816
- figure, figcaption, footer, header, hgroup,
817
- menu, nav, output, ruby, section, summary,
818
- time, mark, audio, video {
819
- font-family: {{bodyfont}}; }
488
+ .doc-info-left {
489
+ float: right;
490
+ padding-right: 42px; }
820
491
 
821
- code, pre, tt, kbd, samp {
822
- font-family: {{monospacefont}};
823
- font-variant-ligatures: none; }
492
+ .doc-identifier, .publication-month {
493
+ display: block;
494
+ text-align: right; }
824
495
 
825
- code *, pre *, tt *, kbd *, samp * {
826
- font-family: {{monospacefont}} !important;
827
- font-variant-ligatures: none; }
496
+ .publication-month {
497
+ font-size: 18px;
498
+ padding-top: 10px;
499
+ line-height: 1; }
828
500
 
829
- article, aside, details, figcaption, figure,
830
- footer, header, hgroup, menu, nav, section {
831
- display: block; }
832
-
833
- table {
834
- border-collapse: collapse;
835
- border-spacing: 0; }
836
-
837
- h1, h2, h3, h4, h5, h6 {
838
- font-family: {{headerfont}}; }
839
-
840
- blockquote, q {
841
- quotes: none; }
842
- blockquote:before, blockquote:after, q:before, q:after {
843
- content: '';
844
- content: none; }
845
-
846
- .h2Annex {
847
- font-family: {{headerfont}}; }
848
-
849
- dl {
850
- display: grid;
851
- grid-template-columns: max-content auto; }
852
- dl dt p, dl dd p {
853
- margin-top: 0; }
854
- dl dt {
855
- grid-column-start: 1; }
856
- dl dd {
857
- grid-column-start: 2; }
858
-
859
- b, strong {
860
- font-weight: bold; }
861
-
862
- div.document-stage-band, div.document-type-band {
863
- background-color: #333333; }
864
-
865
- a.FootnoteRef + a.FootnoteRef:before {
866
- content: ", ";
867
- vertical-align: super; }
868
-
869
- #recommendation-band {
870
- background-color: #a3d88f; }
871
-
872
- #recommendation {
873
- border-bottom: solid 3px #a3d88f; }
874
-
875
- #recommendation-amendment-band {
876
- background-color: #a3d88f; }
877
-
878
- #recommendation-amendment {
879
- border-bottom: solid 3px #a3d88f; }
880
-
881
- #recommendation-supplement-band {
882
- background-color: #a3d88f; }
883
-
884
- #recommendation-supplement {
885
- border-bottom: solid 3px #a3d88f; }
886
-
887
- #recommendation-corrigendum-band {
888
- background-color: #a3d88f; }
889
-
890
- #recommendation-corrigendum {
891
- border-bottom: solid 3px #a3d88f; }
892
-
893
- #recommendation-errata-band {
894
- background-color: #a3d88f; }
895
-
896
- #recommendation-errata {
897
- border-bottom: solid 3px #a3d88f; }
898
-
899
- #recommendation-annex-band {
900
- background-color: #a3d88f; }
901
-
902
- #recommendation-annex {
903
- border-bottom: solid 3px #a3d88f; }
904
-
905
- #technical-paper-band {
906
- background-color: #53dd6c; }
907
-
908
- #technical-paper {
909
- border-bottom: solid 3px #53dd6c; }
910
-
911
- #technical-report-band {
912
- background-color: #53dd6c; }
913
-
914
- #technical-report {
915
- border-bottom: solid 3px #53dd6c; }
916
-
917
- #focus-group-band {
918
- background-color: #750697; }
919
-
920
- #focus-group {
921
- border-bottom: solid 3px #750697; }
922
-
923
- #implementers-guide-band {
924
- background-color: #750697; }
925
-
926
- #implementers-guide {
927
- border-bottom: solid 3px #750697; }
928
-
929
- #joint-itu-iso-iec-band {
930
- background-color: #48a0e7; }
931
-
932
- #joint-itu-iso-iec {
933
- border-bottom: solid 3px #48a0e7; }
934
-
935
- #in-force-band {
936
- background-color: #d9f39d; }
937
-
938
- #in-force {
939
- border-bottom: solid 3px #d9f39d; }
940
-
941
- #in-force-prepublished-band {
942
- background-color: #fdf906; }
943
-
944
- #in-force-prepublished {
945
- border-bottom: solid 3px #fdf906; }
946
-
947
- #superseded-band {
948
- background-color: #fd06fd; }
949
-
950
- #superseded {
951
- border-bottom: solid 3px #fd06fd; }
952
-
953
- #superseded-draft-band {
954
- background-color: #fd06fd; }
955
-
956
- #superseded-draft {
957
- border-bottom: solid 3px #fd06fd; }
958
-
959
- #withdrawn-band {
960
- background-color: #7e0d13; }
961
-
962
- #withdrawn {
963
- border-bottom: solid 3px #7e0d13; }
964
-
965
- .icon-svg {
966
- width: 100%;
967
- color: #5ecf86; }
968
-
969
- .wrapper-top {
970
- background: #fff;
971
- color: #141115;
972
- padding: 3em 0 6em 10em;
973
- margin-left: 0em;
974
- background: url(data:image/png;base64,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);
975
- background-repeat: repeat-y;
976
- background-size: 100px; }
977
-
978
- .doc-type {
979
- font-size: 18px;
980
- letter-spacing: 4px;
981
- color: #797979;
982
- margin-bottom: 42px; }
983
-
984
- .ITU-sector, .doc-identifier {
985
- font-size: 42px;
986
- font-weight: 800;
987
- display: inline; }
988
-
989
- .doc-subidentifier {
990
- font-size: 20px; }
991
-
992
- .doc-info-left {
993
- float: right;
994
- padding-right: 42px; }
995
-
996
- .doc-identifier, .publication-month {
997
- display: block;
998
- text-align: right; }
999
-
1000
- .publication-month {
1001
- font-size: 18px;
1002
- padding-top: 10px;
1003
- line-height: 1; }
1004
-
1005
- .doc-category {
1006
- text-transform: uppercase;
1007
- font-size: 16px;
1008
- line-height: 1.2; }
501
+ .doc-category {
502
+ text-transform: uppercase;
503
+ font-size: 16px;
504
+ line-height: 1.2; }
1009
505
 
1010
506
  .coverpage-title {
1011
507
  margin-top: 42px; }
@@ -1106,6 +602,558 @@ span.doc-title {
1106
602
  @media print {
1107
603
  .copyright {
1108
604
  page-break-before: always; } }
605
+ dl.glossary dt {
606
+ font-weight: bold; }
607
+
608
+ body {
609
+ margin-left: auto;
610
+ margin-right: auto;
611
+ max-width: 100%;
612
+ font-size: {{normalfontsize}};
613
+ font-weight: 400;
614
+ line-height: 1.6em;
615
+ color: #141115;
616
+ background-color: #fff; }
617
+ body main {
618
+ margin: 0 3em 0 6em; }
619
+
620
+ @media screen and (min-width: 768px) {
621
+ nav {
622
+ position: fixed;
623
+ top: 0;
624
+ bottom: 0;
625
+ left: 0;
626
+ width: 323px;
627
+ font-size: 0.9em;
628
+ overflow: auto;
629
+ padding: 0 0 0 45px;
630
+ background-color: #fff; } }
631
+
632
+ @media print {
633
+ nav {
634
+ position: relative;
635
+ width: auto;
636
+ font-size: 0.9em;
637
+ overflow: auto;
638
+ padding: 0;
639
+ margin-right: 0;
640
+ background-color: white; } }
641
+
642
+ nav #toc {
643
+ font-family: {{bodyfont}};
644
+ font-weight: 400; }
645
+ @media screen and (max-width: 768px) {
646
+ nav #toc {
647
+ padding: 0 1.5em;
648
+ overflow: visible; } }
649
+ #toc {
650
+ font-family: {{bodyfont}};
651
+ font-weight: 400; }
652
+ #toc ul {
653
+ margin: 0;
654
+ padding: 0;
655
+ list-style: none; }
656
+ #toc ul li a {
657
+ padding: 5px 10px; }
658
+ #toc ul a {
659
+ color: #141115;
660
+ text-decoration: none;
661
+ display: block; }
662
+ #toc ul a:hover {
663
+ box-shadow: none;
664
+ color: white; }
665
+ #toc .h2 {
666
+ padding-left: 30px; }
667
+ #toc .h3 {
668
+ padding-left: 50px; }
669
+ #toc .toc-active, #toc li:hover {
670
+ background: #da1d52;
671
+ box-shadow: inset -5px 0px 10px -5px #da1d52 !important; }
672
+ #toc .toc-active a, #toc li:hover a {
673
+ color: white; }
674
+ @media print {
675
+ #toc .toc-active, #toc li:hover {
676
+ background: white;
677
+ box-shadow: none !important; }
678
+ #toc .toc-active a {
679
+ color: #141115; }
680
+ #toc li:hover a {
681
+ color: black; } }
682
+ #toc .h1 {
683
+ text-transform: uppercase; }
684
+ #toc li a {
685
+ font-size: {{normalfontsize}}; }
686
+ #toc li:hover a {
687
+ background: none;
688
+ box-shadow: none; }
689
+ #toc li:before {
690
+ content: " ";
691
+ display: none; }
692
+ @media print {
693
+ #toc .toc-active a {
694
+ color: #4D7EA5; }
695
+ #toc .toc-active, #toc li:hover {
696
+ background: white;
697
+ box-shadow: none !important; }
698
+ #toc li:hover a {
699
+ color: black; } }
700
+ #toc-list ul {
701
+ margin-bottom: 0.25em; }
702
+
703
+ #toc-list li {
704
+ list-style-type: none; }
705
+
706
+ @media screen and (min-width: 768px) {
707
+ #toggle {
708
+ position: fixed;
709
+ height: 100%;
710
+ width: 30px;
711
+ background-color: #da1d52;
712
+ color: white !important;
713
+ cursor: pointer;
714
+ z-index: 100; }
715
+ #toggle span {
716
+ text-align: center;
717
+ width: 100%;
718
+ position: absolute;
719
+ top: 50%;
720
+ transform: translate(0, -50%); } }
721
+
722
+ @media screen and (max-width: 768px) {
723
+ #toggle {
724
+ display: none; } }
725
+
726
+ @media print {
727
+ #toggle {
728
+ display: none; } }
729
+
730
+ @media screen and (min-width: 768px) {
731
+ .container {
732
+ padding-left: 360px; } }
733
+
734
+ @media print {
735
+ .container {
736
+ padding-left: 0; } }
737
+
738
+ .rule {
739
+ width: 100%;
740
+ height: 1px;
741
+ background-color: #00539F;
742
+ margin: 2em 0; }
743
+ @media screen and (min-width: 768px) {
744
+ .rule.toc {
745
+ display: none; } }
746
+ .rule-2 {
747
+ width: 100%;
748
+ height: 1px;
749
+ background-color: #00539F; }
750
+
751
+ .rule-thick {
752
+ width: 100%;
753
+ height: 3px;
754
+ background-color: #00539F;
755
+ margin-top: 3em; }
756
+
757
+ @media screen and (min-width: 768px) {
758
+ h1.toc-contents {
759
+ margin-top: 1em; }
760
+ ul#toc-list {
761
+ padding: 0;
762
+ margin: 0; } }
763
+
764
+ .figure {
765
+ line-height: 1.6em;
766
+ padding: 1.5em;
767
+ margin: 2em 0 1em 0;
768
+ overflow: auto;
769
+ font-family: {{monospacefont}};
770
+ font-variant-ligatures: none;
771
+ background-color: #f6f6f6;
772
+ font-size: {{monospacefontsize}}; }
773
+ .figure .FigureTitle, .figure .figure-title {
774
+ font-weight: 700;
775
+ font-size: 1em;
776
+ text-align: center; }
777
+ .figure > img {
778
+ margin-left: auto;
779
+ margin-right: auto;
780
+ display: block;
781
+ max-width: 100%;
782
+ height: auto; }
783
+
784
+ .SourceTitle {
785
+ font-weight: 700;
786
+ font-size: 1em;
787
+ text-align: center; }
788
+
789
+ pre {
790
+ font-family: {{monospacefont}};
791
+ font-variant-ligatures: none;
792
+ background-color: #f6f6f6;
793
+ font-size: {{monospacefontsize}};
794
+ line-height: 1.6em;
795
+ padding: 1.5em;
796
+ margin: 2em 0 1em 0;
797
+ overflow-y: auto;
798
+ overflow-x: scroll;
799
+ font-size: {{monospacefontsize}}; }
800
+
801
+ .example pre, .example .pseudocode {
802
+ background: none;
803
+ margin: 0;
804
+ padding: 0 0 0 2em; }
805
+
806
+ .document-stage-band {
807
+ left: 0;
808
+ top: 0;
809
+ height: 100%;
810
+ position: fixed;
811
+ display: block;
812
+ z-index: 101;
813
+ box-shadow: -5px 0px 10px #1d1d1d; }
814
+ .document-stage-band > :first-child {
815
+ position: relative;
816
+ width: 25px;
817
+ font-weight: 300;
818
+ height: 160px;
819
+ color: white;
820
+ text-transform: uppercase;
821
+ font-size: 0.9em;
822
+ font-weight: 400;
823
+ letter-spacing: 0.05em;
824
+ margin: 0;
825
+ margin-left: 6px;
826
+ writing-mode: tb-rl;
827
+ -webkit-transform: rotate(180deg);
828
+ -moz-transform: rotate(180deg);
829
+ -o-transform: rotate(180deg);
830
+ white-space: nowrap;
831
+ display: block;
832
+ bottom: 0; }
833
+ @media print {
834
+ .document-stage-band {
835
+ display: none; } }
836
+ .document-type-band {
837
+ left: 0;
838
+ top: 180px;
839
+ height: 100%;
840
+ position: fixed;
841
+ display: block;
842
+ z-index: 102; }
843
+ .document-type-band > :first-child {
844
+ position: relative;
845
+ width: 25px;
846
+ font-weight: 400;
847
+ color: white;
848
+ text-transform: uppercase;
849
+ font-size: 0.9em;
850
+ font-weight: 400;
851
+ letter-spacing: 0.05em;
852
+ margin: 0;
853
+ margin-left: 6px;
854
+ writing-mode: tb-rl;
855
+ -webkit-transform: rotate(180deg);
856
+ -moz-transform: rotate(180deg);
857
+ -o-transform: rotate(180deg);
858
+ white-space: nowrap;
859
+ display: block;
860
+ bottom: 0; }
861
+ @media print {
862
+ .document-type-band {
863
+ display: none; } }
864
+ .document-type-band .document-type {
865
+ top: 20px; }
866
+
867
+ .logo-wrapper {
868
+ width: 100%;
869
+ display: block;
870
+ height: 100px;
871
+ padding-top: 75px;
872
+ position: relative; }
873
+ .logo-wrapper img, .logo-wrapper svg {
874
+ float: right;
875
+ padding-right: 42px; }
876
+
877
+ #ITU-logo {
878
+ width: 150px;
879
+ height: auto;
880
+ margin-left: auto; }
881
+
882
+ svg {
883
+ position: absolute;
884
+ top: 0;
885
+ right: 0;
886
+ bottom: 0;
887
+ left: 0; }
888
+
889
+ .authors-container {
890
+ margin-top: 2em; }
891
+
892
+ .affiliation {
893
+ font-style: italic; }
894
+
895
+ /* Headings */
896
+ h1, h2, h3, h4, h5, h6, .h1Annex {
897
+ font-weight: 400;
898
+ margin-top: 1.6em;
899
+ margin-bottom: 0.3em; }
900
+
901
+ @media print {
902
+ h1, h2, h3, h4, .h1Annex {
903
+ page-break-after: avoid;
904
+ margin-top: 1.2em; } }
905
+
906
+ h1, .h1Annex {
907
+ font-size: 1.4em;
908
+ text-transform: uppercase;
909
+ margin-top: 2em; }
910
+ h1#content, #content.h1Annex {
911
+ margin-top: 2em; }
912
+ @media print {
913
+ h1, .h1Annex {
914
+ font-size: 1.5em;
915
+ line-height: 1.5; }
916
+ h1.content, .h1Annex.content {
917
+ margin-top: 2em;
918
+ line-height: 2.5em; } }
919
+ h2 {
920
+ margin-top: 1.7em;
921
+ font-size: 1.5em; }
922
+ h2 p {
923
+ display: inline; }
924
+ @media print {
925
+ h2 {
926
+ font-size: 1.2em; } }
927
+ h3 {
928
+ margin-top: 1.5em;
929
+ font-size: 1.4em; }
930
+ @media print {
931
+ h3 {
932
+ font-size: 1em; } }
933
+ h4 {
934
+ font-size: 1.2em; }
935
+
936
+ /* Terms */
937
+ .TermNum, .Terms, .AltTerms {
938
+ font-weight: 400; }
939
+
940
+ h2.TermNum {
941
+ margin-bottom: 0; }
942
+
943
+ p.AltTerms {
944
+ font-size: 20px;
945
+ margin-top: 1em; }
946
+
947
+ /* Links, selection */
948
+ a, a:visited {
949
+ text-decoration: none;
950
+ color: #00539F; }
951
+
952
+ a:hover {
953
+ color: white;
954
+ background: #00539F;
955
+ box-shadow: 3px 0 0 #00539F, -3px 0 0 #00539F; }
956
+
957
+ ::selection {
958
+ background: #00539F;
959
+ /* WebKit/Blink Browsers */
960
+ color: white; }
961
+
962
+ ::-moz-selection {
963
+ background: #00539F;
964
+ /* Gecko Browsers */
965
+ color: white; }
966
+
967
+ /* Lists */
968
+ ul, ol {
969
+ margin-left: 1.2em; }
970
+
971
+ ul > li {
972
+ list-style: none; }
973
+ ul > li:before {
974
+ content: "\2014";
975
+ display: inline-block;
976
+ width: 1em;
977
+ margin-left: -1.2em; }
978
+ ul > li p:first-child {
979
+ display: inline; }
980
+ ul > li:first-child {
981
+ margin-top: 1em; }
982
+
983
+ /* Bibliograhy */
984
+ p.Biblio, p.NormRef {
985
+ margin-top: 1em;
986
+ margin-left: 2em; }
987
+
988
+ /* Blocks */
989
+ .Note {
990
+ background-color: #ffca3a;
991
+ color: #141115;
992
+ padding: 1.2em;
993
+ margin: 1em 0 1em 0; }
994
+ .Note p {
995
+ margin: 0; }
996
+
997
+ .Admonition {
998
+ background-color: #ffcccc;
999
+ color: #47430c;
1000
+ padding: 1.2em;
1001
+ margin: 1em 0 1em 0; }
1002
+ .Admonition p {
1003
+ margin: 0; }
1004
+
1005
+ .example {
1006
+ background-color: #e1eef1;
1007
+ padding: 1.2em;
1008
+ margin: 2em 0 1em 0;
1009
+ text-align: left;
1010
+ padding-left: 3.2em; }
1011
+ .example p {
1012
+ margin: 0; }
1013
+ .example .example-title {
1014
+ font-weight: 700;
1015
+ text-transform: uppercase;
1016
+ margin-left: -2em; }
1017
+ .example .example-title {
1018
+ margin-top: 0;
1019
+ margin-left: -1.5em; }
1020
+ .example pre, .example .pseudocode {
1021
+ background: none;
1022
+ margin: 0;
1023
+ padding: 0 0 0 2em; }
1024
+
1025
+ .pseudocode {
1026
+ background-color: #f6f6f6;
1027
+ padding: 1.2em;
1028
+ margin: 2em 0 1em 0;
1029
+ padding-left: 2em; }
1030
+ .pseudocode .example-title {
1031
+ font-weight: 700;
1032
+ text-transform: uppercase;
1033
+ text-align: center;
1034
+ margin-top: 0;
1035
+ margin-left: -1.5em; }
1036
+
1037
+ .recommend {
1038
+ background-color: #ccffcc;
1039
+ padding: 1.2em;
1040
+ margin: 2em 0 1em 0; }
1041
+
1042
+ .recommend .RecommendationTitle {
1043
+ font-weight: 700;
1044
+ font-size: 1em;
1045
+ text-align: center; }
1046
+
1047
+ .require .RecommendationTitle {
1048
+ font-weight: 700;
1049
+ font-size: 1em;
1050
+ text-align: center; }
1051
+
1052
+ .permission .RecommendationTitle {
1053
+ font-weight: 700;
1054
+ font-size: 1em;
1055
+ text-align: center; }
1056
+
1057
+ /* Tables */
1058
+ table.biblio td {
1059
+ padding-right: 0.5em; }
1060
+
1061
+ table:not(.biblio) {
1062
+ width: 100%;
1063
+ font-weight: 300;
1064
+ margin: 1em 0 2em 0;
1065
+ margin-left: auto;
1066
+ margin-right: auto;
1067
+ padding-right: 2em;
1068
+ color: #141115; }
1069
+ table:not(.biblio), table:not(.biblio) th, table:not(.biblio) td {
1070
+ border: none;
1071
+ font-size: 0.95em; }
1072
+ table:not(.biblio) th, table:not(.biblio) td {
1073
+ padding: 1em; }
1074
+ table:not(.biblio) td.header {
1075
+ font-weigth: 400; }
1076
+ table:not(.biblio), table:not(.biblio) th, table:not(.biblio) td {
1077
+ border: none !important; }
1078
+ table:not(.biblio) tr:nth-child(even) {
1079
+ background: #f1f8ff; }
1080
+ table:not(.biblio) tr:nth-child(odd) {
1081
+ background: #f6f8fa; }
1082
+
1083
+ p.TableTitle {
1084
+ text-align: center;
1085
+ margin-top: 2.5em;
1086
+ font-weight: 400; }
1087
+
1088
+ /* Footnotes */
1089
+ a.footnote-number {
1090
+ vertical-align: super;
1091
+ font-size: 0.8em; }
1092
+
1093
+ .footnote {
1094
+ font-size: {{footnotefontsize}}; }
1095
+
1096
+ .Quote {
1097
+ background-color: #f6f6f6;
1098
+ font-style: italic;
1099
+ width: 80%;
1100
+ padding: 1.5em;
1101
+ margin-top: 2em;
1102
+ margin-left: auto;
1103
+ margin-right: auto; }
1104
+
1105
+ .formula {
1106
+ background-color: #f6f6f6;
1107
+ padding: 1.5em;
1108
+ margin-top: 2em;
1109
+ text-align: center; }
1110
+
1111
+ dl.formula_dl {
1112
+ background-color: #f6f6f6;
1113
+ margin-left: 1.4cm;
1114
+ margin-right: 1.4cm; }
1115
+
1116
+ .contact-info {
1117
+ padding: 2em;
1118
+ margin-top: 5em;
1119
+ width: 280px;
1120
+ text-align: left;
1121
+ color: #00539F !important;
1122
+ background-color: #f1f8ff;
1123
+ border-radius: 25px; }
1124
+ .contact-info a, .contact-info a:hover {
1125
+ color: #00539F; }
1126
+ .contact-info a:hover {
1127
+ text-decoration: underline;
1128
+ background: none;
1129
+ box-shadow: 0 0 0 0; }
1130
+ .contact-info p, .contact-info a {
1131
+ font-family: {{monospacefont}};
1132
+ font-variant-ligatures: none;
1133
+ font-weight: 400; }
1134
+ .contact-info .name {
1135
+ font-weight: 700;
1136
+ font-size: 14px;
1137
+ margin-bottom: 5px; }
1138
+ .contact-info .address {
1139
+ font-size: 12px;
1140
+ line-height: 1.3em;
1141
+ margin-top: 0; }
1142
+
1143
+ span.keyword {
1144
+ font-weight: 600; }
1145
+
1146
+ p {
1147
+ margin-top: 1em;
1148
+ margin-bottom: 1em; }
1149
+
1150
+ .addition {
1151
+ color: blue; }
1152
+
1153
+ .deletion {
1154
+ color: red;
1155
+ text-decoration: line-through; }
1156
+
1109
1157
  #myBtn {
1110
1158
  font-family: {{monospacefont}};
1111
1159
  font-variant-ligatures: none;