Pandoc: Docx outputs in "compatibility mode" format so formating lost in Office365

Created on 16 Jul 2019  Â·  17Comments  Â·  Source: jgm/pandoc

Hello and thank you for the great tool.

I created a simple markdown file with bulleted lists called conferences.md. This converts nicely to conferences.pdf using the command pandoc conferences.md -o conferences.pdf

I convert to docx using pandoc conferences.md -o conferences.docx which yields conferences.docx. When opened in Office 365, it loses the formating for bullet points and instead each bulleted line prints out non-indented with no bullet points. However when opened in Microsoft Word Professional Plus 16, conferences.docx is formated correctly (with bullet points and indendations saved).

I noticed that in the header it states it is in "Compatibility mode." I then "convert" it to upgrade to the most recent docx format and save it as conferencesUpgraded.docx. This then opens with preserved bullets and indentations in Office 365.

I additionally tried making a custom --reference-doc by printing the default one that comes with pandoc, opening in Office 365, creating a few bullet points and changing then font, then saving then using that as the style reference for pandoc with no success (other than changing the font which was different in the two documents).

What I presume is happening based off this Microsoft support link is that pandoc is outputing in an older variant of docx that Office 365 is not recogning but Office 2016 is recognizing. Do you think this is the source of the bug, and if so, is that a tough fix to make? If not and you need more data, please let me know, happy to provide.

As far as my environement, I am running Gentoo linux. The pandoc version in portage is old (1.19.2.1) but I also installed the latest one (2.7.3) which is running as demonstrated below.

thomas@athena $ pandoc -v
pandoc 2.7.3
Compiled with pandoc-types 1.17.5.4, texmath 0.11.2.2, skylighting 0.8.1
Default user data directory: /home/thomas/.local/share/pandoc or /home/thomas/.pandoc
Copyright (C) 2006-2019 John MacFarlane
Web:  http://pandoc.org
This is free software; see the source for copying conditions.
There is no warranty, not even for merchantability or fitness
for a particular purpose.
Docx writer

All 17 comments

Yes, we use an older version of docx, but that's because we want pandoc's docx files to work with as many versions of Word as possible. Until Office 365, every version of Word could understand these files. I would say it's a bug in Office 365 if it handles these incorrectly, especially if it handles them differently from desktop Word.

Can anyone else who uses Office 365 confirm that bullets are not appearing correctly in documents created by pandoc? I don't have any way to test this myself.

I'll run some tests and report back

Creating the docx with:

$ pandoc -f markdown -o test.docx << EOF
> # Testing simple bullets
>
> * one
> * two
> * three
>
> end of bullets
> EOF

I get a docx that opens fine in my local Word 2016:

image

As stated by OP, the bullets are lost on Office 365:

image

However, simply re-saving (adding a space and deleting it) the file, still in compat mode, it works:

image

I'll upload the files and the diff later

So it's not compat mode, but something else. Let's see what the diffs reveal!

The files:

test.docx

testWorks.docx

The diff was created with:

../diff-zip.sh ./testWorks.docx test.docx | tee out.txt

Note that the lines from the working file will be shown in red below.

Not easy to spot the meaningful differences. It seems the removal of "space preserve" is not it, so it probably has something to do with the numbering definition.


It is quite long:

 docProps/app.xml 
--- a/docProps/app.xml  2019-07-17 08:35:02.201064400 +0200
+++ b/docProps/app.xml  2019-07-17 08:35:06.184462700 +0200
@@ -1,21 +1,20 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<?xml version="1.0" encoding="utf-8"?>
 <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
 xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">

+  <Words>83</Words>
+  <SharedDoc>false</SharedDoc>
+  <HyperlinksChanged>false</HyperlinksChanged>
+  <Lines>12</Lines>
+  <AppVersion>12.0000</AppVersion>
+  <LinksUpToDate>false</LinksUpToDate>
+  <Application>Microsoft Word 12.0.0</Application>
+  <CharactersWithSpaces>583</CharactersWithSpaces>
   <Template>Normal.dotm</Template>
-  <TotalTime>11</TotalTime>
-  <Pages>1</Pages>
-  <Words>7</Words>
-  <Characters>45</Characters>
-  <Application>Microsoft Office Word</Application>
   <DocSecurity>0</DocSecurity>
-  <Lines>1</Lines>
-  <Paragraphs>1</Paragraphs>
+  <TotalTime>6</TotalTime>
   <ScaleCrop>false</ScaleCrop>
-  <Company>xxxx</Company>
-  <LinksUpToDate>false</LinksUpToDate>
-  <CharactersWithSpaces>51</CharactersWithSpaces>
-  <SharedDoc>false</SharedDoc>
-  <HyperlinksChanged>false</HyperlinksChanged>
-  <AppVersion>16.0000</AppVersion>
+  <Characters>475</Characters>
+  <Paragraphs>8</Paragraphs>
+  <Pages>1</Pages>
 </Properties>
 docProps/core.xml 
--- a/docProps/core.xml 2019-07-17 08:35:02.484092700 +0200
+++ b/docProps/core.xml 2019-07-17 08:35:06.475491800 +0200
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<?xml version="1.0" encoding="utf-8"?>
 <cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:dcterms="http://purl.org/dc/terms/"
@@ -7,10 +7,8 @@
   <dc:title></dc:title>
   <dc:creator></dc:creator>
   <cp:keywords></cp:keywords>
-  <cp:lastModifiedBy>Martin Barbero, Agustin</cp:lastModifiedBy>
-  <cp:revision>3</cp:revision>
   <dcterms:created xsi:type="dcterms:W3CDTF">
-  2019-07-17T06:25:00Z</dcterms:created>
+  2019-07-17T06:25:13Z</dcterms:created>
   <dcterms:modified xsi:type="dcterms:W3CDTF">
-  2019-07-17T06:30:00Z</dcterms:modified>
+  2019-07-17T06:25:13Z</dcterms:modified>
 </cp:coreProperties>
 docProps/custom.xml 
diff: a/docProps/custom.xml: No such file or directory
 docProps/thumbnail.emf 
diff: b/docProps/thumbnail.emf: No such file or directory
 word/comments.xml 
diff: a/word/comments.xml: No such file or directory
 word/document.xml 
--- a/word/document.xml 2019-07-17 08:35:02.747119000 +0200
+++ b/word/document.xml 2019-07-17 08:35:07.296573900 +0200
@@ -1,96 +1,79 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
-xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
-xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
-xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
-xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
-xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
-xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
-xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
-xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
-xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
-xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
-xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+<?xml version="1.0" encoding="utf-8"?>
+<w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
 xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
+xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:o="urn:schemas-microsoft-com:office:office"
 xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
-xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
 xmlns:w10="urn:schemas-microsoft-com:office:word"
-xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
-xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
-xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
-xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
-xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
-xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
-xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
-xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
-mc:Ignorable="w14 w15 w16se w16cid wp14">
+xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
+xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"
+xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
+
   <w:body>
-    <w:p w:rsidR="003007FF" w:rsidRDefault="00B24D3E">
+    <w:p>
       <w:pPr>
-        <w:pStyle w:val="Ttulo1" />
+        <w:pStyle w:val="Heading1" />
       </w:pPr>
-      <w:bookmarkStart w:id="0" w:name="testing-simple-bullets" />
+      <w:bookmarkStart w:id="20" w:name="testing-simple-bullets" />
       <w:r>
-        <w:t>Testing simple bullets</w:t>
+        <w:t xml:space="preserve">
+Testing simple bullets
+</w:t>
       </w:r>
-      <w:bookmarkEnd w:id="0" />
+      <w:bookmarkEnd w:id="20" />
     </w:p>
-    <w:p w:rsidR="003007FF" w:rsidRDefault="00B24D3E">
+    <w:p>
       <w:pPr>
         <w:pStyle w:val="Compact" />
         <w:numPr>
+          <w:numId w:val="1001" />
           <w:ilvl w:val="0" />
-          <w:numId w:val="2" />
         </w:numPr>
       </w:pPr>
       <w:r>
-        <w:t>one</w:t>
+        <w:t xml:space="preserve">
+one
+</w:t>
       </w:r>
     </w:p>
-    <w:p w:rsidR="003007FF" w:rsidRDefault="00B24D3E">
+    <w:p>
       <w:pPr>
         <w:pStyle w:val="Compact" />
         <w:numPr>
+          <w:numId w:val="1001" />
           <w:ilvl w:val="0" />
-          <w:numId w:val="2" />
         </w:numPr>
       </w:pPr>
       <w:r>
-        <w:t>two</w:t>
+        <w:t xml:space="preserve">
+two
+</w:t>
       </w:r>
     </w:p>
-    <w:p w:rsidR="003007FF" w:rsidRDefault="00B24D3E">
+    <w:p>
       <w:pPr>
         <w:pStyle w:val="Compact" />
         <w:numPr>
+          <w:numId w:val="1001" />
           <w:ilvl w:val="0" />
-          <w:numId w:val="2" />
         </w:numPr>
       </w:pPr>
       <w:r>
-        <w:t>three</w:t>
+        <w:t xml:space="preserve">
+three
+</w:t>
       </w:r>
     </w:p>
-    <w:p w:rsidR="003007FF" w:rsidRDefault="00B24D3E">
+    <w:p>
       <w:pPr>
         <w:pStyle w:val="FirstParagraph" />
       </w:pPr>
       <w:r>
-        <w:t>end of bullets</w:t>
+        <w:t xml:space="preserve">
+end of bullets
+</w:t>
       </w:r>
-      <w:bookmarkStart w:id="1" w:name="_GoBack" />
-      <w:bookmarkEnd w:id="1" />
     </w:p>
-    <w:sectPr w:rsidR="003007FF">
-      <w:pgSz w:w="12240" w:h="15840" />
-      <w:pgMar w:top="1417" w:right="1701" w:bottom="1417"
-      w:left="1701" w:header="720" w:footer="720" w:gutter="0" />
-      <w:cols w:space="720" />
-    </w:sectPr>
+    <w:sectPr />
   </w:body>
 </w:document>
 word/endnotes.xml 
diff: b/word/endnotes.xml: No such file or directory
 word/fontTable.xml 
--- a/word/fontTable.xml    2019-07-17 08:35:03.288173100 +0200
+++ b/word/fontTable.xml    2019-07-17 08:35:07.578602100 +0200
@@ -1,42 +1,54 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
-xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
-xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
-xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
-xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
-mc:Ignorable="w14 w15 w16se w16cid">
-  <w:font w:name="Cambria">
-    <w:panose1 w:val="02040503050406030204" />
-    <w:charset w:val="00" />
-    <w:family w:val="roman" />
-    <w:pitch w:val="variable" />
-    <w:sig w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000"
-    w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000" />
-  </w:font>
-  <w:font w:name="Times New Roman">
-    <w:panose1 w:val="02020603050405020304" />
-    <w:charset w:val="00" />
-    <w:family w:val="roman" />
-    <w:pitch w:val="variable" />
-    <w:sig w:usb0="E0002AFF" w:usb1="C0007841" w:usb2="00000009"
-    w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000" />
-  </w:font>
-  <w:font w:name="Calibri">
-    <w:panose1 w:val="020F0502020204030204" />
-    <w:charset w:val="00" />
-    <w:family w:val="swiss" />
-    <w:pitch w:val="variable" />
-    <w:sig w:usb0="20000287" w:usb1="00000000" w:usb2="00000000"
-    w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000" />
-  </w:font>
-  <w:font w:name="Consolas">
-    <w:panose1 w:val="020B0609020204030204" />
-    <w:charset w:val="00" />
-    <w:family w:val="modern" />
-    <w:pitch w:val="fixed" />
-    <w:sig w:usb0="E00006FF" w:usb1="0000FCFF" w:usb2="00000001"
-    w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000" />
-  </w:font>
-</w:fonts>
+<?xml version="1.0" encoding="utf-8"?>
+<w:fonts xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
+   
+<w:font w:name="Symbol">       
+<w:panose1 w:val="02000500000000000000" />     
+<w:charset w:val="02" />       
+<w:family w:val="auto" />      
+<w:pitch w:val="variable" />       
+<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00010000"
+w:usb3="00000000" w:csb0="80000000" w:csb1="00000000" />   </w:font>   
+<w:font w:name="Times New Roman">      
+<w:panose1 w:val="02020603050405020304" />     
+<w:charset w:val="00" />       
+<w:family w:val="auto" />      
+<w:pitch w:val="variable" />       
+<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
+w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />   </w:font>   
+<w:font w:name="Courier New">      
+<w:panose1 w:val="02070309020205020404" />     
+<w:charset w:val="00" />       
+<w:family w:val="auto" />      
+<w:pitch w:val="variable" />       
+<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
+w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />   </w:font>   
+<w:font w:name="Wingdings">        
+<w:panose1 w:val="05020102010804080708" />     
+<w:charset w:val="02" />       
+<w:family w:val="auto" />      
+<w:pitch w:val="variable" />       
+<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00010000"
+w:usb3="00000000" w:csb0="80000000" w:csb1="00000000" />   </w:font>   
+<w:font w:name="Cambria">      
+<w:panose1 w:val="02040503050406030204" />     
+<w:charset w:val="00" />       
+<w:family w:val="auto" />      
+<w:pitch w:val="variable" />       
+<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
+w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />   </w:font>   
+<w:font w:name="Calibri">      
+<w:panose1 w:val="020F0502020204030204" />     
+<w:charset w:val="00" />       
+<w:family w:val="auto" />      
+<w:pitch w:val="variable" />       
+<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
+w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />   </w:font>   
+<w:font w:name="Arial">        
+<w:panose1 w:val="020B0604020202020204" />     
+<w:charset w:val="00" />       
+<w:family w:val="auto" />      
+<w:pitch w:val="variable" />       
+<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
+w:usb3="00000000" w:csb0="00000001"
+w:csb1="00000000" />   </w:font></w:fonts>
 word/footnotes.xml 
--- a/word/footnotes.xml    2019-07-17 08:35:03.549199200 +0200
+++ b/word/footnotes.xml    2019-07-17 08:35:07.861630400 +0200
@@ -1,45 +1,25 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<w:footnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
-xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
-xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
-xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
-xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
-xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
-xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
-xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
-xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
-xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
-xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
-xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+<?xml version="1.0" encoding="utf-8"?>
+<w:footnotes xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
 xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
+xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:o="urn:schemas-microsoft-com:office:office"
 xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
-xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
 xmlns:w10="urn:schemas-microsoft-com:office:word"
-xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
-xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
-xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
-xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
-xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
-xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
-xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
-xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
-mc:Ignorable="w14 w15 w16se w16cid wp14">
-  <w:footnote w:type="separator" w:id="-1">
-    <w:p w:rsidR="00B24D3E" w:rsidRDefault="00B24D3E">
+xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
+xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"
+xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
+
+  <w:footnote w:type="continuationSeparator" w:id="0">
+    <w:p>
       <w:r>
-        <w:separator />
+        <w:continuationSeparator />
       </w:r>
     </w:p>
   </w:footnote>
-  <w:footnote w:type="continuationSeparator" w:id="0">
-    <w:p w:rsidR="00B24D3E" w:rsidRDefault="00B24D3E">
+  <w:footnote w:type="separator" w:id="-1">
+    <w:p>
       <w:r>
-        <w:continuationSeparator />
+        <w:separator />
       </w:r>
     </w:p>
   </w:footnote>
 word/numbering.xml 
--- a/word/numbering.xml    2019-07-17 08:35:03.835227800 +0200
+++ b/word/numbering.xml    2019-07-17 08:35:08.203664600 +0200
@@ -1,42 +1,12 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<w:numbering xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
-xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
-xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
-xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
-xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
-xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
-xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
-xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
-xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
-xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
-xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
-xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
-xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
-xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
-xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
-xmlns:w10="urn:schemas-microsoft-com:office:word"
-xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
-xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
-xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
-xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
-xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
-xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
-xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
-xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
-mc:Ignorable="w14 w15 w16se w16cid wp14">
-  <w:abstractNum w:abstractNumId="0"
-  w15:restartNumberingAfterBreak="0">
-    <w:nsid w:val="EA454B4C" />
+<?xml version="1.0" encoding="utf-8"?>
+<w:numbering xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
+
+  <w:abstractNum w:abstractNumId="990">
+    <w:nsid w:val="2c1ae401" />
     <w:multiLevelType w:val="multilevel" />
-    <w:tmpl w:val="779C079A" />
     <w:lvl w:ilvl="0">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -47,7 +17,7 @@
     </w:lvl>
     <w:lvl w:ilvl="1">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="–" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -58,7 +28,7 @@
     </w:lvl>
     <w:lvl w:ilvl="2">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -69,7 +39,7 @@
     </w:lvl>
     <w:lvl w:ilvl="3">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="–" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -80,7 +50,7 @@
     </w:lvl>
     <w:lvl w:ilvl="4">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -91,7 +61,7 @@
     </w:lvl>
     <w:lvl w:ilvl="5">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="–" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -102,7 +72,7 @@
     </w:lvl>
     <w:lvl w:ilvl="6">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -113,7 +83,7 @@
     </w:lvl>
     <w:lvl w:ilvl="7">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="–" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -124,7 +94,7 @@
     </w:lvl>
     <w:lvl w:ilvl="8">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -134,14 +104,12 @@
       </w:pPr>
     </w:lvl>
   </w:abstractNum>
-  <w:abstractNum w:abstractNumId="1"
-  w15:restartNumberingAfterBreak="0">
-    <w:nsid w:val="2C1AE401" />
+  <w:abstractNum w:abstractNumId="991">
+    <w:nsid w:val="ea454b4c" />
     <w:multiLevelType w:val="multilevel" />
