metanorma-itu 1.2.7 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ec6ae3e4b2d44ccd7e6ab9addb0f53c6d84aa9750ceddd4e78a17db546c1714
4
- data.tar.gz: 0e3b9e4225a67f3dfdc9c774e9a1f1bc90b5348fbec12056ae15e03baec7ef8d
3
+ metadata.gz: 3a6bada1aaf7b5e637051d16c6ee680dd610219f37f80eddc03a5bd6ac5accbd
4
+ data.tar.gz: 1ac0ac45d4c860c4c71e22e2710655251d2afad206624f6daf30f71fcf936552
5
5
  SHA512:
6
- metadata.gz: feb1aff54a346048fbe9fe1ae0e88c2721ce9a95488c74f663942e9db84853c94fc2181eac6c2e84c74724be68108dd567b98fd0eedecaae87a9d2a6efa43e1d
7
- data.tar.gz: a1e4f89fdbae6f567e1e310e82b4b3c36a6cad23117aa9ee5e3530eefd9a22a8fb7fd3019366a9b0d3b04046eda67c5eb4e98c8f1cfc1c26e9d67e4216ac1fe8
6
+ metadata.gz: 632c22a49ec0c545ff27cb8554ec020eb94cc5966da6ccec38e643ec9c30e34a1538793d5dfc3d2311b1a233f3bbbee1460ae433471bc32fcfa7c1bac0431078
7
+ data.tar.gz: 97b6073a3c8e1b98aeb09fc1b0b2ee617c7262fdfe46dd35d0f70ffee6d06435ff2cd000aefe27197d61c45854bf170b569862b827d41982e17f0f9963a965c9
@@ -36,7 +36,7 @@ jobs:
36
36
  with:
37
37
  ruby-version: ${{ matrix.ruby }}
38
38
 
39
- - uses: actions/cache@v1
39
+ - uses: actions/cache@v2
40
40
  with:
41
41
  path: vendor/bundle
42
42
  key: bundle-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}
@@ -48,15 +48,14 @@ jobs:
48
48
 
49
49
  - run: bundle exec rake
50
50
 
51
- notify:
52
- name: Trigger notify workflow
51
+ tests-passed:
53
52
  needs: rake
54
53
  runs-on: ubuntu-latest
55
54
  steps:
56
- - name: Trigger notify workflow
55
+ - name: Trigger tests passed event
57
56
  uses: Sibz/github-status-action@v1
58
57
  with:
59
- authToken: ${{ secrets.GITHUB_TOKEN }}
58
+ authToken: ${{ secrets.METANORMA_CI_PAT_TOKEN || secrets.GITHUB_TOKEN }}
60
59
  context: 'tests-passed-successfully'
61
60
  description: 'Tests passed successfully'
62
61
  state: 'success'
@@ -116,6 +116,7 @@ module Asciidoctor
116
116
  def metadata_id(node, xml)
117
117
  provisional_id(node, xml)
118
118
  itu_id(node, xml)
119
+ recommendation_id(node, xml)
119
120
  end
120
121
 
121
122
  def provisional_id(node, xml)
@@ -135,6 +136,15 @@ module Asciidoctor
135
136
  xml.docnumber { |i| i << node.attr("docnumber") }
136
137
  end
137
138
 
139
+ def recommendation_id(node, xml)
140
+ return unless node.attr("recommendationnumber")
141
+ node.attr("recommendationnumber").split("/").each do |s|
142
+ xml.docidentifier **{type: "ITU-Recommendation"} do |i|
143
+ i << s
144
+ end
145
+ end
146
+ end
147
+
138
148
  def metadata_series(node, xml)
139
149
  node.attr("series") and
140
150
  xml.series **{ type: "main" } do |s|
@@ -178,6 +188,7 @@ module Asciidoctor
178
188
  end
179
189
  end
180
190
 
191
+ # also used in tech paper
181
192
  def metadata_techreport(node, xml)
182
193
  a = node.attr("meeting") and xml.meeting a
183
194
  a = node.attr("meeting-date") and metadata_meeting_date(a, xml)
@@ -197,6 +208,14 @@ module Asciidoctor
197
208
  end
198
209
  end
199
210
 
211
+ def personal_role(node, c, suffix)
212
+ if node.attr("role#{suffix}")&.downcase == "rapporteur"
213
+ c.role "raporteur", **{ type: "editor" }
214
+ else
215
+ super
216
+ end
217
+ end
218
+
200
219
  def metadata_ext(node, xml)
201
220
  metadata_doctype(node, xml)
202
221
  metadata_committee(node, xml)
@@ -41,6 +41,7 @@
41
41
  <value>technical-report</value>
42
42
  <value>joint-itu-iso-iec</value>
43
43
  <value>resolution</value>
44
+ <value>service-publication</value>
44
45
  </choice>
45
46
  </define>
46
47
  <define name="editorialgroup">
@@ -67,15 +67,8 @@ module Asciidoctor
67
67
  end
68
68
 
69
69
  # Editing Guidelines 9.4.3
70
+ # Supplanted by rendering
70
71
  def numbers_validate(xmldoc)
71
- xmldoc.xpath("//clause | //preface/* | //annex").each do |x|
72
- xx = x.dup
73
- xx.xpath("./clause").each { |c| c.remove }
74
- style_two_regex_not_prev(x, extract_text(xx),
75
- /^(?<num>-?[0-9][0-9,. ]{3,})$/,
76
- %r{(\bISO|\bIEC|\bIEEE/)$},
77
- "number not broken up in threes by apostrophe")
78
- end
79
72
  end
80
73
 
81
74
  def style_two_regex_not_prev(n, text, re, re_prev, warning)
@@ -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">
@@ -91,7 +93,7 @@
91
93
  </div>
92
94
  {% endif %}
93
95
  <div>
