metanorma-un 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/macos.yml +39 -0
  3. data/.github/workflows/ubuntu.yml +39 -0
  4. data/.github/workflows/windows.yml +42 -0
  5. data/.gitignore +1 -0
  6. data/.hound.yml +3 -0
  7. data/.rubocop.yml +10 -0
  8. data/CODE_OF_CONDUCT.md +74 -0
  9. data/Gemfile +11 -0
  10. data/LICENSE +25 -0
  11. data/README.adoc +141 -0
  12. data/Rakefile +6 -0
  13. data/bin/console +14 -0
  14. data/bin/rspec +17 -0
  15. data/bin/setup +8 -0
  16. data/lib/asciidoctor/un.rb +7 -0
  17. data/lib/asciidoctor/un/basicdoc.rng +1059 -0
  18. data/lib/asciidoctor/un/biblio.rng +1142 -0
  19. data/lib/asciidoctor/un/boilerplate.xml +57 -0
  20. data/lib/asciidoctor/un/converter.rb +209 -0
  21. data/lib/asciidoctor/un/isodoc.rng +1028 -0
  22. data/lib/asciidoctor/un/reqt.rng +171 -0
  23. data/lib/asciidoctor/un/un.rng +242 -0
  24. data/lib/asciidoctor/un/validate.rb +22 -0
  25. data/lib/isodoc/un.rb +10 -0
  26. data/lib/isodoc/un/base_convert.rb +227 -0
  27. data/lib/isodoc/un/html/header.html +225 -0
  28. data/lib/isodoc/un/html/html_unece_intro.html +15 -0
  29. data/lib/isodoc/un/html/html_unece_plenary_titlepage.html +100 -0
  30. data/lib/isodoc/un/html/html_unece_titlepage.html +81 -0
  31. data/lib/isodoc/un/html/htmlstyle.scss +1174 -0
  32. data/lib/isodoc/un/html/logo.jpg +0 -0
  33. data/lib/isodoc/un/html/scripts.html +84 -0
  34. data/lib/isodoc/un/html/scripts.pdf.html +72 -0
  35. data/lib/isodoc/un/html/unece.scss +801 -0
  36. data/lib/isodoc/un/html/word_unece_intro.html +15 -0
  37. data/lib/isodoc/un/html/word_unece_plenary_titlepage.html +160 -0
  38. data/lib/isodoc/un/html/word_unece_titlepage.html +30 -0
  39. data/lib/isodoc/un/html/wordstyle.scss +1141 -0
  40. data/lib/isodoc/un/html_convert.rb +121 -0
  41. data/lib/isodoc/un/metadata.rb +115 -0
  42. data/lib/isodoc/un/pdf_convert.rb +133 -0
  43. data/lib/isodoc/un/word_convert.rb +180 -0
  44. data/lib/metanorma-un.rb +8 -0
  45. data/lib/metanorma/un.rb +12 -0
  46. data/lib/metanorma/un/UN_emblem_blue.svg +193 -0
  47. data/lib/metanorma/un/input.rb +18 -0
  48. data/lib/metanorma/un/processor.rb +43 -0
  49. data/lib/metanorma/un/version.rb +5 -0
  50. data/metanorma-unece.gemspec +48 -0
  51. metadata +334 -0