-    <w:tmpl w:val="C7BAC1EE" />
     <w:lvl w:ilvl="0">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -152,7 +120,7 @@
     </w:lvl>
     <w:lvl w:ilvl="1">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="–" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -163,7 +131,7 @@
     </w:lvl>
     <w:lvl w:ilvl="2">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -174,7 +142,7 @@
     </w:lvl>
     <w:lvl w:ilvl="3">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="–" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -185,7 +153,7 @@
     </w:lvl>
     <w:lvl w:ilvl="4">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -196,7 +164,7 @@
     </w:lvl>
     <w:lvl w:ilvl="5">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="–" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -207,7 +175,7 @@
     </w:lvl>
     <w:lvl w:ilvl="6">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -218,7 +186,7 @@
     </w:lvl>
     <w:lvl w:ilvl="7">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="–" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -229,7 +197,7 @@
     </w:lvl>
     <w:lvl w:ilvl="8">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -239,10 +207,10 @@
       </w:pPr>
     </w:lvl>
   </w:abstractNum>
-  <w:num w:numId="1">
-    <w:abstractNumId w:val="1" />
+  <w:num w:numId="1000">
+    <w:abstractNumId w:val="990" />
   </w:num>
-  <w:num w:numId="2">
-    <w:abstractNumId w:val="0" />
+  <w:num w:numId="1001">
+    <w:abstractNumId w:val="991" />
   </w:num>
 </w:numbering>
 word/settings.xml 
--- a/word/settings.xml 2019-07-17 08:35:04.114255700 +0200
+++ b/word/settings.xml 2019-07-17 08:35:08.494693700 +0200
@@ -1,75 +1,48 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-xmlns:o="urn:schemas-microsoft-com:office:office"
+<?xml version="1.0" encoding="utf-8"?>
+<w:settings xmlns:o="urn:schemas-microsoft-com:office:office"
 xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
 xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
 xmlns:v="urn:schemas-microsoft-com:vml"
 xmlns:w10="urn:schemas-microsoft-com:office:word"
 xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
-xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
-xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
-xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
-xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
-mc:Ignorable="w14 w15 w16se w16cid">
-  <w:zoom w:percent="100" />
+xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main">
+
+  <w:zoom w:percent="90" />
   <w:embedSystemFonts />
   <w:proofState w:spelling="clean" w:grammar="clean" />
-  <w:stylePaneFormatFilter w:val="0004" w:allStyles="0"
-  w:customStyles="0" w:latentStyles="1" w:stylesInUse="0"
-  w:headingStyles="0" w:numberingStyles="0" w:tableStyles="0"
-  w:directFormattingOnRuns="0" w:directFormattingOnParagraphs="0"
-  w:directFormattingOnNumbering="0" w:directFormattingOnTables="0"
-  w:clearFormatting="0" w:top3HeadingStyles="0" w:visibleStyles="0"
-  w:alternateStyleNames="0" />
+  <w:stylePaneFormatFilter w:val="0004" />
+  <w:footnotePr>
+    <w:footnote w:id="-1" />
+    <w:footnote w:id="0" />
+  </w:footnotePr>
   <w:doNotTrackMoves />
   <w:defaultTabStop w:val="720" />
-  <w:hyphenationZone w:val="425" />
   <w:drawingGridHorizontalSpacing w:val="360" />
   <w:drawingGridVerticalSpacing w:val="360" />
   <w:displayHorizontalDrawingGridEvery w:val="0" />
   <w:displayVerticalDrawingGridEvery w:val="0" />
   <w:characterSpacingControl w:val="doNotCompress" />
   <w:savePreviewPicture />
-  <w:footnotePr>
-    <w:footnote w:id="-1" />
-    <w:footnote w:id="0" />
-  </w:footnotePr>
-  <w:endnotePr>
-    <w:endnote w:id="-1" />
-    <w:endnote w:id="0" />
-  </w:endnotePr>
-  <w:compat>
-    <w:compatSetting w:name="compatibilityMode"
-    w:uri="http://schemas.microsoft.com/office/word" w:val="12" />
-    <w:compatSetting w:name="useWord2013TrackBottomHyphenation"
-    w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
-  </w:compat>
   <w:rsids>
     <w:rsidRoot w:val="00590D07" />
     <w:rsid w:val="00011C8B" />
-    <w:rsid w:val="003007FF" />
     <w:rsid w:val="004E29B3" />
     <w:rsid w:val="00590D07" />
     <w:rsid w:val="00784D58" />
     <w:rsid w:val="008D6863" />
-    <w:rsid w:val="00B24D3E" />
     <w:rsid w:val="00B86B75" />
     <w:rsid w:val="00BC48D5" />
     <w:rsid w:val="00C36279" />
-    <w:rsid w:val="00C62C5F" />
     <w:rsid w:val="00E315A3" />
-    <w:rsid w:val="00E32E9C" />
   </w:rsids>
   <m:mathPr>
-    <m:mathFont m:val="Cambria Math" />
+    <m:mathFont m:val="Lucida Grande" />
     <m:brkBin m:val="before" />
     <m:brkBinSub m:val="--" />
-    <m:smallFrac m:val="0" />
-    <m:dispDef m:val="0" />
+    <m:smallFrac m:val="false" />
+    <m:dispDef m:val="false" />
     <m:lMargin m:val="0" />
     <m:rMargin m:val="0" />
-    <m:defJc m:val="centerGroup" />
     <m:wrapRight />
     <m:intLim m:val="subSup" />
     <m:naryLim m:val="subSup" />
@@ -80,14 +53,6 @@
   w:accent3="accent3" w:accent4="accent4" w:accent5="accent5"
   w:accent6="accent6" w:hyperlink="hyperlink"
   w:followedHyperlink="followedHyperlink" />
-  <w:shapeDefaults>
-    <o:shapedefaults v:ext="edit" spidmax="1026" />
-    <o:shapelayout v:ext="edit">
-      <o:idmap v:ext="edit" data="1" />
-    </o:shapelayout>
-  </w:shapeDefaults>
-  <w:decimalSymbol w:val="," />
-  <w:listSeparator w:val=";" />
-  <w14:docId w14:val="5006247A" />
-  <w15:docId w15:val="{FF4E8667-3947-4B6E-94B6-1D266E477BEB}" />
+  <w:decimalSymbol w:val="." />
+  <w:listSeparator w:val="," />
 </w:settings>
 word/styles.xml 
--- a/word/styles.xml   2019-07-17 08:35:04.421286400 +0200
+++ b/word/styles.xml   2019-07-17 08:35:08.761720400 +0200
@@ -1,12 +1,7 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<w:styles xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
-xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
-xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
-xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
-xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
-mc:Ignorable="w14 w15 w16se w16cid">
+<?xml version="1.0" encoding="utf-8"?>
+<w:styles xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
+
   <w:docDefaults>
     <w:rPrDefault>
       <w:rPr>
@@ -26,571 +21,123 @@
   </w:docDefaults>
   <w:latentStyles w:defLockedState="0" w:defUIPriority="0"
   w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0"
-  w:count="375">
-    <w:lsdException w:name="heading 6" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="index 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="index 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="index 5" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="index 6" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="index 7" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="index 8" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="index 9" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 5" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 6" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 7" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 8" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toc 9" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Normal Indent" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="footnote text" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="annotation text" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="header" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="footer" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="index heading" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="caption" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="table of figures" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="envelope address" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="envelope return" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="footnote reference" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="annotation reference" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="line number" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="page number" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="endnote reference" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="endnote text" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="table of authorities" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="macro" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="toa heading" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Bullet" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Number" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List 5" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Bullet 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Bullet 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Number 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Number 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Number 5" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Closing" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Signature" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Default Paragraph Font"
-    w:semiHidden="1" w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Body Text" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Body Text Indent" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Continue" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Continue 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Continue 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Continue 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="List Continue 5" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Message Header" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Salutation" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Date" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Body Text First Indent"
-    w:semiHidden="1" w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Body Text First Indent 2"
-    w:semiHidden="1" w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Body Text Indent 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Block Text" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Hyperlink" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="FollowedHyperlink" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Document Map" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Plain Text" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="E-mail Signature" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Top of Form" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Normal (Web)" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Acronym" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Address" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Cite" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Code" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Definition" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Keyboard" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Preformatted" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Sample" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Typewriter" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="HTML Variable" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Normal Table" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="annotation subject" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="No List" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Outline List 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Outline List 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Outline List 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Simple 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Simple 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Simple 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Classic 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Classic 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Classic 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Classic 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Colorful 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Colorful 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Colorful 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Columns 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Columns 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Columns 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Columns 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Columns 5" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Grid 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Grid 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Grid 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Grid 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Grid 5" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Grid 6" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Grid 7" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Grid 8" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table List 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table List 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table List 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table List 4" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table List 5" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table List 6" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table List 7" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table List 8" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table 3D effects 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table 3D effects 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table 3D effects 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Contemporary" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Elegant" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Professional" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Subtle 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Subtle 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Web 1" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Web 2" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Web 3" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Balloon Text" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Table Theme" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Placeholder Text" w:semiHidden="1" />
-    <w:lsdException w:name="Light Shading" />
-    <w:lsdException w:name="Light List" />
-    <w:lsdException w:name="Light Grid" />
-    <w:lsdException w:name="Dark List" />
-    <w:lsdException w:name="Colorful Shading" />
-    <w:lsdException w:name="Colorful List" />
-    <w:lsdException w:name="Colorful Grid" />
-    <w:lsdException w:name="Light Shading Accent 1" />
-    <w:lsdException w:name="Light List Accent 1" />
-    <w:lsdException w:name="Light Grid Accent 1" />
-    <w:lsdException w:name="Medium Shading 1 Accent 1" />
-    <w:lsdException w:name="Medium Shading 2 Accent 1" />
-    <w:lsdException w:name="Medium List 1 Accent 1" />
-    <w:lsdException w:name="Revision" w:semiHidden="1" />
-    <w:lsdException w:name="Medium List 2 Accent 1" />
-    <w:lsdException w:name="Medium Grid 1 Accent 1" />
-    <w:lsdException w:name="Medium Grid 2 Accent 1" />
-    <w:lsdException w:name="Medium Grid 3 Accent 1" />
-    <w:lsdException w:name="Dark List Accent 1" />
-    <w:lsdException w:name="Colorful Shading Accent 1" />
-    <w:lsdException w:name="Colorful List Accent 1" />
-    <w:lsdException w:name="Colorful Grid Accent 1" />
-    <w:lsdException w:name="Light Shading Accent 2" />
-    <w:lsdException w:name="Light List Accent 2" />
-    <w:lsdException w:name="Light Grid Accent 2" />
-    <w:lsdException w:name="Medium Shading 1 Accent 2" />
-    <w:lsdException w:name="Medium Shading 2 Accent 2" />
-    <w:lsdException w:name="Medium List 1 Accent 2" />
-    <w:lsdException w:name="Medium List 2 Accent 2" />
-    <w:lsdException w:name="Medium Grid 1 Accent 2" />
-    <w:lsdException w:name="Medium Grid 2 Accent 2" />
-    <w:lsdException w:name="Medium Grid 3 Accent 2" />
-    <w:lsdException w:name="Dark List Accent 2" />
-    <w:lsdException w:name="Colorful Shading Accent 2" />
-    <w:lsdException w:name="Colorful List Accent 2" />
-    <w:lsdException w:name="Colorful Grid Accent 2" />
-    <w:lsdException w:name="Light Shading Accent 3" />
-    <w:lsdException w:name="Light List Accent 3" />
-    <w:lsdException w:name="Light Grid Accent 3" />
-    <w:lsdException w:name="Medium Shading 1 Accent 3" />
-    <w:lsdException w:name="Medium Shading 2 Accent 3" />
-    <w:lsdException w:name="Medium List 1 Accent 3" />
-    <w:lsdException w:name="Medium List 2 Accent 3" />
-    <w:lsdException w:name="Medium Grid 1 Accent 3" />
-    <w:lsdException w:name="Medium Grid 2 Accent 3" />
-    <w:lsdException w:name="Medium Grid 3 Accent 3" />
-    <w:lsdException w:name="Dark List Accent 3" />
-    <w:lsdException w:name="Colorful Shading Accent 3" />
-    <w:lsdException w:name="Colorful List Accent 3" />
-    <w:lsdException w:name="Colorful Grid Accent 3" />
-    <w:lsdException w:name="Light Shading Accent 4" />
-    <w:lsdException w:name="Light List Accent 4" />
-    <w:lsdException w:name="Light Grid Accent 4" />
-    <w:lsdException w:name="Medium Shading 1 Accent 4" />
-    <w:lsdException w:name="Medium Shading 2 Accent 4" />
-    <w:lsdException w:name="Medium List 1 Accent 4" />
-    <w:lsdException w:name="Medium List 2 Accent 4" />
-    <w:lsdException w:name="Medium Grid 1 Accent 4" />
-    <w:lsdException w:name="Medium Grid 2 Accent 4" />
-    <w:lsdException w:name="Medium Grid 3 Accent 4" />
-    <w:lsdException w:name="Dark List Accent 4" />
-    <w:lsdException w:name="Colorful Shading Accent 4" />
-    <w:lsdException w:name="Colorful List Accent 4" />
-    <w:lsdException w:name="Colorful Grid Accent 4" />
-    <w:lsdException w:name="Light Shading Accent 5" />
-    <w:lsdException w:name="Light List Accent 5" />
-    <w:lsdException w:name="Light Grid Accent 5" />
-    <w:lsdException w:name="Medium Shading 1 Accent 5" />
-    <w:lsdException w:name="Medium Shading 2 Accent 5" />
-    <w:lsdException w:name="Medium List 1 Accent 5" />
-    <w:lsdException w:name="Medium List 2 Accent 5" />
-    <w:lsdException w:name="Medium Grid 1 Accent 5" />
-    <w:lsdException w:name="Medium Grid 2 Accent 5" />
-    <w:lsdException w:name="Medium Grid 3 Accent 5" />
-    <w:lsdException w:name="Dark List Accent 5" />
-    <w:lsdException w:name="Colorful Shading Accent 5" />
-    <w:lsdException w:name="Colorful List Accent 5" />
-    <w:lsdException w:name="Colorful Grid Accent 5" />
-    <w:lsdException w:name="Light Shading Accent 6" />
-    <w:lsdException w:name="Light List Accent 6" />
-    <w:lsdException w:name="Light Grid Accent 6" />
-    <w:lsdException w:name="Medium Shading 1 Accent 6" />
-    <w:lsdException w:name="Medium Shading 2 Accent 6" />
-    <w:lsdException w:name="Medium List 1 Accent 6" />
-    <w:lsdException w:name="Medium List 2 Accent 6" />
-    <w:lsdException w:name="Medium Grid 1 Accent 6" />
-    <w:lsdException w:name="Medium Grid 2 Accent 6" />
-    <w:lsdException w:name="Medium Grid 3 Accent 6" />
-    <w:lsdException w:name="Dark List Accent 6" />
-    <w:lsdException w:name="Colorful Shading Accent 6" />
-    <w:lsdException w:name="Colorful List Accent 6" />
-    <w:lsdException w:name="Colorful Grid Accent 6" />
-    <w:lsdException w:name="Bibliography" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="TOC Heading" w:semiHidden="1"
-    w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Grid Table 4" w:uiPriority="49" />
-    <w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50" />
-    <w:lsdException w:name="Grid Table 6 Colorful"
-    w:uiPriority="51" />
-    <w:lsdException w:name="Grid Table 7 Colorful"
-    w:uiPriority="52" />
-    <w:lsdException w:name="Grid Table 1 Light Accent 1"
-    w:uiPriority="46" />
-    <w:lsdException w:name="Grid Table 2 Accent 1"
-    w:uiPriority="47" />
-    <w:lsdException w:name="Grid Table 3 Accent 1"
-    w:uiPriority="48" />
-    <w:lsdException w:name="Grid Table 4 Accent 1"
-    w:uiPriority="49" />
-    <w:lsdException w:name="Grid Table 5 Dark Accent 1"
-    w:uiPriority="50" />
-    <w:lsdException w:name="Grid Table 6 Colorful Accent 1"
-    w:uiPriority="51" />
-    <w:lsdException w:name="Grid Table 7 Colorful Accent 1"
-    w:uiPriority="52" />
-    <w:lsdException w:name="Grid Table 1 Light Accent 2"
-    w:uiPriority="46" />
-    <w:lsdException w:name="Grid Table 2 Accent 2"
-    w:uiPriority="47" />
-    <w:lsdException w:name="Grid Table 3 Accent 2"
-    w:uiPriority="48" />
-    <w:lsdException w:name="Grid Table 4 Accent 2"
-    w:uiPriority="49" />
-    <w:lsdException w:name="Grid Table 5 Dark Accent 2"
-    w:uiPriority="50" />
-    <w:lsdException w:name="Grid Table 6 Colorful Accent 2"
-    w:uiPriority="51" />
-    <w:lsdException w:name="Grid Table 7 Colorful Accent 2"
-    w:uiPriority="52" />
-    <w:lsdException w:name="Grid Table 1 Light Accent 3"
-    w:uiPriority="46" />
-    <w:lsdException w:name="Grid Table 2 Accent 3"
-    w:uiPriority="47" />
-    <w:lsdException w:name="Grid Table 3 Accent 3"
-    w:uiPriority="48" />
-    <w:lsdException w:name="Grid Table 4 Accent 3"
-    w:uiPriority="49" />
-    <w:lsdException w:name="Grid Table 5 Dark Accent 3"
-    w:uiPriority="50" />
-    <w:lsdException w:name="Grid Table 6 Colorful Accent 3"
-    w:uiPriority="51" />
-    <w:lsdException w:name="Grid Table 7 Colorful Accent 3"
-    w:uiPriority="52" />
-    <w:lsdException w:name="Grid Table 1 Light Accent 4"
-    w:uiPriority="46" />
-    <w:lsdException w:name="Grid Table 2 Accent 4"
-    w:uiPriority="47" />
-    <w:lsdException w:name="Grid Table 3 Accent 4"
-    w:uiPriority="48" />
-    <w:lsdException w:name="Grid Table 4 Accent 4"
-    w:uiPriority="49" />
-    <w:lsdException w:name="Grid Table 5 Dark Accent 4"
-    w:uiPriority="50" />
-    <w:lsdException w:name="Grid Table 6 Colorful Accent 4"
-    w:uiPriority="51" />
-    <w:lsdException w:name="Grid Table 7 Colorful Accent 4"
-    w:uiPriority="52" />
-    <w:lsdException w:name="Grid Table 1 Light Accent 5"
-    w:uiPriority="46" />
-    <w:lsdException w:name="Grid Table 2 Accent 5"
-    w:uiPriority="47" />
-    <w:lsdException w:name="Grid Table 3 Accent 5"
-    w:uiPriority="48" />
-    <w:lsdException w:name="Grid Table 4 Accent 5"
-    w:uiPriority="49" />
-    <w:lsdException w:name="Grid Table 5 Dark Accent 5"
-    w:uiPriority="50" />
-    <w:lsdException w:name="Grid Table 6 Colorful Accent 5"
-    w:uiPriority="51" />
-    <w:lsdException w:name="Grid Table 7 Colorful Accent 5"
-    w:uiPriority="52" />
-    <w:lsdException w:name="Grid Table 1 Light Accent 6"
-    w:uiPriority="46" />
-    <w:lsdException w:name="Grid Table 2 Accent 6"
-    w:uiPriority="47" />
-    <w:lsdException w:name="Grid Table 3 Accent 6"
-    w:uiPriority="48" />
-    <w:lsdException w:name="Grid Table 4 Accent 6"
-    w:uiPriority="49" />
-    <w:lsdException w:name="Grid Table 5 Dark Accent 6"
-    w:uiPriority="50" />
-    <w:lsdException w:name="Grid Table 6 Colorful Accent 6"
-    w:uiPriority="51" />
-    <w:lsdException w:name="Grid Table 7 Colorful Accent 6"
-    w:uiPriority="52" />
-    <w:lsdException w:name="List Table 1 Light"
-    w:uiPriority="46" />
-    <w:lsdException w:name="List Table 2" w:uiPriority="47" />
-    <w:lsdException w:name="List Table 3" w:uiPriority="48" />
-    <w:lsdException w:name="List Table 4" w:uiPriority="49" />
-    <w:lsdException w:name="List Table 5 Dark" w:uiPriority="50" />
-    <w:lsdException w:name="List Table 6 Colorful"
-    w:uiPriority="51" />
-    <w:lsdException w:name="List Table 7 Colorful"
-    w:uiPriority="52" />
-    <w:lsdException w:name="List Table 1 Light Accent 1"
-    w:uiPriority="46" />
-    <w:lsdException w:name="List Table 2 Accent 1"
-    w:uiPriority="47" />
-    <w:lsdException w:name="List Table 3 Accent 1"
-    w:uiPriority="48" />
-    <w:lsdException w:name="List Table 4 Accent 1"
-    w:uiPriority="49" />
-    <w:lsdException w:name="List Table 5 Dark Accent 1"
-    w:uiPriority="50" />
-    <w:lsdException w:name="List Table 6 Colorful Accent 1"
-    w:uiPriority="51" />
-    <w:lsdException w:name="List Table 7 Colorful Accent 1"
-    w:uiPriority="52" />
-    <w:lsdException w:name="List Table 1 Light Accent 2"
-    w:uiPriority="46" />
-    <w:lsdException w:name="List Table 2 Accent 2"
-    w:uiPriority="47" />
-    <w:lsdException w:name="List Table 3 Accent 2"
-    w:uiPriority="48" />
-    <w:lsdException w:name="List Table 4 Accent 2"
-    w:uiPriority="49" />
-    <w:lsdException w:name="List Table 5 Dark Accent 2"
-    w:uiPriority="50" />
-    <w:lsdException w:name="List Table 6 Colorful Accent 2"
-    w:uiPriority="51" />
-    <w:lsdException w:name="List Table 7 Colorful Accent 2"
-    w:uiPriority="52" />
-    <w:lsdException w:name="List Table 1 Light Accent 3"
-    w:uiPriority="46" />
-    <w:lsdException w:name="List Table 2 Accent 3"
-    w:uiPriority="47" />
-    <w:lsdException w:name="List Table 3 Accent 3"
-    w:uiPriority="48" />
-    <w:lsdException w:name="List Table 4 Accent 3"
-    w:uiPriority="49" />
-    <w:lsdException w:name="List Table 5 Dark Accent 3"
-    w:uiPriority="50" />
-    <w:lsdException w:name="List Table 6 Colorful Accent 3"
-    w:uiPriority="51" />
-    <w:lsdException w:name="List Table 7 Colorful Accent 3"
-    w:uiPriority="52" />
-    <w:lsdException w:name="List Table 1 Light Accent 4"
-    w:uiPriority="46" />
-    <w:lsdException w:name="List Table 2 Accent 4"
-    w:uiPriority="47" />
-    <w:lsdException w:name="List Table 3 Accent 4"
-    w:uiPriority="48" />
-    <w:lsdException w:name="List Table 4 Accent 4"
-    w:uiPriority="49" />
-    <w:lsdException w:name="List Table 5 Dark Accent 4"
-    w:uiPriority="50" />
-    <w:lsdException w:name="List Table 6 Colorful Accent 4"
-    w:uiPriority="51" />
-    <w:lsdException w:name="List Table 7 Colorful Accent 4"
-    w:uiPriority="52" />
-    <w:lsdException w:name="List Table 1 Light Accent 5"
-    w:uiPriority="46" />
-    <w:lsdException w:name="List Table 2 Accent 5"
-    w:uiPriority="47" />
-    <w:lsdException w:name="List Table 3 Accent 5"
-    w:uiPriority="48" />
-    <w:lsdException w:name="List Table 4 Accent 5"
-    w:uiPriority="49" />
-    <w:lsdException w:name="List Table 5 Dark Accent 5"
-    w:uiPriority="50" />
-    <w:lsdException w:name="List Table 6 Colorful Accent 5"
-    w:uiPriority="51" />
-    <w:lsdException w:name="List Table 7 Colorful Accent 5"
-    w:uiPriority="52" />
-    <w:lsdException w:name="List Table 1 Light Accent 6"
-    w:uiPriority="46" />
-    <w:lsdException w:name="List Table 2 Accent 6"
-    w:uiPriority="47" />
-    <w:lsdException w:name="List Table 3 Accent 6"
-    w:uiPriority="48" />
-    <w:lsdException w:name="List Table 4 Accent 6"
-    w:uiPriority="49" />
-    <w:lsdException w:name="List Table 5 Dark Accent 6"
-    w:uiPriority="50" />
-    <w:lsdException w:name="List Table 6 Colorful Accent 6"
-    w:uiPriority="51" />
-    <w:lsdException w:name="List Table 7 Colorful Accent 6"
-    w:uiPriority="52" />
-    <w:lsdException w:name="Mention" w:semiHidden="1"
-    w:uiPriority="99" w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Smart Hyperlink" w:semiHidden="1"
-    w:uiPriority="99" w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Hashtag" w:semiHidden="1"
-    w:uiPriority="99" w:unhideWhenUsed="1" />
-    <w:lsdException w:name="Unresolved Mention" w:semiHidden="1"
-    w:uiPriority="99" w:unhideWhenUsed="1" />
-  </w:latentStyles>
+  w:count="276" />
   <w:style w:type="paragraph" w:default="1" w:styleId="Normal">
     <w:name w:val="Normal" />
     <w:qFormat />
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo1">
-    <w:name w:val="heading 1" />
+  <w:style w:type="paragraph" w:styleId="BodyText">
+    <w:name w:val="Body Text" />
+    <w:basedOn w:val="Normal" />
+    <w:link w:val="BodyTextChar" />
+    <w:pPr>
+      <w:spacing w:before="180" w:after="180" />
+    </w:pPr>
+    <w:qFormat />
+  </w:style>
+  <w:style w:type="paragraph" w:customStyle="1"
+  w:styleId="FirstParagraph">
+    <w:name w:val="First Paragraph" />
+    <w:basedOn w:val="BodyText" />
+    <w:next w:val="BodyText" />
+    <w:qFormat />
+  </w:style>
+  <w:style w:type="paragraph" w:customStyle="1"
+  w:styleId="Compact">
+    <w:name w:val="Compact" />
+    <w:basedOn w:val="BodyText" />
+    <w:qFormat />
+    <w:pPr>
+      <w:spacing w:before="36" w:after="36" />
+    </w:pPr>
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Title">
+    <w:name w:val="Title" />
+    <w:basedOn w:val="Normal" />
+    <w:next w:val="BodyText" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:spacing w:before="480" w:after="240" />
+      <w:jc w:val="center" />
+    </w:pPr>
+    <w:rPr>
+      <w:rFonts w:asciiTheme="majorHAnsi"
+      w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
+      w:cstheme="majorBidi" />
+      <w:b />
+      <w:bCs />
+      <w:color w:val="345A8A" w:themeColor="accent1"
+      w:themeShade="B5" />
+      <w:sz w:val="36" />
+      <w:szCs w:val="36" />
+    </w:rPr>
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Subtitle">
+    <w:name w:val="Subtitle" />
+    <w:basedOn w:val="Title" />
+    <w:next w:val="BodyText" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:spacing w:before="240" w:after="240" />
+      <w:jc w:val="center" />
+    </w:pPr>
+    <w:rPr>
+      <w:sz w:val="30" />
+      <w:szCs w:val="30" />
+    </w:rPr>
+  </w:style>
+  <w:style w:type="paragraph" w:customStyle="1" w:styleId="Author">
+    <w:name w:val="Author" />
+    <w:next w:val="BodyText" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:jc w:val="center" />
+    </w:pPr>
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Date">
+    <w:name w:val="Date" />
+    <w:next w:val="BodyText" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:jc w:val="center" />
+    </w:pPr>
+  </w:style>
+  <w:style w:type="paragraph" w:customStyle="1"
+  w:styleId="Abstract">
+    <w:name w:val="Abstract" />
+    <w:basedOn w:val="Normal" />
+    <w:next w:val="BodyText" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:spacing w:before="300" w:after="300" />
+    </w:pPr>
+    <w:rPr>
+      <w:sz w:val="20" />
+      <w:szCs w:val="20" />
+    </w:rPr>
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Bibliography">
+    <w:name w:val="Bibliography" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="Bibliography" />
+    <w:qFormat />
+    <w:pPr />
+    <w:rPr />
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Heading1">
+    <w:name w:val="Heading 1" />
+    <w:basedOn w:val="Normal" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:qFormat />
     <w:pPr>