94
- <span class="doc-type">{% if stage == "Draft" %}Draft {% endif %}{{ doctype }}</span>
96
+ <span class="doc-type">{% if stage == "Draft" %}Draft {% endif %}{% if recommendationnumber %}{{ recommendationnumber }} {% endif %}{{ doctype_display }}</span>
95
97
  <span class="ITU-sector">ITU-{{ bureau }}</span>
96
98
  <span class="doc-identifier">{{ docnumeric }}</span>
97
99
  </div>
@@ -107,17 +109,6 @@
107
109
  </div>
108
110
 
109
111
  <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
112
  {% if unpublished %}
122
113
  <div class="coverpage-warning">
123
114
  <div id="draft-warning-destination"/>
@@ -204,558 +204,6 @@ a.FootnoteRef + a.FootnoteRef:before {
204
204
  #withdrawn {
205
205
  border-bottom: solid 3px #7e0d13; }
206
206
 
207
- dl.glossary dt {
208
- font-weight: bold; }
209
-
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; }
221
-
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; } }
233
-
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; } }
243
-
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; }
304
-
305
- #toc-list li {
306
- list-style-type: none; }
307
-
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%); } }
323
-
324
- @media screen and (max-width: 768px) {
325
- #toggle {
326
- display: none; } }
327
-
328
- @media print {
329
- #toggle {
330
- display: none; } }
331
-
332
- @media screen and (min-width: 768px) {
333
- .container {
334
- padding-left: 360px; } }
335
-
336
- @media print {
337
- .container {
338
- padding-left: 0; } }
339
-
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; }
352
-
353
- .rule-thick {
354
- width: 100%;
355
- height: 3px;
356
- background-color: #00539F;
357
- margin-top: 3em; }
358
-
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; } }
365
-
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; }
385
-
386
- .SourceTitle {
387
- font-weight: 700;
388
- font-size: 1em;
389
- text-align: center; }
390
-
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; }
402
-
403
- .example pre, .example .pseudocode {
404
- background: none;
405
- margin: 0;
406
- padding: 0 0 0 2em; }
407
-
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; }
468
-
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; }
478
-
479
- #ITU-logo {
480
- width: 150px;
481
- height: auto;
482
- margin-left: auto; }
483
-
484
- svg {
485
- position: absolute;
486
- top: 0;
487
- right: 0;
488
- bottom: 0;
489
- left: 0; }
490
-
491
- .authors-container {
492
- margin-top: 2em; }
493
-
494
- .affiliation {
495
- font-style: italic; }
496
-
497
- /* Headings */
498
- h1, h2, h3, h4, h5, h6, .h1Annex {
499
- font-weight: 400;
500
- margin-top: 1.6em;
501
- margin-bottom: 0.3em; }
502
-
503
- @media print {
504
- h1, h2, h3, h4, .h1Annex {
505
- page-break-after: avoid;
506
- margin-top: 1.2em; } }
507
-
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; }
537
-
538
- /* Terms */
539
- .TermNum, .Terms, .AltTerms {
540
- font-weight: 400; }
541
-
542
- h2.TermNum {
543
- margin-bottom: 0; }
544
-
545
- p.AltTerms {
546
- font-size: 20px;
547
- margin-top: 1em; }
548
-
549
- /* Links, selection */
550
- a, a:visited {
551
- text-decoration: none;
552
- color: #00539F; }
553
-
554
- a:hover {
555
- color: white;
556
- background: #00539F;
557
- box-shadow: 3px 0 0 #00539F, -3px 0 0 #00539F; }
558
-
559
- ::selection {
560
- background: #00539F;
561
- /* WebKit/Blink Browsers */
562
- color: white; }
563
-
564
- ::-moz-selection {
565
- background: #00539F;
566
- /* Gecko Browsers */
567
- color: white; }
568
-
569
- /* Lists */
570
- ul, ol {
571
- margin-left: 1.2em; }
572
-
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; }
584
-
585
- /* Bibliograhy */
586
- p.Biblio, p.NormRef {
587
- margin-top: 1em;
588
- margin-left: 2em; }
589
-
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; }
598
-
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; }
606
-
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; }
638
-
639
- .recommend {
640
- background-color: #ccffcc;
641
- padding: 1.2em;
642
- margin: 2em 0 1em 0; }
643
-
644
- .recommend .RecommendationTitle {
645
- font-weight: 700;
646
- font-size: 1em;
647
- text-align: center; }
648
-
649
- .require .RecommendationTitle {
650
- font-weight: 700;
651
- font-size: 1em;
652
- text-align: center; }
653
-
654
- .permission .RecommendationTitle {
655
- font-weight: 700;
656
- font-size: 1em;
657
- text-align: center; }
658
-
659
- /* Tables */
660
- table.biblio td {
661
- padding-right: 0.5em; }
662
-
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; }
684
-
685
- p.TableTitle {
686
- text-align: center;
687
- margin-top: 2.5em;
688
- font-weight: 400; }
689
-
690
- /* Footnotes */
691
- a.footnote-number {
692
- vertical-align: super;
693
- font-size: 0.8em; }
694
-
695
- .footnote {
696
- font-size: 0.9em; }
697
-
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; }
706
-
707
- .formula {
708
- background-color: #f6f6f6;
709
- padding: 1.5em;
710
- margin-top: 2em;
711
- text-align: center; }
712
-
713
- dl.formula_dl {
714
- background-color: #f6f6f6;
715
- margin-left: 1.4cm;
716
- margin-right: 1.4cm; }
717
-
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; }
744
-
745
- span.keyword {
746
- font-weight: 600; }
747
-
748
- p {
749
- margin-top: 1em;
750
- margin-bottom: 1em; }
751
-
752
- .addition {
753
- color: blue; }
754
-
755
- .deletion {
756
- color: red;
757
- text-decoration: line-through; }
758
-
759
207
  html, body, div, span, applet, object, iframe,
760
208
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
761
209
  a, abbr, acronym, address, big, cite, code,
