@adobe/helix-md2docx 1.3.9 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +4 -4
  3. package/src/mdast2docx/handlers/table.js +16 -8
  4. package/src/mdast2docx/handlers/tableCell.js +20 -3
  5. package/src/mdast2docx/handlers/tableRow.js +2 -7
  6. package/src/mdast2docx/hast-table-cell-handler.js +46 -0
  7. package/src/mdast2docx/hast-table-handler.js +39 -58
  8. package/src/mdast2docx/mdast-sanitize-html.js +3 -0
  9. package/src/mdast2docx/template/[Content_Types].xml +39 -41
  10. package/src/mdast2docx/template/docProps/app.xml +40 -20
  11. package/src/mdast2docx/template/docProps/core.xml +12 -12
  12. package/src/mdast2docx/template/word/_rels/document.xml.rels +36 -51
  13. package/src/mdast2docx/template/word/document.xml +1907 -1116
  14. package/src/mdast2docx/template/word/fontTable.xml +105 -58
  15. package/src/mdast2docx/template/word/media/image1.png +0 -0
  16. package/src/mdast2docx/template/word/numbering.xml +622 -277
  17. package/src/mdast2docx/template/word/settings.xml +140 -91
  18. package/src/mdast2docx/template/word/styles.xml +1806 -1084
  19. package/src/mdast2docx/template/word/theme/theme1.xml +490 -296
  20. package/src/mdast2docx/template/word/webSettings.xml +13 -40
  21. package/src/mdast2docx/template.docx +0 -0
  22. package/src/mdast2docx/template/word/_rels/settings.xml.rels +0 -7
  23. package/src/mdast2docx/template/word/endnotes.xml +0 -56
  24. package/src/mdast2docx/template/word/footer1.xml +0 -39
  25. package/src/mdast2docx/template/word/footer2.xml +0 -39
  26. package/src/mdast2docx/template/word/footer3.xml +0 -39
  27. package/src/mdast2docx/template/word/footnotes.xml +0 -56
  28. package/src/mdast2docx/template/word/header1.xml +0 -39
  29. package/src/mdast2docx/template/word/header2.xml +0 -39
  30. package/src/mdast2docx/template/word/header3.xml +0 -39
