metanorma-unece 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -0
  3. data/.hound.yml +3 -0
  4. data/.rubocop.ribose.yml +66 -0
  5. data/.rubocop.tb.yml +650 -0
  6. data/.rubocop.yml +15 -0
  7. data/.travis.yml +21 -0
  8. data/CODE_OF_CONDUCT.md +74 -0
  9. data/Gemfile +4 -0
  10. data/LICENSE +25 -0
  11. data/README.adoc +202 -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/unece.rb +7 -0
  17. data/lib/asciidoctor/unece/biblio.rng +880 -0
  18. data/lib/asciidoctor/unece/converter.rb +240 -0
  19. data/lib/asciidoctor/unece/isodoc.rng +1066 -0
  20. data/lib/asciidoctor/unece/isostandard.rng +1054 -0
  21. data/lib/asciidoctor/unece/unece.rng +247 -0
  22. data/lib/isodoc/unece.rb +9 -0
  23. data/lib/isodoc/unece/html/header.html +164 -0
  24. data/lib/isodoc/unece/html/html_unece_intro.html +27 -0
  25. data/lib/isodoc/unece/html/html_unece_titlepage.html +112 -0
  26. data/lib/isodoc/unece/html/htmlstyle.scss +1119 -0
  27. data/lib/isodoc/unece/html/logo.jpg +0 -0
  28. data/lib/isodoc/unece/html/scripts.html +82 -0
  29. data/lib/isodoc/unece/html/unece.scss +660 -0
  30. data/lib/isodoc/unece/html/word_unece_intro.html +24 -0
  31. data/lib/isodoc/unece/html/word_unece_plenary_titlepage.html +129 -0
  32. data/lib/isodoc/unece/html/word_unece_titlepage.html +17 -0
  33. data/lib/isodoc/unece/html/wordstyle.scss +1088 -0
  34. data/lib/isodoc/unece/html_convert.rb +392 -0
  35. data/lib/isodoc/unece/metadata.rb +93 -0
  36. data/lib/isodoc/unece/word_convert.rb +405 -0
  37. data/lib/metanorma-unece.rb +8 -0
  38. data/lib/metanorma/unece.rb +11 -0
  39. data/lib/metanorma/unece/UN_emblem_blue.svg +193 -0
  40. data/lib/metanorma/unece/processor.rb +40 -0
  41. data/lib/metanorma/unece/version.rb +5 -0
  42. data/metanorma-unece.gemspec +47 -0
  43. metadata +353 -0