@@ -611,10 +158,10 @@
       <w:szCs w:val="32" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo2">
-    <w:name w:val="heading 2" />
+  <w:style w:type="paragraph" w:styleId="Heading2">
+    <w:name w:val="Heading 2" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -635,10 +182,10 @@
       <w:szCs w:val="32" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo3">
-    <w:name w:val="heading 3" />
+  <w:style w:type="paragraph" w:styleId="Heading3">
+    <w:name w:val="Heading 3" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -659,10 +206,10 @@
       <w:szCs w:val="28" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo4">
-    <w:name w:val="heading 4" />
+  <w:style w:type="paragraph" w:styleId="Heading4">
+    <w:name w:val="Heading 4" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -679,12 +226,14 @@
       <w:b />
       <w:bCs />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
+      <w:sz w:val="24" />
+      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo5">
-    <w:name w:val="heading 5" />
+  <w:style w:type="paragraph" w:styleId="Heading5">
+    <w:name w:val="Heading 5" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -701,12 +250,14 @@
       <w:i />
       <w:iCs />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
+      <w:sz w:val="24" />
+      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo6">
-    <w:name w:val="heading 6" />
+  <w:style w:type="paragraph" w:styleId="Heading6">
+    <w:name w:val="Heading 6" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -721,12 +272,14 @@
       w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
       w:cstheme="majorBidi" />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
+      <w:sz w:val="24" />
+      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo7">
-    <w:name w:val="heading 7" />
+  <w:style w:type="paragraph" w:styleId="Heading7">
+    <w:name w:val="Heading 7" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -741,12 +294,14 @@
       w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
       w:cstheme="majorBidi" />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
+      <w:sz w:val="24" />
+      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo8">
-    <w:name w:val="heading 8" />
+  <w:style w:type="paragraph" w:styleId="Heading8">
+    <w:name w:val="Heading 8" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -761,12 +316,14 @@
       w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
       w:cstheme="majorBidi" />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
+      <w:sz w:val="24" />
+      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo9">
-    <w:name w:val="heading 9" />
+  <w:style w:type="paragraph" w:styleId="Heading9">
+    <w:name w:val="Heading 9" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -781,146 +338,20 @@
       w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
       w:cstheme="majorBidi" />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
+      <w:sz w:val="24" />
+      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="character" w:default="1"
-  w:styleId="Fuentedeprrafopredeter">
-    <w:name w:val="Default Paragraph Font" />
-    <w:uiPriority w:val="1" />
-    <w:semiHidden />
-    <w:unhideWhenUsed />
-  </w:style>
-  <w:style w:type="table" w:default="1" w:styleId="Tablanormal">
-    <w:name w:val="Normal Table" />
-    <w:uiPriority w:val="99" />
-    <w:semiHidden />
-    <w:unhideWhenUsed />
-    <w:tblPr>
-      <w:tblInd w:w="0" w:type="dxa" />
-      <w:tblCellMar>
-        <w:top w:w="0" w:type="dxa" />
-        <w:left w:w="108" w:type="dxa" />
-        <w:bottom w:w="0" w:type="dxa" />
-        <w:right w:w="108" w:type="dxa" />
-      </w:tblCellMar>
-    </w:tblPr>
-  </w:style>
-  <w:style w:type="numbering" w:default="1" w:styleId="Sinlista">
-    <w:name w:val="No List" />
-    <w:uiPriority w:val="99" />
-    <w:semiHidden />
-    <w:unhideWhenUsed />
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Textoindependiente">
-    <w:name w:val="Body Text" />
-    <w:basedOn w:val="Normal" />
-    <w:qFormat />
-    <w:pPr>
-      <w:spacing w:before="180" w:after="180" />
-    </w:pPr>
-  </w:style>
-  <w:style w:type="paragraph" w:customStyle="1"
-  w:styleId="FirstParagraph">
-    <w:name w:val="First Paragraph" />
-    <w:basedOn w:val="Textoindependiente" />
-    <w:next w:val="Textoindependiente" />
-    <w:qFormat />
-  </w:style>
-  <w:style w:type="paragraph" w:customStyle="1"
-  w:styleId="Compact">
-    <w:name w:val="Compact" />
-    <w:basedOn w:val="Textoindependiente" />
-    <w:qFormat />
-    <w:pPr>
-      <w:spacing w:before="36" w:after="36" />
-    </w:pPr>
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Ttulo">
-    <w:name w:val="Title" />
-    <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:spacing w:before="480" w:after="240" />
-      <w:jc w:val="center" />
-    </w:pPr>
-    <w:rPr>
-      <w:rFonts w:asciiTheme="majorHAnsi"
-      w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
-      w:cstheme="majorBidi" />
-      <w:b />
-      <w:bCs />
-      <w:color w:val="345A8A" w:themeColor="accent1"
-      w:themeShade="B5" />
-      <w:sz w:val="36" />
-      <w:szCs w:val="36" />
-    </w:rPr>
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Subttulo">
-    <w:name w:val="Subtitle" />
-    <w:basedOn w:val="Ttulo" />
-    <w:next w:val="Textoindependiente" />
-    <w:qFormat />
-    <w:pPr>
-      <w:spacing w:before="240" />
-    </w:pPr>
-    <w:rPr>
-      <w:sz w:val="30" />
-      <w:szCs w:val="30" />
-    </w:rPr>
-  </w:style>
-  <w:style w:type="paragraph" w:customStyle="1" w:styleId="Author">
-    <w:name w:val="Author" />
-    <w:next w:val="Textoindependiente" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:jc w:val="center" />
-    </w:pPr>
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Fecha">
-    <w:name w:val="Date" />
-    <w:next w:val="Textoindependiente" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:jc w:val="center" />
-    </w:pPr>
-  </w:style>
-  <w:style w:type="paragraph" w:customStyle="1"
-  w:styleId="Abstract">
-    <w:name w:val="Abstract" />
-    <w:basedOn w:val="Normal" />
-    <w:next w:val="Textoindependiente" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:spacing w:before="300" w:after="300" />
-    </w:pPr>
-    <w:rPr>
-      <w:sz w:val="20" />
-      <w:szCs w:val="20" />
-    </w:rPr>
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Bibliografa">
-    <w:name w:val="Bibliography" />
-    <w:basedOn w:val="Normal" />
-    <w:qFormat />
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Textodebloque">
+  <w:style w:type="paragraph" w:styleId="BlockText">
     <w:name w:val="Block Text" />
-    <w:basedOn w:val="Textoindependiente" />
-    <w:next w:val="Textoindependiente" />
+    <w:basedOn w:val="BodyText" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
     <w:pPr>
       <w:spacing w:before="100" w:after="100" />
+      <w:ind w:firstLine="0" />
     </w:pPr>
     <w:rPr>
       <w:rFonts w:asciiTheme="majorHAnsi"
@@ -931,15 +362,23 @@
       <w:szCs w:val="20" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Textonotapie">
-    <w:name w:val="footnote text" />
+  <w:style w:type="paragraph" w:styleId="FootnoteText">
+    <w:name w:val="Footnote Text" />
     <w:basedOn w:val="Normal" />
+    <w:next w:val="FootnoteText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
   </w:style>
-  <w:style w:type="table" w:customStyle="1" w:styleId="Table">
+  <w:style w:type="character" w:default="1"
+  w:styleId="DefaultParagraphFont">
+    <w:name w:val="Default Paragraph Font" />
+    <w:semiHidden />
+    <w:unhideWhenUsed />
+  </w:style>
+  <w:style w:type="table" w:default="1" w:styleId="Table">
     <w:name w:val="Table" />
