metanorma-ribose 1.8.1 → 1.8.5

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: e14900c0c35f275f27141edb40d206f712011f59cd70594fa10581b41476a34a
4
- data.tar.gz: d7515001fa48bfab517c89180b53a5ee3495fb07746fdb9ed3f30b8b4a20eabd
3
+ metadata.gz: 15ecdae44d9c0f03941e38f784f1b766b2fc80283f0cc76a15b65c9d5f6f8c57
4
+ data.tar.gz: a0b8dde351cee3f3f3cecc58b874f006d5dc294777de296df53f5eefdbf7593e
5
5
  SHA512:
6
- metadata.gz: e47b2ffe0e41caf3678f5ac613c47bfc3364c99f0dd210d8a438a3393cf87a792026c02464cf1638cf569709fb0aa66261153444d39ec2c30ca15f01fd46299b
7
- data.tar.gz: 8c8ad48b490c279dc94777e3b197a182e5cff626779dd40aa7377ba3406d5037879a76c42744a11d32a16d2a64270e3b93714e936f7e3033d6730c5e85760615
6
+ metadata.gz: e354fdb71a7273590f7b3995967826e48ee29212351e10a5907784b21d1a4fcab29580a4b13f7012fcc42a8444105473e1d486742c82f98958d10bc3caaa422f
7
+ data.tar.gz: e1a9612a2af44a9401ff659f7d013d22a133ca4d73ef188a8217968abb2340b8841d74c2fba8ad051247faa08c9357653afe67b563d459f71e806f7280c605a6
@@ -26,7 +26,7 @@ module Asciidoctor
26
26
 
27
27
  def make_preface(xml, sect)
28
28
  if xml.at("//foreword | //introduction | //acknowledgements | "\
29
- "//clause[@preface] | //executivesummary")
29
+ "//clause[@preface] | //executivesummary")
30
30
  preface = sect.add_previous_sibling("<preface/>").first
31
31
  f = xml.at("//foreword") and preface.add_child f.remove
32
32
  f = xml.at("//executivesummary") and preface.add_child f.remove
@@ -45,7 +45,7 @@ module Asciidoctor
45
45
 
46
46
  def executivesummary_parse(attrs, xml, node)
47
47
  xml.executivesummary **attr_code(attrs) do |xml_section|
48
- xml_section.title { |t| t << node.title || "Executive Summary" }
48
+ xml_section.title { |t| t << (node.title || "Executive Summary") }
49
49
  content = node.content
50
50
  xml_section << content
51
51
  end
@@ -67,7 +67,7 @@ module Asciidoctor
67
67
  def pdf_converter(node)
68
68
  return nil if node.attr("no-pdf")
69
69
 
70
- IsoDoc::Ribose::PdfConvert.new(html_extract_attributes(node))
70
+ IsoDoc::Ribose::PdfConvert.new(pdf_extract_attributes(node))
71
71
  end
72
72
 
73
73
  def doc_converter(node)
@@ -58,7 +58,7 @@
58
58
  <attribute name="alt"/>
59
59
  </optional>
60
60
  <optional>
61
- <attribute name="updatetype">
61
+ <attribute name="update-type">
62
62
  <data type="boolean"/>
63
63
  </attribute>
64
64
  </optional>
@@ -1796,6 +1796,20 @@
1796
1796
  <data type="ID"/>
1797
1797
  </attribute>
1798
1798
  </optional>
1799
+ <optional>
1800
+ <attribute name="language"/>
1801
+ </optional>
1802
+ <optional>
1803
+ <attribute name="script"/>
1804
+ </optional>
1805
+ <optional>
1806
+ <attribute name="tag"/>
1807
+ </optional>
1808
+ <optional>
1809
+ <attribute name="multilingual-rendering">
1810
+ <ref name="MultilingualRenderingType"/>
1811
+ </attribute>
1812
+ </optional>
1799
1813
  <oneOrMore>
1800
1814
  <ref name="preferred"/>
1801
1815
  </oneOrMore>
@@ -1814,9 +1828,6 @@
1814
1828
  <optional>
