metanorma-m3aawg 1.8.3 → 2.0.1

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: 47f598c3d37818395591ae49cdd1d0d15ddd68466208a3a070114e62b6a6103b
4
- data.tar.gz: c264e09505ba094b1364c107dc55fe81e285cb297ef703dbb71250b5eaee0bf5
3
+ metadata.gz: df998bd97a229006f4b26753caa187a9d876a9ece091ace845a8a5bd8dba26c1
4
+ data.tar.gz: 514d7c78a5469e22d43c2a9b678eff6a1affba14c64e9e6cb5c06b806f26f784
5
5
  SHA512:
6
- metadata.gz: e2be4d3643015b3055b1952a437bec91ff56d20cf30268803fe8e4604ad63e245b1fab3e79c5d9738959f1d112c39ad34579cbec7c007de03bcddae145b3a851
7
- data.tar.gz: e40c1f0ce6a126a635ba205f902d63f540d8cd546eacbc2ee736cbdc74a632279cbce4c45dc0d14fe90d2e2b85fc58b329f0e05254be80c34c34fd1005d0fa21
6
+ metadata.gz: 3416a37d1ead07539b02527375d9bb889d85839ff61a6bd0b1cbf94c27901854adb2656c472f5b4e6d1d9c650d21f915a299f8310326bed11dbc0c05ae6c6e91
7
+ data.tar.gz: 8e7f3f16f644c4bdbdb8513aab020183291c577a999489176db711dcd3585f1fcf5239db48d22fb81cf1535bd74ca30c6b8c25231eb4104ee0c75073e9c5832d
@@ -9,35 +9,7 @@ on:
9
9
  pull_request:
10
10
 
11
11
  jobs:
12
- rake:
13
- name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }}
14
- runs-on: ${{ matrix.os }}
15
- continue-on-error: ${{ matrix.experimental }}
16
- strategy:
17
- fail-fast: false
18
- matrix:
19
- ruby: [ '3.0', '2.7', '2.6', '2.5' ]
20
- os: [ ubuntu-latest, windows-latest, macos-latest ]
21
- experimental: [ false ]
22
- steps:
23
- - uses: actions/checkout@v2
24
- with:
25
- submodules: true
26
-
27
- - uses: ruby/setup-ruby@v1
28
- with:
29
- ruby-version: ${{ matrix.ruby }}
30
- bundler-cache: true
31
-
32
- - run: bundle exec rake
33
-
34
- tests-passed:
35
- needs: rake
36
- runs-on: ubuntu-latest
37
- steps:
38
- - uses: peter-evans/repository-dispatch@v1
39
- with:
40
- token: ${{ secrets.METANORMA_CI_PAT_TOKEN || secrets.GITHUB_TOKEN }}
41
- repository: ${{ github.repository }}
42
- event-type: tests-passed
43
- client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
12
+ notify:
13
+ uses: metanorma/metanorma-build-scripts/.github/workflows/mn-processor-rake.yml@main
14
+ secrets:
15
+ pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
data/.gitignore CHANGED
@@ -1,3 +1,14 @@
1
1
  .DS_Store
2
2
 
3
3
  .rubocop-https--*
4
+
5
+ /.rspec_status
6
+ /Gemfile.devel
7
+ /Gemfile.lock
8
+ /coverage/
9
+ /test.doc
10
+ /test.err
11
+ /test.html
12
+ /test.pdf
13
+ /test.presentation.xml
14
+ /test_3644993195a04f77_htmlimages/
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "asciidoctor/m3d"
4
+ require "metanorma-m3aawg"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -82,6 +82,12 @@ code *, pre *, tt *, kbd *, samp * {
82
82
  font-family: {{monospacefont}} !important;
83
83
  font-variant-ligatures: none; }
84
84
 
85
+ p code, dt code, li code, label code, legend code, caption code, th code, td code,
86
+ p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
87
+ p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
88
+ p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
89
+ font-size: {{monospacefontsize}}; }
90
+
85
91
  article, aside, details, figcaption, figure,
86
92
  footer, header, hgroup, menu, nav, section {
87
93
  display: block; }
