metanorma-acme 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/.travis.yml +13 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +8 -0
- data/LICENSE +25 -0
- data/README.adoc +13 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/rspec +17 -0
- data/bin/setup +8 -0
- data/lib/asciidoctor/acme.rb +7 -0
- data/lib/asciidoctor/acme/acme.rng +212 -0
- data/lib/asciidoctor/acme/biblio.rng +631 -0
- data/lib/asciidoctor/acme/converter.rb +204 -0
- data/lib/asciidoctor/acme/isodoc.rng +1041 -0
- data/lib/asciidoctor/acme/isostandard.rng +1001 -0
- data/lib/asciidoctor/acme/pdf.js +31 -0
- data/lib/isodoc/acme.rb +10 -0
- data/lib/isodoc/acme/html/acme.scss +564 -0
- data/lib/isodoc/acme/html/header.html +184 -0
- data/lib/isodoc/acme/html/html_acme_intro.html +8 -0
- data/lib/isodoc/acme/html/html_acme_titlepage.html +106 -0
- data/lib/isodoc/acme/html/htmlstyle.scss +1028 -0
- data/lib/isodoc/acme/html/logo.jpg +0 -0
- data/lib/isodoc/acme/html/scripts.html +82 -0
- data/lib/isodoc/acme/html/word_acme_intro.html +72 -0
- data/lib/isodoc/acme/html/word_acme_titlepage.html +75 -0
- data/lib/isodoc/acme/html/wordstyle.scss +1096 -0
- data/lib/isodoc/acme/html_convert.rb +198 -0
- data/lib/isodoc/acme/metadata.rb +85 -0
- data/lib/isodoc/acme/pdf_convert.rb +196 -0
- data/lib/isodoc/acme/word_convert.rb +155 -0
- data/lib/metanorma-acme.rb +8 -0
- data/lib/metanorma/acme.rb +11 -0
- data/lib/metanorma/acme/processor.rb +51 -0
- data/lib/metanorma/acme/version.rb +5 -0
- data/metanorma-acme.gemspec +46 -0
- metadata +308 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
try {
|
4
|
+
require.resolve("puppeteer");
|
5
|
+
} catch(e) {
|
6
|
+
console.error("puppeteer Node library is not installed; will not generate PDF");
|
7
|
+
process.exit(e.code);
|
8
|
+
}
|
9
|
+
|
10
|
+
const puppeteer = require('puppeteer');
|
11
|
+
|
12
|
+
const createPdf = async() => {
|
13
|
+
let browser;
|
14
|
+
try {
|
15
|
+
browser = await puppeteer.launch({args: ['--no-sandbox', '--disable-setuid-sandbox']});
|
16
|
+
const page = await browser.newPage();
|
17
|
+
await page.goto(process.argv[2], {waitUntil: 'networkidle2'});
|
18
|
+
await page.pdf({
|
19
|
+
path: process.argv[3],
|
20
|
+
format: 'A4'
|
21
|
+
});
|
22
|
+
} catch (err) {
|
23
|
+
console.log(err.message);
|
24
|
+
} finally {
|
25
|
+
if (browser) {
|
26
|
+
browser.close();
|
27
|
+
}
|
28
|
+
process.exit();
|
29
|
+
}
|
30
|
+
};
|
31
|
+
createPdf();
|
data/lib/isodoc/acme.rb
ADDED
@@ -0,0 +1,564 @@
|
|
1
|
+
p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode, pre
|
2
|
+
{mso-style-unhide:no;
|
3
|
+
mso-style-qformat:yes;
|
4
|
+
mso-style-parent:"";
|
5
|
+
margin-top:6.0pt;
|
6
|
+
margin-right:0cm;
|
7
|
+
margin-bottom:6.0pt;
|
8
|
+
margin-left:0cm;
|
9
|
+
text-align:left;
|
10
|
+
mso-pagination:widow-orphan;
|
11
|
+
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;
|
12
|
+
font-size:10.0pt;
|
13
|
+
font-family:$monospacefont;
|
14
|
+
mso-fareast-font-family:Calibri;
|
15
|
+
mso-bidi-font-family:"Courier New";
|
16
|
+
mso-ansi-language:EN-GB;}
|
17
|
+
p.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, div.NormRef
|
18
|
+
{mso-style-unhide:no;
|
19
|
+
mso-style-qformat:yes;
|
20
|
+
mso-style-parent:"";
|
21
|
+
margin-top:0cm;
|
22
|
+
margin-right:0cm;
|
23
|
+
margin-bottom:12.0pt;
|
24
|
+
margin-left:33.15pt;
|
25
|
+
text-indent:-33.15pt;
|
26
|
+
tab-stops: 33.15pt;
|
27
|
+
line-height:12.0pt;
|
28
|
+
mso-pagination:widow-orphan;
|
29
|
+
font-size:10.5pt;
|
30
|
+
font-weight:normal;
|
31
|
+
font-family:$bodyfont;
|
32
|
+
mso-fareast-font-family:$bodyfont;
|
33
|
+
mso-bidi-font-family:$bodyfont;
|
34
|
+
mso-ansi-language:EN-GB;}
|
35
|
+
p.FigureTitle
|
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:6.0pt;
|
42
|
+
margin-left:0cm;
|
43
|
+
text-align:center;
|
44
|
+
line-height:12.0pt;
|
45
|
+
page-break-before:avoid;
|
46
|
+
mso-pagination:widow-orphan;
|
47
|
+
tab-stops:20.15pt;
|
48
|
+
font-size:11.0pt;
|
49
|
+
font-weight:bold;
|
50
|
+
font-family:$bodyfont;
|
51
|
+
mso-fareast-font-family:$bodyfont;
|
52
|
+
mso-bidi-font-family:$bodyfont;
|
53
|
+
mso-ansi-language:EN-GB;}
|
54
|
+
p.TableTitle
|
55
|
+
{mso-style-unhide:no;
|
56
|
+
mso-style-qformat:yes;
|
57
|
+
mso-style-parent:"";
|
58
|
+
margin-top:0cm;
|
59
|
+
margin-right:0cm;
|
60
|
+
margin-bottom:6.0pt;
|
61
|
+
margin-left:0cm;
|
62
|
+
text-align:center;
|
63
|
+
page-break-after:avoid;
|
64
|
+
line-height:12.0pt;
|
65
|
+
mso-pagination:widow-orphan;
|
66
|
+
tab-stops:20.15pt;
|
67
|
+
font-size:11.0pt;
|
68
|
+
font-family:$bodyfont;
|
69
|
+
mso-fareast-font-family:$bodyfont;
|
70
|
+
mso-bidi-font-family:$bodyfont;
|
71
|
+
mso-ansi-language:EN-GB;}
|
72
|
+
p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote
|
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:12.0pt;
|
79
|
+
margin-left:0cm;
|
80
|
+
text-align:justify;
|
81
|
+
line-height:12.0pt;
|
82
|
+
mso-pagination:widow-orphan;
|
83
|
+
tab-stops:20.15pt;
|
84
|
+
font-size:10.0pt;
|
85
|
+
mso-bidi-font-size:11.0pt;
|
86
|
+
font-family:$bodyfont;
|
87
|
+
font-size:10.0pt;
|
88
|
+
mso-fareast-font-family:$bodyfont;
|
89
|
+
mso-bidi-font-family:$bodyfont;
|
90
|
+
mso-ansi-language:EN-GB;}
|
91
|
+
p.ANNEX, li.ANNEX, div.ANNEX
|
92
|
+
{mso-style-name:ANNEX;
|
93
|
+
mso-style-priority:10;
|
94
|
+
mso-style-unhide:no;
|
95
|
+
mso-style-next:Normal;
|
96
|
+
margin-top:0cm;
|
97
|
+
margin-right:0cm;
|
98
|
+
margin-bottom:24.0pt;
|
99
|
+
margin-left:0cm;
|
100
|
+
text-align:center;
|
101
|
+
text-indent:0cm;
|
102
|
+
line-height:15.5pt;
|
103
|
+
mso-line-height-rule:exactly;
|
104
|
+
page-break-before:always;
|
105
|
+
mso-pagination:widow-orphan;
|
106
|
+
page-break-after:avoid;
|
107
|
+
mso-outline-level:1;
|
108
|
+
mso-list:l0 level1 lfo12;
|
109
|
+
tab-stops:20.15pt;
|
110
|
+
font-size:14.0pt;
|
111
|
+
mso-bidi-font-size:11.0pt;
|
112
|
+
font-family:$headerfont;
|
113
|
+
mso-fareast-font-family:$headerfont;
|
114
|
+
mso-bidi-font-family:$headerfont;
|
115
|
+
mso-ansi-language:EN-GB;
|
116
|
+
mso-fareast-language:JA;
|
117
|
+
font-weight:bold;
|
118
|
+
mso-bidi-font-weight:normal;}
|
119
|
+
p.BiblioTitle, li.BiblioTitle, div.BiblioTitle
|
120
|
+
{mso-style-name:"Biblio Title";
|
121
|
+
mso-style-noshow:yes;
|
122
|
+
mso-style-unhide:no;
|
123
|
+
margin-top:0cm;
|
124
|
+
margin-right:0cm;
|
125
|
+
margin-bottom:15.5pt;
|
126
|
+
margin-left:0cm;
|
127
|
+
text-align:center;
|
128
|
+
line-height:15.5pt;
|
129
|
+
mso-pagination:widow-orphan;
|
130
|
+
mso-outline-level:1;
|
131
|
+
tab-stops:20.15pt;
|
132
|
+
font-size:14.0pt;
|
133
|
+
mso-bidi-font-size:11.0pt;
|
134
|
+
font-family:$headerfont;
|
135
|
+
mso-fareast-font-family:$headerfont;
|
136
|
+
mso-bidi-font-family:$headerfont;
|
137
|
+
mso-ansi-language:EN-GB;
|
138
|
+
font-weight:bold;
|
139
|
+
mso-bidi-font-weight:normal;}
|
140
|
+
p.Definition, li.Definition, div.Definition
|
141
|
+
{mso-style-name:Definition;
|
142
|
+
mso-style-priority:9;
|
143
|
+
mso-style-unhide:no;
|
144
|
+
margin-top:0cm;
|
145
|
+
margin-right:0cm;
|
146
|
+
margin-bottom:12.0pt;
|
147
|
+
margin-left:0cm;
|
148
|
+
text-align:justify;
|
149
|
+
line-height:12.0pt;
|
150
|
+
mso-pagination:widow-orphan;
|
151
|
+
tab-stops:20.15pt;
|
152
|
+
font-size:11.0pt;
|
153
|
+
font-family:$bodyfont;
|
154
|
+
mso-fareast-font-family:$bodyfont;
|
155
|
+
mso-bidi-font-family:$bodyfont;
|
156
|
+
mso-ansi-language:EN-GB;}
|
157
|
+
p.ForewordTitle, li.ForewordTitle, div.ForewordTitle
|
158
|
+
{mso-style-name:"Foreword Title";
|
159
|
+
mso-style-noshow:yes;
|
160
|
+
mso-style-unhide:no;
|
161
|
+
margin-top:0cm;
|
162
|
+
margin-right:0cm;
|
163
|
+
margin-bottom:15.5pt;
|
164
|
+
margin-left:0cm;
|
165
|
+
text-align:justify;
|
166
|
+
line-height:15.5pt;
|
167
|
+
page-break-before:always;
|
168
|
+
mso-pagination:widow-orphan;
|
169
|
+
page-break-after:avoid;
|
170
|
+
mso-outline-level:1;
|
171
|
+
mso-hyphenate:none;
|
172
|
+
tab-stops:20.15pt;
|
173
|
+
font-size:14.0pt;
|
174
|
+
mso-bidi-font-size:11.0pt;
|
175
|
+
font-family:$headerfont;
|
176
|
+
mso-fareast-font-family:$headerfont;
|
177
|
+
mso-bidi-font-family:$headerfont;
|
178
|
+
mso-ansi-language:EN-GB;
|
179
|
+
font-weight:bold;
|
180
|
+
mso-bidi-font-weight:normal;}
|
181
|
+
p.IntroTitle, li.IntroTitle, div.IntroTitle
|
182
|
+
{mso-style-name:"Intro Title";
|
183
|
+
mso-style-noshow:yes;
|
184
|
+
mso-style-unhide:no;
|
185
|
+
mso-style-parent:"Foreword Title";
|
186
|
+
margin-top:0cm;
|
187
|
+
margin-right:0cm;
|
188
|
+
margin-bottom:15.5pt;
|
189
|
+
margin-left:0cm;
|
190
|
+
text-align:justify;
|
191
|
+
line-height:15.5pt;
|
192
|
+
mso-pagination:widow-orphan;
|
193
|
+
page-break-after:avoid;
|
194
|
+
mso-outline-level:1;
|
195
|
+
mso-hyphenate:none;
|
196
|
+
tab-stops:20.15pt;
|
197
|
+
font-size:14.0pt;
|
198
|
+
mso-bidi-font-size:11.0pt;
|
199
|
+
page-break-before:always;
|
200
|
+
font-family:$headerfont;
|
201
|
+
mso-fareast-font-family:$headerfont;
|
202
|
+
mso-bidi-font-family:$headerfont;
|
203
|
+
mso-ansi-language:EN-GB;
|
204
|
+
font-weight:bold;
|
205
|
+
mso-bidi-font-weight:normal;}
|
206
|
+
p.zzContents, li.zzContents, div.zzContents
|
207
|
+
{mso-style-name:zzContents;
|
208
|
+
mso-style-noshow:yes;
|
209
|
+
mso-style-unhide:no;
|
210
|
+
mso-style-next:"TOC 1";
|
211
|
+
margin-top:48.0pt;
|
212
|
+
margin-right:0cm;
|
213
|
+
margin-bottom:15.5pt;
|
214
|
+
margin-left:0cm;
|
215
|
+
line-height:15.5pt;
|
216
|
+
mso-line-height-rule:exactly;
|
217
|
+
page-break-before:always;
|
218
|
+
mso-pagination:widow-orphan;
|
219
|
+
page-break-after:avoid;
|
220
|
+
mso-hyphenate:none;
|
221
|
+
tab-stops:20.15pt;
|
222
|
+
font-size:14.0pt;
|
223
|
+
mso-bidi-font-size:11.0pt;
|
224
|
+
font-family:$headerfont;
|
225
|
+
mso-fareast-font-family:$headerfont;
|
226
|
+
mso-bidi-font-family:$headerfont;
|
227
|
+
mso-ansi-language:EN-GB;
|
228
|
+
font-weight:bold;
|
229
|
+
mso-bidi-font-weight:normal;}
|
230
|
+
p.zzCopyright, li.zzCopyright
|
231
|
+
{mso-style-name:zzCopyright;
|
232
|
+
mso-style-noshow:yes;
|
233
|
+
mso-style-unhide:no;
|
234
|
+
mso-style-next:Normal;
|
235
|
+
margin-top:0cm;
|
236
|
+
margin-right:14.2pt;
|
237
|
+
margin-bottom:12.0pt;
|
238
|
+
margin-left:14.2pt;
|
239
|
+
text-align:justify;
|
240
|
+
line-height:12.0pt;
|
241
|
+
mso-pagination:widow-orphan;
|
242
|
+
tab-stops:20.15pt 25.7pt 481.15pt;
|
243
|
+
padding:0cm;
|
244
|
+
mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt;
|
245
|
+
font-size:10.5pt;
|
246
|
+
font-family:$bodyfont;
|
247
|
+
mso-fareast-font-family:$bodyfont;
|
248
|
+
mso-bidi-font-family:$bodyfont;
|
249
|
+
mso-ansi-language:EN-GB;}
|
250
|
+
div.zzCopyright
|
251
|
+
{mso-element:para-border-div;
|
252
|
+
border:solid windowtext 1.0pt;
|
253
|
+
mso-border-top-alt:solid windowtext .5pt;
|
254
|
+
mso-border-left-alt:solid windowtext .5pt;
|
255
|
+
mso-border-right-alt:solid windowtext .5pt;
|
256
|
+
mso-border-bottom-alt:solid windowtext .5pt;
|
257
|
+
padding:1.0pt 4.0pt 0cm 4.0pt;
|
258
|
+
margin-left:5.1pt;
|
259
|
+
margin-right:5.1pt;}
|
260
|
+
p.zzCopyright_address
|
261
|
+
{margin-top:0cm;
|
262
|
+
margin-right:14.2pt;
|
263
|
+
margin-bottom:0.0pt;
|
264
|
+
margin-left:14.2pt;
|
265
|
+
mso-layout-grid-align:none;
|
266
|
+
text-autospace:none;
|
267
|
+
padding-left:20pt;
|
268
|
+
mso-padding-alt-left:20pt;
|
269
|
+
font-size:10.0pt;
|
270
|
+
text-align:left;
|
271
|
+
mso-bidi-font-size:11.0pt;}
|
272
|
+
p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle
|
273
|
+
{mso-style-name:zzSTDTitle;
|
274
|
+
mso-style-noshow:yes;
|
275
|
+
mso-style-unhide:no;
|
276
|
+
mso-style-next:Normal;
|
277
|
+
margin-top:20.0pt;
|
278
|
+
margin-right:0cm;
|
279
|
+
margin-bottom:38.0pt;
|
280
|
+
margin-left:0cm;
|
281
|
+
line-height:17.5pt;
|
282
|
+
mso-line-height-rule:exactly;
|
283
|
+
mso-pagination:widow-orphan;
|
284
|
+
mso-hyphenate:none;
|
285
|
+
tab-stops:20.15pt;
|
286
|
+
font-size:16.0pt;
|
287
|
+
mso-bidi-font-size:11.0pt;
|
288
|
+
font-family:$headerfont;
|
289
|
+
mso-fareast-font-family:$headerfont;
|
290
|
+
mso-bidi-font-family:$headerfont;
|
291
|
+
mso-ansi-language:EN-GB;
|
292
|
+
font-weight:bold;
|
293
|
+
mso-bidi-font-weight:normal;}
|
294
|
+
p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1
|
295
|
+
{mso-style-name:zzSTDTitle;
|
296
|
+
mso-style-noshow:yes;
|
297
|
+
mso-style-unhide:no;
|
298
|
+
mso-style-next:Normal;
|
299
|
+
margin-top:0pt;
|
300
|
+
margin-right:0cm;
|
301
|
+
margin-bottom:18.0pt;
|
302
|
+
margin-left:0cm;
|
303
|
+
line-height:17.5pt;
|
304
|
+
mso-line-height-rule:exactly;
|
305
|
+
mso-pagination:widow-orphan;
|
306
|
+
mso-hyphenate:none;
|
307
|
+
tab-stops:20.15pt;
|
308
|
+
font-size:16.0pt;
|
309
|
+
mso-bidi-font-size:11.0pt;
|
310
|
+
font-family:$headerfont;
|
311
|
+
mso-fareast-font-family:$headerfont;
|
312
|
+
mso-bidi-font-family:$headerfont;
|
313
|
+
mso-ansi-language:EN-GB;
|
314
|
+
font-weight:bold;
|
315
|
+
mso-bidi-font-weight:normal;}
|
316
|
+
p.Quote, li.Quote, div.Quote
|
317
|
+
{mso-style-priority:99;
|
318
|
+
margin-top:0cm;
|
319
|
+
margin-right:36.0pt;
|
320
|
+
margin-bottom:0cm;
|
321
|
+
margin-left:36.0pt;
|
322
|
+
text-align:justify;
|
323
|
+
line-height:12.0pt;
|
324
|
+
mso-pagination:widow-orphan;
|
325
|
+
tab-stops:20.15pt;
|
326
|
+
font-size:10.5pt;
|
327
|
+
font-family:$bodyfont;
|
328
|
+
mso-fareast-font-family:$bodyfont;
|
329
|
+
mso-bidi-font-family:$bodyfont;
|
330
|
+
mso-ansi-language:EN-GB;}
|
331
|
+
p.QuoteAttribution
|
332
|
+
{text-align:right;
|
333
|
+
mso-style-priority:99;
|
334
|
+
margin-top:0cm;
|
335
|
+
margin-right:36.0pt;
|
336
|
+
margin-bottom:0cm;
|
337
|
+
margin-left:36.0pt;
|
338
|
+
line-height:12.0pt;
|
339
|
+
mso-pagination:widow-orphan;
|
340
|
+
tab-stops:20.15pt;
|
341
|
+
font-size:10.5pt;
|
342
|
+
font-family:$bodyfont;
|
343
|
+
mso-fareast-font-family:$bodyfont;
|
344
|
+
mso-bidi-font-family:$bodyfont;
|
345
|
+
mso-ansi-language:EN-GB;
|
346
|
+
}
|
347
|
+
p.Admonition, li.Admonition, div.Admonition
|
348
|
+
{mso-style-priority:99;
|
349
|
+
margin-top:0cm;
|
350
|
+
margin-right:57.6pt;
|
351
|
+
margin-bottom:0cm;
|
352
|
+
margin-left:57.6pt;
|
353
|
+
margin-bottom:.0001pt;
|
354
|
+
mso-pagination:widow-orphan;
|
355
|
+
border:none;
|
356
|
+
mso-border-alt:solid #4472C4 .25pt;
|
357
|
+
mso-border-themecolor:accent1;
|
358
|
+
padding:0cm;
|
359
|
+
mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
|
360
|
+
font-size:12.0pt;
|
361
|
+
font-family:$bodyfont;
|
362
|
+
mso-ascii-font-family:$bodyfont;
|
363
|
+
mso-ascii-theme-font:minor-latin;
|
364
|
+
mso-fareast-font-family:$bodyfont;
|
365
|
+
mso-fareast-theme-font:minor-fareast;
|
366
|
+
mso-hansi-font-family:$bodyfont;
|
367
|
+
mso-hansi-theme-font:minor-latin;
|
368
|
+
mso-bidi-font-family:$bodyfont;
|
369
|
+
mso-bidi-theme-font:minor-bidi;
|
370
|
+
color:#4472C4;
|
371
|
+
mso-themecolor:accent1;
|
372
|
+
mso-ansi-language:EN-AU;
|
373
|
+
font-style:italic;}
|
374
|
+
p.Code, li.Code, div.Code
|
375
|
+
{mso-style-name:Code;
|
376
|
+
mso-style-priority:16;
|
377
|
+
mso-style-unhide:no;
|
378
|
+
mso-style-qformat:yes;
|
379
|
+
margin:0cm;
|
380
|
+
margin-bottom:.0001pt;
|
381
|
+
line-height:10.0pt;
|
382
|
+
mso-pagination:widow-orphan;
|
383
|
+
tab-stops:20.15pt;
|
384
|
+
font-size:9.0pt;
|
385
|
+
mso-bidi-font-size:11.0pt;
|
386
|
+
font-family:$monospacefont;
|
387
|
+
mso-fareast-font-family:Calibri;
|
388
|
+
mso-bidi-font-family:"Source Sans Pro";
|
389
|
+
mso-ansi-language:EN-GB;}
|
390
|
+
p.Formula, li.Formula, div.Formula
|
391
|
+
{mso-style-name:Formula;
|
392
|
+
mso-style-noshow:yes;
|
393
|
+
mso-style-unhide:no;
|
394
|
+
margin-top:0cm;
|
395
|
+
margin-right:0cm;
|
396
|
+
margin-bottom:11.0pt;
|
397
|
+
margin-left:20.15pt;
|
398
|
+
line-height:12.0pt;
|
399
|
+
mso-pagination:widow-orphan;
|
400
|
+
tab-stops:right 487.45pt;
|
401
|
+
font-size:10.5pt;
|
402
|
+
font-family:$bodyfont;
|
403
|
+
mso-fareast-font-family:$bodyfont;
|
404
|
+
mso-bidi-font-family:$bodyfont;
|
405
|
+
mso-ansi-language:EN-GB;}
|
406
|
+
@page WordSection1
|
407
|
+
{size:595.3pt 841.9pt;
|
408
|
+
margin:39.7pt 53.85pt 1.0cm 53.85pt;
|
409
|
+
mso-header-margin:35.45pt;
|
410
|
+
mso-footer-margin:14.2pt;
|
411
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
|
412
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
413
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
|
414
|
+
mso-paper-source:0;}
|
415
|
+
div.WordSection1
|
416
|
+
{page:WordSection1;}
|
417
|
+
@page WordSection2
|
418
|
+
{size:595.3pt 841.9pt;
|
419
|
+
margin:39.7pt 53.85pt 1.0cm 53.85pt;
|
420
|
+
mso-header-margin:35.45pt;
|
421
|
+
mso-footer-margin:14.2pt;
|
422
|
+
mso-page-numbers:roman-lower;
|
423
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
424
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
425
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2;
|
426
|
+
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
427
|
+
mso-paper-source:0;}
|
428
|
+
div.WordSection2
|
429
|
+
{page:WordSection2;}
|
430
|
+
@page WordSection3
|
431
|
+
{size:595.3pt 841.9pt;
|
432
|
+
margin:39.7pt 53.85pt 1.0cm 53.85pt;
|
433
|
+
mso-header-margin:35.45pt;
|
434
|
+
mso-footer-margin:14.2pt;
|
435
|
+
mso-page-numbers:1;
|
436
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
437
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
438
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3;
|
439
|
+
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
440
|
+
mso-paper-source:0;}
|
441
|
+
div.WordSection3
|
442
|
+
{page:WordSection3;}
|
443
|
+
ol
|
444
|
+
{margin-bottom:0cm;}
|
445
|
+
ul
|
446
|
+
{margin-bottom:0cm;}
|
447
|
+
table.MsoISOTable
|
448
|
+
{mso-style-name:"Table ISO";
|
449
|
+
mso-tstyle-rowband-size:0;
|
450
|
+
mso-tstyle-colband-size:0;
|
451
|
+
mso-style-noshow:yes;
|
452
|
+
mso-style-priority:99;
|
453
|
+
mso-style-parent:"";
|
454
|
+
mso-padding-alt:0cm 2.85pt 0cm 2.85pt;
|
455
|
+
mso-para-margin:0cm;
|
456
|
+
mso-para-margin-bottom:.0001pt;
|
457
|
+
mso-pagination:widow-orphan;
|
458
|
+
border-collapse:collapse;
|
459
|
+
mso-table-layout-alt:fixed;
|
460
|
+
border:solid windowtext 2pt;
|
461
|
+
mso-border-alt:solid windowtext 2pt;
|
462
|
+
mso-yfti-tbllook:480;
|
463
|
+
mso-border-insideh:.75pt solid windowtext;
|
464
|
+
mso-border-insidev:.75pt solid windowtext;
|
465
|
+
font-size:10.0pt;
|
466
|
+
font-family:$bodyfont;}
|
467
|
+
table.MsoISOTable tr
|
468
|
+
{page-break-inside:avoid;}
|
469
|
+
table.MsoISOTable th
|
470
|
+
{border:solid windowtext 1pt;
|
471
|
+
mso-border-alt:solid windowtext 1pt;
|
472
|
+
padding:0cm 2.85pt 0cm 2.85pt;}
|
473
|
+
table.MsoISOTable td
|
474
|
+
{border:solid windowtext 1pt;
|
475
|
+
mso-border-alt:solid windowtext 1pt;
|
476
|
+
padding:0cm 2.85pt 0cm 2.85pt;}
|
477
|
+
table.MsoTableGrid
|
478
|
+
{mso-style-name:"Table Grid";
|
479
|
+
mso-tstyle-rowband-size:0;
|
480
|
+
mso-tstyle-colband-size:0;
|
481
|
+
mso-style-priority:39;
|
482
|
+
mso-style-unhide:no;
|
483
|
+
border:solid windowtext 1.0pt;
|
484
|
+
mso-border-alt:solid windowtext .5pt;
|
485
|
+
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
|
486
|
+
mso-border-insideh:.5pt solid windowtext;
|
487
|
+
mso-border-insidev:.5pt solid windowtext;
|
488
|
+
mso-para-margin:0cm;
|
489
|
+
mso-para-margin-bottom:.0001pt;
|
490
|
+
mso-pagination:widow-orphan;
|
491
|
+
font-size:10.0pt;
|
492
|
+
font-family:$bodyfont;}
|
493
|
+
td { page-break-inside:avoid; }
|
494
|
+
tr { page-break-after:avoid; }
|
495
|
+
span.stem
|
496
|
+
{font-family:"Cambria Math",serif;
|
497
|
+
mso-ascii-font-family:"Cambria Math";
|
498
|
+
font-style:
|
499
|
+
italic;}
|
500
|
+
div.formula
|
501
|
+
{tab-stops:right 487.45pt;}
|
502
|
+
body
|
503
|
+
{tab-interval:36.0pt;}
|
504
|
+
dt
|
505
|
+
{page-break-inside:avoid;
|
506
|
+
page-break-after:avoid}
|
507
|
+
.coverpage_docnumber
|
508
|
+
{text-align:center;
|
509
|
+
font-size:14.0pt;
|
510
|
+
font-weight:bold;}
|
511
|
+
.coverpage_techcommittee
|
512
|
+
{text-align:center;
|
513
|
+
font-size:12.0pt}
|
514
|
+
.coverpage_docstage
|
515
|
+
{text-align:center;
|
516
|
+
font-size:30.0pt;
|
517
|
+
color:#485094;}
|
518
|
+
div.coverpage_warning
|
519
|
+
{mso-element:para-border-div;
|
520
|
+
border:solid windowtext 1.0pt #485094;
|
521
|
+
mso-border-alt:solid windowtext .5pt;
|
522
|
+
padding:1.0pt 4.0pt 1.0pt 4.0pt #485094;
|
523
|
+
font-size:10.0pt;
|
524
|
+
margin-left:4.25pt;
|
525
|
+
margin-right:4.25pt}
|
526
|
+
.coverpage_warning
|
527
|
+
{color:#485094;
|
528
|
+
font-size:10.0pt;}
|
529
|
+
|
530
|
+
a.TableFootnoteRef
|
531
|
+
{mso-style-priority:99;
|
532
|
+
vertical-align:super;}
|
533
|
+
|
534
|
+
aside {
|
535
|
+
font-size:10.0pt;
|
536
|
+
}
|
537
|
+
div.example {
|
538
|
+
margin-left:70.9pt;
|
539
|
+
text-indent:-70.9pt;
|
540
|
+
}
|
541
|
+
p.example, li.example, div.example, td.example, td.example p
|
542
|
+
{ margin:0in;
|
543
|
+
margin-bottom:.0001pt;
|
544
|
+
mso-pagination:none;
|
545
|
+
font-size:10.0pt;
|
546
|
+
font-family:$bodyfont;}
|
547
|
+
span.note_label, span.example_label, td.example_label, td.note_label
|
548
|
+
{
|
549
|
+
font-size: 10.0pt;
|
550
|
+
font-family:$bodyfont;
|
551
|
+
}
|
552
|
+
|
553
|
+
table.dl
|
554
|
+
{margin-top:0cm;
|
555
|
+
margin-right:0cm;
|
556
|
+
margin-bottom:11.0pt;
|
557
|
+
margin-left:20.15pt;}
|
558
|
+
ol
|
559
|
+
{margin-bottom:0cm;
|
560
|
+
margin-left:0cm;}
|
561
|
+
ul
|
562
|
+
{margin-bottom:0cm;
|
563
|
+
margin-left:0cm;}
|
564
|
+
|