@@ -822,290 +270,842 @@ code, pre, tt, kbd, samp {
822
270
  font-family: {{monospacefont}};
823
271
  font-variant-ligatures: none; }
824
272
 
825
- code *, pre *, tt *, kbd *, samp * {
826
- font-family: {{monospacefont}} !important;
827
- font-variant-ligatures: none; }
273
+ code *, pre *, tt *, kbd *, samp * {
274
+ font-family: {{monospacefont}} !important;
275
+ font-variant-ligatures: none; }
276
+
277
+ article, aside, details, figcaption, figure,
278
+ footer, header, hgroup, menu, nav, section {
279
+ display: block; }
280
+
281
+ table {
282
+ border-collapse: collapse;
283
+ border-spacing: 0; }
284
+
285
+ h1, h2, h3, h4, h5, h6 {
286
+ font-family: {{headerfont}}; }
287
+
288
+ blockquote, q {
289
+ quotes: none; }
290
+ blockquote:before, blockquote:after, q:before, q:after {
291
+ content: '';
292
+ content: none; }
293
+
294
+ .h2Annex {
295
+ font-family: {{headerfont}}; }
296
+
297
+ dl {
298
+ display: grid;
299
+ grid-template-columns: max-content auto; }
300
+ dl dt p, dl dd p {
301
+ margin-top: 0; }
302
+ dl dt {
303
+ grid-column-start: 1; }
304
+ dl dd {
305
+ grid-column-start: 2; }
306
+
307
+ b, strong {
308
+ font-weight: bold; }
309
+
310
+ div.document-stage-band, div.document-type-band {
311
+ background-color: #333333; }
312
+
313
+ a.FootnoteRef + a.FootnoteRef:before {
314
+ content: ", ";
315
+ vertical-align: super; }
316
+
317
+ #recommendation-band {
318
+ background-color: #a3d88f; }
319
+
320
+ #recommendation {
321
+ border-bottom: solid 3px #a3d88f; }
322
+
323
+ #recommendation-amendment-band {
324
+ background-color: #a3d88f; }
325
+
326
+ #recommendation-amendment {
327
+ border-bottom: solid 3px #a3d88f; }
328
+
329
+ #recommendation-supplement-band {
330
+ background-color: #a3d88f; }
331
+
332
+ #recommendation-supplement {
333
+ border-bottom: solid 3px #a3d88f; }
334
+
335
+ #recommendation-corrigendum-band {
336
+ background-color: #a3d88f; }
337
+
338
+ #recommendation-corrigendum {
339
+ border-bottom: solid 3px #a3d88f; }
340
+
341
+ #recommendation-errata-band {
342
+ background-color: #a3d88f; }
343
+
344
+ #recommendation-errata {
345
+ border-bottom: solid 3px #a3d88f; }
346
+
347
+ #recommendation-annex-band {
348
+ background-color: #a3d88f; }
349
+
350
+ #recommendation-annex {
351
+ border-bottom: solid 3px #a3d88f; }
352
+
353
+ #technical-paper-band {
354
+ background-color: #53dd6c; }
355
+
356
+ #technical-paper {
357
+ border-bottom: solid 3px #53dd6c; }
358
+
359
+ #technical-report-band {
360
+ background-color: #53dd6c; }
361
+
362
+ #technical-report {
363
+ border-bottom: solid 3px #53dd6c; }
364
+
365
+ #focus-group-band {
366
+ background-color: #750697; }
367
+
368
+ #focus-group {
369
+ border-bottom: solid 3px #750697; }
370
+
371
+ #implementers-guide-band {
372
+ background-color: #750697; }
373
+
374
+ #implementers-guide {
375
+ border-bottom: solid 3px #750697; }
376
+
377
+ #joint-itu-iso-iec-band {
378
+ background-color: #48a0e7; }
379
+
380
+ #joint-itu-iso-iec {
381
+ border-bottom: solid 3px #48a0e7; }
382
+
383
+ #in-force-band {
384
+ background-color: #d9f39d; }
385
+
386
+ #in-force {
387
+ border-bottom: solid 3px #d9f39d; }
388
+
389
+ #in-force-prepublished-band {
390
+ background-color: #fdf906; }
391
+
392
+ #in-force-prepublished {
393
+ border-bottom: solid 3px #fdf906; }
394
+
395
+ #superseded-band {
396
+ background-color: #fd06fd; }
397
+
398
+ #superseded {
399
+ border-bottom: solid 3px #fd06fd; }
400
+
401
+ #superseded-draft-band {
402
+ background-color: #fd06fd; }
403
+
404
+ #superseded-draft {
405
+ border-bottom: solid 3px #fd06fd; }
406
+
407
+ #withdrawn-band {
408
+ background-color: #7e0d13; }
409
+
410
+ #withdrawn {
411
+ border-bottom: solid 3px #7e0d13; }
412
+
413
+ .icon-svg {
414
+ width: 100%;
415
+ color: #5ecf86; }
416
+
417
+ .wrapper-top {
418
+ background: #fff;
419
+ color: #141115;
420
+ padding: 3em 0 6em 10em;
421
+ margin-left: 0em;
422
+ background: url(data:image/png;base64,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);
423
+ background-repeat: repeat-y;
424
+ background-size: 100px; }
425
+
426
+ .doc-type {
427
+ font-size: 18px;
428
+ letter-spacing: 4px;
429
+ color: #797979;
430
+ margin-bottom: 42px; }
431
+
432
+ .ITU-sector, .doc-identifier {
433
+ font-size: 42px;
434
+ font-weight: 800;
435
+ display: inline; }
436
+
437
+ .doc-subidentifier {
438
+ font-size: 20px; }
439
+
440
+ .doc-info-left {
441
+ float: right;
442
+ padding-right: 42px; }
443
+
444
+ .doc-identifier, .publication-month {
445
+ display: block;
446
+ text-align: right; }
447
+
448
+ .publication-month {
449
+ font-size: 18px;
450
+ padding-top: 10px;
451
+ line-height: 1; }
452
+
453
+ .doc-category {
454
+ text-transform: uppercase;
455
+ font-size: 16px;
456
+ line-height: 1.2; }
457
+
458
+ .coverpage-title {
459
+ margin-top: 42px; }
460
+ .coverpage-title span {
461
+ display: block;
462
+ font-size: 20px;
463
+ line-height: 1.5; }
464
+
465
+ .coverpage-maturity,
466
+ .coverpage-stage {
467
+ font-family: {{bodyfont}};
468
+ font-weight: 400;
469
+ font-size: 1em;
470
+ margin: 0 0 2em 0;
471
+ text-transform: uppercase; }
472
+
473
+ span.doc-title, span.doc-annextitle {
474
+ font-size: 26px;
475
+ font-weight: 800;
476
+ margin-top: 20px;
477
+ margin-right: 42px; }
478
+
479
+ span.doc-title {
480
+ border-top: 2px solid #DA1D52; }
481
+
482
+ .doc-footer {
483
+ margin-top: 100px; }
484
+ .doc-footer .keywords {
485
+ display: block; }
486
+ .doc-footer div {
487
+ clear: both; }
488
+ .doc-footer span, .doc-footer .keywords {
489
+ font-size: 18px;
490
+ font-weight: 400;
491
+ letter-spacing: 0;
492
+ color: black;
493
+ float: left;
494
+ padding-right: 10px; }
495
+
496
+ .WordSection11 {
497
+ padding: 0 2em 0 3em; }
828
498
 
829
- article, aside, details, figcaption, figure,
830
- footer, header, hgroup, menu, nav, section {
831
- display: block; }
499
+ .info-section {
500
+ padding: 0; }
501
+ @media print {
502
+ .info-section {
503
+ display: none; } }
504
+ .prefatory-section {
505
+ padding: 0 3em 0 6em; }
832
506
 
833
- table {
834
- border-collapse: collapse;
835
- border-spacing: 0; }
507
+ .zzSTDTitle1, .zzSTDTitle2, .zzSTDTitle3, .MsoCommentText {
508
+ display: none; }
836
509
 
837
- h1, h2, h3, h4, h5, h6 {
838
- font-family: {{headerfont}}; }
510
+ .coverpage {
511
+ text-align: left;
512
+ padding-left: 1.5em; }
513
+ @media print {
514
+ .coverpage {
515
+ height: 23cm; } }
516
+ /* Document Identity */
517
+ .coverpage-doc-identity {
518
+ font-size: 2em;
519
+ line-height: 2em; }
839
520
 
840
- blockquote, q {
841
- quotes: none; }
842
- blockquote:before, blockquote:after, q:before, q:after {
843
- content: '';
844
- content: none; }
521
+ .coverpage-title .title-second {
522
+ display: none; }
845
523
 
846
- .h2Annex {
847
- font-family: {{headerfont}}; }
524
+ .coverpage-stage-block {
525
+ font-family: {{bodyfont}};
526
+ font-weight: 600;
527
+ font-size: 1.25em;
528
+ margin: 2em 0em 2em 0em;
529
+ text-transform: uppercase; }
848
530
 
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; }
531
+ /* Draft Warning */
532
+ .coverpage-warning {
533
+ border: #f36f36 solid 2px;
534
+ color: #f36f36 !important;
535
+ margin: 1em 2em;
536
+ color: #2e81c2;
537
+ padding: 2em 1em 1em 1em;
538
+ border-radius: 25px; }
858
539
 
859
- b, strong {
860
- font-weight: bold; }
540
+ .coverpage-warning h1 {
541
+ margin-top: 0em; }
861
542
 
862
- div.document-stage-band, div.document-type-band {
863
- background-color: #333333; }
543
+ .coverpage-warning .title {
544
+ font-family: {{bodyfont}};
545
+ font-weight: 300;
546
+ text-transform: uppercase;
547
+ font-size: 1.2em; }
864
548
 
865
- a.FootnoteRef + a.FootnoteRef:before {
866
- content: ", ";
867
- vertical-align: super; }
549
+ /* Copyright */
550
+ .copyright {
551
+ padding: 1em;
552
+ font-size: 0.9em;
553
+ text-align: left; }
554
+ @media print {
555
+ .copyright {
556
+ page-break-before: always; } }
557
+ dl.glossary dt {
558
+ font-weight: bold; }
868
559
 
869
- #recommendation-band {
870
- background-color: #a3d88f; }
560
+ body {
561
+ margin-left: auto;
562
+ margin-right: auto;
563
+ max-width: 100%;
564
+ font-size: {{normalfontsize}};
565
+ font-weight: 400;
566
+ line-height: 1.6em;
567
+ color: #141115;
568
+ background-color: #fff; }
569
+ body main {
570
+ margin: 0 3em 0 6em; }
871
571
 
872
- #recommendation {
873
- border-bottom: solid 3px #a3d88f; }
572
+ @media screen and (min-width: 768px) {
573
+ nav {
574
+ position: fixed;
575
+ top: 0;
576
+ bottom: 0;
577
+ left: 0;
578
+ width: 323px;
579
+ font-size: 0.9em;
580
+ overflow: auto;
581
+ padding: 0 0 0 45px;
582
+ background-color: #fff; } }
874
583
 
875
- #recommendation-amendment-band {
876
- background-color: #a3d88f; }
584
+ @media print {
585
+ nav {
586
+ position: relative;
587
+ width: auto;
588
+ font-size: 0.9em;
589
+ overflow: auto;
590
+ padding: 0;
591
+ margin-right: 0;
592
+ background-color: white; } }
877
593
 
878
- #recommendation-amendment {
879
- border-bottom: solid 3px #a3d88f; }
594
+ nav #toc {
595
+ font-family: {{bodyfont}};
596
+ font-weight: 400; }
597
+ @media screen and (max-width: 768px) {
598
+ nav #toc {
599
+ padding: 0 1.5em;
600
+ overflow: visible; } }
601
+ #toc {
602
+ font-family: {{bodyfont}};
603
+ font-weight: 400; }
604
+ #toc ul {
605
+ margin: 0;
606
+ padding: 0;
607
+ list-style: none; }
608
+ #toc ul li a {
609
+ padding: 5px 10px; }
610
+ #toc ul a {
611
+ color: #141115;
612
+ text-decoration: none;
613
+ display: block; }
614
+ #toc ul a:hover {
615
+ box-shadow: none;
616
+ color: white; }
617
+ #toc .h2 {
618
+ padding-left: 30px; }
619
+ #toc .h3 {
620
+ padding-left: 50px; }
621
+ #toc .toc-active, #toc li:hover {
622
+ background: #da1d52;
623
+ box-shadow: inset -5px 0px 10px -5px #da1d52 !important; }
624
+ #toc .toc-active a, #toc li:hover a {
625
+ color: white; }
626
+ @media print {
627
+ #toc .toc-active, #toc li:hover {
628
+ background: white;
629
+ box-shadow: none !important; }
630
+ #toc .toc-active a {
631
+ color: #141115; }
632
+ #toc li:hover a {
633
+ color: black; } }
634
+ #toc .h1 {
635
+ text-transform: uppercase; }
636
+ #toc li a {
637
+ font-size: {{normalfontsize}}; }
638
+ #toc li:hover a {
639
+ background: none;
640
+ box-shadow: none; }
641
+ #toc li:before {
642
+ content: " ";
643
+ display: none; }
644
+ @media print {
645
+ #toc .toc-active a {
646
+ color: #4D7EA5; }
647
+ #toc .toc-active, #toc li:hover {
648
+ background: white;
649
+ box-shadow: none !important; }
650
+ #toc li:hover a {
651
+ color: black; } }
652
+ #toc-list ul {
653
+ margin-bottom: 0.25em; }
880
654
 