@@ -93,6 +99,9 @@ table {
93
99
  h1, h2, h3, h4, h5, h6 {
94
100
  font-family: {{headerfont}}; }
95
101
 
102
+ .h1, .h2, .h3, .h4, .h5, .h6 {
103
+ font-family: {{headerfont}}; }
104
+
96
105
  blockquote, q {
97
106
  quotes: none; }
98
107
  blockquote:before, blockquote:after, q:before, q:after {
@@ -252,48 +261,52 @@ main {
252
261
  div.colophon {
253
262
  margin: 0 3em 0 6em; }
254
263
 
255
- #toc {
264
+ #toc, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
256
265
  font-family: {{bodyfont}};
257
266
  font-weight: 400; }
258
- #toc ul {
267
+ #toc ul, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) ul {
259
268
  margin: 0;
260
269
  padding: 0;
261
270
  list-style: none; }
262
- #toc ul li a {
271
+ #toc ul li a, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) ul li a {
263
272
  padding: 5px 10px; }
264
- #toc ul a {
273
+ #toc ul a, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) ul a {
265
274
  color: #69C5DC;
266
275
  text-decoration: none;
267
276
  display: block; }
268
- #toc ul a:hover {
277
+ #toc ul a:hover, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) ul a:hover {
269
278
  box-shadow: none;
270
279
  color: #69C5DC; }
271
- #toc .h2 {
280
+ #toc .h2, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) .h2 {
272
281
  padding-left: 30px; }
273
- #toc .h3 {
282
+ #toc .h3, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) .h3 {
274
283
  padding-left: 50px; }
275
- #toc .toc-active, #toc li:hover {
284
+ #toc .toc-active, #toc li:hover, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover {
276
285
  background: #69C5DC;
277
286
  box-shadow: inset -5px 0px 10px -5px #69C5DC !important; }
278
- #toc .toc-active a, #toc li:hover a {
287
+ #toc .toc-active a, #toc li:hover a, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active a, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover a {
279
288
  color: #69C5DC; }
280
289
  @media print {
281
- #toc .toc-active, #toc li:hover {
290
+ #toc .toc-active, #toc li:hover, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover {
282
291
  background: white;
283
292
  box-shadow: none !important; }
284
- #toc .toc-active a {
293
+ #toc .toc-active a, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active a {
285
294
  color: #69C5DC; }
286
- #toc li:hover a {
295
+ #toc li:hover a, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover a {
287
296
  color: black; } }
288
297
  @media screen and (max-width: 768px) {
289
- #toc {
298
+ #toc, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
290
299
  padding: 0 1.5em;
291
300
  overflow: visible; } }
292
- #toc .toc-active a {
301
+ #toc .toc-active a, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active a {
293
302
  color: white; }
294
- #toc ul a:hover {
303
+ #toc ul a:hover, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) ul a:hover {
295
304
  color: white; }
296
305
 
