metanorma-gb 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.hound.yml +3 -0
  4. data/.oss-guides.rubocop.yml +1077 -0
  5. data/.rubocop.ribose.yml +65 -0
  6. data/.rubocop.tb.yml +650 -0
  7. data/.rubocop.yml +15 -0
  8. data/.travis.yml +15 -0
  9. data/CODE_OF_CONDUCT.md +74 -0
  10. data/Gemfile +9 -0
  11. data/LICENSE +25 -0
  12. data/README.adoc +369 -0
  13. data/Rakefile +6 -0
  14. data/asciidoctor-gb.gemspec.old +47 -0
  15. data/bin/console +14 -0
  16. data/bin/rspec +18 -0
  17. data/bin/setup +8 -0
  18. data/lib/asciidoctor-gb.rb +11 -0
  19. data/lib/asciidoctor/gb.rb +7 -0
  20. data/lib/asciidoctor/gb/biblio.rng +836 -0
  21. data/lib/asciidoctor/gb/converter.rb +224 -0
  22. data/lib/asciidoctor/gb/front.rb +228 -0
  23. data/lib/asciidoctor/gb/gbstandard.rng +409 -0
  24. data/lib/asciidoctor/gb/html/blank.png +0 -0
  25. data/lib/asciidoctor/gb/html/footer.png +0 -0
  26. data/lib/asciidoctor/gb/html/gb-logos/gb-issuer-default.png +0 -0
  27. data/lib/asciidoctor/gb/html/gb-logos/gb-issuer-default.svg +980 -0
  28. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-db.gif +0 -0
  29. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-db.png +0 -0
  30. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-db.svg +1 -0
  31. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gb.gif +0 -0
  32. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gb.png +0 -0
  33. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gb.svg +1 -0
  34. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gjb.gif +0 -0
  35. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gjb.png +0 -0
  36. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gjb.svg +1 -0
  37. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gm.gif +0 -0
  38. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gm.png +0 -0
  39. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-gm.svg +1 -0
  40. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-jjf.gif +0 -0
  41. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-jjf.png +0 -0
  42. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-jjf.svg +1 -0
  43. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-zb.gif +0 -0
  44. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-zb.png +0 -0
  45. data/lib/asciidoctor/gb/html/gb-logos/gb-standard-zb.svg +13 -0
  46. data/lib/asciidoctor/gb/html/gb.scss +556 -0
  47. data/lib/asciidoctor/gb/html/header.html +216 -0
  48. data/lib/asciidoctor/gb/html/html_gb_intro.html +9 -0
  49. data/lib/asciidoctor/gb/html/html_gb_titlepage.html +99 -0
  50. data/lib/asciidoctor/gb/html/htmlstyle.scss +269 -0
  51. data/lib/asciidoctor/gb/html/logo.png +0 -0
  52. data/lib/asciidoctor/gb/html/word_gb_intro.html +3 -0
  53. data/lib/asciidoctor/gb/html/word_gb_titlepage.html +388 -0
  54. data/lib/asciidoctor/gb/html/wordstyle.scss +2543 -0
  55. data/lib/asciidoctor/gb/isodoc.rng +1059 -0
  56. data/lib/asciidoctor/gb/isostandard.rng +1001 -0
  57. data/lib/asciidoctor/gb/section_input.rb +150 -0
  58. data/lib/asciidoctor/gb/validate.rb +115 -0
  59. data/lib/asciidoctor/gb/version.rb +5 -0
  60. data/lib/isodoc/gb/gbcleanup.rb +90 -0
  61. data/lib/isodoc/gb/gbconvert.rb +66 -0
  62. data/lib/isodoc/gb/gbhtmlconvert.rb +84 -0
  63. data/lib/isodoc/gb/gbhtmlrender.rb +208 -0
  64. data/lib/isodoc/gb/gbwordconvert.rb +136 -0
  65. data/lib/isodoc/gb/gbwordrender.rb +206 -0
  66. data/lib/isodoc/gb/html/blank.png +0 -0
  67. data/lib/isodoc/gb/html/footer.png +0 -0
  68. data/lib/isodoc/gb/html/gb-logos/gb-issuer-default.png +0 -0
  69. data/lib/isodoc/gb/html/gb-logos/gb-issuer-default.svg +980 -0
  70. data/lib/isodoc/gb/html/gb-logos/gb-standard-db.gif +0 -0
  71. data/lib/isodoc/gb/html/gb-logos/gb-standard-db.png +0 -0
  72. data/lib/isodoc/gb/html/gb-logos/gb-standard-db.svg +1 -0
  73. data/lib/isodoc/gb/html/gb-logos/gb-standard-gb.gif +0 -0
  74. data/lib/isodoc/gb/html/gb-logos/gb-standard-gb.png +0 -0
  75. data/lib/isodoc/gb/html/gb-logos/gb-standard-gb.svg +1 -0
  76. data/lib/isodoc/gb/html/gb-logos/gb-standard-gjb.gif +0 -0
  77. data/lib/isodoc/gb/html/gb-logos/gb-standard-gjb.png +0 -0
  78. data/lib/isodoc/gb/html/gb-logos/gb-standard-gjb.svg +1 -0
  79. data/lib/isodoc/gb/html/gb-logos/gb-standard-gm.gif +0 -0
  80. data/lib/isodoc/gb/html/gb-logos/gb-standard-gm.png +0 -0
  81. data/lib/isodoc/gb/html/gb-logos/gb-standard-gm.svg +1 -0
  82. data/lib/isodoc/gb/html/gb-logos/gb-standard-jjf.gif +0 -0
  83. data/lib/isodoc/gb/html/gb-logos/gb-standard-jjf.png +0 -0
  84. data/lib/isodoc/gb/html/gb-logos/gb-standard-jjf.svg +1 -0
  85. data/lib/isodoc/gb/html/gb-logos/gb-standard-zb.gif +0 -0
  86. data/lib/isodoc/gb/html/gb-logos/gb-standard-zb.png +0 -0
  87. data/lib/isodoc/gb/html/gb-logos/gb-standard-zb.svg +13 -0
  88. data/lib/isodoc/gb/html/gb.scss +556 -0
  89. data/lib/isodoc/gb/html/header.html +216 -0
  90. data/lib/isodoc/gb/html/html_compliant_gb_titlepage.html +116 -0
  91. data/lib/isodoc/gb/html/html_gb_intro.html +6 -0
  92. data/lib/isodoc/gb/html/html_gb_titlepage.html +94 -0
  93. data/lib/isodoc/gb/html/htmlcompliantstyle.scss +1220 -0
  94. data/lib/isodoc/gb/html/htmlstyle.scss +1007 -0
  95. data/lib/isodoc/gb/html/logo.png +0 -0
  96. data/lib/isodoc/gb/html/scripts.html +71 -0
  97. data/lib/isodoc/gb/html/word_gb_intro.html +3 -0
  98. data/lib/isodoc/gb/html/word_gb_titlepage.html +388 -0
  99. data/lib/isodoc/gb/html/wordstyle.scss +2543 -0
  100. data/lib/isodoc/gb/i18n-en.yaml +12 -0
  101. data/lib/isodoc/gb/i18n-zh-Hans.yaml +12 -0
  102. data/lib/isodoc/gb/metadata.rb +232 -0
  103. data/lib/metanorma/gb.rb +7 -0
  104. data/lib/metanorma/gb/processor.rb +43 -0
  105. data/metanorma-gb.gemspec +48 -0
  106. metadata +380 -0