881
- #recommendation-supplement-band {
882
- background-color: #a3d88f; }
655
+ #toc-list li {
656
+ list-style-type: none; }
883
657
 
884
- #recommendation-supplement {
885
- border-bottom: solid 3px #a3d88f; }
658
+ @media screen and (min-width: 768px) {
659
+ #toggle {
660
+ position: fixed;
661
+ height: 100%;
662
+ width: 30px;
663
+ background-color: #da1d52;
664
+ color: white !important;
665
+ cursor: pointer;
666
+ z-index: 100; }
667
+ #toggle span {
668
+ text-align: center;
669
+ width: 100%;
670
+ position: absolute;
671
+ top: 50%;
672
+ transform: translate(0, -50%); } }
886
673
 
887
- #recommendation-corrigendum-band {
888
- background-color: #a3d88f; }
674
+ @media screen and (max-width: 768px) {
675
+ #toggle {
676
+ display: none; } }
889
677
 
890
- #recommendation-corrigendum {
891
- border-bottom: solid 3px #a3d88f; }
678
+ @media print {
679
+ #toggle {
680
+ display: none; } }
892
681
 
893
- #recommendation-errata-band {
894
- background-color: #a3d88f; }
682
+ @media screen and (min-width: 768px) {
683
+ .container {
684
+ padding-left: 360px; } }
895
685
 