1815
1829
  <ref name="termsubject"/>
1816
1830
  </optional>
1817
- <optional>
1818
- <ref name="termusage"/>
1819
- </optional>
1820
1831
  <oneOrMore>
1821
1832
  <ref name="termdefinition"/>
1822
1833
  </oneOrMore>
@@ -1880,17 +1891,37 @@
1880
1891
  </attribute>
1881
1892
  </optional>
1882
1893
  <optional>
1883
- <attribute name="geographicArea"/>
1894
+ <attribute name="geographic-area"/>
1884
1895
  </optional>
1885
1896
  <choice>
1886
1897
  <ref name="expression_designation"/>
1887
1898
  <ref name="letter_symbol_designation"/>
1888
1899
  <ref name="graphical_symbol_designation"/>
1889
1900
  </choice>
1901
+ <optional>
1902
+ <ref name="fieldofapplication"/>
1903
+ </optional>
1904
+ <optional>
1905
+ <ref name="usageinfo"/>
1906
+ </optional>
1890
1907
  <zeroOrMore>
1891
1908
  <ref name="termsource"/>
1892
1909
  </zeroOrMore>
1893
1910
  </define>
1911
+ <define name="fieldofapplication">
1912
+ <element name="field-of-application">
1913
+ <oneOrMore>
1914
+ <ref name="PureTextElement"/>
1915
+ </oneOrMore>
1916
+ </element>
1917
+ </define>
1918
+ <define name="usageinfo">
1919
+ <element name="usage-info">
1920
+ <oneOrMore>
1921
+ <ref name="PureTextElement"/>
1922
+ </oneOrMore>
1923
+ </element>
1924
+ </define>
1894
1925
  <define name="letter_symbol_designation">
1895
1926
  <element name="letter-symbol">
1896
1927
  <optional>
@@ -1942,11 +1973,15 @@
1942
1973
  </optional>
1943
1974
  <element name="name">
1944
1975
  <zeroOrMore>
1945
- <ref name="PureTextElement"/>
1976
+ <choice>
1977
+ <ref name="PureTextElement"/>
1978
+ <ref name="stem"/>
1979
+ <ref name="index"/>
1980
+ </choice>
1946
1981
  </zeroOrMore>
1947
1982
  </element>
1948
1983
  <optional>
1949
- <element name="abbreviationType">
1984
+ <element name="abbreviation-type">
1950
1985
  <ref name="AbbreviationType"/>
1951
1986
  </element>
1952
1987
  </optional>
@@ -1956,7 +1991,7 @@
1956
1991
  </element>
1957
1992
  </optional>
1958
1993
  <optional>
1959
- <element name="grammarInfo">
1994
+ <element name="grammar">
1960
1995
  <ref name="Grammar"/>
1961
1996
  </element>
1962
1997
  </optional>
@@ -1983,6 +2018,11 @@
1983
2018
  <ref name="GrammarGender"/>
1984
2019
  </element>
1985
2020
  </zeroOrMore>
2021
+ <zeroOrMore>
2022
+ <element name="number">
2023
+ <ref name="GrammarNumber"/>
2024
+ </element>
2025
+ </zeroOrMore>
1986
2026
  <optional>
1987
2027
  <element name="isPreposition">
1988
2028
  <data type="boolean"/>
@@ -2014,7 +2054,7 @@
2014
2054
  </element>
2015
2055
  </optional>
2016
2056
  <zeroOrMore>
2017
- <element name="grammarvalue">
2057
+ <element name="grammar-value">
2018
2058
  <text/>
2019
2059
  </element>
2020
2060
  </zeroOrMore>
@@ -2027,6 +2067,13 @@
2027
2067
  <value>common</value>
2028
2068
  </choice>
2029
2069
  </define>
2070
+ <define name="GrammarNumber">
2071
+ <choice>
2072
+ <value>singular</value>
2073
+ <value>dual</value>
2074
+ <value>plural</value>
2075
+ </choice>
2076
+ </define>
2030
2077
  <define name="termdomain">
2031
2078
  <element name="domain">
2032
2079
  <oneOrMore>