Binary file
@@ -0,0 +1,82 @@
1
+ <script>
2
+ //TOC generation
3
+ $('#toc').toc({
4
+ 'selectors': 'h1,h2:not(.TermNum)', //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
+ $('document').ready(function() {
70
+ $('main [id^=toc]').each(function ()
71
+ {
72
+ var currentToc = $(this);
73
+ var url = window.location.href;
74
+ currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
75
+ });
76
+ });
77
+ anchors.options = {
78
+ placement: 'left'
79
+ };
80
+ anchors.add('h1, h2, h3, h4');
81
+ </script>
82
+
@@ -0,0 +1,660 @@
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.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, div.NormRef
36
+ {mso-style-unhide:no;
37
+ mso-style-qformat:yes;
38
+ mso-style-parent:"";
39
+ margin-top:0cm;
40
+ margin-right:0cm;
41
+ margin-bottom:12.0pt;
42
+ margin-left:33.15pt;
43
+ text-indent:-33.15pt;
44
+ tab-stops: 33.15pt;
45
+ line-height:12.0pt;
46
+ mso-pagination:widow-orphan;
47
+ font-size:10.5pt;
48
+ font-weight:normal;
49
+ font-family:$bodyfont;
50
+ mso-fareast-font-family:$bodyfont;
51
+ mso-bidi-font-family:$bodyfont;
52
+ mso-ansi-language:EN-GB;}
53
+ p.FigureTitle
54
+ {mso-style-unhide:no;
55
+ mso-style-qformat:yes;
56
+ mso-style-parent:"";
57
+ margin-top:0cm;
58
+ margin-right:0cm;
59
+ margin-bottom:6.0pt;
60
+ margin-left:0cm;
61
+ text-align:center;
62
+ line-height:12.0pt;
63
+ page-break-before:avoid;
64
+ mso-pagination:widow-orphan;
65
+ tab-stops:20.15pt;
66
+ font-size:11.0pt;
67
+ font-weight:bold;
68
+ font-family:$bodyfont;
69
+ mso-fareast-font-family:$bodyfont;
70
+ mso-bidi-font-family:$bodyfont;
71
+ mso-ansi-language:EN-GB;}
72
+ p.TableTitle
73
+ {mso-style-unhide:no;
74
+ mso-style-qformat:yes;
75
+ mso-style-parent:"";
76
+ margin-top:0cm;
77
+ margin-right:0cm;
78
+ margin-bottom:6.0pt;
79
+ margin-left:0cm;
80
+ text-align:center;
81
+ page-break-after:avoid;
82
+ line-height:12.0pt;
83
+ mso-pagination:widow-orphan;
84
+ tab-stops:20.15pt;
85
+ font-size:11.0pt;
86
+ font-family:$bodyfont;
87
+ mso-fareast-font-family:$bodyfont;
88
+ mso-bidi-font-family:$bodyfont;
89
+ mso-ansi-language:EN-GB;}
90
+ p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote
91
+ {mso-style-unhide:no;
92
+ mso-style-qformat:yes;
93
+ mso-style-parent:"";
94
+ margin-top:0cm;
95
+ margin-right:0cm;
96
+ margin-bottom:12.0pt;
97
+ margin-left:0cm;
98
+ text-align:justify;
99
+ line-height:12.0pt;
100
+ mso-pagination:widow-orphan;
101
+ tab-stops:20.15pt;
102
+ font-size:10.0pt;
103
+ mso-bidi-font-size:11.0pt;
104
+ font-family:$bodyfont;
105
+ font-size:10.0pt;
106
+ mso-fareast-font-family:$bodyfont;
107
+ mso-bidi-font-family:$bodyfont;
108
+ mso-ansi-language:EN-GB;}
109
+ p.ANNEX, li.ANNEX, div.ANNEX
110
+ {mso-style-name:ANNEX;
111
+ mso-style-priority:10;
112
+ mso-style-unhide:no;
113
+ mso-style-next:Normal;
114
+ margin-top:0cm;
115
+ margin-right:0cm;
116
+ margin-bottom:24.0pt;
117
+ margin-left:0cm;
118
+ text-align:center;
119
+ text-indent:0cm;
120
+ line-height:15.5pt;
121
+ mso-line-height-rule:exactly;
122
+ page-break-before:always;
123
+ mso-pagination:widow-orphan;
124
+ page-break-after:avoid;
125
+ mso-outline-level:1;
126
+ mso-list:l0 level1 lfo12;
127
+ tab-stops:20.15pt;
128
+ font-size:14.0pt;
129
+ mso-bidi-font-size:11.0pt;
130
+ font-family:$headerfont;
131
+ mso-fareast-font-family:$headerfont;
132
+ mso-bidi-font-family:$headerfont;
133
+ mso-ansi-language:EN-GB;
134
+ mso-fareast-language:JA;
135
+ font-weight:bold;
136
+ mso-bidi-font-weight:normal;}
137
+ p.BiblioTitle, li.BiblioTitle, div.BiblioTitle
138
+ {mso-style-name:"Biblio Title";
139
+ mso-style-noshow:yes;
140
+ mso-style-unhide:no;
141
+ margin-top:0cm;
142
+ margin-right:0cm;
143
+ margin-bottom:15.5pt;
144
+ margin-left:0cm;
145
+ text-align:center;
146
+ line-height:15.5pt;
147
+ mso-pagination:widow-orphan;
148
+ mso-outline-level:1;
149
+ tab-stops:20.15pt;
150
+ font-size:14.0pt;
151
+ mso-bidi-font-size:11.0pt;
152
+ font-family:$headerfont;
153
+ mso-fareast-font-family:$headerfont;
154
+ mso-bidi-font-family:$headerfont;
155
+ mso-ansi-language:EN-GB;
156
+ font-weight:bold;
157
+ mso-bidi-font-weight:normal;}
158
+ p.Definition, li.Definition, div.Definition
159
+ {mso-style-name:Definition;
160
+ mso-style-priority:9;
161
+ mso-style-unhide:no;
162
+ margin-top:0cm;
163
+ margin-right:0cm;
164
+ margin-bottom:12.0pt;
165
+ margin-left:0cm;
166
+ text-align:justify;
167
+ line-height:12.0pt;
168
+ mso-pagination:widow-orphan;
169
+ tab-stops:20.15pt;
170
+ font-size:11.0pt;
171
+ font-family:$bodyfont;
172
+ mso-fareast-font-family:$bodyfont;
173
+ mso-bidi-font-family:$bodyfont;
174
+ mso-ansi-language:EN-GB;}
175
+ p.ForewordTitle, li.ForewordTitle, div.ForewordTitle
176
+ {mso-style-name:"Foreword Title";
177
+ mso-style-noshow:yes;
178
+ mso-style-unhide:no;
179
+ margin-top:0cm;
180
+ margin-right:0cm;
181
+ margin-bottom:15.5pt;
182
+ margin-left:0cm;
183
+ text-align:justify;
184
+ line-height:15.5pt;
185
+ page-break-before:always;
186
+ mso-pagination:widow-orphan;
187
+ page-break-after:avoid;
188
+ mso-outline-level:1;
189
+ mso-hyphenate:none;
190
+ tab-stops:20.15pt;
191
+ font-size:14.0pt;
192
+ mso-bidi-font-size:11.0pt;
193
+ font-family:$headerfont;
194
+ mso-fareast-font-family:$headerfont;
195
+ mso-bidi-font-family:$headerfont;
196
+ mso-ansi-language:EN-GB;
197
+ font-weight:bold;
198
+ mso-bidi-font-weight:normal;}
199
+ p.IntroTitle, li.IntroTitle, div.IntroTitle
200
+ {mso-style-name:"Intro Title";
201
+ mso-style-noshow:yes;
202
+ mso-style-unhide:no;
203
+ mso-style-parent:"Foreword Title";
204
+ margin-top:0cm;
205
+ margin-right:0cm;
206
+ margin-bottom:15.5pt;
207
+ margin-left:0cm;
208
+ text-align:justify;
209
+ line-height:15.5pt;
210
+ mso-pagination:widow-orphan;
211
+ page-break-after:avoid;
212
+ mso-outline-level:1;
213
+ mso-hyphenate:none;
214
+ tab-stops:20.15pt;
215
+ font-size:14.0pt;
216
+ mso-bidi-font-size:11.0pt;
217
+ page-break-before:always;
218
+ font-family:$headerfont;
219
+ mso-fareast-font-family:$headerfont;
220
+ mso-bidi-font-family:$headerfont;
221
+ mso-ansi-language:EN-GB;
222
+ font-weight:bold;
223
+ mso-bidi-font-weight:normal;}
224
+ p.Terms, li.Terms, div.Terms
225
+ {mso-style-name:"Term\(s\)";
226
+ mso-style-priority:8;
227
+ mso-style-unhide:no;
228
+ mso-style-next:Definition;
229
+ margin:0cm;
230
+ margin-bottom:.0001pt;
231
+ line-height:12.0pt;
232
+ mso-pagination:widow-orphan;
233
+ page-break-after:avoid;
234
+ mso-hyphenate:none;
235
+ tab-stops:20.15pt;
236
+ font-size:11.0pt;
237
+ font-family:$headerfont;
238
+ mso-fareast-font-family:$headerfont;
239
+ mso-bidi-font-family:$headerfont;
240
+ mso-ansi-language:EN-GB;
241
+ font-weight:bold;
242
+ mso-bidi-font-weight:normal;}
243
+ p.AltTerms, li.AltTerms, div.AltTerms
244
+ {mso-style-name:"AltTerm\(s\)";
245
+ mso-style-priority:8;
246
+ mso-style-unhide:no;
247
+ mso-style-next:Definition;
248
+ margin:0cm;
249
+ margin-bottom:.0001pt;
250
+ line-height:12.0pt;
251
+ mso-pagination:widow-orphan;
252
+ page-break-after:avoid;
253
+ mso-hyphenate:none;
254
+ tab-stops:20.15pt;
255
+ font-size:11.0pt;
256
+ font-family:$bodyfont;
257
+ mso-fareast-font-family:$bodyfont;
258
+ mso-bidi-font-family:$bodyfont;
259
+ mso-ansi-language:EN-GB;
260
+ mso-bidi-font-weight:normal;}
261
+ p.DeprecatedTerms, li.DeprecatedTerms, div.DeprecatedTerms
262
+ {mso-style-name:"DeprecatedTerm\(s\)";
263
+ mso-style-priority:8;
264
+ mso-style-unhide:no;
265
+ mso-style-next:Definition;
266
+ margin:0cm;
267
+ margin-bottom:.0001pt;
268
+ line-height:12.0pt;
269
+ mso-pagination:widow-orphan;
270
+ page-break-after:avoid;
271
+ mso-hyphenate:none;
272
+ tab-stops:20.15pt;
273
+ font-size:11.0pt;
274
+ font-family:$bodyfont;
275
+ mso-fareast-font-family:$bodyfont;
276
+ mso-bidi-font-family:$bodyfont;
277
+ mso-ansi-language:EN-GB;
278
+ mso-bidi-font-weight:normal;}
279
+ p.TermNum, li.TermNum, div.TermNum
280
+ {mso-style-name:TermNum;
281
+ mso-style-priority:7;
282
+ mso-style-unhide:no;
283
+ mso-style-next:"Term\(s\)";
284
+ margin:0cm;
285
+ margin-bottom:.0001pt;
286
+ line-height:12.0pt;
287
+ mso-pagination:widow-orphan;
288
+ page-break-after:avoid;
289
+ tab-stops:20.15pt;
290
+ font-size:11.0pt;
291
+ font-family:$headerfont;
292
+ mso-fareast-font-family:$headerfont;
293
+ mso-bidi-font-family:$headerfont;
294
+ mso-ansi-language:EN-GB;
295
+ font-weight:bold;
296
+ mso-bidi-font-weight:normal;}
297
+ p.zzContents, li.zzContents, div.zzContents
298
+ {mso-style-name:zzContents;
299
+ mso-style-noshow:yes;
300
+ mso-style-unhide:no;
301
+ mso-style-next:"TOC 1";
302
+ margin-top:48.0pt;
303
+ margin-right:0cm;
304
+ margin-bottom:15.5pt;
305
+ margin-left:0cm;
306
+ line-height:15.5pt;
307
+ mso-line-height-rule:exactly;
308
+ page-break-before:always;
309
+ mso-pagination:widow-orphan;
310
+ page-break-after:avoid;
311
+ mso-hyphenate:none;
312
+ tab-stops:20.15pt;
313
+ font-size:14.0pt;
314
+ mso-bidi-font-size:11.0pt;
315
+ font-family:$headerfont;
316
+ mso-fareast-font-family:$headerfont;
317
+ mso-bidi-font-family:$headerfont;
318
+ mso-ansi-language:EN-GB;
319
+ font-weight:bold;
320
+ mso-bidi-font-weight:normal;}
321
+ p.zzCopyright, li.zzCopyright
322
+ {mso-style-name:zzCopyright;
323
+ mso-style-noshow:yes;
324
+ mso-style-unhide:no;
325
+ mso-style-next:Normal;
326
+ margin-top:0cm;
327
+ margin-right:14.2pt;
328
+ margin-bottom:12.0pt;
329
+ margin-left:14.2pt;
330
+ text-align:justify;
331
+ line-height:12.0pt;
332
+ mso-pagination:widow-orphan;
333
+ tab-stops:20.15pt 25.7pt 481.15pt;
334
+ padding:0cm;
335
+ mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt;
336
+ font-size:10.5pt;
337
+ font-family:$bodyfont;
338
+ mso-fareast-font-family:$bodyfont;
339
+ mso-bidi-font-family:$bodyfont;
340
+ mso-ansi-language:EN-GB;}
341
+ div.zzCopyright
342
+ {mso-element:para-border-div;
343
+ border:solid windowtext 1.0pt;
344
+ mso-border-top-alt:solid windowtext .5pt;
345
+ mso-border-left-alt:solid windowtext .5pt;
346
+ mso-border-right-alt:solid windowtext .5pt;
347
+ mso-border-bottom-alt:solid windowtext .5pt;
348
+ padding:1.0pt 4.0pt 0cm 4.0pt;
349
+ margin-left:5.1pt;
350
+ margin-right:5.1pt;}
351
+ p.zzCopyright_address
352
+ {margin-top:0cm;
353
+ margin-right:14.2pt;
354
+ margin-bottom:0.0pt;
355
+ margin-left:14.2pt;
356
+ mso-layout-grid-align:none;
357
+ text-autospace:none;
358
+ padding-left:20pt;
359
+ mso-padding-alt-left:20pt;
360
+ font-size:10.0pt;
361
+ text-align:left;
362
+ mso-bidi-font-size:11.0pt;}
363
+ p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle
364
+ {mso-style-name:zzSTDTitle;
365
+ mso-style-noshow:yes;
366
+ mso-style-unhide:no;
367
+ mso-style-next:Normal;
368
+ margin-top:20.0pt;
369
+ margin-right:0cm;
370
+ margin-bottom:38.0pt;
371
+ margin-left:0cm;
372
+ line-height:17.5pt;
373
+ mso-line-height-rule:exactly;
374
+ mso-pagination:widow-orphan;
375
+ mso-hyphenate:none;
376
+ tab-stops:20.15pt;
377
+ font-size:16.0pt;
378
+ mso-bidi-font-size:11.0pt;
379
+ font-family:$headerfont;
380
+ mso-fareast-font-family:$headerfont;
381
+ mso-bidi-font-family:$headerfont;
382
+ mso-ansi-language:EN-GB;
383
+ font-weight:bold;
384
+ mso-bidi-font-weight:normal;}
385
+ p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1
386
+ {mso-style-name:zzSTDTitle;
387
+ mso-style-noshow:yes;
388
+ mso-style-unhide:no;
389
+ mso-style-next:Normal;
390
+ margin-top:0pt;
391
+ margin-right:0cm;
392
+ margin-bottom:18.0pt;
393
+ margin-left:0cm;
394
+ line-height:17.5pt;
395
+ mso-line-height-rule:exactly;
396
+ mso-pagination:widow-orphan;
397
+ mso-hyphenate:none;
398
+ tab-stops:20.15pt;
399
+ font-size:16.0pt;
400
+ mso-bidi-font-size:11.0pt;
401
+ font-family:$headerfont;
402
+ mso-fareast-font-family:$headerfont;
403
+ mso-bidi-font-family:$headerfont;
404
+ mso-ansi-language:EN-GB;
405
+ font-weight:bold;
406
+ mso-bidi-font-weight:normal;}
407
+ p.Quote, li.Quote, div.Quote
408
+ {mso-style-priority:99;
409
+ margin-top:0cm;
410
+ margin-right:36.0pt;
411
+ margin-bottom:0cm;
412
+ margin-left:36.0pt;
413
+ text-align:justify;
414
+ line-height:12.0pt;
415
+ mso-pagination:widow-orphan;
416
+ tab-stops:20.15pt;
417
+ font-size:10.5pt;
418
+ font-family:$bodyfont;
419
+ mso-fareast-font-family:$bodyfont;
420
+ mso-bidi-font-family:$bodyfont;
421
+ mso-ansi-language:EN-GB;}
422
+ p.QuoteAttribution
423
+ {text-align:right;
424
+ mso-style-priority:99;
425
+ margin-top:0cm;
426
+ margin-right:36.0pt;
427
+ margin-bottom:0cm;
428
+ margin-left:36.0pt;
429
+ line-height:12.0pt;
430
+ mso-pagination:widow-orphan;
431
+ tab-stops:20.15pt;
432
+ font-size:10.5pt;
433
+ font-family:$bodyfont;
434
+ mso-fareast-font-family:$bodyfont;
435
+ mso-bidi-font-family:$bodyfont;
436
+ mso-ansi-language:EN-GB;
437
+ }
438
+ p.Admonition, li.Admonition, div.Admonition
439
+ {mso-style-priority:99;
440
+ margin-top:0cm;
441
+ margin-right:57.6pt;
442
+ margin-bottom:0cm;
443
+ margin-left:57.6pt;
444
+ margin-bottom:.0001pt;
445
+ mso-pagination:widow-orphan;
446
+ border:solid;
447
+ mso-border-alt:solid black .25pt;
448
+ padding:0cm;
449
+ mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
450
+ font-size:12.0pt;
451
+ font-family:$bodyfont;
452
+ mso-ascii-font-family:$bodyfont;
453
+ mso-ascii-theme-font:minor-latin;
454
+ mso-fareast-font-family:$bodyfont;
455
+ mso-fareast-theme-font:minor-fareast;
456
+ mso-hansi-font-family:$bodyfont;
457
+ mso-hansi-theme-font:minor-latin;
458
+ mso-bidi-font-family:$bodyfont;
459
+ mso-bidi-theme-font:minor-bidi;
460
+ mso-ansi-language:EN-AU; }
461
+ p.Code, li.Code, div.Code
462
+ {mso-style-name:Code;
463
+ mso-style-priority:16;
464
+ mso-style-unhide:no;
465
+ mso-style-qformat:yes;
466
+ margin:0cm;
467
+ margin-bottom:.0001pt;
468
+ line-height:10.0pt;
469
+ mso-pagination:widow-orphan;
470
+ tab-stops:20.15pt;
471
+ font-size:9.0pt;
472
+ mso-bidi-font-size:11.0pt;
473
+ font-family:$monospacefont;
474
+ mso-fareast-font-family:Calibri;
475
+ mso-bidi-font-family:"Source Sans Pro";
476
+ mso-ansi-language:EN-GB;}
477
+ p.Formula, li.Formula, div.Formula
478
+ {mso-style-name:Formula;
479
+ mso-style-noshow:yes;
480
+ mso-style-unhide:no;
481
+ margin-top:0cm;
482
+ margin-right:0cm;
483
+ margin-bottom:11.0pt;
484
+ margin-left:20.15pt;
485
+ line-height:12.0pt;
486
+ mso-pagination:widow-orphan;
487
+ tab-stops:right 487.45pt;
488
+ font-size:10.5pt;
489
+ font-family:$bodyfont;
490
+ mso-fareast-font-family:$bodyfont;
491
+ mso-bidi-font-family:$bodyfont;
492
+ mso-ansi-language:EN-GB;}
493
+ @page WordSection1
494
+ {size:595.3pt 841.9pt;
495
+ margin:39.7pt 53.85pt 1.0cm 53.85pt;
496
+ mso-header-margin:35.45pt;
497
+ mso-footer-margin:14.2pt;
498
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
499
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
500
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
501
+ mso-paper-source:0;}
502
+ div.WordSection1
503
+ {page:WordSection1;}
504
+ @page WordSection2
505
+ {size:595.3pt 841.9pt;
506
+ margin:39.7pt 53.85pt 1.0cm 3.0cm;
507
+ mso-header-margin:35.45pt;
508
+ mso-footer-margin:14.2pt;
509
+ mso-page-numbers:roman-lower;
510
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
511
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
512
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2;
513
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
514
+ mso-paper-source:0;}
515
+ div.WordSection2
516
+ {page:WordSection2;}
517
+ @page WordSection3
518
+ {size:595.3pt 841.9pt;
519
+ margin:39.7pt 53.85pt 1.0cm 3.0cm;
520
+ mso-header-margin:35.45pt;
521
+ mso-footer-margin:14.2pt;
522
+ mso-page-numbers:1;
523
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
524
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
525
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3;
526
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
527
+ mso-paper-source:0;}
528
+ div.WordSection3
529
+ {page:WordSection3;}
530
+ ol
531
+ {margin-bottom:0cm;}
532
+ ul
533
+ {margin-bottom:0cm;}
534
+ table.MsoISOTable
535
+ {mso-style-name:"Table ISO";
536
+ mso-tstyle-rowband-size:0;
537
+ mso-tstyle-colband-size:0;
538
+ mso-style-noshow:yes;
539
+ mso-style-priority:99;
540
+ mso-style-parent:"";
541
+ mso-padding-alt:0cm 2.85pt 0cm 2.85pt;
542
+ mso-para-margin:0cm;
543
+ mso-para-margin-bottom:.0001pt;
544
+ mso-pagination:widow-orphan;
545
+ border-collapse:collapse;
546
+ mso-table-layout-alt:fixed;
547
+ border:solid windowtext 2pt;
548
+ mso-border-alt:solid windowtext 2pt;
549
+ mso-yfti-tbllook:480;
550
+ mso-border-insideh:.75pt solid windowtext;
551
+ mso-border-insidev:.75pt solid windowtext;
552
+ margin-bottom:12pt;
553
+ mso-table-anchor-vertical:paragraph;
554
+ mso-table-bspace:12.0pt;
555
+ font-size:10.0pt;
556
+ font-family:$bodyfont;}
557
+ table.MsoISOTable tr
558
+ {page-break-inside:avoid;}
559
+ table.MsoISOTable th
560
+ {border:solid windowtext 1pt;
561
+ mso-border-alt:solid windowtext 1pt;
562
+ padding:0cm 2.85pt 0cm 2.85pt;}
563
+ table.MsoISOTable td
564
+ {border:solid windowtext 1pt;
565
+ mso-border-alt:solid windowtext 1pt;
566
+ padding:0cm 2.85pt 0cm 2.85pt;}
567
+ table.MsoTableGrid
568
+ {mso-style-name:"Table Grid";
569
+ mso-tstyle-rowband-size:0;
570
+ mso-tstyle-colband-size:0;
571
+ mso-style-priority:39;
572
+ mso-style-unhide:no;
573
+ border:solid windowtext 1.0pt;
574
+ mso-border-alt:solid windowtext .5pt;
575
+ mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
576
+ mso-border-insideh:.5pt solid windowtext;
577
+ mso-border-insidev:.5pt solid windowtext;
578
+ mso-para-margin:0cm;
579
+ mso-para-margin-bottom:.0001pt;
580
+ mso-pagination:widow-orphan;
581
+ margin-bottom:12pt;
582
+ mso-table-anchor-vertical:paragraph;
583
+ mso-table-bspace:12.0pt;
584
+ font-size:10.0pt;
585
+ font-family:$bodyfont;}
586
+ td { page-break-inside:avoid; }
587
+ tr { page-break-after:avoid; }
588
+ span.stem
589
+ {font-family:"Cambria Math",serif;
590
+ mso-ascii-font-family:"Cambria Math";
591
+ font-style:
592
+ italic;}
593
+ div.formula
594
+ {tab-stops:right 487.45pt;}
595
+ body
596
+ {tab-interval:36.0pt;}
597
+ dt
598
+ {page-break-inside:avoid;
599
+ page-break-after:avoid}
600
+ .coverpage_docnumber
601
+ {text-align:center;
602
+ font-size:14.0pt;
603
+ font-weight:bold;}
604
+ .coverpage_techcommittee
605
+ {text-align:center;
606
+ font-size:12.0pt}
607
+ .coverpage_docstage
608
+ {text-align:center;
609
+ font-size:30.0pt;
610
+ color:$un-link;}
611
+ div.coverpage_warning
612
+ {mso-element:para-border-div;
613
+ border:solid windowtext 1.0pt $un-link;
614
+ mso-border-alt:solid windowtext .5pt;
615
+ padding:1.0pt 4.0pt 1.0pt 4.0pt $un-link;
616
+ font-size:10.0pt;
617
+ margin-left:4.25pt;
618
+ margin-right:4.25pt}
619
+ .coverpage_warning
620
+ {color:$un-link;
621
+ font-size:10.0pt;}
622
+
623
+ a.TableFootnoteRef
624
+ {mso-style-priority:99;
625
+ vertical-align:super;}
626
+
627
+ aside {
628
+ font-size:10.0pt;
629
+ }
630
+ div.example {
631
+ margin-left:70.9pt;
632
+ text-indent:-70.9pt;
633
+ }
634
+ p.example, li.example, div.example, td.example
635
+ { margin:0in;
636
+ margin-bottom:.0001pt;
637
+ mso-pagination:none;
638
+ font-size:10.0pt;
639
+ font-family:$bodyfont;}
640
+
641
+ table.example {
642
+ margin-bottom:12pt;
643
+ }
644
+
645
+ td.example p.MsoListParagraph {
646
+ font-size: 10.0pt;
647
+ }
648
+
649
+ span.note_label, span.example_label, td.example_label, td.note_label
650
+ {
651
+ font-size: 10.0pt;
652
+ font-family:$bodyfont;
653
+ }
654
+
655
+ table.dl
656
+ {margin-top:0cm;
657
+ margin-right:0cm;
658
+ margin-bottom:11.0pt;
659
+ margin-left:20.15pt;}
660
+