896
- #recommendation-errata {
897
- border-bottom: solid 3px #a3d88f; }
686
+ @media print {
687
+ .container {
688
+ padding-left: 0; } }
898
689
 
899
- #recommendation-annex-band {
900
- background-color: #a3d88f; }
690
+ .rule {
691
+ width: 100%;
692
+ height: 1px;
693
+ background-color: #00539F;
694
+ margin: 2em 0; }
695
+ @media screen and (min-width: 768px) {
696
+ .rule.toc {
697
+ display: none; } }
698
+ .rule-2 {
699
+ width: 100%;
700
+ height: 1px;
701
+ background-color: #00539F; }
901
702
 
902
- #recommendation-annex {
903
- border-bottom: solid 3px #a3d88f; }
703
+ .rule-thick {
704
+ width: 100%;
705
+ height: 3px;
706
+ background-color: #00539F;
707
+ margin-top: 3em; }
904
708
 
905
- #technical-paper-band {
906
- background-color: #53dd6c; }
709
+ @media screen and (min-width: 768px) {
710
+ h1.toc-contents {
711
+ margin-top: 1em; }
712
+ ul#toc-list {
713
+ padding: 0;
714
+ margin: 0; } }
907
715
 
908
- #technical-paper {
909
- border-bottom: solid 3px #53dd6c; }
716
+ .figure {
717
+ line-height: 1.6em;
718
+ padding: 1.5em;
719
+ margin: 2em 0 1em 0;
720
+ overflow: auto;
721
+ font-family: {{monospacefont}};
722
+ font-variant-ligatures: none;
723
+ background-color: #f6f6f6;
724
+ font-size: {{monospacefontsize}}; }
725
+ .figure .FigureTitle, .figure .figure-title {
726
+ font-weight: 700;
727
+ font-size: 1em;
728
+ text-align: center; }
729
+ .figure > img {
730
+ margin-left: auto;
731
+ margin-right: auto;
732
+ display: block;
733
+ max-width: 100%;
734
+ height: auto; }
910
735
 
911
- #technical-report-band {
912
- background-color: #53dd6c; }
736
+ .SourceTitle {
737
+ font-weight: 700;
738
+ font-size: 1em;
739
+ text-align: center; }
913
740
 