@@ -2041,13 +2088,6 @@
2041
2088
  </oneOrMore>
2042
2089
  </element>
2043
2090
  </define>
2044
- <define name="termusage">
2045
- <element name="usageinfo">
2046
- <oneOrMore>
2047
- <ref name="BasicBlock"/>
2048
- </oneOrMore>
2049
- </element>
2050
- </define>
2051
2091
  <define name="termdefinition">
2052
2092
  <element name="definition">
2053
2093
  <choice>
@@ -2061,13 +2101,16 @@
2061
2101
  </element>
2062
2102
  </define>
2063
2103
  <define name="verbaldefinition">
2064
- <element name="verbaldefinition">
2104
+ <element name="verbal-definition">
2065
2105
  <oneOrMore>
2066
2106
  <choice>
2067
2107
  <ref name="paragraph"/>
2068
2108
  <ref name="dl"/>
2069
2109
  <ref name="ol"/>
2070
2110
  <ref name="ul"/>
2111
+ <ref name="table"/>
2112
+ <ref name="figure"/>
2113
+ <ref name="formula"/>
2071
2114
  </choice>
2072
2115
  </oneOrMore>
2073
2116
  <zeroOrMore>
@@ -2076,7 +2119,7 @@
2076
2119
  </element>
2077
2120
  </define>
2078
2121
  <define name="nonverbalrep">
2079
- <element name="nonverbalrepresentation">
2122
+ <element name="non-verbal-representation">
2080
2123
  <oneOrMore>
2081
2124
  <choice>
2082
2125
  <ref name="table"/>
@@ -75,6 +75,12 @@ code *, pre *, tt *, kbd *, samp * {
75
75
  font-family: {{monospacefont}} !important;
76
76
  font-variant-ligatures: none; }
77
77
 
78
+ p code, dt code, li code, label code, legend code, caption code, th code, td code,
79
+ p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
80
+ p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
81
+ p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
82
+ font-size: {{monospacefontsize}}; }
83
+
78
84
  article, aside, details, figcaption, figure,
79
85
  footer, header, hgroup, menu, nav, section {
80
86
  display: block; }