Binary file
@@ -0,0 +1,84 @@
1
+ <script>
2
+ //TOC generation
3
+ $('#toc').toc({
4
+ 'selectors': toclevel(), //elements to use as headings
5
+ 'container': 'main', //element to find all selectors in
6
+ 'smoothScrolling': true, //enable or disable smooth scrolling on click
7
+ 'prefix': 'toc', //prefix for anchor tags and class names
8
+ 'onHighlight': function(el) {}, //called when a new section is highlighted
9
+ 'highlightOnScroll': true, //add class to heading that is currently in focus
10
+ 'highlightOffset': 100, //offset to trigger the next headline
11
+ 'anchorName': function(i, heading, prefix) { //custom function for anchor name
12
+ return prefix+i;
13
+ },
14
+ 'headerText': function(i, heading, $heading) { //custom function building the header-item text
15
+ return $heading.text();
16
+ },
17
+ 'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
18
+ return $heading[0].tagName.toLowerCase();
19
+ }
20
+ });
21
+
22
+ </script>
23
+
24
+ <script>
25
+ //TOC toggle animation
26
+ $('#toggle').on('click', function(){
27
+ if( $('nav').is(':visible') ) {
28
+ $('nav').animate({ 'left': '-353px' }, 'slow', function(){
29
+ $('nav').hide();
30
+ });
31
+ $('.container').animate({ 'padding-left': '31px' }, 'slow');
32
+ }
33
+ else {
34
+ $('nav').show();
35
+ $('nav').animate({ 'left': '0px' }, 'slow');
36
+ $('.container').animate({ 'padding-left': '360px' }, 'slow');
37
+ }
38
+ });
39
+ </script>
40
+
41
+ <script>
42
+ // Scroll to top button
43
+ window.onscroll = function() {scrollFunction()};
44
+
45
+ function scrollFunction() {
46
+ if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
47
+ document.getElementById("myBtn").style.display = "block";
48
+ } else {
49
+ document.getElementById("myBtn").style.display = "none";
50
+ }
51
+ }
52
+
53
+ // When the user clicks on the button, scroll to the top of the document
54
+ function topFunction() {
55
+ document.body.scrollTop = 0;
56
+ document.documentElement.scrollTop = 0;
57
+ }
58
+ </script>
59
+
60
+ <script>
61
+ /**
62
+ * AnchorJS - v4.1.0 - 2017-09-20
63
+ * https://github.com/bryanbraun/anchorjs
64
+ * Copyright (c) 2017 Bryan Braun; Licensed MIT
65
+ */
66
+ !function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function e(A){A.icon=A.hasOwnProperty("icon")?A.icon:"",A.visible=A.hasOwnProperty("visible")?A.visible:"hover",A.placement=A.hasOwnProperty("placement")?A.placement:"right",A.ariaLabel=A.hasOwnProperty("ariaLabel")?A.ariaLabel:"Anchor",A.class=A.hasOwnProperty("class")?A.class:"",A.truncate=A.hasOwnProperty("truncate")?Math.floor(A.truncate):64}function t(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new Error("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}function i(){if(null===document.head.querySelector("style.anchorjs")){var A,e=document.createElement("style");e.className="anchorjs",e.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"], style'))?document.head.appendChild(e):document.head.insertBefore(e,A),e.sheet.insertRule(" .anchorjs-link { opacity: 0; text-decoration: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }",e.sheet.cssRules.length),e.sheet.insertRule(" *:hover > .anchorjs-link, .anchorjs-link:focus { opacity: 1; }",e.sheet.cssRules.length),e.sheet.insertRule(" [data-anchorjs-icon]::after { content: attr(data-anchorjs-icon); }",e.sheet.cssRules.length),e.sheet.insertRule(' @font-face { font-family: "anchorjs-icons"; src: url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype"); }',e.sheet.cssRules.length)}}this.options=A||{},this.elements=[],e(this.options),this.isTouchDevice=function(){return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var n,o,s,a,r,c,h,l,u,d,f,p=[];if(e(this.options),"touch"===(f=this.options.visible)&&(f=this.isTouchDevice()?"always":"hover"),A||(A="h2, h3, h4, h5, h6"),0===(n=t(A)).length)return this;for(i(),o=document.querySelectorAll("[id]"),s=[].map.call(o,function(A){return A.id}),r=0;r<n.length;r++)if(this.hasAnchorJSLink(n[r]))p.push(r);else{if(n[r].hasAttribute("id"))a=n[r].getAttribute("id");else if(n[r].hasAttribute("data-anchor-id"))a=n[r].getAttribute("data-anchor-id");else{u=l=this.urlify(n[r].textContent),h=0;do{void 0!==c&&(u=l+"-"+h),c=s.indexOf(u),h+=1}while(-1!==c);c=void 0,s.push(u),n[r].setAttribute("id",u),a=u}a.replace(/-/g," "),(d=document.createElement("a")).className="anchorjs-link "+this.options.class,d.href="#"+a,d.setAttribute("aria-label",this.options.ariaLabel),d.setAttribute("data-anchorjs-icon",this.options.icon),"always"===f&&(d.style.opacity="1"),""===this.options.icon&&(d.style.font="1em/1 anchorjs-icons","left"===this.options.placement&&(d.style.lineHeight="inherit")),"left"===this.options.placement?(d.style.position="absolute",d.style.marginLeft="-1em",d.style.paddingRight="0.5em",n[r].insertBefore(d,n[r].firstChild)):(d.style.paddingLeft="0.375em",n[r].appendChild(d))}for(r=0;r<p.length;r++)n.splice(p[r]-r,1);return this.elements=this.elements.concat(n),this},this.remove=function(A){for(var e,i,n=t(A),o=0;o<n.length;o++)(i=n[o].querySelector(".anchorjs-link"))&&(-1!==(e=this.elements.indexOf(n[o]))&&this.elements.splice(e,1),n[o].removeChild(i));return this},this.removeAll=function(){this.remove(this.elements)},this.urlify=function(A){var t=/[& +$,:;=?@"#{}|^~[`%!'<>\]\.\/\(\)\*\\]/g;return this.options.truncate||e(this.options),A.trim().replace(/\'/gi,"").replace(t,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&(" "+A.firstChild.className+" ").indexOf(" anchorjs-link ")>-1,t=A.lastChild&&(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ")>-1;return e||t||!1}}}); </script>
67
+
68
+ <script>
69
+ /*
70
+ $('document').ready(function() {
71
+ $('main [id^=toc]').each(function ()
72
+ {
73
+ var currentToc = $(this);
74
+ var url = window.location.href;
75
+ currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
76
+ });
77
+ });
78
+ */
79
+ anchors.options = {
80
+ placement: 'left'
81
+ };
82
+ anchors.add('h1, h2, h3, h4');
83
+ </script>
84
+
@@ -0,0 +1,72 @@
1
+ <script>
2
+ //TOC generation
3
+ $('#toc').toc({
4
+ 'selectors': toclevel(), //elements to use as headings
5
+ 'container': 'main', //element to find all selectors in
6
+ 'smoothScrolling': true, //enable or disable smooth scrolling on click
7
+ 'prefix': 'toc', //prefix for anchor tags and class names
8
+ 'onHighlight': function(el) {}, //called when a new section is highlighted
9
+ 'highlightOnScroll': false, //add class to heading that is currently in focus
10
+ 'highlightOffset': 100, //offset to trigger the next headline
11
+ 'anchorName': function(i, heading, prefix) { //custom function for anchor name
12
+ return prefix+i;
13
+ },
14
+ 'headerText': function(i, heading, $heading) { //custom function building the header-item text
15
+ return $heading.text();
16
+ },
17
+ 'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
18
+ return $heading[0].tagName.toLowerCase();
19
+ }
20
+ });
21
+
22
+ </script>
23
+
24
+ <script>
25
+ //TOC toggle animation
26
+ $('#toggle').on('click', function(){
27
+ if( $('nav').is(':visible') ) {
28
+ $('nav').animate({ 'left': '-353px' }, 'slow', function(){
29
+ $('nav').hide();
30
+ });
31
+ $('.container').animate({ 'padding-left': '31px' }, 'slow');
32
+ }
33
+ else {
34
+ $('nav').show();
35
+ $('nav').animate({ 'left': '0px' }, 'slow');
36
+ $('.container').animate({ 'padding-left': '360px' }, 'slow');
37
+ }
38
+ });
39
+ </script>
40
+
41
+ <script>
42
+ // Scroll to top button
43
+ window.onscroll = function() {scrollFunction()};
44
+
45
+ function scrollFunction() {
46
+ if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
47
+ document.getElementById("myBtn").style.display = "block";
48
+ } else {
49
+ document.getElementById("myBtn").style.display = "none";
50
+ }
51
+ }
52
+
53
+ // When the user clicks on the button, scroll to the top of the document
54
+ function topFunction() {
55
+ document.body.scrollTop = 0;
56
+ document.documentElement.scrollTop = 0;
57
+ }
58
+ </script>
59
+
60
+ <script>
61
+ /*
62
+ $(document).ready(function() {
63
+ $('[id^=toc]').each(function ()
64
+ {
65
+ var currentToc = $(this);
66
+ var url = window.location.href;
67
+ currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
68
+ });
69
+ });
70
+ */
71
+ </script>
72
+
@@ -0,0 +1,801 @@
1
+
2
+ /* http://www.un.org/styleguide/ color */
3
+ $un-blue: #00ADEF;
4
+
5
+ /* http://www.un.org/styleguide/ label text */
6
+ $un-label: #4D4D4D;
7
+
8
+ /* http://www.un.org/styleguide/ brand-bar */
9
+ $un-gray: #f2f2f2;
10
+
11
+ $un-black: #000;
12
+
13
+ /* http://www.un.org/styleguide/ p */
14
+ $un-text: #333;
15
+
16
+ /* RT: I made this up */
17
+ $un-link: #00ADEF;
18
+
19
+ p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode, pre
20
+ {mso-style-unhide:no;
21
+ mso-style-qformat:yes;
22
+ mso-style-parent:"";
23
+ margin-top:6.0pt;
24
+ margin-right:0cm;
25
+ margin-bottom:6.0pt;
26
+ margin-left:0cm;
27
+ text-align:left;
28
+ mso-pagination:widow-orphan;
29
+ tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
30
+ font-size:10.0pt;
31
+ font-family:$monospacefont;
32
+ mso-fareast-font-family:Calibri;
33
+ mso-bidi-font-family:"Courier New";
34
+ mso-ansi-language:EN-GB;}
35
+ p.pseudocode, li.pseudocode, div.pseudocode
36
+ {mso-style-unhide:no;
37
+ mso-style-qformat:yes;
38
+ mso-style-parent:"";
39
+ margin-top:6.0pt;
40
+ margin-right:0cm;
41
+ margin-bottom:6.0pt;
42
+ margin-left:0cm;
43
+ text-align:left;
44
+ mso-pagination:widow-orphan;
45
+ tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
46
+ font-size:10.5pt;
47
+ font-family:$bodyfont;
48
+ mso-fareast-font-family:Calibri;
49
+ mso-bidi-font-family:"Courier New";
50
+ mso-ansi-language:EN-GB;}
51
+ p.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, div.NormRef
52
+ {mso-style-unhide:no;
53
+ mso-style-qformat:yes;
54
+ mso-style-parent:"";
55
+ margin-top:0cm;
56
+ margin-right:0cm;
57
+ margin-bottom:12.0pt;
58
+ margin-left:33.15pt;
59
+ text-indent:-33.15pt;
60
+ tab-stops: 33.15pt;
61
+ line-height:12.0pt;
62
+ mso-pagination:widow-orphan;
63
+ font-size:10.5pt;
64
+ font-weight:normal;
65
+ font-family:$bodyfont;
66
+ mso-fareast-font-family:$bodyfont;
67
+ mso-bidi-font-family:$bodyfont;
68
+ mso-ansi-language:EN-GB;}
69
+ p.FigureTitle
70
+ {mso-style-unhide:no;
71
+ mso-style-qformat:yes;
72
+ mso-style-parent:"";
73
+ margin-top:0cm;
74
+ margin-right:0cm;
75
+ margin-bottom:6.0pt;
76
+ margin-left:0cm;
77
+ text-align:center;
78
+ line-height:12.0pt;
79
+ page-break-before:avoid;
80
+ mso-pagination:widow-orphan;
81
+ tab-stops:20.15pt;
82
+ font-size:11.0pt;
83
+ font-weight:bold;
84
+ font-family:$bodyfont;
85
+ mso-fareast-font-family:$bodyfont;
86
+ mso-bidi-font-family:$bodyfont;
87
+ mso-ansi-language:EN-GB;}
88
+ p.SourceTitle
89
+ {mso-style-unhide:no;
90
+ mso-style-qformat:yes;
91
+ mso-style-parent:"";
92
+ margin-top:0cm;
93
+ margin-right:0cm;
94
+ margin-bottom:6.0pt;
95
+ margin-left:0cm;
96
+ text-align:center;
97
+ line-height:12.0pt;
98
+ page-break-before:avoid;
99
+ mso-pagination:widow-orphan;
100
+ tab-stops:20.15pt;
101
+ font-size:11.0pt;
102
+ font-weight:bold;
103
+ font-family:$bodyfont;
104
+ mso-fareast-font-family:$bodyfont;
105
+ mso-bidi-font-family:$bodyfont;
106
+ mso-ansi-language:EN-GB;}
107
+ p.AdmonitionTitle, p.RecommendationTitle
108
+ {mso-style-unhide:no;
109
+ mso-style-qformat:yes;
110
+ mso-style-parent:"";
111
+ margin-top:0cm;
112
+ margin-right:0cm;
113
+ margin-bottom:6.0pt;
114
+ margin-left:0cm;
115
+ text-align:center;
116
+ line-height:12.0pt;
117
+ page-break-after:avoid;
118
+ mso-pagination:widow-orphan;
119
+ tab-stops:20.15pt;
120
+ font-size:11.0pt;
121
+ font-weight:bold;
122
+ font-family:$bodyfont;
123
+ mso-fareast-font-family:$bodyfont;
124
+ mso-bidi-font-family:$bodyfont;
125
+ mso-ansi-language:EN-GB;}
126
+ p.TableTitle
127
+ {mso-style-unhide:no;
128
+ mso-style-qformat:yes;
129
+ mso-style-parent:"";
130
+ margin-top:0cm;
131
+ margin-right:0cm;
132
+ margin-bottom:6.0pt;
133
+ margin-left:0cm;
134
+ text-align:center;
135
+ page-break-after:avoid;
136
+ line-height:12.0pt;
137
+ mso-pagination:widow-orphan;
138
+ tab-stops:20.15pt;
139
+ font-size:11.0pt;
140
+ font-family:$bodyfont;
141
+ mso-fareast-font-family:$bodyfont;
142
+ mso-bidi-font-family:$bodyfont;
143
+ mso-ansi-language:EN-GB;}
144
+ p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote
145
+ {mso-style-unhide:no;
146
+ mso-style-qformat:yes;
147
+ mso-style-parent:"";
148
+ margin-top:0cm;
149
+ margin-right:0cm;
150
+ margin-bottom:12.0pt;
151
+ margin-left:0cm;
152
+ text-align:justify;
153
+ line-height:12.0pt;
154
+ mso-pagination:widow-orphan;
155
+ tab-stops:20.15pt;
156
+ font-size:10.0pt;
157
+ mso-bidi-font-size:11.0pt;
158
+ font-family:$bodyfont;
159
+ font-size:10.0pt;
160
+ mso-fareast-font-family:$bodyfont;
161
+ mso-bidi-font-family:$bodyfont;
162
+ mso-ansi-language:EN-GB;}
163
+ p.ANNEX, li.ANNEX, div.ANNEX
164
+ {mso-style-name:ANNEX;
165
+ mso-style-priority:10;
166
+ mso-style-unhide:no;
167
+ mso-style-next:Normal;
168
+ margin-top:0cm;
169
+ margin-right:0cm;
170
+ margin-bottom:24.0pt;
171
+ margin-left:0cm;
172
+ text-align:center;
173
+ text-indent:0cm;
174
+ line-height:15.5pt;
175
+ mso-line-height-rule:exactly;
176
+ page-break-before:always;
177
+ mso-pagination:widow-orphan;
178
+ page-break-after:avoid;
179
+ mso-outline-level:1;
180
+ mso-list:l0 level1 lfo12;
181
+ tab-stops:20.15pt;
182
+ font-size:14.0pt;
183
+ mso-bidi-font-size:11.0pt;
184
+ font-family:$headerfont;
185
+ mso-fareast-font-family:$headerfont;
186
+ mso-bidi-font-family:$headerfont;
187
+ mso-ansi-language:EN-GB;
188
+ mso-fareast-language:JA;
189
+ font-weight:bold;
190
+ mso-bidi-font-weight:normal;}
191
+ p.BiblioTitle, li.BiblioTitle, div.BiblioTitle
192
+ {mso-style-name:"Biblio Title";
193
+ mso-style-noshow:yes;
194
+ mso-style-unhide:no;
195
+ margin-top:0cm;
196
+ margin-right:0cm;
197
+ margin-bottom:15.5pt;
198
+ margin-left:0cm;
199
+ text-align:center;
200
+ line-height:15.5pt;
201
+ mso-pagination:widow-orphan;
202
+ mso-outline-level:1;
203
+ tab-stops:20.15pt;
204
+ font-size:14.0pt;
205
+ mso-bidi-font-size:11.0pt;
206
+ font-family:$headerfont;
207
+ mso-fareast-font-family:$headerfont;
208
+ mso-bidi-font-family:$headerfont;
209
+ mso-ansi-language:EN-GB;
210
+ font-weight:bold;
211
+ mso-bidi-font-weight:normal;}
212
+ p.Definition, li.Definition, div.Definition
213
+ {mso-style-name:Definition;
214
+ mso-style-priority:9;
215
+ mso-style-unhide:no;
216
+ margin-top:0cm;
217
+ margin-right:0cm;
218
+ margin-bottom:12.0pt;
219
+ margin-left:0cm;
220
+ text-align:justify;
221
+ line-height:12.0pt;
222
+ mso-pagination:widow-orphan;
223
+ tab-stops:20.15pt;
224
+ font-size:11.0pt;
225
+ font-family:$bodyfont;
226
+ mso-fareast-font-family:$bodyfont;
227
+ mso-bidi-font-family:$bodyfont;
228
+ mso-ansi-language:EN-GB;}
229
+ p.ForewordTitle, li.ForewordTitle, div.ForewordTitle
230
+ {mso-style-name:"Foreword Title";
231
+ mso-style-noshow:yes;
232
+ mso-style-unhide:no;
233
+ margin-top:0cm;
234
+ margin-right:0cm;
235
+ margin-bottom:15.5pt;
236
+ margin-left:0cm;
237
+ text-align:justify;
238
+ line-height:15.5pt;
239
+ page-break-before:always;
240
+ mso-pagination:widow-orphan;
241
+ page-break-after:avoid;
242
+ mso-outline-level:1;
243
+ mso-hyphenate:none;
244
+ tab-stops:20.15pt;
245
+ font-size:14.0pt;
246
+ mso-bidi-font-size:11.0pt;
247
+ font-family:$headerfont;
248
+ mso-fareast-font-family:$headerfont;
249
+ mso-bidi-font-family:$headerfont;
250
+ mso-ansi-language:EN-GB;
251
+ font-weight:bold;
252
+ mso-bidi-font-weight:normal;}
253
+ p.IntroTitle, li.IntroTitle, div.IntroTitle
254
+ {mso-style-name:"Intro Title";
255
+ mso-style-noshow:yes;
256
+ mso-style-unhide:no;
257
+ mso-style-parent:"Foreword Title";
258
+ margin-top:0cm;
259
+ margin-right:0cm;
260
+ margin-bottom:15.5pt;
261
+ margin-left:0cm;
262
+ text-align:justify;
263
+ line-height:15.5pt;
264
+ mso-pagination:widow-orphan;
265
+ page-break-after:avoid;
266
+ mso-outline-level:1;
267
+ mso-hyphenate:none;
268
+ tab-stops:20.15pt;
269
+ font-size:14.0pt;
270
+ mso-bidi-font-size:11.0pt;
271
+ font-family:$headerfont;
272
+ mso-fareast-font-family:$headerfont;
273
+ mso-bidi-font-family:$headerfont;
274
+ mso-ansi-language:EN-GB;
275
+ font-weight:bold;
276
+ page-break-before:always;
277
+ mso-bidi-font-weight:normal;}
278
+ p.TitlePageSubhead, li.TitlePageSubhead, div.TitlePageSubhead {
279
+ mso-style-noshow:yes;
280
+ mso-style-unhide:no;
281
+ mso-style-parent:"Foreword Title";
282
+ margin-top:0cm;
283
+ margin-right:0cm;
284
+ margin-bottom:15.5pt;
285
+ margin-left:0cm;
286
+ text-align:center;
287
+ line-height:15.5pt;
288
+ mso-pagination:widow-orphan;
289
+ page-break-after:avoid;
290
+ mso-hyphenate:none;
291
+ tab-stops:20.15pt;
292
+ font-size:14.0pt;
293
+ mso-bidi-font-size:11.0pt;
294
+ font-family:$headerfont;
295
+ mso-fareast-font-family:$headerfont;
296
+ mso-bidi-font-family:$headerfont;
297
+ mso-ansi-language:EN-GB;
298
+ font-weight:bold;
299
+ mso-bidi-font-weight:normal;
300
+ }
301
+ p.Terms, li.Terms, div.Terms
302
+ {mso-style-name:"Term\(s\)";
303
+ mso-style-priority:8;
304
+ mso-style-unhide:no;
305
+ mso-style-next:Definition;
306
+ margin:0cm;
307
+ margin-bottom:.0001pt;
308
+ line-height:12.0pt;
309
+ mso-pagination:widow-orphan;
310
+ page-break-after:avoid;
311
+ mso-hyphenate:none;
312
+ tab-stops:20.15pt;
313
+ font-size:11.0pt;
314
+ font-family:$headerfont;
315
+ mso-fareast-font-family:$headerfont;
316
+ mso-bidi-font-family:$headerfont;
317
+ mso-ansi-language:EN-GB;
318
+ font-weight:bold;
319
+ mso-bidi-font-weight:normal;}
320
+ p.AltTerms, li.AltTerms, div.AltTerms
321
+ {mso-style-name:"AltTerm\(s\)";
322
+ mso-style-priority:8;
323
+ mso-style-unhide:no;
324
+ mso-style-next:Definition;
325
+ margin:0cm;
326
+ margin-bottom:.0001pt;
327
+ line-height:12.0pt;
328
+ mso-pagination:widow-orphan;
329
+ page-break-after:avoid;
330
+ mso-hyphenate:none;
331
+ tab-stops:20.15pt;
332
+ font-size:11.0pt;
333
+ font-family:$bodyfont;
334
+ mso-fareast-font-family:$bodyfont;
335
+ mso-bidi-font-family:$bodyfont;
336
+ mso-ansi-language:EN-GB;
337
+ mso-bidi-font-weight:normal;}
338
+ p.DeprecatedTerms, li.DeprecatedTerms, div.DeprecatedTerms
339
+ {mso-style-name:"DeprecatedTerm\(s\)";
340
+ mso-style-priority:8;
341
+ mso-style-unhide:no;
342
+ mso-style-next:Definition;
343
+ margin:0cm;
344
+ margin-bottom:.0001pt;
345
+ line-height:12.0pt;
346
+ mso-pagination:widow-orphan;
347
+ page-break-after:avoid;
348
+ mso-hyphenate:none;
349
+ tab-stops:20.15pt;
350
+ font-size:11.0pt;
351
+ font-family:$bodyfont;
352
+ mso-fareast-font-family:$bodyfont;
353
+ mso-bidi-font-family:$bodyfont;
354
+ mso-ansi-language:EN-GB;
355
+ mso-bidi-font-weight:normal;}
356
+ p.TermNum, li.TermNum, div.TermNum
357
+ {mso-style-name:TermNum;
358
+ mso-style-priority:7;
359
+ mso-style-unhide:no;
360
+ mso-style-next:"Term\(s\)";
361
+ margin:0cm;
362
+ margin-bottom:.0001pt;
363
+ line-height:12.0pt;
364
+ mso-pagination:widow-orphan;
365
+ page-break-after:avoid;
366
+ tab-stops:20.15pt;
367
+ font-size:11.0pt;
368
+ font-family:$headerfont;
369
+ mso-fareast-font-family:$headerfont;
370
+ mso-bidi-font-family:$headerfont;
371
+ mso-ansi-language:EN-GB;
372
+ font-weight:bold;
373
+ mso-bidi-font-weight:normal;}
374
+ p.zzContents, li.zzContents, div.zzContents
375
+ {mso-style-name:zzContents;
376
+ mso-style-noshow:yes;
377
+ mso-style-unhide:no;
378
+ mso-style-next:"TOC 1";
379
+ margin-top:48.0pt;
380
+ margin-right:0cm;
381
+ margin-bottom:15.5pt;
382
+ margin-left:0cm;
383
+ line-height:15.5pt;
384
+ mso-line-height-rule:exactly;
385
+ page-break-before:always;
386
+ mso-pagination:widow-orphan;
387
+ page-break-after:avoid;
388
+ mso-hyphenate:none;
389
+ tab-stops:20.15pt;
390
+ font-size:14.0pt;
391
+ mso-bidi-font-size:11.0pt;
392
+ font-family:$headerfont;
393
+ mso-fareast-font-family:$headerfont;
394
+ mso-bidi-font-family:$headerfont;
395
+ mso-ansi-language:EN-GB;
396
+ font-weight:bold;
397
+ mso-bidi-font-weight:normal;}
398
+ p.zzCopyright, li.zzCopyright
399
+ {mso-style-name:zzCopyright;
400
+ mso-style-noshow:yes;
401
+ mso-style-unhide:no;
402
+ mso-style-next:Normal;
403
+ margin-top:0cm;
404
+ margin-right:14.2pt;
405
+ margin-bottom:12.0pt;
406
+ margin-left:14.2pt;
407
+ text-align:justify;
408
+ line-height:12.0pt;
409
+ mso-pagination:widow-orphan;
410
+ tab-stops:20.15pt 25.7pt 481.15pt;
411
+ padding:0cm;
412
+ mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt;
413
+ font-size:10.5pt;
414
+ font-family:$bodyfont;
415
+ mso-fareast-font-family:$bodyfont;
416
+ mso-bidi-font-family:$bodyfont;
417
+ mso-ansi-language:EN-GB;}
418
+ div.zzCopyright
419
+ {mso-element:para-border-div;
420
+ border:solid windowtext 1.0pt;
421
+ mso-border-top-alt:solid windowtext .5pt;
422
+ mso-border-left-alt:solid windowtext .5pt;
423
+ mso-border-right-alt:solid windowtext .5pt;
424
+ mso-border-bottom-alt:solid windowtext .5pt;
425
+ padding:1.0pt 4.0pt 0cm 4.0pt;
426
+ margin-left:5.1pt;
427
+ margin-right:5.1pt;}
428
+ p.zzCopyright_address
429
+ {margin-top:0cm;
430
+ margin-right:14.2pt;
431
+ margin-bottom:0.0pt;
432
+ margin-left:14.2pt;
433
+ mso-layout-grid-align:none;
434
+ text-autospace:none;
435
+ padding-left:20pt;
436
+ mso-padding-alt-left:20pt;
437
+ font-size:10.0pt;
438
+ text-align:left;
439
+ mso-bidi-font-size:11.0pt;}
440
+ p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle
441
+ {mso-style-name:zzSTDTitle;
442
+ mso-style-noshow:yes;
443
+ mso-style-unhide:no;
444
+ mso-style-next:Normal;
445
+ margin-top:20.0pt;
446
+ margin-right:0cm;
447
+ margin-bottom:38.0pt;
448
+ margin-left:0cm;
449
+ line-height:17.5pt;
450
+ mso-line-height-rule:exactly;
451
+ mso-pagination:widow-orphan;
452
+ mso-hyphenate:none;
453
+ tab-stops:20.15pt;
454
+ font-size:16.0pt;
455
+ mso-bidi-font-size:11.0pt;
456
+ font-family:$headerfont;
457
+ mso-fareast-font-family:$headerfont;
458
+ mso-bidi-font-family:$headerfont;
459
+ mso-ansi-language:EN-GB;
460
+ font-weight:bold;
461
+ mso-bidi-font-weight:normal;}
462
+ p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1
463
+ {mso-style-name:zzSTDTitle;
464
+ mso-style-noshow:yes;
465
+ mso-style-unhide:no;
466
+ mso-style-next:Normal;
467
+ margin-top:0pt;
468
+ margin-right:0cm;
469
+ margin-bottom:18.0pt;
470
+ margin-left:0cm;
471
+ line-height:17.5pt;
472
+ mso-line-height-rule:exactly;
473
+ mso-pagination:widow-orphan;
474
+ mso-hyphenate:none;
475
+ tab-stops:20.15pt;
476
+ font-size:16.0pt;
477
+ mso-bidi-font-size:11.0pt;
478
+ font-family:$headerfont;
479
+ mso-fareast-font-family:$headerfont;
480
+ mso-bidi-font-family:$headerfont;
481
+ mso-ansi-language:EN-GB;
482
+ font-weight:bold;
483
+ mso-bidi-font-weight:normal;}
484
+ p.Quote, li.Quote, div.Quote
485
+ {mso-style-priority:99;
486
+ margin-top:0cm;
487
+ margin-right:36.0pt;
488
+ margin-bottom:0cm;
489
+ margin-left:36.0pt;
490
+ text-align:justify;
491
+ line-height:12.0pt;
492
+ mso-pagination:widow-orphan;
493
+ tab-stops:20.15pt;
494
+ font-size:10.5pt;
495
+ font-family:$bodyfont;
496
+ mso-fareast-font-family:$bodyfont;
497
+ mso-bidi-font-family:$bodyfont;
498
+ mso-ansi-language:EN-GB;}
499
+ p.QuoteAttribution
500
+ {text-align:right;
501
+ mso-style-priority:99;
502
+ margin-top:0cm;
503
+ margin-right:36.0pt;
504
+ margin-bottom:0cm;
505
+ margin-left:36.0pt;
506
+ line-height:12.0pt;
507
+ mso-pagination:widow-orphan;
508
+ tab-stops:20.15pt;
509
+ font-size:10.5pt;
510
+ font-family:$bodyfont;
511
+ mso-fareast-font-family:$bodyfont;
512
+ mso-bidi-font-family:$bodyfont;
513
+ mso-ansi-language:EN-GB;
514
+ }
515
+ p.Admonition, li.Admonition, div.Admonition
516
+ {mso-style-priority:99;
517
+ margin-top:0cm;
518
+ margin-right:57.6pt;
519
+ margin-bottom:0cm;
520
+ margin-left:57.6pt;
521
+ margin-bottom:.0001pt;
522
+ mso-pagination:widow-orphan;
523
+ border:solid;
524
+ mso-border-alt:solid black .25pt;
525
+ padding:0cm;
526
+ mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
527
+ font-size:12.0pt;
528
+ font-family:$bodyfont;
529
+ mso-ascii-font-family:$bodyfont;
530
+ mso-ascii-theme-font:minor-latin;
531
+ mso-fareast-font-family:$bodyfont;
532
+ mso-fareast-theme-font:minor-fareast;
533
+ mso-hansi-font-family:$bodyfont;
534
+ mso-hansi-theme-font:minor-latin;
535
+ mso-bidi-font-family:$bodyfont;
536
+ mso-bidi-theme-font:minor-bidi;
537
+ mso-ansi-language:EN-AU; }
538
+ p.Code, li.Code, div.Code
539
+ {mso-style-name:Code;
540
+ mso-style-priority:16;
541
+ mso-style-unhide:no;
542
+ mso-style-qformat:yes;
543
+ margin:0cm;
544
+ margin-bottom:.0001pt;
545
+ line-height:10.0pt;
546
+ mso-pagination:widow-orphan;
547
+ tab-stops:20.15pt;
548
+ font-size:9.0pt;
549
+ mso-bidi-font-size:11.0pt;
550
+ font-family:$monospacefont;
551
+ mso-fareast-font-family:Calibri;
552
+ mso-bidi-font-family:"Source Sans Pro";
553
+ mso-ansi-language:EN-GB;}
554
+ p.Formula, li.Formula, div.Formula
555
+ {mso-style-name:Formula;
556
+ mso-style-noshow:yes;
557
+ mso-style-unhide:no;
558
+ margin-top:0cm;
559
+ margin-right:0cm;
560
+ margin-bottom:11.0pt;
561
+ margin-left:20.15pt;
562
+ line-height:12.0pt;
563
+ mso-pagination:widow-orphan;
564
+ tab-stops:right 487.45pt;
565
+ font-size:10.5pt;
566
+ font-family:$bodyfont;
567
+ mso-fareast-font-family:$bodyfont;
568
+ mso-bidi-font-family:$bodyfont;
569
+ mso-ansi-language:EN-GB;}
570
+ @page {
571
+ mso-facing-pages:yes;
572
+ }
573
+ @page WordSection1
574
+ {size:595.3pt 841.9pt;
575
+ margin:39.7pt 53.85pt 1.0cm 53.85pt;
576
+ mso-header-margin:35.45pt;
577
+ mso-footer-margin:14.2pt;
578
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
579
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
580
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
581
+ mso-paper-source:0;
582
+ mso-footnote-numbering-style:chicago;
583
+ mso-footnote-numbering-restart:each-section;
584
+ }
585
+ div.WordSection1
586
+ {page:WordSection1;}
587
+ @page WordSection2
588
+ {size:595.3pt 841.9pt;
589
+ margin:39.7pt 53.85pt 1.0cm 3.0cm;
590
+ mso-header-margin:35.45pt;
591
+ mso-footer-margin:14.2pt;
592
+ mso-page-numbers:roman-lower;
593
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
594
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
595
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2;
596
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
597
+ mso-paper-source:0;
598
+ mso-footnote-numbering-restart:each-section;
599
+ }
600
+ @page WordSection2L
601
+ {size:841.9pt 595.3pt;
602
+ margin:39.7pt 53.85pt 1.0cm 3.0cm;
603
+ mso-header-margin:35.45pt;
604
+ mso-footer-margin:14.2pt;
605
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
606
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2l;
607
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2l;
608
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2l;
609
+ mso-paper-source:0;
610
+ mso-footnote-numbering-restart:each-section;
611
+ }
612
+ @page WordSection2P
613
+ {size:595.3pt 841.9pt;
614
+ margin:39.7pt 53.85pt 1.0cm 3.0cm;
615
+ mso-header-margin:35.45pt;
616
+ mso-footer-margin:14.2pt;
617
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
618
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
619
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2;
620
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
621
+ mso-paper-source:0;
622
+ mso-footnote-numbering-restart:each-section;
623
+ }
624
+ div.WordSection2
625
+ {page:WordSection2;}
626
+ @page WordSection3
627
+ {size:595.3pt 841.9pt;
628
+ margin:39.7pt 53.85pt 1.0cm 3.0cm;
629
+ mso-header-margin:35.45pt;
630
+ mso-footer-margin:14.2pt;
631
+ mso-page-numbers:1;
632
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
633
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
634
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3;
635
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
636
+ mso-paper-source:0;
637
+ mso-footnote-numbering-restart:each-section;
638
+ }
639
+ @page WordSection3L
640
+ {size:841.9pt 595.3pt;
641
+ margin:39.7pt 53.85pt 1.0cm 3.0cm;
642
+ mso-header-margin:35.45pt;
643
+ mso-footer-margin:14.2pt;
644
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2l;
645
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2l;
646
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3l;
647
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3l;
648
+ mso-paper-source:0;
649
+ mso-footnote-numbering-restart:each-section;
650
+ }
651
+ @page WordSection3P
652
+ {size:595.3pt 841.9pt;
653
+ margin:39.7pt 53.85pt 1.0cm 3.0cm;
654
+ mso-header-margin:35.45pt;
655
+ mso-footer-margin:14.2pt;
656
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
657
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
658
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3;
659
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
660
+ mso-paper-source:0;
661
+ mso-footnote-numbering-restart:each-section;
662
+ }
663
+ div.WordSection3
664
+ {page:WordSection3;}
665
+ table.MsoISOTable
666
+ {mso-style-name:"Table ISO";
667
+ mso-tstyle-rowband-size:0;
668
+ mso-tstyle-colband-size:0;
669
+ mso-style-noshow:yes;
670
+ mso-style-priority:99;
671
+ mso-style-parent:"";
672
+ mso-padding-alt:0cm 2.85pt 0cm 2.85pt;
673
+ mso-para-margin:0cm;
674
+ mso-para-margin-bottom:.0001pt;
675
+ mso-pagination:widow-orphan;
676
+ border-collapse:collapse;
677
+ mso-table-layout-alt:fixed;
678
+ border:solid windowtext 2pt;
679
+ mso-border-alt:solid windowtext 2pt;
680
+ mso-yfti-tbllook:480;
681
+ mso-border-insideh:.75pt solid windowtext;
682
+ mso-border-insidev:.75pt solid windowtext;
683
+ margin-bottom:12pt;
684
+ font-size:10.0pt;
685
+ font-family:$bodyfont;}
686
+ table.MsoISOTable th
687
+ {border:solid windowtext 1pt;
688
+ mso-border-alt:solid windowtext 1pt;
689
+ padding:0cm 2.85pt 0cm 2.85pt;}
690
+ table.MsoISOTable p
691
+ {font-size:10.0pt; }
692
+ table.MsoISOTable td
693
+ {border:solid windowtext 1pt;
694
+ mso-border-alt:solid windowtext 1pt;
695
+ padding:0cm 2.85pt 0cm 2.85pt;}
696
+ table.MsoTableGrid
697
+ {mso-style-name:"Table Grid";
698
+ mso-tstyle-rowband-size:0;
699
+ mso-tstyle-colband-size:0;
700
+ mso-style-priority:39;
701
+ mso-style-unhide:no;
702
+ border:solid windowtext 1.0pt;
703
+ mso-border-alt:solid windowtext .5pt;
704
+ mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
705
+ mso-border-insideh:.5pt solid windowtext;
706
+ mso-border-insidev:.5pt solid windowtext;
707
+ mso-para-margin:0cm;
708
+ mso-para-margin-bottom:.0001pt;
709
+ mso-pagination:widow-orphan;
710
+ margin-bottom:12pt;
711
+ font-size:10.0pt;
712
+ font-family:$bodyfont;}
713
+ div.formula
714
+ {tab-stops:right 487.45pt;}
715
+ body
716
+ {tab-interval:36.0pt;}
717
+ .coverpage_docnumber
718
+ {text-align:center;
719
+ font-size:14.0pt;
720
+ font-weight:bold;}
721
+ .coverpage_techcommittee
722
+ {text-align:center;
723
+ font-size:12.0pt}
724
+ .coverpage_docstage
725
+ {text-align:center;
726
+ font-size:30.0pt;
727
+ color:$un-link;}
728
+ div.coverpage_warning
729
+ {mso-element:para-border-div;
730
+ border:solid windowtext 1.0pt $un-link;
731
+ mso-border-alt:solid windowtext .5pt;
732
+ padding:1.0pt 4.0pt 1.0pt 4.0pt $un-link;
733
+ font-size:10.0pt;
734
+ margin-left:4.25pt;
735
+ margin-right:4.25pt}
736
+ .coverpage_warning
737
+ {color:$un-link;
738
+ font-size:10.0pt;}
739
+
740
+ a.TableFootnoteRef, span.TableFootnoteRef
741
+ {mso-style-priority:99;
742
+ mso-style-parent:"Footnote Reference";
743
+ vertical-align:super;}
744
+
745
+ aside {
746
+ font-size:10.0pt;
747
+ }
748
+
749
+ .example-title {
750
+ font-weight: bold;
751
+ margin-left: -36.0pt;
752
+ }
753
+
754
+ p.example, li.example, div.example, td.example {
755
+ margin-right: 0pt;
756
+ margin-left: 0pt;
757
+ }
758
+
759
+ div.example {
760
+ margin-right: 36.0pt;
761
+ margin-left: 36.0pt;
762
+ margin-top: 0cm;
763
+ margin-bottom: 0cm;
764
+ }
765
+
766
+ p.example, li.example, div.example, td.example {
767
+ mso-pagination:none;
768
+ font-size:10.0pt;
769
+ font-family:$bodyfont;}
770
+
771
+ td.example p.MsoListParagraph {
772
+ font-size: 10.0pt;
773
+ }
774
+
775
+ div.example p.MsoListParagraph {
776
+ font-size: 10.0pt;
777
+ }
778
+
779
+ div.Note p.MsoListParagraph {
780
+ font-size: 10.0pt;
781
+ }
782
+
783
+ span.note_label, span.example_label, td.example_label, td.note_label
784
+ {
785
+ font-size: 10.0pt;
786
+ font-family:$bodyfont;
787
+ }
788
+
789
+ table.dl
790
+ {margin-top:0cm;
791
+ margin-right:0cm;
792
+ margin-bottom:11.0pt;
793
+ margin-left:20.15pt;}
794
+
795
+ .boilerplate-ECEhdr {
796
+ border: solid;
797
+ }
798
+
799
+ .boilerplate-copyright p {
800
+ text-align: center;
801
+ }