914
- #technical-report {
915
- border-bottom: solid 3px #53dd6c; }
741
+ pre {
742
+ font-family: {{monospacefont}};
743
+ font-variant-ligatures: none;
744
+ background-color: #f6f6f6;
745
+ font-size: {{monospacefontsize}};
746
+ line-height: 1.6em;
747
+ padding: 1.5em;
748
+ margin: 2em 0 1em 0;
749
+ overflow-y: auto;
750
+ overflow-x: scroll;
751
+ font-size: {{monospacefontsize}}; }
916
752
 
917
- #focus-group-band {
918
- background-color: #750697; }
753
+ .example pre, .example .pseudocode {
754
+ background: none;
755
+ margin: 0;
756
+ padding: 0 0 0 2em; }
919
757
 
920
- #focus-group {
921
- border-bottom: solid 3px #750697; }
758
+ .document-stage-band {
759
+ left: 0;
760
+ top: 0;
761
+ height: 100%;
762
+ position: fixed;
763
+ display: block;
764
+ z-index: 101;
765
+ box-shadow: -5px 0px 10px #1d1d1d; }
766
+ .document-stage-band > :first-child {
767
+ position: relative;
768
+ width: 25px;
769
+ font-weight: 300;
770
+ height: 160px;
771
+ color: white;
772
+ text-transform: uppercase;
773
+ font-size: 0.9em;
774
+ font-weight: 400;
775
+ letter-spacing: 0.05em;
776
+ margin: 0;
777
+ margin-left: 6px;
778
+ writing-mode: tb-rl;
779
+ -webkit-transform: rotate(180deg);
780
+ -moz-transform: rotate(180deg);
781
+ -o-transform: rotate(180deg);
782
+ white-space: nowrap;
783
+ display: block;
784
+ bottom: 0; }
785
+ @media print {
786
+ .document-stage-band {
787
+ display: none; } }
788
+ .document-type-band {
789
+ left: 0;
790
+ top: 180px;
791
+ height: 100%;
792
+ position: fixed;
793
+ display: block;
794
+ z-index: 102; }
795
+ .document-type-band > :first-child {
796
+ position: relative;
797
+ width: 25px;
798
+ font-weight: 400;
799
+ color: white;
800
+ text-transform: uppercase;
801
+ font-size: 0.9em;
802
+ font-weight: 400;
803
+ letter-spacing: 0.05em;
804
+ margin: 0;
805
+ margin-left: 6px;
806
+ writing-mode: tb-rl;
807
+ -webkit-transform: rotate(180deg);
808
+ -moz-transform: rotate(180deg);
809
+ -o-transform: rotate(180deg);
810
+ white-space: nowrap;
811
+ display: block;
812
+ bottom: 0; }
813
+ @media print {
814
+ .document-type-band {
815
+ display: none; } }
816
+ .document-type-band .document-type {
817
+ top: 20px; }
922
818
 
923
- #implementers-guide-band {
924
- background-color: #750697; }
819
+ .logo-wrapper {
820
+ width: 100%;
821
+ display: block;
822
+ height: 100px;
823
+ padding-top: 75px;
824
+ position: relative; }
825
+ .logo-wrapper img, .logo-wrapper svg {
826
+ float: right;
827
+ padding-right: 42px; }
925
828
 
926
- #implementers-guide {
927
- border-bottom: solid 3px #750697; }
829
+ #ITU-logo {
830
+ width: 150px;
831
+ height: auto;
832
+ margin-left: auto; }
928
833
 
929
- #joint-itu-iso-iec-band {
930
- background-color: #48a0e7; }
834
+ svg {
835
+ position: absolute;
836
+ top: 0;
837
+ right: 0;
838
+ bottom: 0;
839
+ left: 0; }
931
840
 
932
- #joint-itu-iso-iec {
933
- border-bottom: solid 3px #48a0e7; }
841
+ .authors-container {
842
+ margin-top: 2em; }
934
843
 
935
- #in-force-band {
936
- background-color: #d9f39d; }
844
+ .affiliation {
845
+ font-style: italic; }
937
846
 
938
- #in-force {
939
- border-bottom: solid 3px #d9f39d; }
847
+ /* Headings */
848
+ h1, h2, h3, h4, h5, h6, .h1Annex {
849
+ font-weight: 400;
850
+ margin-top: 1.6em;
851
+ margin-bottom: 0.3em; }
940
852
 
941
- #in-force-prepublished-band {
942
- background-color: #fdf906; }
853
+ @media print {
854
+ h1, h2, h3, h4, .h1Annex {
855
+ page-break-after: avoid;
856
+ margin-top: 1.2em; } }
943
857
 
944
- #in-force-prepublished {
945
- border-bottom: solid 3px #fdf906; }
858
+ h1, .h1Annex {
859
+ font-size: 1.4em;
860
+ text-transform: uppercase;
861
+ margin-top: 2em; }
862
+ h1#content, #content.h1Annex {
863
+ margin-top: 2em; }
864
+ @media print {
865
+ h1, .h1Annex {
866
+ font-size: 1.5em;
867
+ line-height: 1.5; }
868
+ h1.content, .h1Annex.content {
869
+ margin-top: 2em;
870
+ line-height: 2.5em; } }
871
+ h2 {
872
+ margin-top: 1.7em;
873
+ font-size: 1.5em; }
874
+ h2 p {
875
+ display: inline; }
876
+ @media print {
877
+ h2 {
878
+ font-size: 1.2em; } }
879
+ h3 {
880
+ margin-top: 1.5em;
881
+ font-size: 1.4em; }
882
+ @media print {
883
+ h3 {
884
+ font-size: 1em; } }
885
+ h4 {
886
+ font-size: 1.2em; }
946
887
 
947
- #superseded-band {
948
- background-color: #fd06fd; }
888
+ /* Terms */
889
+ .TermNum, .Terms, .AltTerms {
890
+ font-weight: 400; }
949
891
 
950
- #superseded {
951
- border-bottom: solid 3px #fd06fd; }
892
+ h2.TermNum {
893
+ margin-bottom: 0; }
952
894
 