306
+ #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
307
+ margin-top: 0;
308
+ margin-bottom: 0; }
309
+
297
310
  @media screen and (min-width: 768px) {
298
311
  nav {
299
312
  position: fixed;
@@ -377,7 +390,7 @@ div.colophon {
377
390
  display: none; }
378
391
  h1.toc-contents {
379
392
  margin-top: 1em; }
380
- ul#toc-list {
393
+ ul#toc-list, ul#toc-list > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
381
394
  padding: 0;
382
395
  margin: 0; }
383
396
  nav {
@@ -565,25 +578,25 @@ p.document-stage {
565
578
  /*
566
579
  3.1 Titles
567
580
  */
568
- h1, h2, h3, h4, h5, h6 {
581
+ h1, h2, h3, h4, h5, h6, p.h1, .h2, .h3, .h4, .h5, .h6 {
569
582
  font-family: {{headerfont}};
570
583
  color: black;
571
584
  font-weight: 600;
572
585
  margin-top: 2em;
573
586
  margin-bottom: 0.3em; }
574
587
 
575
- h1 {
588
+ h1, .h1 {
576
589
  font-size: 1.4em;
577
590
  text-transform: uppercase;
578
591
  margin-top: 2em; }
579
592
 
580
- h1#content {
593
+ h1#content, #content.h1 {
581
594
  margin-top: 2em; }
582
595
 
583
- h2 {
596
+ h2, .h2 {
584
597
  font-size: 1.3em; }
585
598
 
586
- h3 {
599
+ h3, .h3 {
587
600
  font-size: 1.1em; }
588
601
 
589
602
  @media screen {
@@ -984,7 +997,7 @@ p {
984
997
  margin: 4em -3em 3em -5em;
985
998
  border-bottom: 4px solid #F22E15; }
986
999
 
987
- .section-title h1 {
1000
+ .section-title h1, .section-title .h1 {
988
1001
  font-size: 2em;
989
1002
  font-weight: 800;
990
1003
  line-height: 1em;
@@ -993,7 +1006,7 @@ p {
993
1006
  color: white;
994
1007
  text-transform: none; }
995
1008
 
996
- h2 {
1009
+ h2, .h2 {
997
1010
  border-bottom: solid 1px #69C5DC;
998
1011
  color: black; }
999
1012
 
@@ -32,7 +32,7 @@ div.colophon {
32
32
  margin: 0 3em 0 6em;
33
33
  }
34
34
 
35
- #toc {
35
+ #toc, #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
36
36
  @include toc(#69C5DC, #69C5DC, #69C5DC);
37
37
  @include sidebarToc();
38
38
 
@@ -47,6 +47,11 @@ div.colophon {
47
47
  }
48
48
  }
49
49
 
50
+ #toc > ul > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
51
+ margin-top: 0;
52
+ margin-bottom: 0;
53
+ }
54
+
50
55
  nav {
51
56
  @include sidebarNav(#f7f7f7, 323px, 45px);
52
57
  }
@@ -80,7 +85,7 @@ nav {
80
85
  margin-top: 1em;
81
86
  }
82
87
 
83
- ul#toc-list {
88
+ ul#toc-list, ul#toc-list > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
84
89
  padding: 0;
85
90
  margin: 0;
86
91
  }
@@ -217,7 +222,7 @@ p.document-stage {
217
222
  3.1 Titles
218
223
  */
219
224
 
220
- h1,h2,h3,h4,h5,h6 {
225
+ h1,h2,h3,h4,h5,h6,p.h1,.h2,.h3,.h4,.h5,.h6 {
221
226
  font-family: $headerfont;
222
227
  color: black;
223
228
  font-weight: 600;
@@ -225,21 +230,21 @@ p.document-stage {
225
230
  margin-bottom: 0.3em;
226
231
  }
227
232
 
228
- h1 {
233
+ h1,.h1 {
229
234
  font-size: 1.4em;
230
235
  text-transform: uppercase;
231
236
  margin-top: 2em;
232
237
  }
233
238
 
234
- h1#content {
239
+ h1#content,.h1#content {
235
240
  margin-top: 2em;
236
241
  }
237
242
 
238
- h2 {
243
+ h2,.h2 {
239
244
  font-size: 1.3em;
240
245
  }
241
246
 
242
- h3 {
247
+ h3,.h3 {
243
248
  font-size: 1.1em;
244
249
  }
245
250
 
@@ -662,7 +667,7 @@ p {
662
667
  }
663
668
 
664
669
 
665
- .section-title h1 {
670
+ .section-title h1, .section-title .h1 {
666
671
  font-size: 2em;
667
672
  font-weight: 800;
668
673
  line-height: 1em;
@@ -672,7 +677,7 @@ p {
672
677
  text-transform: none;
673
678
  }
674
679
 
675
- h2 {
680
+ h2,.h2 {
676
681
  border-bottom: solid 1px #69C5DC;
677
682
  color: black;
678
683
  }
@@ -17,7 +17,6 @@ $('#toggle').on('click', function(){
17
17
  else {
18
18
  $('nav').show();
19
19
  $('nav').animate({ 'left': '0px' }, 'slow');
20
- $('.container').animate({ 'padding-left': '360px' }, 'slow');
21
20
  }
22
21
  });
23
22
  </script>
@@ -290,7 +290,7 @@ span.blackgraphtx {
290
290
  div.figure, p.figure {
291
291
  text-align: center; }
292
292
 
293
- h1 {
293
+ h1, .h1 {
294
294
  mso-style-priority: 1;
295
295
  mso-style-unhide: no;
296
296
  mso-style-qformat: yes;
@@ -305,8 +305,6 @@ h1 {
305
305
  line-height: 13.5pt;
306
306
  mso-pagination: widow-orphan;
307
307
  page-break-after: avoid;
308
- mso-outline-level: 1;
309
- mso-list: l1 level1 lfo6;
310
308
  mso-hyphenate: none;
311
309
  tab-stops: 20.0pt list 21.6pt left 28.0pt;
312
310
  font-size: 13.0pt;
@@ -318,6 +316,10 @@ h1 {
318
316
  mso-fareast-language: JA;
319
317
  mso-bidi-font-weight: normal; }
320
318
 
319
+ h1 {
320
+ mso-outline-level: 1;
321
+ mso-list: l1 level1 lfo6; }
322
+
321
323
  h1.Annex {
322
324
  mso-style-priority: 1;
323
325
  mso-style-unhide: no;
@@ -374,7 +376,7 @@ h1.Annex {
374
376
  mso-fareast-language: JA;
375
377
  mso-bidi-font-weight: normal; }
376
378
 
377
- h2 {
379
+ h2, .h2 {
378
380
  mso-style-priority: 2;
379
381
  mso-style-unhide: no;
380
382
  mso-style-qformat: yes;
@@ -390,8 +392,6 @@ h2 {
390
392
  line-height: 12.5pt;
391
393
  mso-pagination: widow-orphan;
392
394
  page-break-after: avoid;
393
- mso-outline-level: 2;
394
- mso-list: l1 level2 lfo6;
395
395
  mso-hyphenate: none;
396
396
  tab-stops: 27.0pt 35.0pt;
397
397
  font-size: 12.0pt;
@@ -402,7 +402,11 @@ h2 {
402
402
  mso-fareast-language: JA;
403
403
  mso-bidi-font-weight: normal; }
404
404
 
405
- h3 {
405
+ h2 {
406
+ mso-outline-level: 2;
407
+ mso-list: l1 level2 lfo6; }
408
+
409
+ h3, .h3 {
406
410
  mso-style-priority: 3;
407
411
  mso-style-unhide: no;
408
412
  mso-style-qformat: yes;
@@ -418,8 +422,6 @@ h3 {
418
422
  line-height: 12.0pt;
419
423
  mso-pagination: widow-orphan;
420
424
  page-break-after: avoid;
421
- mso-outline-level: 3;
422
- mso-list: l1 level3 lfo6;
423
425
  mso-hyphenate: none;
424
426
  tab-stops: list 36.0pt left 44.0pt;
425
427
  font-size: {{normalfontsize}};
@@ -429,7 +431,11 @@ h3 {
429
431
  mso-fareast-language: JA;
430
432
  mso-bidi-font-weight: normal; }
431
433
 
432
- h4 {
434
+ h3 {
435
+ mso-outline-level: 3;
436
+ mso-list: l1 level3 lfo6; }
437
+
438
+ h4, .h4 {
433
439
  mso-style-priority: 4;
434
440
  mso-style-unhide: no;
435
441
  mso-style-qformat: yes;
@@ -445,8 +451,6 @@ h4 {
445
451
  line-height: 12.0pt;
446
452
  mso-pagination: widow-orphan;
447
453
  page-break-after: avoid;
448
- mso-outline-level: 4;
449
- mso-list: l1 level4 lfo6;
450
454
  mso-hyphenate: none;
451
455
  tab-stops: 51.05pt 57.0pt 68.0pt;
452
456
  font-size: {{normalfontsize}};
@@ -456,7 +460,11 @@ h4 {
456
460
  mso-fareast-language: JA;
457
461
  mso-bidi-font-weight: normal; }
458
462
 
459
- h5 {
463
+ h4 {
464
+ mso-outline-level: 4;
465
+ mso-list: l1 level4 lfo6; }
466
+
467
+ h5, .h5 {
460
468
  mso-style-priority: 5;
461
469
  mso-style-unhide: no;
462
470
  mso-style-qformat: yes;
@@ -472,8 +480,6 @@ h5 {
472
480
  line-height: 12.0pt;
473
481
  mso-pagination: widow-orphan;
474
482
  page-break-after: avoid;
475
- mso-outline-level: 5;
476
- mso-list: l1 level5 lfo6;
477
483
  mso-hyphenate: none;
478
484
  tab-stops: 51.05pt list 54.0pt;
479
485
  font-size: {{normalfontsize}};
@@ -483,7 +489,11 @@ h5 {
483
489
  mso-fareast-language: JA;
484
490
  mso-bidi-font-weight: normal; }
485
491
 
486
- h6 {
492
+ h5 {
493
+ mso-outline-level: 5;
494
+ mso-list: l1 level5 lfo6; }
495
+
496
+ h6, .h6 {
487
497
  mso-style-priority: 6;
488
498
  mso-style-unhide: no;
489
499
  mso-style-qformat: yes;
@@ -499,8 +509,6 @@ h6 {
499
509
  line-height: 12.0pt;
500
510
  mso-pagination: widow-orphan;
501
511
  page-break-after: avoid;
502
- mso-outline-level: 6;
503
- mso-list: l1 level6 lfo6;
504
512
  mso-hyphenate: none;
505
513
  tab-stops: 51.05pt list 72.0pt;
506
514
  font-size: {{normalfontsize}};
@@ -510,6 +518,10 @@ h6 {
510
518
  mso-fareast-language: JA;
511
519
  mso-bidi-font-weight: normal; }
512
520
 
521
+ h6 {
522
+ mso-outline-level: 6;
523
+ mso-list: l1 level6 lfo6; }
524
+
513
525
  p.MsoToc1, li.MsoToc1, div.MsoToc1 {
514
526
  mso-style-priority: 39;
515
527
  mso-style-unhide: no;
@@ -264,7 +264,7 @@ div.figure, p.figure
264
264
 
265
265
 
266
266
 
267
- h1
267
+ h1, .h1
268
268
  {mso-style-priority:1;
269
269
  mso-style-unhide:no;
270
270
  mso-style-qformat:yes;
@@ -279,8 +279,6 @@ h1
279
279
  line-height:13.5pt;
280
280
  mso-pagination:widow-orphan;
281
281
  page-break-after:avoid;
282
- mso-outline-level:1;
283
- mso-list:l1 level1 lfo6;
284
282
  mso-hyphenate:none;
285
283
  tab-stops:20.0pt list 21.6pt left 28.0pt;
286
284
  font-size:13.0pt;
@@ -291,6 +289,10 @@ h1
291
289
  mso-ansi-language:EN-GB;
292
290
  mso-fareast-language:JA;
293
291
  mso-bidi-font-weight:normal;}
292
+ h1 {
293
+ mso-outline-level:1;
294
+ mso-list:l1 level1 lfo6;
295
+ }
294
296
  h1.Annex
295
297
  {mso-style-priority:1;
296
298
  mso-style-unhide:no;
@@ -345,7 +347,7 @@ h1.Annex
345
347
  mso-ansi-language:EN-GB;
346
348
  mso-fareast-language:JA;
347
349
  mso-bidi-font-weight:normal;}
348
- h2
350
+ h2, .h2
349
351
  {mso-style-priority:2;
350
352
  mso-style-unhide:no;
351
353
  mso-style-qformat:yes;
@@ -361,8 +363,6 @@ h2
361
363
  line-height:12.5pt;
362
364
  mso-pagination:widow-orphan;
363
365
  page-break-after:avoid;
364
- mso-outline-level:2;
365
- mso-list:l1 level2 lfo6;
366
366
  mso-hyphenate:none;
367
367
  tab-stops:27.0pt 35.0pt;
368
368
  font-size:12.0pt;
@@ -372,7 +372,11 @@ h2
372
372
  mso-ansi-language:EN-GB;
373
373
  mso-fareast-language:JA;
374
374
  mso-bidi-font-weight:normal;}
375
- h3
375
+ h2 {
376
+ mso-outline-level:2;
377
+ mso-list:l1 level2 lfo6;
378
+ }
379
+ h3, .h3
376
380
  {mso-style-priority:3;
377
381
  mso-style-unhide:no;
378
382
  mso-style-qformat:yes;
@@ -388,8 +392,6 @@ h3
388
392
  line-height:12.0pt;
389
393
  mso-pagination:widow-orphan;
390
394
  page-break-after:avoid;
391
- mso-outline-level:3;
392
- mso-list:l1 level3 lfo6;
393
395
  mso-hyphenate:none;
394
396
  tab-stops:list 36.0pt left 44.0pt;
395
397
  font-size:$normalfontsize;
@@ -398,7 +400,11 @@ h3
398
400
  mso-ansi-language:EN-GB;
399
401
  mso-fareast-language:JA;
400
402
  mso-bidi-font-weight:normal;}
401
- h4
403
+ h3 {
404
+ mso-outline-level:3;
405
+ mso-list:l1 level3 lfo6;
406
+ }
407
+ h4, .h4
402
408
  {mso-style-priority:4;
403
409
  mso-style-unhide:no;
404
410
  mso-style-qformat:yes;
@@ -414,8 +420,6 @@ h4
414
420
  line-height:12.0pt;
415
421
  mso-pagination:widow-orphan;
416
422
  page-break-after:avoid;
417
- mso-outline-level:4;
418
- mso-list:l1 level4 lfo6;
419
423
  mso-hyphenate:none;
420
424
  tab-stops:51.05pt 57.0pt 68.0pt;
421
425
  font-size:$normalfontsize;
@@ -424,7 +428,11 @@ h4
424
428
  mso-ansi-language:EN-GB;
425
429
  mso-fareast-language:JA;
426
430
  mso-bidi-font-weight:normal;}
427
- h5
431
+ h4 {
432
+ mso-outline-level:4;
433
+ mso-list:l1 level4 lfo6;
434
+ }
435
+ h5, .h5
428
436
  {mso-style-priority:5;
429
437
  mso-style-unhide:no;
430
438
  mso-style-qformat:yes;
@@ -440,8 +448,6 @@ h5
440
448
  line-height:12.0pt;
441
449
  mso-pagination:widow-orphan;
442
450
  page-break-after:avoid;
443
- mso-outline-level:5;
444
- mso-list:l1 level5 lfo6;
445
451
  mso-hyphenate:none;
446
452
  tab-stops:51.05pt list 54.0pt;
447
453
  font-size:$normalfontsize;
@@ -450,7 +456,11 @@ h5
450
456
  mso-ansi-language:EN-GB;
451
457
  mso-fareast-language:JA;
452
458
  mso-bidi-font-weight:normal;}
453
- h6
459
+ h5 {
460
+ mso-outline-level:5;
461
+ mso-list:l1 level5 lfo6;
462
+ }
463
+ h6, .h6
454
464
  {mso-style-priority:6;
455
465
  mso-style-unhide:no;
456
466
  mso-style-qformat:yes;
@@ -466,8 +476,6 @@ h6
466
476
  line-height:12.0pt;
467
477
  mso-pagination:widow-orphan;
468
478
  page-break-after:avoid;
469
- mso-outline-level:6;
470
- mso-list:l1 level6 lfo6;
471
479
  mso-hyphenate:none;
472
480
  tab-stops:51.05pt list 72.0pt;
473
481
  font-size:$normalfontsize;
@@ -476,6 +484,10 @@ h6
476
484
  mso-ansi-language:EN-GB;
477
485
  mso-fareast-language:JA;
478
486
  mso-bidi-font-weight:normal;}
487
+ h6 {
488
+ mso-outline-level:6;
489
+ mso-list:l1 level6 lfo6;
490
+ }
479
491
  p.MsoToc1, li.MsoToc1, div.MsoToc1
480
492
  {mso-style-priority:39;
481
493
  mso-style-unhide:no;