+    <w:basedOn w:val="TableNormal" />
     <w:semiHidden />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -972,12 +411,12 @@
     <w:name w:val="Definition" />
     <w:basedOn w:val="Normal" />
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Descripcin">
-    <w:name w:val="caption" />
+  <w:style w:type="paragraph" w:styleId="Caption">
+    <w:name w:val="Caption" />
     <w:basedOn w:val="Normal" />
-    <w:link w:val="DescripcinCar" />
+    <w:link w:val="BodyTextChar" />
     <w:pPr>
-      <w:spacing w:after="120" />
+      <w:spacing w:before="0" w:after="120" />
     </w:pPr>
     <w:rPr>
       <w:i />
@@ -986,7 +425,7 @@
   <w:style w:type="paragraph" w:customStyle="1"
   w:styleId="TableCaption">
     <w:name w:val="Table Caption" />
-    <w:basedOn w:val="Descripcin" />
+    <w:basedOn w:val="Caption" />
     <w:pPr>
       <w:keepNext />
     </w:pPr>
@@ -994,7 +433,7 @@
   <w:style w:type="paragraph" w:customStyle="1"
   w:styleId="ImageCaption">
     <w:name w:val="Image Caption" />
-    <w:basedOn w:val="Descripcin" />
+    <w:basedOn w:val="Caption" />
   </w:style>
   <w:style w:type="paragraph" w:customStyle="1" w:styleId="Figure">
     <w:name w:val="Figure" />
@@ -1009,39 +448,38 @@
     </w:pPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
-  w:styleId="DescripcinCar">
-    <w:name w:val="Descripción Car" />
-    <w:basedOn w:val="Fuentedeprrafopredeter" />
-    <w:link w:val="Descripcin" />
+  w:styleId="BodyTextChar">
+    <w:name w:val="Body Text Char" />
+    <w:basedOn w:val="DefaultParagraphFont" />
+    <w:link w:val="BodyText" />
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="VerbatimChar">
     <w:name w:val="Verbatim Char" />
-    <w:basedOn w:val="DescripcinCar" />
-    <w:link w:val="SourceCode" />
+    <w:basedOn w:val="BodyTextChar" />
     <w:rPr>
       <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:sz w:val="22" />
     </w:rPr>
   </w:style>
-  <w:style w:type="character" w:styleId="Refdenotaalpie">
-    <w:name w:val="footnote reference" />
-    <w:basedOn w:val="DescripcinCar" />
+  <w:style w:type="character" w:styleId="FootnoteReference">
+    <w:name w:val="Footnote Reference" />
+    <w:basedOn w:val="BodyTextChar" />
     <w:rPr>
       <w:vertAlign w:val="superscript" />
     </w:rPr>
   </w:style>
-  <w:style w:type="character" w:styleId="Hipervnculo">
+  <w:style w:type="character" w:styleId="Hyperlink">
     <w:name w:val="Hyperlink" />
-    <w:basedOn w:val="DescripcinCar" />
+    <w:basedOn w:val="BodyTextChar" />
     <w:rPr>
       <w:color w:val="4F81BD" w:themeColor="accent1" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="TtuloTDC">
+  <w:style w:type="paragraph" w:styleId="TOCHeading">
     <w:name w:val="TOC Heading" />
-    <w:basedOn w:val="Ttulo1" />
-    <w:next w:val="Textoindependiente" />
+    <w:basedOn w:val="Heading1" />
+    <w:next w:val="BodyText" />
     <w:uiPriority w:val="39" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -1050,6 +488,9 @@
       <w:outlineLvl w:val="9" />
     </w:pPr>
     <w:rPr>
+      <w:rFonts w:asciiTheme="majorHAnsi"
+      w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
+      w:cstheme="majorBidi" />
       <w:b w:val="0" />
       <w:bCs w:val="0" />
       <w:color w:val="365F91" w:themeColor="accent1"
@@ -1062,7 +503,7 @@
     <w:basedOn w:val="Normal" />
     <w:link w:val="VerbatimChar" />
     <w:pPr>
-      <w:wordWrap w:val="0" />
+      <w:wordWrap w:val="off" />
     </w:pPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1070,10 +511,8 @@
     <w:name w:val="KeywordTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:b />
       <w:color w:val="007020" />
-      <w:sz w:val="22" />
+      <w:b />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1081,9 +520,7 @@
     <w:name w:val="DataTypeTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:color w:val="902000" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1091,9 +528,7 @@
     <w:name w:val="DecValTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="40A070" />
-      <w:sz w:val="22" />
+      <w:color w:val="40a070" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1101,9 +536,7 @@
     <w:name w:val="BaseNTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="40A070" />
-      <w:sz w:val="22" />
+      <w:color w:val="40a070" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1111,9 +544,7 @@
     <w:name w:val="FloatTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="40A070" />
-      <w:sz w:val="22" />
+      <w:color w:val="40a070" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1121,9 +552,7 @@
     <w:name w:val="ConstantTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:color w:val="880000" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1131,9 +560,7 @@
     <w:name w:val="CharTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="4070A0" />
-      <w:sz w:val="22" />
+      <w:color w:val="4070a0" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1141,9 +568,7 @@
     <w:name w:val="SpecialCharTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="4070A0" />
-      <w:sz w:val="22" />
+      <w:color w:val="4070a0" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1151,9 +576,7 @@
     <w:name w:val="StringTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="4070A0" />
-      <w:sz w:val="22" />
+      <w:color w:val="4070a0" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1161,9 +584,7 @@
     <w:name w:val="VerbatimStringTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="4070A0" />
-      <w:sz w:val="22" />
+      <w:color w:val="4070a0" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1171,29 +592,22 @@
     <w:name w:val="SpecialStringTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="BB6688" />
-      <w:sz w:val="22" />
+      <w:color w:val="bb6688" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="ImportTok">
     <w:name w:val="ImportTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:sz w:val="22" />
-    </w:rPr>
+    <w:rPr />
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="CommentTok">
     <w:name w:val="CommentTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="60a0b0" />
       <w:i />
-      <w:color w:val="60A0B0" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1201,10 +615,8 @@
     <w:name w:val="DocumentationTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="ba2121" />
       <w:i />
-      <w:color w:val="BA2121" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1212,11 +624,9 @@
     <w:name w:val="AnnotationTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="60a0b0" />
       <w:b />
       <w:i />
-      <w:color w:val="60A0B0" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1224,11 +634,9 @@
     <w:name w:val="CommentVarTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="60a0b0" />
       <w:b />
       <w:i />
-      <w:color w:val="60A0B0" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1236,9 +644,7 @@
     <w:name w:val="OtherTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:color w:val="007020" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1246,9 +652,7 @@
     <w:name w:val="FunctionTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="06287E" />
-      <w:sz w:val="22" />
+      <w:color w:val="06287e" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1256,9 +660,7 @@
     <w:name w:val="VariableTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="19177C" />
-      <w:sz w:val="22" />
+      <w:color w:val="19177c" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1266,10 +668,8 @@
     <w:name w:val="ControlFlowTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:b />
       <w:color w:val="007020" />
-      <w:sz w:val="22" />
+      <w:b />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1277,37 +677,27 @@
     <w:name w:val="OperatorTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:color w:val="666666" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="BuiltInTok">
     <w:name w:val="BuiltInTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:sz w:val="22" />
-    </w:rPr>
+    <w:rPr />
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="ExtensionTok">
     <w:name w:val="ExtensionTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:sz w:val="22" />
-    </w:rPr>
+    <w:rPr />
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="PreprocessorTok">
     <w:name w:val="PreprocessorTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="BC7A00" />
-      <w:sz w:val="22" />
+      <w:color w:val="bc7a00" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1315,30 +705,23 @@
     <w:name w:val="AttributeTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:color w:val="7D9029" />
-      <w:sz w:val="22" />
+      <w:color w:val="7d9029" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="RegionMarkerTok">
     <w:name w:val="RegionMarkerTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:sz w:val="22" />
-    </w:rPr>
+    <w:rPr />
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="InformationTok">
     <w:name w:val="InformationTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="60a0b0" />
       <w:b />
       <w:i />
-      <w:color w:val="60A0B0" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1346,11 +729,9 @@
     <w:name w:val="WarningTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="60a0b0" />
       <w:b />
       <w:i />
-      <w:color w:val="60A0B0" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1358,10 +739,8 @@
     <w:name w:val="AlertTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="ff0000" />
       <w:b />
-      <w:color w:val="FF0000" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -1369,19 +748,14 @@
     <w:name w:val="ErrorTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="ff0000" />
       <w:b />
-      <w:color w:val="FF0000" />
-      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="NormalTok">
     <w:name w:val="NormalTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr>
-      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
-      <w:sz w:val="22" />
-    </w:rPr>
+    <w:rPr />
   </w:style>
 </w:styles>
 word/theme/theme1.xml 
--- a/word/theme/theme1.xml 2019-07-17 08:35:04.689313200 +0200
+++ b/word/theme/theme1.xml 2019-07-17 08:35:09.053749600 +0200
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<?xml version="1.0" encoding="utf-8"?>
 <a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
 name="Office Theme">
   <a:themeElements>
 word/webSettings.xml 
--- a/word/webSettings.xml  2019-07-17 08:35:04.944338700 +0200
+++ b/word/webSettings.xml  2019-07-17 08:35:09.317776000 +0200
@@ -1,11 +1,6 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
-<w:webSettings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
-xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
-xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
-xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
-xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
-mc:Ignorable="w14 w15 w16se w16cid">
-  <w:allowPNG />
-</w:webSettings>
+<?xml version="1.0" encoding="utf-8"?>
+<ns0:webSettings xmlns:ns0="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
+
+  <ns0:allowPNG />
+  <ns0:doNotSaveAsSingleFile />
+</ns0:webSettings>
 word/_rels/document.xml.rels 
--- a/word/_rels/document.xml.rels  2019-07-17 08:35:05.219366200 +0200
+++ b/word/_rels/document.xml.rels  2019-07-17 08:35:09.609805200 +0200
@@ -1,28 +1,20 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<?xml version="1.0" encoding="utf-8"?>
 <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">

-  <Relationship Id="rId8"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"
-  Target="theme/theme1.xml" />
-  <Relationship Id="rId3"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"
-  Target="settings.xml" />
-  <Relationship Id="rId7"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"
-  Target="fontTable.xml" />
-  <Relationship Id="rId2"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"
-  Target="styles.xml" />
-  <Relationship Id="rId1"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering"
-  Target="numbering.xml" />
-  <Relationship Id="rId6"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes"
-  Target="endnotes.xml" />
-  <Relationship Id="rId5"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"
-  Target="footnotes.xml" />
-  <Relationship Id="rId4"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"
-  Target="webSettings.xml" />
+  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering"
+  Id="rId1" Target="numbering.xml" />
+  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"
+  Id="rId2" Target="styles.xml" />
+  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"
+  Id="rId3" Target="settings.xml" />
+  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"
+  Id="rId4" Target="webSettings.xml" />
+  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"
+  Id="rId5" Target="fontTable.xml" />
+  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"
+  Id="rId6" Target="theme/theme1.xml" />
+  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"
+  Id="rId7" Target="footnotes.xml" />
+  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments"
+  Id="rId8" Target="comments.xml" />
 </Relationships>
 word/_rels/footnotes.xml.rels 
diff: a/word/_rels/footnotes.xml.rels: No such file or directory
 [Content_Types].xml 
--- a/[Content_Types].xml   2019-07-17 08:35:05.473391600 +0200
+++ b/[Content_Types].xml   2019-07-17 08:35:10.153859600 +0200
@@ -1,30 +1,31 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<?xml version="1.0" encoding="utf-8"?>
 <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">

-  <Default Extension="emf" ContentType="image/x-emf" />
+  <Default Extension="xml" ContentType="application/xml" />
   <Default Extension="rels"
   ContentType="application/vnd.openxmlformats-package.relationships+xml" />
-  <Default Extension="xml" ContentType="application/xml" />
-  <Override PartName="/word/document.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" />
+  <Override PartName="/word/webSettings.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" />
   <Override PartName="/word/numbering.xml"
   ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" />
-  <Override PartName="/word/styles.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" />
   <Override PartName="/word/settings.xml"
   ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" />
-  <Override PartName="/word/webSettings.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" />
-  <Override PartName="/word/footnotes.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" />
-  <Override PartName="/word/endnotes.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml" />
-  <Override PartName="/word/fontTable.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" />
   <Override PartName="/word/theme/theme1.xml"
   ContentType="application/vnd.openxmlformats-officedocument.theme+xml" />
-  <Override PartName="/docProps/core.xml"
-  ContentType="application/vnd.openxmlformats-package.core-properties+xml" />
+  <Override PartName="/word/fontTable.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" />
   <Override PartName="/docProps/app.xml"
   ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" />
+  <Override PartName="/docProps/core.xml"
+  ContentType="application/vnd.openxmlformats-package.core-properties+xml" />
+  <Override PartName="/docProps/custom.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" />
+  <Override PartName="/word/styles.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" />
+  <Override PartName="/word/document.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" />
+  <Override PartName="/word/comments.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml" />
+  <Override PartName="/word/footnotes.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" />
 </Types>
 _rels/.rels 
--- a/_rels/.rels   2019-07-17 08:35:05.734417700 +0200
+++ b/_rels/.rels   2019-07-17 08:35:10.432887500 +0200
@@ -1,16 +1,16 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<?xml version="1.0" encoding="utf-8"?>
 <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">

-  <Relationship Id="rId3"
-  Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"
-  Target="docProps/core.xml" />
-  <Relationship Id="rId2"
-  Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail"
-  Target="docProps/thumbnail.emf" />
   <Relationship Id="rId1"
   Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"
   Target="word/document.xml" />
   <Relationship Id="rId4"
   Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties"
   Target="docProps/app.xml" />
+  <Relationship Id="rId3"
+  Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"
+  Target="docProps/core.xml" />
+  <Relationship Id="rId5"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties"
+  Target="docProps/custom.xml" />
 </Relationships>

I don't see any glaring differences in numbering either...

In test.docx:

  • numId 1000 corresponds to abstractNumId 990
  • numId 1001 corresponds to abstractNumId 991
  • numId 1001 is used for the bullet list
  • abstractNumId 991 has <w:lvlText w:val="•" /> for level 0, <w:lvlText w:val="–" /> for level 1 bullet.

In testWorks.docx:

  • numId 1 corresponds to abstractNumId 1
  • numId 2 corresponds to abstractNumId 0
  • numId 2 is used for the bullet list
  • abstractNumId 0 has <w:lvlText w:val="•" /> for level 0, <w:lvlText w:val="–" /> for level 1 bullet.

So these seem isomorphic (just renumbered).

It could be useful to try a minimal change. Replace numbering.xml in testWorks with the one from test, and change the numId in document.xml to 1001 instead of 2.
With just that change, does it work?
If not, then we sholud at least have a more minimal diff.

It could be useful to try a _minimal_ change. Replace numbering.xml in testWorks with the one from test, and change the numId in document.xml to 1001 instead of 2.
With just that change, does it work?
If not, then we sholud at least have a more minimal diff.

Ok, so I tried this and it works both on local Word and Online, so the problem is not in numbering.xml but somewhere else (I've used the numbering from pandoc's test.docx) which makes sense since they looked equivalent.

Probably good news. I replaced document.xml in testWorks with the one from test and changed the numId in document.xml back to 2.

This change works on local Word, but fails in Word Online, so it might make sense to focus on document.xml differences (at least as a starting point)

Ok, after multiple trial and error mixing both files, I've finally found a minimal difference that makes it work:

The original pandoc that loses bullets online:
test.docx

The manually modified file that looks ok online:
test3ilvl.docx

And the diff is...

./diff-zip.sh test.docx test3ilvl.docx
=== word/document.xml ===
--- a/word/document.xml 2019-07-18 09:06:02.347798700 +0200
+++ b/word/document.xml 2019-07-18 09:06:07.417928700 +0200
@@ -26,8 +26,8 @@
       <w:pPr>
         <w:pStyle w:val="Compact" />
         <w:numPr>
-          <w:numId w:val="1001" />
           <w:ilvl w:val="0" />
+          <w:numId w:val="1001" />
         </w:numPr>
       </w:pPr>
       <w:r>
@@ -40,8 +40,8 @@
       <w:pPr>
         <w:pStyle w:val="Compact" />
         <w:numPr>
-          <w:numId w:val="1001" />
           <w:ilvl w:val="0" />
+          <w:numId w:val="1001" />
         </w:numPr>
       </w:pPr>
       <w:r>
@@ -54,8 +54,8 @@
       <w:pPr>
         <w:pStyle w:val="Compact" />
         <w:numPr>
-          <w:numId w:val="1001" />
           <w:ilvl w:val="0" />
+          <w:numId w:val="1001" />
         </w:numPr>
       </w:pPr>
       <w:r>

It looks like the order of numId and ilvl matters to Word Online. Doing a quick search online I didn't find this as a restriction anywhere so it looks like a shortcoming of Word Online, doesn't it?
That said this particular issue seems easy enough to fix

Mmm, after implementing this change and running the tests, one of them still fails, related to lists in tables.

I'll upload here the new version of the docx (after the fix) and the same document re-saved by Word so that it now works Online:

new_table_with_list_cell.docx

table_with_list_cell2.docx
(this one works in Word Online)

./diff-zip.sh new_table_with_list_cell.docx table_with_list_cell2.docx


and the (long) diff is:

=== docProps/app.xml ===
--- a/docProps/app.xml  2019-07-18 13:44:12.150023300 +0200
+++ b/docProps/app.xml  2019-07-18 13:44:16.684523300 +0200
@@ -1,20 +1,21 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
 xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">