953
- #superseded-draft-band {
954
- background-color: #fd06fd; }
895
+ p.AltTerms {
896
+ font-size: 20px;
897
+ margin-top: 1em; }
955
898
 
956
- #superseded-draft {
957
- border-bottom: solid 3px #fd06fd; }
899
+ /* Links, selection */
900
+ a, a:visited {
901
+ text-decoration: none;
902
+ color: #00539F; }
958
903
 
959
- #withdrawn-band {
960
- background-color: #7e0d13; }
904
+ a:hover {
905
+ color: white;
906
+ background: #00539F;
907
+ box-shadow: 3px 0 0 #00539F, -3px 0 0 #00539F; }
961
908
 
962
- #withdrawn {
963
- border-bottom: solid 3px #7e0d13; }
909
+ ::selection {
910
+ background: #00539F;
911
+ /* WebKit/Blink Browsers */
912
+ color: white; }
964
913
 
965
- .icon-svg {
966
- width: 100%;
967
- color: #5ecf86; }
914
+ ::-moz-selection {
915
+ background: #00539F;
916
+ /* Gecko Browsers */
917
+ color: white; }
968
918
 
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; }
919
+ /* Lists */
920
+ ul, ol {
921
+ margin-left: 1.2em; }
977
922
 
978
- .doc-type {
979
- font-size: 18px;
980
- letter-spacing: 4px;
981
- color: #797979;
982
- margin-bottom: 42px; }
923
+ ul > li {
924
+ list-style: none; }
925
+ ul > li:before {
926
+ content: "\2014";
927
+ display: inline-block;
928
+ width: 1em;
929
+ margin-left: -1.2em; }
930
+ ul > li p:first-child {
931
+ display: inline; }
932
+ ul > li:first-child {
933
+ margin-top: 1em; }
983
934
 
984
- .ITU-sector, .doc-identifier {
985
- font-size: 42px;
986
- font-weight: 800;
987
- display: inline; }
935
+ /* Bibliograhy */
936
+ p.Biblio, p.NormRef {
937
+ margin-top: 1em;
938
+ margin-left: 2em; }
988
939
 
989
- .doc-subidentifier {
990
- font-size: 20px; }
940
+ /* Blocks */
941
+ .Note {
942
+ background-color: #ffca3a;
943
+ color: #141115;
944
+ padding: 1.2em;
945
+ margin: 1em 0 1em 0; }
946
+ .Note p {
947
+ margin: 0; }
991
948
 
992
- .doc-info-left {
993
- float: right;
994
- padding-right: 42px; }
949
+ .Admonition {
950
+ background-color: #ffcccc;
951
+ color: #47430c;
952
+ padding: 1.2em;
953
+ margin: 1em 0 1em 0; }
954
+ .Admonition p {
955
+ margin: 0; }
995
956
 
996
- .doc-identifier, .publication-month {
997
- display: block;
998
- text-align: right; }
957
+ .example {
958
+ background-color: #e1eef1;
959
+ padding: 1.2em;
960
+ margin: 2em 0 1em 0;
961
+ text-align: left;
962
+ padding-left: 3.2em; }
963
+ .example p {
964
+ margin: 0; }
965
+ .example .example-title {
966
+ font-weight: 700;
967
+ text-transform: uppercase;
968
+ margin-left: -2em; }
969
+ .example .example-title {
970
+ margin-top: 0;
971
+ margin-left: -1.5em; }
972
+ .example pre, .example .pseudocode {
973
+ background: none;
974
+ margin: 0;
975
+ padding: 0 0 0 2em; }
999
976
 
1000
- .publication-month {
1001
- font-size: 18px;
1002
- padding-top: 10px;
1003
- line-height: 1; }
977
+ .pseudocode {
978
+ background-color: #f6f6f6;
979
+ padding: 1.2em;
980
+ margin: 2em 0 1em 0;
981
+ padding-left: 2em; }
982
+ .pseudocode .example-title {
983
+ font-weight: 700;
984
+ text-transform: uppercase;
985
+ text-align: center;
986
+ margin-top: 0;
987
+ margin-left: -1.5em; }
1004
988
 
1005
- .doc-category {
1006
- text-transform: uppercase;
1007
- font-size: 16px;
1008
- line-height: 1.2; }
989
+ .recommend {
990
+ background-color: #ccffcc;
991
+ padding: 1.2em;
992
+ margin: 2em 0 1em 0; }
1009
993
 
1010
- .coverpage-title {
1011
- margin-top: 42px; }
1012
- .coverpage-title span {
1013
- display: block;
1014
- font-size: 20px;
1015
- line-height: 1.5; }
994
+ .recommend .RecommendationTitle {
995
+ font-weight: 700;
996
+ font-size: 1em;
997
+ text-align: center; }
1016
998
 
1017
- .coverpage-maturity,
1018
- .coverpage-stage {
1019
- font-family: {{bodyfont}};
1020
- font-weight: 400;
999
+ .require .RecommendationTitle {
1000
+ font-weight: 700;
1021
1001
  font-size: 1em;
1022
- margin: 0 0 2em 0;
1023
- text-transform: uppercase; }
1002
+ text-align: center; }
1024
1003
 
1025
- span.doc-title, span.doc-annextitle {
1026
- font-size: 26px;
1027
- font-weight: 800;
1028
- margin-top: 20px;
1029
- margin-right: 42px; }
1004
+ .permission .RecommendationTitle {
1005
+ font-weight: 700;
1006
+ font-size: 1em;
1007
+ text-align: center; }
1030
1008
 
1031
- span.doc-title {
1032
- border-top: 2px solid #DA1D52; }
1009
+ /* Tables */
1010
+ table.biblio td {
1011
+ padding-right: 0.5em; }
1033
1012
 
1034
- .doc-footer {
1035
- margin-top: 100px; }
1036
- .doc-footer .keywords {
1037
- display: block; }
1038
- .doc-footer div {
1039
- clear: both; }
1040
- .doc-footer span, .doc-footer .keywords {
1041
- font-size: 18px;
1042
- font-weight: 400;
1043
- letter-spacing: 0;
1044
- color: black;
1045
- float: left;
1046
- padding-right: 10px; }
1013
+ table:not(.biblio) {
1014
+ width: 100%;
1015
+ font-weight: 300;
1016
+ margin: 1em 0 2em 0;
1017
+ margin-left: auto;
1018
+ margin-right: auto;
1019
+ padding-right: 2em;
1020
+ color: #141115; }
1021
+ table:not(.biblio), table:not(.biblio) th, table:not(.biblio) td {
1022
+ border: none;
1023
+ font-size: 0.95em; }
1024
+ table:not(.biblio) th, table:not(.biblio) td {
1025
+ padding: 1em; }
1026
+ table:not(.biblio) td.header {
1027
+ font-weigth: 400; }
1028
+ table:not(.biblio), table:not(.biblio) th, table:not(.biblio) td {
1029
+ border: none !important; }
1030
+ table:not(.biblio) tr:nth-child(even) {
1031
+ background: #f1f8ff; }
1032
+ table:not(.biblio) tr:nth-child(odd) {
1033
+ background: #f6f8fa; }
1047
1034
 
1048
- .WordSection11 {
1049
- padding: 0 2em 0 3em; }
1035
+ p.TableTitle {
1036
+ text-align: center;
1037
+ margin-top: 2.5em;
1038
+ font-weight: 400; }
1050
1039
 
1051
- .info-section {
1052
- padding: 0; }
1053
- @media print {
1054
- .info-section {
1055
- display: none; } }
1056
- .prefatory-section {
1057
- padding: 0 3em 0 6em; }
1040
+ /* Footnotes */
1041
+ a.footnote-number {
1042
+ vertical-align: super;
1043
+ font-size: 0.8em; }
1058
1044
 
1059
- .zzSTDTitle1, .zzSTDTitle2, .zzSTDTitle3, .MsoCommentText {
1060
- display: none; }
1045
+ .footnote {
1046
+ font-size: {{footnotefontsize}}; }
1061
1047
 
1062
- .coverpage {
1063
- text-align: left;
1064
- padding-left: 1.5em; }
1065
- @media print {
1066
- .coverpage {
1067
- height: 23cm; } }
1068
- /* Document Identity */
1069
- .coverpage-doc-identity {
1070
- font-size: 2em;
1071
- line-height: 2em; }
1048
+ .Quote {
1049
+ background-color: #f6f6f6;
1050
+ font-style: italic;
1051
+ width: 80%;
1052
+ padding: 1.5em;
1053
+ margin-top: 2em;
1054
+ margin-left: auto;
1055
+ margin-right: auto; }
1072
1056
 
1073
- .coverpage-title .title-second {
1074
- display: none; }
1057
+ .formula {
1058
+ background-color: #f6f6f6;
1059
+ padding: 1.5em;
1060
+ margin-top: 2em;
1061
+ text-align: center; }
1075
1062
 
1076
- .coverpage-stage-block {
1077
- font-family: {{bodyfont}};
1078
- font-weight: 600;
1079
- font-size: 1.25em;
1080
- margin: 2em 0em 2em 0em;
1081
- text-transform: uppercase; }
1063
+ dl.formula_dl {
1064
+ background-color: #f6f6f6;
1065
+ margin-left: 1.4cm;
1066
+ margin-right: 1.4cm; }
1082
1067
 
1083
- /* Draft Warning */
1084
- .coverpage-warning {
1085
- border: #f36f36 solid 2px;
1086
- color: #f36f36 !important;
1087
- margin: 1em 2em;
1088
- color: #2e81c2;
1089
- padding: 2em 1em 1em 1em;
1068
+ .contact-info {
1069
+ padding: 2em;
1070
+ margin-top: 5em;
1071
+ width: 280px;
1072
+ text-align: left;
1073
+ color: #00539F !important;
1074
+ background-color: #f1f8ff;
1090
1075
  border-radius: 25px; }
1076
+ .contact-info a, .contact-info a:hover {
1077
+ color: #00539F; }
1078
+ .contact-info a:hover {
1079
+ text-decoration: underline;
1080
+ background: none;
1081
+ box-shadow: 0 0 0 0; }
1082
+ .contact-info p, .contact-info a {
1083
+ font-family: {{monospacefont}};
1084
+ font-variant-ligatures: none;
1085
+ font-weight: 400; }
1086
+ .contact-info .name {
1087
+ font-weight: 700;
1088
+ font-size: 14px;
1089
+ margin-bottom: 5px; }
1090
+ .contact-info .address {
1091
+ font-size: 12px;
1092
+ line-height: 1.3em;
1093
+ margin-top: 0; }
1091
1094
 
1092
- .coverpage-warning h1 {
1093
- margin-top: 0em; }
1095
+ span.keyword {
1096
+ font-weight: 600; }
1094
1097
 
1095
- .coverpage-warning .title {
1096
- font-family: {{bodyfont}};
1097
- font-weight: 300;
1098
- text-transform: uppercase;
1099
- font-size: 1.2em; }
1098
+ p {
1099
+ margin-top: 1em;
1100
+ margin-bottom: 1em; }
1101
+
1102
+ .addition {
1103
+ color: blue; }
1104
+
1105
+ .deletion {
1106
+ color: red;
1107
+ text-decoration: line-through; }
1100
1108
 
1101
- /* Copyright */
1102
- .copyright {
1103
- padding: 1em;
1104
- font-size: 0.9em;
1105
- text-align: left; }
1106
- @media print {
1107
- .copyright {
1108
- page-break-before: always; } }
1109
1109
  #myBtn {
1110
1110
  font-family: {{monospacefont}};
1111
1111
  font-variant-ligatures: none;