@@ -1,1084 +1,1806 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:styles xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
3
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
4
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
5
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
6
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
7
- xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
8
- xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
9
- xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
10
- xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
11
- mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
12
- <w:docDefaults>
13
- <w:rPrDefault>
14
- <w:rPr>
15
- <w:rFonts w:ascii="Times New Roman" w:eastAsia="Times New Roman"
16
- w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
17
- <w:lang w:val="en-CH" w:eastAsia="ja-JP" w:bidi="ar-SA"/>
18
- </w:rPr>
19
- </w:rPrDefault>
20
- <w:pPrDefault/>
21
- </w:docDefaults>
22
- <w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0"
23
- w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="376">
24
- <w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1"/>
25
- <w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1"/>
26
- <w:lsdException w:name="heading 2" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
27
- w:qFormat="1"/>
28
- <w:lsdException w:name="heading 3" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
29
- w:qFormat="1"/>
30
- <w:lsdException w:name="heading 4" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
31
- w:qFormat="1"/>
32
- <w:lsdException w:name="heading 5" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
33
- w:qFormat="1"/>
34
- <w:lsdException w:name="heading 6" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
35
- w:qFormat="1"/>
36
- <w:lsdException w:name="heading 7" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
37
- w:qFormat="1"/>
38
- <w:lsdException w:name="heading 8" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
39
- w:qFormat="1"/>
40
- <w:lsdException w:name="heading 9" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
41
- w:qFormat="1"/>
42
- <w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
43
- <w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
44
- <w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
45
- <w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
46
- <w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
47
- <w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
48
- <w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
49
- <w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
50
- <w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1"/>
51
- <w:lsdException w:name="toc 1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
52
- <w:lsdException w:name="toc 2" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
53
- <w:lsdException w:name="toc 3" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
54
- <w:lsdException w:name="toc 4" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
55
- <w:lsdException w:name="toc 5" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
56
- <w:lsdException w:name="toc 6" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
57
- <w:lsdException w:name="toc 7" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
58
- <w:lsdException w:name="toc 8" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
59
- <w:lsdException w:name="toc 9" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
60
- <w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
61
- <w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
62
- <w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1"/>
63
- <w:lsdException w:name="header" w:semiHidden="1" w:unhideWhenUsed="1"/>
64
- <w:lsdException w:name="footer" w:semiHidden="1" w:unhideWhenUsed="1"/>
65
- <w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
66
- <w:lsdException w:name="caption" w:semiHidden="1" w:uiPriority="35" w:unhideWhenUsed="1"
67
- w:qFormat="1"/>
68
- <w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1"/>
69
- <w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1"/>
70
- <w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1"/>
71
- <w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
72
- <w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
73
- <w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1"/>
74
- <w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1"/>
75
- <w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
76
- <w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
77
- <w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1"/>
78
- <w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1"/>
79
- <w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
80
- <w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1"/>
81
- <w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1"/>
82
- <w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1"/>
83
- <w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
84
- <w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
85
- <w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
86
- <w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
87
- <w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
88
- <w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
89
- <w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
90
- <w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
91
- <w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
92
- <w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
93
- <w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
94
- <w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
95
- <w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1"/>
96
- <w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1"/>
97
- <w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
98
- <w:lsdException w:name="Default Paragraph Font" w:semiHidden="1" w:uiPriority="1"
99
- w:unhideWhenUsed="1"/>
100
- <w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
101
- <w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
102
- <w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1"/>
103
- <w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
104
- <w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
105
- <w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
106
- <w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
107
- <w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1"/>
108
- <w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1"/>
109
- <w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1"/>
110
- <w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1"/>
111
- <w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
112
- <w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
113
- <w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
114
- <w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
115
- <w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
116
- <w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
117
- <w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
118
- <w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
119
- <w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
120
- <w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
121
- <w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1"/>
122
- <w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1"/>
123
- <w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1"/>
124
- <w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
125
- <w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
126
- <w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
127
- <w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
128
- <w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1"/>
129
- <w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1"/>
130
- <w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1"/>
131
- <w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1"/>
132
- <w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1"/>
133
- <w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1"/>
134
- <w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1"/>
135
- <w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1"/>
136
- <w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1"/>
137
- <w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1"/>
138
- <w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1"/>
139
- <w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1"/>
140
- <w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1"/>
141
- <w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1"/>
142
- <w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
143
- <w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
144
- <w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
145
- <w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
146
- <w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
147
- <w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
148
- <w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
149
- <w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
150
- <w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
151
- <w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
152
- <w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
153
- <w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
154
- <w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
155
- <w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
156
- <w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
157
- <w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
158
- <w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
159
- <w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
160
- <w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
161
- <w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
162
- <w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
163
- <w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
164
- <w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
165
- <w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
166
- <w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
167
- <w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
168
- <w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
169
- <w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
170
- <w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
171
- <w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
172
- <w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
173
- <w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
174
- <w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
175
- <w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
176
- <w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
177
- <w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
178
- <w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
179
- <w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1"/>
180
- <w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1"/>
181
- <w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1"/>
182
- <w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
183
- <w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
184
- <w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
185
- <w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
186
- <w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
187
- <w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
188
- <w:lsdException w:name="Table Grid" w:uiPriority="39"/>
189
- <w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1"/>
190
- <w:lsdException w:name="Placeholder Text" w:semiHidden="1"/>
191
- <w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="1"/>
192
- <w:lsdException w:name="Light Shading" w:uiPriority="60"/>
193
- <w:lsdException w:name="Light List" w:uiPriority="61"/>
194
- <w:lsdException w:name="Light Grid" w:uiPriority="62"/>
195
- <w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
196
- <w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
197
- <w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
198
- <w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
199
- <w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
200
- <w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
201
- <w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
202
- <w:lsdException w:name="Dark List" w:uiPriority="70"/>
203
- <w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
204
- <w:lsdException w:name="Colorful List" w:uiPriority="72"/>
205
- <w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
206
- <w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
207
- <w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
208
- <w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
209
- <w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
210
- <w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
211
- <w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
212
- <w:lsdException w:name="Revision" w:semiHidden="1"/>
213
- <w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1"/>
214
- <w:lsdException w:name="Quote" w:uiPriority="29" w:qFormat="1"/>
215
- <w:lsdException w:name="Intense Quote" w:uiPriority="30" w:qFormat="1"/>
216
- <w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
217
- <w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
218
- <w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
219
- <w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
220
- <w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
221
- <w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
222
- <w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
223
- <w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
224
- <w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
225
- <w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
226
- <w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
227
- <w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
228
- <w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
229
- <w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
230
- <w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
231
- <w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
232
- <w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
233
- <w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
234
- <w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
235
- <w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
236
- <w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
237
- <w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
238
- <w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
239
- <w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
240
- <w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
241
- <w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
242
- <w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
243
- <w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
244
- <w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
245
- <w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
246
- <w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
247
- <w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
248
- <w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
249
- <w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
250
- <w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
251
- <w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
252
- <w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
253
- <w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
254
- <w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
255
- <w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
256
- <w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
257
- <w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
258
- <w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
259
- <w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
260
- <w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
261
- <w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
262
- <w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
263
- <w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
264
- <w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
265
- <w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
266
- <w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
267
- <w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
268
- <w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
269
- <w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
270
- <w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
271
- <w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
272
- <w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
273
- <w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
274
- <w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
275
- <w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
276
- <w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
277
- <w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
278
- <w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
279
- <w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
280
- <w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
281
- <w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
282
- <w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
283
- <w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
284
- <w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
285
- <w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
286
- <w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
287
- <w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
288
- <w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
289
- <w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
290
- <w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
291
- <w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
292
- <w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
293
- <w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
294
- <w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1"/>
295
- <w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1"/>
296
- <w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1"/>
297
- <w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1"/>
298
- <w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1"/>
299
- <w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37"
300
- w:unhideWhenUsed="1"/>
301
- <w:lsdException w:name="TOC Heading" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"
302
- w:qFormat="1"/>
303
- <w:lsdException w:name="Plain Table 1" w:uiPriority="41"/>
304
- <w:lsdException w:name="Plain Table 2" w:uiPriority="42"/>
305
- <w:lsdException w:name="Plain Table 3" w:uiPriority="43"/>
306
- <w:lsdException w:name="Plain Table 4" w:uiPriority="44"/>
307
- <w:lsdException w:name="Plain Table 5" w:uiPriority="45"/>
308
- <w:lsdException w:name="Grid Table Light" w:uiPriority="40"/>
309
- <w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46"/>
310
- <w:lsdException w:name="Grid Table 2" w:uiPriority="47"/>
311
- <w:lsdException w:name="Grid Table 3" w:uiPriority="48"/>
312
- <w:lsdException w:name="Grid Table 4" w:uiPriority="49"/>
313
- <w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50"/>
314
- <w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51"/>
315
- <w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52"/>
316
- <w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46"/>
317
- <w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47"/>
318
- <w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48"/>
319
- <w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49"/>
320
- <w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50"/>
321
- <w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51"/>
322
- <w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52"/>
323
- <w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46"/>
324
- <w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47"/>
325
- <w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48"/>
326
- <w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49"/>
327
- <w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50"/>
328
- <w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51"/>
329
- <w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52"/>
330
- <w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46"/>
331
- <w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47"/>
332
- <w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48"/>
333
- <w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49"/>
334
- <w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50"/>
335
- <w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51"/>
336
- <w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52"/>
337
- <w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46"/>
338
- <w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47"/>
339
- <w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48"/>
340
- <w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49"/>
341
- <w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50"/>
342
- <w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51"/>
343
- <w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52"/>
344
- <w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46"/>
345
- <w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47"/>
346
- <w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48"/>
347
- <w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49"/>
348
- <w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50"/>
349
- <w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51"/>
350
- <w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52"/>
351
- <w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46"/>
352
- <w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47"/>
353
- <w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48"/>
354
- <w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49"/>
355
- <w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50"/>
356
- <w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51"/>
357
- <w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52"/>
358
- <w:lsdException w:name="List Table 1 Light" w:uiPriority="46"/>
359
- <w:lsdException w:name="List Table 2" w:uiPriority="47"/>
360
- <w:lsdException w:name="List Table 3" w:uiPriority="48"/>
361
- <w:lsdException w:name="List Table 4" w:uiPriority="49"/>
362
- <w:lsdException w:name="List Table 5 Dark" w:uiPriority="50"/>
363
- <w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51"/>
364
- <w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52"/>
365
- <w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46"/>
366
- <w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47"/>
367
- <w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48"/>
368
- <w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49"/>
369
- <w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50"/>
370
- <w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51"/>
371
- <w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52"/>
372
- <w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46"/>
373
- <w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47"/>
374
- <w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48"/>
375
- <w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49"/>
376
- <w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50"/>
377
- <w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51"/>
378
- <w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52"/>
379
- <w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46"/>
380
- <w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47"/>
381
- <w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48"/>
382
- <w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49"/>
383
- <w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50"/>
384
- <w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51"/>
385
- <w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52"/>
386
- <w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46"/>
387
- <w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47"/>
388
- <w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48"/>
389
- <w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49"/>
390
- <w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50"/>
391
- <w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51"/>
392
- <w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52"/>
393
- <w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46"/>
394
- <w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47"/>
395
- <w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48"/>
396
- <w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49"/>
397
- <w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50"/>
398
- <w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51"/>
399
- <w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52"/>
400
- <w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46"/>
401
- <w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47"/>
402
- <w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48"/>
403
- <w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49"/>
404
- <w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50"/>
405
- <w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51"/>
406
- <w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52"/>
407
- <w:lsdException w:name="Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
408
- <w:lsdException w:name="Smart Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
409
- <w:lsdException w:name="Hashtag" w:semiHidden="1" w:unhideWhenUsed="1"/>
410
- <w:lsdException w:name="Unresolved Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
411
- <w:lsdException w:name="Smart Link" w:semiHidden="1" w:unhideWhenUsed="1"/>
412
- </w:latentStyles>
413
- <w:style w:type="paragraph" w:default="1" w:styleId="Normal">
414
- <w:name w:val="Normal"/>
415
- <w:qFormat/>
416
- <w:pPr>
417
- <w:spacing w:after="150"/>
418
- </w:pPr>
419
- </w:style>
420
- <w:style w:type="paragraph" w:styleId="Heading1">
421
- <w:name w:val="heading 1"/>
422
- <w:basedOn w:val="Normal"/>
423
- <w:next w:val="Normal"/>
424
- <w:uiPriority w:val="9"/>
425
- <w:qFormat/>
426
- <w:pPr>
427
- <w:outlineLvl w:val="0"/>
428
- </w:pPr>
429
- <w:rPr>
430
- <w:color w:val="2E74B5"/>
431
- <w:sz w:val="32"/>
432
- <w:szCs w:val="32"/>
433
- </w:rPr>
434
- </w:style>
435
- <w:style w:type="paragraph" w:styleId="Heading2">
436
- <w:name w:val="heading 2"/>
437
- <w:basedOn w:val="Normal"/>
438
- <w:next w:val="Normal"/>
439
- <w:uiPriority w:val="9"/>
440
- <w:unhideWhenUsed/>
441
- <w:qFormat/>
442
- <w:pPr>
443
- <w:outlineLvl w:val="1"/>
444
- </w:pPr>
445
- <w:rPr>
446
- <w:color w:val="2E74B5"/>
447
- <w:sz w:val="26"/>
448
- <w:szCs w:val="26"/>
449
- </w:rPr>
450
- </w:style>
451
- <w:style w:type="paragraph" w:styleId="Heading3">
452
- <w:name w:val="heading 3"/>
453
- <w:basedOn w:val="Normal"/>
454
- <w:next w:val="Normal"/>
455
- <w:uiPriority w:val="9"/>
456
- <w:unhideWhenUsed/>
457
- <w:qFormat/>
458
- <w:pPr>
459
- <w:outlineLvl w:val="2"/>
460
- </w:pPr>
461
- <w:rPr>
462
- <w:color w:val="1F4D78"/>
463
- <w:sz w:val="24"/>
464
- <w:szCs w:val="24"/>
465
- </w:rPr>
466
- </w:style>
467
- <w:style w:type="paragraph" w:styleId="Heading4">
468
- <w:name w:val="heading 4"/>
469
- <w:basedOn w:val="Normal"/>
470
- <w:next w:val="Normal"/>
471
- <w:uiPriority w:val="9"/>
472
- <w:unhideWhenUsed/>
473
- <w:qFormat/>
474
- <w:pPr>
475
- <w:outlineLvl w:val="3"/>
476
- </w:pPr>
477
- <w:rPr>
478
- <w:i/>
479
- <w:iCs/>
480
- <w:color w:val="2E74B5"/>
481
- </w:rPr>
482
- </w:style>
483
- <w:style w:type="paragraph" w:styleId="Heading5">
484
- <w:name w:val="heading 5"/>
485
- <w:basedOn w:val="Normal"/>
486
- <w:next w:val="Normal"/>
487
- <w:uiPriority w:val="9"/>
488
- <w:semiHidden/>
489
- <w:unhideWhenUsed/>
490
- <w:qFormat/>
491
- <w:pPr>
492
- <w:outlineLvl w:val="4"/>
493
- </w:pPr>
494
- <w:rPr>
495
- <w:color w:val="2E74B5"/>
496
- </w:rPr>
497
- </w:style>
498
- <w:style w:type="paragraph" w:styleId="Heading6">
499
- <w:name w:val="heading 6"/>
500
- <w:basedOn w:val="Normal"/>
501
- <w:next w:val="Normal"/>
502
- <w:uiPriority w:val="9"/>
503
- <w:semiHidden/>
504
- <w:unhideWhenUsed/>
505
- <w:qFormat/>
506
- <w:pPr>
507
- <w:outlineLvl w:val="5"/>
508
- </w:pPr>
509
- <w:rPr>
510
- <w:color w:val="1F4D78"/>
511
- </w:rPr>
512
- </w:style>
513
- <w:style w:type="character" w:default="1" w:styleId="DefaultParagraphFont">
514
- <w:name w:val="Default Paragraph Font"/>
515
- <w:uiPriority w:val="1"/>
516
- <w:unhideWhenUsed/>
517
- </w:style>
518
- <w:style w:type="table" w:default="1" w:styleId="TableNormal">
519
- <w:name w:val="Normal Table"/>
520
- <w:uiPriority w:val="99"/>
521
- <w:semiHidden/>
522
- <w:unhideWhenUsed/>
523
- <w:tblPr>
524
- <w:tblInd w:w="0" w:type="dxa"/>
525
- <w:tblCellMar>
526
- <w:top w:w="0" w:type="dxa"/>
527
- <w:left w:w="108" w:type="dxa"/>
528
- <w:bottom w:w="0" w:type="dxa"/>
529
- <w:right w:w="108" w:type="dxa"/>
530
- </w:tblCellMar>
531
- </w:tblPr>
532
- </w:style>
533
- <w:style w:type="numbering" w:default="1" w:styleId="NoList">
534
- <w:name w:val="No List"/>
535
- <w:uiPriority w:val="99"/>
536
- <w:semiHidden/>
537
- <w:unhideWhenUsed/>
538
- </w:style>
539
- <w:style w:type="paragraph" w:styleId="Title">
540
- <w:name w:val="Title"/>
541
- <w:basedOn w:val="Normal"/>
542
- <w:next w:val="Normal"/>
543
- <w:uiPriority w:val="10"/>
544
- <w:qFormat/>
545
- <w:rPr>
546
- <w:sz w:val="56"/>
547
- <w:szCs w:val="56"/>
548
- </w:rPr>
549
- </w:style>
550
- <w:style w:type="paragraph" w:customStyle="1" w:styleId="Strong1">
551
- <w:name w:val="Strong1"/>
552
- <w:basedOn w:val="Normal"/>
553
- <w:next w:val="Normal"/>
554
- <w:qFormat/>
555
- <w:rPr>
556
- <w:b/>
557
- <w:bCs/>
558
- </w:rPr>
559
- </w:style>
560
- <w:style w:type="paragraph" w:styleId="ListParagraph">
561
- <w:name w:val="List Paragraph"/>
562
- <w:basedOn w:val="Normal"/>
563
- <w:qFormat/>
564
- </w:style>
565
- <w:style w:type="character" w:styleId="Hyperlink">
566
- <w:name w:val="Hyperlink"/>
567
- <w:uiPriority w:val="99"/>
568
- <w:unhideWhenUsed/>
569
- <w:rPr>
570
- <w:color w:val="0563C1"/>
571
- <w:u w:val="single"/>
572
- </w:rPr>
573
- </w:style>
574
- <w:style w:type="character" w:styleId="FootnoteReference">
575
- <w:name w:val="footnote reference"/>
576
- <w:uiPriority w:val="99"/>
577
- <w:semiHidden/>
578
- <w:unhideWhenUsed/>
579
- <w:rPr>
580
- <w:vertAlign w:val="superscript"/>
581
- </w:rPr>
582
- </w:style>
583
- <w:style w:type="paragraph" w:styleId="FootnoteText">
584
- <w:name w:val="footnote text"/>
585
- <w:basedOn w:val="Normal"/>
586
- <w:link w:val="FootnoteTextChar"/>
587
- <w:uiPriority w:val="99"/>
588
- <w:semiHidden/>
589
- <w:unhideWhenUsed/>
590
- <w:pPr>
591
- <w:spacing w:after="0"/>
592
- </w:pPr>
593
- </w:style>
594
- <w:style w:type="character" w:customStyle="1" w:styleId="FootnoteTextChar">
595
- <w:name w:val="Footnote Text Char"/>
596
- <w:link w:val="FootnoteText"/>
597
- <w:uiPriority w:val="99"/>
598
- <w:semiHidden/>
599
- <w:unhideWhenUsed/>
600
- <w:rPr>
601
- <w:sz w:val="20"/>
602
- <w:szCs w:val="20"/>
603
- </w:rPr>
604
- </w:style>
605
- <w:style w:type="paragraph" w:customStyle="1" w:styleId="CodeBlock">
606
- <w:name w:val="Code Block"/>
607
- <w:basedOn w:val="Normal"/>
608
- <w:next w:val="Normal"/>
609
- <w:qFormat/>
610
- <w:rPr>
611
- <w:rFonts w:ascii="Courier New" w:eastAsia="Courier New" w:hAnsi="Courier New"
612
- w:cs="Courier New"/>
613
- </w:rPr>
614
- </w:style>
615
- <w:style w:type="character" w:customStyle="1" w:styleId="InlineCode">
616
- <w:name w:val="InlineCode"/>
617
- <w:basedOn w:val="DefaultParagraphFont"/>
618
- <w:uiPriority w:val="99"/>
619
- <w:unhideWhenUsed/>
620
- <w:qFormat/>
621
- <w:rsid w:val="003327EF"/>
622
- <w:rPr>
623
- <w:rFonts w:ascii="Courier New" w:eastAsia="Courier New" w:hAnsi="Courier New"
624
- w:cs="Courier New"/>
625
- <w:color w:val="222222"/>
626
- <w:shd w:val="clear" w:color="auto" w:fill="DDDDDD"/>
627
- </w:rPr>
628
- </w:style>
629
- <w:style w:type="paragraph" w:styleId="Header">
630
- <w:name w:val="header"/>
631
- <w:basedOn w:val="Normal"/>
632
- <w:link w:val="HeaderChar"/>
633
- <w:uiPriority w:val="99"/>
634
- <w:unhideWhenUsed/>
635
- <w:rsid w:val="008B3114"/>
636
- <w:pPr>
637
- <w:tabs>
638
- <w:tab w:val="center" w:pos="4513"/>
639
- <w:tab w:val="right" w:pos="9026"/>
640
- </w:tabs>
641
- <w:spacing w:after="0"/>
642
- </w:pPr>
643
- </w:style>
644
- <w:style w:type="character" w:customStyle="1" w:styleId="HeaderChar">
645
- <w:name w:val="Header Char"/>
646
- <w:basedOn w:val="DefaultParagraphFont"/>
647
- <w:link w:val="Header"/>
648
- <w:uiPriority w:val="99"/>
649
- <w:rsid w:val="008B3114"/>
650
- </w:style>
651
- <w:style w:type="paragraph" w:styleId="Footer">
652
- <w:name w:val="footer"/>
653
- <w:basedOn w:val="Normal"/>
654
- <w:link w:val="FooterChar"/>
655
- <w:uiPriority w:val="99"/>
656
- <w:unhideWhenUsed/>
657
- <w:rsid w:val="008B3114"/>
658
- <w:pPr>
659
- <w:tabs>
660
- <w:tab w:val="center" w:pos="4513"/>
661
- <w:tab w:val="right" w:pos="9026"/>
662
- </w:tabs>
663
- <w:spacing w:after="0"/>
664
- </w:pPr>
665
- </w:style>
666
- <w:style w:type="character" w:customStyle="1" w:styleId="FooterChar">
667
- <w:name w:val="Footer Char"/>
668
- <w:basedOn w:val="DefaultParagraphFont"/>
669
- <w:link w:val="Footer"/>
670
- <w:uiPriority w:val="99"/>
671
- <w:rsid w:val="008B3114"/>
672
- </w:style>
673
- <w:style w:type="table" w:styleId="TableGrid">
674
- <w:name w:val="Table Grid"/>
675
- <w:basedOn w:val="TableNormal"/>
676
- <w:uiPriority w:val="39"/>
677
- <w:rsid w:val="008B3114"/>
678
- <w:tblPr>
679
- <w:tblBorders>
680
- <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
681
- <w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
682
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
683
- <w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
684
- <w:insideH w:val="single" w:sz="4" w:space="0" w:color="auto"/>
685
- <w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
686
- </w:tblBorders>
687
- </w:tblPr>
688
- </w:style>
689
- <w:style w:type="table" w:styleId="TableGridLight">
690
- <w:name w:val="Grid Table Light"/>
691
- <w:basedOn w:val="TableNormal"/>
692
- <w:uiPriority w:val="40"/>
693
- <w:rsid w:val="008B3114"/>
694
- <w:tblPr>
695
- <w:tblBorders>
696
- <w:top w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
697
- w:themeColor="background1" w:themeShade="BF"/>
698
- <w:left w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
699
- w:themeColor="background1" w:themeShade="BF"/>
700
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
701
- w:themeColor="background1" w:themeShade="BF"/>
702
- <w:right w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
703
- w:themeColor="background1" w:themeShade="BF"/>
704
- <w:insideH w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
705
- w:themeColor="background1" w:themeShade="BF"/>
706
- <w:insideV w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
707
- w:themeColor="background1" w:themeShade="BF"/>
708
- </w:tblBorders>
709
- </w:tblPr>
710
- </w:style>
711
- <w:style w:type="table" w:styleId="PlainTable1">
712
- <w:name w:val="Plain Table 1"/>
713
- <w:basedOn w:val="TableNormal"/>
714
- <w:uiPriority w:val="41"/>
715
- <w:rsid w:val="008B3114"/>
716
- <w:tblPr>
717
- <w:tblStyleRowBandSize w:val="1"/>
718
- <w:tblStyleColBandSize w:val="1"/>
719
- <w:tblBorders>
720
- <w:top w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
721
- w:themeColor="background1" w:themeShade="BF"/>
722
- <w:left w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
723
- w:themeColor="background1" w:themeShade="BF"/>
724
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
725
- w:themeColor="background1" w:themeShade="BF"/>
726
- <w:right w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
727
- w:themeColor="background1" w:themeShade="BF"/>
728
- <w:insideH w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
729
- w:themeColor="background1" w:themeShade="BF"/>
730
- <w:insideV w:val="single" w:sz="4" w:space="0" w:color="BFBFBF"
731
- w:themeColor="background1" w:themeShade="BF"/>
732
- </w:tblBorders>
733
- </w:tblPr>
734
- <w:tblStylePr w:type="firstRow">
735
- <w:rPr>
736
- <w:b/>
737
- <w:bCs/>
738
- </w:rPr>
739
- </w:tblStylePr>
740
- <w:tblStylePr w:type="lastRow">
741
- <w:rPr>
742
- <w:b/>
743
- <w:bCs/>
744
- </w:rPr>
745
- <w:tblPr/>
746
- <w:tcPr>
747
- <w:tcBorders>
748
- <w:top w:val="double" w:sz="4" w:space="0" w:color="BFBFBF"
749
- w:themeColor="background1" w:themeShade="BF"/>
750
- </w:tcBorders>
751
- </w:tcPr>
752
- </w:tblStylePr>
753
- <w:tblStylePr w:type="firstCol">
754
- <w:rPr>
755
- <w:b/>
756
- <w:bCs/>
757
- </w:rPr>
758
- </w:tblStylePr>
759
- <w:tblStylePr w:type="lastCol">
760
- <w:rPr>
761
- <w:b/>
762
- <w:bCs/>
763
- </w:rPr>
764
- </w:tblStylePr>
765
- <w:tblStylePr w:type="band1Vert">
766
- <w:tblPr/>
767
- <w:tcPr>
768
- <w:shd w:val="clear" w:color="auto" w:fill="F2F2F2" w:themeFill="background1"
769
- w:themeFillShade="F2"/>
770
- </w:tcPr>
771
- </w:tblStylePr>
772
- <w:tblStylePr w:type="band1Horz">
773
- <w:tblPr/>
774
- <w:tcPr>
775
- <w:shd w:val="clear" w:color="auto" w:fill="F2F2F2" w:themeFill="background1"
776
- w:themeFillShade="F2"/>
777
- </w:tcPr>
778
- </w:tblStylePr>
779
- </w:style>
780
- <w:style w:type="table" w:styleId="PlainTable2">
781
- <w:name w:val="Plain Table 2"/>
782
- <w:basedOn w:val="TableNormal"/>
783
- <w:uiPriority w:val="42"/>
784
- <w:rsid w:val="008B3114"/>
785
- <w:tblPr>
786
- <w:tblStyleRowBandSize w:val="1"/>
787
- <w:tblStyleColBandSize w:val="1"/>
788
- <w:tblBorders>
789
- <w:top w:val="single" w:sz="4" w:space="0" w:color="7F7F7F" w:themeColor="text1"
790
- w:themeTint="80"/>
791
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="7F7F7F" w:themeColor="text1"
792
- w:themeTint="80"/>
793
- </w:tblBorders>
794
- </w:tblPr>
795
- <w:tblStylePr w:type="firstRow">
796
- <w:rPr>
797
- <w:b/>
798
- <w:bCs/>
799
- </w:rPr>
800
- <w:tblPr/>
801
- <w:tcPr>
802
- <w:tcBorders>
803
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="7F7F7F"
804
- w:themeColor="text1" w:themeTint="80"/>
805
- </w:tcBorders>
806
- </w:tcPr>
807
- </w:tblStylePr>
808
- <w:tblStylePr w:type="lastRow">
809
- <w:rPr>
810
- <w:b/>
811
- <w:bCs/>
812
- </w:rPr>
813
- <w:tblPr/>
814
- <w:tcPr>
815
- <w:tcBorders>
816
- <w:top w:val="single" w:sz="4" w:space="0" w:color="7F7F7F" w:themeColor="text1"
817
- w:themeTint="80"/>
818
- </w:tcBorders>
819
- </w:tcPr>
820
- </w:tblStylePr>
821
- <w:tblStylePr w:type="firstCol">
822
- <w:rPr>
823
- <w:b/>
824
- <w:bCs/>
825
- </w:rPr>
826
- </w:tblStylePr>
827
- <w:tblStylePr w:type="lastCol">
828
- <w:rPr>
829
- <w:b/>
830
- <w:bCs/>
831
- </w:rPr>
832
- </w:tblStylePr>
833
- <w:tblStylePr w:type="band1Vert">
834
- <w:tblPr/>
835
- <w:tcPr>
836
- <w:tcBorders>
837
- <w:left w:val="single" w:sz="4" w:space="0" w:color="7F7F7F"
838
- w:themeColor="text1" w:themeTint="80"/>
839
- <w:right w:val="single" w:sz="4" w:space="0" w:color="7F7F7F"
840
- w:themeColor="text1" w:themeTint="80"/>
841
- </w:tcBorders>
842
- </w:tcPr>
843
- </w:tblStylePr>
844
- <w:tblStylePr w:type="band2Vert">
845
- <w:tblPr/>
846
- <w:tcPr>
847
- <w:tcBorders>
848
- <w:left w:val="single" w:sz="4" w:space="0" w:color="7F7F7F"
849
- w:themeColor="text1" w:themeTint="80"/>
850
- <w:right w:val="single" w:sz="4" w:space="0" w:color="7F7F7F"
851
- w:themeColor="text1" w:themeTint="80"/>
852
- </w:tcBorders>
853
- </w:tcPr>
854
- </w:tblStylePr>
855
- <w:tblStylePr w:type="band1Horz">
856
- <w:tblPr/>
857
- <w:tcPr>
858
- <w:tcBorders>
859
- <w:top w:val="single" w:sz="4" w:space="0" w:color="7F7F7F" w:themeColor="text1"
860
- w:themeTint="80"/>
861
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="7F7F7F"
862
- w:themeColor="text1" w:themeTint="80"/>
863
- </w:tcBorders>
864
- </w:tcPr>
865
- </w:tblStylePr>
866
- </w:style>
867
- <w:style w:type="table" w:styleId="PlainTable3">
868
- <w:name w:val="Plain Table 3"/>
869
- <w:basedOn w:val="TableNormal"/>
870
- <w:uiPriority w:val="43"/>
871
- <w:rsid w:val="008B3114"/>
872
- <w:tblPr>
873
- <w:tblStyleRowBandSize w:val="1"/>
874
- <w:tblStyleColBandSize w:val="1"/>
875
- </w:tblPr>
876
- <w:tblStylePr w:type="firstRow">
877
- <w:rPr>
878
- <w:b/>
879
- <w:bCs/>
880
- <w:caps/>
881
- </w:rPr>
882
- <w:tblPr/>
883
- <w:tcPr>
884
- <w:tcBorders>
885
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="7F7F7F"
886
- w:themeColor="text1" w:themeTint="80"/>
887
- </w:tcBorders>
888
- </w:tcPr>
889
- </w:tblStylePr>
890
- <w:tblStylePr w:type="lastRow">
891
- <w:rPr>
892
- <w:b/>
893
- <w:bCs/>
894
- <w:caps/>
895
- </w:rPr>
896
- <w:tblPr/>
897
- <w:tcPr>
898
- <w:tcBorders>
899
- <w:top w:val="nil"/>
900
- </w:tcBorders>
901
- </w:tcPr>
902
- </w:tblStylePr>
903
- <w:tblStylePr w:type="firstCol">
904
- <w:rPr>
905
- <w:b/>
906
- <w:bCs/>
907
- <w:caps/>
908
- </w:rPr>
909
- <w:tblPr/>
910
- <w:tcPr>
911
- <w:tcBorders>
912
- <w:right w:val="single" w:sz="4" w:space="0" w:color="7F7F7F"
913
- w:themeColor="text1" w:themeTint="80"/>
914
- </w:tcBorders>
915
- </w:tcPr>
916
- </w:tblStylePr>
917
- <w:tblStylePr w:type="lastCol">
918
- <w:rPr>
919
- <w:b/>
920
- <w:bCs/>
921
- <w:caps/>
922
- </w:rPr>
923
- <w:tblPr/>
924
- <w:tcPr>
925
- <w:tcBorders>
926
- <w:left w:val="nil"/>
927
- </w:tcBorders>
928
- </w:tcPr>
929
- </w:tblStylePr>
930
- <w:tblStylePr w:type="band1Vert">
931
- <w:tblPr/>
932
- <w:tcPr>
933
- <w:shd w:val="clear" w:color="auto" w:fill="F2F2F2" w:themeFill="background1"
934
- w:themeFillShade="F2"/>
935
- </w:tcPr>
936
- </w:tblStylePr>
937
- <w:tblStylePr w:type="band1Horz">
938
- <w:tblPr/>
939
- <w:tcPr>
940
- <w:shd w:val="clear" w:color="auto" w:fill="F2F2F2" w:themeFill="background1"
941
- w:themeFillShade="F2"/>
942
- </w:tcPr>
943
- </w:tblStylePr>
944
- <w:tblStylePr w:type="neCell">
945
- <w:tblPr/>
946
- <w:tcPr>
947
- <w:tcBorders>
948
- <w:left w:val="nil"/>
949
- </w:tcBorders>
950
- </w:tcPr>
951
- </w:tblStylePr>
952
- <w:tblStylePr w:type="nwCell">
953
- <w:tblPr/>
954
- <w:tcPr>
955
- <w:tcBorders>
956
- <w:right w:val="nil"/>
957
- </w:tcBorders>
958
- </w:tcPr>
959
- </w:tblStylePr>
960
- </w:style>
961
- <w:style w:type="table" w:styleId="PlainTable4">
962
- <w:name w:val="Plain Table 4"/>
963
- <w:basedOn w:val="TableNormal"/>
964
- <w:uiPriority w:val="44"/>
965
- <w:rsid w:val="008B3114"/>
966
- <w:tblPr>
967
- <w:tblStyleRowBandSize w:val="1"/>
968
- <w:tblStyleColBandSize w:val="1"/>
969
- </w:tblPr>
970
- <w:tblStylePr w:type="firstRow">
971
- <w:rPr>
972
- <w:b/>
973
- <w:bCs/>
974
- </w:rPr>
975
- </w:tblStylePr>
976
- <w:tblStylePr w:type="lastRow">
977
- <w:rPr>
978
- <w:b/>
979
- <w:bCs/>
980
- </w:rPr>
981
- </w:tblStylePr>
982
- <w:tblStylePr w:type="firstCol">
983
- <w:rPr>
984
- <w:b/>
985
- <w:bCs/>
986
- </w:rPr>
987
- </w:tblStylePr>
988
- <w:tblStylePr w:type="lastCol">
989
- <w:rPr>
990
- <w:b/>
991
- <w:bCs/>
992
- </w:rPr>
993
- </w:tblStylePr>
994
- <w:tblStylePr w:type="band1Vert">
995
- <w:tblPr/>
996
- <w:tcPr>
997
- <w:shd w:val="clear" w:color="auto" w:fill="F2F2F2" w:themeFill="background1"
998
- w:themeFillShade="F2"/>
999
- </w:tcPr>
1000
- </w:tblStylePr>
1001
- <w:tblStylePr w:type="band1Horz">
1002
- <w:tblPr/>
1003
- <w:tcPr>
1004
- <w:shd w:val="clear" w:color="auto" w:fill="F2F2F2" w:themeFill="background1"
1005
- w:themeFillShade="F2"/>
1006
- </w:tcPr>
1007
- </w:tblStylePr>
1008
- </w:style>
1009
- <w:style w:type="table" w:customStyle="1" w:styleId="PageBlock">
1010
- <w:name w:val="PageBlock"/>
1011
- <w:basedOn w:val="TableNormal"/>
1012
- <w:uiPriority w:val="99"/>
1013
- <w:rsid w:val="00E37A87"/>
1014
- <w:tblPr>
1015
- <w:tblBorders>
1016
- <w:top w:val="single" w:sz="4" w:space="0" w:color="C9C9C9" w:themeColor="accent3"
1017
- w:themeTint="99"/>
1018
- <w:left w:val="single" w:sz="4" w:space="0" w:color="C9C9C9" w:themeColor="accent3"
1019
- w:themeTint="99"/>
1020
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="C9C9C9"
1021
- w:themeColor="accent3" w:themeTint="99"/>
1022
- <w:right w:val="single" w:sz="4" w:space="0" w:color="C9C9C9" w:themeColor="accent3"
1023
- w:themeTint="99"/>
1024
- <w:insideH w:val="single" w:sz="4" w:space="0" w:color="C9C9C9"
1025
- w:themeColor="accent3" w:themeTint="99"/>
1026
- <w:insideV w:val="single" w:sz="4" w:space="0" w:color="C9C9C9"
1027
- w:themeColor="accent3" w:themeTint="99"/>
1028
- </w:tblBorders>
1029
- <w:tblCellMar>
1030
- <w:top w:w="57" w:type="dxa"/>
1031
- <w:bottom w:w="57" w:type="dxa"/>
1032
- </w:tblCellMar>
1033
- </w:tblPr>
1034
- <w:tcPr>
1035
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
1036
- </w:tcPr>
1037
- <w:tblStylePr w:type="firstRow">
1038
- <w:rPr>
1039
- <w:b/>
1040
- </w:rPr>
1041
- <w:tblPr/>
1042
- <w:tcPr>
1043
- <w:shd w:val="clear" w:color="auto" w:fill="9CC2E5"/>
1044
- <w:tcMar>
1045
- <w:top w:w="57" w:type="dxa"/>
1046
- <w:left w:w="108" w:type="dxa"/>
1047
- <w:bottom w:w="0" w:type="dxa"/>
1048
- <w:right w:w="108" w:type="dxa"/>
1049
- </w:tcMar>
1050
- </w:tcPr>
1051
- </w:tblStylePr>
1052
- </w:style>
1053
- <w:style w:type="paragraph" w:styleId="Quote">
1054
- <w:name w:val="Quote"/>
1055
- <w:basedOn w:val="Normal"/>
1056
- <w:next w:val="Normal"/>
1057
- <w:link w:val="QuoteChar"/>
1058
- <w:uiPriority w:val="29"/>
1059
- <w:qFormat/>
1060
- <w:rsid w:val="00A133DC"/>
1061
- <w:pPr>
1062
- <w:spacing w:before="200" w:after="160"/>
1063
- <w:ind w:left="864" w:right="864"/>
1064
- <w:jc w:val="center"/>
1065
- </w:pPr>
1066
- <w:rPr>
1067
- <w:i/>
1068
- <w:iCs/>
1069
- <w:color w:val="404040"/>
1070
- </w:rPr>
1071
- </w:style>
1072
- <w:style w:type="character" w:customStyle="1" w:styleId="QuoteChar">
1073
- <w:name w:val="Quote Char"/>
1074
- <w:basedOn w:val="DefaultParagraphFont"/>
1075
- <w:link w:val="Quote"/>
1076
- <w:uiPriority w:val="29"/>
1077
- <w:rsid w:val="00A133DC"/>
1078
- <w:rPr>
1079
- <w:i/>
1080
- <w:iCs/>
1081
- <w:color w:val="404040"/>
1082
- </w:rPr>
1083
- </w:style>
1084
- </w:styles>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:styles
3
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
4
+ xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
5
+ xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
6
+ xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
7
+ xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
8
+ xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
9
+ xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
10
+ xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
11
+ xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash"
12
+ xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
13
+ mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh">
14
+ <w:docDefaults>
15
+ <w:rPrDefault>
16
+ <w:rPr>
17
+ <w:rFonts
18
+ w:ascii="Arial"
19
+ w:eastAsia="Arial"
20
+ w:hAnsi="Arial"
21
+ w:cs="Arial"/>
22
+ <w:sz w:val="22"/>
23
+ <w:szCs w:val="22"/>
24
+ <w:lang
25
+ w:val="en"
26
+ w:eastAsia="en-GB"
27
+ w:bidi="ar-SA"/>
28
+ </w:rPr>
29
+ </w:rPrDefault>
30
+ <w:pPrDefault>
31
+ <w:pPr>
32
+ <w:spacing
33
+ w:line="276"
34
+ w:lineRule="auto"/>
35
+ </w:pPr>
36
+ </w:pPrDefault>
37
+ </w:docDefaults>
38
+ <w:latentStyles
39
+ w:defLockedState="0"
40
+ w:defUIPriority="99"
41
+ w:defSemiHidden="0"
42
+ w:defUnhideWhenUsed="0"
43
+ w:defQFormat="0"
44
+ w:count="376">
45
+ <w:lsdException
46
+ w:name="Normal"
47
+ w:uiPriority="0"
48
+ w:qFormat="1"/>
49
+ <w:lsdException
50
+ w:name="heading 1"
51
+ w:uiPriority="9"
52
+ w:qFormat="1"/>
53
+ <w:lsdException
54
+ w:name="heading 2"
55
+ w:semiHidden="1"
56
+ w:uiPriority="9"
57
+ w:unhideWhenUsed="1"
58
+ w:qFormat="1"/>
59
+ <w:lsdException
60
+ w:name="heading 3"
61
+ w:semiHidden="1"
62
+ w:uiPriority="9"
63
+ w:unhideWhenUsed="1"
64
+ w:qFormat="1"/>
65
+ <w:lsdException
66
+ w:name="heading 4"
67
+ w:semiHidden="1"
68
+ w:uiPriority="9"
69
+ w:unhideWhenUsed="1"
70
+ w:qFormat="1"/>
71
+ <w:lsdException
72
+ w:name="heading 5"
73
+ w:semiHidden="1"
74
+ w:uiPriority="9"
75
+ w:unhideWhenUsed="1"
76
+ w:qFormat="1"/>
77
+ <w:lsdException
78
+ w:name="heading 6"
79
+ w:semiHidden="1"
80
+ w:uiPriority="9"
81
+ w:unhideWhenUsed="1"
82
+ w:qFormat="1"/>
83
+ <w:lsdException
84
+ w:name="heading 7"
85
+ w:semiHidden="1"
86
+ w:uiPriority="9"
87
+ w:unhideWhenUsed="1"
88
+ w:qFormat="1"/>
89
+ <w:lsdException
90
+ w:name="heading 8"
91
+ w:semiHidden="1"
92
+ w:uiPriority="9"
93
+ w:unhideWhenUsed="1"
94
+ w:qFormat="1"/>
95
+ <w:lsdException
96
+ w:name="heading 9"
97
+ w:semiHidden="1"
98
+ w:uiPriority="9"
99
+ w:unhideWhenUsed="1"
100
+ w:qFormat="1"/>
101
+ <w:lsdException
102
+ w:name="index 1"
103
+ w:semiHidden="1"
104
+ w:unhideWhenUsed="1"/>
105
+ <w:lsdException
106
+ w:name="index 2"
107
+ w:semiHidden="1"
108
+ w:unhideWhenUsed="1"/>
109
+ <w:lsdException
110
+ w:name="index 3"
111
+ w:semiHidden="1"
112
+ w:unhideWhenUsed="1"/>
113
+ <w:lsdException
114
+ w:name="index 4"
115
+ w:semiHidden="1"
116
+ w:unhideWhenUsed="1"/>
117
+ <w:lsdException
118
+ w:name="index 5"
119
+ w:semiHidden="1"
120
+ w:unhideWhenUsed="1"/>
121
+ <w:lsdException
122
+ w:name="index 6"
123
+ w:semiHidden="1"
124
+ w:unhideWhenUsed="1"/>
125
+ <w:lsdException
126
+ w:name="index 7"
127
+ w:semiHidden="1"
128
+ w:unhideWhenUsed="1"/>
129
+ <w:lsdException
130
+ w:name="index 8"
131
+ w:semiHidden="1"
132
+ w:unhideWhenUsed="1"/>
133
+ <w:lsdException
134
+ w:name="index 9"
135
+ w:semiHidden="1"
136
+ w:unhideWhenUsed="1"/>
137
+ <w:lsdException
138
+ w:name="toc 1"
139
+ w:semiHidden="1"
140
+ w:uiPriority="39"
141
+ w:unhideWhenUsed="1"/>
142
+ <w:lsdException
143
+ w:name="toc 2"
144
+ w:semiHidden="1"
145
+ w:uiPriority="39"
146
+ w:unhideWhenUsed="1"/>
147
+ <w:lsdException
148
+ w:name="toc 3"
149
+ w:semiHidden="1"
150
+ w:uiPriority="39"
151
+ w:unhideWhenUsed="1"/>
152
+ <w:lsdException
153
+ w:name="toc 4"
154
+ w:semiHidden="1"
155
+ w:uiPriority="39"
156
+ w:unhideWhenUsed="1"/>
157
+ <w:lsdException
158
+ w:name="toc 5"
159
+ w:semiHidden="1"
160
+ w:uiPriority="39"
161
+ w:unhideWhenUsed="1"/>
162
+ <w:lsdException
163
+ w:name="toc 6"
164
+ w:semiHidden="1"
165
+ w:uiPriority="39"
166
+ w:unhideWhenUsed="1"/>
167
+ <w:lsdException
168
+ w:name="toc 7"
169
+ w:semiHidden="1"
170
+ w:uiPriority="39"
171
+ w:unhideWhenUsed="1"/>
172
+ <w:lsdException
173
+ w:name="toc 8"
174
+ w:semiHidden="1"
175
+ w:uiPriority="39"
176
+ w:unhideWhenUsed="1"/>
177
+ <w:lsdException
178
+ w:name="toc 9"
179
+ w:semiHidden="1"
180
+ w:uiPriority="39"
181
+ w:unhideWhenUsed="1"/>
182
+ <w:lsdException
183
+ w:name="Normal Indent"
184
+ w:semiHidden="1"
185
+ w:unhideWhenUsed="1"/>
186
+ <w:lsdException
187
+ w:name="footnote text"
188
+ w:semiHidden="1"
189
+ w:unhideWhenUsed="1"/>
190
+ <w:lsdException
191
+ w:name="annotation text"
192
+ w:semiHidden="1"
193
+ w:unhideWhenUsed="1"/>
194
+ <w:lsdException
195
+ w:name="header"
196
+ w:semiHidden="1"
197
+ w:unhideWhenUsed="1"/>
198
+ <w:lsdException
199
+ w:name="footer"
200
+ w:semiHidden="1"
201
+ w:unhideWhenUsed="1"/>
202
+ <w:lsdException
203
+ w:name="index heading"
204
+ w:semiHidden="1"
205
+ w:unhideWhenUsed="1"/>
206
+ <w:lsdException
207
+ w:name="caption"
208
+ w:semiHidden="1"
209
+ w:uiPriority="35"
210
+ w:unhideWhenUsed="1"
211
+ w:qFormat="1"/>
212
+ <w:lsdException
213
+ w:name="table of figures"
214
+ w:semiHidden="1"
215
+ w:unhideWhenUsed="1"/>
216
+ <w:lsdException
217
+ w:name="envelope address"
218
+ w:semiHidden="1"
219
+ w:unhideWhenUsed="1"/>
220
+ <w:lsdException
221
+ w:name="envelope return"
222
+ w:semiHidden="1"
223
+ w:unhideWhenUsed="1"/>
224
+ <w:lsdException
225
+ w:name="footnote reference"
226
+ w:semiHidden="1"
227
+ w:unhideWhenUsed="1"/>
228
+ <w:lsdException
229
+ w:name="annotation reference"
230
+ w:semiHidden="1"
231
+ w:unhideWhenUsed="1"/>
232
+ <w:lsdException
233
+ w:name="line number"
234
+ w:semiHidden="1"
235
+ w:unhideWhenUsed="1"/>
236
+ <w:lsdException
237
+ w:name="page number"
238
+ w:semiHidden="1"
239
+ w:unhideWhenUsed="1"/>
240
+ <w:lsdException
241
+ w:name="endnote reference"
242
+ w:semiHidden="1"
243
+ w:unhideWhenUsed="1"/>
244
+ <w:lsdException
245
+ w:name="endnote text"
246
+ w:semiHidden="1"
247
+ w:unhideWhenUsed="1"/>
248
+ <w:lsdException
249
+ w:name="table of authorities"
250
+ w:semiHidden="1"
251
+ w:unhideWhenUsed="1"/>
252
+ <w:lsdException
253
+ w:name="macro"
254
+ w:semiHidden="1"
255
+ w:unhideWhenUsed="1"/>
256
+ <w:lsdException
257
+ w:name="toa heading"
258
+ w:semiHidden="1"
259
+ w:unhideWhenUsed="1"/>
260
+ <w:lsdException
261
+ w:name="List"
262
+ w:semiHidden="1"
263
+ w:unhideWhenUsed="1"/>
264
+ <w:lsdException
265
+ w:name="List Bullet"
266
+ w:semiHidden="1"
267
+ w:unhideWhenUsed="1"/>
268
+ <w:lsdException
269
+ w:name="List Number"
270
+ w:semiHidden="1"
271
+ w:unhideWhenUsed="1"/>
272
+ <w:lsdException
273
+ w:name="List 2"
274
+ w:semiHidden="1"
275
+ w:unhideWhenUsed="1"/>
276
+ <w:lsdException
277
+ w:name="List 3"
278
+ w:semiHidden="1"
279
+ w:unhideWhenUsed="1"/>
280
+ <w:lsdException
281
+ w:name="List 4"
282
+ w:semiHidden="1"
283
+ w:unhideWhenUsed="1"/>
284
+ <w:lsdException
285
+ w:name="List 5"
286
+ w:semiHidden="1"
287
+ w:unhideWhenUsed="1"/>
288
+ <w:lsdException
289
+ w:name="List Bullet 2"
290
+ w:semiHidden="1"
291
+ w:unhideWhenUsed="1"/>
292
+ <w:lsdException
293
+ w:name="List Bullet 3"
294
+ w:semiHidden="1"
295
+ w:unhideWhenUsed="1"/>
296
+ <w:lsdException
297
+ w:name="List Bullet 4"
298
+ w:semiHidden="1"
299
+ w:unhideWhenUsed="1"/>
300
+ <w:lsdException
301
+ w:name="List Bullet 5"
302
+ w:semiHidden="1"
303
+ w:unhideWhenUsed="1"/>
304
+ <w:lsdException
305
+ w:name="List Number 2"
306
+ w:semiHidden="1"
307
+ w:unhideWhenUsed="1"/>
308
+ <w:lsdException
309
+ w:name="List Number 3"
310
+ w:semiHidden="1"
311
+ w:unhideWhenUsed="1"/>
312
+ <w:lsdException
313
+ w:name="List Number 4"
314
+ w:semiHidden="1"
315
+ w:unhideWhenUsed="1"/>
316
+ <w:lsdException
317
+ w:name="List Number 5"
318
+ w:semiHidden="1"
319
+ w:unhideWhenUsed="1"/>
320
+ <w:lsdException
321
+ w:name="Title"
322
+ w:uiPriority="10"
323
+ w:qFormat="1"/>
324
+ <w:lsdException
325
+ w:name="Closing"
326
+ w:semiHidden="1"
327
+ w:unhideWhenUsed="1"/>
328
+ <w:lsdException
329
+ w:name="Signature"
330
+ w:semiHidden="1"
331
+ w:unhideWhenUsed="1"/>
332
+ <w:lsdException
333
+ w:name="Default Paragraph Font"
334
+ w:semiHidden="1"
335
+ w:uiPriority="1"
336
+ w:unhideWhenUsed="1"/>
337
+ <w:lsdException
338
+ w:name="Body Text"
339
+ w:semiHidden="1"
340
+ w:unhideWhenUsed="1"/>
341
+ <w:lsdException
342
+ w:name="Body Text Indent"
343
+ w:semiHidden="1"
344
+ w:unhideWhenUsed="1"/>
345
+ <w:lsdException
346
+ w:name="List Continue"
347
+ w:semiHidden="1"
348
+ w:unhideWhenUsed="1"/>
349
+ <w:lsdException
350
+ w:name="List Continue 2"
351
+ w:semiHidden="1"
352
+ w:unhideWhenUsed="1"/>
353
+ <w:lsdException
354
+ w:name="List Continue 3"
355
+ w:semiHidden="1"
356
+ w:unhideWhenUsed="1"/>
357
+ <w:lsdException
358
+ w:name="List Continue 4"
359
+ w:semiHidden="1"
360
+ w:unhideWhenUsed="1"/>
361
+ <w:lsdException
362
+ w:name="List Continue 5"
363
+ w:semiHidden="1"
364
+ w:unhideWhenUsed="1"/>
365
+ <w:lsdException
366
+ w:name="Message Header"
367
+ w:semiHidden="1"
368
+ w:unhideWhenUsed="1"/>
369
+ <w:lsdException
370
+ w:name="Subtitle"
371
+ w:uiPriority="11"
372
+ w:qFormat="1"/>
373
+ <w:lsdException
374
+ w:name="Salutation"
375
+ w:semiHidden="1"
376
+ w:unhideWhenUsed="1"/>
377
+ <w:lsdException
378
+ w:name="Date"
379
+ w:semiHidden="1"
380
+ w:unhideWhenUsed="1"/>
381
+ <w:lsdException
382
+ w:name="Body Text First Indent"
383
+ w:semiHidden="1"
384
+ w:unhideWhenUsed="1"/>
385
+ <w:lsdException
386
+ w:name="Body Text First Indent 2"
387
+ w:semiHidden="1"
388
+ w:unhideWhenUsed="1"/>
389
+ <w:lsdException
390
+ w:name="Note Heading"
391
+ w:semiHidden="1"
392
+ w:unhideWhenUsed="1"/>
393
+ <w:lsdException
394
+ w:name="Body Text 2"
395
+ w:semiHidden="1"
396
+ w:unhideWhenUsed="1"/>
397
+ <w:lsdException
398
+ w:name="Body Text 3"
399
+ w:semiHidden="1"
400
+ w:unhideWhenUsed="1"/>
401
+ <w:lsdException
402
+ w:name="Body Text Indent 2"
403
+ w:semiHidden="1"
404
+ w:unhideWhenUsed="1"/>
405
+ <w:lsdException
406
+ w:name="Body Text Indent 3"
407
+ w:semiHidden="1"
408
+ w:unhideWhenUsed="1"/>
409
+ <w:lsdException
410
+ w:name="Block Text"
411
+ w:semiHidden="1"
412
+ w:unhideWhenUsed="1"/>
413
+ <w:lsdException
414
+ w:name="Hyperlink"
415
+ w:semiHidden="1"
416
+ w:unhideWhenUsed="1"/>
417
+ <w:lsdException
418
+ w:name="FollowedHyperlink"
419
+ w:semiHidden="1"
420
+ w:unhideWhenUsed="1"/>
421
+ <w:lsdException
422
+ w:name="Strong"
423
+ w:uiPriority="22"
424
+ w:qFormat="1"/>
425
+ <w:lsdException
426
+ w:name="Emphasis"
427
+ w:uiPriority="20"
428
+ w:qFormat="1"/>
429
+ <w:lsdException
430
+ w:name="Document Map"
431
+ w:semiHidden="1"
432
+ w:unhideWhenUsed="1"/>
433
+ <w:lsdException
434
+ w:name="Plain Text"
435
+ w:semiHidden="1"
436
+ w:unhideWhenUsed="1"/>
437
+ <w:lsdException
438
+ w:name="E-mail Signature"
439
+ w:semiHidden="1"
440
+ w:unhideWhenUsed="1"/>
441
+ <w:lsdException
442
+ w:name="HTML Top of Form"
443
+ w:semiHidden="1"
444
+ w:unhideWhenUsed="1"/>
445
+ <w:lsdException
446
+ w:name="HTML Bottom of Form"
447
+ w:semiHidden="1"
448
+ w:unhideWhenUsed="1"/>
449
+ <w:lsdException
450
+ w:name="Normal (Web)"
451
+ w:semiHidden="1"
452
+ w:unhideWhenUsed="1"/>
453
+ <w:lsdException
454
+ w:name="HTML Acronym"
455
+ w:semiHidden="1"
456
+ w:unhideWhenUsed="1"/>
457
+ <w:lsdException
458
+ w:name="HTML Address"
459
+ w:semiHidden="1"
460
+ w:unhideWhenUsed="1"/>
461
+ <w:lsdException
462
+ w:name="HTML Cite"
463
+ w:semiHidden="1"
464
+ w:unhideWhenUsed="1"/>
465
+ <w:lsdException
466
+ w:name="HTML Code"
467
+ w:semiHidden="1"
468
+ w:unhideWhenUsed="1"/>
469
+ <w:lsdException
470
+ w:name="HTML Definition"
471
+ w:semiHidden="1"
472
+ w:unhideWhenUsed="1"/>
473
+ <w:lsdException
474
+ w:name="HTML Keyboard"
475
+ w:semiHidden="1"
476
+ w:unhideWhenUsed="1"/>
477
+ <w:lsdException
478
+ w:name="HTML Preformatted"
479
+ w:semiHidden="1"
480
+ w:unhideWhenUsed="1"/>
481
+ <w:lsdException
482
+ w:name="HTML Sample"
483
+ w:semiHidden="1"
484
+ w:unhideWhenUsed="1"/>
485
+ <w:lsdException
486
+ w:name="HTML Typewriter"
487
+ w:semiHidden="1"
488
+ w:unhideWhenUsed="1"/>
489
+ <w:lsdException
490
+ w:name="HTML Variable"
491
+ w:semiHidden="1"
492
+ w:unhideWhenUsed="1"/>
493
+ <w:lsdException
494
+ w:name="Normal Table"
495
+ w:semiHidden="1"
496
+ w:unhideWhenUsed="1"/>
497
+ <w:lsdException
498
+ w:name="annotation subject"
499
+ w:semiHidden="1"
500
+ w:unhideWhenUsed="1"/>
501
+ <w:lsdException
502
+ w:name="No List"
503
+ w:semiHidden="1"
504
+ w:unhideWhenUsed="1"/>
505
+ <w:lsdException
506
+ w:name="Outline List 1"
507
+ w:semiHidden="1"
508
+ w:unhideWhenUsed="1"/>
509
+ <w:lsdException
510
+ w:name="Outline List 2"
511
+ w:semiHidden="1"
512
+ w:unhideWhenUsed="1"/>
513
+ <w:lsdException
514
+ w:name="Outline List 3"
515
+ w:semiHidden="1"
516
+ w:unhideWhenUsed="1"/>
517
+ <w:lsdException
518
+ w:name="Table Simple 1"
519
+ w:semiHidden="1"
520
+ w:unhideWhenUsed="1"/>
521
+ <w:lsdException
522
+ w:name="Table Simple 2"
523
+ w:semiHidden="1"
524
+ w:unhideWhenUsed="1"/>
525
+ <w:lsdException
526
+ w:name="Table Simple 3"
527
+ w:semiHidden="1"
528
+ w:unhideWhenUsed="1"/>
529
+ <w:lsdException
530
+ w:name="Table Classic 1"
531
+ w:semiHidden="1"
532
+ w:unhideWhenUsed="1"/>
533
+ <w:lsdException
534
+ w:name="Table Classic 2"
535
+ w:semiHidden="1"
536
+ w:unhideWhenUsed="1"/>
537
+ <w:lsdException
538
+ w:name="Table Classic 3"
539
+ w:semiHidden="1"
540
+ w:unhideWhenUsed="1"/>
541
+ <w:lsdException
542
+ w:name="Table Classic 4"
543
+ w:semiHidden="1"
544
+ w:unhideWhenUsed="1"/>
545
+ <w:lsdException
546
+ w:name="Table Colorful 1"
547
+ w:semiHidden="1"
548
+ w:unhideWhenUsed="1"/>
549
+ <w:lsdException
550
+ w:name="Table Colorful 2"
551
+ w:semiHidden="1"
552
+ w:unhideWhenUsed="1"/>
553
+ <w:lsdException
554
+ w:name="Table Colorful 3"
555
+ w:semiHidden="1"
556
+ w:unhideWhenUsed="1"/>
557
+ <w:lsdException
558
+ w:name="Table Columns 1"
559
+ w:semiHidden="1"
560
+ w:unhideWhenUsed="1"/>
561
+ <w:lsdException
562
+ w:name="Table Columns 2"
563
+ w:semiHidden="1"
564
+ w:unhideWhenUsed="1"/>
565
+ <w:lsdException
566
+ w:name="Table Columns 3"
567
+ w:semiHidden="1"
568
+ w:unhideWhenUsed="1"/>
569
+ <w:lsdException
570
+ w:name="Table Columns 4"
571
+ w:semiHidden="1"
572
+ w:unhideWhenUsed="1"/>
573
+ <w:lsdException
574
+ w:name="Table Columns 5"
575
+ w:semiHidden="1"
576
+ w:unhideWhenUsed="1"/>
577
+ <w:lsdException
578
+ w:name="Table Grid 1"
579
+ w:semiHidden="1"
580
+ w:unhideWhenUsed="1"/>
581
+ <w:lsdException
582
+ w:name="Table Grid 2"
583
+ w:semiHidden="1"
584
+ w:unhideWhenUsed="1"/>
585
+ <w:lsdException
586
+ w:name="Table Grid 3"
587
+ w:semiHidden="1"
588
+ w:unhideWhenUsed="1"/>
589
+ <w:lsdException
590
+ w:name="Table Grid 4"
591
+ w:semiHidden="1"
592
+ w:unhideWhenUsed="1"/>
593
+ <w:lsdException
594
+ w:name="Table Grid 5"
595
+ w:semiHidden="1"
596
+ w:unhideWhenUsed="1"/>
597
+ <w:lsdException
598
+ w:name="Table Grid 6"
599
+ w:semiHidden="1"
600
+ w:unhideWhenUsed="1"/>
601
+ <w:lsdException
602
+ w:name="Table Grid 7"
603
+ w:semiHidden="1"
604
+ w:unhideWhenUsed="1"/>
605
+ <w:lsdException
606
+ w:name="Table Grid 8"
607
+ w:semiHidden="1"
608
+ w:unhideWhenUsed="1"/>
609
+ <w:lsdException
610
+ w:name="Table List 1"
611
+ w:semiHidden="1"
612
+ w:unhideWhenUsed="1"/>
613
+ <w:lsdException
614
+ w:name="Table List 2"
615
+ w:semiHidden="1"
616
+ w:unhideWhenUsed="1"/>
617
+ <w:lsdException
618
+ w:name="Table List 3"
619
+ w:semiHidden="1"
620
+ w:unhideWhenUsed="1"/>
621
+ <w:lsdException
622
+ w:name="Table List 4"
623
+ w:semiHidden="1"
624
+ w:unhideWhenUsed="1"/>
625
+ <w:lsdException
626
+ w:name="Table List 5"
627
+ w:semiHidden="1"
628
+ w:unhideWhenUsed="1"/>
629
+ <w:lsdException
630
+ w:name="Table List 6"
631
+ w:semiHidden="1"
632
+ w:unhideWhenUsed="1"/>
633
+ <w:lsdException
634
+ w:name="Table List 7"
635
+ w:semiHidden="1"
636
+ w:unhideWhenUsed="1"/>
637
+ <w:lsdException
638
+ w:name="Table List 8"
639
+ w:semiHidden="1"
640
+ w:unhideWhenUsed="1"/>
641
+ <w:lsdException
642
+ w:name="Table 3D effects 1"
643
+ w:semiHidden="1"
644
+ w:unhideWhenUsed="1"/>
645
+ <w:lsdException
646
+ w:name="Table 3D effects 2"
647
+ w:semiHidden="1"
648
+ w:unhideWhenUsed="1"/>
649
+ <w:lsdException
650
+ w:name="Table 3D effects 3"
651
+ w:semiHidden="1"
652
+ w:unhideWhenUsed="1"/>
653
+ <w:lsdException
654
+ w:name="Table Contemporary"
655
+ w:semiHidden="1"
656
+ w:unhideWhenUsed="1"/>
657
+ <w:lsdException
658
+ w:name="Table Elegant"
659
+ w:semiHidden="1"
660
+ w:unhideWhenUsed="1"/>
661
+ <w:lsdException
662
+ w:name="Table Professional"
663
+ w:semiHidden="1"
664
+ w:unhideWhenUsed="1"/>
665
+ <w:lsdException
666
+ w:name="Table Subtle 1"
667
+ w:semiHidden="1"
668
+ w:unhideWhenUsed="1"/>
669
+ <w:lsdException
670
+ w:name="Table Subtle 2"
671
+ w:semiHidden="1"
672
+ w:unhideWhenUsed="1"/>
673
+ <w:lsdException
674
+ w:name="Table Web 1"
675
+ w:semiHidden="1"
676
+ w:unhideWhenUsed="1"/>
677
+ <w:lsdException
678
+ w:name="Table Web 2"
679
+ w:semiHidden="1"
680
+ w:unhideWhenUsed="1"/>
681
+ <w:lsdException
682
+ w:name="Table Web 3"
683
+ w:semiHidden="1"
684
+ w:unhideWhenUsed="1"/>
685
+ <w:lsdException
686
+ w:name="Balloon Text"
687
+ w:semiHidden="1"
688
+ w:unhideWhenUsed="1"/>
689
+ <w:lsdException
690
+ w:name="Table Grid"
691
+ w:uiPriority="39"/>
692
+ <w:lsdException
693
+ w:name="Table Theme"
694
+ w:semiHidden="1"
695
+ w:unhideWhenUsed="1"/>
696
+ <w:lsdException
697
+ w:name="Placeholder Text"
698
+ w:semiHidden="1"/>
699
+ <w:lsdException
700
+ w:name="No Spacing"
701
+ w:uiPriority="1"
702
+ w:qFormat="1"/>
703
+ <w:lsdException
704
+ w:name="Light Shading"
705
+ w:uiPriority="60"/>
706
+ <w:lsdException
707
+ w:name="Light List"
708
+ w:uiPriority="61"/>
709
+ <w:lsdException
710
+ w:name="Light Grid"
711
+ w:uiPriority="62"/>
712
+ <w:lsdException
713
+ w:name="Medium Shading 1"
714
+ w:uiPriority="63"/>
715
+ <w:lsdException
716
+ w:name="Medium Shading 2"
717
+ w:uiPriority="64"/>
718
+ <w:lsdException
719
+ w:name="Medium List 1"
720
+ w:uiPriority="65"/>
721
+ <w:lsdException
722
+ w:name="Medium List 2"
723
+ w:uiPriority="66"/>
724
+ <w:lsdException
725
+ w:name="Medium Grid 1"
726
+ w:uiPriority="67"/>
727
+ <w:lsdException
728
+ w:name="Medium Grid 2"
729
+ w:uiPriority="68"/>
730
+ <w:lsdException
731
+ w:name="Medium Grid 3"
732
+ w:uiPriority="69"/>
733
+ <w:lsdException
734
+ w:name="Dark List"
735
+ w:uiPriority="70"/>
736
+ <w:lsdException
737
+ w:name="Colorful Shading"
738
+ w:uiPriority="71"/>
739
+ <w:lsdException
740
+ w:name="Colorful List"
741
+ w:uiPriority="72"/>
742
+ <w:lsdException
743
+ w:name="Colorful Grid"
744
+ w:uiPriority="73"/>
745
+ <w:lsdException
746
+ w:name="Light Shading Accent 1"
747
+ w:uiPriority="60"/>
748
+ <w:lsdException
749
+ w:name="Light List Accent 1"
750
+ w:uiPriority="61"/>
751
+ <w:lsdException
752
+ w:name="Light Grid Accent 1"
753
+ w:uiPriority="62"/>
754
+ <w:lsdException
755
+ w:name="Medium Shading 1 Accent 1"
756
+ w:uiPriority="63"/>
757
+ <w:lsdException
758
+ w:name="Medium Shading 2 Accent 1"
759
+ w:uiPriority="64"/>
760
+ <w:lsdException
761
+ w:name="Medium List 1 Accent 1"
762
+ w:uiPriority="65"/>
763
+ <w:lsdException
764
+ w:name="Revision"
765
+ w:semiHidden="1"/>
766
+ <w:lsdException
767
+ w:name="List Paragraph"
768
+ w:uiPriority="34"
769
+ w:qFormat="1"/>
770
+ <w:lsdException
771
+ w:name="Quote"
772
+ w:uiPriority="29"
773
+ w:qFormat="1"/>
774
+ <w:lsdException
775
+ w:name="Intense Quote"
776
+ w:uiPriority="30"
777
+ w:qFormat="1"/>
778
+ <w:lsdException
779
+ w:name="Medium List 2 Accent 1"
780
+ w:uiPriority="66"/>
781
+ <w:lsdException
782
+ w:name="Medium Grid 1 Accent 1"
783
+ w:uiPriority="67"/>
784
+ <w:lsdException
785
+ w:name="Medium Grid 2 Accent 1"
786
+ w:uiPriority="68"/>
787
+ <w:lsdException
788
+ w:name="Medium Grid 3 Accent 1"
789
+ w:uiPriority="69"/>
790
+ <w:lsdException
791
+ w:name="Dark List Accent 1"
792
+ w:uiPriority="70"/>
793
+ <w:lsdException
794
+ w:name="Colorful Shading Accent 1"
795
+ w:uiPriority="71"/>
796
+ <w:lsdException
797
+ w:name="Colorful List Accent 1"
798
+ w:uiPriority="72"/>
799
+ <w:lsdException
800
+ w:name="Colorful Grid Accent 1"
801
+ w:uiPriority="73"/>
802
+ <w:lsdException
803
+ w:name="Light Shading Accent 2"
804
+ w:uiPriority="60"/>
805
+ <w:lsdException
806
+ w:name="Light List Accent 2"
807
+ w:uiPriority="61"/>
808
+ <w:lsdException
809
+ w:name="Light Grid Accent 2"
810
+ w:uiPriority="62"/>
811
+ <w:lsdException
812
+ w:name="Medium Shading 1 Accent 2"
813
+ w:uiPriority="63"/>
814
+ <w:lsdException
815
+ w:name="Medium Shading 2 Accent 2"
816
+ w:uiPriority="64"/>
817
+ <w:lsdException
818
+ w:name="Medium List 1 Accent 2"
819
+ w:uiPriority="65"/>
820
+ <w:lsdException
821
+ w:name="Medium List 2 Accent 2"
822
+ w:uiPriority="66"/>
823
+ <w:lsdException
824
+ w:name="Medium Grid 1 Accent 2"
825
+ w:uiPriority="67"/>
826
+ <w:lsdException
827
+ w:name="Medium Grid 2 Accent 2"
828
+ w:uiPriority="68"/>
829
+ <w:lsdException
830
+ w:name="Medium Grid 3 Accent 2"
831
+ w:uiPriority="69"/>
832
+ <w:lsdException
833
+ w:name="Dark List Accent 2"
834
+ w:uiPriority="70"/>
835
+ <w:lsdException
836
+ w:name="Colorful Shading Accent 2"
837
+ w:uiPriority="71"/>
838
+ <w:lsdException
839
+ w:name="Colorful List Accent 2"
840
+ w:uiPriority="72"/>
841
+ <w:lsdException
842
+ w:name="Colorful Grid Accent 2"
843
+ w:uiPriority="73"/>
844
+ <w:lsdException
845
+ w:name="Light Shading Accent 3"
846
+ w:uiPriority="60"/>
847
+ <w:lsdException
848
+ w:name="Light List Accent 3"
849
+ w:uiPriority="61"/>
850
+ <w:lsdException
851
+ w:name="Light Grid Accent 3"
852
+ w:uiPriority="62"/>
853
+ <w:lsdException
854
+ w:name="Medium Shading 1 Accent 3"
855
+ w:uiPriority="63"/>
856
+ <w:lsdException
857
+ w:name="Medium Shading 2 Accent 3"
858
+ w:uiPriority="64"/>
859
+ <w:lsdException
860
+ w:name="Medium List 1 Accent 3"
861
+ w:uiPriority="65"/>
862
+ <w:lsdException
863
+ w:name="Medium List 2 Accent 3"
864
+ w:uiPriority="66"/>
865
+ <w:lsdException
866
+ w:name="Medium Grid 1 Accent 3"
867
+ w:uiPriority="67"/>
868
+ <w:lsdException
869
+ w:name="Medium Grid 2 Accent 3"
870
+ w:uiPriority="68"/>
871
+ <w:lsdException
872
+ w:name="Medium Grid 3 Accent 3"
873
+ w:uiPriority="69"/>
874
+ <w:lsdException
875
+ w:name="Dark List Accent 3"
876
+ w:uiPriority="70"/>
877
+ <w:lsdException
878
+ w:name="Colorful Shading Accent 3"
879
+ w:uiPriority="71"/>
880
+ <w:lsdException
881
+ w:name="Colorful List Accent 3"
882
+ w:uiPriority="72"/>
883
+ <w:lsdException
884
+ w:name="Colorful Grid Accent 3"
885
+ w:uiPriority="73"/>
886
+ <w:lsdException
887
+ w:name="Light Shading Accent 4"
888
+ w:uiPriority="60"/>
889
+ <w:lsdException
890
+ w:name="Light List Accent 4"
891
+ w:uiPriority="61"/>
892
+ <w:lsdException
893
+ w:name="Light Grid Accent 4"
894
+ w:uiPriority="62"/>
895
+ <w:lsdException
896
+ w:name="Medium Shading 1 Accent 4"
897
+ w:uiPriority="63"/>
898
+ <w:lsdException
899
+ w:name="Medium Shading 2 Accent 4"
900
+ w:uiPriority="64"/>
901
+ <w:lsdException
902
+ w:name="Medium List 1 Accent 4"
903
+ w:uiPriority="65"/>
904
+ <w:lsdException
905
+ w:name="Medium List 2 Accent 4"
906
+ w:uiPriority="66"/>
907
+ <w:lsdException
908
+ w:name="Medium Grid 1 Accent 4"
909
+ w:uiPriority="67"/>
910
+ <w:lsdException
911
+ w:name="Medium Grid 2 Accent 4"
912
+ w:uiPriority="68"/>
913
+ <w:lsdException
914
+ w:name="Medium Grid 3 Accent 4"
915
+ w:uiPriority="69"/>
916
+ <w:lsdException
917
+ w:name="Dark List Accent 4"
918
+ w:uiPriority="70"/>
919
+ <w:lsdException
920
+ w:name="Colorful Shading Accent 4"
921
+ w:uiPriority="71"/>
922
+ <w:lsdException
923
+ w:name="Colorful List Accent 4"
924
+ w:uiPriority="72"/>
925
+ <w:lsdException
926
+ w:name="Colorful Grid Accent 4"
927
+ w:uiPriority="73"/>
928
+ <w:lsdException
929
+ w:name="Light Shading Accent 5"
930
+ w:uiPriority="60"/>
931
+ <w:lsdException
932
+ w:name="Light List Accent 5"
933
+ w:uiPriority="61"/>
934
+ <w:lsdException
935
+ w:name="Light Grid Accent 5"
936
+ w:uiPriority="62"/>
937
+ <w:lsdException
938
+ w:name="Medium Shading 1 Accent 5"
939
+ w:uiPriority="63"/>
940
+ <w:lsdException
941
+ w:name="Medium Shading 2 Accent 5"
942
+ w:uiPriority="64"/>
943
+ <w:lsdException
944
+ w:name="Medium List 1 Accent 5"
945
+ w:uiPriority="65"/>
946
+ <w:lsdException
947
+ w:name="Medium List 2 Accent 5"
948
+ w:uiPriority="66"/>
949
+ <w:lsdException
950
+ w:name="Medium Grid 1 Accent 5"
951
+ w:uiPriority="67"/>
952
+ <w:lsdException
953
+ w:name="Medium Grid 2 Accent 5"
954
+ w:uiPriority="68"/>
955
+ <w:lsdException
956
+ w:name="Medium Grid 3 Accent 5"
957
+ w:uiPriority="69"/>
958
+ <w:lsdException
959
+ w:name="Dark List Accent 5"
960
+ w:uiPriority="70"/>
961
+ <w:lsdException
962
+ w:name="Colorful Shading Accent 5"
963
+ w:uiPriority="71"/>
964
+ <w:lsdException
965
+ w:name="Colorful List Accent 5"
966
+ w:uiPriority="72"/>
967
+ <w:lsdException
968
+ w:name="Colorful Grid Accent 5"
969
+ w:uiPriority="73"/>
970
+ <w:lsdException
971
+ w:name="Light Shading Accent 6"
972
+ w:uiPriority="60"/>
973
+ <w:lsdException
974
+ w:name="Light List Accent 6"
975
+ w:uiPriority="61"/>
976
+ <w:lsdException
977
+ w:name="Light Grid Accent 6"
978
+ w:uiPriority="62"/>
979
+ <w:lsdException
980
+ w:name="Medium Shading 1 Accent 6"
981
+ w:uiPriority="63"/>
982
+ <w:lsdException
983
+ w:name="Medium Shading 2 Accent 6"
984
+ w:uiPriority="64"/>
985
+ <w:lsdException
986
+ w:name="Medium List 1 Accent 6"
987
+ w:uiPriority="65"/>
988
+ <w:lsdException
989
+ w:name="Medium List 2 Accent 6"
990
+ w:uiPriority="66"/>
991
+ <w:lsdException
992
+ w:name="Medium Grid 1 Accent 6"
993
+ w:uiPriority="67"/>
994
+ <w:lsdException
995
+ w:name="Medium Grid 2 Accent 6"
996
+ w:uiPriority="68"/>
997
+ <w:lsdException
998
+ w:name="Medium Grid 3 Accent 6"
999
+ w:uiPriority="69"/>
1000
+ <w:lsdException
1001
+ w:name="Dark List Accent 6"
1002
+ w:uiPriority="70"/>
1003
+ <w:lsdException
1004
+ w:name="Colorful Shading Accent 6"
1005
+ w:uiPriority="71"/>
1006
+ <w:lsdException
1007
+ w:name="Colorful List Accent 6"
1008
+ w:uiPriority="72"/>
1009
+ <w:lsdException
1010
+ w:name="Colorful Grid Accent 6"
1011
+ w:uiPriority="73"/>
1012
+ <w:lsdException
1013
+ w:name="Subtle Emphasis"
1014
+ w:uiPriority="19"
1015
+ w:qFormat="1"/>
1016
+ <w:lsdException
1017
+ w:name="Intense Emphasis"
1018
+ w:uiPriority="21"
1019
+ w:qFormat="1"/>
1020
+ <w:lsdException
1021
+ w:name="Subtle Reference"
1022
+ w:uiPriority="31"
1023
+ w:qFormat="1"/>
1024
+ <w:lsdException
1025
+ w:name="Intense Reference"
1026
+ w:uiPriority="32"
1027
+ w:qFormat="1"/>
1028
+ <w:lsdException
1029
+ w:name="Book Title"
1030
+ w:uiPriority="33"
1031
+ w:qFormat="1"/>
1032
+ <w:lsdException
1033
+ w:name="Bibliography"
1034
+ w:semiHidden="1"
1035
+ w:uiPriority="37"
1036
+ w:unhideWhenUsed="1"/>
1037
+ <w:lsdException
1038
+ w:name="TOC Heading"
1039
+ w:semiHidden="1"
1040
+ w:uiPriority="39"
1041
+ w:unhideWhenUsed="1"
1042
+ w:qFormat="1"/>
1043
+ <w:lsdException
1044
+ w:name="Plain Table 1"
1045
+ w:uiPriority="41"/>
1046
+ <w:lsdException
1047
+ w:name="Plain Table 2"
1048
+ w:uiPriority="42"/>
1049
+ <w:lsdException
1050
+ w:name="Plain Table 3"
1051
+ w:uiPriority="43"/>
1052
+ <w:lsdException
1053
+ w:name="Plain Table 4"
1054
+ w:uiPriority="44"/>
1055
+ <w:lsdException
1056
+ w:name="Plain Table 5"
1057
+ w:uiPriority="45"/>
1058
+ <w:lsdException
1059
+ w:name="Grid Table Light"
1060
+ w:uiPriority="40"/>
1061
+ <w:lsdException
1062
+ w:name="Grid Table 1 Light"
1063
+ w:uiPriority="46"/>
1064
+ <w:lsdException
1065
+ w:name="Grid Table 2"
1066
+ w:uiPriority="47"/>
1067
+ <w:lsdException
1068
+ w:name="Grid Table 3"
1069
+ w:uiPriority="48"/>
1070
+ <w:lsdException
1071
+ w:name="Grid Table 4"
1072
+ w:uiPriority="49"/>
1073
+ <w:lsdException
1074
+ w:name="Grid Table 5 Dark"
1075
+ w:uiPriority="50"/>
1076
+ <w:lsdException
1077
+ w:name="Grid Table 6 Colorful"
1078
+ w:uiPriority="51"/>
1079
+ <w:lsdException
1080
+ w:name="Grid Table 7 Colorful"
1081
+ w:uiPriority="52"/>
1082
+ <w:lsdException
1083
+ w:name="Grid Table 1 Light Accent 1"
1084
+ w:uiPriority="46"/>
1085
+ <w:lsdException
1086
+ w:name="Grid Table 2 Accent 1"
1087
+ w:uiPriority="47"/>
1088
+ <w:lsdException
1089
+ w:name="Grid Table 3 Accent 1"
1090
+ w:uiPriority="48"/>
1091
+ <w:lsdException
1092
+ w:name="Grid Table 4 Accent 1"
1093
+ w:uiPriority="49"/>
1094
+ <w:lsdException
1095
+ w:name="Grid Table 5 Dark Accent 1"
1096
+ w:uiPriority="50"/>
1097
+ <w:lsdException
1098
+ w:name="Grid Table 6 Colorful Accent 1"
1099
+ w:uiPriority="51"/>
1100
+ <w:lsdException
1101
+ w:name="Grid Table 7 Colorful Accent 1"
1102
+ w:uiPriority="52"/>
1103
+ <w:lsdException
1104
+ w:name="Grid Table 1 Light Accent 2"
1105
+ w:uiPriority="46"/>
1106
+ <w:lsdException
1107
+ w:name="Grid Table 2 Accent 2"
1108
+ w:uiPriority="47"/>
1109
+ <w:lsdException
1110
+ w:name="Grid Table 3 Accent 2"
1111
+ w:uiPriority="48"/>
1112
+ <w:lsdException
1113
+ w:name="Grid Table 4 Accent 2"
1114
+ w:uiPriority="49"/>
1115
+ <w:lsdException
1116
+ w:name="Grid Table 5 Dark Accent 2"
1117
+ w:uiPriority="50"/>
1118
+ <w:lsdException
1119
+ w:name="Grid Table 6 Colorful Accent 2"
1120
+ w:uiPriority="51"/>
1121
+ <w:lsdException
1122
+ w:name="Grid Table 7 Colorful Accent 2"
1123
+ w:uiPriority="52"/>
1124
+ <w:lsdException
1125
+ w:name="Grid Table 1 Light Accent 3"
1126
+ w:uiPriority="46"/>
1127
+ <w:lsdException
1128
+ w:name="Grid Table 2 Accent 3"
1129
+ w:uiPriority="47"/>
1130
+ <w:lsdException
1131
+ w:name="Grid Table 3 Accent 3"
1132
+ w:uiPriority="48"/>
1133
+ <w:lsdException
1134
+ w:name="Grid Table 4 Accent 3"
1135
+ w:uiPriority="49"/>
1136
+ <w:lsdException
1137
+ w:name="Grid Table 5 Dark Accent 3"
1138
+ w:uiPriority="50"/>
1139
+ <w:lsdException
1140
+ w:name="Grid Table 6 Colorful Accent 3"
1141
+ w:uiPriority="51"/>
1142
+ <w:lsdException
1143
+ w:name="Grid Table 7 Colorful Accent 3"
1144
+ w:uiPriority="52"/>
1145
+ <w:lsdException
1146
+ w:name="Grid Table 1 Light Accent 4"
1147
+ w:uiPriority="46"/>
1148
+ <w:lsdException
1149
+ w:name="Grid Table 2 Accent 4"
1150
+ w:uiPriority="47"/>
1151
+ <w:lsdException
1152
+ w:name="Grid Table 3 Accent 4"
1153
+ w:uiPriority="48"/>
1154
+ <w:lsdException
1155
+ w:name="Grid Table 4 Accent 4"
1156
+ w:uiPriority="49"/>
1157
+ <w:lsdException
1158
+ w:name="Grid Table 5 Dark Accent 4"
1159
+ w:uiPriority="50"/>
1160
+ <w:lsdException
1161
+ w:name="Grid Table 6 Colorful Accent 4"
1162
+ w:uiPriority="51"/>
1163
+ <w:lsdException
1164
+ w:name="Grid Table 7 Colorful Accent 4"
1165
+ w:uiPriority="52"/>
1166
+ <w:lsdException
1167
+ w:name="Grid Table 1 Light Accent 5"
1168
+ w:uiPriority="46"/>
1169
+ <w:lsdException
1170
+ w:name="Grid Table 2 Accent 5"
1171
+ w:uiPriority="47"/>
1172
+ <w:lsdException
1173
+ w:name="Grid Table 3 Accent 5"
1174
+ w:uiPriority="48"/>
1175
+ <w:lsdException
1176
+ w:name="Grid Table 4 Accent 5"
1177
+ w:uiPriority="49"/>
1178
+ <w:lsdException
1179
+ w:name="Grid Table 5 Dark Accent 5"
1180
+ w:uiPriority="50"/>
1181
+ <w:lsdException
1182
+ w:name="Grid Table 6 Colorful Accent 5"
1183
+ w:uiPriority="51"/>
1184
+ <w:lsdException
1185
+ w:name="Grid Table 7 Colorful Accent 5"
1186
+ w:uiPriority="52"/>
1187
+ <w:lsdException
1188
+ w:name="Grid Table 1 Light Accent 6"
1189
+ w:uiPriority="46"/>
1190
+ <w:lsdException
1191
+ w:name="Grid Table 2 Accent 6"
1192
+ w:uiPriority="47"/>
1193
+ <w:lsdException
1194
+ w:name="Grid Table 3 Accent 6"
1195
+ w:uiPriority="48"/>
1196
+ <w:lsdException
1197
+ w:name="Grid Table 4 Accent 6"
1198
+ w:uiPriority="49"/>
1199
+ <w:lsdException
1200
+ w:name="Grid Table 5 Dark Accent 6"
1201
+ w:uiPriority="50"/>
1202
+ <w:lsdException
1203
+ w:name="Grid Table 6 Colorful Accent 6"
1204
+ w:uiPriority="51"/>
1205
+ <w:lsdException
1206
+ w:name="Grid Table 7 Colorful Accent 6"
1207
+ w:uiPriority="52"/>
1208
+ <w:lsdException
1209
+ w:name="List Table 1 Light"
1210
+ w:uiPriority="46"/>
1211
+ <w:lsdException
1212
+ w:name="List Table 2"
1213
+ w:uiPriority="47"/>
1214
+ <w:lsdException
1215
+ w:name="List Table 3"
1216
+ w:uiPriority="48"/>
1217
+ <w:lsdException
1218
+ w:name="List Table 4"
1219
+ w:uiPriority="49"/>
1220
+ <w:lsdException
1221
+ w:name="List Table 5 Dark"
1222
+ w:uiPriority="50"/>
1223
+ <w:lsdException
1224
+ w:name="List Table 6 Colorful"
1225
+ w:uiPriority="51"/>
1226
+ <w:lsdException
1227
+ w:name="List Table 7 Colorful"
1228
+ w:uiPriority="52"/>
1229
+ <w:lsdException
1230
+ w:name="List Table 1 Light Accent 1"
1231
+ w:uiPriority="46"/>
1232
+ <w:lsdException
1233
+ w:name="List Table 2 Accent 1"
1234
+ w:uiPriority="47"/>
1235
+ <w:lsdException
1236
+ w:name="List Table 3 Accent 1"
1237
+ w:uiPriority="48"/>
1238
+ <w:lsdException
1239
+ w:name="List Table 4 Accent 1"
1240
+ w:uiPriority="49"/>
1241
+ <w:lsdException
1242
+ w:name="List Table 5 Dark Accent 1"
1243
+ w:uiPriority="50"/>
1244
+ <w:lsdException
1245
+ w:name="List Table 6 Colorful Accent 1"
1246
+ w:uiPriority="51"/>
1247
+ <w:lsdException
1248
+ w:name="List Table 7 Colorful Accent 1"
1249
+ w:uiPriority="52"/>
1250
+ <w:lsdException
1251
+ w:name="List Table 1 Light Accent 2"
1252
+ w:uiPriority="46"/>
1253
+ <w:lsdException
1254
+ w:name="List Table 2 Accent 2"
1255
+ w:uiPriority="47"/>
1256
+ <w:lsdException
1257
+ w:name="List Table 3 Accent 2"
1258
+ w:uiPriority="48"/>
1259
+ <w:lsdException
1260
+ w:name="List Table 4 Accent 2"
1261
+ w:uiPriority="49"/>
1262
+ <w:lsdException
1263
+ w:name="List Table 5 Dark Accent 2"
1264
+ w:uiPriority="50"/>
1265
+ <w:lsdException
1266
+ w:name="List Table 6 Colorful Accent 2"
1267
+ w:uiPriority="51"/>
1268
+ <w:lsdException
1269
+ w:name="List Table 7 Colorful Accent 2"
1270
+ w:uiPriority="52"/>
1271
+ <w:lsdException
1272
+ w:name="List Table 1 Light Accent 3"
1273
+ w:uiPriority="46"/>
1274
+ <w:lsdException
1275
+ w:name="List Table 2 Accent 3"
1276
+ w:uiPriority="47"/>
1277
+ <w:lsdException
1278
+ w:name="List Table 3 Accent 3"
1279
+ w:uiPriority="48"/>
1280
+ <w:lsdException
1281
+ w:name="List Table 4 Accent 3"
1282
+ w:uiPriority="49"/>
1283
+ <w:lsdException
1284
+ w:name="List Table 5 Dark Accent 3"
1285
+ w:uiPriority="50"/>
1286
+ <w:lsdException
1287
+ w:name="List Table 6 Colorful Accent 3"
1288
+ w:uiPriority="51"/>
1289
+ <w:lsdException
1290
+ w:name="List Table 7 Colorful Accent 3"
1291
+ w:uiPriority="52"/>
1292
+ <w:lsdException
1293
+ w:name="List Table 1 Light Accent 4"
1294
+ w:uiPriority="46"/>
1295
+ <w:lsdException
1296
+ w:name="List Table 2 Accent 4"
1297
+ w:uiPriority="47"/>
1298
+ <w:lsdException
1299
+ w:name="List Table 3 Accent 4"
1300
+ w:uiPriority="48"/>
1301
+ <w:lsdException
1302
+ w:name="List Table 4 Accent 4"
1303
+ w:uiPriority="49"/>
1304
+ <w:lsdException
1305
+ w:name="List Table 5 Dark Accent 4"
1306
+ w:uiPriority="50"/>
1307
+ <w:lsdException
1308
+ w:name="List Table 6 Colorful Accent 4"
1309
+ w:uiPriority="51"/>
1310
+ <w:lsdException
1311
+ w:name="List Table 7 Colorful Accent 4"
1312
+ w:uiPriority="52"/>
1313
+ <w:lsdException
1314
+ w:name="List Table 1 Light Accent 5"
1315
+ w:uiPriority="46"/>
1316
+ <w:lsdException
1317
+ w:name="List Table 2 Accent 5"
1318
+ w:uiPriority="47"/>
1319
+ <w:lsdException
1320
+ w:name="List Table 3 Accent 5"
1321
+ w:uiPriority="48"/>
1322
+ <w:lsdException
1323
+ w:name="List Table 4 Accent 5"
1324
+ w:uiPriority="49"/>
1325
+ <w:lsdException
1326
+ w:name="List Table 5 Dark Accent 5"
1327
+ w:uiPriority="50"/>
1328
+ <w:lsdException
1329
+ w:name="List Table 6 Colorful Accent 5"
1330
+ w:uiPriority="51"/>
1331
+ <w:lsdException
1332
+ w:name="List Table 7 Colorful Accent 5"
1333
+ w:uiPriority="52"/>
1334
+ <w:lsdException
1335
+ w:name="List Table 1 Light Accent 6"
1336
+ w:uiPriority="46"/>
1337
+ <w:lsdException
1338
+ w:name="List Table 2 Accent 6"
1339
+ w:uiPriority="47"/>
1340
+ <w:lsdException
1341
+ w:name="List Table 3 Accent 6"
1342
+ w:uiPriority="48"/>
1343
+ <w:lsdException
1344
+ w:name="List Table 4 Accent 6"
1345
+ w:uiPriority="49"/>
1346
+ <w:lsdException
1347
+ w:name="List Table 5 Dark Accent 6"
1348
+ w:uiPriority="50"/>
1349
+ <w:lsdException
1350
+ w:name="List Table 6 Colorful Accent 6"
1351
+ w:uiPriority="51"/>
1352
+ <w:lsdException
1353
+ w:name="List Table 7 Colorful Accent 6"
1354
+ w:uiPriority="52"/>
1355
+ <w:lsdException
1356
+ w:name="Mention"
1357
+ w:semiHidden="1"
1358
+ w:unhideWhenUsed="1"/>
1359
+ <w:lsdException
1360
+ w:name="Smart Hyperlink"
1361
+ w:semiHidden="1"
1362
+ w:unhideWhenUsed="1"/>
1363
+ <w:lsdException
1364
+ w:name="Hashtag"
1365
+ w:semiHidden="1"
1366
+ w:unhideWhenUsed="1"/>
1367
+ <w:lsdException
1368
+ w:name="Unresolved Mention"
1369
+ w:semiHidden="1"
1370
+ w:unhideWhenUsed="1"/>
1371
+ <w:lsdException
1372
+ w:name="Smart Link"
1373
+ w:semiHidden="1"
1374
+ w:unhideWhenUsed="1"/>
1375
+ </w:latentStyles>
1376
+ <w:style
1377
+ w:type="paragraph"
1378
+ w:default="1"
1379
+ w:styleId="Normal">
1380
+ <w:name w:val="Normal"/>
1381
+ <w:qFormat/>
1382
+ </w:style>
1383
+ <w:style
1384
+ w:type="paragraph"
1385
+ w:styleId="Heading1">
1386
+ <w:name w:val="heading 1"/>
1387
+ <w:basedOn w:val="Normal"/>
1388
+ <w:next w:val="Normal"/>
1389
+ <w:uiPriority w:val="9"/>
1390
+ <w:qFormat/>
1391
+ <w:pPr>
1392
+ <w:keepNext/>
1393
+ <w:keepLines/>
1394
+ <w:spacing
1395
+ w:before="400"
1396
+ w:after="120"/>
1397
+ <w:outlineLvl w:val="0"/>
1398
+ </w:pPr>
1399
+ <w:rPr>
1400
+ <w:sz w:val="40"/>
1401
+ <w:szCs w:val="40"/>
1402
+ </w:rPr>
1403
+ </w:style>
1404
+ <w:style
1405
+ w:type="paragraph"
1406
+ w:styleId="Heading2">
1407
+ <w:name w:val="heading 2"/>
1408
+ <w:basedOn w:val="Normal"/>
1409
+ <w:next w:val="Normal"/>
1410
+ <w:uiPriority w:val="9"/>
1411
+ <w:unhideWhenUsed/>
1412
+ <w:qFormat/>
1413
+ <w:pPr>
1414
+ <w:keepNext/>
1415
+ <w:keepLines/>
1416
+ <w:spacing
1417
+ w:before="360"
1418
+ w:after="120"/>
1419
+ <w:outlineLvl w:val="1"/>
1420
+ </w:pPr>
1421
+ <w:rPr>
1422
+ <w:sz w:val="32"/>
1423
+ <w:szCs w:val="32"/>
1424
+ </w:rPr>
1425
+ </w:style>
1426
+ <w:style
1427
+ w:type="paragraph"
1428
+ w:styleId="Heading3">
1429
+ <w:name w:val="heading 3"/>
1430
+ <w:basedOn w:val="Normal"/>
1431
+ <w:next w:val="Normal"/>
1432
+ <w:uiPriority w:val="9"/>
1433
+ <w:unhideWhenUsed/>
1434
+ <w:qFormat/>
1435
+ <w:pPr>
1436
+ <w:keepNext/>
1437
+ <w:keepLines/>
1438
+ <w:spacing
1439
+ w:before="320"
1440
+ w:after="80"/>
1441
+ <w:outlineLvl w:val="2"/>
1442
+ </w:pPr>
1443
+ <w:rPr>
1444
+ <w:color w:val="434343"/>
1445
+ <w:sz w:val="28"/>
1446
+ <w:szCs w:val="28"/>
1447
+ </w:rPr>
1448
+ </w:style>
1449
+ <w:style
1450
+ w:type="paragraph"
1451
+ w:styleId="Heading4">
1452
+ <w:name w:val="heading 4"/>
1453
+ <w:basedOn w:val="Normal"/>
1454
+ <w:next w:val="Normal"/>
1455
+ <w:uiPriority w:val="9"/>
1456
+ <w:unhideWhenUsed/>
1457
+ <w:qFormat/>
1458
+ <w:pPr>
1459
+ <w:keepNext/>
1460
+ <w:keepLines/>
1461
+ <w:spacing
1462
+ w:before="280"
1463
+ w:after="80"/>
1464
+ <w:outlineLvl w:val="3"/>
1465
+ </w:pPr>
1466
+ <w:rPr>
1467
+ <w:color w:val="666666"/>
1468
+ <w:sz w:val="24"/>
1469
+ <w:szCs w:val="24"/>
1470
+ </w:rPr>
1471
+ </w:style>
1472
+ <w:style
1473
+ w:type="paragraph"
1474
+ w:styleId="Heading5">
1475
+ <w:name w:val="heading 5"/>
1476
+ <w:basedOn w:val="Normal"/>
1477
+ <w:next w:val="Normal"/>
1478
+ <w:uiPriority w:val="9"/>
1479
+ <w:unhideWhenUsed/>
1480
+ <w:qFormat/>
1481
+ <w:pPr>
1482
+ <w:keepNext/>
1483
+ <w:keepLines/>
1484
+ <w:spacing
1485
+ w:before="240"
1486
+ w:after="80"/>
1487
+ <w:outlineLvl w:val="4"/>
1488
+ </w:pPr>
1489
+ <w:rPr>
1490
+ <w:color w:val="666666"/>
1491
+ </w:rPr>
1492
+ </w:style>
1493
+ <w:style
1494
+ w:type="paragraph"
1495
+ w:styleId="Heading6">
1496
+ <w:name w:val="heading 6"/>
1497
+ <w:basedOn w:val="Normal"/>
1498
+ <w:next w:val="Normal"/>
1499
+ <w:uiPriority w:val="9"/>
1500
+ <w:unhideWhenUsed/>
1501
+ <w:qFormat/>
1502
+ <w:pPr>
1503
+ <w:keepNext/>
1504
+ <w:keepLines/>
1505
+ <w:spacing
1506
+ w:before="240"
1507
+ w:after="80"/>
1508
+ <w:outlineLvl w:val="5"/>
1509
+ </w:pPr>
1510
+ <w:rPr>
1511
+ <w:i/>
1512
+ <w:color w:val="666666"/>
1513
+ </w:rPr>
1514
+ </w:style>
1515
+ <w:style
1516
+ w:type="character"
1517
+ w:default="1"
1518
+ w:styleId="DefaultParagraphFont">
1519
+ <w:name w:val="Default Paragraph Font"/>
1520
+ <w:uiPriority w:val="1"/>
1521
+ <w:semiHidden/>
1522
+ <w:unhideWhenUsed/>
1523
+ </w:style>
1524
+ <w:style
1525
+ w:type="numbering"
1526
+ w:default="1"
1527
+ w:styleId="NoList">
1528
+ <w:name w:val="No List"/>
1529
+ <w:uiPriority w:val="99"/>
1530
+ <w:semiHidden/>
1531
+ <w:unhideWhenUsed/>
1532
+ </w:style>
1533
+ <w:style
1534
+ w:type="paragraph"
1535
+ w:styleId="Title">
1536
+ <w:name w:val="Title"/>
1537
+ <w:basedOn w:val="Normal"/>
1538
+ <w:next w:val="Normal"/>
1539
+ <w:uiPriority w:val="10"/>
1540
+ <w:qFormat/>
1541
+ <w:pPr>
1542
+ <w:keepNext/>
1543
+ <w:keepLines/>
1544
+ <w:spacing w:after="60"/>
1545
+ </w:pPr>
1546
+ <w:rPr>
1547
+ <w:sz w:val="52"/>
1548
+ <w:szCs w:val="52"/>
1549
+ </w:rPr>
1550
+ </w:style>
1551
+ <w:style
1552
+ w:type="paragraph"
1553
+ w:styleId="Subtitle">
1554
+ <w:name w:val="Subtitle"/>
1555
+ <w:basedOn w:val="Normal"/>
1556
+ <w:next w:val="Normal"/>
1557
+ <w:uiPriority w:val="11"/>
1558
+ <w:qFormat/>
1559
+ <w:pPr>
1560
+ <w:keepNext/>
1561
+ <w:keepLines/>
1562
+ <w:spacing w:after="320"/>
1563
+ </w:pPr>
1564
+ <w:rPr>
1565
+ <w:color w:val="666666"/>
1566
+ <w:sz w:val="30"/>
1567
+ <w:szCs w:val="30"/>
1568
+ </w:rPr>
1569
+ </w:style>
1570
+ <w:style
1571
+ w:type="table"
1572
+ w:customStyle="1"
1573
+ w:styleId="PageBlock">
1574
+ <w:name w:val="PageBlock"/>
1575
+ <w:uiPriority w:val="99"/>
1576
+ <w:rsid w:val="00C67FF9"/>
1577
+ <w:pPr>
1578
+ <w:spacing
1579
+ w:line="240"
1580
+ w:lineRule="auto"/>
1581
+ </w:pPr>
1582
+ <w:tblPr>
1583
+ <w:tblInd
1584
+ w:w="0"
1585
+ w:type="dxa"/>
1586
+ <w:tblBorders>
1587
+ <w:top
1588
+ w:val="single"
1589
+ w:sz="4"
1590
+ w:space="0"
1591
+ w:color="auto"/>
1592
+ <w:left
1593
+ w:val="single"
1594
+ w:sz="4"
1595
+ w:space="0"
1596
+ w:color="auto"/>
1597
+ <w:bottom
1598
+ w:val="single"
1599
+ w:sz="4"
1600
+ w:space="0"
1601
+ w:color="auto"/>
1602
+ <w:right
1603
+ w:val="single"
1604
+ w:sz="4"
1605
+ w:space="0"
1606
+ w:color="auto"/>
1607
+ <w:insideH
1608
+ w:val="single"
1609
+ w:sz="4"
1610
+ w:space="0"
1611
+ w:color="auto"/>
1612
+ <w:insideV
1613
+ w:val="single"
1614
+ w:sz="4"
1615
+ w:space="0"
1616
+ w:color="auto"/>
1617
+ </w:tblBorders>
1618
+ <w:tblCellMar>
1619
+ <w:top
1620
+ w:w="113"
1621
+ w:type="dxa"/>
1622
+ <w:left
1623
+ w:w="113"
1624
+ w:type="dxa"/>
1625
+ <w:bottom
1626
+ w:w="113"
1627
+ w:type="dxa"/>
1628
+ <w:right
1629
+ w:w="113"
1630
+ w:type="dxa"/>
1631
+ </w:tblCellMar>
1632
+ </w:tblPr>
1633
+ <w:tcPr>
1634
+ <w:tcMar>
1635
+ <w:top
1636
+ w:w="113"
1637
+ w:type="dxa"/>
1638
+ <w:bottom
1639
+ w:w="113"
1640
+ w:type="dxa"/>
1641
+ </w:tcMar>
1642
+ </w:tcPr>
1643
+ <w:tblStylePr w:type="firstRow">
1644
+ <w:pPr>
1645
+ <w:jc w:val="left"/>
1646
+ </w:pPr>
1647
+ <w:rPr>
1648
+ <w:rFonts
1649
+ w:ascii="Arial"
1650
+ w:hAnsi="Arial"/>
1651
+ <w:b/>
1652
+ <w:bCs/>
1653
+ <w:color w:val="auto"/>
1654
+ <w:sz w:val="22"/>
1655
+ </w:rPr>
1656
+ <w:tblPr/>
1657
+ <w:tcPr>
1658
+ <w:tcBorders>
1659
+ <w:top
1660
+ w:val="single"
1661
+ w:sz="4"
1662
+ w:space="0"
1663
+ w:color="auto"/>
1664
+ <w:left
1665
+ w:val="single"
1666
+ w:sz="4"
1667
+ w:space="0"
1668
+ w:color="auto"/>
1669
+ <w:bottom
1670
+ w:val="single"
1671
+ w:sz="4"
1672
+ w:space="0"
1673
+ w:color="auto"/>
1674
+ <w:right
1675
+ w:val="single"
1676
+ w:sz="4"
1677
+ w:space="0"
1678
+ w:color="auto"/>
1679
+ <w:insideH
1680
+ w:val="single"
1681
+ w:sz="4"
1682
+ w:space="0"
1683
+ w:color="auto"/>
1684
+ <w:insideV
1685
+ w:val="single"
1686
+ w:sz="4"
1687
+ w:space="0"
1688
+ w:color="auto"/>
1689
+ <w:tl2br w:val="nil"/>
1690
+ <w:tr2bl w:val="nil"/>
1691
+ </w:tcBorders>
1692
+ <w:shd
1693
+ w:val="clear"
1694
+ w:color="auto"
1695
+ w:fill="F4CCCD"/>
1696
+ </w:tcPr>
1697
+ </w:tblStylePr>
1698
+ </w:style>
1699
+ <w:style
1700
+ w:type="character"
1701
+ w:styleId="HTMLCode">
1702
+ <w:name w:val="HTML Code"/>
1703
+ <w:basedOn w:val="DefaultParagraphFont"/>
1704
+ <w:uiPriority w:val="99"/>
1705
+ <w:unhideWhenUsed/>
1706
+ <w:rsid w:val="009F323F"/>
1707
+ <w:rPr>
1708
+ <w:rFonts
1709
+ w:ascii="Consolas"
1710
+ w:hAnsi="Consolas"
1711
+ w:cs="Consolas"/>
1712
+ <w:sz w:val="20"/>
1713
+ <w:szCs w:val="20"/>
1714
+ </w:rPr>
1715
+ </w:style>
1716
+ <w:style
1717
+ w:type="paragraph"
1718
+ w:customStyle="1"
1719
+ w:styleId="CodeBlock">
1720
+ <w:name w:val="Code Block"/>
1721
+ <w:basedOn w:val="Normal"/>
1722
+ <w:next w:val="Normal"/>
1723
+ <w:qFormat/>
1724
+ <w:rsid w:val="00A01F4A"/>
1725
+ <w:rPr>
1726
+ <w:rFonts
1727
+ w:ascii="Courier New"
1728
+ w:hAnsi="Courier New"/>
1729
+ </w:rPr>
1730
+ </w:style>
1731
+ <w:style
1732
+ w:type="paragraph"
1733
+ w:styleId="Quote">
1734
+ <w:name w:val="Quote"/>
1735
+ <w:basedOn w:val="Normal"/>
1736
+ <w:next w:val="Normal"/>
1737
+ <w:link w:val="QuoteChar"/>
1738
+ <w:uiPriority w:val="29"/>
1739
+ <w:qFormat/>
1740
+ <w:rsid w:val="009F323F"/>
1741
+ <w:pPr>
1742
+ <w:spacing
1743
+ w:before="200"
1744
+ w:after="160"/>
1745
+ <w:ind
1746
+ w:left="864"
1747
+ w:right="864"/>
1748
+ <w:jc w:val="center"/>
1749
+ </w:pPr>
1750
+ <w:rPr>
1751
+ <w:i/>
1752
+ <w:iCs/>
1753
+ <w:color
1754
+ w:val="404040"
1755
+ w:themeColor="text1"
1756
+ w:themeTint="BF"/>
1757
+ </w:rPr>
1758
+ </w:style>
1759
+ <w:style
1760
+ w:type="character"
1761
+ w:customStyle="1"
1762
+ w:styleId="QuoteChar">
1763
+ <w:name w:val="Quote Char"/>
1764
+ <w:basedOn w:val="DefaultParagraphFont"/>
1765
+ <w:link w:val="Quote"/>
1766
+ <w:uiPriority w:val="29"/>
1767
+ <w:rsid w:val="009F323F"/>
1768
+ <w:rPr>
1769
+ <w:i/>
1770
+ <w:iCs/>
1771
+ <w:color
1772
+ w:val="404040"
1773
+ w:themeColor="text1"
1774
+ w:themeTint="BF"/>
1775
+ </w:rPr>
1776
+ </w:style>
1777
+ <w:style
1778
+ w:type="character"
1779
+ w:customStyle="1"
1780
+ w:styleId="InlineCode">
1781
+ <w:name w:val="InlineCode"/>
1782
+ <w:basedOn w:val="DefaultParagraphFont"/>
1783
+ <w:uiPriority w:val="1"/>
1784
+ <w:qFormat/>
1785
+ <w:rsid w:val="00A01F4A"/>
1786
+ <w:rPr>
1787
+ <w:rFonts
1788
+ w:ascii="Courier New"
1789
+ w:hAnsi="Courier New"/>
1790
+ <w:color w:val="auto"/>
1791
+ <w:sz w:val="22"/>
1792
+ <w:bdr
1793
+ w:val="none"
1794
+ w:sz="0"
1795
+ w:space="0"
1796
+ w:color="auto"/>
1797
+ <w:shd
1798
+ w:val="clear"
1799
+ w:color="auto"
1800
+ w:fill="BFBFBF"
1801
+ w:themeFill="background1"
1802
+ w:themeFillShade="BF"/>
1803
+ <w:lang w:val="en-CH"/>
1804
+ </w:rPr>
1805
+ </w:style>
1806
+ </w:styles>