-  <Words>83</Words>
-  <SharedDoc>false</SharedDoc>
-  <HyperlinksChanged>false</HyperlinksChanged>
-  <Lines>12</Lines>
-  <AppVersion>12.0000</AppVersion>
-  <LinksUpToDate>false</LinksUpToDate>
-  <Application>Microsoft Word 12.0.0</Application>
-  <CharactersWithSpaces>583</CharactersWithSpaces>
   <Template>Normal.dotm</Template>
-  <DocSecurity>0</DocSecurity>
   <TotalTime>6</TotalTime>
-  <ScaleCrop>false</ScaleCrop>
-  <Characters>475</Characters>
-  <Paragraphs>8</Paragraphs>
   <Pages>1</Pages>
+  <Words>12</Words>
+  <Characters>72</Characters>
+  <Application>Microsoft Office Word</Application>
+  <DocSecurity>0</DocSecurity>
+  <Lines>1</Lines>
+  <Paragraphs>1</Paragraphs>
+  <ScaleCrop>false</ScaleCrop>
+  <Company>xxx</Company>
+  <LinksUpToDate>false</LinksUpToDate>
+  <CharactersWithSpaces>83</CharactersWithSpaces>
+  <SharedDoc>false</SharedDoc>
+  <HyperlinksChanged>false</HyperlinksChanged>
+  <AppVersion>16.0000</AppVersion>
 </Properties>
=== docProps/core.xml ===
--- a/docProps/core.xml 2019-07-18 13:44:12.439523300 +0200
+++ b/docProps/core.xml 2019-07-18 13:44:16.951023300 +0200
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:dcterms="http://purl.org/dc/terms/"
@@ -7,8 +7,10 @@
   <dc:title></dc:title>
   <dc:creator></dc:creator>
   <cp:keywords></cp:keywords>
+  <cp:lastModifiedBy>Martin Barbero, Agustin</cp:lastModifiedBy>
+  <cp:revision>2</cp:revision>
   <dcterms:created xsi:type="dcterms:W3CDTF">
-  2019-07-18T10:26:08Z</dcterms:created>
+  2019-03-12T04:54:00Z</dcterms:created>
   <dcterms:modified xsi:type="dcterms:W3CDTF">
-  2019-07-18T10:26:08Z</dcterms:modified>
+  2019-07-18T11:34:00Z</dcterms:modified>
 </cp:coreProperties>
=== docProps/custom.xml ===
diff: b/docProps/custom.xml: No such file or directory
=== docProps/thumbnail.emf ===
diff: a/docProps/thumbnail.emf: No such file or directory
=== word/comments.xml ===
diff: b/word/comments.xml: No such file or directory
=== word/document.xml ===
--- a/word/document.xml 2019-07-18 13:44:13.233523300 +0200
+++ b/word/document.xml 2019-07-18 13:44:17.209523300 +0200
@@ -1,156 +1,173 @@
-<?xml version="1.0" encoding="utf-8"?>
-<w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
-xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
+xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
+xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
+xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
+xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
+xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
+xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
+xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
+xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
+xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
+xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
+xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
 xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
 xmlns:v="urn:schemas-microsoft-com:vml"
+xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
+xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
 xmlns:w10="urn:schemas-microsoft-com:office:word"
-xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
-xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"
-xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
-
+xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
+xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
+xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
+xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
+xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
+xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
+xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
+xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
+xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
+mc:Ignorable="w14 w15 w16se w16cid wp14">
   <w:body>
     <w:tbl>
       <w:tblPr>
         <w:tblStyle w:val="Table" />
-        <w:tblW w:type="pct" w:w="0.0" />
-        <w:tblLook w:firstRow="1" />
+        <w:tblW w:w="0" w:type="pct" />
+        <w:tblLook w:val="07E0" w:firstRow="1" w:lastRow="1"
+        w:firstColumn="1" w:lastColumn="1" w:noHBand="1"
+        w:noVBand="1" />
       </w:tblPr>
-      <w:tblGrid />
-      <w:tr>
-        <w:trPr>
-          <w:cnfStyle w:firstRow="1" />
-        </w:trPr>
+      <w:tblGrid>
+        <w:gridCol w:w="1673" />
+        <w:gridCol w:w="2208" />
+      </w:tblGrid>
+      <w:tr w:rsidR="006C51E7">
         <w:tc>
           <w:tcPr>
+            <w:tcW w:w="0" w:type="auto" />
             <w:tcBorders>
-              <w:bottom w:val="single" />
+              <w:bottom w:val="single" w:sz="0" w:space="0"
+              w:color="auto" />
             </w:tcBorders>
             <w:vAlign w:val="bottom" />
           </w:tcPr>
-          <w:p>
+          <w:p w:rsidR="006C51E7" w:rsidRDefault="00FA6278">
             <w:pPr>
               <w:pStyle w:val="Compact" />
-              <w:jc w:val="left" />
             </w:pPr>
             <w:r>
-              <w:t xml:space="preserve">
-Cell with text
-</w:t>
+              <w:t>Cell with text</w:t>
             </w:r>
           </w:p>
         </w:tc>
         <w:tc>
           <w:tcPr>
+            <w:tcW w:w="0" w:type="auto" />
             <w:tcBorders>
-              <w:bottom w:val="single" />
+              <w:bottom w:val="single" w:sz="0" w:space="0"
+              w:color="auto" />
             </w:tcBorders>
             <w:vAlign w:val="bottom" />
           </w:tcPr>
-          <w:p>
+          <w:p w:rsidR="006C51E7" w:rsidRDefault="00FA6278">
             <w:pPr>
               <w:pStyle w:val="Compact" />
-              <w:jc w:val="left" />
             </w:pPr>
             <w:r>
-              <w:t xml:space="preserve">
-Cell with text
-</w:t>
+              <w:t>Cell with text</w:t>
             </w:r>
           </w:p>
         </w:tc>
       </w:tr>
-      <w:tr>
+      <w:tr w:rsidR="006C51E7">
         <w:tc>
-          <w:p>
+          <w:tcPr>
+            <w:tcW w:w="0" w:type="auto" />
+          </w:tcPr>
+          <w:p w:rsidR="006C51E7" w:rsidRDefault="00FA6278">
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
-                <w:numId w:val="1001" />
+                <w:numId w:val="2" />
               </w:numPr>
             </w:pPr>
             <w:r>
-              <w:t xml:space="preserve">
-Cell with
-</w:t>
+              <w:t>Cell with</w:t>
             </w:r>
           </w:p>
-          <w:p>
+          <w:p w:rsidR="006C51E7" w:rsidRDefault="00FA6278">
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
-                <w:numId w:val="1001" />
+                <w:numId w:val="2" />
               </w:numPr>
             </w:pPr>
             <w:r>
-              <w:t xml:space="preserve">
-A
-</w:t>
+              <w:t>A</w:t>
             </w:r>
           </w:p>
-          <w:p>
+          <w:p w:rsidR="006C51E7" w:rsidRDefault="00FA6278">
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
-                <w:numId w:val="1001" />
+                <w:numId w:val="2" />
               </w:numPr>
             </w:pPr>
             <w:r>
-              <w:t xml:space="preserve">
-Bullet list
-</w:t>
+              <w:t>Bullet list</w:t>
             </w:r>
           </w:p>
         </w:tc>
         <w:tc>
-          <w:p>
+          <w:tcPr>
+            <w:tcW w:w="0" w:type="auto" />
+          </w:tcPr>
+          <w:p w:rsidR="006C51E7" w:rsidRDefault="00FA6278">
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
-                <w:numId w:val="1002" />
+                <w:numId w:val="3" />
               </w:numPr>
             </w:pPr>
             <w:r>
-              <w:t xml:space="preserve">
-Cell with
-</w:t>
+              <w:t>Cell with</w:t>
             </w:r>
           </w:p>
-          <w:p>
+          <w:p w:rsidR="006C51E7" w:rsidRDefault="00FA6278">
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
-                <w:numId w:val="1002" />
+                <w:numId w:val="3" />
               </w:numPr>
             </w:pPr>
             <w:r>
-              <w:t xml:space="preserve">
-A
-</w:t>
+              <w:t>A</w:t>
             </w:r>
           </w:p>
-          <w:p>
+          <w:p w:rsidR="006C51E7" w:rsidRDefault="00FA6278">
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
-                <w:numId w:val="1002" />
+                <w:numId w:val="3" />
               </w:numPr>
             </w:pPr>
             <w:r>
-              <w:t xml:space="preserve">
-Numbered list.
-</w:t>
+              <w:t>Numbered list.</w:t>
             </w:r>
           </w:p>
         </w:tc>
       </w:tr>
     </w:tbl>
-    <w:sectPr />
+    <w:p w:rsidR="00FA6278" w:rsidRDefault="00FA6278">
+      <w:bookmarkStart w:id="0" w:name="_GoBack" />
+      <w:bookmarkEnd w:id="0" />
+    </w:p>
+    <w:sectPr w:rsidR="00FA6278">
+      <w:pgSz w:w="12240" w:h="15840" />
+      <w:pgMar w:top="1417" w:right="1701" w:bottom="1417"
+      w:left="1701" w:header="720" w:footer="720" w:gutter="0" />
+      <w:cols w:space="720" />
+    </w:sectPr>
   </w:body>
 </w:document>
=== word/endnotes.xml ===
diff: a/word/endnotes.xml: No such file or directory
=== word/fontTable.xml ===
--- a/word/fontTable.xml    2019-07-18 13:44:13.499523300 +0200
+++ b/word/fontTable.xml    2019-07-18 13:44:17.746523300 +0200
@@ -1,54 +1,41 @@
-<?xml version="1.0" encoding="utf-8"?>
-<w:fonts xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
-xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
-   
-<w:font w:name="Symbol">       
-<w:panose1 w:val="02000500000000000000" />     
-<w:charset w:val="02" />       
-<w:family w:val="auto" />      
-<w:pitch w:val="variable" />       
-<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00010000"
-w:usb3="00000000" w:csb0="80000000" w:csb1="00000000" />   </w:font>   
-<w:font w:name="Times New Roman">      
-<w:panose1 w:val="02020603050405020304" />     
-<w:charset w:val="00" />       
-<w:family w:val="auto" />      
-<w:pitch w:val="variable" />       
-<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
-w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />   </w:font>   
-<w:font w:name="Courier New">      
-<w:panose1 w:val="02070309020205020404" />     
-<w:charset w:val="00" />       
-<w:family w:val="auto" />      
-<w:pitch w:val="variable" />       
-<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
-w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />   </w:font>   
-<w:font w:name="Wingdings">        
-<w:panose1 w:val="05020102010804080708" />     
-<w:charset w:val="02" />       
-<w:family w:val="auto" />      
-<w:pitch w:val="variable" />       
-<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00010000"
-w:usb3="00000000" w:csb0="80000000" w:csb1="00000000" />   </w:font>   
-<w:font w:name="Cambria">      
-<w:panose1 w:val="02040503050406030204" />     
-<w:charset w:val="00" />       
-<w:family w:val="auto" />      
-<w:pitch w:val="variable" />       
-<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
-w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />   </w:font>   
-<w:font w:name="Calibri">      
-<w:panose1 w:val="020F0502020204030204" />     
-<w:charset w:val="00" />       
-<w:family w:val="auto" />      
-<w:pitch w:val="variable" />       
-<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
-w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />   </w:font>   
-<w:font w:name="Arial">        
-<w:panose1 w:val="020B0604020202020204" />     
-<w:charset w:val="00" />       
-<w:family w:val="auto" />      
-<w:pitch w:val="variable" />       
-<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000"
-w:usb3="00000000" w:csb0="00000001"
-w:csb1="00000000" />   </w:font></w:fonts>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
+xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
+xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
+xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
+xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
+mc:Ignorable="w14 w15 w16se w16cid">
+  <w:font w:name="Cambria">
+    <w:panose1 w:val="02040503050406030204" />
+    <w:charset w:val="00" />
+    <w:family w:val="roman" />
+    <w:pitch w:val="variable" />
+    <w:sig w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000"
+    w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000" />
+  </w:font>
+  <w:font w:name="Times New Roman">
+    <w:panose1 w:val="02020603050405020304" />
+    <w:charset w:val="00" />
+    <w:family w:val="roman" />
+    <w:pitch w:val="variable" />
+    <w:sig w:usb0="E0002AFF" w:usb1="C0007841" w:usb2="00000009"
+    w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000" />
+  </w:font>
+  <w:font w:name="Calibri">
+    <w:panose1 w:val="020F0502020204030204" />
+    <w:charset w:val="00" />
+    <w:family w:val="swiss" />
+    <w:pitch w:val="variable" />
+    <w:sig w:usb0="E00002FF" w:usb1="4000ACFF" w:usb2="00000001"
+    w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000" />
+  </w:font>
+  <w:font w:name="Consolas">
+    <w:panose1 w:val="020B0609020204030204" />
+    <w:charset w:val="00" />
+    <w:family w:val="roman" />
+    <w:notTrueType />
+    <w:pitch w:val="default" />
+  </w:font>
+</w:fonts>
=== word/footnotes.xml ===
--- a/word/footnotes.xml    2019-07-18 13:44:13.773023300 +0200
+++ b/word/footnotes.xml    2019-07-18 13:44:18.010023300 +0200
@@ -1,25 +1,45 @@
-<?xml version="1.0" encoding="utf-8"?>
-<w:footnotes xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
-xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<w:footnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
+xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
+xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
+xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
+xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
+xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
+xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
+xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
+xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
+xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
+xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
+xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
 xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
 xmlns:v="urn:schemas-microsoft-com:vml"
+xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
+xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
 xmlns:w10="urn:schemas-microsoft-com:office:word"
-xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
-xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"
-xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
-
-  <w:footnote w:type="continuationSeparator" w:id="0">
-    <w:p>
+xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
+xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
+xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
+xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
+xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
+xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
+xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
+xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
+xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
+mc:Ignorable="w14 w15 w16se w16cid wp14">
+  <w:footnote w:type="separator" w:id="-1">
+    <w:p w:rsidR="00FA6278" w:rsidRDefault="00FA6278">
       <w:r>
-        <w:continuationSeparator />
+        <w:separator />
       </w:r>
     </w:p>
   </w:footnote>
-  <w:footnote w:type="separator" w:id="-1">
-    <w:p>
+  <w:footnote w:type="continuationSeparator" w:id="0">
+    <w:p w:rsidR="00FA6278" w:rsidRDefault="00FA6278">
       <w:r>
-        <w:separator />
+        <w:continuationSeparator />
       </w:r>
     </w:p>
   </w:footnote>
=== word/numbering.xml ===
--- a/word/numbering.xml    2019-07-18 13:44:14.025023300 +0200
+++ b/word/numbering.xml    2019-07-18 13:44:18.299523300 +0200
@@ -1,12 +1,42 @@
-<?xml version="1.0" encoding="utf-8"?>
-<w:numbering xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
-
-  <w:abstractNum w:abstractNumId="990">
-    <w:nsid w:val="2c1ae401" />
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<w:numbering xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
+xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
+xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
+xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
+xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
+xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
+xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
+xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
+xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
+xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
+xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
+xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
+xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
+xmlns:v="urn:schemas-microsoft-com:vml"
+xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
+xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
+xmlns:w10="urn:schemas-microsoft-com:office:word"
+xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
+xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
+xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
+xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
+xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
+xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
+xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
+xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
+xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
+mc:Ignorable="w14 w15 w16se w16cid wp14">
+  <w:abstractNum w:abstractNumId="0"
+  w15:restartNumberingAfterBreak="0">
+    <w:nsid w:val="EA454B4C" />
     <w:multiLevelType w:val="multilevel" />
+    <w:tmpl w:val="8AF451BC" />
     <w:lvl w:ilvl="0">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -17,7 +47,7 @@
     </w:lvl>
     <w:lvl w:ilvl="1">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="–" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -28,7 +58,7 @@
     </w:lvl>
     <w:lvl w:ilvl="2">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -39,7 +69,7 @@
     </w:lvl>
     <w:lvl w:ilvl="3">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="–" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -50,7 +80,7 @@
     </w:lvl>
     <w:lvl w:ilvl="4">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -61,7 +91,7 @@
     </w:lvl>
     <w:lvl w:ilvl="5">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="–" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -72,7 +102,7 @@
     </w:lvl>
     <w:lvl w:ilvl="6">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -83,7 +113,7 @@
     </w:lvl>
     <w:lvl w:ilvl="7">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="–" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -94,7 +124,7 @@
     </w:lvl>
     <w:lvl w:ilvl="8">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="" />
+      <w:lvlText w:val="•" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -104,12 +134,14 @@
       </w:pPr>
     </w:lvl>
   </w:abstractNum>
-  <w:abstractNum w:abstractNumId="991">
-    <w:nsid w:val="ea454b4c" />
+  <w:abstractNum w:abstractNumId="1"
+  w15:restartNumberingAfterBreak="0">
+    <w:nsid w:val="2C1AE401" />
     <w:multiLevelType w:val="multilevel" />
+    <w:tmpl w:val="B34E5606" />
     <w:lvl w:ilvl="0">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -120,7 +152,7 @@
     </w:lvl>
     <w:lvl w:ilvl="1">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="–" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -131,7 +163,7 @@
     </w:lvl>
     <w:lvl w:ilvl="2">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -142,7 +174,7 @@
     </w:lvl>
     <w:lvl w:ilvl="3">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="–" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -153,7 +185,7 @@
     </w:lvl>
     <w:lvl w:ilvl="4">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -164,7 +196,7 @@
     </w:lvl>
     <w:lvl w:ilvl="5">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="–" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -175,7 +207,7 @@
     </w:lvl>
     <w:lvl w:ilvl="6">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -186,7 +218,7 @@
     </w:lvl>
     <w:lvl w:ilvl="7">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="–" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -197,7 +229,7 @@
     </w:lvl>
     <w:lvl w:ilvl="8">
       <w:numFmt w:val="bullet" />
-      <w:lvlText w:val="•" />
+      <w:lvlText w:val="" />
       <w:lvlJc w:val="left" />
       <w:pPr>
         <w:tabs>