@@ -0,0 +1,2543 @@
1
+
2
+ /* Font Definitions */
3
+ @font-face
4
+ {font-family:SimSun;
5
+ panose-1:2 1 6 0 3 1 1 1 1 1;
6
+ mso-font-alt:宋体;
7
+ mso-font-charset:134;
8
+ mso-generic-font-family:auto;
9
+ mso-font-pitch:variable;
10
+ mso-font-signature:3 680460288 22 0 262145 0;}
11
+ @font-face
12
+ {font-family:SimHei;
13
+ panose-1:2 1 6 9 6 1 1 1 1 1;
14
+ mso-font-alt:黑体;
15
+ mso-font-charset:134;
16
+ mso-generic-font-family:modern;
17
+ mso-font-pitch:fixed;
18
+ mso-font-signature:-2147482945 953122042 22 0 262145 0;}
19
+ @font-face
20
+ {font-family:"\@SimHei";
21
+ panose-1:2 1 6 0 3 1 1 1 1 1;
22
+ mso-font-charset:134;
23
+ mso-generic-font-family:modern;
24
+ mso-font-pitch:fixed;
25
+ mso-font-signature:-2147482945 953122042 22 0 262145 0;}
26
+ @font-face
27
+ {font-family:"\@SimSun";
28
+ panose-1:2 1 6 0 3 1 1 1 1 1;
29
+ mso-font-charset:134;
30
+ mso-generic-font-family:auto;
31
+ mso-font-pitch:variable;
32
+ mso-font-signature:3 680460288 22 0 262145 0;}
33
+ @font-face
34
+ {font-family:Arial;
35
+ panose-1:2 11 6 4 2 2 2 2 2 4;
36
+ mso-font-charset:0;
37
+ mso-generic-font-family:swiss;
38
+ mso-font-pitch:variable;
39
+ mso-font-signature:-536859905 -1073711037 9 0 511 0;}
40
+ @font-face
41
+ {font-family:"Courier New";
42
+ panose-1:2 7 3 9 2 2 5 2 4 4;
43
+ mso-font-charset:0;
44
+ mso-generic-font-family:roman;
45
+ mso-font-pitch:fixed;
46
+ mso-font-signature:-536859905 -1073711037 9 0 511 0;}
47
+ @font-face
48
+ {font-family:"Cambria Math";
49
+ panose-1:2 4 5 3 5 4 6 3 2 4;
50
+ mso-font-charset:0;
51
+ mso-generic-font-family:roman;
52
+ mso-font-pitch:variable;
53
+ mso-font-signature:-536870145 1107305727 0 0 415 0;}
54
+ @font-face
55
+ {font-family:Calibri;
56
+ panose-1:2 15 5 2 2 2 4 3 2 4;
57
+ mso-font-charset:0;
58
+ mso-generic-font-family:swiss;
59
+ mso-font-pitch:variable;
60
+ mso-font-signature:-536870145 1073786111 1 0 415 0;}
61
+ @font-face
62
+ {font-family:Cambria;
63
+ panose-1:2 4 5 3 5 4 6 3 2 4;
64
+ mso-font-charset:0;
65
+ mso-generic-font-family:roman;
66
+ mso-font-pitch:variable;
67
+ mso-font-signature:-536870145 1073743103 0 0 415 0;}
68
+ @font-face
69
+ {font-family:"Malgun Gothic";
70
+ panose-1:2 11 5 3 2 0 0 2 0 4;
71
+ mso-font-charset:129;
72
+ mso-generic-font-family:swiss;
73
+ mso-font-pitch:variable;
74
+ mso-font-signature:-1879048145 701988091 18 0 524289 0;}
75
+ @font-face
76
+ {font-family:"MS Mincho";
77
+ panose-1:2 2 6 9 4 2 5 8 3 4;
78
+ mso-font-charset:128;
79
+ mso-generic-font-family:roman;
80
+ mso-font-pitch:fixed;
81
+ mso-font-signature:-536870145 1791491579 134217746 0 131231 0;}
82
+ @font-face
83
+ {font-family:"Source Sans Pro";
84
+ panose-1:2 11 5 3 3 4 3 2 2 4;
85
+ mso-font-charset:0;
86
+ mso-generic-font-family:swiss;
87
+ mso-font-format:other;
88
+ mso-font-pitch:variable;
89
+ mso-font-signature:1610613495 33554433 0 0 415 0;}
90
+ @page WordSection1
91
+ {size:595.3pt 841.9pt;
92
+ margin:1.0cm 2.30cm 2.40cm 2.50cm;
93
+ mso-header-margin:0cm;
94
+ mso-footer-margin:0cm;
95
+ mso-title-page:yes;
96
+ mso-paper-source:0;}
97
+ div.WordSection1
98
+ {page:WordSection1;}
99
+ @page WordSection2
100
+ {size:595.3pt 841.9pt;
101
+ margin:2.50cm 2.0cm 2.0cm 2.50cm;
102
+ mso-header-margin:2.50cm;
103
+ mso-footer-margin:1.50cm;
104
+ mso-page-numbers:roman-upper 1;
105
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
106
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
107
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2;
108
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
109
+ mso-paper-source:0;
110
+ layout-grid:15.6pt;}
111
+ div.WordSection2
112
+ {page:WordSection2;}
113
+ @page WordSection3
114
+ {size:595.3pt 841.9pt;
115
+ margin:2.50cm 2.0cm 2.0cm 2.50cm;
116
+ mso-header-margin:2.50cm;
117
+ mso-footer-margin:1.50cm;
118
+ mso-page-numbers:1;
119
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
120
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
121
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3;
122
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
123
+ mso-paper-source:0;
124
+ layout-grid:15.6pt;}
125
+ div.WordSection3
126
+ {page:WordSection3;}
127
+ /* Style Definitions */
128
+ p.MsoNormal, li.MsoNormal, div.MsoNormal
129
+ {mso-style-unhide:no;
130
+ mso-style-qformat:yes;
131
+ mso-style-parent:"";
132
+ margin:0cm;
133
+ margin-bottom:.0001pt;
134
+ text-align:justify;
135
+ text-justify:inter-ideograph;
136
+ text-indent:21.0pt;
137
+ mso-pagination:widow-orphan;
138
+ tab-stops:20.15pt;
139
+ font-size:10.5pt;
140
+ mso-bidi-font-size:12.0pt;
141
+ font-family:$bodyfont;
142
+ mso-fareast-font-family:$bodyfont;
143
+ mso-font-kerning:1.0pt;
144
+ mso-ansi-language:EN-US;
145
+ mso-fareast-language:ZH-CN;}
146
+ p.MsoIndex1, li.MsoIndex1, div.MsoIndex1
147
+ {mso-style-unhide:no;
148
+ mso-style-next:段;
149
+ margin:0cm;
150
+ margin-bottom:.0001pt;
151
+ mso-pagination:none;
152
+ tab-stops:right dotted 464.95pt;
153
+ font-size:10.5pt;
154
+ font-family:$bodyfont;
155
+ mso-hansi-font-family:"Times New Roman";
156
+ mso-bidi-font-family:"Times New Roman";
157
+ mso-font-kerning:1.0pt;
158
+ mso-ansi-language:EN-US;
159
+ mso-fareast-language:ZH-CN;}
160
+ p.MsoIndex2, li.MsoIndex2, div.MsoIndex2
161
+ {mso-style-update:auto;
162
+ mso-style-unhide:no;
163
+ mso-style-next:Normal;
164
+ margin-top:0cm;
165
+ margin-right:0cm;
166
+ margin-bottom:0cm;
167
+ margin-left:21.0pt;
168
+ margin-bottom:.0001pt;
169
+ text-indent:-10.5pt;
170
+ mso-pagination:none;
171
+ font-size:10.0pt;
172
+ font-family:$bodyfont;
173
+ mso-fareast-font-family:$bodyfont;
174
+ mso-bidi-font-family:"Times New Roman";
175
+ mso-font-kerning:1.0pt;
176
+ mso-ansi-language:EN-US;
177
+ mso-fareast-language:ZH-CN;}
178
+ p.MsoIndex3, li.MsoIndex3, div.MsoIndex3
179
+ {mso-style-update:auto;
180
+ mso-style-unhide:no;
181
+ mso-style-next:Normal;
182
+ margin-top:0cm;
183
+ margin-right:0cm;
184
+ margin-bottom:0cm;
185
+ margin-left:31.5pt;
186
+ margin-bottom:.0001pt;
187
+ text-indent:-10.5pt;
188
+ mso-pagination:none;
189
+ font-size:10.0pt;
190
+ font-family:$bodyfont;
191
+ mso-fareast-font-family:$bodyfont;
192
+ mso-bidi-font-family:"Times New Roman";
193
+ mso-font-kerning:1.0pt;
194
+ mso-ansi-language:EN-US;
195
+ mso-fareast-language:ZH-CN;}
196
+ p.MsoIndex4, li.MsoIndex4, div.MsoIndex4
197
+ {mso-style-update:auto;
198
+ mso-style-unhide:no;
199
+ mso-style-next:Normal;
200
+ margin-top:0cm;
201
+ margin-right:0cm;
202
+ margin-bottom:0cm;
203
+ margin-left:42.0pt;
204
+ margin-bottom:.0001pt;
205
+ text-indent:-10.5pt;
206
+ mso-pagination:none;
207
+ font-size:10.0pt;
208
+ font-family:$bodyfont;
209
+ mso-fareast-font-family:$bodyfont;
210
+ mso-bidi-font-family:"Times New Roman";
211
+ mso-font-kerning:1.0pt;
212
+ mso-ansi-language:EN-US;
213
+ mso-fareast-language:ZH-CN;}
214
+ p.MsoIndex5, li.MsoIndex5, div.MsoIndex5
215
+ {mso-style-update:auto;
216
+ mso-style-unhide:no;
217
+ mso-style-next:Normal;
218
+ margin-top:0cm;
219
+ margin-right:0cm;
220
+ margin-bottom:0cm;
221
+ margin-left:52.5pt;
222
+ margin-bottom:.0001pt;
223
+ text-indent:-10.5pt;
224
+ mso-pagination:none;
225
+ font-size:10.0pt;
226
+ font-family:$bodyfont;
227
+ mso-fareast-font-family:$bodyfont;
228
+ mso-bidi-font-family:"Times New Roman";
229
+ mso-font-kerning:1.0pt;
230
+ mso-ansi-language:EN-US;
231
+ mso-fareast-language:ZH-CN;}
232
+ p.MsoIndex6, li.MsoIndex6, div.MsoIndex6
233
+ {mso-style-update:auto;
234
+ mso-style-unhide:no;
235
+ mso-style-next:Normal;
236
+ margin-top:0cm;
237
+ margin-right:0cm;
238
+ margin-bottom:0cm;
239
+ margin-left:63.0pt;
240
+ margin-bottom:.0001pt;
241
+ text-indent:-10.5pt;
242
+ mso-pagination:none;
243
+ font-size:10.0pt;
244
+ font-family:$bodyfont;
245
+ mso-fareast-font-family:$bodyfont;
246
+ mso-bidi-font-family:"Times New Roman";
247
+ mso-font-kerning:1.0pt;
248
+ mso-ansi-language:EN-US;
249
+ mso-fareast-language:ZH-CN;}
250
+ p.MsoIndex7, li.MsoIndex7, div.MsoIndex7
251
+ {mso-style-update:auto;
252
+ mso-style-unhide:no;
253
+ mso-style-next:Normal;
254
+ margin-top:0cm;
255
+ margin-right:0cm;
256
+ margin-bottom:0cm;
257
+ margin-left:73.5pt;
258
+ margin-bottom:.0001pt;
259
+ text-indent:-10.5pt;
260
+ mso-pagination:none;
261
+ font-size:10.0pt;
262
+ font-family:$bodyfont;
263
+ mso-fareast-font-family:$bodyfont;
264
+ mso-bidi-font-family:"Times New Roman";
265
+ mso-font-kerning:1.0pt;
266
+ mso-ansi-language:EN-US;
267
+ mso-fareast-language:ZH-CN;}
268
+ p.MsoIndex8, li.MsoIndex8, div.MsoIndex8
269
+ {mso-style-update:auto;
270
+ mso-style-unhide:no;
271
+ mso-style-next:Normal;
272
+ margin-top:0cm;
273
+ margin-right:0cm;
274
+ margin-bottom:0cm;
275
+ margin-left:84.0pt;
276
+ margin-bottom:.0001pt;
277
+ text-indent:-10.5pt;
278
+ mso-pagination:none;
279
+ font-size:10.0pt;
280
+ font-family:$bodyfont;
281
+ mso-fareast-font-family:$bodyfont;
282
+ mso-bidi-font-family:"Times New Roman";
283
+ mso-font-kerning:1.0pt;
284
+ mso-ansi-language:EN-US;
285
+ mso-fareast-language:ZH-CN;}
286
+ p.MsoIndex9, li.MsoIndex9, div.MsoIndex9
287
+ {mso-style-update:auto;
288
+ mso-style-unhide:no;
289
+ mso-style-next:Normal;
290
+ margin-top:0cm;
291
+ margin-right:0cm;
292
+ margin-bottom:0cm;
293
+ margin-left:94.5pt;
294
+ margin-bottom:.0001pt;
295
+ text-indent:-10.5pt;
296
+ mso-pagination:none;
297
+ font-size:10.0pt;
298
+ font-family:$bodyfont;
299
+ mso-fareast-font-family:$bodyfont;
300
+ mso-bidi-font-family:"Times New Roman";
301
+ mso-font-kerning:1.0pt;
302
+ mso-ansi-language:EN-US;
303
+ mso-fareast-language:ZH-CN;}
304
+ p.MsoNormalUnindented, li.MsoNormalUnindented, div.MsoNormalUnindented
305
+ {mso-style-unhide:no;
306
+ mso-style-qformat:yes;
307
+ mso-style-parent:"";
308
+ margin:0cm;
309
+ margin-bottom:.0001pt;
310
+ text-align:justify;
311
+ text-justify:inter-ideograph;
312
+ text-indent:0.0pt;
313
+ mso-pagination:widow-orphan;
314
+ tab-stops:20.15pt;
315
+ font-size:10.5pt;
316
+ mso-bidi-font-size:12.0pt;
317
+ font-family:$bodyfont;
318
+ mso-fareast-font-family:$bodyfont;
319
+ mso-font-kerning:1.0pt;
320
+ mso-ansi-language:EN-US;
321
+ mso-fareast-language:ZH-CN;}
322
+ p.MsoNormalIndent, li.MsoNormalIndent, div.MsoNormalIndent
323
+ {mso-style-priority:99;
324
+ margin-top:0cm;
325
+ margin-right:36.0cm;
326
+ margin-bottom:0cm;
327
+ margin-left:36.0pt;
328
+ text-align:justify;
329
+ line-height:12.0pt;
330
+ mso-pagination:widow-orphan;
331
+ tab-stops:20.15pt;
332
+ font-size:10.5pt;
333
+ mso-bidi-font-size:12.0pt;
334
+ font-family:$bodyfont;
335
+ mso-fareast-font-family:$bodyfont;
336
+ mso-font-kerning:1.0pt;
337
+ mso-ansi-language:EN-US;}
338
+ p.MsoBlockText, li.MsoBlockText, div.MsoBlockText
339
+ {mso-style-priority:99;
340
+ margin-top:0cm;
341
+ margin-right:57.6pt;
342
+ margin-bottom:0cm;
343
+ margin-left:57.6pt;
344
+ margin-bottom:.0001pt;
345
+ mso-pagination:widow-orphan;
346
+ border:none;
347
+ mso-border-alt:solid #4472C4 .25pt;
348
+ mso-border-themecolor:accent1;
349
+ padding:0cm;
350
+ mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
351
+ font-size:10.5pt;
352
+ mso-bidi-font-size:12.0pt;
353
+ font-family:$bodyfont;
354
+ mso-fareast-font-family:$bodyfont;
355
+ mso-font-kerning:1.0pt;
356
+ mso-ascii-font-family:$bodyfont;
357
+ mso-ascii-theme-font:minor-latin;
358
+ mso-fareast-theme-font:minor-fareast;
359
+ mso-hansi-font-family:Calibri;
360
+ mso-hansi-theme-font:minor-latin;
361
+ mso-bidi-font-family:$bodyfont;
362
+ mso-bidi-theme-font:minor-bidi;
363
+ color:#4472C4;
364
+ mso-themecolor:accent1;
365
+ mso-ansi-language:EN-AU;
366
+ font-style:italic;}
367
+ h1
368
+ {mso-style-priority:1;
369
+ mso-style-unhide:no;
370
+ mso-style-qformat:yes;
371
+ mso-style-link:"Heading 1 Char";
372
+ mso-style-next:Normal;
373
+ margin-top:15.6pt;
374
+ margin-right:0in;
375
+ margin-bottom:15.6pt;
376
+ margin-left:0in;
377
+ mso-para-margin-top:1.0gd;
378
+ mso-para-margin-right:0in;
379
+ mso-para-margin-bottom:1.0gd;
380
+ mso-para-margin-left:0in;
381
+ line-height:13.5pt;
382
+ mso-pagination:widow-orphan;
383
+ text-align:justify;
384
+ text-justify:inter-ideograph;
385
+ page-break-after:avoid;
386
+ mso-outline-level:1;
387
+ mso-list:l1 level1 lfo6;
388
+ mso-hyphenate:none;
389
+ tab-stops:20.0pt list 21.6pt left 28.0pt;
390
+ font-size:10.5pt;
391
+ mso-bidi-font-size:10.0pt;
392
+ font-family:$headerfont;
393
+ font-weight:normal;
394
+ mso-fareast-font-family:$headerfont;
395
+ mso-font-kerning:0pt;
396
+ mso-ansi-language:EN-GB;
397
+ mso-fareast-language:ZH-CN;
398
+ mso-bidi-font-weight:normal;}
399
+ h1.Section3
400
+ {mso-style-priority:1;
401
+ mso-style-unhide:no;
402
+ mso-style-qformat:yes;
403
+ mso-style-link:"Heading 1 Char";
404
+ mso-style-next:Normal;
405
+ margin-top:0.7cm;
406
+ mso-element:frame;
407
+ mso-element-wrap:no-wrap-beside;
408
+ mso-element-anchor-vertical:paragraph;
409
+ mso-element-left:center;
410
+ margin-right:0cm;
411
+ margin-bottom:0.2cm;
412
+ margin-left:0cm;
413
+ text-align:center;
414
+ line-height:15.5pt;
415
+ page-break-before:always;
416
+ mso-pagination:widow-orphan;
417
+ page-break-after:avoid;
418
+ font-weight:normal;
419
+ mso-outline-level:1;
420
+ mso-list:l1 level1 lfo6;
421
+ mso-hyphenate:none;
422
+ tab-stops:20.15pt;
423
+ font-size:10.5pt;
424
+ mso-bidi-font-size:10.0pt;
425
+ font-family:$headerfont;
426
+ mso-fareast-font-family:$headerfont;
427
+ mso-bidi-font-family:$headerfont;
428
+ mso-font-kerning:0pt;
429
+ mso-ansi-language:EN-GB;
430
+ mso-fareast-language:ZH-CN;
431
+ mso-bidi-font-weight:normal;}
432
+ h1.Annex
433
+ {mso-style-priority:1;
434
+ mso-style-unhide:no;
435
+ mso-style-qformat:yes;
436
+ mso-style-link:"Heading 1 Char";
437
+ mso-style-next:Normal;
438
+ margin-top:0.7cm;
439
+ mso-element:frame;
440
+ mso-element-wrap:no-wrap-beside;
441
+ mso-element-anchor-vertical:paragraph;
442
+ mso-element-left:center;
443
+ margin-right:0cm;
444
+ margin-bottom:0.2cm;
445
+ margin-left:0cm;
446
+ text-align:center;
447
+ line-height:15.5pt;
448
+ page-break-before:always;
449
+ mso-pagination:widow-orphan;
450
+ page-break-after:avoid;
451
+ mso-outline-level:1;
452
+ mso-hyphenate:none;
453
+ tab-stops:20.15pt;
454
+ font-size:10.5pt;
455
+ mso-bidi-font-size:10.0pt;
456
+ font-family:$headerfont;
457
+ mso-fareast-font-family:$headerfont;
458
+ mso-bidi-font-family:$headerfont;
459
+ mso-font-kerning:0pt;
460
+ mso-ansi-language:EN-GB;
461
+ mso-fareast-language:ZH-CN;
462
+ mso-bidi-font-weight:normal;}
463
+ p.ForewordTitle, li.ForewordTitle, div.ForewordTitle, h1.ForewordTitle
464
+ {mso-style-name:"Foreword Title";
465
+ mso-style-noshow:yes;
466
+ mso-style-unhide:no;
467
+ margin-top:0.7cm;
468
+ mso-element:frame;
469
+ mso-element-wrap:no-wrap-beside;
470
+ mso-element-anchor-vertical:paragraph;
471
+ mso-element-left:center;
472
+ margin-right:0cm;
473
+ margin-bottom:0.9cm;
474
+ margin-left:0cm;
475
+ text-align:center;
476
+ line-height:15.5pt;
477
+ page-break-before:always;
478
+ mso-pagination:widow-orphan;
479
+ page-break-after:avoid;
480
+ mso-outline-level:1;
481
+ mso-hyphenate:none;
482
+ tab-stops:20.15pt;
483
+ font-size:16.0pt;
484
+ mso-bidi-font-size:11.0pt;
485
+ font-family:$headerfont;
486
+ mso-fareast-font-family:$headerfont;
487
+ mso-bidi-font-family:$headerfont;
488
+ mso-ansi-language:EN-GB;
489
+ mso-fareast-language:ZH-CN;
490
+ mso-bidi-font-weight:normal;}
491
+ p.zzContents, li.zzContents, div.zzContents
492
+ {mso-style-name:zzContents;
493
+ mso-style-noshow:yes;
494
+ mso-style-unhide:no;
495
+ margin-top:0.7cm;
496
+ mso-element:frame;
497
+ mso-element-wrap:no-wrap-beside;
498
+ mso-element-anchor-vertical:paragraph;
499
+ mso-element-left:center;
500
+ margin-right:0cm;
501
+ margin-bottom:0.9cm;
502
+ margin-left:0cm;
503
+ text-align:center;
504
+ line-height:15.5pt;
505
+ page-break-before:always;
506
+ mso-pagination:widow-orphan;
507
+ page-break-after:avoid;
508
+ mso-outline-level:1;
509
+ mso-hyphenate:none;
510
+ tab-stops:20.15pt;
511
+ font-size:16.0pt;
512
+ mso-bidi-font-size:11.0pt;
513
+ font-family:$headerfont;
514
+ mso-fareast-font-family:$headerfont;
515
+ mso-bidi-font-family:$headerfont;
516
+ mso-ansi-language:EN-GB;
517
+ mso-fareast-language:ZH-CN;
518
+ mso-bidi-font-weight:normal;
519
+ mso-style-next:"TOC 1";}
520
+ p.IntroTitle, li.IntroTitle, div.IntroTitle, h1.IntroTitle
521
+ {mso-style-name:"Intro Title";
522
+ mso-style-noshow:yes;
523
+ mso-style-unhide:no;
524
+ margin-top:0.7cm;
525
+ mso-element:frame;
526
+ mso-element-wrap:no-wrap-beside;
527
+ mso-element-anchor-vertical:paragraph;
528
+ mso-element-left:center;
529
+ margin-right:0cm;
530
+ margin-bottom:0.9cm;
531
+ margin-left:0cm;
532
+ text-align:center;
533
+ line-height:15.5pt;
534
+ page-break-before:always;
535
+ mso-pagination:widow-orphan;
536
+ page-break-after:avoid;
537
+ mso-outline-level:1;
538
+ mso-hyphenate:none;
539
+ tab-stops:20.15pt;
540
+ font-size:16.0pt;
541
+ mso-bidi-font-size:11.0pt;
542
+ font-family:$headerfont;
543
+ mso-fareast-font-family:$headerfont;
544
+ mso-bidi-font-family:$headerfont;
545
+ mso-ansi-language:EN-GB;
546
+ mso-fareast-language:ZH-CN;
547
+ mso-bidi-font-weight:normal;}
548
+ .h2Annex
549
+ {mso-style-priority:2;
550
+ mso-style-unhide:no;
551
+ mso-style-qformat:yes;
552
+ mso-style-parent:"Heading 1";
553
+ mso-style-link:"Heading 2 Char";
554
+ mso-style-next:Normal;
555
+ margin-top:7.8pt;
556
+ margin-right:0cm;
557
+ margin-bottom:7.8pt;
558
+ margin-left:0cm;
559
+ mso-para-margin-top:.5gd;
560
+ mso-para-margin-right:0cm;
561
+ mso-para-margin-bottom:.5gd;
562
+ mso-para-margin-left:0cm;
563
+ text-align:center;
564
+ text-indent:0cm;
565
+ line-height:12.5pt;
566
+ mso-pagination:widow-orphan;
567
+ page-break-after:avoid;
568
+ mso-outline-level:2;
569
+ mso-hyphenate:none;
570
+ tab-stops:27.0pt 35.0pt;
571
+ font-size:10.5pt;
572
+ mso-bidi-font-size:10.0pt;
573
+ font-family:$headerfont;
574
+ mso-fareast-font-family:$headerfont;
575
+ mso-ansi-language:EN-GB;
576
+ mso-fareast-language:ZH-CN;
577
+ mso-bidi-font-weight:normal;}
578
+ h2
579
+ {mso-style-priority:2;
580
+ mso-style-unhide:no;
581
+ mso-style-qformat:yes;
582
+ mso-style-parent:"Heading 1";
583
+ mso-style-link:"Heading 2 Char";
584
+ mso-style-next:Normal;
585
+ margin-top:2.5pt;
586
+ margin-right:0in;
587
+ margin-bottom:2.5pt;
588
+ margin-left:0in;
589
+ mso-para-margin-top:.5gd;
590
+ mso-para-margin-right:0in;
591
+ mso-para-margin-bottom:.5gd;
592
+ mso-para-margin-left:0in;
593
+ text-indent:0cm;
594
+ line-height:12.5pt;
595
+ mso-pagination:widow-orphan;
596
+ page-break-after:avoid;
597
+ mso-outline-level:2;
598
+ mso-list:l1 level2 lfo6;
599
+ mso-hyphenate:none;
600
+ tab-stops:27.0pt 35.0pt;
601
+ font-size:10.5pt;
602
+ mso-bidi-font-size:10.0pt;
603
+ font-family:$headerfont;
604
+ font-weight:normal;
605
+ mso-fareast-font-family:$headerfont;
606
+ mso-ansi-language:EN-GB;
607
+ mso-fareast-language:ZH-CN;
608
+ mso-bidi-font-weight:normal;}
609
+ h3
610
+ {mso-style-priority:3;
611
+ mso-style-unhide:no;
612
+ mso-style-qformat:yes;
613
+ mso-style-parent:"Heading 1";
614
+ mso-style-link:"Heading 3 Char";
615
+ mso-style-next:Normal;
616
+ margin-top:2.5pt;
617
+ margin-right:0in;
618
+ margin-bottom:2.5pt;
619
+ margin-left:0in;
620
+ mso-para-margin-top:.5gd;
621
+ mso-para-margin-right:0in;
622
+ mso-para-margin-bottom:.5gd;
623
+ mso-para-margin-left:0in;
624
+ text-indent:0cm;
625
+ line-height:12.0pt;
626
+ mso-pagination:widow-orphan;
627
+ page-break-after:avoid;
628
+ mso-outline-level:3;
629
+ mso-list:l1 level3 lfo6;
630
+ mso-hyphenate:none;
631
+ tab-stops:list 36.0pt left 44.0pt;
632
+ font-size:10.5pt;
633
+ mso-bidi-font-size:10.0pt;
634
+ font-family:$headerfont;
635
+ font-weight:normal;
636
+ mso-fareast-font-family:$headerfont;
637
+ mso-ansi-language:EN-GB;
638
+ mso-fareast-language:ZH-CN;
639
+ mso-bidi-font-weight:normal;}
640
+ h4
641
+ {mso-style-priority:4;
642
+ mso-style-unhide:no;
643
+ mso-style-qformat:yes;
644
+ mso-style-parent:"Heading 3";
645
+ mso-style-link:"Heading 4 Char";
646
+ mso-style-next:Normal;
647
+ margin-top:2.5pt;
648
+ margin-right:0in;
649
+ margin-bottom:2.5pt;
650
+ margin-left:0in;
651
+ mso-para-margin-top:.5gd;
652
+ mso-para-margin-right:0in;
653
+ mso-para-margin-bottom:.5gd;
654
+ mso-para-margin-left:0in;
655
+ text-indent:0cm;
656
+ line-height:12.0pt;
657
+ mso-pagination:widow-orphan;
658
+ page-break-after:avoid;
659
+ mso-outline-level:4;
660
+ mso-list:l1 level4 lfo6;
661
+ mso-hyphenate:none;
662
+ tab-stops:51.05pt 57.0pt 68.0pt;
663
+ font-size:10.5pt;
664
+ mso-bidi-font-size:10.0pt;
665
+ font-family:$headerfont;
666
+ font-weight:normal;
667
+ mso-fareast-font-family:$headerfont;
668
+ mso-ansi-language:EN-GB;
669
+ mso-fareast-language:ZH-CN;
670
+ mso-bidi-font-weight:normal;}
671
+ h5
672
+ {mso-style-priority:5;
673
+ mso-style-unhide:no;
674
+ mso-style-qformat:yes;
675
+ mso-style-parent:"Heading 4";
676
+ mso-style-link:"Heading 5 Char";
677
+ mso-style-next:Normal;
678
+ margin-top:2.5pt;
679
+ margin-right:0in;
680
+ margin-bottom:2.5pt;
681
+ margin-left:0in;
682
+ mso-para-margin-top:.5gd;
683
+ mso-para-margin-right:0in;
684
+ mso-para-margin-bottom:.5gd;
685
+ mso-para-margin-left:0in;
686
+ text-indent:0cm;
687
+ line-height:12.0pt;
688
+ mso-pagination:widow-orphan;
689
+ page-break-after:avoid;
690
+ mso-outline-level:5;
691
+ mso-list:l1 level5 lfo6;
692
+ mso-hyphenate:none;
693
+ tab-stops:51.05pt list 54.0pt;
694
+ font-size:10.5pt;
695
+ mso-bidi-font-size:10.0pt;
696
+ font-family:$headerfont;
697
+ font-weight:normal;
698
+ mso-fareast-font-family:$headerfont;
699
+ mso-ansi-language:EN-GB;
700
+ mso-fareast-language:ZH-CN;
701
+ mso-bidi-font-weight:normal;}
702
+ h6
703
+ {mso-style-priority:6;
704
+ mso-style-unhide:no;
705
+ mso-style-qformat:yes;
706
+ mso-style-parent:"Heading 5";
707
+ mso-style-link:"Heading 6 Char";
708
+ mso-style-next:Normal;
709
+ margin-top:3.0pt;
710
+ margin-right:0cm;
711
+ margin-bottom:12.0pt;
712
+ margin-left:0cm;
713
+ text-indent:0cm;
714
+ mso-para-margin-top:1.0gd;
715
+ mso-para-margin-right:0cm;
716
+ mso-para-margin-bottom:1.0gd;
717
+ mso-para-margin-left:0cm;
718
+ line-height:12.0pt;
719
+ mso-pagination:widow-orphan;
720
+ page-break-after:avoid;
721
+ mso-outline-level:6;
722
+ mso-list:l1 level6 lfo6;
723
+ mso-hyphenate:none;
724
+ tab-stops:51.05pt list 72.0pt;
725
+ font-size:10.5pt;
726
+ mso-bidi-font-size:10.0pt;
727
+ font-family:$headerfont;
728
+ font-weight:normal;
729
+ mso-fareast-font-family:$headerfont;
730
+ mso-ansi-language:EN-GB;
731
+ mso-fareast-language:ZH-CN;
732
+ mso-bidi-font-weight:normal;}
733
+ p.MsoToc1, li.MsoToc1, div.MsoToc1
734
+ {mso-style-update:auto;
735
+ mso-style-priority:39;
736
+ mso-style-unhide:no;
737
+ mso-style-next:Normal;
738
+ margin:0cm;
739
+ margin-bottom:.0001pt;
740
+ text-align:justify;
741
+ text-justify:inter-ideograph;
742
+ mso-pagination:widow-orphan;
743
+ tab-stops:right dotted 462.05pt;
744
+ font-size:10.5pt;
745
+ mso-font-kerning:1.0pt;
746
+ line-height:150%;
747
+ font-family:$bodyfont;
748
+ mso-hansi-font-family:"Times New Roman";
749
+ mso-bidi-font-family:$bodyfont;
750
+ mso-ansi-language:EN-US;
751
+ mso-fareast-language:ZH-CN;}
752
+ p.MsoToc2, li.MsoToc2, div.MsoToc2
753
+ {mso-style-update:auto;
754
+ mso-style-noshow:yes;
755
+ mso-style-unhide:no;
756
+ mso-style-next:Normal;
757
+ margin:0cm;
758
+ margin-left:10.5pt;
759
+ margin-bottom:.0001pt;
760
+ text-align:justify;
761
+ text-justify:inter-ideograph;
762
+ mso-pagination:widow-orphan;
763
+ tab-stops:right dotted 462.05pt;
764
+ font-size:10.5pt;
765
+ mso-font-kerning:1.0pt;
766
+ line-height:150%;
767
+ font-family:$bodyfont;
768
+ mso-hansi-font-family:"Times New Roman";
769
+ mso-bidi-font-family:$bodyfont;
770
+ mso-ansi-language:EN-US;
771
+ mso-fareast-language:ZH-CN;}
772
+ p.MsoToc3, li.MsoToc3, div.MsoToc3
773
+ {mso-style-update:auto;
774
+ mso-style-priority:39;
775
+ mso-style-unhide:no;
776
+ mso-style-next:Normal;
777
+ margin-top:0cm;
778
+ margin-right:0cm;
779
+ margin-bottom:0cm;
780
+ margin-left:21.0pt;
781
+ margin-bottom:.0001pt;
782
+ mso-para-margin-top:0cm;
783
+ mso-para-margin-right:0cm;
784
+ mso-para-margin-bottom:0cm;
785
+ mso-para-margin-left:1.0gd;
786
+ mso-para-margin-bottom:.0001pt;
787
+ text-align:justify;
788
+ text-justify:inter-ideograph;
789
+ mso-pagination:widow-orphan;
790
+ tab-stops:right dotted 462.05pt;
791
+ font-size:10.5pt;
792
+ mso-font-kerning:1.0pt;
793
+ line-height:150%;
794
+ font-family:$bodyfont;
795
+ mso-bidi-font-family:$bodyfont;
796
+ mso-ansi-language:EN-US;
797
+ mso-fareast-language:ZH-CN;}
798
+ p.MsoToc4, li.MsoToc4, div.MsoToc4
799
+ {mso-style-update:auto;
800
+ mso-style-priority:39;
801
+ mso-style-unhide:no;
802
+ mso-style-next:Normal;
803
+ margin-top:0cm;
804
+ margin-right:0cm;
805
+ margin-bottom:0cm;
806
+ margin-left:31.5pt;
807
+ margin-bottom:.0001pt;
808
+ mso-para-margin-top:0cm;
809
+ mso-para-margin-right:0cm;
810
+ mso-para-margin-bottom:0cm;
811
+ mso-para-margin-left:3.0gd;
812
+ mso-para-margin-bottom:.0001pt;
813
+ text-align:justify;
814
+ text-justify:inter-ideograph;
815
+ mso-pagination:widow-orphan;
816
+ tab-stops:right dotted 462.05pt;
817
+ font-size:10.5pt;
818
+ mso-font-kerning:1.0pt;
819
+ line-height:150%;
820
+ font-family:$bodyfont;
821
+ mso-bidi-font-family:$bodyfont;
822
+ mso-ansi-language:EN-US;
823
+ mso-fareast-language:ZH-CN;}
824
+ p.MsoToc5, li.MsoToc5, div.MsoToc5
825
+ {mso-style-update:auto;
826
+ mso-style-noshow:yes;
827
+ mso-style-unhide:no;
828
+ mso-style-next:Normal;
829
+ margin-top:0cm;
830
+ margin-right:0cm;
831
+ margin-bottom:0cm;
832
+ margin-left:42pt;
833
+ margin-bottom:.0001pt;
834
+ mso-para-margin-top:0cm;
835
+ mso-para-margin-right:0cm;
836
+ mso-para-margin-bottom:0cm;
837
+ mso-para-margin-left:5.0gd;
838
+ mso-para-margin-bottom:.0001pt;
839
+ text-align:justify;
840
+ text-justify:inter-ideograph;
841
+ mso-pagination:widow-orphan;
842
+ tab-stops:right dotted 462.05pt;
843
+ font-size:10.5pt;
844
+ mso-font-kerning:1.0pt;
845
+ line-height:150%;
846
+ font-family:$bodyfont;
847
+ mso-bidi-font-family:$bodyfont;
848
+ mso-ansi-language:EN-US;
849
+ mso-fareast-language:ZH-CN;}
850
+ p.MsoToc6, li.MsoToc6, div.MsoToc6
851
+ {mso-style-update:auto;
852
+ mso-style-noshow:yes;
853
+ mso-style-unhide:no;
854
+ mso-style-next:Normal;
855
+ margin-top:0cm;
856
+ margin-right:0cm;
857
+ margin-bottom:0cm;
858
+ margin-left:52.5pt;
859
+ margin-bottom:.0001pt;
860
+ mso-para-margin-top:0cm;
861
+ mso-para-margin-right:0cm;
862
+ mso-para-margin-bottom:0cm;
863
+ mso-para-margin-left:5.0gd;
864
+ mso-para-margin-bottom:.0001pt;
865
+ text-align:justify;
866
+ text-justify:inter-ideograph;
867
+ mso-pagination:widow-orphan;
868
+ tab-stops:right dotted 462.05pt;
869
+ font-size:10.5pt;
870
+ mso-font-kerning:1.0pt;
871
+ line-height:150%;
872
+ font-family:$bodyfont;
873
+ mso-bidi-font-family:$bodyfont;
874
+ mso-ansi-language:EN-US;
875
+ mso-fareast-language:ZH-CN;}
876
+ p.MsoToc7, li.MsoToc7, div.MsoToc7
877
+ {mso-style-update:auto;
878
+ mso-style-noshow:yes;
879
+ mso-style-unhide:no;
880
+ mso-style-next:Normal;
881
+ margin-top:0cm;
882
+ margin-right:0cm;
883
+ margin-bottom:0cm;
884
+ margin-left:63pt;
885
+ margin-bottom:.0001pt;
886
+ mso-para-margin-top:0cm;
887
+ mso-para-margin-right:0cm;
888
+ mso-para-margin-bottom:0cm;
889
+ mso-para-margin-left:5.0gd;
890
+ mso-para-margin-bottom:.0001pt;
891
+ text-align:justify;
892
+ text-justify:inter-ideograph;
893
+ mso-pagination:widow-orphan;
894
+ tab-stops:right dotted 462.05pt;
895
+ font-size:10.5pt;
896
+ mso-font-kerning:1.0pt;
897
+ line-height:150%;
898
+ font-family:$bodyfont;
899
+ mso-bidi-font-family:$bodyfont;
900
+ mso-ansi-language:EN-US;
901
+ mso-fareast-language:ZH-CN;}
902
+ p.MsoToc8, li.MsoToc8, div.MsoToc8
903
+ {mso-style-update:auto;
904
+ mso-style-noshow:yes;
905
+ mso-style-unhide:no;
906
+ mso-style-next:Normal;
907
+ margin-top:0cm;
908
+ margin-right:0cm;
909
+ margin-bottom:0cm;
910
+ margin-left:73.5pt;
911
+ margin-bottom:.0001pt;
912
+ mso-para-margin-top:0cm;
913
+ mso-para-margin-right:0cm;
914
+ mso-para-margin-bottom:0cm;
915
+ mso-para-margin-left:5.0gd;
916
+ mso-para-margin-bottom:.0001pt;
917
+ text-align:justify;
918
+ text-justify:inter-ideograph;
919
+ mso-pagination:widow-orphan;
920
+ tab-stops:right dotted 462.05pt;
921
+ font-size:10.5pt;
922
+ mso-font-kerning:1.0pt;
923
+ line-height:150%;
924
+ font-family:$bodyfont;
925
+ mso-bidi-font-family:$bodyfont;
926
+ mso-ansi-language:EN-US;
927
+ mso-fareast-language:ZH-CN;}
928
+ p.MsoToc9, li.MsoToc9, div.MsoToc9
929
+ {mso-style-update:auto;
930
+ mso-style-noshow:yes;
931
+ mso-style-unhide:no;
932
+ mso-style-next:Normal;
933
+ margin-top:0cm;
934
+ margin-right:0cm;
935
+ margin-bottom:0cm;
936
+ margin-left:84pt;
937
+ margin-bottom:.0001pt;
938
+ mso-para-margin-top:0cm;
939
+ mso-para-margin-right:0cm;
940
+ mso-para-margin-bottom:0cm;
941
+ mso-para-margin-left:5.0gd;
942
+ mso-para-margin-bottom:.0001pt;
943
+ text-align:justify;
944
+ text-justify:inter-ideograph;
945
+ mso-pagination:widow-orphan;
946
+ tab-stops:right dotted 462.05pt;
947
+ font-size:10.5pt;
948
+ mso-font-kerning:1.0pt;
949
+ line-height:150%;
950
+ font-family:$bodyfont;
951
+ mso-bidi-font-family:$bodyfont;
952
+ mso-ansi-language:EN-US;
953
+ mso-fareast-language:ZH-CN;}
954
+ p.MsoHeader, li.MsoHeader, div.MsoHeader
955
+ {mso-style-name:标准书眉_奇数页;
956
+ mso-style-unhide:no;
957
+ mso-style-parent:"";
958
+ mso-style-next:Normal;
959
+ margin-top:0cm;
960
+ margin-right:0cm;
961
+ margin-bottom:11.0pt;
962
+ margin-left:0cm;
963
+ text-align:right;
964
+ mso-pagination:widow-orphan;
965
+ tab-stops:center 207.7pt right 415.3pt;
966
+ font-size:9.0pt;
967
+ mso-font-kerning:1.0pt;
968
+ font-family:$bodyfont;
969
+ mso-hansi-font-family:$bodyfont;
970
+ mso-bidi-font-family:$bodyfont;
971
+ mso-ansi-language:EN-US;
972
+ mso-fareast-language:ZH-CN;
973
+ mso-no-proof:yes;}
974
+ p.MsoFooter, li.MsoFooter, div.MsoFooter
975
+ {mso-style-name:标准书脚_奇数页;
976
+ mso-style-unhide:no;
977
+ mso-style-parent:"";
978
+ margin-top:6.0pt;
979
+ margin-right:10.5pt;
980
+ margin-bottom:0cm;
981
+ margin-left:0cm;
982
+ margin-bottom:.0001pt;
983
+ mso-para-margin-top:0cm;
984
+ mso-para-margin-right:1.0gd;
985
+ mso-para-margin-bottom:0cm;
986
+ mso-para-margin-left:0cm;
987
+ mso-para-margin-bottom:.0001pt;
988
+ text-align:right;
989
+ mso-pagination:widow-orphan;
990
+ font-size:9.0pt;
991
+ mso-font-kerning:1.0pt;
992
+ font-family:$bodyfont;
993
+ mso-hansi-font-family:$bodyfont;
994
+ mso-bidi-font-family:$bodyfont;
995
+ mso-ansi-language:EN-US;
996
+ mso-fareast-language:ZH-CN;}
997
+ p.a1, li.a1, div.a1
998
+ {mso-style-name:标准书脚_奇数页; // NAME: Standard Footer, Odd pages
999
+ mso-style-unhide:no;
1000
+ mso-style-parent:"";
1001
+ margin-top:6.0pt;
1002
+ margin-right:9.9pt;
1003
+ margin-bottom:0in;
1004
+ margin-left:0in;
1005
+ margin-bottom:.0001pt;
1006
+ text-align:right;
1007
+ mso-pagination:widow-orphan;
1008
+ font-size:9.0pt;
1009
+ font-family:$bodyfont;
1010
+ mso-hansi-font-family:"Times New Roman";
1011
+ mso-bidi-font-family:"Times New Roman";}
1012
+ span.MsoFootnoteReference
1013
+ {mso-style-priority:99;
1014
+ vertical-align:super;}
1015
+ span.MsoPageNumber
1016
+ {mso-style-unhide:no;
1017
+ mso-ansi-font-size:9.0pt;
1018
+ font-family:$bodyfont;
1019
+ mso-ascii-font-family:"Times New Roman";
1020
+ mso-fareast-font-family:$bodyfont;
1021
+ mso-hansi-font-family:"Times New Roman";}
1022
+ span.MsoEndnoteReference
1023
+ {mso-style-noshow:yes;
1024
+ mso-style-unhide:no;
1025
+ vertical-align:super;}
1026
+ p.a, li.a, div.a
1027
+ {mso-style-name:段;
1028
+ mso-style-unhide:no;
1029
+ mso-style-parent:"";
1030
+ mso-style-link:"段 Char";
1031
+ margin:0cm;
1032
+ margin-bottom:.0001pt;
1033
+ text-align:justify;
1034
+ text-justify:inter-ideograph;
1035
+ text-indent:21.0pt;
1036
+ mso-char-indent-count:2.0;
1037
+ mso-pagination:widow-orphan;
1038
+ tab-stops:center 210.05pt right dotted 464.9pt;
1039
+ text-autospace:none;
1040
+ font-size:10.5pt;
1041
+ mso-bidi-font-size:10.0pt;
1042
+ font-family:$bodyfont;
1043
+ mso-hansi-font-family:"Times New Roman";
1044
+ mso-bidi-font-family:"Times New Roman";
1045
+ mso-ansi-language:EN-US;
1046
+ mso-fareast-language:ZH-CN;
1047
+ mso-no-proof:yes;}
1048
+ span.Char
1049
+ {mso-style-name:"段 Char";
1050
+ mso-style-unhide:no;
1051
+ mso-style-locked:yes;
1052
+ mso-style-link:段;
1053
+ mso-ansi-font-size:10.5pt;
1054
+ font-family:$bodyfont;
1055
+ mso-ascii-font-family:$bodyfont;
1056
+ mso-ansi-language:EN-US;
1057
+ mso-fareast-language:ZH-CN;
1058
+ mso-bidi-language:AR-SA;
1059
+ mso-no-proof:yes;}
1060
+ p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
1061
+ {mso-style-noshow:yes;
1062
+ mso-style-unhide:no;
1063
+ margin:0cm;
1064
+ margin-bottom:.0001pt;
1065
+ text-align:justify;
1066
+ text-justify:inter-ideograph;
1067
+ mso-pagination:none;
1068
+ background:navy;
1069
+ font-size:10.5pt;
1070
+ mso-bidi-font-size:12.0pt;
1071
+ font-family:$bodyfont;
1072
+ mso-fareast-font-family:$bodyfont;
1073
+ mso-font-kerning:1.0pt;
1074
+ mso-ansi-language:EN-US;
1075
+ mso-fareast-language:ZH-CN;}
1076
+ p.MsoEndnoteText, li.MsoEndnoteText, div.MsoEndnoteText
1077
+ {mso-style-noshow:yes;
1078
+ mso-style-unhide:no;
1079
+ margin:0cm;
1080
+ margin-bottom:.0001pt;
1081
+ mso-pagination:none;
1082
+ layout-grid-mode:char;
1083
+ font-size:10.5pt;
1084
+ mso-bidi-font-size:12.0pt;
1085
+ font-family:$bodyfont;
1086
+ mso-fareast-font-family:$bodyfont;
1087
+ mso-font-kerning:1.0pt;
1088
+ mso-ansi-language:EN-US;
1089
+ mso-fareast-language:ZH-CN;}
1090
+ p.MsoIndexHeading, li.MsoIndexHeading, div.MsoIndexHeading
1091
+ {mso-style-unhide:no;
1092
+ mso-style-next:"MsoIndex1";
1093
+ margin-top:6.0pt;
1094
+ margin-right:0cm;
1095
+ margin-bottom:6.0pt;
1096
+ margin-left:0cm;
1097
+ text-align:center;
1098
+ mso-pagination:none;
1099
+ font-size:10.5pt;
1100
+ mso-bidi-font-size:10.0pt;
1101
+ font-family:$bodyfont;
1102
+ mso-fareast-font-family:$bodyfont;
1103
+ mso-bidi-font-family:"Times New Roman";
1104
+ mso-font-kerning:1.0pt;
1105
+ mso-ansi-language:EN-US;
1106
+ mso-fareast-language:ZH-CN;
1107
+ font-weight:bold;
1108
+ mso-bidi-font-style:italic;}
1109
+ p.MsoCaption, li.MsoCaption, div.MsoCaption
1110
+ {mso-style-unhide:no;
1111
+ mso-style-qformat:yes;
1112
+ mso-style-next:Normal;
1113
+ margin-top:7.6pt;
1114
+ margin-right:0cm;
1115
+ margin-bottom:8.0pt;
1116
+ margin-left:0cm;
1117
+ text-align:justify;
1118
+ text-justify:inter-ideograph;
1119
+ mso-pagination:none;
1120
+ font-size:10.0pt;
1121
+ font-family:$headerfont;
1122
+ mso-fareast-font-family:$headerfont;
1123
+ mso-font-kerning:1.0pt;
1124
+ mso-ansi-language:EN-US;
1125
+ mso-fareast-language:ZH-CN;}
1126
+ p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
1127
+ {mso-style-noshow:yes;
1128
+ mso-style-priority:99;
1129
+ mso-style-link:"Footnote Text Char";
1130
+ margin-top:0cm;
1131
+ margin-right:0cm;
1132
+ margin-bottom:0cm;
1133
+ margin-left:45.0pt;
1134
+ margin-bottom:.0001pt;
1135
+ text-indent:-27.00pt;
1136
+ mso-pagination:none;
1137
+ tab-stops:20.15pt;
1138
+ font-size:9.0pt;
1139
+ mso-font-kerning:1.0pt;
1140
+ mso-list:l9 level1 lfo12;
1141
+ font-family:$bodyfont;
1142
+ mso-fareast-font-family:$bodyfont;
1143
+ mso-bidi-font-family:$bodyfont;
1144
+ mso-ansi-language:EN-GB;
1145
+ mso-fareast-language:ZH-CN;}
1146
+ p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
1147
+ {mso-style-noshow:yes;
1148
+ mso-style-priority:99;
1149
+ mso-style-unhide:no;
1150
+ mso-style-link:"Body Text Char";
1151
+ margin-top:0cm;
1152
+ margin-right:0cm;
1153
+ margin-bottom:6.0pt;
1154
+ margin-left:0cm;
1155
+ text-align:justify;
1156
+ line-height:12.0pt;
1157
+ mso-pagination:widow-orphan;
1158
+ font-size:11.0pt;
1159
+ font-family:$bodyfont;
1160
+ mso-fareast-font-family:$bodyfont;
1161
+ mso-bidi-font-family:$bodyfont;
1162
+ mso-ansi-language:EN-GB;}
1163
+ a:link, span.MsoHyperlink
1164
+ {mso-style-priority:99;
1165
+ mso-style-unhide:no;
1166
+ mso-style-parent:"";
1167
+ mso-ansi-language:EN;
1168
+ color:blue;
1169
+ text-decoration:underline;
1170
+ text-underline:single;}
1171
+ a:visited, span.MsoHyperlinkFollowed
1172
+ {mso-style-noshow:yes;
1173
+ mso-style-priority:99;
1174
+ mso-themecolor:followedhyperlink;
1175
+ color:#954F72;
1176
+ text-decoration:underline;
1177
+ text-underline:single;}
1178
+ span.MsoPlaceholderText
1179
+ {mso-style-noshow:yes;
1180
+ mso-style-priority:99;
1181
+ mso-style-unhide:no;
1182
+ mso-style-parent:"";
1183
+ color:gray;}
1184
+ span.Heading1Char
1185
+ {mso-style-name:"Heading 1 Char";
1186
+ mso-style-priority:1;
1187
+ mso-style-unhide:no;
1188
+ mso-style-locked:yes;
1189
+ mso-style-parent:"";
1190
+ mso-style-link:"Heading 1";
1191
+ mso-ansi-font-size:13.0pt;
1192
+ font-family:$headerfont;
1193
+ mso-ascii-font-family:$headerfont;
1194
+ mso-fareast-font-family:$headerfont;
1195
+ mso-hansi-font-family:Cambria;
1196
+ mso-ansi-language:EN-GB;
1197
+ mso-fareast-language:ZH-CN;
1198
+ font-weight:normal;
1199
+ mso-bidi-font-weight:normal;}
1200
+ span.Heading2Char
1201
+ {mso-style-name:"Heading 2 Char";
1202
+ mso-style-priority:2;
1203
+ mso-style-unhide:no;
1204
+ mso-style-locked:yes;
1205
+ mso-style-parent:"";
1206
+ mso-style-link:"Heading 2";
1207
+ mso-ansi-font-size:12.0pt;
1208
+ font-family:$headerfont;
1209
+ mso-ascii-font-family:$headerfont;
1210
+ mso-fareast-font-family:$headerfont;
1211
+ mso-hansi-font-family:Cambria;
1212
+ mso-ansi-language:EN-GB;
1213
+ mso-fareast-language:ZH-CN;
1214
+ font-weight:normal;
1215
+ mso-bidi-font-weight:normal;}
1216
+ span.Heading3Char
1217
+ {mso-style-name:"Heading 3 Char";
1218
+ mso-style-priority:3;
1219
+ mso-style-unhide:no;
1220
+ mso-style-locked:yes;
1221
+ mso-style-parent:"";
1222
+ mso-style-link:"Heading 3";
1223
+ mso-ansi-font-size:11.0pt;
1224
+ font-family:$headerfont;
1225
+ mso-ascii-font-family:$headerfont;
1226
+ mso-fareast-font-family:$headerfont;
1227
+ mso-hansi-font-family:Cambria;
1228
+ mso-ansi-language:EN-GB;
1229
+ mso-fareast-language:ZH-CN;
1230
+ font-weight:normal;
1231
+ mso-bidi-font-weight:normal;}
1232
+ span.Heading4Char
1233
+ {mso-style-name:"Heading 4 Char";
1234
+ mso-style-priority:4;
1235
+ mso-style-unhide:no;
1236
+ mso-style-locked:yes;
1237
+ mso-style-parent:"";
1238
+ mso-style-link:"Heading 4";
1239
+ mso-ansi-font-size:11.0pt;
1240
+ font-family:$headerfont;
1241
+ mso-ascii-font-family:$headerfont;
1242
+ mso-fareast-font-family:$headerfont;
1243
+ mso-hansi-font-family:Cambria;
1244
+ mso-ansi-language:EN-GB;
1245
+ mso-fareast-language:ZH-CN;
1246
+ font-weight:normal;
1247
+ mso-bidi-font-weight:normal;}
1248
+ span.Heading5Char
1249
+ {mso-style-name:"Heading 5 Char";
1250
+ mso-style-priority:5;
1251
+ mso-style-unhide:no;
1252
+ mso-style-locked:yes;
1253
+ mso-style-parent:"";
1254
+ mso-style-link:"Heading 5";
1255
+ mso-ansi-font-size:11.0pt;
1256
+ font-family:$headerfont;
1257
+ mso-ascii-font-family:$headerfont;
1258
+ mso-fareast-font-family:$headerfont;
1259
+ mso-hansi-font-family:Cambria;
1260
+ mso-ansi-language:EN-GB;
1261
+ mso-fareast-language:ZH-CN;
1262
+ font-weight:normal;
1263
+ mso-bidi-font-weight:normal;}
1264
+ span.Heading6Char
1265
+ {mso-style-name:"Heading 6 Char";
1266
+ mso-style-priority:6;
1267
+ mso-style-unhide:no;
1268
+ mso-style-locked:yes;
1269
+ mso-style-parent:"";
1270
+ mso-style-link:"Heading 6";
1271
+ mso-ansi-font-size:11.0pt;
1272
+ font-family:$headerfont;
1273
+ font-weight:normal;
1274
+ mso-ascii-font-family:$headerfont;
1275
+ mso-fareast-font-family:$headerfont;
1276
+ mso-hansi-font-family:Cambria;
1277
+ mso-ansi-language:EN-GB;
1278
+ mso-fareast-language:ZH-CN;
1279
+ mso-bidi-font-weight:normal;}
1280
+ p.a2, li.a2, div.a2
1281
+ {mso-style-name:a2;
1282
+ mso-style-priority:11;
1283
+ mso-style-unhide:no;
1284
+ mso-style-next:Normal;
1285
+ margin-top:13.5pt;
1286
+ margin-right:0cm;
1287
+ margin-bottom:12.0pt;
1288
+ margin-left:0cm;
1289
+ text-indent:0cm;
1290
+ line-height:13.5pt;
1291
+ mso-pagination:widow-orphan;
1292
+ page-break-after:avoid;
1293
+ mso-outline-level:1;
1294
+ mso-list:l0 level2 lfo12;
1295
+ tab-stops:1.0cm 36.0pt;
1296
+ font-size:13.0pt;
1297
+ mso-bidi-font-size:11.0pt;
1298
+ font-family:$bodyfont;
1299
+ mso-fareast-font-family:$bodyfont;
1300
+ mso-bidi-font-family:$bodyfont;
1301
+ mso-ansi-language:EN-GB;
1302
+ mso-fareast-language:ZH-CN;
1303
+ font-weight:bold;
1304
+ mso-bidi-font-weight:normal;}
1305
+ p.a3, li.a3, div.a3
1306
+ {mso-style-name:a3;
1307
+ mso-style-priority:12;
1308
+ mso-style-unhide:no;
1309
+ mso-style-next:Normal;
1310
+ margin-top:3.0pt;
1311
+ margin-right:0cm;
1312
+ margin-bottom:12.0pt;
1313
+ margin-left:0cm;
1314
+ text-indent:0cm;
1315
+ line-height:12.5pt;
1316
+ mso-pagination:widow-orphan;
1317
+ page-break-after:avoid;
1318
+ mso-outline-level:1;
1319
+ mso-list:l0 level3 lfo12;
1320
+ tab-stops:20.15pt list 36.0pt;
1321
+ font-size:12.0pt;
1322
+ mso-bidi-font-size:11.0pt;
1323
+ font-family:$bodyfont;
1324
+ mso-fareast-font-family:$bodyfont;
1325
+ mso-bidi-font-family:$bodyfont;
1326
+ mso-ansi-language:EN-GB;
1327
+ mso-fareast-language:ZH-CN;
1328
+ font-weight:bold;
1329
+ mso-bidi-font-weight:normal;}
1330
+ p.a4, li.a4, div.a4
1331
+ {mso-style-name:a4;
1332
+ mso-style-priority:13;
1333
+ mso-style-unhide:no;
1334
+ mso-style-next:Normal;
1335
+ margin-top:3.0pt;
1336
+ margin-right:0cm;
1337
+ margin-bottom:12.0pt;
1338
+ margin-left:0cm;
1339
+ text-indent:0cm;
1340
+ line-height:12.0pt;
1341
+ mso-pagination:widow-orphan;
1342
+ page-break-after:avoid;
1343
+ mso-outline-level:1;
1344
+ mso-list:l0 level4 lfo12;
1345
+ tab-stops:20.15pt 44.0pt list 54.0pt;
1346
+ font-size:11.0pt;
1347
+ font-family:$bodyfont;
1348
+ mso-fareast-font-family:$bodyfont;
1349
+ mso-bidi-font-family:$bodyfont;
1350
+ mso-ansi-language:EN-GB;
1351
+ mso-fareast-language:ZH-CN;
1352
+ font-weight:bold;
1353
+ mso-bidi-font-style:italic;}
1354
+ p.a5, li.a5, div.a5
1355
+ {mso-style-name:a5;
1356
+ mso-style-priority:14;
1357
+ mso-style-unhide:no;
1358
+ mso-style-next:Normal;
1359
+ margin-top:3.0pt;
1360
+ margin-right:0cm;
1361
+ margin-bottom:12.0pt;
1362
+ margin-left:0cm;
1363
+ text-indent:0cm;
1364
+ line-height:12.0pt;
1365
+ mso-pagination:widow-orphan;
1366
+ page-break-after:avoid;
1367
+ mso-outline-level:1;
1368
+ mso-list:l0 level5 lfo12;
1369
+ tab-stops:20.15pt list 54.0pt left 62.35pt 68.0pt;
1370
+ font-size:11.0pt;
1371
+ font-family:$bodyfont;
1372
+ mso-fareast-font-family:$bodyfont;
1373
+ mso-bidi-font-family:$bodyfont;
1374
+ mso-ansi-language:EN-GB;
1375
+ mso-fareast-language:ZH-CN;
1376
+ font-weight:bold;
1377
+ mso-bidi-font-style:italic;}
1378
+ p.a6, li.a6, div.a6
1379
+ {mso-style-name:a6;
1380
+ mso-style-priority:15;
1381
+ mso-style-unhide:no;
1382
+ mso-style-next:Normal;
1383
+ margin-top:3.0pt;
1384
+ margin-right:0cm;
1385
+ margin-bottom:12.0pt;
1386
+ margin-left:0cm;
1387
+ text-indent:0cm;
1388
+ line-height:12.0pt;
1389
+ mso-pagination:widow-orphan;
1390
+ page-break-after:avoid;
1391
+ mso-outline-level:1;
1392
+ mso-list:l0 level6 lfo12;
1393
+ tab-stops:20.15pt 62.35pt 68.0pt list 72.0pt;
1394
+ font-size:11.0pt;
1395
+ font-family:$bodyfont;
1396
+ mso-fareast-font-family:$bodyfont;
1397
+ mso-bidi-font-family:$bodyfont;
1398
+ mso-ansi-language:EN-GB;
1399
+ mso-fareast-language:ZH-CN;
1400
+ font-weight:bold;}
1401
+ span.FooterChar
1402
+ {mso-style-name:"Footer Char";
1403
+ mso-style-noshow:yes;
1404
+ mso-style-priority:99;
1405
+ mso-style-unhide:no;
1406
+ mso-style-locked:yes;
1407
+ mso-style-parent:"";
1408
+ mso-style-link:Footer;
1409
+ mso-ansi-font-size:11.0pt;
1410
+ mso-bidi-font-size:11.0pt;
1411
+ mso-ansi-language:EN-GB;}
1412
+ span.HeaderChar
1413
+ {mso-style-name:"Header Char";
1414
+ mso-style-noshow:yes;
1415
+ mso-style-priority:99;
1416
+ mso-style-unhide:no;
1417
+ mso-style-locked:yes;
1418
+ mso-style-parent:"";
1419
+ mso-style-link:Header;
1420
+ mso-ansi-font-size:11.0pt;
1421
+ mso-bidi-font-size:11.0pt;
1422
+ mso-ansi-language:EN-GB;
1423
+ font-family:$bodyfont;
1424
+ mso-fareast-font-family:$bodyfont;
1425
+ font-weight:bold;
1426
+ mso-bidi-font-weight:normal;}
1427
+ span.BodyTextChar
1428
+ {mso-style-name:"Body Text Char";
1429
+ mso-style-noshow:yes;
1430
+ mso-style-priority:99;
1431
+ mso-style-unhide:no;
1432
+ mso-style-locked:yes;
1433
+ mso-style-parent:"";
1434
+ mso-style-link:"Body Text";
1435
+ mso-ansi-font-size:11.0pt;
1436
+ mso-bidi-font-size:11.0pt;
1437
+ font-family:$bodyfont;
1438
+ mso-fareast-font-family:$bodyfont;
1439
+ mso-ansi-language:EN-GB;}
1440
+ p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
1441
+ {mso-style-noshow:yes;
1442
+ mso-style-priority:99;
1443
+ mso-style-link:"Comment Text Char";
1444
+ margin-top:0cm;
1445
+ margin-right:0cm;
1446
+ margin-bottom:12.0pt;
1447
+ margin-left:0cm;
1448
+ text-align:justify;
1449
+ line-height:12.0pt;
1450
+ mso-pagination:widow-orphan;
1451
+ tab-stops:20.15pt;
1452
+ font-size:12.0pt;
1453
+ font-family:$bodyfont;
1454
+ mso-fareast-font-family:$bodyfont;
1455
+ mso-bidi-font-family:$bodyfont;
1456
+ mso-ansi-language:EN-GB;
1457
+ mso-fareast-language:EN-US;}
1458
+ span.MsoCommentReference
1459
+ {mso-style-noshow:yes;
1460
+ mso-style-priority:99;
1461
+ mso-style-parent:"";
1462
+ mso-ansi-font-size:9.0pt;
1463
+ mso-bidi-font-size:9.0pt;}
1464
+ p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
1465
+ {mso-style-noshow:yes;
1466
+ mso-style-priority:99;
1467
+ mso-style-parent:"Comment Text";
1468
+ mso-style-link:"Comment Subject Char";
1469
+ mso-style-next:"Comment Text";
1470
+ margin-top:0cm;
1471
+ margin-right:0cm;
1472
+ margin-bottom:12.0pt;
1473
+ margin-left:0cm;
1474
+ text-align:justify;
1475
+ line-height:12.0pt;
1476
+ mso-pagination:widow-orphan;
1477
+ tab-stops:20.15pt;
1478
+ font-size:10.0pt;
1479
+ font-family:$headerfont;
1480
+ mso-fareast-font-family:$headerfont;
1481
+ mso-bidi-font-family:$headerfont;
1482
+ mso-ansi-language:EN-GB;
1483
+ mso-fareast-language:EN-US;}
1484
+ p.Tablebody, li.Tablebody, div.Tablebody
1485
+ {mso-style-name:"Table body";
1486
+ mso-style-noshow:yes;
1487
+ mso-style-unhide:no;
1488
+ margin-top:3.0pt;
1489
+ margin-right:0cm;
1490
+ margin-bottom:3.0pt;
1491
+ margin-left:0cm;
1492
+ line-height:10.5pt;
1493
+ mso-pagination:widow-orphan;
1494
+ font-size:10.0pt;
1495
+ mso-bidi-font-size:11.0pt;
1496
+ font-family:$bodyfont;
1497
+ mso-fareast-font-family:$bodyfont;
1498
+ mso-bidi-font-family:$bodyfont;
1499
+ mso-ansi-language:EN-GB;}
1500
+ ul li, ul li p, ul li div, ul li .MsoNormal
1501
+ {mso-style-name:列项——(一级); // NAME: List item (level 1) */ ??
1502
+ mso-style-unhide:no;
1503
+ mso-style-parent:"";
1504
+ margin-top:0in;
1505
+ margin-right:0in;
1506
+ margin-bottom:0in;
1507
+ margin-left:41.65pt;
1508
+ margin-bottom:.0001pt;
1509
+ text-align:justify;
1510
+ text-justify:inter-ideograph;
1511
+ text-indent:-20.4pt;
1512
+ mso-pagination:none;
1513
+ mso-list:l7 level1 lfo4;
1514
+ font-size:10.5pt;
1515
+ mso-bidi-font-size:10.0pt;
1516
+ font-family:$bodyfont;
1517
+ mso-hansi-font-family:"Times New Roman";
1518
+ mso-bidi-font-family:"Times New Roman";}
1519
+ ul li li, ul li li p, ul li li div, ul li li .MsoNormal
1520
+ {mso-style-name:列项●(二级); // NAME: List item (level 2) ??
1521
+ mso-style-unhide:no;
1522
+ mso-style-parent:"";
1523
+ margin-top:0in;
1524
+ margin-right:0in;
1525
+ margin-bottom:0in;
1526
+ margin-left:63.2pt;
1527
+ margin-bottom:.0001pt;
1528
+ text-align:justify;
1529
+ text-justify:inter-ideograph;
1530
+ text-indent:-20.65pt;
1531
+ mso-pagination:widow-orphan;
1532
+ mso-list:l7 level2 lfo4;
1533
+ tab-stops:list 38.0pt left 42.0pt;
1534
+ font-size:10.5pt;
1535
+ mso-bidi-font-size:10.0pt;
1536
+ font-family:$bodyfont;
1537
+ mso-hansi-font-family:"Times New Roman";
1538
+ mso-bidi-font-family:"Times New Roman";}
1539
+ ul li li li, ul li li li p, ul li li li div, ul li li .MsoNormal
1540
+ {mso-style-name:列项◆(三级); // NAME: List item (level 3) ??
1541
+ mso-style-unhide:no;
1542
+ margin-top:0in;
1543
+ margin-right:0in;
1544
+ margin-bottom:0in;
1545
+ margin-left:83.9pt;
1546
+ margin-bottom:.0001pt;
1547
+ text-align:justify;
1548
+ text-justify:inter-ideograph;
1549
+ text-indent:-20.7pt;
1550
+ mso-pagination:none;
1551
+ mso-list:l7 level3 lfo4;
1552
+ tab-stops:list 83.9pt;
1553
+ font-size:10.5pt;
1554
+ font-family:$bodyfont;
1555
+ mso-hansi-font-family:"Times New Roman";
1556
+ mso-bidi-font-family:"Times New Roman";
1557
+ mso-font-kerning:1.0pt;}
1558
+ ol
1559
+ {margin-bottom:0cm;
1560
+ margin-left:0cm;}
1561
+ ul
1562
+ {margin-bottom:0cm;
1563
+ margin-left:0cm;}
1564
+
1565
+ ol li, ol li p, ol li div, ol li .MsoNormal
1566
+ {mso-style-name:字母编号列项(一级); // NAME: Alphabetical list item (level 1) ??
1567
+ mso-style-unhide:no;
1568
+ mso-style-parent:"";
1569
+ margin-top:0in;
1570
+ margin-right:0in;
1571
+ margin-bottom:0in;
1572
+ margin-left:41.95pt;
1573
+ margin-bottom:.0001pt;
1574
+ text-align:justify;
1575
+ text-justify:inter-ideograph;
1576
+ text-indent:-20.95pt;
1577
+ mso-pagination:widow-orphan;
1578
+ mso-list:l10 level1 lfo17;
1579
+ tab-stops:list 42.0pt;
1580
+ font-size:10.5pt;
1581
+ mso-bidi-font-size:10.0pt;
1582
+ font-family:$bodyfont;
1583
+ mso-hansi-font-family:"Times New Roman";
1584
+ mso-bidi-font-family:"Times New Roman";}
1585
+ ol li li, ol li li p, ol li li div, ol li li .MsoNormal
1586
+ {mso-style-name:数字编号列项(二级); // NAME: Numerical List Item (level 2) ??
1587
+ mso-style-unhide:no;
1588
+ mso-style-parent:"";
1589
+ margin-top:0in;
1590
+ margin-right:0in;
1591
+ margin-bottom:0in;
1592
+ margin-left:62.95pt;
1593
+ margin-bottom:.0001pt;
1594
+ text-align:justify;
1595
+ text-justify:inter-ideograph;
1596
+ text-indent:-20.95pt;
1597
+ mso-pagination:widow-orphan;
1598
+ mso-list:l10 level2 lfo17;
1599
+ tab-stops:list 63.0pt;
1600
+ font-size:10.5pt;
1601
+ mso-bidi-font-size:10.0pt;
1602
+ font-family:$bodyfont;
1603
+ mso-hansi-font-family:"Times New Roman";
1604
+ mso-bidi-font-family:"Times New Roman";}
1605
+ ol li li li, ol li li li p, ol li li li div, ol li li li .MsoNormal
1606
+ {mso-style-name:编号列项(三级); // NAME: Numerical List item (level 3) ??
1607
+ mso-style-unhide:no;
1608
+ mso-style-parent:"";
1609
+ margin-top:0in;
1610
+ margin-right:0in;
1611
+ margin-bottom:0in;
1612
+ margin-left:83.95pt;
1613
+ margin-bottom:.0001pt;
1614
+ text-indent:-21.0pt;
1615
+ mso-pagination:widow-orphan;
1616
+ mso-list:l10 level3 lfo17;
1617
+ tab-stops:list 0in;
1618
+ font-size:10.5pt;
1619
+ mso-bidi-font-size:10.0pt;
1620
+ font-family:$bodyfont;
1621
+ mso-hansi-font-family:"Times New Roman";
1622
+ mso-bidi-font-family:"Times New Roman";}
1623
+ .MsoChpDefault
1624
+ {mso-style-type:export-only;
1625
+ mso-default-props:yes;
1626
+ mso-ascii-font-family:$bodyfont;
1627
+ mso-fareast-font-family:$bodyfont;
1628
+ mso-hansi-font-family:Cambria;}
1629
+ /* Page Definitions */
1630
+ @page
1631
+ {mso-mirror-margins:yes;
1632
+ mso-footnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") fs;
1633
+ mso-footnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") fcs;
1634
+ mso-endnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") es;
1635
+ mso-endnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") ecs;
1636
+ mso-facing-pages:yes;
1637
+ mso-page-orientation: portrait;
1638
+ }
1639
+ /* List Definitions */
1640
+ @list l0
1641
+ {mso-list-id:145051656;
1642
+ mso-list-template-ids:2112159680;}
1643
+ @list l0:level1
1644
+ {mso-level-number-format:alpha-upper;
1645
+ mso-level-style-link:ANNEX;
1646
+ mso-level-suffix:none;
1647
+ mso-level-text:"Annex\00A0%1";
1648
+ mso-level-tab-stop:none;
1649
+ mso-level-number-position:left;
1650
+ margin-left:0cm;
1651
+ text-indent:0cm;
1652
+ mso-ansi-font-size:14.0pt;
1653
+ mso-bidi-font-size:14.0pt;
1654
+ font-family:$bodyfont;
1655
+ mso-fareast-font-family:$bodyfont;
1656
+ mso-bidi-font-family:$bodyfont;
1657
+ mso-ansi-font-weight:normal;
1658
+ mso-ansi-font-style:normal;}
1659
+ @list l0:level2
1660
+ {mso-level-style-link:a2;
1661
+ mso-level-text:"%1\.%2";
1662
+ mso-level-tab-stop:18.0pt;
1663
+ mso-level-number-position:left;
1664
+ margin-left:0cm;
1665
+ text-indent:0cm;
1666
+ mso-bidi-font-family:$headerfont;
1667
+ mso-ansi-font-weight:normal;
1668
+ mso-ansi-font-style:normal;}
1669
+ @list l0:level3
1670
+ {mso-level-style-link:a3;
1671
+ mso-level-text:"%1\.%2\.%3";
1672
+ mso-level-tab-stop:36.0pt;
1673
+ mso-level-number-position:left;
1674
+ margin-left:0cm;
1675
+ text-indent:0cm;
1676
+ mso-bidi-font-family:$headerfont;
1677
+ mso-ansi-font-weight:normal;
1678
+ mso-ansi-font-style:normal;}
1679
+ @list l0:level4
1680
+ {mso-level-style-link:a4;
1681
+ mso-level-text:"%1\.%2\.%3\.%4";
1682
+ mso-level-tab-stop:54.0pt;
1683
+ mso-level-number-position:left;
1684
+ margin-left:0cm;
1685
+ text-indent:0cm;
1686
+ mso-bidi-font-family:$headerfont;
1687
+ mso-ansi-font-weight:normal;
1688
+ mso-ansi-font-style:normal;}
1689
+ @list l0:level5
1690
+ {mso-level-style-link:a5;
1691
+ mso-level-text:"%1\.%2\.%3\.%4\.%5";
1692
+ mso-level-tab-stop:54.0pt;
1693
+ mso-level-number-position:left;
1694
+ margin-left:0cm;
1695
+ text-indent:0cm;
1696
+ mso-bidi-font-family:$headerfont;
1697
+ mso-ansi-font-weight:normal;
1698
+ mso-ansi-font-style:normal;}
1699
+ @list l0:level6
1700
+ {mso-level-style-link:a6;
1701
+ mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
1702
+ mso-level-tab-stop:72.0pt;
1703
+ mso-level-number-position:left;
1704
+ margin-left:0cm;
1705
+ text-indent:0cm;
1706
+ mso-bidi-font-family:$headerfont;
1707
+ mso-ansi-font-weight:normal;
1708
+ mso-ansi-font-style:normal;}
1709
+ @list l0:level7
1710
+ {mso-level-reset-level:level2;
1711
+ mso-level-suffix:space;
1712
+ mso-level-text:"Figure\00A0%1\.%7\00A0—";
1713
+ mso-level-tab-stop:none;
1714
+ mso-level-number-position:left;
1715
+ margin-left:0cm;
1716
+ text-indent:0cm;
1717
+ mso-bidi-font-family:$headerfont;}
1718
+ @list l0:level8
1719
+ {mso-level-reset-level:level2;
1720
+ mso-level-suffix:space;
1721
+ mso-level-text:"Table\00A0%1\.%8\00A0—";
1722
+ mso-level-tab-stop:none;
1723
+ mso-level-number-position:left;
1724
+ margin-left:0cm;
1725
+ text-indent:0cm;
1726
+ mso-bidi-font-family:$headerfont;}
1727
+ @list l0:level9
1728
+ {mso-level-number-format:roman-lower;
1729
+ mso-level-text:"\(%9\)";
1730
+ mso-level-tab-stop:306.0pt;
1731
+ mso-level-number-position:left;
1732
+ margin-left:0cm;
1733
+ text-indent:0cm;
1734
+ mso-bidi-font-family:$headerfont;}
1735
+ @list l1
1736
+ {mso-list-id:866942648;
1737
+ mso-list-template-ids:-1756330000;}
1738
+ @list l1:level1
1739
+ {mso-level-style-link:"Heading 1";
1740
+ mso-level-text:"%1 ";
1741
+ mso-level-tab-stop:21.6pt;
1742
+ mso-level-number-position:left;
1743
+ margin-left:0in;
1744
+ text-indent:0in;
1745
+ mso-ansi-font-size:10.5pt;
1746
+ mso-bidi-font-size:10.5pt;
1747
+ mso-bidi-font-family:$headerfont;
1748
+ mso-ansi-font-weight:normal;
1749
+ mso-ansi-font-style:normal;}
1750
+ @list l1:level2
1751
+ {mso-level-style-link:"Heading 2";
1752
+ mso-level-text:"%1\.%2 ";
1753
+ mso-level-tab-stop:18.0pt;
1754
+ mso-level-number-position:left;
1755
+ margin-left:0cm;
1756
+ text-indent:0cm;
1757
+ mso-bidi-font-family:$headerfont;
1758
+ mso-ansi-font-weight:normal;
1759
+ mso-ansi-font-style:normal;}
1760
+ @list l1:level3
1761
+ {mso-level-style-link:"Heading 3";
1762
+ mso-level-text:"%1\.%2\.%3 ";
1763
+ mso-level-tab-stop:36.0pt;
1764
+ mso-level-number-position:left;
1765
+ margin-left:0cm;
1766
+ text-indent:0cm;
1767
+ mso-bidi-font-family:$headerfont;
1768
+ mso-ansi-font-weight:normal;
1769
+ mso-ansi-font-style:normal;}
1770
+ @list l1:level4
1771
+ {mso-level-style-link:"Heading 4";
1772
+ mso-level-text:"%1\.%2\.%3\.%4 ";
1773
+ mso-level-tab-stop:54.0pt;
1774
+ mso-level-number-position:left;
1775
+ margin-left:0cm;
1776
+ text-indent:0cm;
1777
+ mso-bidi-font-family:$headerfont;
1778
+ mso-ansi-font-weight:normal;
1779
+ mso-ansi-font-style:normal;}
1780
+ @list l1:level5
1781
+ {mso-level-style-link:"Heading 5";
1782
+ mso-level-text:"%1\.%2\.%3\.%4\.%5 ";
1783
+ mso-level-tab-stop:54.0pt;
1784
+ mso-level-number-position:left;
1785
+ margin-left:0cm;
1786
+ text-indent:0cm;
1787
+ mso-bidi-font-family:$headerfont;
1788
+ mso-ansi-font-weight:normal;
1789
+ mso-ansi-font-style:normal;}
1790
+ @list l1:level6
1791
+ {mso-level-style-link:"Heading 6";
1792
+ mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6 ";
1793
+ mso-level-tab-stop:72.0pt;
1794
+ mso-level-number-position:left;
1795
+ margin-left:0cm;
1796
+ text-indent:0cm;
1797
+ mso-bidi-font-family:$headerfont;
1798
+ mso-ansi-font-weight:normal;
1799
+ mso-ansi-font-style:normal;}
1800
+ @list l1:level7
1801
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7 ";
1802
+ mso-level-tab-stop:72.0pt;
1803
+ mso-level-number-position:left;
1804
+ margin-left:0cm;
1805
+ text-indent:0cm;
1806
+ mso-bidi-font-family:$headerfont;}
1807
+ @list l1:level8
1808
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8 ";
1809
+ mso-level-tab-stop:90.0pt;
1810
+ mso-level-number-position:left;
1811
+ margin-left:198.45pt;
1812
+ text-indent:-70.9pt;
1813
+ mso-bidi-font-family:$headerfont;}
1814
+ @list l1:level9
1815
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9 ";
1816
+ mso-level-tab-stop:90.0pt;
1817
+ mso-level-number-position:left;
1818
+ margin-left:233.85pt;
1819
+ text-indent:-85.0pt;
1820
+ mso-bidi-font-family:$headerfont;}
1821
+ /* FOOTNOTES */
1822
+ @list l9
1823
+ {mso-list-id:1030960664;
1824
+ mso-list-template-ids:423232752;}
1825
+ @list l9:level1
1826
+ {mso-level-style-link:"Footnote Text";
1827
+ mso-level-text:"%1\)";
1828
+ mso-level-tab-stop:0in;
1829
+ mso-level-number-position:left;
1830
+ text-indent:-27.0pt;}
1831
+ @list l9:level2
1832
+ {mso-level-number-format:alpha-lower;
1833
+ mso-level-text:"%2\)";
1834
+ mso-level-tab-stop:.35in;
1835
+ mso-level-number-position:left;
1836
+ margin-left:27.2pt;
1837
+ text-indent:-27.2pt;}
1838
+ @list l9:level3
1839
+ {mso-level-number-format:roman-lower;
1840
+ mso-level-tab-stop:26.6pt;
1841
+ mso-level-number-position:right;
1842
+ margin-left:27.2pt;
1843
+ text-indent:-27.2pt;}
1844
+ @list l9:level4
1845
+ {mso-level-tab-stop:28.0pt;
1846
+ mso-level-number-position:left;
1847
+ margin-left:27.2pt;
1848
+ text-indent:-27.2pt;}
1849
+ @list l9:level5
1850
+ {mso-level-number-format:alpha-lower;
1851
+ mso-level-text:"%5\)";
1852
+ mso-level-tab-stop:29.4pt;
1853
+ mso-level-number-position:left;
1854
+ margin-left:27.2pt;
1855
+ text-indent:-27.2pt;}
1856
+ @list l9:level6
1857
+ {mso-level-number-format:roman-lower;
1858
+ mso-level-tab-stop:30.8pt;
1859
+ mso-level-number-position:right;
1860
+ margin-left:27.2pt;
1861
+ text-indent:-27.2pt;}
1862
+ @list l9:level7
1863
+ {mso-level-tab-stop:32.2pt;
1864
+ mso-level-number-position:left;
1865
+ margin-left:27.2pt;
1866
+ text-indent:-27.2pt;}
1867
+ @list l9:level8
1868
+ {mso-level-number-format:alpha-lower;
1869
+ mso-level-text:"%8\)";
1870
+ mso-level-tab-stop:33.6pt;
1871
+ mso-level-number-position:left;
1872
+ margin-left:27.2pt;
1873
+ text-indent:-27.2pt;}
1874
+ @list l9:level9
1875
+ {mso-level-number-format:roman-lower;
1876
+ mso-level-tab-stop:35.0pt;
1877
+ mso-level-number-position:right;
1878
+ margin-left:27.2pt;
1879
+ text-indent:-27.2pt;}
1880
+ /* LIST UL */
1881
+ @list l7
1882
+ {mso-list-id:744036291;
1883
+ mso-list-template-ids:-911828418;}
1884
+ @list l7:level1
1885
+ {mso-level-number-format:none;
1886
+ mso-level-style-link:列项——(一级);
1887
+ mso-level-suffix:none;
1888
+ mso-level-text:"%1—";
1889
+ mso-level-tab-stop:none;
1890
+ mso-level-number-position:left;
1891
+ margin-left:41.65pt;
1892
+ text-indent:-20.4pt;}
1893
+ @list l7:level2
1894
+ {mso-level-number-format:bullet;
1895
+ mso-level-style-link:列项●(二级);
1896
+ mso-level-text:;
1897
+ mso-level-tab-stop:38.0pt;
1898
+ mso-level-number-position:left;
1899
+ margin-left:63.2pt;
1900
+ text-indent:-20.65pt;
1901
+ font-family:Symbol;
1902
+ color:windowtext;}
1903
+ @list l7:level3
1904
+ {mso-level-number-format:bullet;
1905
+ mso-level-style-link:列项◆(三级);
1906
+ mso-level-text:;
1907
+ mso-level-tab-stop:83.9pt;
1908
+ mso-level-number-position:left;
1909
+ margin-left:83.9pt;
1910
+ text-indent:-20.7pt;
1911
+ font-family:Symbol;
1912
+ color:windowtext;}
1913
+ @list l7:level4
1914
+ {mso-level-tab-stop:103.55pt;
1915
+ mso-level-number-position:left;
1916
+ margin-left:94.2pt;
1917
+ text-indent:-26.4pt;}
1918
+ @list l7:level5
1919
+ {mso-level-number-format:alpha-lower;
1920
+ mso-level-text:"%5\)";
1921
+ mso-level-tab-stop:119.15pt;
1922
+ mso-level-number-position:left;
1923
+ margin-left:109.8pt;
1924
+ text-indent:-26.4pt;}
1925
+ @list l7:level6
1926
+ {mso-level-number-format:roman-lower;
1927
+ mso-level-tab-stop:134.75pt;
1928
+ mso-level-number-position:right;
1929
+ margin-left:125.4pt;
1930
+ text-indent:-26.4pt;}
1931
+ @list l7:level7
1932
+ {mso-level-tab-stop:150.35pt;
1933
+ mso-level-number-position:left;
1934
+ margin-left:141.0pt;
1935
+ text-indent:-26.4pt;}
1936
+ @list l7:level8
1937
+ {mso-level-number-format:alpha-lower;
1938
+ mso-level-text:"%8\)";
1939
+ mso-level-tab-stop:165.95pt;
1940
+ mso-level-number-position:left;
1941
+ margin-left:156.6pt;
1942
+ text-indent:-26.4pt;}
1943
+ @list l7:level9
1944
+ {mso-level-number-format:roman-lower;
1945
+ mso-level-tab-stop:181.55pt;
1946
+ mso-level-number-position:right;
1947
+ margin-left:172.2pt;
1948
+ text-indent:-26.4pt;}
1949
+ /* Numerical list*/
1950
+ @list l10
1951
+ {mso-list-id:1153765264;
1952
+ mso-list-template-ids:-317940872;}
1953
+ @list l10:level1
1954
+ {mso-level-number-format:alpha-lower;
1955
+ mso-level-style-link:字母编号列项(一级);
1956
+ mso-level-text:"%1\)";
1957
+ mso-level-tab-stop:42.0pt;
1958
+ mso-level-number-position:left;
1959
+ margin-left:41.95pt;
1960
+ text-indent:-20.95pt;
1961
+ mso-ansi-font-size:10.5pt;
1962
+ mso-bidi-font-size:10.5pt;
1963
+ font-family:$bodyfont;
1964
+ mso-hansi-font-family:"Times New Roman";
1965
+ mso-ansi-font-weight:normal;
1966
+ mso-ansi-font-style:normal;}
1967
+ @list l10:level2
1968
+ {mso-level-style-link:数字编号列项(二级);
1969
+ mso-level-text:"%2\)";
1970
+ mso-level-tab-stop:63.0pt;
1971
+ mso-level-number-position:left;
1972
+ margin-left:62.95pt;
1973
+ text-indent:-20.95pt;}
1974
+ @list l10:level3
1975
+ {mso-level-style-link:编号列项(三级);
1976
+ mso-level-text:"\(%3\)";
1977
+ mso-level-tab-stop:0in;
1978
+ mso-level-number-position:left;
1979
+ margin-left:83.95pt;
1980
+ text-indent:-21.0pt;
1981
+ mso-ansi-font-size:10.5pt;
1982
+ mso-bidi-font-size:10.5pt;
1983
+ font-family:$bodyfont;
1984
+ mso-hansi-font-family:"Times New Roman";
1985
+ mso-ansi-font-weight:normal;
1986
+ mso-ansi-font-style:normal;}
1987
+ @list l10:level4
1988
+ {mso-level-tab-stop:105.0pt;
1989
+ mso-level-number-position:left;
1990
+ margin-left:104.95pt;
1991
+ text-indent:-20.95pt;}
1992
+ @list l10:level5
1993
+ {mso-level-number-format:alpha-lower;
1994
+ mso-level-text:"%5\)";
1995
+ mso-level-tab-stop:1.75in;
1996
+ mso-level-number-position:left;
1997
+ margin-left:125.95pt;
1998
+ text-indent:-20.95pt;}
1999
+ @list l10:level6
2000
+ {mso-level-number-format:roman-lower;
2001
+ mso-level-tab-stop:147.0pt;
2002
+ mso-level-number-position:right;
2003
+ margin-left:146.95pt;
2004
+ text-indent:-20.95pt;}
2005
+ @list l10:level7
2006
+ {mso-level-tab-stop:168.0pt;
2007
+ mso-level-number-position:left;
2008
+ margin-left:167.95pt;
2009
+ text-indent:-20.95pt;}
2010
+ @list l10:level8
2011
+ {mso-level-number-format:alpha-lower;
2012
+ mso-level-text:"%8\)";
2013
+ mso-level-tab-stop:189.0pt;
2014
+ mso-level-number-position:left;
2015
+ margin-left:188.95pt;
2016
+ text-indent:-20.95pt;}
2017
+ @list l10:level9
2018
+ {mso-level-number-format:roman-lower;
2019
+ mso-level-tab-stop:210.0pt;
2020
+ mso-level-number-position:right;
2021
+ margin-left:209.95pt;
2022
+ text-indent:-20.95pt;}
2023
+ p.standard_number, li.standard_number, div.standard_number
2024
+ {mso-style-name:封面标准号2; // NAME: Cover page Standard Number 2
2025
+ mso-style-unhide:no;
2026
+ mso-style-parent:"";
2027
+ margin-top:0.54cm;
2028
+ margin-right:0cm;
2029
+ margin-bottom:0cm;
2030
+ margin-left:0cm;
2031
+ margin-bottom:.0001pt;
2032
+ text-align:right;
2033
+ mso-pagination:none;
2034
+ punctuation-wrap:simple;
2035
+ text-autospace:none;
2036
+ mso-line-break-override:restrictions;
2037
+ font-size:14.0pt;
2038
+ mso-bidi-font-size:10.0pt;
2039
+ font-family:$headerfont;
2040
+ mso-fareast-font-family:$headerfont;
2041
+ mso-ansi-language:EN-US;
2042
+ mso-fareast-language:ZH-CN;}
2043
+ p.ics_container, li.ics_container, div.ics_container
2044
+ {mso-style-name:段;
2045
+ mso-style-unhide:no;
2046
+ mso-style-qformat:yes;
2047
+ mso-style-parent:"";
2048
+ mso-style-link:"段 Char";
2049
+ margin:0cm;
2050
+ margin-bottom:.0001pt;
2051
+ text-align:justify;
2052
+ text-justify:inter-ideograph;
2053
+ text-indent:0.74cm;
2054
+ mso-char-indent-count:2.0;
2055
+ mso-pagination:widow-orphan;
2056
+ tab-stops:center 7.41cm right dotted 16.40cm;
2057
+ text-autospace:none;
2058
+ font-size:10.5pt;
2059
+ mso-bidi-font-size:10.0pt;
2060
+ font-family:$headerfont;
2061
+ mso-hansi-font-family:$headerfont;
2062
+ mso-bidi-font-family:$headerfont;
2063
+ mso-ansi-language:EN-US;
2064
+ mso-fareast-language:ZH-CN;}
2065
+ p.standard_class, li.standard_class, div.standard_class
2066
+ {mso-style-name:标准称谓; // NAME: Standard Name
2067
+ mso-style-unhide:no;
2068
+ mso-style-parent:"";
2069
+ mso-style-next:Normal;
2070
+ margin:0cm;
2071
+ margin-bottom:.0001pt;
2072
+ text-align:justify;
2073
+ text-justify:distribute-all-lines;
2074
+ mso-line-height-alt:0pt;
2075
+ mso-pagination:none;
2076
+ punctuation-wrap:simple;
2077
+ text-autospace:none;
2078
+ mso-line-break-override:restrictions;
2079
+ mso-element:frame;
2080
+ mso-element-frame-width:17.00cm;
2081
+ mso-element-frame-height:0.80cm;
2082
+ mso-element-frame-hspace:9.0pt;
2083
+ mso-element-frame-vspace:9.0pt;
2084
+ mso-element-wrap:around;
2085
+ mso-element-anchor-vertical:page;
2086
+ mso-element-anchor-horizontal:margin;
2087
+ mso-element-left:center;
2088
+ mso-element-top:3.75cm;
2089
+ mso-height-rule:exactly;
2090
+ mso-element-anchor-lock:locked;
2091
+ font-size:18.0pt;
2092
+ mso-bidi-font-size:10.0pt;
2093
+ font-family:$titlefont;
2094
+ mso-hansi-font-family:$titlefont;
2095
+ mso-bidi-font-family:$titlefont;
2096
+ letter-spacing:1.0pt;
2097
+ mso-font-width:148%;
2098
+ mso-ansi-language:EN-US;
2099
+ mso-fareast-language:ZH-CN;
2100
+ font-weight:bold;}
2101
+ p.standard_logo, li.standard_logo, div.standard_logo
2102
+ {mso-style-name:标准标志; // NAME: Standard Logo
2103
+ mso-style-unhide:no;
2104
+ mso-style-parent:"";
2105
+ mso-style-next:Normal;
2106
+ margin:0cm;
2107
+ margin-bottom:.0001pt;
2108
+ text-align:right;
2109
+ mso-line-height-alt:0pt;
2110
+ mso-pagination:widow-orphan;
2111
+ background:white;
2112
+ mso-shading:white;
2113
+ mso-pattern:solid white;
2114
+ mso-element:frame;
2115
+ mso-element-frame-width:4.00cm;
2116
+ mso-element-frame-height:2.00cm;
2117
+ mso-element-frame-hspace:9.05pt;
2118
+ mso-element-frame-vspace:9.05pt;
2119
+ mso-element-wrap:around;
2120
+ mso-element-anchor-horizontal:margin;
2121
+ mso-element-left:11.90cm;
2122
+ mso-element-top:0.30cm;
2123
+ mso-height-rule:exactly;
2124
+ mso-element-anchor-lock:locked;
2125
+ font-family:$bodyfont;
2126
+ mso-fareast-font-family:$bodyfont;
2127
+ mso-font-width:170%;
2128
+ mso-ansi-language:EN-US;
2129
+ mso-fareast-language:ZH-CN;
2130
+ font-weight:bold;
2131
+ mso-bidi-font-weight:normal;}
2132
+ p.standard_logo_local, li.standard_logo_local, div.standard_logo_local
2133
+ {mso-style-name:标准标志; // NAME: Standard Logo
2134
+ mso-style-unhide:no;
2135
+ mso-style-parent:"";
2136
+ mso-style-next:Normal;
2137
+ margin:0cm;
2138
+ margin-bottom:.0001pt;
2139
+ text-align:right;
2140
+ mso-line-height-alt:0pt;
2141
+ mso-pagination:widow-orphan;
2142
+ background:white;
2143
+ mso-shading:white;
2144
+ mso-pattern:solid white;
2145
+ mso-element:frame;
2146
+ mso-element-frame-width:10.00cm;
2147
+ mso-element-frame-height:2.00cm;
2148
+ mso-element-frame-hspace:9.05pt;
2149
+ mso-element-frame-vspace:9.05pt;
2150
+ mso-element-wrap:around;
2151
+ mso-element-anchor-horizontal:margin;
2152
+ mso-element-left:5.90cm;
2153
+ mso-element-top:0.30cm;
2154
+ mso-height-rule:exactly;
2155
+ mso-element-anchor-lock:locked;
2156
+ font-size:72.0pt;
2157
+ line-height:70.0pt;
2158
+ mso-line-height-rule:exactly;
2159
+ font-family:$bodyfont;
2160
+ mso-fareast-font-family:$bodyfont;
2161
+ mso-font-width:170%;
2162
+ mso-ansi-language:EN-US;
2163
+ mso-fareast-language:ZH-CN;
2164
+ font-weight:bold;
2165
+ mso-bidi-font-weight:normal;}
2166
+ p.ccs_container, li.ccs_container, div.ccs_container
2167
+ {mso-style-name:文献分类号; // NAME: Category number of document
2168
+ mso-style-unhide:no;
2169
+ mso-style-parent:"";
2170
+ margin:0cm;
2171
+ margin-bottom:.0001pt;
2172
+ mso-pagination:none;
2173
+ mso-element:frame;
2174
+ mso-element-frame-hspace:9.0pt;
2175
+ mso-element-frame-vspace:9.0pt;
2176
+ mso-element-wrap:around;
2177
+ mso-element-anchor-horizontal:margin;
2178
+ mso-element-top:.05pt;
2179
+ mso-height-rule:exactly;
2180
+ mso-element-anchor-lock:locked;
2181
+ font-size:10.5pt;
2182
+ mso-bidi-font-size:10.0pt;
2183
+ font-family:$headerfont;
2184
+ mso-fareast-font-family:$headerfont;
2185
+ mso-ansi-language:EN-US;
2186
+ mso-fareast-language:ZH-CN;}
2187
+ p.supercedes_container, li.supercedes_container, div.supercedes_container
2188
+ {mso-style-name:封面标准代替信息; // NAME: Cover page standard "supercedes" information
2189
+ mso-style-unhide:no;
2190
+ mso-style-parent:"";
2191
+ margin-top:0.10cm;
2192
+ margin-right:0cm;
2193
+ margin-bottom:0cm;
2194
+ margin-left:0cm;
2195
+ margin-bottom:.0001pt;
2196
+ text-align:right;
2197
+ line-height:14.0pt;
2198
+ mso-line-height-rule:exactly;
2199
+ mso-pagination:widow-orphan;
2200
+ mso-element:frame;
2201
+ mso-element-frame-width:16.12cm;
2202
+ mso-element-frame-height:2.19cm;
2203
+ mso-element-frame-hspace:0.50cm;
2204
+ mso-element-wrap:around;
2205
+ mso-element-anchor-vertical:page;
2206
+ mso-element-anchor-horizontal:page;
2207
+ mso-element-left:2.90cm;
2208
+ mso-element-top:5.13cm;
2209
+ mso-height-rule:exactly;
2210
+ mso-element-anchor-lock:locked;
2211
+ font-size:10.5pt;
2212
+ font-family:$bodyfont;
2213
+ mso-hansi-font-family:$bodyfont;
2214
+ mso-bidi-font-family:$bodyfont;
2215
+ mso-ansi-language:EN-US;
2216
+ mso-fareast-language:ZH-CN;}
2217
+ p.standard_name, li.standard_name, div.standard_name
2218
+ {mso-style-name:封面标准名称;
2219
+ mso-style-unhide:no;
2220
+ mso-style-parent:"";
2221
+ margin:0cm;
2222
+ margin-bottom:.0001pt;
2223
+ text-align:center;
2224
+ line-height:34.0pt; // 26pt + 8pt = 3mm
2225
+ mso-line-height-rule:exactly;
2226
+ mso-pagination:none;
2227
+ mso-element:frame;
2228
+ mso-element-frame-width:17.00cm;
2229
+ mso-element-frame-height:12.20cm;
2230
+ mso-element-wrap:around;
2231
+ mso-element-anchor-horizontal:margin;
2232
+ mso-element-left:center;
2233
+ mso-element-top:10.50cm;
2234
+ mso-height-rule:exactly;
2235
+ mso-element-anchor-lock:locked;
2236
+ font-size:26.0pt;
2237
+ mso-bidi-font-size:10.0pt;
2238
+ font-family:$bodyfont;
2239
+ mso-hansi-font-family:$bodyfont;
2240
+ mso-bidi-font-family:$bodyfont;
2241
+ mso-ansi-language:EN-US;
2242
+ mso-fareast-language:ZH-CN;}
2243
+ p.standard_name_english, li.standard_name_english, div.standard_name_english
2244
+ {mso-style-name:封面标准英文名称;
2245
+ mso-style-unhide:no;
2246
+ mso-style-parent:"";
2247
+ margin-top:0.65cm;
2248
+ margin-right:0cm;
2249
+ margin-bottom:0cm;
2250
+ margin-left:0cm;
2251
+ margin-bottom:.0001pt;
2252
+ text-align:center;
2253
+ line-height:20.0pt;
2254
+ mso-line-height-rule:exactly;
2255
+ mso-pagination:none;
2256
+ font-size:14.0pt;
2257
+ mso-bidi-font-size:10.0pt;
2258
+ font-family:$headerfont;
2259
+ mso-fareast-font-family:$headerfont;
2260
+ mso-ansi-language:EN-US;
2261
+ mso-fareast-language:ZH-CN;}
2262
+ p.draft_type, li.draft_type, div.draft_type
2263
+ {mso-style-name:封面标准文稿类别; // NAME: Cover page standard draft type
2264
+ mso-style-unhide:no;
2265
+ mso-style-parent:"";
2266
+ margin-top:0.78cm;
2267
+ margin-right:0cm;
2268
+ margin-bottom:0cm;
2269
+ margin-left:0cm;
2270
+ margin-bottom:.0001pt;
2271
+ text-align:center;
2272
+ line-height:20.0pt;
2273
+ mso-line-height-rule:exactly;
2274
+ mso-pagination:widow-orphan;
2275
+ font-size:12.0pt;
2276
+ mso-bidi-font-size:10.0pt;
2277
+ font-family:$bodyfont;
2278
+ mso-hansi-font-family:"Times New Roman";
2279
+ mso-bidi-font-family:"Times New Roman";
2280
+ mso-ansi-language:EN-US;
2281
+ mso-fareast-language:ZH-CN;}
2282
+ p.draft_editorial, li.draft_editorial, div.draft_editorial
2283
+ {mso-style-name:封面标准文稿编辑信息; // NAME: Cover page standard draft editorial information
2284
+ mso-style-unhide:no;
2285
+ mso-style-parent:"";
2286
+ margin-top:0.32cm;
2287
+ margin-right:0cm;
2288
+ margin-bottom:0cm;
2289
+ margin-left:0cm;
2290
+ margin-bottom:.0001pt;
2291
+ text-align:center;
2292
+ line-height:9.0pt;
2293
+ mso-line-height-rule:exactly;
2294
+ mso-pagination:widow-orphan;
2295
+ font-size:10.5pt;
2296
+ mso-bidi-font-size:10.0pt;
2297
+ font-family:$bodyfont;
2298
+ mso-hansi-font-family:"Times New Roman";
2299
+ mso-bidi-font-family:"Times New Roman";
2300
+ mso-ansi-language:EN-US;
2301
+ mso-fareast-language:ZH-CN;}
2302
+ p.publish_date, li.publish_date, div.publish_date // NAME: Other publishing date
2303
+ {mso-style-name:发布日期;
2304
+ mso-style-unhide:no;
2305
+ mso-style-parent:"";
2306
+ margin:0cm;
2307
+ margin-bottom:.0001pt;
2308
+ mso-pagination:widow-orphan;
2309
+ mso-element:frame;
2310
+ mso-element-frame-width:7.06cm;
2311
+ mso-element-frame-height:0.83cm;
2312
+ mso-element-frame-hspace:9.0pt;
2313
+ mso-element-frame-vspace:9.0pt;
2314
+ mso-element-wrap:around;
2315
+ mso-element-anchor-horizontal:margin;
2316
+ mso-element-top:23.83cm;
2317
+ mso-height-rule:exactly;
2318
+ mso-element-anchor-lock:locked;
2319
+ font-size:14.0pt;
2320
+ mso-bidi-font-size:10.0pt;
2321
+ font-family:$headerfont;
2322
+ mso-fareast-font-family:$headerfont;
2323
+ mso-ansi-language:EN-US;
2324
+ mso-fareast-language:ZH-CN;}
2325
+ p.activated_date, li.activated_date, div.activated_date
2326
+ {mso-style-name:实施日期;
2327
+ mso-style-unhide:no;
2328
+ mso-style-parent:发布日期;
2329
+ margin:0cm;
2330
+ margin-bottom:.0001pt;
2331
+ text-align:right;
2332
+ mso-pagination:widow-orphan;
2333
+ mso-element:frame;
2334
+ mso-element-frame-width:7.06cm;
2335
+ mso-element-frame-height:0.83cm;
2336
+ mso-element-frame-vspace:9.0pt;
2337
+ mso-element-wrap:around;
2338
+ mso-element-anchor-horizontal:margin;
2339
+ mso-element-left:right;
2340
+ mso-element-top:23.83cm;
2341
+ mso-height-rule:exactly;
2342
+ mso-element-anchor-lock:locked;
2343
+ font-size:14.0pt;
2344
+ mso-bidi-font-size:10.0pt;
2345
+ font-family:$headerfont;
2346
+ mso-fareast-font-family:$headerfont;
2347
+ mso-ansi-language:EN-US;
2348
+ mso-fareast-language:ZH-CN;}
2349
+ p.standard_agency, li.standard_agency, div.standard_agency, p.standard_agency td, td.standard_agency
2350
+ {mso-style-name:发布部门; // NAME: Publishing Department
2351
+ mso-style-unhide:no;
2352
+ mso-style-parent:"";
2353
+ mso-style-next:Normal;
2354
+ margin:0cm;
2355
+ margin-bottom:.0001pt;
2356
+ text-align:center;
2357
+ mso-pagination:widow-orphan;
2358
+ /*
2359
+ mso-element:frame;
2360
+ mso-element-frame-width:13.11cm;
2361
+ mso-element-frame-height:1.03cm;
2362
+ mso-element-frame-hspace:9.0pt;
2363
+ mso-element-frame-vspace:9.0pt;
2364
+ mso-element-wrap:around;
2365
+ mso-element-anchor-horizontal:margin;
2366
+ mso-element-left:center;
2367
+ mso-element-top:25.40cm;
2368
+ */
2369
+ mso-height-rule:exactly;
2370
+ mso-element-anchor-lock:locked;
2371
+ font-size:14.0pt;
2372
+ mso-bidi-font-size:10.0pt;
2373
+ font-family:$titlefont;
2374
+ mso-hansi-font-family:$titlefont;
2375
+ mso-bidi-font-family:$titlefont;
2376
+ letter-spacing:1.0pt;
2377
+ mso-font-width:135%;
2378
+ mso-ansi-language:EN-US;
2379
+ mso-fareast-language:ZH-CN;
2380
+ font-weight:bold;
2381
+ mso-bidi-font-weight:normal;}
2382
+ p.identicality_label, li.identicality_label, div.identicality_label
2383
+ {mso-style-name:封面一致性程度标识; // NAME: Cover page "identicality" level label
2384
+ mso-style-unhide:no;
2385
+ mso-style-parent:封面标准英文名称;
2386
+ margin-top:0.78cm;
2387
+ margin-right:0cm;
2388
+ margin-bottom:0cm;
2389
+ margin-left:0cm;
2390
+ margin-bottom:.0001pt;
2391
+ text-align:center;
2392
+ line-height:20.0pt;
2393
+ mso-line-height-rule:exactly;
2394
+ mso-pagination:none;
2395
+ mso-element:frame;
2396
+ mso-element-frame-width:17.0cm;
2397
+ mso-element-frame-height:12.20cm;
2398
+ mso-element-wrap:around;
2399
+ mso-element-anchor-vertical:page;
2400
+ mso-element-anchor-horizontal:page;
2401
+ mso-element-left:center;
2402
+ mso-element-top:11.30cm;
2403
+ mso-height-rule:exactly;
2404
+ mso-element-anchor-lock:locked;
2405
+ font-size:14.0pt;
2406
+ font-family:$bodyfont;
2407
+ mso-hansi-font-family:$bodyfont;
2408
+ mso-bidi-font-family:$bodyfont;
2409
+ mso-ansi-language:EN-US;
2410
+ mso-fareast-language:ZH-CN;}
2411
+ p.coverpage, li.coverpage, div.coverpage
2412
+ {mso-style-name:封面正文;
2413
+ mso-style-unhide:no;
2414
+ mso-style-parent:"";
2415
+ margin:0cm;
2416
+ margin-bottom:.0001pt;
2417
+ text-align:justify;
2418
+ text-justify:inter-ideograph;
2419
+ mso-pagination:widow-orphan;
2420
+ font-size:10.0pt;
2421
+ font-family:"Times New Roman",serif;
2422
+ mso-fareast-font-family:SimSun;
2423
+ mso-ansi-language:EN-US;
2424
+ mso-fareast-language:ZH-CN;}
2425
+ table.MsoNormalTable
2426
+ {mso-style-name:"Table Normal";
2427
+ mso-tstyle-rowband-size:0;
2428
+ mso-tstyle-colband-size:0;
2429
+ mso-style-noshow:yes;
2430
+ mso-style-priority:99;
2431
+ mso-style-parent:"";
2432
+ mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
2433
+ mso-para-margin:0cm;
2434
+ mso-para-margin-bottom:.0001pt;
2435
+ mso-pagination:widow-orphan;
2436
+ font-size:10.0pt;
2437
+ font-family:$bodyfont;
2438
+ mso-fareast-font-family:$bodyfont;}
2439
+ p.Terms, li.Terms, div.Terms
2440
+ {mso-style-name:"Term\(s\)";
2441
+ mso-style-priority:8;
2442
+ mso-style-unhide:no;
2443
+ mso-style-next:Definition;
2444
+ margin:0cm;
2445
+ margin-bottom:.0001pt;
2446
+ line-height:12.0pt;
2447
+ mso-pagination:widow-orphan;
2448
+ page-break-after:avoid;
2449
+ mso-hyphenate:none;
2450
+ tab-stops:20.15pt;
2451
+ text-indent:21.0pt;
2452
+ font-size:11.0pt;
2453
+ font-family:$headerfont;
2454
+ mso-fareast-font-family:$headerfont;
2455
+ mso-bidi-font-family:$headerfont;
2456
+ mso-ansi-language:EN-GB;
2457
+ mso-bidi-font-weight:normal;}
2458
+ p.AltTerms, li.AltTerms, div.AltTerms
2459
+ {mso-style-name:"AltTerm\(s\)";
2460
+ mso-style-priority:8;
2461
+ mso-style-unhide:no;
2462
+ mso-style-next:Definition;
2463
+ margin:0cm;
2464
+ margin-bottom:.0001pt;
2465
+ line-height:12.0pt;
2466
+ mso-pagination:widow-orphan;
2467
+ page-break-after:avoid;
2468
+ mso-hyphenate:none;
2469
+ tab-stops:20.15pt;
2470
+ text-indent:21.0pt;
2471
+ font-size:11.0pt;
2472
+ font-family:$bodyfont;
2473
+ mso-fareast-font-family:$bodyfont;
2474
+ mso-bidi-font-family:$bodyfont;
2475
+ mso-ansi-language:EN-GB;
2476
+ mso-bidi-font-weight:normal;}
2477
+ p.DeprecatedTerms, li.DeprecatedTerms, div.DeprecatedTerms
2478
+ {mso-style-name:"AltTerm\(s\)";
2479
+ mso-style-priority:8;
2480
+ mso-style-unhide:no;
2481
+ mso-style-next:Definition;
2482
+ margin:0cm;
2483
+ margin-bottom:.0001pt;
2484
+ line-height:12.0pt;
2485
+ mso-pagination:widow-orphan;
2486
+ page-break-after:avoid;
2487
+ mso-hyphenate:none;
2488
+ tab-stops:20.15pt;
2489
+ text-indent:21.0pt;
2490
+ font-size:11.0pt;
2491
+ font-family:$bodyfont;
2492
+ mso-fareast-font-family:$bodyfont;
2493
+ mso-bidi-font-family:$bodyfont;
2494
+ mso-ansi-language:EN-GB;
2495
+ mso-bidi-font-weight:normal;}
2496
+ p.TermNum, li.TermNum, div.TermNum
2497
+ {mso-style-name:TermNum;
2498
+ mso-style-priority:7;
2499
+ mso-style-unhide:no;
2500
+ mso-style-next:"Term\(s\)";
2501
+ margin-top:7.8pt;
2502
+ margin-right:0cm;
2503
+ margin-bottom:7.8pt;
2504
+ margin-left:0cm;
2505
+ mso-para-margin-top:.5gd;
2506
+ mso-para-margin-right:0cm;
2507
+ mso-para-margin-bottom:.5gd;
2508
+ mso-para-margin-left:0cm;
2509
+ line-height:12.0pt;
2510
+ mso-pagination:widow-orphan;
2511
+ page-break-after:avoid;
2512
+ tab-stops:20.15pt;
2513
+ font-size:11.0pt;
2514
+ font-family:$headerfont;
2515
+ mso-fareast-font-family:$headerfont;
2516
+ mso-bidi-font-family:$headerfont;
2517
+ mso-ansi-language:EN-GB;
2518
+ mso-bidi-font-weight:normal;}
2519
+ /* may need to be revised */
2520
+ a:link, span.MsoHyperlink
2521
+ {mso-style-priority:99;
2522
+ mso-style-unhide:no;
2523
+ mso-style-parent:"";
2524
+ mso-ansi-language:EN;
2525
+ color:black;
2526
+ text-decoration:none;
2527
+ text-underline:none;}
2528
+ a:visited, span.MsoHyperlinkFollowed
2529
+ {mso-style-noshow:yes;
2530
+ mso-style-priority:99;
2531
+ mso-themecolor:followedhyperlink;
2532
+ color:black;
2533
+ text-decoration:none;
2534
+ text-underline:none;}
2535
+ br.section
2536
+ {page-break-before:always;
2537
+ mso-break-type:section-break;}
2538
+ br.pagebreak
2539
+ {page-break-before:always;
2540
+ mso-special-character:line-break;}
2541
+ body
2542
+ {font-family:$bodyfont;
2543
+ mso-fareast-font-family:$bodyfont;}