@nguyenphp/antigravity-marketing 1.0.18 → 1.0.19
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.
- package/README.md +186 -78
- package/package.json +4 -3
- package/templates/.agent/skills/marketing-report-expert/SKILL.md +70 -0
- package/templates/.agent/skills/minimax-docx/LICENSE +21 -0
- package/templates/.agent/skills/minimax-docx/SKILL.md +274 -0
- package/templates/.agent/skills/minimax-docx/assets/styles/academic_styles.xml +250 -0
- package/templates/.agent/skills/minimax-docx/assets/styles/corporate_styles.xml +284 -0
- package/templates/.agent/skills/minimax-docx/assets/styles/default_styles.xml +449 -0
- package/templates/.agent/skills/minimax-docx/assets/xsd/aesthetic-rules.xsd +470 -0
- package/templates/.agent/skills/minimax-docx/assets/xsd/business-rules.xsd +130 -0
- package/templates/.agent/skills/minimax-docx/assets/xsd/common-types.xsd +159 -0
- package/templates/.agent/skills/minimax-docx/assets/xsd/wml-subset.xsd +589 -0
- package/templates/.agent/skills/minimax-docx/references/cjk_typography.md +357 -0
- package/templates/.agent/skills/minimax-docx/references/cjk_university_template_guide.md +184 -0
- package/templates/.agent/skills/minimax-docx/references/comments_guide.md +191 -0
- package/templates/.agent/skills/minimax-docx/references/design_good_bad_examples.md +829 -0
- package/templates/.agent/skills/minimax-docx/references/design_principles.md +819 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_element_order.md +308 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part1.md +4061 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part2.md +2820 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part3.md +3381 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_namespaces.md +82 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_units.md +72 -0
- package/templates/.agent/skills/minimax-docx/references/scenario_a_create.md +284 -0
- package/templates/.agent/skills/minimax-docx/references/scenario_b_edit_content.md +295 -0
- package/templates/.agent/skills/minimax-docx/references/scenario_c_apply_template.md +456 -0
- package/templates/.agent/skills/minimax-docx/references/track_changes_guide.md +200 -0
- package/templates/.agent/skills/minimax-docx/references/troubleshooting.md +506 -0
- package/templates/.agent/skills/minimax-docx/references/typography_guide.md +294 -0
- package/templates/.agent/skills/minimax-docx/references/xsd_validation_guide.md +158 -0
- package/templates/.agent/skills/minimax-docx/scripts/doc_to_docx.sh +40 -0
- package/templates/.agent/skills/minimax-docx/scripts/docx_preview.sh +37 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj +19 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/Program.cs +18 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/AnalyzeCommand.cs +147 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ApplyTemplateCommand.cs +322 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/CreateCommand.cs +324 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/DiffCommand.cs +155 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/EditContentCommand.cs +487 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/FixOrderCommand.cs +108 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/MergeRunsCommand.cs +122 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ValidateCommand.cs +107 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj +15 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/CommentSynchronizer.cs +169 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/ElementOrder.cs +80 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/NamespaceConstants.cs +42 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/RunMerger.cs +81 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/StyleAnalyzer.cs +81 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/TrackChangesHelper.cs +99 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/UnitConverter.cs +23 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples.cs +1832 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch1.cs +910 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch2.cs +999 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch3.cs +1048 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch4.cs +1038 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/CharacterFormattingSamples.cs +1020 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/DocumentCreationSamples.cs +1121 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FieldAndTocSamples.cs +624 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FootnoteAndCommentSamples.cs +675 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/HeaderFooterSamples.cs +838 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ImageSamples.cs +917 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ListAndNumberingSamples.cs +826 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ParagraphFormattingSamples.cs +1199 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/StyleSystemSamples.cs +1487 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TableSamples.cs +1163 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TrackChangesSamples.cs +595 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/CjkHelper.cs +39 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/FontDefaults.cs +24 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/PageSizes.cs +20 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/BusinessRuleValidator.cs +224 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/GateCheckValidator.cs +148 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/ValidationResult.cs +23 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/XsdValidator.cs +69 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.slnx +4 -0
- package/templates/.agent/skills/minimax-docx/scripts/env_check.sh +196 -0
- package/templates/.agent/skills/minimax-docx/scripts/setup.ps1 +274 -0
- package/templates/.agent/skills/minimax-docx/scripts/setup.sh +504 -0
- package/templates/.agent/skills/minimax-multimodal-toolkit/SKILL.md +359 -0
- package/templates/.agent/skills/minimax-pdf/README.md +222 -0
- package/templates/.agent/skills/minimax-pdf/SKILL.md +201 -0
- package/templates/.agent/skills/minimax-pdf/design/design.md +381 -0
- package/templates/.agent/skills/minimax-pdf/scripts/cover.py +1579 -0
- package/templates/.agent/skills/minimax-pdf/scripts/fill_inspect.py +200 -0
- package/templates/.agent/skills/minimax-pdf/scripts/fill_write.py +242 -0
- package/templates/.agent/skills/minimax-pdf/scripts/make.sh +491 -0
- package/templates/.agent/skills/minimax-pdf/scripts/merge.py +112 -0
- package/templates/.agent/skills/minimax-pdf/scripts/palette.py +559 -0
- package/templates/.agent/skills/minimax-pdf/scripts/reformat_parse.py +374 -0
- package/templates/.agent/skills/minimax-pdf/scripts/render_body.py +1055 -0
- package/templates/.agent/skills/minimax-pdf/scripts/render_cover.cjs +111 -0
- package/templates/.agent/skills/minimax-xlsx/SKILL.md +138 -0
- package/templates/.agent/skills/minimax-xlsx/references/create.md +691 -0
- package/templates/.agent/skills/minimax-xlsx/references/edit.md +684 -0
- package/templates/.agent/skills/minimax-xlsx/references/fix.md +37 -0
- package/templates/.agent/skills/minimax-xlsx/references/format.md +768 -0
- package/templates/.agent/skills/minimax-xlsx/references/ooxml-cheatsheet.md +231 -0
- package/templates/.agent/skills/minimax-xlsx/references/read-analyze.md +97 -0
- package/templates/.agent/skills/minimax-xlsx/references/validate.md +772 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/formula_check.py +422 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/libreoffice_recalc.py +248 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/shared_strings_builder.py +163 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/style_audit.py +575 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_add_column.py +395 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_insert_row.py +274 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_pack.py +87 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_reader.py +362 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_shift_rows.py +396 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_unpack.py +130 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/[Content_Types].xml +9 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/_rels/.rels +6 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/_rels/workbook.xml.rels +19 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/sharedStrings.xml +33 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/styles.xml +160 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/workbook.xml +30 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/worksheets/sheet1.xml +70 -0
- package/templates/.agent/skills/pptx-generator/SKILL.md +249 -0
- package/templates/.agent/skills/pptx-generator/references/design-system.md +392 -0
- package/templates/.agent/skills/pptx-generator/references/editing.md +162 -0
- package/templates/.agent/skills/pptx-generator/references/pitfalls.md +112 -0
- package/templates/.agent/skills/pptx-generator/references/pptxgenjs.md +420 -0
- package/templates/.agent/skills/pptx-generator/references/slide-types.md +413 -0
- package/templates/.agent/skills/tutorial-video-expert/SKILL.md +88 -0
- package/templates/.agent/skills/ui-ux-pro-max/SKILL.md +170 -585
- package/templates/.agent/skills/vision-analysis/SKILL.md +174 -0
- package/templates/.agent/workflows/analyze.md +3 -0
- package/templates/.agent/workflows/brand-report.md +44 -0
- package/templates/.agent/workflows/report.md +49 -0
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:styles xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
3
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
4
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006">
|
|
5
|
+
|
|
6
|
+
<!-- Document Defaults -->
|
|
7
|
+
<w:docDefaults>
|
|
8
|
+
<w:rPrDefault>
|
|
9
|
+
<w:rPr>
|
|
10
|
+
<w:rFonts w:ascii="Calibri" w:hAnsi="Calibri" w:eastAsia="Microsoft YaHei" w:cs="Arial" />
|
|
11
|
+
<w:color w:val="333333" />
|
|
12
|
+
<w:sz w:val="22" />
|
|
13
|
+
<w:szCs w:val="22" />
|
|
14
|
+
<w:lang w:val="en-US" w:eastAsia="zh-CN" w:bidi="ar-SA" />
|
|
15
|
+
</w:rPr>
|
|
16
|
+
</w:rPrDefault>
|
|
17
|
+
<w:pPrDefault>
|
|
18
|
+
<w:pPr>
|
|
19
|
+
<w:spacing w:after="160" w:line="259" w:lineRule="auto" />
|
|
20
|
+
</w:pPr>
|
|
21
|
+
</w:pPrDefault>
|
|
22
|
+
</w:docDefaults>
|
|
23
|
+
|
|
24
|
+
<w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="376" />
|
|
25
|
+
|
|
26
|
+
<!-- Normal -->
|
|
27
|
+
<w:style w:type="paragraph" w:default="1" w:styleId="Normal">
|
|
28
|
+
<w:name w:val="Normal" />
|
|
29
|
+
<w:qFormat />
|
|
30
|
+
<w:pPr>
|
|
31
|
+
<w:spacing w:after="160" w:line="240" w:lineRule="auto" />
|
|
32
|
+
</w:pPr>
|
|
33
|
+
<w:rPr>
|
|
34
|
+
<w:rFonts w:ascii="Calibri" w:hAnsi="Calibri" />
|
|
35
|
+
<w:color w:val="333333" />
|
|
36
|
+
<w:sz w:val="22" />
|
|
37
|
+
<w:szCs w:val="22" />
|
|
38
|
+
</w:rPr>
|
|
39
|
+
</w:style>
|
|
40
|
+
|
|
41
|
+
<!-- Default Paragraph Font -->
|
|
42
|
+
<w:style w:type="character" w:default="1" w:styleId="DefaultParagraphFont">
|
|
43
|
+
<w:name w:val="Default Paragraph Font" />
|
|
44
|
+
<w:uiPriority w:val="1" />
|
|
45
|
+
<w:semiHidden />
|
|
46
|
+
<w:unhideWhenUsed />
|
|
47
|
+
</w:style>
|
|
48
|
+
|
|
49
|
+
<!-- Heading 1 — Dark Blue -->
|
|
50
|
+
<w:style w:type="paragraph" w:styleId="Heading1">
|
|
51
|
+
<w:name w:val="heading 1" />
|
|
52
|
+
<w:basedOn w:val="Normal" />
|
|
53
|
+
<w:next w:val="Normal" />
|
|
54
|
+
<w:qFormat />
|
|
55
|
+
<w:uiPriority w:val="9" />
|
|
56
|
+
<w:pPr>
|
|
57
|
+
<w:keepNext />
|
|
58
|
+
<w:keepLines />
|
|
59
|
+
<w:spacing w:before="480" w:after="240" w:line="240" w:lineRule="auto" />
|
|
60
|
+
<w:outlineLvl w:val="0" />
|
|
61
|
+
</w:pPr>
|
|
62
|
+
<w:rPr>
|
|
63
|
+
<w:rFonts w:ascii="Calibri Light" w:hAnsi="Calibri Light" />
|
|
64
|
+
<w:b />
|
|
65
|
+
<w:color w:val="1F3864" />
|
|
66
|
+
<w:sz w:val="56" />
|
|
67
|
+
<w:szCs w:val="56" />
|
|
68
|
+
</w:rPr>
|
|
69
|
+
</w:style>
|
|
70
|
+
|
|
71
|
+
<!-- Heading 2 -->
|
|
72
|
+
<w:style w:type="paragraph" w:styleId="Heading2">
|
|
73
|
+
<w:name w:val="heading 2" />
|
|
74
|
+
<w:basedOn w:val="Normal" />
|
|
75
|
+
<w:next w:val="Normal" />
|
|
76
|
+
<w:qFormat />
|
|
77
|
+
<w:uiPriority w:val="9" />
|
|
78
|
+
<w:pPr>
|
|
79
|
+
<w:keepNext />
|
|
80
|
+
<w:keepLines />
|
|
81
|
+
<w:spacing w:before="360" w:after="120" w:line="240" w:lineRule="auto" />
|
|
82
|
+
<w:outlineLvl w:val="1" />
|
|
83
|
+
</w:pPr>
|
|
84
|
+
<w:rPr>
|
|
85
|
+
<w:rFonts w:ascii="Calibri Light" w:hAnsi="Calibri Light" />
|
|
86
|
+
<w:b />
|
|
87
|
+
<w:color w:val="1F3864" />
|
|
88
|
+
<w:sz w:val="48" />
|
|
89
|
+
<w:szCs w:val="48" />
|
|
90
|
+
</w:rPr>
|
|
91
|
+
</w:style>
|
|
92
|
+
|
|
93
|
+
<!-- Heading 3 -->
|
|
94
|
+
<w:style w:type="paragraph" w:styleId="Heading3">
|
|
95
|
+
<w:name w:val="heading 3" />
|
|
96
|
+
<w:basedOn w:val="Normal" />
|
|
97
|
+
<w:next w:val="Normal" />
|
|
98
|
+
<w:qFormat />
|
|
99
|
+
<w:uiPriority w:val="9" />
|
|
100
|
+
<w:pPr>
|
|
101
|
+
<w:keepNext />
|
|
102
|
+
<w:keepLines />
|
|
103
|
+
<w:spacing w:before="240" w:after="80" w:line="240" w:lineRule="auto" />
|
|
104
|
+
<w:outlineLvl w:val="2" />
|
|
105
|
+
</w:pPr>
|
|
106
|
+
<w:rPr>
|
|
107
|
+
<w:rFonts w:ascii="Calibri Light" w:hAnsi="Calibri Light" />
|
|
108
|
+
<w:b />
|
|
109
|
+
<w:color w:val="1F3864" />
|
|
110
|
+
<w:sz w:val="36" />
|
|
111
|
+
<w:szCs w:val="36" />
|
|
112
|
+
</w:rPr>
|
|
113
|
+
</w:style>
|
|
114
|
+
|
|
115
|
+
<!-- Heading 4 -->
|
|
116
|
+
<w:style w:type="paragraph" w:styleId="Heading4">
|
|
117
|
+
<w:name w:val="heading 4" />
|
|
118
|
+
<w:basedOn w:val="Normal" />
|
|
119
|
+
<w:next w:val="Normal" />
|
|
120
|
+
<w:qFormat />
|
|
121
|
+
<w:uiPriority w:val="9" />
|
|
122
|
+
<w:pPr>
|
|
123
|
+
<w:keepNext />
|
|
124
|
+
<w:keepLines />
|
|
125
|
+
<w:spacing w:before="160" w:after="80" w:line="240" w:lineRule="auto" />
|
|
126
|
+
<w:outlineLvl w:val="3" />
|
|
127
|
+
</w:pPr>
|
|
128
|
+
<w:rPr>
|
|
129
|
+
<w:rFonts w:ascii="Calibri Light" w:hAnsi="Calibri Light" />
|
|
130
|
+
<w:b />
|
|
131
|
+
<w:i />
|
|
132
|
+
<w:color w:val="1F3864" />
|
|
133
|
+
<w:sz w:val="28" />
|
|
134
|
+
<w:szCs w:val="28" />
|
|
135
|
+
</w:rPr>
|
|
136
|
+
</w:style>
|
|
137
|
+
|
|
138
|
+
<!-- Title -->
|
|
139
|
+
<w:style w:type="paragraph" w:styleId="Title">
|
|
140
|
+
<w:name w:val="Title" />
|
|
141
|
+
<w:basedOn w:val="Normal" />
|
|
142
|
+
<w:next w:val="Normal" />
|
|
143
|
+
<w:qFormat />
|
|
144
|
+
<w:uiPriority w:val="10" />
|
|
145
|
+
<w:pPr>
|
|
146
|
+
<w:spacing w:after="240" w:line="240" w:lineRule="auto" />
|
|
147
|
+
<w:jc w:val="center" />
|
|
148
|
+
</w:pPr>
|
|
149
|
+
<w:rPr>
|
|
150
|
+
<w:rFonts w:ascii="Calibri Light" w:hAnsi="Calibri Light" />
|
|
151
|
+
<w:color w:val="1F3864" />
|
|
152
|
+
<w:sz w:val="72" />
|
|
153
|
+
<w:szCs w:val="72" />
|
|
154
|
+
</w:rPr>
|
|
155
|
+
</w:style>
|
|
156
|
+
|
|
157
|
+
<!-- Subtitle -->
|
|
158
|
+
<w:style w:type="paragraph" w:styleId="Subtitle">
|
|
159
|
+
<w:name w:val="Subtitle" />
|
|
160
|
+
<w:basedOn w:val="Normal" />
|
|
161
|
+
<w:next w:val="Normal" />
|
|
162
|
+
<w:qFormat />
|
|
163
|
+
<w:uiPriority w:val="11" />
|
|
164
|
+
<w:pPr>
|
|
165
|
+
<w:spacing w:after="360" w:line="240" w:lineRule="auto" />
|
|
166
|
+
<w:jc w:val="center" />
|
|
167
|
+
</w:pPr>
|
|
168
|
+
<w:rPr>
|
|
169
|
+
<w:i />
|
|
170
|
+
<w:color w:val="595959" />
|
|
171
|
+
<w:sz w:val="32" />
|
|
172
|
+
<w:szCs w:val="32" />
|
|
173
|
+
</w:rPr>
|
|
174
|
+
</w:style>
|
|
175
|
+
|
|
176
|
+
<!-- Table Grid — Corporate with blue header -->
|
|
177
|
+
<w:style w:type="table" w:default="1" w:styleId="TableNormal">
|
|
178
|
+
<w:name w:val="Normal Table" />
|
|
179
|
+
<w:uiPriority w:val="99" />
|
|
180
|
+
<w:semiHidden />
|
|
181
|
+
<w:unhideWhenUsed />
|
|
182
|
+
<w:tblPr>
|
|
183
|
+
<w:tblInd w:w="0" w:type="dxa" />
|
|
184
|
+
<w:tblCellMar>
|
|
185
|
+
<w:top w:w="0" w:type="dxa" />
|
|
186
|
+
<w:left w:w="108" w:type="dxa" />
|
|
187
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
188
|
+
<w:right w:w="108" w:type="dxa" />
|
|
189
|
+
</w:tblCellMar>
|
|
190
|
+
</w:tblPr>
|
|
191
|
+
</w:style>
|
|
192
|
+
|
|
193
|
+
<w:style w:type="table" w:styleId="TableGrid">
|
|
194
|
+
<w:name w:val="Table Grid" />
|
|
195
|
+
<w:basedOn w:val="TableNormal" />
|
|
196
|
+
<w:uiPriority w:val="39" />
|
|
197
|
+
<w:tblPr>
|
|
198
|
+
<w:tblBorders>
|
|
199
|
+
<w:top w:val="single" w:sz="4" w:space="0" w:color="BFBFBF" />
|
|
200
|
+
<w:left w:val="single" w:sz="4" w:space="0" w:color="BFBFBF" />
|
|
201
|
+
<w:bottom w:val="single" w:sz="4" w:space="0" w:color="BFBFBF" />
|
|
202
|
+
<w:right w:val="single" w:sz="4" w:space="0" w:color="BFBFBF" />
|
|
203
|
+
<w:insideH w:val="single" w:sz="4" w:space="0" w:color="BFBFBF" />
|
|
204
|
+
<w:insideV w:val="single" w:sz="4" w:space="0" w:color="BFBFBF" />
|
|
205
|
+
</w:tblBorders>
|
|
206
|
+
</w:tblPr>
|
|
207
|
+
<w:tblStylePr w:type="firstRow">
|
|
208
|
+
<w:rPr>
|
|
209
|
+
<w:b />
|
|
210
|
+
<w:color w:val="FFFFFF" />
|
|
211
|
+
</w:rPr>
|
|
212
|
+
<w:tcPr>
|
|
213
|
+
<w:shd w:val="clear" w:color="auto" w:fill="2F5496" />
|
|
214
|
+
<w:tcBorders>
|
|
215
|
+
<w:top w:val="single" w:sz="4" w:space="0" w:color="2F5496" />
|
|
216
|
+
<w:left w:val="single" w:sz="4" w:space="0" w:color="2F5496" />
|
|
217
|
+
<w:bottom w:val="single" w:sz="4" w:space="0" w:color="2F5496" />
|
|
218
|
+
<w:right w:val="single" w:sz="4" w:space="0" w:color="2F5496" />
|
|
219
|
+
<w:insideH w:val="single" w:sz="4" w:space="0" w:color="3A6BC5" />
|
|
220
|
+
<w:insideV w:val="single" w:sz="4" w:space="0" w:color="3A6BC5" />
|
|
221
|
+
</w:tcBorders>
|
|
222
|
+
</w:tcPr>
|
|
223
|
+
</w:tblStylePr>
|
|
224
|
+
<w:tblStylePr w:type="band1Horz">
|
|
225
|
+
<w:tcPr>
|
|
226
|
+
<w:shd w:val="clear" w:color="auto" w:fill="D9E2F3" />
|
|
227
|
+
</w:tcPr>
|
|
228
|
+
</w:tblStylePr>
|
|
229
|
+
</w:style>
|
|
230
|
+
|
|
231
|
+
<!-- Header -->
|
|
232
|
+
<w:style w:type="paragraph" w:styleId="Header">
|
|
233
|
+
<w:name w:val="header" />
|
|
234
|
+
<w:basedOn w:val="Normal" />
|
|
235
|
+
<w:uiPriority w:val="99" />
|
|
236
|
+
<w:semiHidden />
|
|
237
|
+
<w:unhideWhenUsed />
|
|
238
|
+
<w:pPr>
|
|
239
|
+
<w:tabs>
|
|
240
|
+
<w:tab w:val="center" w:pos="4680" />
|
|
241
|
+
<w:tab w:val="right" w:pos="9360" />
|
|
242
|
+
</w:tabs>
|
|
243
|
+
<w:spacing w:after="0" w:line="240" w:lineRule="auto" />
|
|
244
|
+
</w:pPr>
|
|
245
|
+
<w:rPr>
|
|
246
|
+
<w:sz w:val="18" />
|
|
247
|
+
<w:szCs w:val="18" />
|
|
248
|
+
<w:color w:val="808080" />
|
|
249
|
+
</w:rPr>
|
|
250
|
+
</w:style>
|
|
251
|
+
|
|
252
|
+
<!-- Footer -->
|
|
253
|
+
<w:style w:type="paragraph" w:styleId="Footer">
|
|
254
|
+
<w:name w:val="footer" />
|
|
255
|
+
<w:basedOn w:val="Normal" />
|
|
256
|
+
<w:uiPriority w:val="99" />
|
|
257
|
+
<w:semiHidden />
|
|
258
|
+
<w:unhideWhenUsed />
|
|
259
|
+
<w:pPr>
|
|
260
|
+
<w:tabs>
|
|
261
|
+
<w:tab w:val="center" w:pos="4680" />
|
|
262
|
+
<w:tab w:val="right" w:pos="9360" />
|
|
263
|
+
</w:tabs>
|
|
264
|
+
<w:spacing w:after="0" w:line="240" w:lineRule="auto" />
|
|
265
|
+
</w:pPr>
|
|
266
|
+
<w:rPr>
|
|
267
|
+
<w:sz w:val="18" />
|
|
268
|
+
<w:szCs w:val="18" />
|
|
269
|
+
<w:color w:val="808080" />
|
|
270
|
+
</w:rPr>
|
|
271
|
+
</w:style>
|
|
272
|
+
|
|
273
|
+
<!-- Hyperlink -->
|
|
274
|
+
<w:style w:type="character" w:styleId="Hyperlink">
|
|
275
|
+
<w:name w:val="Hyperlink" />
|
|
276
|
+
<w:uiPriority w:val="99" />
|
|
277
|
+
<w:unhideWhenUsed />
|
|
278
|
+
<w:rPr>
|
|
279
|
+
<w:color w:val="0563C1" />
|
|
280
|
+
<w:u w:val="single" />
|
|
281
|
+
</w:rPr>
|
|
282
|
+
</w:style>
|
|
283
|
+
|
|
284
|
+
</w:styles>
|