@@ -207,9 +239,11 @@
       </w:pPr>
     </w:lvl>
   </w:abstractNum>
-  <w:abstractNum w:abstractNumId="99411">
-    <w:nsid w:val="71315dca" />
+  <w:abstractNum w:abstractNumId="2"
+  w15:restartNumberingAfterBreak="0">
+    <w:nsid w:val="71315DCA" />
     <w:multiLevelType w:val="multilevel" />
+    <w:tmpl w:val="0332E202" />
     <w:lvl w:ilvl="0">
       <w:start w:val="1" />
       <w:numFmt w:val="decimal" />
@@ -319,14 +353,14 @@
       </w:pPr>
     </w:lvl>
   </w:abstractNum>
-  <w:num w:numId="1000">
-    <w:abstractNumId w:val="990" />
+  <w:num w:numId="1">
+    <w:abstractNumId w:val="1" />
   </w:num>
-  <w:num w:numId="1001">
-    <w:abstractNumId w:val="991" />
+  <w:num w:numId="2">
+    <w:abstractNumId w:val="0" />
   </w:num>
-  <w:num w:numId="1002">
-    <w:abstractNumId w:val="99411" />
+  <w:num w:numId="3">
+    <w:abstractNumId w:val="2" />
     <w:lvlOverride w:ilvl="0">
       <w:startOverride w:val="1" />
     </w:lvlOverride>
=== word/settings.xml ===
--- a/word/settings.xml 2019-07-18 13:44:14.275023300 +0200
+++ b/word/settings.xml 2019-07-18 13:44:18.560023300 +0200
@@ -1,48 +1,74 @@
-<?xml version="1.0" encoding="utf-8"?>
-<w:settings xmlns:o="urn:schemas-microsoft-com:office:office"
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+xmlns:o="urn:schemas-microsoft-com:office:office"
 xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
 xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
 xmlns:v="urn:schemas-microsoft-com:vml"
 xmlns:w10="urn:schemas-microsoft-com:office:word"
 xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
-xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main">
-
-  <w:zoom w:percent="90" />
+xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
+xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
+xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
+xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
+xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
+mc:Ignorable="w14 w15 w16se w16cid">
+  <w:zoom w:percent="100" />
   <w:embedSystemFonts />
   <w:proofState w:spelling="clean" w:grammar="clean" />
-  <w:stylePaneFormatFilter w:val="0004" />
-  <w:footnotePr>
-    <w:footnote w:id="-1" />
-    <w:footnote w:id="0" />
-  </w:footnotePr>
+  <w:stylePaneFormatFilter w:val="0004" w:allStyles="0"
+  w:customStyles="0" w:latentStyles="1" w:stylesInUse="0"
+  w:headingStyles="0" w:numberingStyles="0" w:tableStyles="0"
+  w:directFormattingOnRuns="0" w:directFormattingOnParagraphs="0"
+  w:directFormattingOnNumbering="0" w:directFormattingOnTables="0"
+  w:clearFormatting="0" w:top3HeadingStyles="0" w:visibleStyles="0"
+  w:alternateStyleNames="0" />
   <w:doNotTrackMoves />
   <w:defaultTabStop w:val="720" />
+  <w:hyphenationZone w:val="425" />
   <w:drawingGridHorizontalSpacing w:val="360" />
   <w:drawingGridVerticalSpacing w:val="360" />
   <w:displayHorizontalDrawingGridEvery w:val="0" />
   <w:displayVerticalDrawingGridEvery w:val="0" />
   <w:characterSpacingControl w:val="doNotCompress" />
   <w:savePreviewPicture />
+  <w:footnotePr>
+    <w:footnote w:id="-1" />
+    <w:footnote w:id="0" />
+  </w:footnotePr>
+  <w:endnotePr>
+    <w:endnote w:id="-1" />
+    <w:endnote w:id="0" />
+  </w:endnotePr>
+  <w:compat>
+    <w:compatSetting w:name="compatibilityMode"
+    w:uri="http://schemas.microsoft.com/office/word" w:val="12" />
+    <w:compatSetting w:name="useWord2013TrackBottomHyphenation"
+    w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
+  </w:compat>
   <w:rsids>
     <w:rsidRoot w:val="00590D07" />
     <w:rsid w:val="00011C8B" />
     <w:rsid w:val="004E29B3" />
+    <w:rsid w:val="00533656" />
     <w:rsid w:val="00590D07" />
+    <w:rsid w:val="006C51E7" />
     <w:rsid w:val="00784D58" />
     <w:rsid w:val="008D6863" />
     <w:rsid w:val="00B86B75" />
     <w:rsid w:val="00BC48D5" />
     <w:rsid w:val="00C36279" />
     <w:rsid w:val="00E315A3" />
+    <w:rsid w:val="00FA6278" />
   </w:rsids>
   <m:mathPr>
-    <m:mathFont m:val="Lucida Grande" />
+    <m:mathFont m:val="Cambria Math" />
     <m:brkBin m:val="before" />
     <m:brkBinSub m:val="--" />
-    <m:smallFrac m:val="false" />
-    <m:dispDef m:val="false" />
+    <m:smallFrac m:val="0" />
+    <m:dispDef m:val="0" />
     <m:lMargin m:val="0" />
     <m:rMargin m:val="0" />
+    <m:defJc m:val="centerGroup" />
     <m:wrapRight />
     <m:intLim m:val="subSup" />
     <m:naryLim m:val="subSup" />
@@ -53,6 +79,14 @@
   w:accent3="accent3" w:accent4="accent4" w:accent5="accent5"
   w:accent6="accent6" w:hyperlink="hyperlink"
   w:followedHyperlink="followedHyperlink" />
-  <w:decimalSymbol w:val="." />
-  <w:listSeparator w:val="," />
+  <w:shapeDefaults>
+    <o:shapedefaults v:ext="edit" spidmax="1026" />
+    <o:shapelayout v:ext="edit">
+      <o:idmap v:ext="edit" data="1" />
+    </o:shapelayout>
+  </w:shapeDefaults>
+  <w:decimalSymbol w:val="," />
+  <w:listSeparator w:val=";" />
+  <w14:docId w14:val="4BC3F0D7" />
+  <w15:docId w15:val="{52307BFF-6D62-43AD-89CC-00F339EBE2D0}" />
 </w:settings>
=== word/styles.xml ===
--- a/word/styles.xml   2019-07-18 13:44:14.550523300 +0200
+++ b/word/styles.xml   2019-07-18 13:44:18.819523300 +0200
@@ -1,7 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<w:styles xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
-xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
-
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<w:styles xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
+xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
+xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
+xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
+xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
+mc:Ignorable="w14 w15 w16se w16cid">
   <w:docDefaults>
     <w:rPrDefault>
       <w:rPr>
@@ -21,123 +26,571 @@
   </w:docDefaults>
   <w:latentStyles w:defLockedState="0" w:defUIPriority="0"
   w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0"
-  w:count="276" />
+  w:count="375">
+    <w:lsdException w:name="heading 6" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="index 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="index 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="index 5" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="index 6" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="index 7" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="index 8" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="index 9" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 5" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 6" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 7" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 8" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toc 9" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Normal Indent" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="footnote text" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="annotation text" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="header" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="footer" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="index heading" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="caption" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="table of figures" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="envelope address" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="envelope return" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="footnote reference" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="annotation reference" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="line number" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="page number" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="endnote reference" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="endnote text" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="table of authorities" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="macro" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="toa heading" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Bullet" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Number" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List 5" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Bullet 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Bullet 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Number 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Number 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Number 5" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Closing" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Signature" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Default Paragraph Font"
+    w:semiHidden="1" w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Body Text" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Body Text Indent" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Continue" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Continue 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Continue 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Continue 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="List Continue 5" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Message Header" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Salutation" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Date" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Body Text First Indent"
+    w:semiHidden="1" w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Body Text First Indent 2"
+    w:semiHidden="1" w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Body Text Indent 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Block Text" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Hyperlink" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="FollowedHyperlink" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Document Map" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Plain Text" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="E-mail Signature" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Top of Form" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Normal (Web)" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Acronym" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Address" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Cite" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Code" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Definition" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Keyboard" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Preformatted" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Sample" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Typewriter" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="HTML Variable" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Normal Table" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="annotation subject" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="No List" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Outline List 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Outline List 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Outline List 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Simple 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Simple 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Simple 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Classic 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Classic 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Classic 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Classic 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Colorful 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Colorful 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Colorful 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Columns 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Columns 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Columns 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Columns 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Columns 5" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Grid 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Grid 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Grid 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Grid 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Grid 5" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Grid 6" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Grid 7" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Grid 8" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table List 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table List 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table List 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table List 4" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table List 5" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table List 6" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table List 7" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table List 8" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table 3D effects 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table 3D effects 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table 3D effects 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Contemporary" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Elegant" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Professional" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Subtle 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Subtle 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Web 1" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Web 2" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Web 3" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Balloon Text" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Table Theme" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Placeholder Text" w:semiHidden="1" />
+    <w:lsdException w:name="Light Shading" />
+    <w:lsdException w:name="Light List" />
+    <w:lsdException w:name="Light Grid" />
+    <w:lsdException w:name="Dark List" />
+    <w:lsdException w:name="Colorful Shading" />
+    <w:lsdException w:name="Colorful List" />
+    <w:lsdException w:name="Colorful Grid" />
+    <w:lsdException w:name="Light Shading Accent 1" />
+    <w:lsdException w:name="Light List Accent 1" />
+    <w:lsdException w:name="Light Grid Accent 1" />
+    <w:lsdException w:name="Medium Shading 1 Accent 1" />
+    <w:lsdException w:name="Medium Shading 2 Accent 1" />
+    <w:lsdException w:name="Medium List 1 Accent 1" />
+    <w:lsdException w:name="Revision" w:semiHidden="1" />
+    <w:lsdException w:name="Medium List 2 Accent 1" />
+    <w:lsdException w:name="Medium Grid 1 Accent 1" />
+    <w:lsdException w:name="Medium Grid 2 Accent 1" />
+    <w:lsdException w:name="Medium Grid 3 Accent 1" />
+    <w:lsdException w:name="Dark List Accent 1" />
+    <w:lsdException w:name="Colorful Shading Accent 1" />
+    <w:lsdException w:name="Colorful List Accent 1" />
+    <w:lsdException w:name="Colorful Grid Accent 1" />
+    <w:lsdException w:name="Light Shading Accent 2" />
+    <w:lsdException w:name="Light List Accent 2" />
+    <w:lsdException w:name="Light Grid Accent 2" />
+    <w:lsdException w:name="Medium Shading 1 Accent 2" />
+    <w:lsdException w:name="Medium Shading 2 Accent 2" />
+    <w:lsdException w:name="Medium List 1 Accent 2" />
+    <w:lsdException w:name="Medium List 2 Accent 2" />
+    <w:lsdException w:name="Medium Grid 1 Accent 2" />
+    <w:lsdException w:name="Medium Grid 2 Accent 2" />
+    <w:lsdException w:name="Medium Grid 3 Accent 2" />
+    <w:lsdException w:name="Dark List Accent 2" />
+    <w:lsdException w:name="Colorful Shading Accent 2" />
+    <w:lsdException w:name="Colorful List Accent 2" />
+    <w:lsdException w:name="Colorful Grid Accent 2" />
+    <w:lsdException w:name="Light Shading Accent 3" />
+    <w:lsdException w:name="Light List Accent 3" />
+    <w:lsdException w:name="Light Grid Accent 3" />
+    <w:lsdException w:name="Medium Shading 1 Accent 3" />
+    <w:lsdException w:name="Medium Shading 2 Accent 3" />
+    <w:lsdException w:name="Medium List 1 Accent 3" />
+    <w:lsdException w:name="Medium List 2 Accent 3" />
+    <w:lsdException w:name="Medium Grid 1 Accent 3" />
+    <w:lsdException w:name="Medium Grid 2 Accent 3" />
+    <w:lsdException w:name="Medium Grid 3 Accent 3" />
+    <w:lsdException w:name="Dark List Accent 3" />
+    <w:lsdException w:name="Colorful Shading Accent 3" />
+    <w:lsdException w:name="Colorful List Accent 3" />
+    <w:lsdException w:name="Colorful Grid Accent 3" />
+    <w:lsdException w:name="Light Shading Accent 4" />
+    <w:lsdException w:name="Light List Accent 4" />
+    <w:lsdException w:name="Light Grid Accent 4" />
+    <w:lsdException w:name="Medium Shading 1 Accent 4" />
+    <w:lsdException w:name="Medium Shading 2 Accent 4" />
+    <w:lsdException w:name="Medium List 1 Accent 4" />
+    <w:lsdException w:name="Medium List 2 Accent 4" />
+    <w:lsdException w:name="Medium Grid 1 Accent 4" />
+    <w:lsdException w:name="Medium Grid 2 Accent 4" />
+    <w:lsdException w:name="Medium Grid 3 Accent 4" />
+    <w:lsdException w:name="Dark List Accent 4" />
+    <w:lsdException w:name="Colorful Shading Accent 4" />
+    <w:lsdException w:name="Colorful List Accent 4" />
+    <w:lsdException w:name="Colorful Grid Accent 4" />
+    <w:lsdException w:name="Light Shading Accent 5" />
+    <w:lsdException w:name="Light List Accent 5" />
+    <w:lsdException w:name="Light Grid Accent 5" />
+    <w:lsdException w:name="Medium Shading 1 Accent 5" />
+    <w:lsdException w:name="Medium Shading 2 Accent 5" />
+    <w:lsdException w:name="Medium List 1 Accent 5" />
+    <w:lsdException w:name="Medium List 2 Accent 5" />
+    <w:lsdException w:name="Medium Grid 1 Accent 5" />
+    <w:lsdException w:name="Medium Grid 2 Accent 5" />
+    <w:lsdException w:name="Medium Grid 3 Accent 5" />
+    <w:lsdException w:name="Dark List Accent 5" />
+    <w:lsdException w:name="Colorful Shading Accent 5" />
+    <w:lsdException w:name="Colorful List Accent 5" />
+    <w:lsdException w:name="Colorful Grid Accent 5" />
+    <w:lsdException w:name="Light Shading Accent 6" />
+    <w:lsdException w:name="Light List Accent 6" />
+    <w:lsdException w:name="Light Grid Accent 6" />
+    <w:lsdException w:name="Medium Shading 1 Accent 6" />
+    <w:lsdException w:name="Medium Shading 2 Accent 6" />
+    <w:lsdException w:name="Medium List 1 Accent 6" />
+    <w:lsdException w:name="Medium List 2 Accent 6" />
+    <w:lsdException w:name="Medium Grid 1 Accent 6" />
+    <w:lsdException w:name="Medium Grid 2 Accent 6" />
+    <w:lsdException w:name="Medium Grid 3 Accent 6" />
+    <w:lsdException w:name="Dark List Accent 6" />
+    <w:lsdException w:name="Colorful Shading Accent 6" />
+    <w:lsdException w:name="Colorful List Accent 6" />
+    <w:lsdException w:name="Colorful Grid Accent 6" />
+    <w:lsdException w:name="Bibliography" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="TOC Heading" w:semiHidden="1"
+    w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Grid Table 4" w:uiPriority="49" />
+    <w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50" />
+    <w:lsdException w:name="Grid Table 6 Colorful"
+    w:uiPriority="51" />
+    <w:lsdException w:name="Grid Table 7 Colorful"
+    w:uiPriority="52" />
+    <w:lsdException w:name="Grid Table 1 Light Accent 1"
+    w:uiPriority="46" />
+    <w:lsdException w:name="Grid Table 2 Accent 1"
+    w:uiPriority="47" />
+    <w:lsdException w:name="Grid Table 3 Accent 1"
+    w:uiPriority="48" />
+    <w:lsdException w:name="Grid Table 4 Accent 1"
+    w:uiPriority="49" />
+    <w:lsdException w:name="Grid Table 5 Dark Accent 1"
+    w:uiPriority="50" />
+    <w:lsdException w:name="Grid Table 6 Colorful Accent 1"
+    w:uiPriority="51" />
+    <w:lsdException w:name="Grid Table 7 Colorful Accent 1"
+    w:uiPriority="52" />
+    <w:lsdException w:name="Grid Table 1 Light Accent 2"
+    w:uiPriority="46" />
+    <w:lsdException w:name="Grid Table 2 Accent 2"
+    w:uiPriority="47" />
+    <w:lsdException w:name="Grid Table 3 Accent 2"
+    w:uiPriority="48" />
+    <w:lsdException w:name="Grid Table 4 Accent 2"
+    w:uiPriority="49" />
+    <w:lsdException w:name="Grid Table 5 Dark Accent 2"
+    w:uiPriority="50" />
+    <w:lsdException w:name="Grid Table 6 Colorful Accent 2"
+    w:uiPriority="51" />
+    <w:lsdException w:name="Grid Table 7 Colorful Accent 2"
+    w:uiPriority="52" />
+    <w:lsdException w:name="Grid Table 1 Light Accent 3"
+    w:uiPriority="46" />
+    <w:lsdException w:name="Grid Table 2 Accent 3"
+    w:uiPriority="47" />
+    <w:lsdException w:name="Grid Table 3 Accent 3"
+    w:uiPriority="48" />
+    <w:lsdException w:name="Grid Table 4 Accent 3"
+    w:uiPriority="49" />
+    <w:lsdException w:name="Grid Table 5 Dark Accent 3"
+    w:uiPriority="50" />
+    <w:lsdException w:name="Grid Table 6 Colorful Accent 3"
+    w:uiPriority="51" />
+    <w:lsdException w:name="Grid Table 7 Colorful Accent 3"
+    w:uiPriority="52" />
+    <w:lsdException w:name="Grid Table 1 Light Accent 4"
+    w:uiPriority="46" />
+    <w:lsdException w:name="Grid Table 2 Accent 4"
+    w:uiPriority="47" />
+    <w:lsdException w:name="Grid Table 3 Accent 4"
+    w:uiPriority="48" />
+    <w:lsdException w:name="Grid Table 4 Accent 4"
+    w:uiPriority="49" />
+    <w:lsdException w:name="Grid Table 5 Dark Accent 4"
+    w:uiPriority="50" />
+    <w:lsdException w:name="Grid Table 6 Colorful Accent 4"
+    w:uiPriority="51" />
+    <w:lsdException w:name="Grid Table 7 Colorful Accent 4"
+    w:uiPriority="52" />
+    <w:lsdException w:name="Grid Table 1 Light Accent 5"
+    w:uiPriority="46" />
+    <w:lsdException w:name="Grid Table 2 Accent 5"
+    w:uiPriority="47" />
+    <w:lsdException w:name="Grid Table 3 Accent 5"
+    w:uiPriority="48" />
+    <w:lsdException w:name="Grid Table 4 Accent 5"
+    w:uiPriority="49" />
+    <w:lsdException w:name="Grid Table 5 Dark Accent 5"
+    w:uiPriority="50" />
+    <w:lsdException w:name="Grid Table 6 Colorful Accent 5"
+    w:uiPriority="51" />
+    <w:lsdException w:name="Grid Table 7 Colorful Accent 5"
+    w:uiPriority="52" />
+    <w:lsdException w:name="Grid Table 1 Light Accent 6"
+    w:uiPriority="46" />
+    <w:lsdException w:name="Grid Table 2 Accent 6"
+    w:uiPriority="47" />
+    <w:lsdException w:name="Grid Table 3 Accent 6"
+    w:uiPriority="48" />
+    <w:lsdException w:name="Grid Table 4 Accent 6"
+    w:uiPriority="49" />
+    <w:lsdException w:name="Grid Table 5 Dark Accent 6"
+    w:uiPriority="50" />
+    <w:lsdException w:name="Grid Table 6 Colorful Accent 6"
+    w:uiPriority="51" />
+    <w:lsdException w:name="Grid Table 7 Colorful Accent 6"
+    w:uiPriority="52" />
+    <w:lsdException w:name="List Table 1 Light"
+    w:uiPriority="46" />
+    <w:lsdException w:name="List Table 2" w:uiPriority="47" />
+    <w:lsdException w:name="List Table 3" w:uiPriority="48" />
+    <w:lsdException w:name="List Table 4" w:uiPriority="49" />
+    <w:lsdException w:name="List Table 5 Dark" w:uiPriority="50" />
+    <w:lsdException w:name="List Table 6 Colorful"
+    w:uiPriority="51" />
+    <w:lsdException w:name="List Table 7 Colorful"
+    w:uiPriority="52" />
+    <w:lsdException w:name="List Table 1 Light Accent 1"
+    w:uiPriority="46" />
+    <w:lsdException w:name="List Table 2 Accent 1"
+    w:uiPriority="47" />
+    <w:lsdException w:name="List Table 3 Accent 1"
+    w:uiPriority="48" />
+    <w:lsdException w:name="List Table 4 Accent 1"
+    w:uiPriority="49" />
+    <w:lsdException w:name="List Table 5 Dark Accent 1"
+    w:uiPriority="50" />
+    <w:lsdException w:name="List Table 6 Colorful Accent 1"
+    w:uiPriority="51" />
+    <w:lsdException w:name="List Table 7 Colorful Accent 1"
+    w:uiPriority="52" />
+    <w:lsdException w:name="List Table 1 Light Accent 2"
+    w:uiPriority="46" />
+    <w:lsdException w:name="List Table 2 Accent 2"
+    w:uiPriority="47" />
+    <w:lsdException w:name="List Table 3 Accent 2"
+    w:uiPriority="48" />
+    <w:lsdException w:name="List Table 4 Accent 2"
+    w:uiPriority="49" />
+    <w:lsdException w:name="List Table 5 Dark Accent 2"
+    w:uiPriority="50" />
+    <w:lsdException w:name="List Table 6 Colorful Accent 2"
+    w:uiPriority="51" />
+    <w:lsdException w:name="List Table 7 Colorful Accent 2"
+    w:uiPriority="52" />
+    <w:lsdException w:name="List Table 1 Light Accent 3"
+    w:uiPriority="46" />
+    <w:lsdException w:name="List Table 2 Accent 3"
+    w:uiPriority="47" />
+    <w:lsdException w:name="List Table 3 Accent 3"
+    w:uiPriority="48" />
+    <w:lsdException w:name="List Table 4 Accent 3"
+    w:uiPriority="49" />
+    <w:lsdException w:name="List Table 5 Dark Accent 3"
+    w:uiPriority="50" />
+    <w:lsdException w:name="List Table 6 Colorful Accent 3"
+    w:uiPriority="51" />
+    <w:lsdException w:name="List Table 7 Colorful Accent 3"
+    w:uiPriority="52" />
+    <w:lsdException w:name="List Table 1 Light Accent 4"
+    w:uiPriority="46" />
+    <w:lsdException w:name="List Table 2 Accent 4"
+    w:uiPriority="47" />
+    <w:lsdException w:name="List Table 3 Accent 4"
+    w:uiPriority="48" />
+    <w:lsdException w:name="List Table 4 Accent 4"
+    w:uiPriority="49" />
+    <w:lsdException w:name="List Table 5 Dark Accent 4"
+    w:uiPriority="50" />
+    <w:lsdException w:name="List Table 6 Colorful Accent 4"
+    w:uiPriority="51" />
+    <w:lsdException w:name="List Table 7 Colorful Accent 4"
+    w:uiPriority="52" />
+    <w:lsdException w:name="List Table 1 Light Accent 5"
+    w:uiPriority="46" />
+    <w:lsdException w:name="List Table 2 Accent 5"
+    w:uiPriority="47" />
+    <w:lsdException w:name="List Table 3 Accent 5"
+    w:uiPriority="48" />
+    <w:lsdException w:name="List Table 4 Accent 5"
+    w:uiPriority="49" />
+    <w:lsdException w:name="List Table 5 Dark Accent 5"
+    w:uiPriority="50" />
+    <w:lsdException w:name="List Table 6 Colorful Accent 5"
+    w:uiPriority="51" />
+    <w:lsdException w:name="List Table 7 Colorful Accent 5"
+    w:uiPriority="52" />
+    <w:lsdException w:name="List Table 1 Light Accent 6"
+    w:uiPriority="46" />
+    <w:lsdException w:name="List Table 2 Accent 6"
+    w:uiPriority="47" />
+    <w:lsdException w:name="List Table 3 Accent 6"
+    w:uiPriority="48" />
+    <w:lsdException w:name="List Table 4 Accent 6"
+    w:uiPriority="49" />
+    <w:lsdException w:name="List Table 5 Dark Accent 6"
+    w:uiPriority="50" />
+    <w:lsdException w:name="List Table 6 Colorful Accent 6"
+    w:uiPriority="51" />
+    <w:lsdException w:name="List Table 7 Colorful Accent 6"
+    w:uiPriority="52" />
+    <w:lsdException w:name="Mention" w:semiHidden="1"
+    w:uiPriority="99" w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Smart Hyperlink" w:semiHidden="1"
+    w:uiPriority="99" w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Hashtag" w:semiHidden="1"
+    w:uiPriority="99" w:unhideWhenUsed="1" />
+    <w:lsdException w:name="Unresolved Mention" w:semiHidden="1"
+    w:uiPriority="99" w:unhideWhenUsed="1" />
+  </w:latentStyles>
   <w:style w:type="paragraph" w:default="1" w:styleId="Normal">
     <w:name w:val="Normal" />
     <w:qFormat />
   </w:style>
