metanorma-csd 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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();
@@ -0,0 +1,5 @@
1
+ module Asciidoctor
2
+ module Csd
3
+ VERSION = "1.0.1"
4
+ end
5
+ end
@@ -0,0 +1,123 @@
1
+ require "isodoc"
2
+ require_relative "metadata"
3
+
4
+ module IsoDoc
5
+ module Csd
6
+ # A {Converter} implementation that generates CSD output, and a document
7
+ # schema encapsulation of the document for validation
8
+ class HtmlConvert < IsoDoc::HtmlConvert
9
+ def initialize(options)
10
+ @libdir = File.dirname(__FILE__)
11
+ super
12
+ end
13
+
14
+ def default_fonts(options)
15
+ {
16
+ bodyfont: (options[:script] == "Hans" ? '"SimSun",serif' : '"Overpass",sans-serif'),
17
+ headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' : '"Overpass",sans-serif'),
18
+ monospacefont: '"Space Mono",monospace'
19
+ }
20
+ end
21
+
22
+ def default_file_locations(options)
23
+ {
24
+ htmlstylesheet: html_doc_path("htmlstyle.scss"),
25
+ htmlcoverpage: html_doc_path("html_csd_titlepage.html"),
26
+ htmlintropage: html_doc_path("html_csd_intro.html"),
27
+ scripts: html_doc_path("scripts.html"),
28
+ }
29
+ end
30
+
31
+ def metadata_init(lang, script, labels)
32
+ @meta = Metadata.new(lang, script, labels)
33
+ end
34
+
35
+ def annex_name(annex, name, div)
36
+ div.h1 **{ class: "Annex" } do |t|
37
+ t << "#{get_anchors[annex['id']][:label]} "
38
+ t << "<b>#{name.text}</b>"
39
+ end
40
+ end
41
+
42
+ def annex_name_lbl(clause, num)
43
+ obl = l10n("(#{@inform_annex_lbl})")
44
+ obl = l10n("(#{@norm_annex_lbl})") if clause["obligation"] == "normative"
45
+ l10n("<b>#{@annex_lbl} #{num}</b> #{obl}")
46
+ end
47
+
48
+ def pre_parse(node, out)
49
+ out.pre node.text # content.gsub(/</, "&lt;").gsub(/>/, "&gt;")
50
+ end
51
+
52
+ def term_defs_boilerplate(div, source, term, preface)
53
+ if source.empty? && term.nil?
54
+ div << @no_terms_boilerplate
55
+ else
56
+ div << term_defs_boilerplate_cont(source, term)
57
+ end
58
+ end
59
+
60
+ def i18n_init(lang, script)
61
+ super
62
+ @annex_lbl = "Appendix"
63
+ end
64
+
65
+ def error_parse(node, out)
66
+ # catch elements not defined in ISO
67
+ case node.name
68
+ when "pre"
69
+ pre_parse(node, out)
70
+ when "keyword"
71
+ out.span node.text, **{ class: "keyword" }
72
+ else
73
+ super
74
+ end
75
+ end
76
+
77
+ def html_head()
78
+ <<~HEAD.freeze
79
+ <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
80
+
81
+ <!--TOC script import-->
82
+ <script type="text/javascript" src="https://cdn.rawgit.com/jgallen23/toc/0.3.2/dist/toc.min.js"></script>
83
+
84
+ <!--Google fonts-->
85
+ <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i|Space+Mono:400,700" rel="stylesheet">
86
+ <link href="https://fonts.googleapis.com/css?family=Overpass:300,300i,600,900" rel="stylesheet">
87
+ <!--Font awesome import for the link icon-->
88
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/solid.css" integrity="sha384-v2Tw72dyUXeU3y4aM2Y0tBJQkGfplr39mxZqlTBDUZAb9BGoC40+rdFCG0m10lXk" crossorigin="anonymous">
89
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/fontawesome.css" integrity="sha384-q3jl8XQu1OpdLgGFvNRnPdj5VIlCvgsDQTQB6owSOHWlAurxul7f+JpUOVdAiJ5P" crossorigin="anonymous">
90
+ <style class="anchorjs"></style>
91
+ HEAD
92
+ end
93
+
94
+ def make_body(xml, docxml)
95
+ body_attr = { lang: "EN-US", link: "blue", vlink: "#954F72", "xml:lang": "EN-US", class: "container" }
96
+ xml.body **body_attr do |body|
97
+ make_body1(body, docxml)
98
+ make_body2(body, docxml)
99
+ make_body3(body, docxml)
100
+ end
101
+ end
102
+
103
+ def html_toc(docxml)
104
+ docxml
105
+ end
106
+
107
+ def cleanup(docxml)
108
+ super
109
+ term_cleanup(docxml)
110
+ end
111
+
112
+ def term_cleanup(docxml)
113
+ docxml.xpath("//p[@class = 'Terms']").each do |d|
114
+ h2 = d.at("./preceding-sibling::*[@class = 'TermNum'][1]")
115
+ h2.add_child("&nbsp;")
116
+ h2.add_child(d.remove)
117
+ end
118
+ docxml
119
+ end
120
+ end
121
+ end
122
+ end
123
+
@@ -0,0 +1,548 @@
1
+ p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode
2
+ {mso-style-unhide:no;
3
+ mso-style-qformat:yes;
4
+ mso-style-parent:"";
5
+ margin-top:0cm;
6
+ margin-right:0cm;
7
+ margin-bottom:12.0pt;
8
+ margin-left:0cm;
9
+ text-align:left;
10
+ line-height:12.0pt;
11
+ mso-pagination:widow-orphan;
12
+ tab-stops:20.15pt;
13
+ font-size:9.0pt;
14
+ font-family:$monospacefont;
15
+ mso-fareast-font-family:Calibri;
16
+ mso-bidi-font-family:"Courier New";
17
+ mso-ansi-language:EN-GB;}
18
+ p.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, div.NormRef
19
+ {mso-style-unhide:no;
20
+ mso-style-qformat:yes;
21
+ mso-style-parent:"";
22
+ margin-top:0cm;
23
+ margin-right:0cm;
24
+ margin-bottom:12.0pt;
25
+ margin-left:33.15pt;
26
+ text-indent:-33.15pt;
27
+ tab-stops: 33.15pt;
28
+ line-height:12.0pt;
29
+ mso-pagination:widow-orphan;
30
+ font-size:11.0pt;
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:11.0pt;
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:11.0pt;
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
+ p.Admonition, li.Admonition, div.Admonition
334
+ {mso-style-priority:99;
335
+ margin-top:0cm;
336
+ margin-right:57.6pt;
337
+ margin-bottom:0cm;
338
+ margin-left:57.6pt;
339
+ margin-bottom:.0001pt;
340
+ mso-pagination:widow-orphan;
341
+ border:none;
342
+ mso-border-alt:solid #4472C4 .25pt;
343
+ mso-border-themecolor:accent1;
344
+ padding:0cm;
345
+ mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
346
+ font-size:12.0pt;
347
+ font-family:$bodyfont;
348
+ mso-ascii-font-family:$bodyfont;
349
+ mso-ascii-theme-font:minor-latin;
350
+ mso-fareast-font-family:$bodyfont;
351
+ mso-fareast-theme-font:minor-fareast;
352
+ mso-hansi-font-family:$bodyfont;
353
+ mso-hansi-theme-font:minor-latin;
354
+ mso-bidi-font-family:$bodyfont;
355
+ mso-bidi-theme-font:minor-bidi;
356
+ color:#4472C4;
357
+ mso-themecolor:accent1;
358
+ mso-ansi-language:EN-AU;
359
+ font-style:italic;}
360
+ p.Code, li.Code, div.Code
361
+ {mso-style-name:Code;
362
+ mso-style-priority:16;
363
+ mso-style-unhide:no;
364
+ mso-style-qformat:yes;
365
+ margin:0cm;
366
+ margin-bottom:.0001pt;
367
+ line-height:10.0pt;
368
+ mso-pagination:widow-orphan;
369
+ tab-stops:20.15pt;
370
+ font-size:9.0pt;
371
+ mso-bidi-font-size:11.0pt;
372
+ font-family:$monospacefont;
373
+ mso-fareast-font-family:Calibri;
374
+ mso-bidi-font-family:"Source Sans Pro";
375
+ mso-ansi-language:EN-GB;}
376
+ p.Formula, li.Formula, div.Formula
377
+ {mso-style-name:Formula;
378
+ mso-style-noshow:yes;
379
+ mso-style-unhide:no;
380
+ margin-top:0cm;
381
+ margin-right:0cm;
382
+ margin-bottom:11.0pt;
383
+ margin-left:20.15pt;
384
+ line-height:12.0pt;
385
+ mso-pagination:widow-orphan;
386
+ tab-stops:right 487.45pt;
387
+ font-size:11.0pt;
388
+ font-family:$bodyfont;
389
+ mso-fareast-font-family:$bodyfont;
390
+ mso-bidi-font-family:$bodyfont;
391
+ mso-ansi-language:EN-GB;}
392
+ @page WordSection1
393
+ {size:595.3pt 841.9pt;
394
+ margin:39.7pt 53.85pt 1.0cm 53.85pt;
395
+ mso-header-margin:35.45pt;
396
+ mso-footer-margin:14.2pt;
397
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
398
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
399
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
400
+ mso-paper-source:0;}
401
+ div.WordSection1
402
+ {page:WordSection1;}
403
+ @page WordSection2
404
+ {size:595.3pt 841.9pt;
405
+ margin:39.7pt 53.85pt 1.0cm 53.85pt;
406
+ mso-header-margin:35.45pt;
407
+ mso-footer-margin:14.2pt;
408
+ mso-page-numbers:roman-lower;
409
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
410
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
411
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2;
412
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
413
+ mso-paper-source:0;}
414
+ div.WordSection2
415
+ {page:WordSection2;}
416
+ @page WordSection3
417
+ {size:595.3pt 841.9pt;
418
+ margin:39.7pt 53.85pt 1.0cm 53.85pt;
419
+ mso-header-margin:35.45pt;
420
+ mso-footer-margin:14.2pt;
421
+ mso-page-numbers:1;
422
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
423
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
424
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3;
425
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
426
+ mso-paper-source:0;}
427
+ div.WordSection3
428
+ {page:WordSection3;}
429
+ ol
430
+ {margin-bottom:0cm;}
431
+ ul
432
+ {margin-bottom:0cm;}
433
+ table.MsoISOTable
434
+ {mso-style-name:"Table ISO";
435
+ mso-tstyle-rowband-size:0;
436
+ mso-tstyle-colband-size:0;
437
+ mso-style-noshow:yes;
438
+ mso-style-priority:99;
439
+ mso-style-parent:"";
440
+ mso-padding-alt:0cm 2.85pt 0cm 2.85pt;
441
+ mso-para-margin:0cm;
442
+ mso-para-margin-bottom:.0001pt;
443
+ mso-pagination:widow-orphan;
444
+ border-collapse:collapse;
445
+ mso-table-layout-alt:fixed;
446
+ border:solid windowtext 2pt;
447
+ mso-border-alt:solid windowtext 2pt;
448
+ mso-yfti-tbllook:480;
449
+ mso-border-insideh:.75pt solid windowtext;
450
+ mso-border-insidev:.75pt solid windowtext;
451
+ font-size:10.0pt;
452
+ font-family:$bodyfont;}
453
+ table.MsoISOTable tr
454
+ {page-break-inside:avoid;}
455
+ table.MsoISOTable th
456
+ {border:solid windowtext 1pt;
457
+ mso-border-alt:solid windowtext 1pt;
458
+ padding:0cm 2.85pt 0cm 2.85pt;}
459
+ table.MsoISOTable td
460
+ {border:solid windowtext 1pt;
461
+ mso-border-alt:solid windowtext 1pt;
462
+ padding:0cm 2.85pt 0cm 2.85pt;}
463
+ table.MsoTableGrid
464
+ {mso-style-name:"Table Grid";
465
+ mso-tstyle-rowband-size:0;
466
+ mso-tstyle-colband-size:0;
467
+ mso-style-priority:39;
468
+ mso-style-unhide:no;
469
+ border:solid windowtext 1.0pt;
470
+ mso-border-alt:solid windowtext .5pt;
471
+ mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
472
+ mso-border-insideh:.5pt solid windowtext;
473
+ mso-border-insidev:.5pt solid windowtext;
474
+ mso-para-margin:0cm;
475
+ mso-para-margin-bottom:.0001pt;
476
+ mso-pagination:widow-orphan;
477
+ font-size:10.0pt;
478
+ font-family:$bodyfont;}
479
+ td { page-break-inside:avoid; }
480
+ tr { page-break-after:avoid; }
481
+ span.stem
482
+ {font-family:"Cambria Math",serif;
483
+ mso-ascii-font-family:"Cambria Math";
484
+ font-style:
485
+ italic;}
486
+ div.formula
487
+ {tab-stops:right 487.45pt;}
488
+ body
489
+ {tab-interval:36.0pt;}
490
+ dt
491
+ {page-break-inside:avoid;
492
+ page-break-after:avoid}
493
+ .coverpage_docnumber
494
+ {text-align:center;
495
+ font-size:14.0pt;
496
+ font-weight:bold;}
497
+ .coverpage_techcommittee
498
+ {text-align:center;}
499
+ .coverpage_docstage
500
+ {text-align:center;
501
+ font-size:30.0pt;
502
+ color:#485094;}
503
+ div.coverpage_warning
504
+ {mso-element:para-border-div;
505
+ border:solid windowtext 1.0pt #485094;
506
+ mso-border-alt:solid windowtext .5pt;
507
+ padding:1.0pt 4.0pt 1.0pt 4.0pt #485094;
508
+ margin-left:4.25pt;
509
+ margin-right:4.25pt}
510
+ .coverpage_warning
511
+ {color:#485094;
512
+ font-size:10.0pt;}
513
+
514
+ a.TableFootnoteRef
515
+ {mso-style-priority:99;
516
+ vertical-align:super;}
517
+
518
+ aside {
519
+ font-size:10.0pt;
520
+ }
521
+ div.example {
522
+ margin-left:70.9pt;
523
+ text-indent:-70.9pt;
524
+ }
525
+ p.example, li.example, div.example, td.example, td.example p
526
+ { margin:0in;
527
+ margin-bottom:.0001pt;
528
+ mso-pagination:none;
529
+ font-size:10.0pt;
530
+ font-family:$bodyfont;}
531
+ span.note_label, span.example_label, td.example_label, td.note_label
532
+ {
533
+ font-size: 10.0pt;
534
+ font-family:$bodyfont;
535
+ }
536
+
537
+ table.dl
538
+ {margin-top:0cm;
539
+ margin-right:0cm;
540
+ margin-bottom:11.0pt;
541
+ margin-left:20.15pt;}
542
+ ol
543
+ {margin-bottom:0cm;
544
+ margin-left:0cm;}
545
+ ul
546
+ {margin-bottom:0cm;
547
+ margin-left:0cm;}
548
+