html2doc 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.hound.yml +3 -0
- data/.oss-guides.rubocop.yml +1077 -0
- data/.rspec +3 -0
- data/.rubocop.ribose.yml +65 -0
- data/.rubocop.tb.yml +640 -0
- data/.rubocop.yml +15 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/README.adoc +44 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/html2doc.gemspec +46 -0
- data/lib/html2doc.rb +2 -0
- data/lib/html2doc/base.rb +171 -0
- data/lib/html2doc/mathml2omml.xsl +3822 -0
- data/lib/html2doc/mime.rb +197 -0
- data/lib/html2doc/version.rb +3 -0
- data/lib/html2doc/wordstyle.css +992 -0
- data/spec/html2doc_spec.rb +9 -0
- data/spec/spec_helper.rb +14 -0
- metadata +294 -0
@@ -0,0 +1,197 @@
|
|
1
|
+
require "uuidtools"
|
2
|
+
require "nokogiri"
|
3
|
+
|
4
|
+
module Html2Doc
|
5
|
+
def self.process(result, filename, header_file, dir)
|
6
|
+
docxml = Nokogiri::XML(xhtml(result))
|
7
|
+
cleanup(docxml, dir)
|
8
|
+
define_head(docxml, dir, filename, header_file)
|
9
|
+
result = self.msword_fix(docxml.to_xml)
|
10
|
+
system "cp #{header_file} #{dir}/header.html" unless header_file.nil?
|
11
|
+
generate_filelist(filename, dir)
|
12
|
+
File.open("#{filename}.htm", "w") { |f| f.write(result) }
|
13
|
+
mime_package result, filename, dir
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.cleanup(docxml, dir)
|
17
|
+
image_cleanup(docxml, dir)
|
18
|
+
msonormal(docxml)
|
19
|
+
end
|
20
|
+
|
21
|
+
# preserve HTML escapes
|
22
|
+
def self.xhtml(result)
|
23
|
+
unless /<!DOCTYPE html/.match? result
|
24
|
+
result.gsub!(/<\?xml version="1.0"\?>/, "")
|
25
|
+
result = "<!DOCTYPE html SYSTEM " +
|
26
|
+
"'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>" + result
|
27
|
+
end
|
28
|
+
result
|
29
|
+
end
|
30
|
+
|
31
|
+
def self.msword_fix(r)
|
32
|
+
# brain damage in MSWord parser
|
33
|
+
r.gsub!(%r{<span style="mso-special-character:footnote"/>},
|
34
|
+
'<span style="mso-special-character:footnote"></span>')
|
35
|
+
r.gsub!(%r{(<a style="mso-comment-reference:[^>/]+)/>}, "\\1></a>")
|
36
|
+
r.gsub!(%r{<link rel="File-List"}, "<link rel=File-List")
|
37
|
+
r.gsub!(%r{<meta http-equiv="Content-Type"},
|
38
|
+
"<meta http-equiv=Content-Type")
|
39
|
+
r.gsub!(%r{&tab;|&tab;},
|
40
|
+
'<span style="mso-tab-count:1">  </span>')
|
41
|
+
r
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.image_resize(orig_filename)
|
45
|
+
image_size = ImageSize.path(orig_filename).size
|
46
|
+
# max width for Word document is 400, max height is 680
|
47
|
+
if image_size[0] > 400
|
48
|
+
image_size[1] = (image_size[1] * 400 / image_size[0]).ceil
|
49
|
+
image_size[0] = 400
|
50
|
+
end
|
51
|
+
if image_size[1] > 680
|
52
|
+
image_size[0] = (image_size[0] * 680 / image_size[1]).ceil
|
53
|
+
image_size[1] = 680
|
54
|
+
end
|
55
|
+
image_size
|
56
|
+
end
|
57
|
+
|
58
|
+
def self.image_cleanup(docxml, dir)
|
59
|
+
docxml.xpath("//*[local-name() = 'img']").each do |i|
|
60
|
+
matched = /\.(?<suffix>\S+)$/.match i["src"]
|
61
|
+
uuid = UUIDTools::UUID.random_create.to_s
|
62
|
+
new_full_filename = File.join(dir, "#{uuid}.#{matched[:suffix]}")
|
63
|
+
# presupposes that the image source is local
|
64
|
+
system "cp #{i['src']} #{new_full_filename}"
|
65
|
+
i["width"], i["height"] = image_resize(i["src"])
|
66
|
+
i["src"] = new_full_filename
|
67
|
+
end
|
68
|
+
docxml
|
69
|
+
end
|
70
|
+
|
71
|
+
def self.define_head1(docxml, dir)
|
72
|
+
docxml.xpath("//*[local-name() = 'head']").each do |h|
|
73
|
+
h.children.first.add_previous_sibling <<~XML
|
74
|
+
<!--[if gte mso 9]>
|
75
|
+
<xml>
|
76
|
+
<w:WordDocument>
|
77
|
+
<w:View>Print</w:View>
|
78
|
+
<w:Zoom>100</w:Zoom>
|
79
|
+
<w:DoNotOptimizeForBrowser/>
|
80
|
+
</w:WordDocument>
|
81
|
+
</xml>
|
82
|
+
<![endif]-->
|
83
|
+
<meta http-equiv=Content-Type content="text/html; charset=utf-8"/>
|
84
|
+
<link rel="File-List" href="#{dir}/filelist.xml"/>
|
85
|
+
XML
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def self.stylesheet(filename, header_filename)
|
90
|
+
fn = File.join(File.dirname(__FILE__), "wordstyle.css")
|
91
|
+
stylesheet = File.read(fn, encoding: "UTF-8")
|
92
|
+
if header_filename.nil?
|
93
|
+
stylesheet.gsub!(/\n[^\n]*FILENAME[^\n]*i\n/, "\n")
|
94
|
+
else
|
95
|
+
stylesheet.gsub!(/FILENAME/, filename)
|
96
|
+
end
|
97
|
+
xml = Nokogiri::XML("<style/>")
|
98
|
+
xml.children.first << Nokogiri::XML::Comment.new(xml, "\n#{stylesheet}\n")
|
99
|
+
xml.root.to_s
|
100
|
+
end
|
101
|
+
|
102
|
+
def self.define_head(docxml, dir, filename, header_file)
|
103
|
+
title = docxml.at("//*[local-name() = 'head']/*[local-name() = 'title']")
|
104
|
+
head = docxml.at("//*[local-name() = 'head']")
|
105
|
+
if title.nil?
|
106
|
+
head.children.first.add_previous_sibling stylesheet(filename, header_file)
|
107
|
+
else
|
108
|
+
title.add_next_sibling stylesheet(filename, header_file)
|
109
|
+
end
|
110
|
+
define_head1(docxml, dir)
|
111
|
+
namespace(docxml.root)
|
112
|
+
end
|
113
|
+
|
114
|
+
def self.namespace(root)
|
115
|
+
{
|
116
|
+
o: "urn:schemas-microsoft-com:office:office",
|
117
|
+
w: "urn:schemas-microsoft-com:office:word",
|
118
|
+
m: "http://schemas.microsoft.com/office/2004/12/omml",
|
119
|
+
}.each { |k, v| root.add_namespace_definition(k.to_s, v) }
|
120
|
+
root.add_namespace(nil, "http://www.w3.org/TR/REC-html40")
|
121
|
+
end
|
122
|
+
|
123
|
+
def self.mime_preamble(boundary, filename, result)
|
124
|
+
<<~"PREAMBLE"
|
125
|
+
MIME-Version: 1.0
|
126
|
+
Content-Type: multipart/related; boundary="#{boundary}"
|
127
|
+
|
128
|
+
--#{boundary}
|
129
|
+
Content-Location: file:///C:/Doc/#{filename}.htm
|
130
|
+
Content-Type: text/html; charset="utf-8"
|
131
|
+
|
132
|
+
#{result}
|
133
|
+
|
134
|
+
PREAMBLE
|
135
|
+
end
|
136
|
+
|
137
|
+
def self.mime_attachment(boundary, filename, item, dir)
|
138
|
+
encoded_file = Base64.strict_encode64(
|
139
|
+
File.read("#{dir}/#{item}"),
|
140
|
+
).gsub(/(.{76})/, "\\1\n")
|
141
|
+
<<~"FILE"
|
142
|
+
--#{boundary}
|
143
|
+
Content-Location: file:///C:/Doc/#{filename}_files/#{item}
|
144
|
+
Content-Transfer-Encoding: base64
|
145
|
+
Content-Type: #{mime_type(item)}
|
146
|
+
|
147
|
+
#{encoded_file}
|
148
|
+
|
149
|
+
FILE
|
150
|
+
end
|
151
|
+
|
152
|
+
def self.mime_type(item)
|
153
|
+
types = MIME::Types.type_for(item)
|
154
|
+
type = types ? types.first.to_s : 'text/plain; charset="utf-8"'
|
155
|
+
type = type + ' charset="utf-8"' if /^text/.match?(type) && types
|
156
|
+
type
|
157
|
+
end
|
158
|
+
|
159
|
+
def self.mime_boundary
|
160
|
+
salt = UUIDTools::UUID.random_create.to_s.gsub(/-/, ".")[0..17]
|
161
|
+
"----=_NextPart_#{salt}"
|
162
|
+
end
|
163
|
+
|
164
|
+
def self.mime_package(result, filename, dir)
|
165
|
+
boundary = mime_boundary
|
166
|
+
mhtml = mime_preamble(boundary, filename, result)
|
167
|
+
Dir.foreach(dir) do |item|
|
168
|
+
next if item == "." || item == ".." || /^\./.match(item)
|
169
|
+
mhtml += mime_attachment(boundary, filename, item, dir)
|
170
|
+
end
|
171
|
+
mhtml += "--#{boundary}--"
|
172
|
+
File.open("#{filename}.doc", "w") { |f| f.write mhtml }
|
173
|
+
end
|
174
|
+
|
175
|
+
def self.generate_filelist(filename, dir)
|
176
|
+
File.open(File.join(dir, "filelist.xml"), "w") do |f|
|
177
|
+
f.write(<<~"XML")
|
178
|
+
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
179
|
+
<o:MainFile HRef="../#{filename}.htm"/>
|
180
|
+
XML
|
181
|
+
Dir.foreach(dir) do |item|
|
182
|
+
next if item == "." || item == ".." || /^\./.match(item)
|
183
|
+
f.write %{ <o:File HRef="#{item}"/>\n}
|
184
|
+
end
|
185
|
+
f.write("</xml>\n")
|
186
|
+
end
|
187
|
+
end
|
188
|
+
|
189
|
+
def self.msonormal(docxml)
|
190
|
+
docxml.xpath("//*[local-name() = 'p'][not(self::*[@class])]").each do |p|
|
191
|
+
p["class"] = "MsoNormal"
|
192
|
+
end
|
193
|
+
docxml.xpath("//*[local-name() = 'li'][not(self::*[@class])]").each do |p|
|
194
|
+
p["class"] = "MsoNormal"
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
@@ -0,0 +1,992 @@
|
|
1
|
+
/* Font Definitions */
|
2
|
+
@font-face
|
3
|
+
{font-family:Arial;
|
4
|
+
panose-1:2 11 6 4 2 2 2 2 2 4;
|
5
|
+
mso-font-charset:0;
|
6
|
+
mso-generic-font-family:swiss;
|
7
|
+
mso-font-pitch:variable;
|
8
|
+
mso-font-signature:-536859905 -1073711037 9 0 511 0;}
|
9
|
+
@font-face
|
10
|
+
{font-family:"Courier New";
|
11
|
+
panose-1:2 7 3 9 2 2 5 2 4 4;
|
12
|
+
mso-font-charset:0;
|
13
|
+
mso-generic-font-family:roman;
|
14
|
+
mso-font-pitch:fixed;
|
15
|
+
mso-font-signature:-536859905 -1073711037 9 0 511 0;}
|
16
|
+
@font-face
|
17
|
+
{font-family:"Cambria Math";
|
18
|
+
panose-1:2 4 5 3 5 4 6 3 2 4;
|
19
|
+
mso-font-charset:0;
|
20
|
+
mso-generic-font-family:roman;
|
21
|
+
mso-font-pitch:variable;
|
22
|
+
mso-font-signature:-536870145 1107305727 0 0 415 0;}
|
23
|
+
@font-face
|
24
|
+
{font-family:Calibri;
|
25
|
+
panose-1:2 15 5 2 2 2 4 3 2 4;
|
26
|
+
mso-font-charset:0;
|
27
|
+
mso-generic-font-family:swiss;
|
28
|
+
mso-font-pitch:variable;
|
29
|
+
mso-font-signature:-536870145 1073786111 1 0 415 0;}
|
30
|
+
@font-face
|
31
|
+
{font-family:Cambria;
|
32
|
+
panose-1:2 4 5 3 5 4 6 3 2 4;
|
33
|
+
mso-font-charset:0;
|
34
|
+
mso-generic-font-family:roman;
|
35
|
+
mso-font-pitch:variable;
|
36
|
+
mso-font-signature:-536870145 1073743103 0 0 415 0;}
|
37
|
+
@font-face
|
38
|
+
{font-family:"Malgun Gothic";
|
39
|
+
panose-1:2 11 5 3 2 0 0 2 0 4;
|
40
|
+
mso-font-charset:129;
|
41
|
+
mso-generic-font-family:swiss;
|
42
|
+
mso-font-pitch:variable;
|
43
|
+
mso-font-signature:-1879048145 701988091 18 0 524289 0;}
|
44
|
+
@font-face
|
45
|
+
{font-family:"MS Mincho";
|
46
|
+
panose-1:2 2 6 9 4 2 5 8 3 4;
|
47
|
+
mso-font-charset:128;
|
48
|
+
mso-generic-font-family:roman;
|
49
|
+
mso-font-pitch:fixed;
|
50
|
+
mso-font-signature:-536870145 1791491579 134217746 0 131231 0;}
|
51
|
+
/* Style Definitions */
|
52
|
+
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
53
|
+
{mso-style-unhide:no;
|
54
|
+
mso-style-qformat:yes;
|
55
|
+
mso-style-parent:"";
|
56
|
+
margin-top:0cm;
|
57
|
+
margin-right:0cm;
|
58
|
+
margin-bottom:12.0pt;
|
59
|
+
margin-left:0cm;
|
60
|
+
text-align:justify;
|
61
|
+
line-height:12.0pt;
|
62
|
+
mso-pagination:widow-orphan;
|
63
|
+
tab-stops:20.15pt;
|
64
|
+
font-size:11.0pt;
|
65
|
+
font-family:"Cambria",serif;
|
66
|
+
mso-fareast-font-family:Calibri;
|
67
|
+
mso-bidi-font-family:"Cambria";
|
68
|
+
mso-ansi-language:EN-GB;}
|
69
|
+
p.MsoNormalIndent, li.MsoNormalIndent, div.MsoNormalIndent
|
70
|
+
{mso-style-priority:99;
|
71
|
+
margin-top:0cm;
|
72
|
+
margin-right:36.0cm;
|
73
|
+
margin-bottom:0cm;
|
74
|
+
margin-left:36.0pt;
|
75
|
+
text-align:justify;
|
76
|
+
line-height:12.0pt;
|
77
|
+
mso-pagination:widow-orphan;
|
78
|
+
tab-stops:20.15pt;
|
79
|
+
font-size:11.0pt;
|
80
|
+
font-family:"Cambria",sans-serif;
|
81
|
+
mso-fareast-font-family:Calibri;
|
82
|
+
mso-bidi-font-family:"Cambria";
|
83
|
+
mso-ansi-language:EN-GB;}
|
84
|
+
p.MsoBlockText, li.MsoBlockText, div.MsoBlockText
|
85
|
+
{mso-style-priority:99;
|
86
|
+
margin-top:0cm;
|
87
|
+
margin-right:57.6pt;
|
88
|
+
margin-bottom:0cm;
|
89
|
+
margin-left:57.6pt;
|
90
|
+
margin-bottom:.0001pt;
|
91
|
+
mso-pagination:widow-orphan;
|
92
|
+
border:none;
|
93
|
+
mso-border-alt:solid #4472C4 .25pt;
|
94
|
+
mso-border-themecolor:accent1;
|
95
|
+
padding:0cm;
|
96
|
+
mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
|
97
|
+
font-size:12.0pt;
|
98
|
+
font-family:"Calibri",sans-serif;
|
99
|
+
mso-ascii-font-family:Calibri;
|
100
|
+
mso-ascii-theme-font:minor-latin;
|
101
|
+
mso-fareast-font-family:"Cambria";
|
102
|
+
mso-fareast-theme-font:minor-fareast;
|
103
|
+
mso-hansi-font-family:Calibri;
|
104
|
+
mso-hansi-theme-font:minor-latin;
|
105
|
+
mso-bidi-font-family:"Cambria";
|
106
|
+
mso-bidi-theme-font:minor-bidi;
|
107
|
+
color:#4472C4;
|
108
|
+
mso-themecolor:accent1;
|
109
|
+
mso-ansi-language:EN-AU;
|
110
|
+
font-style:italic;}
|
111
|
+
h1
|
112
|
+
{mso-style-priority:1;
|
113
|
+
mso-style-unhide:no;
|
114
|
+
mso-style-qformat:yes;
|
115
|
+
mso-style-link:"Heading 1 Char";
|
116
|
+
mso-style-next:Normal;
|
117
|
+
margin-top:13.5pt;
|
118
|
+
margin-right:0cm;
|
119
|
+
margin-bottom:12.0pt;
|
120
|
+
margin-left:0cm;
|
121
|
+
text-indent:0cm;
|
122
|
+
line-height:13.5pt;
|
123
|
+
mso-pagination:widow-orphan;
|
124
|
+
page-break-after:avoid;
|
125
|
+
mso-outline-level:1;
|
126
|
+
mso-list:l1 level1 lfo6;
|
127
|
+
mso-hyphenate:none;
|
128
|
+
tab-stops:20.0pt list 21.6pt left 28.0pt;
|
129
|
+
font-size:13.0pt;
|
130
|
+
mso-bidi-font-size:11.0pt;
|
131
|
+
font-family:"Cambria",serif;
|
132
|
+
mso-fareast-font-family:"MS Mincho";
|
133
|
+
mso-font-kerning:0pt;
|
134
|
+
mso-ansi-language:EN-GB;
|
135
|
+
mso-fareast-language:JA;
|
136
|
+
mso-bidi-font-weight:normal;}
|
137
|
+
h1.Annex
|
138
|
+
{mso-style-priority:1;
|
139
|
+
mso-style-unhide:no;
|
140
|
+
mso-style-qformat:yes;
|
141
|
+
mso-style-link:"Heading 1 Char";
|
142
|
+
mso-style-next:Normal;
|
143
|
+
margin-top:13.5pt;
|
144
|
+
margin-right:0cm;
|
145
|
+
margin-bottom:12.0pt;
|
146
|
+
margin-left:0cm;
|
147
|
+
text-indent:0cm;
|
148
|
+
line-height:13.5pt;
|
149
|
+
text-align:center;
|
150
|
+
mso-pagination:widow-orphan;
|
151
|
+
page-break-after:avoid;
|
152
|
+
font-weight:normal;
|
153
|
+
mso-outline-level:1;
|
154
|
+
mso-list:l1 level1 lfo6;
|
155
|
+
mso-hyphenate:none;
|
156
|
+
tab-stops:20.0pt list 21.6pt left 28.0pt;
|
157
|
+
font-size:13.0pt;
|
158
|
+
mso-bidi-font-size:11.0pt;
|
159
|
+
font-family:"Cambria",serif;
|
160
|
+
mso-fareast-font-family:"MS Mincho";
|
161
|
+
mso-font-kerning:0pt;
|
162
|
+
mso-ansi-language:EN-GB;
|
163
|
+
mso-fareast-language:JA;
|
164
|
+
mso-bidi-font-weight:normal;}
|
165
|
+
h2
|
166
|
+
{mso-style-priority:2;
|
167
|
+
mso-style-unhide:no;
|
168
|
+
mso-style-qformat:yes;
|
169
|
+
mso-style-parent:"Heading 1";
|
170
|
+
mso-style-link:"Heading 2 Char";
|
171
|
+
mso-style-next:Normal;
|
172
|
+
margin-top:3.0pt;
|
173
|
+
margin-right:0cm;
|
174
|
+
margin-bottom:12.0pt;
|
175
|
+
margin-left:0cm;
|
176
|
+
text-indent:0cm;
|
177
|
+
line-height:12.5pt;
|
178
|
+
mso-pagination:widow-orphan;
|
179
|
+
page-break-after:avoid;
|
180
|
+
mso-outline-level:2;
|
181
|
+
mso-list:l1 level2 lfo6;
|
182
|
+
mso-hyphenate:none;
|
183
|
+
tab-stops:27.0pt 35.0pt;
|
184
|
+
font-size:12.0pt;
|
185
|
+
mso-bidi-font-size:11.0pt;
|
186
|
+
font-family:"Cambria",serif;
|
187
|
+
mso-fareast-font-family:"MS Mincho";
|
188
|
+
mso-ansi-language:EN-GB;
|
189
|
+
mso-fareast-language:JA;
|
190
|
+
mso-bidi-font-weight:normal;}
|
191
|
+
h3
|
192
|
+
{mso-style-priority:3;
|
193
|
+
mso-style-unhide:no;
|
194
|
+
mso-style-qformat:yes;
|
195
|
+
mso-style-parent:"Heading 1";
|
196
|
+
mso-style-link:"Heading 3 Char";
|
197
|
+
mso-style-next:Normal;
|
198
|
+
margin-top:3.0pt;
|
199
|
+
margin-right:0cm;
|
200
|
+
margin-bottom:12.0pt;
|
201
|
+
margin-left:0cm;
|
202
|
+
text-indent:0cm;
|
203
|
+
line-height:12.0pt;
|
204
|
+
mso-pagination:widow-orphan;
|
205
|
+
page-break-after:avoid;
|
206
|
+
mso-outline-level:3;
|
207
|
+
mso-list:l1 level3 lfo6;
|
208
|
+
mso-hyphenate:none;
|
209
|
+
tab-stops:list 36.0pt left 44.0pt;
|
210
|
+
font-size:11.0pt;
|
211
|
+
font-family:"Cambria",serif;
|
212
|
+
mso-fareast-font-family:"MS Mincho";
|
213
|
+
mso-ansi-language:EN-GB;
|
214
|
+
mso-fareast-language:JA;
|
215
|
+
mso-bidi-font-weight:normal;}
|
216
|
+
h4
|
217
|
+
{mso-style-priority:4;
|
218
|
+
mso-style-unhide:no;
|
219
|
+
mso-style-qformat:yes;
|
220
|
+
mso-style-parent:"Heading 3";
|
221
|
+
mso-style-link:"Heading 4 Char";
|
222
|
+
mso-style-next:Normal;
|
223
|
+
margin-top:3.0pt;
|
224
|
+
margin-right:0cm;
|
225
|
+
margin-bottom:12.0pt;
|
226
|
+
margin-left:0cm;
|
227
|
+
text-indent:0cm;
|
228
|
+
line-height:12.0pt;
|
229
|
+
mso-pagination:widow-orphan;
|
230
|
+
page-break-after:avoid;
|
231
|
+
mso-outline-level:4;
|
232
|
+
mso-list:l1 level4 lfo6;
|
233
|
+
mso-hyphenate:none;
|
234
|
+
tab-stops:51.05pt 57.0pt 68.0pt;
|
235
|
+
font-size:11.0pt;
|
236
|
+
font-family:"Cambria",serif;
|
237
|
+
mso-fareast-font-family:"MS Mincho";
|
238
|
+
mso-ansi-language:EN-GB;
|
239
|
+
mso-fareast-language:JA;
|
240
|
+
mso-bidi-font-weight:normal;}
|
241
|
+
h5
|
242
|
+
{mso-style-priority:5;
|
243
|
+
mso-style-unhide:no;
|
244
|
+
mso-style-qformat:yes;
|
245
|
+
mso-style-parent:"Heading 4";
|
246
|
+
mso-style-link:"Heading 5 Char";
|
247
|
+
mso-style-next:Normal;
|
248
|
+
margin-top:3.0pt;
|
249
|
+
margin-right:0cm;
|
250
|
+
margin-bottom:12.0pt;
|
251
|
+
margin-left:0cm;
|
252
|
+
text-indent:0cm;
|
253
|
+
line-height:12.0pt;
|
254
|
+
mso-pagination:widow-orphan;
|
255
|
+
page-break-after:avoid;
|
256
|
+
mso-outline-level:5;
|
257
|
+
mso-list:l1 level5 lfo6;
|
258
|
+
mso-hyphenate:none;
|
259
|
+
tab-stops:51.05pt list 54.0pt;
|
260
|
+
font-size:11.0pt;
|
261
|
+
font-family:"Cambria",serif;
|
262
|
+
mso-fareast-font-family:"MS Mincho";
|
263
|
+
mso-ansi-language:EN-GB;
|
264
|
+
mso-fareast-language:JA;
|
265
|
+
mso-bidi-font-weight:normal;}
|
266
|
+
h6
|
267
|
+
{mso-style-priority:6;
|
268
|
+
mso-style-unhide:no;
|
269
|
+
mso-style-qformat:yes;
|
270
|
+
mso-style-parent:"Heading 5";
|
271
|
+
mso-style-link:"Heading 6 Char";
|
272
|
+
mso-style-next:Normal;
|
273
|
+
margin-top:3.0pt;
|
274
|
+
margin-right:0cm;
|
275
|
+
margin-bottom:12.0pt;
|
276
|
+
margin-left:0cm;
|
277
|
+
text-indent:0cm;
|
278
|
+
line-height:12.0pt;
|
279
|
+
mso-pagination:widow-orphan;
|
280
|
+
page-break-after:avoid;
|
281
|
+
mso-outline-level:6;
|
282
|
+
mso-list:l1 level6 lfo6;
|
283
|
+
mso-hyphenate:none;
|
284
|
+
tab-stops:51.05pt list 72.0pt;
|
285
|
+
font-size:11.0pt;
|
286
|
+
font-family:"Cambria",serif;
|
287
|
+
mso-fareast-font-family:"MS Mincho";
|
288
|
+
mso-ansi-language:EN-GB;
|
289
|
+
mso-fareast-language:JA;
|
290
|
+
mso-bidi-font-weight:normal;}
|
291
|
+
p.MsoToc1, li.MsoToc1, div.MsoToc1
|
292
|
+
{mso-style-priority:39;
|
293
|
+
mso-style-unhide:no;
|
294
|
+
mso-style-next:Normal;
|
295
|
+
margin-top:6.0pt;
|
296
|
+
margin-right:25.0pt;
|
297
|
+
margin-bottom:0cm;
|
298
|
+
margin-left:36.0pt;
|
299
|
+
margin-bottom:.0001pt;
|
300
|
+
text-indent:-36.0pt;
|
301
|
+
line-height:12.0pt;
|
302
|
+
mso-pagination:widow-orphan;
|
303
|
+
mso-hyphenate:none;
|
304
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
305
|
+
font-size:11.0pt;
|
306
|
+
font-family:"Cambria",serif;
|
307
|
+
mso-fareast-font-family:Calibri;
|
308
|
+
mso-bidi-font-family:"Cambria";
|
309
|
+
mso-ansi-language:EN-GB;
|
310
|
+
font-weight:bold;
|
311
|
+
mso-bidi-font-weight:normal;}
|
312
|
+
p.MsoToc2, li.MsoToc2, div.MsoToc2
|
313
|
+
{mso-style-noshow:yes;
|
314
|
+
mso-style-priority:39;
|
315
|
+
mso-style-unhide:no;
|
316
|
+
mso-style-parent:"TOC 1";
|
317
|
+
mso-style-next:Normal;
|
318
|
+
margin-top:0cm;
|
319
|
+
margin-right:25.0pt;
|
320
|
+
margin-bottom:0cm;
|
321
|
+
margin-left:36.0pt;
|
322
|
+
margin-bottom:.0001pt;
|
323
|
+
text-indent:-36.0pt;
|
324
|
+
line-height:12.0pt;
|
325
|
+
mso-pagination:widow-orphan;
|
326
|
+
mso-hyphenate:none;
|
327
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
328
|
+
font-size:11.0pt;
|
329
|
+
font-family:"Cambria",serif;
|
330
|
+
mso-fareast-font-family:Calibri;
|
331
|
+
mso-bidi-font-family:"Cambria";
|
332
|
+
mso-ansi-language:EN-GB;
|
333
|
+
font-weight:bold;
|
334
|
+
mso-bidi-font-weight:normal;}
|
335
|
+
p.MsoToc3, li.MsoToc3, div.MsoToc3
|
336
|
+
{mso-style-noshow:yes;
|
337
|
+
mso-style-priority:39;
|
338
|
+
mso-style-unhide:no;
|
339
|
+
mso-style-parent:"TOC 2";
|
340
|
+
mso-style-next:Normal;
|
341
|
+
margin-top:0cm;
|
342
|
+
margin-right:25.0pt;
|
343
|
+
margin-bottom:0cm;
|
344
|
+
margin-left:36.0pt;
|
345
|
+
margin-bottom:.0001pt;
|
346
|
+
text-indent:-36.0pt;
|
347
|
+
line-height:12.0pt;
|
348
|
+
mso-pagination:widow-orphan;
|
349
|
+
mso-hyphenate:none;
|
350
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
351
|
+
font-size:11.0pt;
|
352
|
+
font-family:"Cambria",serif;
|
353
|
+
mso-fareast-font-family:Calibri;
|
354
|
+
mso-bidi-font-family:"Cambria";
|
355
|
+
mso-ansi-language:EN-GB;
|
356
|
+
font-weight:bold;
|
357
|
+
mso-bidi-font-weight:normal;}
|
358
|
+
p.MsoHeader, li.MsoHeader, div.MsoHeader
|
359
|
+
{mso-style-noshow:yes;
|
360
|
+
mso-style-priority:99;
|
361
|
+
mso-style-unhide:no;
|
362
|
+
mso-style-link:"Header Char";
|
363
|
+
margin-top:0cm;
|
364
|
+
margin-right:0cm;
|
365
|
+
margin-bottom:30.0pt;
|
366
|
+
margin-left:0cm;
|
367
|
+
text-align:justify;
|
368
|
+
line-height:11.0pt;
|
369
|
+
mso-line-height-rule:exactly;
|
370
|
+
mso-pagination:widow-orphan;
|
371
|
+
tab-stops:20.15pt;
|
372
|
+
font-size:11.0pt;
|
373
|
+
font-family:"Cambria",serif;
|
374
|
+
mso-fareast-font-family:Calibri;
|
375
|
+
mso-bidi-font-family:"Cambria";
|
376
|
+
mso-ansi-language:EN-GB;
|
377
|
+
font-weight:bold;
|
378
|
+
mso-bidi-font-weight:normal;}
|
379
|
+
p.MsoFooter, li.MsoFooter, div.MsoFooter
|
380
|
+
{mso-style-noshow:yes;
|
381
|
+
mso-style-priority:99;
|
382
|
+
mso-style-unhide:no;
|
383
|
+
mso-style-link:"Footer Char";
|
384
|
+
margin-top:18.0pt;
|
385
|
+
margin-right:0cm;
|
386
|
+
margin-bottom:6.0pt;
|
387
|
+
margin-left:0cm;
|
388
|
+
text-align:justify;
|
389
|
+
line-height:11.0pt;
|
390
|
+
mso-line-height-rule:exactly;
|
391
|
+
mso-pagination:widow-orphan;
|
392
|
+
tab-stops:right 487.6pt;
|
393
|
+
font-size:11.0pt;
|
394
|
+
font-family:"Cambria",serif;
|
395
|
+
mso-fareast-font-family:Calibri;
|
396
|
+
mso-bidi-font-family:"Cambria";
|
397
|
+
mso-ansi-language:EN-GB;}
|
398
|
+
span.MsoFootnoteReference
|
399
|
+
{mso-style-priority:99;
|
400
|
+
vertical-align:super;}
|
401
|
+
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
|
402
|
+
{mso-style-noshow:yes;
|
403
|
+
mso-style-priority:99;
|
404
|
+
mso-style-link:"Footnote Text Char";
|
405
|
+
margin-top:0cm;
|
406
|
+
margin-right:0cm;
|
407
|
+
margin-bottom:12.0pt;
|
408
|
+
margin-left:0cm;
|
409
|
+
text-align:justify;
|
410
|
+
line-height:12.0pt;
|
411
|
+
mso-pagination:widow-orphan;
|
412
|
+
tab-stops:20.15pt;
|
413
|
+
font-size:10.0pt;
|
414
|
+
font-family:"Cambria",serif;
|
415
|
+
mso-fareast-font-family:Calibri;
|
416
|
+
mso-bidi-font-family:"Cambria";
|
417
|
+
mso-ansi-language:EN-GB;
|
418
|
+
mso-fareast-language:EN-US;}
|
419
|
+
p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
|
420
|
+
{mso-style-noshow:yes;
|
421
|
+
mso-style-priority:99;
|
422
|
+
mso-style-unhide:no;
|
423
|
+
mso-style-link:"Body Text Char";
|
424
|
+
margin-top:0cm;
|
425
|
+
margin-right:0cm;
|
426
|
+
margin-bottom:6.0pt;
|
427
|
+
margin-left:0cm;
|
428
|
+
text-align:justify;
|
429
|
+
line-height:12.0pt;
|
430
|
+
mso-pagination:widow-orphan;
|
431
|
+
font-size:11.0pt;
|
432
|
+
font-family:"Cambria",serif;
|
433
|
+
mso-fareast-font-family:"Cambria";
|
434
|
+
mso-bidi-font-family:"Cambria";
|
435
|
+
mso-ansi-language:EN-GB;}
|
436
|
+
a:link, span.MsoHyperlink
|
437
|
+
{mso-style-priority:99;
|
438
|
+
mso-style-unhide:no;
|
439
|
+
mso-style-parent:"";
|
440
|
+
mso-ansi-language:EN;
|
441
|
+
color:blue;
|
442
|
+
text-decoration:underline;
|
443
|
+
text-underline:single;}
|
444
|
+
a:visited, span.MsoHyperlinkFollowed
|
445
|
+
{mso-style-noshow:yes;
|
446
|
+
mso-style-priority:99;
|
447
|
+
mso-themecolor:followedhyperlink;
|
448
|
+
color:#954F72;
|
449
|
+
text-decoration:underline;
|
450
|
+
text-underline:single;}
|
451
|
+
span.MsoPlaceholderText
|
452
|
+
{mso-style-noshow:yes;
|
453
|
+
mso-style-priority:99;
|
454
|
+
mso-style-unhide:no;
|
455
|
+
mso-style-parent:"";
|
456
|
+
color:gray;}
|
457
|
+
span.Heading1Char
|
458
|
+
{mso-style-name:"Heading 1 Char";
|
459
|
+
mso-style-priority:1;
|
460
|
+
mso-style-unhide:no;
|
461
|
+
mso-style-locked:yes;
|
462
|
+
mso-style-parent:"";
|
463
|
+
mso-style-link:"Heading 1";
|
464
|
+
mso-ansi-font-size:13.0pt;
|
465
|
+
font-family:"Cambria",serif;
|
466
|
+
mso-ascii-font-family:Cambria;
|
467
|
+
mso-fareast-font-family:"MS Mincho";
|
468
|
+
mso-hansi-font-family:Cambria;
|
469
|
+
mso-ansi-language:EN-GB;
|
470
|
+
mso-fareast-language:JA;
|
471
|
+
font-weight:bold;
|
472
|
+
mso-bidi-font-weight:normal;}
|
473
|
+
span.Heading2Char
|
474
|
+
{mso-style-name:"Heading 2 Char";
|
475
|
+
mso-style-priority:2;
|
476
|
+
mso-style-unhide:no;
|
477
|
+
mso-style-locked:yes;
|
478
|
+
mso-style-parent:"";
|
479
|
+
mso-style-link:"Heading 2";
|
480
|
+
mso-ansi-font-size:12.0pt;
|
481
|
+
font-family:"Cambria",serif;
|
482
|
+
mso-ascii-font-family:Cambria;
|
483
|
+
mso-fareast-font-family:"MS Mincho";
|
484
|
+
mso-hansi-font-family:Cambria;
|
485
|
+
mso-ansi-language:EN-GB;
|
486
|
+
mso-fareast-language:JA;
|
487
|
+
font-weight:bold;
|
488
|
+
mso-bidi-font-weight:normal;}
|
489
|
+
span.Heading3Char
|
490
|
+
{mso-style-name:"Heading 3 Char";
|
491
|
+
mso-style-priority:3;
|
492
|
+
mso-style-unhide:no;
|
493
|
+
mso-style-locked:yes;
|
494
|
+
mso-style-parent:"";
|
495
|
+
mso-style-link:"Heading 3";
|
496
|
+
mso-ansi-font-size:11.0pt;
|
497
|
+
font-family:"Cambria",serif;
|
498
|
+
mso-ascii-font-family:Cambria;
|
499
|
+
mso-fareast-font-family:"MS Mincho";
|
500
|
+
mso-hansi-font-family:Cambria;
|
501
|
+
mso-ansi-language:EN-GB;
|
502
|
+
mso-fareast-language:JA;
|
503
|
+
font-weight:bold;
|
504
|
+
mso-bidi-font-weight:normal;}
|
505
|
+
span.Heading4Char
|
506
|
+
{mso-style-name:"Heading 4 Char";
|
507
|
+
mso-style-priority:4;
|
508
|
+
mso-style-unhide:no;
|
509
|
+
mso-style-locked:yes;
|
510
|
+
mso-style-parent:"";
|
511
|
+
mso-style-link:"Heading 4";
|
512
|
+
mso-ansi-font-size:11.0pt;
|
513
|
+
font-family:"Cambria",serif;
|
514
|
+
mso-ascii-font-family:Cambria;
|
515
|
+
mso-fareast-font-family:"MS Mincho";
|
516
|
+
mso-hansi-font-family:Cambria;
|
517
|
+
mso-ansi-language:EN-GB;
|
518
|
+
mso-fareast-language:JA;
|
519
|
+
font-weight:bold;
|
520
|
+
mso-bidi-font-weight:normal;}
|
521
|
+
span.Heading5Char
|
522
|
+
{mso-style-name:"Heading 5 Char";
|
523
|
+
mso-style-priority:5;
|
524
|
+
mso-style-unhide:no;
|
525
|
+
mso-style-locked:yes;
|
526
|
+
mso-style-parent:"";
|
527
|
+
mso-style-link:"Heading 5";
|
528
|
+
mso-ansi-font-size:11.0pt;
|
529
|
+
font-family:"Cambria",serif;
|
530
|
+
mso-ascii-font-family:Cambria;
|
531
|
+
mso-fareast-font-family:"MS Mincho";
|
532
|
+
mso-hansi-font-family:Cambria;
|
533
|
+
mso-ansi-language:EN-GB;
|
534
|
+
mso-fareast-language:JA;
|
535
|
+
font-weight:bold;
|
536
|
+
mso-bidi-font-weight:normal;}
|
537
|
+
span.Heading6Char
|
538
|
+
{mso-style-name:"Heading 6 Char";
|
539
|
+
mso-style-priority:6;
|
540
|
+
mso-style-unhide:no;
|
541
|
+
mso-style-locked:yes;
|
542
|
+
mso-style-parent:"";
|
543
|
+
mso-style-link:"Heading 6";
|
544
|
+
mso-ansi-font-size:11.0pt;
|
545
|
+
font-family:"Cambria",serif;
|
546
|
+
mso-ascii-font-family:Cambria;
|
547
|
+
mso-fareast-font-family:"MS Mincho";
|
548
|
+
mso-hansi-font-family:Cambria;
|
549
|
+
mso-ansi-language:EN-GB;
|
550
|
+
mso-fareast-language:JA;
|
551
|
+
font-weight:bold;
|
552
|
+
mso-bidi-font-weight:normal;}
|
553
|
+
p.a2, li.a2, div.a2
|
554
|
+
{mso-style-name:a2;
|
555
|
+
mso-style-priority:11;
|
556
|
+
mso-style-unhide:no;
|
557
|
+
mso-style-next:Normal;
|
558
|
+
margin-top:13.5pt;
|
559
|
+
margin-right:0cm;
|
560
|
+
margin-bottom:12.0pt;
|
561
|
+
margin-left:0cm;
|
562
|
+
text-indent:0cm;
|
563
|
+
line-height:13.5pt;
|
564
|
+
mso-pagination:widow-orphan;
|
565
|
+
page-break-after:avoid;
|
566
|
+
mso-outline-level:1;
|
567
|
+
mso-list:l0 level2 lfo12;
|
568
|
+
tab-stops:1.0cm 36.0pt;
|
569
|
+
font-size:13.0pt;
|
570
|
+
mso-bidi-font-size:11.0pt;
|
571
|
+
font-family:"Cambria",serif;
|
572
|
+
mso-fareast-font-family:"MS Mincho";
|
573
|
+
mso-bidi-font-family:"Cambria";
|
574
|
+
mso-ansi-language:EN-GB;
|
575
|
+
mso-fareast-language:JA;
|
576
|
+
font-weight:bold;
|
577
|
+
mso-bidi-font-weight:normal;}
|
578
|
+
p.a3, li.a3, div.a3
|
579
|
+
{mso-style-name:a3;
|
580
|
+
mso-style-priority:12;
|
581
|
+
mso-style-unhide:no;
|
582
|
+
mso-style-next:Normal;
|
583
|
+
margin-top:3.0pt;
|
584
|
+
margin-right:0cm;
|
585
|
+
margin-bottom:12.0pt;
|
586
|
+
margin-left:0cm;
|
587
|
+
text-indent:0cm;
|
588
|
+
line-height:12.5pt;
|
589
|
+
mso-pagination:widow-orphan;
|
590
|
+
page-break-after:avoid;
|
591
|
+
mso-outline-level:1;
|
592
|
+
mso-list:l0 level3 lfo12;
|
593
|
+
tab-stops:20.15pt list 36.0pt;
|
594
|
+
font-size:12.0pt;
|
595
|
+
mso-bidi-font-size:11.0pt;
|
596
|
+
font-family:"Cambria",serif;
|
597
|
+
mso-fareast-font-family:"MS Mincho";
|
598
|
+
mso-bidi-font-family:"Cambria";
|
599
|
+
mso-ansi-language:EN-GB;
|
600
|
+
mso-fareast-language:JA;
|
601
|
+
font-weight:bold;
|
602
|
+
mso-bidi-font-weight:normal;}
|
603
|
+
p.a4, li.a4, div.a4
|
604
|
+
{mso-style-name:a4;
|
605
|
+
mso-style-priority:13;
|
606
|
+
mso-style-unhide:no;
|
607
|
+
mso-style-next:Normal;
|
608
|
+
margin-top:3.0pt;
|
609
|
+
margin-right:0cm;
|
610
|
+
margin-bottom:12.0pt;
|
611
|
+
margin-left:0cm;
|
612
|
+
text-indent:0cm;
|
613
|
+
line-height:12.0pt;
|
614
|
+
mso-pagination:widow-orphan;
|
615
|
+
page-break-after:avoid;
|
616
|
+
mso-outline-level:1;
|
617
|
+
mso-list:l0 level4 lfo12;
|
618
|
+
tab-stops:20.15pt 44.0pt list 54.0pt;
|
619
|
+
font-size:11.0pt;
|
620
|
+
font-family:"Cambria",serif;
|
621
|
+
mso-fareast-font-family:"MS Mincho";
|
622
|
+
mso-bidi-font-family:"Cambria";
|
623
|
+
mso-ansi-language:EN-GB;
|
624
|
+
mso-fareast-language:JA;
|
625
|
+
font-weight:bold;
|
626
|
+
mso-bidi-font-style:italic;}
|
627
|
+
p.a5, li.a5, div.a5
|
628
|
+
{mso-style-name:a5;
|
629
|
+
mso-style-priority:14;
|
630
|
+
mso-style-unhide:no;
|
631
|
+
mso-style-next:Normal;
|
632
|
+
margin-top:3.0pt;
|
633
|
+
margin-right:0cm;
|
634
|
+
margin-bottom:12.0pt;
|
635
|
+
margin-left:0cm;
|
636
|
+
text-indent:0cm;
|
637
|
+
line-height:12.0pt;
|
638
|
+
mso-pagination:widow-orphan;
|
639
|
+
page-break-after:avoid;
|
640
|
+
mso-outline-level:1;
|
641
|
+
mso-list:l0 level5 lfo12;
|
642
|
+
tab-stops:20.15pt list 54.0pt left 62.35pt 68.0pt;
|
643
|
+
font-size:11.0pt;
|
644
|
+
font-family:"Cambria",serif;
|
645
|
+
mso-fareast-font-family:"MS Mincho";
|
646
|
+
mso-bidi-font-family:"Cambria";
|
647
|
+
mso-ansi-language:EN-GB;
|
648
|
+
mso-fareast-language:JA;
|
649
|
+
font-weight:bold;
|
650
|
+
mso-bidi-font-style:italic;}
|
651
|
+
p.a6, li.a6, div.a6
|
652
|
+
{mso-style-name:a6;
|
653
|
+
mso-style-priority:15;
|
654
|
+
mso-style-unhide:no;
|
655
|
+
mso-style-next:Normal;
|
656
|
+
margin-top:3.0pt;
|
657
|
+
margin-right:0cm;
|
658
|
+
margin-bottom:12.0pt;
|
659
|
+
margin-left:0cm;
|
660
|
+
text-indent:0cm;
|
661
|
+
line-height:12.0pt;
|
662
|
+
mso-pagination:widow-orphan;
|
663
|
+
page-break-after:avoid;
|
664
|
+
mso-outline-level:1;
|
665
|
+
mso-list:l0 level6 lfo12;
|
666
|
+
tab-stops:20.15pt 62.35pt 68.0pt list 72.0pt;
|
667
|
+
font-size:11.0pt;
|
668
|
+
font-family:"Cambria",serif;
|
669
|
+
mso-fareast-font-family:"MS Mincho";
|
670
|
+
mso-bidi-font-family:"Cambria";
|
671
|
+
mso-ansi-language:EN-GB;
|
672
|
+
mso-fareast-language:JA;
|
673
|
+
font-weight:bold;}
|
674
|
+
span.FooterChar
|
675
|
+
{mso-style-name:"Footer Char";
|
676
|
+
mso-style-noshow:yes;
|
677
|
+
mso-style-priority:99;
|
678
|
+
mso-style-unhide:no;
|
679
|
+
mso-style-locked:yes;
|
680
|
+
mso-style-parent:"";
|
681
|
+
mso-style-link:Footer;
|
682
|
+
mso-ansi-font-size:11.0pt;
|
683
|
+
mso-bidi-font-size:11.0pt;
|
684
|
+
mso-ansi-language:EN-GB;}
|
685
|
+
span.HeaderChar
|
686
|
+
{mso-style-name:"Header Char";
|
687
|
+
mso-style-noshow:yes;
|
688
|
+
mso-style-priority:99;
|
689
|
+
mso-style-unhide:no;
|
690
|
+
mso-style-locked:yes;
|
691
|
+
mso-style-parent:"";
|
692
|
+
mso-style-link:Header;
|
693
|
+
mso-ansi-font-size:11.0pt;
|
694
|
+
mso-bidi-font-size:11.0pt;
|
695
|
+
mso-ansi-language:EN-GB;
|
696
|
+
font-weight:bold;
|
697
|
+
mso-bidi-font-weight:normal;}
|
698
|
+
span.BodyTextChar
|
699
|
+
{mso-style-name:"Body Text Char";
|
700
|
+
mso-style-noshow:yes;
|
701
|
+
mso-style-priority:99;
|
702
|
+
mso-style-unhide:no;
|
703
|
+
mso-style-locked:yes;
|
704
|
+
mso-style-parent:"";
|
705
|
+
mso-style-link:"Body Text";
|
706
|
+
mso-ansi-font-size:11.0pt;
|
707
|
+
mso-bidi-font-size:11.0pt;
|
708
|
+
font-family:"Cambria",serif;
|
709
|
+
mso-fareast-font-family:"Cambria";
|
710
|
+
mso-ansi-language:EN-GB;}
|
711
|
+
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
|
712
|
+
{mso-style-noshow:yes;
|
713
|
+
mso-style-priority:99;
|
714
|
+
mso-style-link:"Comment Text Char";
|
715
|
+
margin-top:0cm;
|
716
|
+
margin-right:0cm;
|
717
|
+
margin-bottom:12.0pt;
|
718
|
+
margin-left:0cm;
|
719
|
+
text-align:justify;
|
720
|
+
line-height:12.0pt;
|
721
|
+
mso-pagination:widow-orphan;
|
722
|
+
tab-stops:20.15pt;
|
723
|
+
font-size:12.0pt;
|
724
|
+
font-family:"Cambria",serif;
|
725
|
+
mso-fareast-font-family:Calibri;
|
726
|
+
mso-bidi-font-family:"Times New Roman";
|
727
|
+
mso-ansi-language:EN-GB;
|
728
|
+
mso-fareast-language:EN-US;}
|
729
|
+
span.MsoCommentReference
|
730
|
+
{mso-style-noshow:yes;
|
731
|
+
mso-style-priority:99;
|
732
|
+
mso-style-parent:"";
|
733
|
+
mso-ansi-font-size:9.0pt;
|
734
|
+
mso-bidi-font-size:9.0pt;}
|
735
|
+
p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
|
736
|
+
{mso-style-noshow:yes;
|
737
|
+
mso-style-priority:99;
|
738
|
+
mso-style-parent:"Comment Text";
|
739
|
+
mso-style-link:"Comment Subject Char";
|
740
|
+
mso-style-next:"Comment Text";
|
741
|
+
margin-top:0cm;
|
742
|
+
margin-right:0cm;
|
743
|
+
margin-bottom:12.0pt;
|
744
|
+
margin-left:0cm;
|
745
|
+
text-align:justify;
|
746
|
+
line-height:12.0pt;
|
747
|
+
mso-pagination:widow-orphan;
|
748
|
+
tab-stops:20.15pt;
|
749
|
+
font-size:10.0pt;
|
750
|
+
font-family:"Cambria",serif;
|
751
|
+
mso-fareast-font-family:Calibri;
|
752
|
+
mso-bidi-font-family:"Times New Roman";
|
753
|
+
mso-ansi-language:EN-GB;
|
754
|
+
mso-fareast-language:EN-US;
|
755
|
+
font-weight:bold;}
|
756
|
+
p.Tablebody, li.Tablebody, div.Tablebody
|
757
|
+
{mso-style-name:"Table body";
|
758
|
+
mso-style-noshow:yes;
|
759
|
+
mso-style-unhide:no;
|
760
|
+
margin-top:3.0pt;
|
761
|
+
margin-right:0cm;
|
762
|
+
margin-bottom:3.0pt;
|
763
|
+
margin-left:0cm;
|
764
|
+
line-height:10.5pt;
|
765
|
+
mso-pagination:widow-orphan;
|
766
|
+
font-size:10.0pt;
|
767
|
+
mso-bidi-font-size:11.0pt;
|
768
|
+
font-family:"Cambria",serif;
|
769
|
+
mso-fareast-font-family:"Cambria";
|
770
|
+
mso-bidi-font-family:"Cambria";
|
771
|
+
mso-ansi-language:EN-GB;}
|
772
|
+
.MsoChpDefault
|
773
|
+
{mso-style-type:export-only;
|
774
|
+
mso-default-props:yes;
|
775
|
+
mso-ascii-font-family:Cambria;
|
776
|
+
mso-fareast-font-family:Calibri;
|
777
|
+
mso-hansi-font-family:Cambria;}
|
778
|
+
/* Page Definitions */
|
779
|
+
@page
|
780
|
+
{mso-mirror-margins:yes;
|
781
|
+
mso-footnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") fs;
|
782
|
+
mso-footnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") fcs;
|
783
|
+
mso-endnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") es;
|
784
|
+
mso-endnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") ecs;
|
785
|
+
mso-facing-pages:yes;
|
786
|
+
mso-page-orientation: portrait;
|
787
|
+
}
|
788
|
+
@page WordSection1
|
789
|
+
{size:595.0pt 842.0pt;
|
790
|
+
margin:72.0pt 90.0pt 72.0pt 90.0pt;
|
791
|
+
mso-header-margin:35.4pt;
|
792
|
+
mso-footer-margin:35.4pt;
|
793
|
+
<!-- if header present -->
|
794
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
|
795
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
796
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
|
797
|
+
<!-- end if header present -->
|
798
|
+
mso-paper-source:0;}
|
799
|
+
div.WordSection1
|
800
|
+
{page:WordSection1;}
|
801
|
+
/* List Definitions */
|
802
|
+
@list l0
|
803
|
+
{mso-list-id:145051656;
|
804
|
+
mso-list-template-ids:2112159680;}
|
805
|
+
@list l0:level1
|
806
|
+
{mso-level-number-format:alpha-upper;
|
807
|
+
mso-level-style-link:ANNEX;
|
808
|
+
mso-level-suffix:none;
|
809
|
+
mso-level-text:Annex\00A0%1;
|
810
|
+
mso-level-tab-stop:none;
|
811
|
+
mso-level-number-position:left;
|
812
|
+
margin-left:0cm;
|
813
|
+
text-indent:0cm;
|
814
|
+
mso-ansi-font-size:14.0pt;
|
815
|
+
mso-bidi-font-size:14.0pt;
|
816
|
+
font-family:"Cambria",serif;
|
817
|
+
mso-bidi-font-family:"Cambria";
|
818
|
+
mso-ansi-font-weight:bold;
|
819
|
+
mso-ansi-font-style:normal;}
|
820
|
+
@list l0:level2
|
821
|
+
{mso-level-style-link:a2;
|
822
|
+
mso-level-text:"%1\.%2";
|
823
|
+
mso-level-tab-stop:18.0pt;
|
824
|
+
mso-level-number-position:left;
|
825
|
+
margin-left:0cm;
|
826
|
+
text-indent:0cm;
|
827
|
+
mso-bidi-font-family:"Cambria";
|
828
|
+
mso-ansi-font-weight:bold;
|
829
|
+
mso-ansi-font-style:normal;}
|
830
|
+
@list l0:level3
|
831
|
+
{mso-level-style-link:a3;
|
832
|
+
mso-level-text:"%1\.%2\.%3";
|
833
|
+
mso-level-tab-stop:36.0pt;
|
834
|
+
mso-level-number-position:left;
|
835
|
+
margin-left:0cm;
|
836
|
+
text-indent:0cm;
|
837
|
+
mso-bidi-font-family:"Cambria";
|
838
|
+
mso-ansi-font-weight:bold;
|
839
|
+
mso-ansi-font-style:normal;}
|
840
|
+
@list l0:level4
|
841
|
+
{mso-level-style-link:a4;
|
842
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
843
|
+
mso-level-tab-stop:54.0pt;
|
844
|
+
mso-level-number-position:left;
|
845
|
+
margin-left:0cm;
|
846
|
+
text-indent:0cm;
|
847
|
+
mso-bidi-font-family:"Cambria";
|
848
|
+
mso-ansi-font-weight:bold;
|
849
|
+
mso-ansi-font-style:normal;}
|
850
|
+
@list l0:level5
|
851
|
+
{mso-level-style-link:a5;
|
852
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
853
|
+
mso-level-tab-stop:54.0pt;
|
854
|
+
mso-level-number-position:left;
|
855
|
+
margin-left:0cm;
|
856
|
+
text-indent:0cm;
|
857
|
+
mso-bidi-font-family:"Cambria";
|
858
|
+
mso-ansi-font-weight:bold;
|
859
|
+
mso-ansi-font-style:normal;}
|
860
|
+
@list l0:level6
|
861
|
+
{mso-level-style-link:a6;
|
862
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
863
|
+
mso-level-tab-stop:72.0pt;
|
864
|
+
mso-level-number-position:left;
|
865
|
+
margin-left:0cm;
|
866
|
+
text-indent:0cm;
|
867
|
+
mso-bidi-font-family:"Cambria";
|
868
|
+
mso-ansi-font-weight:bold;
|
869
|
+
mso-ansi-font-style:normal;}
|
870
|
+
@list l0:level7
|
871
|
+
{mso-level-reset-level:level2;
|
872
|
+
mso-level-suffix:space;
|
873
|
+
mso-level-text:"Figure\00A0%1\.%7\00A0—";
|
874
|
+
mso-level-tab-stop:none;
|
875
|
+
mso-level-number-position:left;
|
876
|
+
margin-left:0cm;
|
877
|
+
text-indent:0cm;
|
878
|
+
mso-bidi-font-family:"Cambria";}
|
879
|
+
@list l0:level8
|
880
|
+
{mso-level-reset-level:level2;
|
881
|
+
mso-level-suffix:space;
|
882
|
+
mso-level-text:"Table\00A0%1\.%8\00A0—";
|
883
|
+
mso-level-tab-stop:none;
|
884
|
+
mso-level-number-position:left;
|
885
|
+
margin-left:0cm;
|
886
|
+
text-indent:0cm;
|
887
|
+
mso-bidi-font-family:"Cambria";}
|
888
|
+
@list l0:level9
|
889
|
+
{mso-level-number-format:roman-lower;
|
890
|
+
mso-level-text:"\(%9\)";
|
891
|
+
mso-level-tab-stop:306.0pt;
|
892
|
+
mso-level-number-position:left;
|
893
|
+
margin-left:0cm;
|
894
|
+
text-indent:0cm;
|
895
|
+
mso-bidi-font-family:"Cambria";}
|
896
|
+
@list l1
|
897
|
+
{mso-list-id:866942648;
|
898
|
+
mso-list-template-ids:-1756330000;}
|
899
|
+
@list l1:level1
|
900
|
+
{mso-level-style-link:"Heading 1";
|
901
|
+
mso-level-text:%1;
|
902
|
+
mso-level-tab-stop:21.6pt;
|
903
|
+
mso-level-number-position:left;
|
904
|
+
margin-left:21.6pt;
|
905
|
+
text-indent:-21.6pt;
|
906
|
+
mso-bidi-font-family:"Cambria";
|
907
|
+
mso-ansi-font-weight:bold;
|
908
|
+
mso-ansi-font-style:normal;}
|
909
|
+
@list l1:level2
|
910
|
+
{mso-level-style-link:"Heading 2";
|
911
|
+
mso-level-text:"%1\.%2";
|
912
|
+
mso-level-tab-stop:18.0pt;
|
913
|
+
mso-level-number-position:left;
|
914
|
+
margin-left:0cm;
|
915
|
+
text-indent:0cm;
|
916
|
+
mso-bidi-font-family:"Cambria";
|
917
|
+
mso-ansi-font-weight:bold;
|
918
|
+
mso-ansi-font-style:normal;}
|
919
|
+
@list l1:level3
|
920
|
+
{mso-level-style-link:"Heading 3";
|
921
|
+
mso-level-text:"%1\.%2\.%3";
|
922
|
+
mso-level-tab-stop:36.0pt;
|
923
|
+
mso-level-number-position:left;
|
924
|
+
margin-left:0cm;
|
925
|
+
text-indent:0cm;
|
926
|
+
mso-bidi-font-family:"Cambria";
|
927
|
+
mso-ansi-font-weight:bold;
|
928
|
+
mso-ansi-font-style:normal;}
|
929
|
+
@list l1:level4
|
930
|
+
{mso-level-style-link:"Heading 4";
|
931
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
932
|
+
mso-level-tab-stop:54.0pt;
|
933
|
+
mso-level-number-position:left;
|
934
|
+
margin-left:0cm;
|
935
|
+
text-indent:0cm;
|
936
|
+
mso-bidi-font-family:"Cambria";
|
937
|
+
mso-ansi-font-weight:bold;
|
938
|
+
mso-ansi-font-style:normal;}
|
939
|
+
@list l1:level5
|
940
|
+
{mso-level-style-link:"Heading 5";
|
941
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
942
|
+
mso-level-tab-stop:54.0pt;
|
943
|
+
mso-level-number-position:left;
|
944
|
+
margin-left:0cm;
|
945
|
+
text-indent:0cm;
|
946
|
+
mso-bidi-font-family:"Cambria";
|
947
|
+
mso-ansi-font-weight:bold;
|
948
|
+
mso-ansi-font-style:normal;}
|
949
|
+
@list l1:level6
|
950
|
+
{mso-level-style-link:"Heading 6";
|
951
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
952
|
+
mso-level-tab-stop:72.0pt;
|
953
|
+
mso-level-number-position:left;
|
954
|
+
margin-left:0cm;
|
955
|
+
text-indent:0cm;
|
956
|
+
mso-bidi-font-family:"Cambria";
|
957
|
+
mso-ansi-font-weight:bold;
|
958
|
+
mso-ansi-font-style:normal;}
|
959
|
+
@list l1:level7
|
960
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7";
|
961
|
+
mso-level-tab-stop:72.0pt;
|
962
|
+
mso-level-number-position:left;
|
963
|
+
margin-left:0cm;
|
964
|
+
text-indent:0cm;
|
965
|
+
mso-bidi-font-family:"Cambria";}
|
966
|
+
@list l1:level8
|
967
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
|
968
|
+
mso-level-tab-stop:90.0pt;
|
969
|
+
mso-level-number-position:left;
|
970
|
+
margin-left:0cm;
|
971
|
+
text-indent:0cm;
|
972
|
+
mso-bidi-font-family:"Cambria";}
|
973
|
+
@list l1:level9
|
974
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
|
975
|
+
mso-level-tab-stop:90.0pt;
|
976
|
+
mso-level-number-position:left;
|
977
|
+
margin-left:0cm;
|
978
|
+
text-indent:0cm;
|
979
|
+
mso-bidi-font-family:"Cambria";}
|
980
|
+
table.MsoNormalTable
|
981
|
+
{mso-style-name:"Table Normal";
|
982
|
+
mso-tstyle-rowband-size:0;
|
983
|
+
mso-tstyle-colband-size:0;
|
984
|
+
mso-style-noshow:yes;
|
985
|
+
mso-style-priority:99;
|
986
|
+
mso-style-parent:"";
|
987
|
+
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
|
988
|
+
mso-para-margin:0cm;
|
989
|
+
mso-para-margin-bottom:.0001pt;
|
990
|
+
mso-pagination:widow-orphan;
|
991
|
+
font-size:10.0pt;
|
992
|
+
font-family:"Cambria",serif;}
|