-  <w:style w:type="paragraph" w:styleId="BodyText">
-    <w:name w:val="Body Text" />
-    <w:basedOn w:val="Normal" />
-    <w:link w:val="BodyTextChar" />
-    <w:pPr>
-      <w:spacing w:before="180" w:after="180" />
-    </w:pPr>
-    <w:qFormat />
-  </w:style>
-  <w:style w:type="paragraph" w:customStyle="1"
-  w:styleId="FirstParagraph">
-    <w:name w:val="First Paragraph" />
-    <w:basedOn w:val="BodyText" />
-    <w:next w:val="BodyText" />
-    <w:qFormat />
-  </w:style>
-  <w:style w:type="paragraph" w:customStyle="1"
-  w:styleId="Compact">
-    <w:name w:val="Compact" />
-    <w:basedOn w:val="BodyText" />
-    <w:qFormat />
-    <w:pPr>
-      <w:spacing w:before="36" w:after="36" />
-    </w:pPr>
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Title">
-    <w:name w:val="Title" />
-    <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:spacing w:before="480" w:after="240" />
-      <w:jc w:val="center" />
-    </w:pPr>
-    <w:rPr>
-      <w:rFonts w:asciiTheme="majorHAnsi"
-      w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
-      w:cstheme="majorBidi" />
-      <w:b />
-      <w:bCs />
-      <w:color w:val="345A8A" w:themeColor="accent1"
-      w:themeShade="B5" />
-      <w:sz w:val="36" />
-      <w:szCs w:val="36" />
-    </w:rPr>
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Subtitle">
-    <w:name w:val="Subtitle" />
-    <w:basedOn w:val="Title" />
-    <w:next w:val="BodyText" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:spacing w:before="240" w:after="240" />
-      <w:jc w:val="center" />
-    </w:pPr>
-    <w:rPr>
-      <w:sz w:val="30" />
-      <w:szCs w:val="30" />
-    </w:rPr>
-  </w:style>
-  <w:style w:type="paragraph" w:customStyle="1" w:styleId="Author">
-    <w:name w:val="Author" />
-    <w:next w:val="BodyText" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:jc w:val="center" />
-    </w:pPr>
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Date">
-    <w:name w:val="Date" />
-    <w:next w:val="BodyText" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:jc w:val="center" />
-    </w:pPr>
-  </w:style>
-  <w:style w:type="paragraph" w:customStyle="1"
-  w:styleId="Abstract">
-    <w:name w:val="Abstract" />
-    <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
-    <w:qFormat />
-    <w:pPr>
-      <w:keepNext />
-      <w:keepLines />
-      <w:spacing w:before="300" w:after="300" />
-    </w:pPr>
-    <w:rPr>
-      <w:sz w:val="20" />
-      <w:szCs w:val="20" />
-    </w:rPr>
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Bibliography">
-    <w:name w:val="Bibliography" />
+  <w:style w:type="paragraph" w:styleId="Ttulo1">
+    <w:name w:val="heading 1" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="Bibliography" />
-    <w:qFormat />
-    <w:pPr />
-    <w:rPr />
-  </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading1">
-    <w:name w:val="Heading 1" />
-    <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:qFormat />
     <w:pPr>
@@ -158,10 +611,10 @@
       <w:szCs w:val="32" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading2">
-    <w:name w:val="Heading 2" />
+  <w:style w:type="paragraph" w:styleId="Ttulo2">
+    <w:name w:val="heading 2" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -182,10 +635,10 @@
       <w:szCs w:val="32" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading3">
-    <w:name w:val="Heading 3" />
+  <w:style w:type="paragraph" w:styleId="Ttulo3">
+    <w:name w:val="heading 3" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -206,10 +659,10 @@
       <w:szCs w:val="28" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading4">
-    <w:name w:val="Heading 4" />
+  <w:style w:type="paragraph" w:styleId="Ttulo4">
+    <w:name w:val="heading 4" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -226,14 +679,12 @@
       <w:b />
       <w:bCs />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
-      <w:sz w:val="24" />
-      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading5">
-    <w:name w:val="Heading 5" />
+  <w:style w:type="paragraph" w:styleId="Ttulo5">
+    <w:name w:val="heading 5" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -250,14 +701,12 @@
       <w:i />
       <w:iCs />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
-      <w:sz w:val="24" />
-      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading6">
-    <w:name w:val="Heading 6" />
+  <w:style w:type="paragraph" w:styleId="Ttulo6">
+    <w:name w:val="heading 6" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -272,14 +721,12 @@
       w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
       w:cstheme="majorBidi" />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
-      <w:sz w:val="24" />
-      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading7">
-    <w:name w:val="Heading 7" />
+  <w:style w:type="paragraph" w:styleId="Ttulo7">
+    <w:name w:val="heading 7" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -294,14 +741,12 @@
       w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
       w:cstheme="majorBidi" />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
-      <w:sz w:val="24" />
-      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading8">
-    <w:name w:val="Heading 8" />
+  <w:style w:type="paragraph" w:styleId="Ttulo8">
+    <w:name w:val="heading 8" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -316,14 +761,12 @@
       w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
       w:cstheme="majorBidi" />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
-      <w:sz w:val="24" />
-      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Heading9">
-    <w:name w:val="Heading 9" />
+  <w:style w:type="paragraph" w:styleId="Ttulo9">
+    <w:name w:val="heading 9" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="BodyText" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -338,20 +781,146 @@
       w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
       w:cstheme="majorBidi" />
       <w:color w:val="4F81BD" w:themeColor="accent1" />
-      <w:sz w:val="24" />
-      <w:szCs w:val="24" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="BlockText">
+  <w:style w:type="character" w:default="1"
+  w:styleId="Fuentedeprrafopredeter">
+    <w:name w:val="Default Paragraph Font" />
+    <w:uiPriority w:val="1" />
+    <w:semiHidden />
+    <w:unhideWhenUsed />
+  </w:style>
+  <w:style w:type="table" w:default="1" w:styleId="Tablanormal">
+    <w:name w:val="Normal Table" />
+    <w:uiPriority w:val="99" />
+    <w:semiHidden />
+    <w:unhideWhenUsed />
+    <w:tblPr>
+      <w:tblInd w:w="0" w:type="dxa" />
+      <w:tblCellMar>
+        <w:top w:w="0" w:type="dxa" />
+        <w:left w:w="108" w:type="dxa" />
+        <w:bottom w:w="0" w:type="dxa" />
+        <w:right w:w="108" w:type="dxa" />
+      </w:tblCellMar>
+    </w:tblPr>
+  </w:style>
+  <w:style w:type="numbering" w:default="1" w:styleId="Sinlista">
+    <w:name w:val="No List" />
+    <w:uiPriority w:val="99" />
+    <w:semiHidden />
+    <w:unhideWhenUsed />
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Textoindependiente">
+    <w:name w:val="Body Text" />
+    <w:basedOn w:val="Normal" />
+    <w:qFormat />
+    <w:pPr>
+      <w:spacing w:before="180" w:after="180" />
+    </w:pPr>
+  </w:style>
+  <w:style w:type="paragraph" w:customStyle="1"
+  w:styleId="FirstParagraph">
+    <w:name w:val="First Paragraph" />
+    <w:basedOn w:val="Textoindependiente" />
+    <w:next w:val="Textoindependiente" />
+    <w:qFormat />
+  </w:style>
+  <w:style w:type="paragraph" w:customStyle="1"
+  w:styleId="Compact">
+    <w:name w:val="Compact" />
+    <w:basedOn w:val="Textoindependiente" />
+    <w:qFormat />
+    <w:pPr>
+      <w:spacing w:before="36" w:after="36" />
+    </w:pPr>
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Ttulo">
+    <w:name w:val="Title" />
+    <w:basedOn w:val="Normal" />
+    <w:next w:val="Textoindependiente" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:spacing w:before="480" w:after="240" />
+      <w:jc w:val="center" />
+    </w:pPr>
+    <w:rPr>
+      <w:rFonts w:asciiTheme="majorHAnsi"
+      w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
+      w:cstheme="majorBidi" />
+      <w:b />
+      <w:bCs />
+      <w:color w:val="345A8A" w:themeColor="accent1"
+      w:themeShade="B5" />
+      <w:sz w:val="36" />
+      <w:szCs w:val="36" />
+    </w:rPr>
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Subttulo">
+    <w:name w:val="Subtitle" />
+    <w:basedOn w:val="Ttulo" />
+    <w:next w:val="Textoindependiente" />
+    <w:qFormat />
+    <w:pPr>
+      <w:spacing w:before="240" />
+    </w:pPr>
+    <w:rPr>
+      <w:sz w:val="30" />
+      <w:szCs w:val="30" />
+    </w:rPr>
+  </w:style>
+  <w:style w:type="paragraph" w:customStyle="1" w:styleId="Author">
+    <w:name w:val="Author" />
+    <w:next w:val="Textoindependiente" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:jc w:val="center" />
+    </w:pPr>
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Fecha">
+    <w:name w:val="Date" />
+    <w:next w:val="Textoindependiente" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:jc w:val="center" />
+    </w:pPr>
+  </w:style>
+  <w:style w:type="paragraph" w:customStyle="1"
+  w:styleId="Abstract">
+    <w:name w:val="Abstract" />
+    <w:basedOn w:val="Normal" />
+    <w:next w:val="Textoindependiente" />
+    <w:qFormat />
+    <w:pPr>
+      <w:keepNext />
+      <w:keepLines />
+      <w:spacing w:before="300" w:after="300" />
+    </w:pPr>
+    <w:rPr>
+      <w:sz w:val="20" />
+      <w:szCs w:val="20" />
+    </w:rPr>
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Bibliografa">
+    <w:name w:val="Bibliography" />
+    <w:basedOn w:val="Normal" />
+    <w:qFormat />
+  </w:style>
+  <w:style w:type="paragraph" w:styleId="Textodebloque">
     <w:name w:val="Block Text" />
-    <w:basedOn w:val="BodyText" />
-    <w:next w:val="BodyText" />
+    <w:basedOn w:val="Textoindependiente" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
     <w:pPr>
       <w:spacing w:before="100" w:after="100" />
-      <w:ind w:firstLine="0" />
     </w:pPr>
     <w:rPr>
       <w:rFonts w:asciiTheme="majorHAnsi"
@@ -362,23 +931,15 @@
       <w:szCs w:val="20" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="FootnoteText">
