metanorma-gb 1.3.26 → 1.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +0 -1
- data/.github/workflows/ubuntu.yml +10 -7
- data/.github/workflows/windows.yml +0 -1
- data/.gitignore +0 -2
- data/Gemfile +0 -1
- data/Rakefile +17 -0
- data/lib/asciidoctor/gb/biblio.rng +1 -1
- data/lib/asciidoctor/gb/converter.rb +16 -17
- data/lib/asciidoctor/gb/front_id.rb +1 -1
- data/lib/asciidoctor/gb/isodoc.rng +427 -0
- data/lib/asciidoctor/gb/isostandard.rng +3 -0
- data/lib/asciidoctor/gb/reqt.rng +23 -0
- data/lib/isodoc/gb/{gbbaseconvert.rb → base_convert.rb} +15 -13
- data/lib/isodoc/gb/{gbcleanup.rb → cleanup.rb} +0 -0
- data/lib/isodoc/gb/{gbconvert.rb → common.rb} +1 -1
- data/lib/isodoc/gb/gb.recommendation.xsl +752 -351
- data/lib/isodoc/gb/html/_coverpage.css +193 -0
- data/lib/isodoc/gb/html/gb.css +657 -0
- data/lib/isodoc/gb/html/htmlcompliantstyle.css +1303 -0
- data/lib/isodoc/gb/html/htmlcompliantstyle.scss +0 -1
- data/lib/isodoc/gb/html/htmlstyle.css +844 -0
- data/lib/isodoc/gb/html/wordstyle.css +2932 -0
- data/lib/isodoc/gb/{gbhtmlconvert.rb → html_convert.rb} +13 -3
- data/lib/isodoc/gb/pdf_convert.rb +2 -11
- data/lib/isodoc/gb/presentation_xml_convert.rb +10 -0
- data/lib/isodoc/gb/{gbwordconvert.rb → word_convert.rb} +18 -8
- data/lib/metanorma-gb.rb +3 -3
- data/lib/metanorma/gb/processor.rb +13 -10
- data/lib/metanorma/gb/version.rb +1 -1
- data/metanorma-gb.gemspec +3 -2
- metadata +35 -16
@@ -0,0 +1,193 @@
|
|
1
|
+
.doctitle-en, .doctitle-fr {
|
2
|
+
margin-top: 2em;
|
3
|
+
text-align: left; }
|
4
|
+
|
5
|
+
.doctitle-en {
|
6
|
+
background-color: black;
|
7
|
+
padding-left: 3em;
|
8
|
+
margin-left: -3em;
|
9
|
+
padding-top: 2em;
|
10
|
+
padding-bottom: 2em; }
|
11
|
+
.doctitle-en span {
|
12
|
+
font-size: 1.5em;
|
13
|
+
line-height: 1.5em;
|
14
|
+
font-weight: 900;
|
15
|
+
display: block;
|
16
|
+
color: white; }
|
17
|
+
|
18
|
+
.doctitle-fr span {
|
19
|
+
font-size: 1.2em;
|
20
|
+
line-height: 1.2em;
|
21
|
+
font-style: italic;
|
22
|
+
display: block; }
|
23
|
+
|
24
|
+
span.title {
|
25
|
+
text-transform: uppercase;
|
26
|
+
font-size: 1em;
|
27
|
+
font-weight: 800; }
|
28
|
+
|
29
|
+
.coverpage_docstage {
|
30
|
+
margin-top: 2em;
|
31
|
+
margin-bottom: 2em; }
|
32
|
+
|
33
|
+
.coverpage_warning {
|
34
|
+
border-top: solid 1px #f36f36;
|
35
|
+
border-bottom: solid 1px #f36f36;
|
36
|
+
margin: 1em 2em;
|
37
|
+
color: #485094;
|
38
|
+
padding: 1em; }
|
39
|
+
.coverpage_warning .title {
|
40
|
+
color: #f36f36;
|
41
|
+
font-weight: 500; }
|
42
|
+
.coverpage_warning .content {
|
43
|
+
font-style: italic; }
|
44
|
+
|
45
|
+
.coverpage_docnumber,
|
46
|
+
.coverpage_techcommittee {
|
47
|
+
text-align: right;
|
48
|
+
font-size: 14.0pt; }
|
49
|
+
|
50
|
+
.coverpage {
|
51
|
+
text-align: center;
|
52
|
+
padding: 2em 0; }
|
53
|
+
|
54
|
+
.coverpage-category {
|
55
|
+
float: left;
|
56
|
+
text-align: left; }
|
57
|
+
|
58
|
+
.coverpage-logo {
|
59
|
+
color: #485094; }
|
60
|
+
|
61
|
+
.coverpage-tc-name {
|
62
|
+
color: #485094;
|
63
|
+
font-size: 1.2em;
|
64
|
+
line-height: 1.2em;
|
65
|
+
margin: 0.25em 0; }
|
66
|
+
|
67
|
+
.coverpage-doc-identity {
|
68
|
+
background-color: #485094;
|
69
|
+
color: white;
|
70
|
+
font-size: 2em;
|
71
|
+
line-height: 2em;
|
72
|
+
margin: 0.5em 0; }
|
73
|
+
|
74
|
+
.coverpage-doc-identity-first {
|
75
|
+
font-size: 5mm;
|
76
|
+
text-align: right;
|
77
|
+
padding-right: 5mm;
|
78
|
+
padding-bottom: 1em;
|
79
|
+
padding-top: 1em; }
|
80
|
+
|
81
|
+
.coverpage-title {
|
82
|
+
font-weight: 400; }
|
83
|
+
.coverpage-title .title-second {
|
84
|
+
display: none; }
|
85
|
+
|
86
|
+
.coverpage-logo-text {
|
87
|
+
font-size: 24.0pt; }
|
88
|
+
|
89
|
+
.coverpage-stage-block {
|
90
|
+
font-style: italic;
|
91
|
+
text-align: center;
|
92
|
+
font-size: 1.25em;
|
93
|
+
font-weight: 600; }
|
94
|
+
|
95
|
+
span.date-publish {
|
96
|
+
float: left; }
|
97
|
+
|
98
|
+
span.date-active {
|
99
|
+
float: right; }
|
100
|
+
|
101
|
+
.coverpage-doc-relations {
|
102
|
+
font-size: 10.5pt;
|
103
|
+
padding-top: 0.5em; }
|
104
|
+
|
105
|
+
.coverpage-title-zh {
|
106
|
+
font-size: 8mm;
|
107
|
+
display: flex;
|
108
|
+
flex-wrap: wrap;
|
109
|
+
justify-content: center;
|
110
|
+
/* flex-direction: column; */
|
111
|
+
font-family: {{headerfont}}; }
|
112
|
+
|
113
|
+
.coverpage-title-zh span {
|
114
|
+
padding-top: 2mm;
|
115
|
+
font-size: 28pt; }
|
116
|
+
|
117
|
+
.coverpage-title-en {
|
118
|
+
margin-top: 10mm;
|
119
|
+
font-size: 18pt;
|
120
|
+
display: flex;
|
121
|
+
flex-wrap: wrap;
|
122
|
+
justify-content: center;
|
123
|
+
font-family: {{headerfont}}; }
|
124
|
+
|
125
|
+
.coverpage-title-en span {
|
126
|
+
display: block; }
|
127
|
+
|
128
|
+
.coverpage-title-en .title-first {
|
129
|
+
text-transform: uppercase; }
|
130
|
+
|
131
|
+
.coverpage-iso-relation {
|
132
|
+
font-size: 14pt;
|
133
|
+
margin-top: 10mm;
|
134
|
+
text-align: center; }
|
135
|
+
|
136
|
+
.coverpage-dates {
|
137
|
+
font-size: 14.0pt;
|
138
|
+
width: 100%;
|
139
|
+
margin-top: 25mm;
|
140
|
+
font-family: {{headerfont}};
|
141
|
+
border-bottom: 1px solid #000; }
|
142
|
+
|
143
|
+
.coverpage_footer {
|
144
|
+
text-align: center;
|
145
|
+
font-size: 16pt;
|
146
|
+
font-weight: 600;
|
147
|
+
width: 100%;
|
148
|
+
margin-top: 10mm; }
|
149
|
+
.coverpage_footer table, .coverpage_footer table th, .coverpage_footer table td {
|
150
|
+
border: 0; }
|
151
|
+
.coverpage_footer table th, .coverpage_footer table td {
|
152
|
+
padding: 5px;
|
153
|
+
font-size: 1.1em;
|
154
|
+
font-weight: 600; }
|
155
|
+
.coverpage_footer .publish {
|
156
|
+
vertical-align: middle; }
|
157
|
+
|
158
|
+
.coverpage-banner {
|
159
|
+
padding-top: 5mm;
|
160
|
+
margin-left: auto;
|
161
|
+
margin-right: auto;
|
162
|
+
width: auto;
|
163
|
+
display: flex;
|
164
|
+
flex-wrap: wrap;
|
165
|
+
justify-content: center; }
|
166
|
+
|
167
|
+
.coverpage-maturity {
|
168
|
+
font-family: 'Overpass', sans-serif;
|
169
|
+
font-weight: 400;
|
170
|
+
font-size: 1em;
|
171
|
+
margin: 0 0 2em 0;
|
172
|
+
text-transform: uppercase; }
|
173
|
+
|
174
|
+
.copyright .year,
|
175
|
+
.copyright .message,
|
176
|
+
.copyright .name,
|
177
|
+
.copyright .address {
|
178
|
+
margin-top: 1em;
|
179
|
+
line-height: 1.1em;
|
180
|
+
display: block; }
|
181
|
+
|
182
|
+
.copyright .message,
|
183
|
+
.copyright .name,
|
184
|
+
.copyright .address {
|
185
|
+
font-size: 0.9em; }
|
186
|
+
|
187
|
+
.copyright .name {
|
188
|
+
color: #485094;
|
189
|
+
font-weight: 600;
|
190
|
+
padding-top: 1em; }
|
191
|
+
|
192
|
+
.copyright .address {
|
193
|
+
color: #485094; }
|
@@ -0,0 +1,657 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode {
|
3
|
+
mso-style-unhide: no;
|
4
|
+
mso-style-qformat: yes;
|
5
|
+
mso-style-parent: "";
|
6
|
+
margin-top: 0cm;
|
7
|
+
margin-right: 0cm;
|
8
|
+
margin-bottom: 12.0pt;
|
9
|
+
margin-left: 0cm;
|
10
|
+
text-align: left;
|
11
|
+
line-height: 12.0pt;
|
12
|
+
mso-pagination: widow-orphan;
|
13
|
+
tab-stops: 20.15pt;
|
14
|
+
font-size: 9.0pt;
|
15
|
+
font-family: {{monospacefont}};
|
16
|
+
mso-fareast-font-family: Calibri;
|
17
|
+
mso-bidi-font-family: "Courier New";
|
18
|
+
mso-ansi-language: EN-GB; }
|
19
|
+
|
20
|
+
p.pseudocode, li.pseudocode, div.pseudocode {
|
21
|
+
mso-style-unhide: no;
|
22
|
+
mso-style-qformat: yes;
|
23
|
+
mso-style-parent: "";
|
24
|
+
margin-top: 0cm;
|
25
|
+
margin-right: 0cm;
|
26
|
+
margin-bottom: 12.0pt;
|
27
|
+
margin-left: 0cm;
|
28
|
+
text-align: left;
|
29
|
+
line-height: 12.0pt;
|
30
|
+
mso-pagination: widow-orphan;
|
31
|
+
tab-stops: 20.15pt;
|
32
|
+
font-size: 10.5pt;
|
33
|
+
font-family: {{bodyfont}};
|
34
|
+
mso-fareast-font-family: Calibri;
|
35
|
+
mso-bidi-font-family: "Courier New";
|
36
|
+
mso-ansi-language: EN-GB; }
|
37
|
+
|
38
|
+
p.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, p.NormRef {
|
39
|
+
mso-style-unhide: no;
|
40
|
+
mso-style-qformat: yes;
|
41
|
+
mso-style-parent: "";
|
42
|
+
margin-top: 0cm;
|
43
|
+
margin-right: 0cm;
|
44
|
+
margin-bottom: 12.0pt;
|
45
|
+
margin-left: 33.15pt;
|
46
|
+
text-indent: -33.15pt;
|
47
|
+
tab-stops: 33.15pt;
|
48
|
+
line-height: 12.0pt;
|
49
|
+
mso-pagination: widow-orphan;
|
50
|
+
font-size: 11.0pt;
|
51
|
+
font-family: {{bodyfont}};
|
52
|
+
mso-fareast-font-family: {{bodyfont}};
|
53
|
+
mso-bidi-font-family: {{bodyfont}};
|
54
|
+
mso-ansi-language: EN-GB; }
|
55
|
+
|
56
|
+
p.FigureTitle {
|
57
|
+
mso-style-unhide: no;
|
58
|
+
mso-style-qformat: yes;
|
59
|
+
mso-style-parent: "";
|
60
|
+
margin-top: 0cm;
|
61
|
+
margin-right: 0cm;
|
62
|
+
margin-bottom: 12.0pt;
|
63
|
+
margin-left: 0cm;
|
64
|
+
text-align: center;
|
65
|
+
line-height: 12.0pt;
|
66
|
+
page-break-before: avoid;
|
67
|
+
mso-pagination: widow-orphan;
|
68
|
+
tab-stops: 20.15pt;
|
69
|
+
font-size: 10.5pt;
|
70
|
+
font-family: {{headerfont}};
|
71
|
+
mso-fareast-font-family: {{headerfont}};
|
72
|
+
mso-bidi-font-family: {{headerfont}};
|
73
|
+
mso-ansi-language: EN-GB; }
|
74
|
+
|
75
|
+
p.SourceTitle {
|
76
|
+
mso-style-unhide: no;
|
77
|
+
mso-style-qformat: yes;
|
78
|
+
mso-style-parent: "";
|
79
|
+
margin-top: 0cm;
|
80
|
+
margin-right: 0cm;
|
81
|
+
margin-bottom: 12.0pt;
|
82
|
+
margin-left: 0cm;
|
83
|
+
text-align: center;
|
84
|
+
line-height: 12.0pt;
|
85
|
+
page-break-before: avoid;
|
86
|
+
mso-pagination: widow-orphan;
|
87
|
+
tab-stops: 20.15pt;
|
88
|
+
font-size: 10.5pt;
|
89
|
+
font-family: {{headerfont}};
|
90
|
+
mso-fareast-font-family: {{headerfont}};
|
91
|
+
mso-bidi-font-family: {{headerfont}};
|
92
|
+
mso-ansi-language: EN-GB; }
|
93
|
+
|
94
|
+
p.AdmonitionTitle, p.RecommendationTitle {
|
95
|
+
mso-style-unhide: no;
|
96
|
+
mso-style-qformat: yes;
|
97
|
+
mso-style-parent: "";
|
98
|
+
margin-top: 0cm;
|
99
|
+
margin-right: 0cm;
|
100
|
+
margin-bottom: 12.0pt;
|
101
|
+
margin-left: 0cm;
|
102
|
+
text-align: center;
|
103
|
+
line-height: 12.0pt;
|
104
|
+
page-break-after: avoid;
|
105
|
+
mso-pagination: widow-orphan;
|
106
|
+
tab-stops: 20.15pt;
|
107
|
+
font-size: 10.5pt;
|
108
|
+
font-family: {{headerfont}};
|
109
|
+
mso-fareast-font-family: {{headerfont}};
|
110
|
+
mso-bidi-font-family: {{headerfont}};
|
111
|
+
mso-ansi-language: EN-GB; }
|
112
|
+
|
113
|
+
p.TableTitle {
|
114
|
+
mso-style-unhide: no;
|
115
|
+
mso-style-qformat: yes;
|
116
|
+
mso-style-parent: "";
|
117
|
+
margin-top: 0cm;
|
118
|
+
margin-right: 0cm;
|
119
|
+
margin-bottom: 12.0pt;
|
120
|
+
margin-left: 0cm;
|
121
|
+
text-align: center;
|
122
|
+
page-break-after: avoid;
|
123
|
+
line-height: 12.0pt;
|
124
|
+
mso-pagination: widow-orphan;
|
125
|
+
tab-stops: 20.15pt;
|
126
|
+
font-size: 10.5pt;
|
127
|
+
font-family: {{headerfont}};
|
128
|
+
mso-fareast-font-family: {{headerfont}};
|
129
|
+
mso-bidi-font-family: {{headerfont}};
|
130
|
+
mso-ansi-language: EN-GB; }
|
131
|
+
|
132
|
+
p.Note, li.Note, td.Note {
|
133
|
+
mso-style-unhide: no;
|
134
|
+
mso-style-qformat: yes;
|
135
|
+
mso-style-parent: "";
|
136
|
+
margin-top: 0in;
|
137
|
+
margin-right: 0in;
|
138
|
+
margin-bottom: 0in;
|
139
|
+
tab-stops: 20.15pt;
|
140
|
+
/*
|
141
|
+
margin-left:45.0pt;
|
142
|
+
text-indent:-18.0pt;
|
143
|
+
*/
|
144
|
+
margin-left: 0pt;
|
145
|
+
margin-bottom: .0001pt;
|
146
|
+
text-align: justify;
|
147
|
+
text-justify: inter-ideograph;
|
148
|
+
mso-pagination: widow-orphan;
|
149
|
+
font-size: 9.0pt;
|
150
|
+
text-autospace: none;
|
151
|
+
mso-bidi-font-size: 11.0pt;
|
152
|
+
font-family: {{bodyfont}};
|
153
|
+
mso-fareast-font-family: {{bodyfont}};
|
154
|
+
mso-bidi-font-family: {{bodyfont}};
|
155
|
+
mso-ansi-language: EN-GB; }
|
156
|
+
|
157
|
+
p.TableFootnote, li.TableFootnote {
|
158
|
+
mso-style-unhide: no;
|
159
|
+
mso-style-qformat: yes;
|
160
|
+
mso-style-parent: "";
|
161
|
+
margin-top: 0in;
|
162
|
+
margin-right: 0in;
|
163
|
+
margin-bottom: 0in;
|
164
|
+
margin-left: 36.0pt;
|
165
|
+
tab-stops: 20.15pt;
|
166
|
+
text-indent: -9.0pt;
|
167
|
+
margin-bottom: .0001pt;
|
168
|
+
text-align: justify;
|
169
|
+
text-justify: inter-ideograph;
|
170
|
+
mso-pagination: widow-orphan;
|
171
|
+
font-size: 9.0pt;
|
172
|
+
text-autospace: none;
|
173
|
+
mso-bidi-font-size: 11.0pt;
|
174
|
+
font-family: {{bodyfont}};
|
175
|
+
mso-fareast-font-family: {{bodyfont}};
|
176
|
+
mso-bidi-font-family: {{bodyfont}};
|
177
|
+
mso-ansi-language: EN-GB; }
|
178
|
+
|
179
|
+
p.ANNEX, li.ANNEX, div.ANNEX {
|
180
|
+
mso-style-name: ANNEX;
|
181
|
+
mso-style-priority: 10;
|
182
|
+
mso-style-unhide: no;
|
183
|
+
mso-style-next: Normal;
|
184
|
+
margin-top: 0cm;
|
185
|
+
margin-right: 0cm;
|
186
|
+
margin-bottom: 24.0pt;
|
187
|
+
margin-left: 0cm;
|
188
|
+
text-align: center;
|
189
|
+
text-indent: 0cm;
|
190
|
+
line-height: 15.5pt;
|
191
|
+
mso-line-height-rule: exactly;
|
192
|
+
page-break-before: always;
|
193
|
+
mso-pagination: widow-orphan;
|
194
|
+
page-break-after: avoid;
|
195
|
+
mso-outline-level: 1;
|
196
|
+
mso-list: l0 level1 lfo12;
|
197
|
+
tab-stops: 20.15pt;
|
198
|
+
font-size: 14.0pt;
|
199
|
+
mso-bidi-font-size: 11.0pt;
|
200
|
+
font-family: {{headerfont}};
|
201
|
+
mso-fareast-font-family: {{headerfont}};
|
202
|
+
mso-bidi-font-family: {{headerfont}};
|
203
|
+
mso-ansi-language: EN-GB;
|
204
|
+
mso-fareast-language: ZH-CN;
|
205
|
+
font-weight: bold;
|
206
|
+
mso-bidi-font-weight: normal; }
|
207
|
+
|
208
|
+
p.BiblioTitle, li.BiblioTitle, div.BiblioTitle {
|
209
|
+
mso-style-name: "Biblio Title";
|
210
|
+
mso-style-noshow: yes;
|
211
|
+
mso-style-unhide: no;
|
212
|
+
margin-top: 0cm;
|
213
|
+
margin-right: 0cm;
|
214
|
+
margin-bottom: 15.5pt;
|
215
|
+
margin-left: 0cm;
|
216
|
+
text-align: center;
|
217
|
+
line-height: 15.5pt;
|
218
|
+
mso-pagination: widow-orphan;
|
219
|
+
mso-outline-level: 1;
|
220
|
+
tab-stops: 20.15pt;
|
221
|
+
font-size: 14.0pt;
|
222
|
+
mso-bidi-font-size: 11.0pt;
|
223
|
+
font-family: {{headerfont}};
|
224
|
+
mso-fareast-font-family: {{headerfont}};
|
225
|
+
mso-bidi-font-family: {{headerfont}};
|
226
|
+
mso-ansi-language: EN-GB;
|
227
|
+
font-weight: bold;
|
228
|
+
mso-bidi-font-weight: normal; }
|
229
|
+
|
230
|
+
p.Definition, li.Definition, div.Definition {
|
231
|
+
mso-style-name: Definition;
|
232
|
+
mso-style-priority: 9;
|
233
|
+
mso-style-unhide: no;
|
234
|
+
margin-top: 0cm;
|
235
|
+
margin-right: 0cm;
|
236
|
+
margin-bottom: 12.0pt;
|
237
|
+
margin-left: 0cm;
|
238
|
+
text-align: justify;
|
239
|
+
line-height: 12.0pt;
|
240
|
+
mso-pagination: widow-orphan;
|
241
|
+
tab-stops: 20.15pt;
|
242
|
+
font-size: 11.0pt;
|
243
|
+
font-family: {{bodyfont}};
|
244
|
+
mso-fareast-font-family: {{bodyfont}};
|
245
|
+
mso-bidi-font-family: {{bodyfont}};
|
246
|
+
mso-ansi-language: EN-GB; }
|
247
|
+
|
248
|
+
p.zzCopyright, li.zzCopyright {
|
249
|
+
mso-style-name: zzCopyright;
|
250
|
+
mso-style-noshow: yes;
|
251
|
+
mso-style-unhide: no;
|
252
|
+
mso-style-next: Normal;
|
253
|
+
margin-top: 0cm;
|
254
|
+
margin-right: 14.2pt;
|
255
|
+
margin-bottom: 12.0pt;
|
256
|
+
margin-left: 14.2pt;
|
257
|
+
text-align: justify;
|
258
|
+
line-height: 12.0pt;
|
259
|
+
mso-pagination: widow-orphan;
|
260
|
+
tab-stops: 20.15pt 25.7pt 481.15pt;
|
261
|
+
padding: 0cm;
|
262
|
+
mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;
|
263
|
+
font-size: 11.0pt;
|
264
|
+
font-family: {{bodyfont}};
|
265
|
+
mso-fareast-font-family: {{bodyfont}};
|
266
|
+
mso-bidi-font-family: {{bodyfont}};
|
267
|
+
mso-ansi-language: EN-GB; }
|
268
|
+
|
269
|
+
div.zzCopyright {
|
270
|
+
mso-element: para-border-div;
|
271
|
+
border: solid windowtext 1.0pt;
|
272
|
+
mso-border-top-alt: solid windowtext .5pt;
|
273
|
+
mso-border-left-alt: solid windowtext .5pt;
|
274
|
+
mso-border-right-alt: solid windowtext .5pt;
|
275
|
+
mso-border-bottom-alt: solid windowtext .5pt;
|
276
|
+
padding: 1.0pt 4.0pt 0cm 4.0pt;
|
277
|
+
margin-left: 5.1pt;
|
278
|
+
margin-right: 5.1pt; }
|
279
|
+
|
280
|
+
p.zzCopyright_address {
|
281
|
+
margin-top: 0cm;
|
282
|
+
margin-right: 14.2pt;
|
283
|
+
margin-bottom: 0.0pt;
|
284
|
+
margin-left: 14.2pt;
|
285
|
+
mso-layout-grid-align: none;
|
286
|
+
text-autospace: none;
|
287
|
+
padding-left: 20pt;
|
288
|
+
mso-padding-alt-left: 20pt;
|
289
|
+
font-size: 10.0pt;
|
290
|
+
text-align: left;
|
291
|
+
mso-bidi-font-size: 11.0pt; }
|
292
|
+
|
293
|
+
p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle {
|
294
|
+
mso-style-name: zzSTDTitle;
|
295
|
+
mso-style-noshow: yes;
|
296
|
+
mso-style-unhide: no;
|
297
|
+
mso-style-next: Normal;
|
298
|
+
margin-top: 20.0pt;
|
299
|
+
margin-right: 0cm;
|
300
|
+
margin-bottom: 38.0pt;
|
301
|
+
margin-left: 0cm;
|
302
|
+
line-height: 17.5pt;
|
303
|
+
text-align: center;
|
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
|
+
mso-bidi-font-weight: normal; }
|
315
|
+
|
316
|
+
p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1 {
|
317
|
+
mso-style-name: zzSTDTitle;
|
318
|
+
mso-style-noshow: yes;
|
319
|
+
mso-style-unhide: no;
|
320
|
+
mso-style-next: Normal;
|
321
|
+
margin-top: 0pt;
|
322
|
+
margin-right: 0cm;
|
323
|
+
margin-bottom: 18.0pt;
|
324
|
+
margin-left: 0cm;
|
325
|
+
line-height: 17.5pt;
|
326
|
+
text-align: center;
|
327
|
+
mso-line-height-rule: exactly;
|
328
|
+
mso-pagination: widow-orphan;
|
329
|
+
mso-hyphenate: none;
|
330
|
+
tab-stops: 20.15pt;
|
331
|
+
font-size: 16.0pt;
|
332
|
+
mso-bidi-font-size: 11.0pt;
|
333
|
+
font-family: {{headerfont}};
|
334
|
+
mso-fareast-font-family: {{headerfont}};
|
335
|
+
mso-bidi-font-family: {{headerfont}};
|
336
|
+
mso-ansi-language: EN-GB;
|
337
|
+
mso-bidi-font-weight: normal; }
|
338
|
+
|
339
|
+
p.Quote, li.Quote, div.Quote {
|
340
|
+
mso-style-priority: 99;
|
341
|
+
margin-top: 0cm;
|
342
|
+
margin-right: 36.0pt;
|
343
|
+
margin-bottom: 0cm;
|
344
|
+
margin-left: 36.0pt;
|
345
|
+
text-align: justify;
|
346
|
+
line-height: 12.0pt;
|
347
|
+
mso-pagination: widow-orphan;
|
348
|
+
tab-stops: 20.15pt;
|
349
|
+
font-size: 10.5pt;
|
350
|
+
font-family: {{bodyfont}};
|
351
|
+
mso-fareast-font-family: {{bodyfont}};
|
352
|
+
mso-bidi-font-family: {{bodyfont}};
|
353
|
+
mso-ansi-language: EN-GB; }
|
354
|
+
|
355
|
+
p.QuoteAttribution {
|
356
|
+
text-align: right; }
|
357
|
+
|
358
|
+
p.Admonition, li.Admonition, div.Admonition {
|
359
|
+
mso-style-priority: 99;
|
360
|
+
mso-pagination: widow-orphan;
|
361
|
+
border: none;
|
362
|
+
padding: 0cm;
|
363
|
+
font-size: 10.5pt;
|
364
|
+
font-family: {{bodyfont}};
|
365
|
+
mso-ascii-font-family: {{bodyfont}};
|
366
|
+
mso-ascii-theme-font: minor-latin;
|
367
|
+
mso-fareast-font-family: {{bodyfont}};
|
368
|
+
mso-fareast-theme-font: minor-fareast;
|
369
|
+
mso-hansi-font-family: {{bodyfont}};
|
370
|
+
mso-hansi-theme-font: minor-latin;
|
371
|
+
mso-bidi-font-family: {{bodyfont}};
|
372
|
+
mso-bidi-theme-font: minor-bidi;
|
373
|
+
font-weight: bold;
|
374
|
+
mso-ansi-language: EN-GB; }
|
375
|
+
|
376
|
+
p.Code, li.Code, div.Code {
|
377
|
+
mso-style-name: Code;
|
378
|
+
mso-style-priority: 16;
|
379
|
+
mso-style-unhide: no;
|
380
|
+
mso-style-qformat: yes;
|
381
|
+
margin: 0cm;
|
382
|
+
margin-bottom: .0001pt;
|
383
|
+
line-height: 10.0pt;
|
384
|
+
mso-pagination: widow-orphan;
|
385
|
+
tab-stops: 20.15pt;
|
386
|
+
font-size: 9.0pt;
|
387
|
+
mso-bidi-font-size: 11.0pt;
|
388
|
+
font-family: {{monospacefont}};
|
389
|
+
mso-fareast-font-family: Calibri;
|
390
|
+
mso-bidi-font-family: "Source Sans Pro";
|
391
|
+
mso-ansi-language: EN-GB; }
|
392
|
+
|
393
|
+
p.Formula, li.Formula, div.Formula {
|
394
|
+
mso-style-name: Formula;
|
395
|
+
mso-style-noshow: yes;
|
396
|
+
mso-style-unhide: no;
|
397
|
+
margin-top: 0cm;
|
398
|
+
margin-right: 0cm;
|
399
|
+
margin-bottom: 11.0pt;
|
400
|
+
margin-left: 20.15pt;
|
401
|
+
line-height: 12.0pt;
|
402
|
+
mso-pagination: widow-orphan;
|
403
|
+
tab-stops: center 212.65pt right 487.45pt;
|
404
|
+
font-size: 11.0pt;
|
405
|
+
font-family: {{bodyfont}};
|
406
|
+
mso-fareast-font-family: {{bodyfont}};
|
407
|
+
mso-bidi-font-family: {{bodyfont}};
|
408
|
+
mso-ansi-language: EN-GB; }
|
409
|
+
|
410
|
+
table.formula_dl {
|
411
|
+
margin-left: 20.15pt; }
|
412
|
+
|
413
|
+
table.MsoISOTable {
|
414
|
+
mso-style-name: "Table ISO";
|
415
|
+
mso-tstyle-rowband-size: 0;
|
416
|
+
mso-tstyle-colband-size: 0;
|
417
|
+
mso-style-noshow: yes;
|
418
|
+
mso-style-priority: 99;
|
419
|
+
mso-style-parent: "";
|
420
|
+
mso-padding-alt: 0cm 2.85pt 0cm 2.85pt;
|
421
|
+
mso-para-margin: 0cm;
|
422
|
+
mso-para-margin-bottom: .0001pt;
|
423
|
+
mso-pagination: widow-orphan;
|
424
|
+
margin-bottom: 12.0pt;
|
425
|
+
border-collapse: collapse;
|
426
|
+
mso-table-layout-alt: fixed;
|
427
|
+
border: solid windowtext 2pt;
|
428
|
+
mso-border-alt: solid windowtext 2pt;
|
429
|
+
mso-yfti-tbllook: 480;
|
430
|
+
mso-border-insideh: .75pt solid windowtext;
|
431
|
+
mso-border-insidev: .75pt solid windowtext;
|
432
|
+
font-size: 10.0pt;
|
433
|
+
font-family: {{bodyfont}};
|
434
|
+
mso-fareast-font-family: {{bodyfont}}; }
|
435
|
+
|
436
|
+
table.MsoISOTable th {
|
437
|
+
border: solid windowtext 1pt;
|
438
|
+
mso-border-alt: solid windowtext 1pt;
|
439
|
+
padding: 0cm 2.85pt 0cm 2.85pt; }
|
440
|
+
|
441
|
+
table.MsoISOTable td {
|
442
|
+
border: solid windowtext 1pt;
|
443
|
+
mso-border-alt: solid windowtext 1pt;
|
444
|
+
padding: 0cm 2.85pt 0cm 2.85pt; }
|
445
|
+
|
446
|
+
table.MsoISOTable p {
|
447
|
+
font-size: 10.0pt; }
|
448
|
+
|
449
|
+
table.MsoTableGrid {
|
450
|
+
mso-style-name: "Table Grid";
|
451
|
+
mso-tstyle-rowband-size: 0;
|
452
|
+
mso-tstyle-colband-size: 0;
|
453
|
+
mso-style-priority: 39;
|
454
|
+
mso-style-unhide: no;
|
455
|
+
border: solid windowtext 1.0pt;
|
456
|
+
mso-border-alt: solid windowtext .5pt;
|
457
|
+
mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;
|
458
|
+
mso-border-insideh: .5pt solid windowtext;
|
459
|
+
mso-border-insidev: .5pt solid windowtext;
|
460
|
+
mso-para-margin: 0cm;
|
461
|
+
mso-para-margin-bottom: .0001pt;
|
462
|
+
mso-pagination: widow-orphan;
|
463
|
+
font-size: 10.0pt;
|
464
|
+
font-family: {{bodyfont}};
|
465
|
+
mso-fareast-font-family: {{bodyfont}}; }
|
466
|
+
|
467
|
+
div.formula {
|
468
|
+
tab-stops: center 212.65pt right 487.45pt; }
|
469
|
+
|
470
|
+
body {
|
471
|
+
tab-interval: 21.0pt;
|
472
|
+
text-justify-trim: punctuation; }
|
473
|
+
|
474
|
+
.coverpage_docnumber {
|
475
|
+
text-align: center;
|
476
|
+
font-size: 14.0pt;
|
477
|
+
font-weight: bold; }
|
478
|
+
|
479
|
+
.coverpage_techcommittee {
|
480
|
+
text-align: center; }
|
481
|
+
|
482
|
+
.coverpage_docstage {
|
483
|
+
text-align: center;
|
484
|
+
font-size: 30.0pt;
|
485
|
+
color: #485094; }
|
486
|
+
|
487
|
+
div.coverpage_warning {
|
488
|
+
mso-element: para-border-div;
|
489
|
+
border: solid windowtext 1.0pt #485094;
|
490
|
+
mso-border-alt: solid windowtext .5pt;
|
491
|
+
padding: 1.0pt 4.0pt 1.0pt 4.0pt #485094;
|
492
|
+
margin-left: 4.25pt;
|
493
|
+
margin-right: 4.25pt; }
|
494
|
+
|
495
|
+
.coverpage_warning {
|
496
|
+
color: #485094;
|
497
|
+
font-size: 10.0pt; }
|
498
|
+
|
499
|
+
.coverpage_footer {
|
500
|
+
text-align: center;
|
501
|
+
font-family: {{headerfont}}; }
|
502
|
+
|
503
|
+
.coverpage_footer table {
|
504
|
+
text-align: left;
|
505
|
+
margin-left: auto;
|
506
|
+
margin-right: auto; }
|
507
|
+
|
508
|
+
a.TableFootnoteRef, span.TableFootnoteRef {
|
509
|
+
mso-style-priority: 99;
|
510
|
+
mso-style-parent: "Footnote Reference";
|
511
|
+
vertical-align: super; }
|
512
|
+
|
513
|
+
aside {
|
514
|
+
font-size: 10.0pt; }
|
515
|
+
|
516
|
+
.Hant {
|
517
|
+
font-family: PMingLiU; }
|
518
|
+
|
519
|
+
/*
|
520
|
+
div.example {
|
521
|
+
border:solid black .25pt;
|
522
|
+
mso-border-alt:solid black .25pt;
|
523
|
+
padding:10pt;
|
524
|
+
mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
|
525
|
+
margin:10pt;
|
526
|
+
mso-margin-alt:10.0pt 10.0pt 10.0pt 10.0pt;
|
527
|
+
}
|
528
|
+
*/
|
529
|
+
table.example, table.Note {
|
530
|
+
margin-left: 21.0pt; }
|
531
|
+
|
532
|
+
p.example, li.example, div.example, td.example {
|
533
|
+
mso-style-name: 示例;
|
534
|
+
/* NAME: Example */
|
535
|
+
mso-style-unhide: no;
|
536
|
+
mso-style-parent: "";
|
537
|
+
mso-style-next: 示例内容;
|
538
|
+
text-align: justify;
|
539
|
+
text-justify: inter-ideograph;
|
540
|
+
tab-stops: 20.15pt;
|
541
|
+
/* text-indent:18.15pt;
|
542
|
+
mso-list:l2 level1 lfo1; */
|
543
|
+
mso-pagination: none;
|
544
|
+
font-size: 9.0pt;
|
545
|
+
font-family: {{bodyfont}};
|
546
|
+
mso-hansi-font-family: {{bodyfont}};
|
547
|
+
mso-bidi-font-family: {{bodyfont}}; }
|
548
|
+
|
549
|
+
div.example, td.example {
|
550
|
+
margin: 0in;
|
551
|
+
margin-bottom: .0001pt; }
|
552
|
+
|
553
|
+
td.example p.MsoListParagraph {
|
554
|
+
font-size: 9.0pt; }
|
555
|
+
|
556
|
+
div.example p.MsoListParagraph {
|
557
|
+
font-size: 9.0pt; }
|
558
|
+
|
559
|
+
div.Note p.MsoListParagraph {
|
560
|
+
font-size: 9.0pt; }
|
561
|
+
|
562
|
+
p.leftpagenumber, li.leftpagenumber, div.leftpagenumber {
|
563
|
+
mso-style-name: leftpagenumber;
|
564
|
+
mso-style-priority: 99;
|
565
|
+
mso-style-unhide: no;
|
566
|
+
mso-style-qformat: yes;
|
567
|
+
mso-style-parent: "";
|
568
|
+
margin-top: 6.0pt;
|
569
|
+
margin-right: 0cm;
|
570
|
+
margin-bottom: 0cm;
|
571
|
+
margin-left: 0cm;
|
572
|
+
margin-bottom: .0001pt;
|
573
|
+
mso-pagination: widow-orphan;
|
574
|
+
font-size: 9.0pt;
|
575
|
+
font-family: {{bodyfont}};
|
576
|
+
mso-fareast-font-family: {{bodyfont}};
|
577
|
+
mso-ansi-language: EN-US;
|
578
|
+
mso-fareast-language: ZH-CN; }
|
579
|
+
|
580
|
+
p.rightpagenumber, li.rightpagenumber, div.rightpagenumber {
|
581
|
+
mso-style-name: rightpagenumber;
|
582
|
+
mso-style-priority: 99;
|
583
|
+
mso-style-unhide: no;
|
584
|
+
mso-style-qformat: yes;
|
585
|
+
mso-style-parent: "";
|
586
|
+
margin-top: 6.0pt;
|
587
|
+
margin-right: 0cm;
|
588
|
+
margin-bottom: 0cm;
|
589
|
+
margin-left: 0cm;
|
590
|
+
margin-bottom: .0001pt;
|
591
|
+
text-align: right;
|
592
|
+
mso-pagination: widow-orphan;
|
593
|
+
font-size: 9.0pt;
|
594
|
+
font-family: {{bodyfont}};
|
595
|
+
mso-fareast-font-family: {{bodyfont}};
|
596
|
+
mso-ansi-language: EN-US;
|
597
|
+
mso-fareast-language: ZH-CN; }
|
598
|
+
|
599
|
+
p.supersedes, li.supersedes, div.supersedes {
|
600
|
+
mso-style-name: 封面标准代替信息;
|
601
|
+
/* NAME: Cover page standard "supercedes" information */
|
602
|
+
mso-style-unhide: no;
|
603
|
+
mso-style-parent: "";
|
604
|
+
margin-top: 2.85pt;
|
605
|
+
margin-right: 0in;
|
606
|
+
margin-bottom: 0in;
|
607
|
+
margin-left: 0in;
|
608
|
+
margin-bottom: .0001pt;
|
609
|
+
text-align: right;
|
610
|
+
line-height: 14.0pt;
|
611
|
+
mso-line-height-rule: exactly;
|
612
|
+
mso-pagination: widow-orphan;
|
613
|
+
mso-element: frame;
|
614
|
+
mso-element-frame-width: 457.0pt;
|
615
|
+
mso-element-frame-height: 62.1pt;
|
616
|
+
mso-element-frame-hspace: 14.2pt;
|
617
|
+
mso-element-wrap: around;
|
618
|
+
mso-element-anchor-vertical: page;
|
619
|
+
mso-element-anchor-horizontal: page;
|
620
|
+
mso-element-left: 82.25pt;
|
621
|
+
mso-element-top: 145.5pt;
|
622
|
+
mso-height-rule: exactly;
|
623
|
+
mso-element-anchor-lock: locked;
|
624
|
+
font-size: 10.5pt;
|
625
|
+
font-family: {{bodyfont}};
|
626
|
+
mso-hansi-font-family: {{bodyfont}};
|
627
|
+
mso-bidi-font-family: {{bodyfont}}; }
|
628
|
+
|
629
|
+
table.dl {
|
630
|
+
margin-top: 0cm;
|
631
|
+
margin-right: 0cm;
|
632
|
+
margin-bottom: 11.0pt;
|
633
|
+
margin-left: 20.15pt; }
|
634
|
+
|
635
|
+
span.note_label, span.example_label, td.example_label, td.note_label {
|
636
|
+
font-size: 9.0pt;
|
637
|
+
font-family: {{headerfont}}; }
|
638
|
+
|
639
|
+
p.dl {
|
640
|
+
margin-left: 0pt;
|
641
|
+
font-size: 10.5pt; }
|
642
|
+
|
643
|
+
div.figure {
|
644
|
+
margin-top: 12pt; }
|
645
|
+
|
646
|
+
span.ccs_label {
|
647
|
+
font-weight: bold;
|
648
|
+
font-family: {{bodyfont}}; }
|
649
|
+
|
650
|
+
span.ccs {
|
651
|
+
font-family: {{headerfont}}; }
|
652
|
+
|
653
|
+
span.zh {
|
654
|
+
font-family: SimSun,serif; }
|
655
|
+
|
656
|
+
span.en {
|
657
|
+
font-family: Cambria,serif; }
|