@@ -86,6 +92,9 @@ table {
86
92
  h1, h2, h3, h4, h5, h6 {
87
93
  font-family: {{headerfont}}; }
88
94
 
95
+ .h1, .h2, .h3, .h4, .h5, .h6 {
96
+ font-family: {{headerfont}}; }
97
+
89
98
  blockquote, q {
90
99
  quotes: none; }
91
100
  blockquote:before, blockquote:after, q:before, q:after {
@@ -537,37 +546,38 @@ h2,
537
546
  h3,
538
547
  h4,
539
548
  h5,
540
- h6 {
549
+ h6,
550
+ .h1, .h2, .h3, .h4, .h5, .h6 {
541
551
  font-family: {{headerfont}};
542
552
  color: #1661AD;
543
553
  font-weight: 300;
544
554
  margin-top: 1.6em;
545
555
  margin-bottom: 0.3em; }
546
556
 
547
- h1 {
557
+ h1, .h1 {
548
558
  font-size: 1.6em;
549
559
  text-transform: uppercase;
550
560
  margin-top: 2em; }
551
561
 
552
- h1#content {
562
+ h1#content, #content.h1 {
553
563
  margin-top: 2em; }
554
564
 
555
- h2 {
565
+ h2, .h2 {
556
566
  margin-top: 1.3em;
557
567
  font-size: 1.3em;
558
568
  font-weight: 400; }
559
569
 
560
- h3 {
570
+ h3, .h3 {
561
571
  margin-top: 1.1em;
562
572
  font-size: 1.1em;
563
573
  font-weight: 100; }
564
574
 
565
- .TermNum,
566
- .Terms,
567
- .AltTerms {
568
- color: #1661AD;
575
+ .TermNum {
569
576
  font-weight: 100; }
570
577
 
578
+ .TermNum, .Terms, .AltTerms {
579
+ color: #1661AD; }
580
+
571
581
  h2.TermNum {
572
582
  margin-bottom: 0; }
573
583
 
@@ -840,7 +850,7 @@ p {
840
850
  margin-top: 1em;
841
851
  margin-bottom: 1em; }
842
852
 
843
- h2 p {
853
+ h2 p, .h2 p {
844
854
  display: inline; }
845
855
 
846
856
  /*
@@ -970,7 +980,8 @@ To top button
970
980
  h1,
971
981
  h2,
972
982
  h3,
973
- h4 {
983
+ h4,
984
+ .h1, .h2, .h3, .h4 {
974
985
  page-break-after: avoid;
975
986
  margin-top: 1.2em; }
976
987
  .note,
@@ -996,12 +1007,12 @@ To top button
996
1007
  h1.content {
997
1008
  margin-top: 2em;
998
1009
  line-height: 2.5em; }
999
- h1 {
1010
+ h1, .h1 {
1000
1011
  font-size: 1.5em;
1001
1012
  line-height: 1.5; }
1002
- h2 {
1013
+ h2, .h2 {
1003
1014
  font-size: 1.2em; }
1004
- h3 {
1015
+ h3, .h3 {
1005
1016
  font-size: 1em; }
1006
1017
  .Note {
1007
1018
  background-color: #fff495;
@@ -202,7 +202,8 @@ h2,
202
202
  h3,
203
203
  h4,
204
204
  h5,
205
- h6 {
205
+ h6,
206
+ .h1, .h2, .h3, .h4, .h5, .h6 {
206
207
  font-family: $headerfont;
207
208
  color: #1661AD;
208
209
  font-weight: 300;
@@ -210,35 +211,36 @@ h6 {
210
211
  margin-bottom: 0.3em;
211
212
  }
212
213
 
213
- h1 {
214
+ h1, .h1 {
214
215
  font-size: 1.6em;
215
216
  text-transform: uppercase;
216
217
  margin-top: 2em;
217
218
  }
218
219
 
219
- h1#content {
220
+ h1#content, .h1#content {
220
221
  margin-top: 2em;
221
222
  }
222
223
 
223
- h2 {
224
+ h2, .h2 {
224
225
  margin-top: 1.3em;
225
226
  font-size: 1.3em;
226
227
  font-weight: 400;
227
228
  }
228
229
 
229
- h3 {
230
+ h3, .h3 {
230
231
  margin-top: 1.1em;
231
232
  font-size: 1.1em;
232
233
  font-weight: 100;
233
234
  }
234
235
 
235
- .TermNum,
236
- .Terms,
237
- .AltTerms {
238
- color: #1661AD;
236
+ .TermNum {
239
237
  font-weight: 100;
240
238
  }
241
239
 
240
+ .TermNum, .Terms, .AltTerms {
241
+ color: #1661AD;
242
+ }
243
+
242
244
  h2.TermNum {
243
245
  margin-bottom: 0;
244
246
  }
@@ -499,7 +501,7 @@ p {
499
501
  margin-bottom: 1em;
500
502
  }
501
503
 
502
- h2 p {
504
+ h2 p, .h2 p {
503
505
  display: inline;
504
506
  }
505
507
 
@@ -672,7 +674,8 @@ To top button
672
674
  h1,
673
675
  h2,
674
676
  h3,
675
- h4 {
677
+ h4,
678
+ .h1, .h2, .h3, .h4 {
676
679
  page-break-after: avoid;
677
680
  margin-top: 1.2em;
678
681
  }
@@ -716,16 +719,16 @@ To top button
716
719
  line-height: 2.5em;
717
720
  }
718
721
 
719
- h1 {
722
+ h1, .h1 {
720
723
  font-size: 1.5em;
721
724
  line-height: 1.5;
722
725
  }
723
726
 
724
- h2 {
727
+ h2, .h2 {
725
728
  font-size: 1.2em
726
729
  }
727
730
 
728
- h3 {
731
+ h3, .h3 {
729
732
  font-size: 1em;
730
733
  }
731
734
 
@@ -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>
@@ -370,7 +370,7 @@ span.blackgraphtx {
370
370
  div.figure, p.figure {
371
371
  text-align: center; }
372
372
 
373
- h1 {
373
+ h1, .h1 {
374
374
  mso-style-priority: 1;
375
375
  mso-style-unhide: no;
376
376
  mso-style-qformat: yes;
@@ -385,8 +385,6 @@ h1 {
385
385
  line-height: 13.5pt;
386
386
  mso-pagination: widow-orphan;
387
387
  page-break-after: avoid;
388
- mso-outline-level: 1;
389
- mso-list: l1 level1 lfo6;
390
388
  mso-hyphenate: none;
391
389
  tab-stops: 20.0pt list 21.6pt left 28.0pt;
392
390
  font-size: 13.0pt;
@@ -400,6 +398,10 @@ h1 {
400
398
  mso-fareast-language: JA;
401
399
  mso-bidi-font-weight: normal; }
402
400
 
401
+ h1 {
402
+ mso-outline-level: 1;
403
+ mso-list: l1 level1 lfo6; }
404
+
403
405
  h1.Annex {
404
406
  mso-style-priority: 1;
405
407
  mso-style-unhide: no;
@@ -459,7 +461,7 @@ h1.Annex {
459
461
  mso-fareast-language: JA;
460
462
  mso-bidi-font-weight: normal; }
461
463
 
462
- h2 {
464
+ h2, .h2 {
463
465
  mso-style-priority: 2;
464
466
  mso-style-unhide: no;
465
467
  mso-style-qformat: yes;
@@ -475,8 +477,6 @@ h2 {
475
477
  line-height: 12.5pt;
476
478
  mso-pagination: widow-orphan;
477
479
  page-break-after: avoid;
478
- mso-outline-level: 2;
479
- mso-list: l1 level2 lfo6;
480
480
  mso-hyphenate: none;
481
481
  tab-stops: 27.0pt 35.0pt;
482
482
  font-size: {{normalfontsize}};
@@ -489,7 +489,11 @@ h2 {
489
489
  mso-fareast-language: JA;
490
490
  mso-bidi-font-weight: normal; }
491
491
 
492
- h3 {
492
+ h2 {
493
+ mso-outline-level: 2;
494
+ mso-list: l1 level2 lfo6; }
495
+
496
+ h3, .h3 {
493
497
  mso-style-priority: 3;
494
498
  mso-style-unhide: no;
495
499
  mso-style-qformat: yes;
@@ -505,8 +509,6 @@ h3 {
505
509
  line-height: {{normalfontsize}};
506
510
  mso-pagination: widow-orphan;
507
511
  page-break-after: avoid;
508
- mso-outline-level: 3;
509
- mso-list: l1 level3 lfo6;
510
512
  mso-hyphenate: none;
511
513
  tab-stops: list 36.0pt left 44.0pt;
512
514
  font-size: {{normalfontsize}};
@@ -518,7 +520,11 @@ h3 {
518
520
  mso-fareast-language: JA;
519
521
  mso-bidi-font-weight: normal; }
520
522
 
521
- h4 {
523
+ h3 {
524
+ mso-outline-level: 3;
525
+ mso-list: l1 level3 lfo6; }
526
+
527
+ h4, .h4 {
522
528
  mso-style-priority: 4;
523
529
  mso-style-unhide: no;
524
530
  mso-style-qformat: yes;
@@ -534,8 +540,6 @@ h4 {
534
540
  line-height: {{normalfontsize}};
535
541
  mso-pagination: widow-orphan;
536
542
  page-break-after: avoid;
537
- mso-outline-level: 4;
538
- mso-list: l1 level4 lfo6;
539
543
  mso-hyphenate: none;
540
544
  tab-stops: 51.05pt 57.0pt 68.0pt;
541
545
  font-size: {{normalfontsize}};
@@ -547,7 +551,11 @@ h4 {
547
551
  mso-fareast-language: JA;
548
552
  mso-bidi-font-weight: normal; }
549
553
 
550
- h5 {
554
+ h4 {
555
+ mso-outline-level: 4;
556
+ mso-list: l1 level4 lfo6; }
557
+
558
+ h5, .h5 {
551
559
  mso-style-priority: 5;
552
560
  mso-style-unhide: no;
553
561
  mso-style-qformat: yes;
@@ -563,8 +571,6 @@ h5 {
563
571
  line-height: {{normalfontsize}};
564
572
  mso-pagination: widow-orphan;
565
573
  page-break-after: avoid;
566
- mso-outline-level: 5;
567
- mso-list: l1 level5 lfo6;
568
574
  mso-hyphenate: none;
569
575
  tab-stops: 51.05pt list 54.0pt;
570
576
  font-size: {{normalfontsize}};
@@ -576,7 +582,11 @@ h5 {
576
582
  mso-fareast-language: JA;
577
583
  mso-bidi-font-weight: normal; }
578
584
 
579
- h6 {
585
+ h5 {
586
+ mso-outline-level: 5;
587
+ mso-list: l1 level5 lfo6; }
588
+
589
+ h6, .h6 {
580
590
  mso-style-priority: 6;
581
591
  mso-style-unhide: no;
582
592
  mso-style-qformat: yes;
@@ -592,8 +602,6 @@ h6 {
592
602
  line-height: {{normalfontsize}};
593
603
  mso-pagination: widow-orphan;
594
604
  page-break-after: avoid;
595
- mso-outline-level: 6;
596
- mso-list: l1 level6 lfo6;
597
605
  mso-hyphenate: none;
598
606
  tab-stops: 51.05pt list 72.0pt;
599
607
  font-size: {{normalfontsize}};
@@ -605,6 +613,10 @@ h6 {
605
613
  mso-fareast-language: JA;
606
614
  mso-bidi-font-weight: normal; }
607
615
 
616
+ h6 {
617
+ mso-outline-level: 6;
618
+ mso-list: l1 level6 lfo6; }
619
+
608
620
  p.MsoToc1, li.MsoToc1, div.MsoToc1 {
609
621
  mso-style-priority: 39;
610
622
  mso-style-unhide: no;
@@ -340,7 +340,7 @@ div.figure, p.figure
340
340
 
341
341
 
342
342
 
343
- h1
343
+ h1, .h1
344
344
  {mso-style-priority:1;
345
345
  mso-style-unhide:no;
346
346
  mso-style-qformat:yes;
@@ -355,8 +355,6 @@ h1
355
355
  line-height:13.5pt;
356
356
  mso-pagination:widow-orphan;
357
357
  page-break-after:avoid;
358
- mso-outline-level:1;
359
- mso-list:l1 level1 lfo6;
360
358
  mso-hyphenate:none;
361
359
  tab-stops:20.0pt list 21.6pt left 28.0pt;
362
360
  font-size:13.0pt;
@@ -369,6 +367,10 @@ h1
369
367
  mso-ansi-language:EN-GB;
370
368
  mso-fareast-language:JA;
371
369
  mso-bidi-font-weight:normal;}
370
+ h1 {
371
+ mso-outline-level:1;
372
+ mso-list:l1 level1 lfo6;
373
+ }
372
374
  h1.Annex
373
375
  {mso-style-priority:1;
374
376
  mso-style-unhide:no;
@@ -426,7 +428,7 @@ h1.Annex
426
428
  mso-ansi-language:EN-GB;
427
429
  mso-fareast-language:JA;
428
430
  mso-bidi-font-weight:normal;}
429
- h2
431
+ h2, .h2
430
432
  {mso-style-priority:2;
431
433
  mso-style-unhide:no;
432
434
  mso-style-qformat:yes;
@@ -442,8 +444,6 @@ h2
442
444
  line-height:12.5pt;
443
445
  mso-pagination:widow-orphan;
444
446
  page-break-after:avoid;
445
- mso-outline-level:2;
446
- mso-list:l1 level2 lfo6;
447
447
  mso-hyphenate:none;
448
448
  tab-stops:27.0pt 35.0pt;
449
449
  font-size:$normalfontsize;
@@ -455,7 +455,11 @@ h2
455
455
  mso-ansi-language:EN-GB;
456
456
  mso-fareast-language:JA;
457
457
  mso-bidi-font-weight:normal;}
458
- h3
458
+ h2 {
459
+ mso-outline-level:2;
460
+ mso-list:l1 level2 lfo6;
461
+ }
462
+ h3, .h3
459
463
  {mso-style-priority:3;
460
464
  mso-style-unhide:no;
461
465
  mso-style-qformat:yes;
@@ -471,8 +475,6 @@ h3
471
475
  line-height:$normalfontsize;
472
476
  mso-pagination:widow-orphan;
473
477
  page-break-after:avoid;
474
- mso-outline-level:3;
475
- mso-list:l1 level3 lfo6;
476
478
  mso-hyphenate:none;
477
479
  tab-stops:list 36.0pt left 44.0pt;
478
480
  font-size:$normalfontsize;
@@ -483,7 +485,11 @@ h3
483
485
  mso-ansi-language:EN-GB;
484
486
  mso-fareast-language:JA;
485
487
  mso-bidi-font-weight:normal;}
486
- h4
488
+ h3 {
489
+ mso-outline-level:3;
490
+ mso-list:l1 level3 lfo6;
491
+ }
492
+ h4, .h4
487
493
  {mso-style-priority:4;
488
494
  mso-style-unhide:no;
489
495
  mso-style-qformat:yes;
@@ -499,8 +505,6 @@ h4
499
505
  line-height:$normalfontsize;
500
506
  mso-pagination:widow-orphan;
501
507
  page-break-after:avoid;
502
- mso-outline-level:4;
503
- mso-list:l1 level4 lfo6;
504
508
  mso-hyphenate:none;
505
509
  tab-stops:51.05pt 57.0pt 68.0pt;
506
510
  font-size:$normalfontsize;
@@ -511,7 +515,11 @@ h4
511
515
  mso-ansi-language:EN-GB;
512
516
  mso-fareast-language:JA;
513
517
  mso-bidi-font-weight:normal;}
514
- h5
518
+ h4 {
519
+ mso-outline-level:4;
520
+ mso-list:l1 level4 lfo6;
521
+ }
522
+ h5, .h5
515
523
  {mso-style-priority:5;
516
524
  mso-style-unhide:no;
517
525
  mso-style-qformat:yes;
@@ -527,8 +535,6 @@ h5
527
535
  line-height:$normalfontsize;
528
536
  mso-pagination:widow-orphan;
529
537
  page-break-after:avoid;
530
- mso-outline-level:5;
531
- mso-list:l1 level5 lfo6;
532
538
  mso-hyphenate:none;
533
539
  tab-stops:51.05pt list 54.0pt;
534
540
  font-size:$normalfontsize;
@@ -539,7 +545,11 @@ h5
539
545
  mso-ansi-language:EN-GB;
540
546
  mso-fareast-language:JA;
541
547
  mso-bidi-font-weight:normal;}
542
- h6
548
+ h5 {
549
+ mso-outline-level:5;
550
+ mso-list:l1 level5 lfo6;
551
+ }
552
+ h6, .h6
543
553
  {mso-style-priority:6;
544
554
  mso-style-unhide:no;
545
555
  mso-style-qformat:yes;
@@ -555,8 +565,6 @@ h6
555
565
  line-height:$normalfontsize;
556
566
  mso-pagination:widow-orphan;
557
567
  page-break-after:avoid;
558
- mso-outline-level:6;
559
- mso-list:l1 level6 lfo6;
560
568
  mso-hyphenate:none;
561
569
  tab-stops:51.05pt list 72.0pt;
562
570
  font-size:$normalfontsize;
@@ -567,6 +575,10 @@ h6
567
575
  mso-ansi-language:EN-GB;
568
576
  mso-fareast-language:JA;
569
577
  mso-bidi-font-weight:normal;}
578
+ h6 {
579
+ mso-outline-level:6;
580
+ mso-list:l1 level6 lfo6;
581
+ }
570
582
  p.MsoToc1, li.MsoToc1, div.MsoToc1
571
583
  {mso-style-priority:39;
572
584
  mso-style-unhide:no;