-    <w:name w:val="Footnote Text" />
+  <w:style w:type="paragraph" w:styleId="Textonotapie">
+    <w:name w:val="footnote text" />
     <w:basedOn w:val="Normal" />
-    <w:next w:val="FootnoteText" />
     <w:uiPriority w:val="9" />
     <w:unhideWhenUsed />
     <w:qFormat />
   </w:style>
-  <w:style w:type="character" w:default="1"
-  w:styleId="DefaultParagraphFont">
-    <w:name w:val="Default Paragraph Font" />
-    <w:semiHidden />
-    <w:unhideWhenUsed />
-  </w:style>
-  <w:style w:type="table" w:default="1" w:styleId="Table">
+  <w:style w:type="table" w:customStyle="1" w:styleId="Table">
     <w:name w:val="Table" />
-    <w:basedOn w:val="TableNormal" />
     <w:semiHidden />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -411,12 +972,12 @@
     <w:name w:val="Definition" />
     <w:basedOn w:val="Normal" />
   </w:style>
-  <w:style w:type="paragraph" w:styleId="Caption">
-    <w:name w:val="Caption" />
+  <w:style w:type="paragraph" w:styleId="Descripcin">
+    <w:name w:val="caption" />
     <w:basedOn w:val="Normal" />
-    <w:link w:val="BodyTextChar" />
+    <w:link w:val="DescripcinCar" />
     <w:pPr>
-      <w:spacing w:before="0" w:after="120" />
+      <w:spacing w:after="120" />
     </w:pPr>
     <w:rPr>
       <w:i />
@@ -425,7 +986,7 @@
   <w:style w:type="paragraph" w:customStyle="1"
   w:styleId="TableCaption">
     <w:name w:val="Table Caption" />
-    <w:basedOn w:val="Caption" />
+    <w:basedOn w:val="Descripcin" />
     <w:pPr>
       <w:keepNext />
     </w:pPr>
@@ -433,7 +994,7 @@
   <w:style w:type="paragraph" w:customStyle="1"
   w:styleId="ImageCaption">
     <w:name w:val="Image Caption" />
-    <w:basedOn w:val="Caption" />
+    <w:basedOn w:val="Descripcin" />
   </w:style>
   <w:style w:type="paragraph" w:customStyle="1" w:styleId="Figure">
     <w:name w:val="Figure" />
@@ -448,38 +1009,39 @@
     </w:pPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
-  w:styleId="BodyTextChar">
-    <w:name w:val="Body Text Char" />
-    <w:basedOn w:val="DefaultParagraphFont" />
-    <w:link w:val="BodyText" />
+  w:styleId="DescripcinCar">
+    <w:name w:val="Descripción Car" />
+    <w:basedOn w:val="Fuentedeprrafopredeter" />
+    <w:link w:val="Descripcin" />
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="VerbatimChar">
     <w:name w:val="Verbatim Char" />
-    <w:basedOn w:val="BodyTextChar" />
+    <w:basedOn w:val="DescripcinCar" />
+    <w:link w:val="SourceCode" />
     <w:rPr>
       <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:sz w:val="22" />
     </w:rPr>
   </w:style>
-  <w:style w:type="character" w:styleId="FootnoteReference">
-    <w:name w:val="Footnote Reference" />
-    <w:basedOn w:val="BodyTextChar" />
+  <w:style w:type="character" w:styleId="Refdenotaalpie">
+    <w:name w:val="footnote reference" />
+    <w:basedOn w:val="DescripcinCar" />
     <w:rPr>
       <w:vertAlign w:val="superscript" />
     </w:rPr>
   </w:style>
-  <w:style w:type="character" w:styleId="Hyperlink">
+  <w:style w:type="character" w:styleId="Hipervnculo">
     <w:name w:val="Hyperlink" />
-    <w:basedOn w:val="BodyTextChar" />
+    <w:basedOn w:val="DescripcinCar" />
     <w:rPr>
       <w:color w:val="4F81BD" w:themeColor="accent1" />
     </w:rPr>
   </w:style>
-  <w:style w:type="paragraph" w:styleId="TOCHeading">
+  <w:style w:type="paragraph" w:styleId="TtuloTDC">
     <w:name w:val="TOC Heading" />
-    <w:basedOn w:val="Heading1" />
-    <w:next w:val="BodyText" />
+    <w:basedOn w:val="Ttulo1" />
+    <w:next w:val="Textoindependiente" />
     <w:uiPriority w:val="39" />
     <w:unhideWhenUsed />
     <w:qFormat />
@@ -488,9 +1050,6 @@
       <w:outlineLvl w:val="9" />
     </w:pPr>
     <w:rPr>
-      <w:rFonts w:asciiTheme="majorHAnsi"
-      w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi"
-      w:cstheme="majorBidi" />
       <w:b w:val="0" />
       <w:bCs w:val="0" />
       <w:color w:val="365F91" w:themeColor="accent1"
@@ -503,7 +1062,7 @@
     <w:basedOn w:val="Normal" />
     <w:link w:val="VerbatimChar" />
     <w:pPr>
-      <w:wordWrap w:val="off" />
+      <w:wordWrap w:val="0" />
     </w:pPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -511,8 +1070,10 @@
     <w:name w:val="KeywordTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="007020" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:b />
+      <w:color w:val="007020" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -520,7 +1081,9 @@
     <w:name w:val="DataTypeTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:color w:val="902000" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -528,7 +1091,9 @@
     <w:name w:val="DecValTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="40a070" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="40A070" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -536,7 +1101,9 @@
     <w:name w:val="BaseNTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="40a070" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="40A070" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -544,7 +1111,9 @@
     <w:name w:val="FloatTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="40a070" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="40A070" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -552,7 +1121,9 @@
     <w:name w:val="ConstantTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:color w:val="880000" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -560,7 +1131,9 @@
     <w:name w:val="CharTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="4070a0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="4070A0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -568,7 +1141,9 @@
     <w:name w:val="SpecialCharTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="4070a0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="4070A0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -576,7 +1151,9 @@
     <w:name w:val="StringTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="4070a0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="4070A0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -584,7 +1161,9 @@
     <w:name w:val="VerbatimStringTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="4070a0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="4070A0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -592,22 +1171,29 @@
     <w:name w:val="SpecialStringTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="bb6688" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="BB6688" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="ImportTok">
     <w:name w:val="ImportTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr />
+    <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:sz w:val="22" />
+    </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="CommentTok">
     <w:name w:val="CommentTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="60a0b0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:i />
+      <w:color w:val="60A0B0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -615,8 +1201,10 @@
     <w:name w:val="DocumentationTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="ba2121" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:i />
+      <w:color w:val="BA2121" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -624,9 +1212,11 @@
     <w:name w:val="AnnotationTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="60a0b0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:b />
       <w:i />
+      <w:color w:val="60A0B0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -634,9 +1224,11 @@
     <w:name w:val="CommentVarTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="60a0b0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:b />
       <w:i />
+      <w:color w:val="60A0B0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -644,7 +1236,9 @@
     <w:name w:val="OtherTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:color w:val="007020" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -652,7 +1246,9 @@
     <w:name w:val="FunctionTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="06287e" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="06287E" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -660,7 +1256,9 @@
     <w:name w:val="VariableTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="19177c" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="19177C" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -668,8 +1266,10 @@
     <w:name w:val="ControlFlowTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="007020" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:b />
+      <w:color w:val="007020" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -677,27 +1277,37 @@
     <w:name w:val="OperatorTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:color w:val="666666" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="BuiltInTok">
     <w:name w:val="BuiltInTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr />
+    <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:sz w:val="22" />
+    </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="ExtensionTok">
     <w:name w:val="ExtensionTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr />
+    <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:sz w:val="22" />
+    </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="PreprocessorTok">
     <w:name w:val="PreprocessorTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="bc7a00" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="BC7A00" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -705,23 +1315,30 @@
     <w:name w:val="AttributeTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="7d9029" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:color w:val="7D9029" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="RegionMarkerTok">
     <w:name w:val="RegionMarkerTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr />
+    <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:sz w:val="22" />
+    </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="InformationTok">
     <w:name w:val="InformationTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="60a0b0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:b />
       <w:i />
+      <w:color w:val="60A0B0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -729,9 +1346,11 @@
     <w:name w:val="WarningTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="60a0b0" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:b />
       <w:i />
+      <w:color w:val="60A0B0" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -739,8 +1358,10 @@
     <w:name w:val="AlertTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="ff0000" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:b />
+      <w:color w:val="FF0000" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
@@ -748,14 +1369,19 @@
     <w:name w:val="ErrorTok" />
     <w:basedOn w:val="VerbatimChar" />
     <w:rPr>
-      <w:color w:val="ff0000" />
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
       <w:b />
+      <w:color w:val="FF0000" />
+      <w:sz w:val="22" />
     </w:rPr>
   </w:style>
   <w:style w:type="character" w:customStyle="1"
   w:styleId="NormalTok">
     <w:name w:val="NormalTok" />
     <w:basedOn w:val="VerbatimChar" />
-    <w:rPr />
+    <w:rPr>
+      <w:rFonts w:ascii="Consolas" w:hAnsi="Consolas" />
+      <w:sz w:val="22" />
+    </w:rPr>
   </w:style>
 </w:styles>
=== word/theme/theme1.xml ===
--- a/word/theme/theme1.xml 2019-07-18 13:44:14.821023300 +0200
+++ b/word/theme/theme1.xml 2019-07-18 13:44:19.088023300 +0200
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
 name="Office Theme">
   <a:themeElements>
=== word/webSettings.xml ===
--- a/word/webSettings.xml  2019-07-18 13:44:15.087523300 +0200
+++ b/word/webSettings.xml  2019-07-18 13:44:19.354023300 +0200
@@ -1,6 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<ns0:webSettings xmlns:ns0="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
-
-  <ns0:allowPNG />
-  <ns0:doNotSaveAsSingleFile />
-</ns0:webSettings>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<w:webSettings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
+xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
+xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
+xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
+xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
+xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
+mc:Ignorable="w14 w15 w16se w16cid">
+  <w:allowPNG />
+</w:webSettings>
=== word/_rels/document.xml.rels ===
--- a/word/_rels/document.xml.rels  2019-07-18 13:44:15.358523300 +0200
+++ b/word/_rels/document.xml.rels  2019-07-18 13:44:19.627023300 +0200
@@ -1,20 +1,28 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">

-  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering"
-  Id="rId1" Target="numbering.xml" />
-  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"
-  Id="rId2" Target="styles.xml" />
-  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"
-  Id="rId3" Target="settings.xml" />
-  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"
-  Id="rId4" Target="webSettings.xml" />
-  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"
-  Id="rId5" Target="fontTable.xml" />
-  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"
-  Id="rId6" Target="theme/theme1.xml" />
-  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"
-  Id="rId7" Target="footnotes.xml" />
-  <Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments"
-  Id="rId8" Target="comments.xml" />
+  <Relationship Id="rId8"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"
+  Target="theme/theme1.xml" />
+  <Relationship Id="rId3"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"
+  Target="settings.xml" />
+  <Relationship Id="rId7"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"
+  Target="fontTable.xml" />
+  <Relationship Id="rId2"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"
+  Target="styles.xml" />
+  <Relationship Id="rId1"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering"
+  Target="numbering.xml" />
+  <Relationship Id="rId6"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes"
+  Target="endnotes.xml" />
+  <Relationship Id="rId5"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"
+  Target="footnotes.xml" />
+  <Relationship Id="rId4"
+  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"
+  Target="webSettings.xml" />
 </Relationships>
=== word/_rels/footnotes.xml.rels ===
diff: b/word/_rels/footnotes.xml.rels: No such file or directory
=== [Content_Types].xml ===
--- a/[Content_Types].xml   2019-07-18 13:44:15.896523300 +0200
+++ b/[Content_Types].xml   2019-07-18 13:44:19.887023300 +0200
@@ -1,31 +1,30 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">

-  <Default Extension="xml" ContentType="application/xml" />
+  <Default Extension="emf" ContentType="image/x-emf" />
   <Default Extension="rels"
   ContentType="application/vnd.openxmlformats-package.relationships+xml" />
-  <Override PartName="/word/webSettings.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" />
+  <Default Extension="xml" ContentType="application/xml" />
+  <Override PartName="/word/document.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" />
   <Override PartName="/word/numbering.xml"
   ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" />
+  <Override PartName="/word/styles.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" />
   <Override PartName="/word/settings.xml"
   ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" />
-  <Override PartName="/word/theme/theme1.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.theme+xml" />
+  <Override PartName="/word/webSettings.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" />
+  <Override PartName="/word/footnotes.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" />
+  <Override PartName="/word/endnotes.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml" />
   <Override PartName="/word/fontTable.xml"
   ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" />
-  <Override PartName="/docProps/app.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" />
+  <Override PartName="/word/theme/theme1.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.theme+xml" />
   <Override PartName="/docProps/core.xml"
   ContentType="application/vnd.openxmlformats-package.core-properties+xml" />
-  <Override PartName="/docProps/custom.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" />
-  <Override PartName="/word/styles.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" />
-  <Override PartName="/word/document.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" />
-  <Override PartName="/word/comments.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml" />
-  <Override PartName="/word/footnotes.xml"
-  ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" />
+  <Override PartName="/docProps/app.xml"
+  ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" />
 </Types>
=== _rels/.rels ===
--- a/_rels/.rels   2019-07-18 13:44:16.182023300 +0200
+++ b/_rels/.rels   2019-07-18 13:44:20.152023300 +0200
@@ -1,16 +1,16 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">

+  <Relationship Id="rId3"
+  Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"
+  Target="docProps/core.xml" />
+  <Relationship Id="rId2"
+  Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail"
+  Target="docProps/thumbnail.emf" />
   <Relationship Id="rId1"
   Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"
   Target="word/document.xml" />
   <Relationship Id="rId4"
   Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties"
   Target="docProps/app.xml" />
-  <Relationship Id="rId3"
-  Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"
-  Target="docProps/core.xml" />
-  <Relationship Id="rId5"
-  Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties"
-  Target="docProps/custom.xml" />
 </Relationships>

This feels like wonderland.
Again after much trial and error, I found the reason why Word Online wont display lists correctly within tables. Apparently it doesn't like <w:jc w:val="left" /> in cells with lists.

This manually modified docx opens fine in local (Word 2016) and Online Word:

new_table_with_list_cell2mod.docx

And the diff with the one generated by pandoc (plus the PR fix):

./diff-zip.sh new_table_with_list_cell.docx new_table_with_list_cell2mod.docx
=== word/document.xml ===
--- a/word/document.xml 2019-07-18 14:47:58.617023300 +0200
+++ b/word/document.xml 2019-07-18 14:48:03.499023300 +0200
@@ -64,7 +64,6 @@
         <w:tc>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1001" />
@@ -78,7 +77,6 @@
           </w:p>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1001" />
@@ -92,7 +90,6 @@
           </w:p>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1001" />
@@ -106,9 +103,11 @@
           </w:p>
         </w:tc>
         <w:tc>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1002" />
@@ -122,7 +121,6 @@
           </w:p>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1002" />
@@ -136,7 +134,6 @@
           </w:p>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1002" />

Now, is removing that line a safe thing to do? in all table cells? only in those with lists?
I'm not sure yet about the answers.

Wonderland indeed. After playing around with it some more, it turns out there is no need to remove that line, just reorder it and move it after the numPr part. Why? no idea.

This file is just like the one generated by pandoc (plus the initial PR fix), but modifying manually the order of the jc element as shown in the diff:

new_table_with_list_cell4mod.docx

./diff-zip.sh new_table_with_list_cell.docx new_table_with_list_cell4mod.docx
=== word/document.xml ===
--- a/word/document.xml 2019-07-18 15:09:10.908951000 +0200
+++ b/word/document.xml 2019-07-18 15:09:15.556880400 +0200
@@ -64,11 +64,11 @@
         <w:tc>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1001" />
               </w:numPr>
+              <w:jc w:val="left" />
             </w:pPr>
             <w:r>
               <w:t xml:space="preserve">
@@ -78,11 +78,11 @@
           </w:p>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1001" />
               </w:numPr>
+              <w:jc w:val="left" />
             </w:pPr>
             <w:r>
               <w:t xml:space="preserve">
@@ -92,11 +92,11 @@
           </w:p>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1001" />
               </w:numPr>
+              <w:jc w:val="left" />
             </w:pPr>
             <w:r>
               <w:t xml:space="preserve">
@@ -108,11 +108,11 @@
         <w:tc>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1002" />
               </w:numPr>
+              <w:jc w:val="left" />
             </w:pPr>
             <w:r>
               <w:t xml:space="preserve">
@@ -122,11 +122,11 @@
           </w:p>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1002" />
               </w:numPr>
+              <w:jc w:val="left" />
             </w:pPr>
             <w:r>
               <w:t xml:space="preserve">
@@ -136,11 +136,11 @@
           </w:p>
           <w:p>
             <w:pPr>
-              <w:jc w:val="left" />
               <w:numPr>
                 <w:ilvl w:val="0" />
                 <w:numId w:val="1002" />
               </w:numPr>
+              <w:jc w:val="left" />
             </w:pPr>
             <w:r>
               <w:t xml:space="preserve">

I'll see if it's as easy to make this change as the previous one, and hopefully I'll update the PR tomorrow.

Great work tracking this down, @agusmba! This is not the first Word Online quirk we've run into.
I'll wait for you to say that the PR is ready to go.

I updated the PR, ~hopefully the tests will pass~. Tests pass correctly.
Meanwhile it would be nice if someone with an old version of Word, or a different OS from windows (i.e. Linux, OS X) could confirm that the new files open correctly:

new2_table_with_list_cell.docx

new_lists.docx

new_lists_continuing.docx

new_lists_restarting.docx

They all look fine in my Word 2016 (windows7) and in Word Online (365).

You should see bullets and/or ordered lists in them.

These look good in Word 2017 on Mac.

Was this page helpful?
0 / 5 - 0 ratings