public void generateReport(String filename, String html, bool landscape, bool fiveByEight)
        {
            try
            {
                string contentType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
                using (MemoryStream generatedDocument = new MemoryStream())
                {
                    using (WordprocessingDocument package = WordprocessingDocument.Create(generatedDocument, WordprocessingDocumentType.Document))
                    {
                        MainDocumentPart mainPart = package.MainDocumentPart;
                        if (mainPart == null)
                        {
                            mainPart = package.AddMainDocumentPart();
                            new Document(new Body()).Save(mainPart);
                        }

                        HtmlConverter converter = new HtmlConverter(mainPart);

                        //http://html2openxml.codeplex.com/wikipage?title=ImageProcessing&referringTitle=Documentation
                        //to process an image you must provide a base

                        //Uri baseImageUrl = new Uri(Request.Url.Scheme + "://" + Request.Url.Authority);
                        //converter.BaseImageUrl = baseImageUrl;
                        // Test

                        Body body = mainPart.Document.Body;

                        if (landscape)
                        {
                            SectionProperties properties = new SectionProperties();
                            PageSize pageSize;

                            if (fiveByEight)
                            {
                                pageSize = new PageSize()
                                {
                                    Width = (UInt32Value)11520U,
                                    Height = (UInt32Value)7200U,
                                    Orient = PageOrientationValues.Landscape
                                };
                            }
                            else
                            {
                                pageSize = new PageSize()
                                {
                                    Width = (UInt32Value)15840U,
                                    Height = (UInt32Value)12240U,
                                    Orient = PageOrientationValues.Landscape
                                };
                            }
                            properties.Append(pageSize);

                            PageMargin pageMargin = new PageMargin()
                            {
                                Top = 720,
                                Right = (UInt32Value)1008U,
                                Bottom = 720,
                                Left = (UInt32Value)1008U,
                                Header = (UInt32Value)720U,
                                Footer = (UInt32Value)720U,
                                Gutter = (UInt32Value)0U };
                            properties.Append(pageMargin);

                            body.Append(properties);

                            SpacingBetweenLines spacing = new SpacingBetweenLines() { Line = "240", LineRule = LineSpacingRuleValues.Auto, Before = "0", After = "0" };
                            ParagraphProperties paragraphProperties = new ParagraphProperties();
                            Paragraph paragraph = new Paragraph();

                            paragraphProperties.Append(spacing);
                            paragraph.Append(paragraphProperties);
                            body.Append(paragraph);
                        }

                        var paragraphs = converter.Parse(html);
                        for (int i = 0; i < paragraphs.Count; i++)
                        {

                            if (landscape)
                            {
                                ParagraphProperties paragraphProperties1 = new ParagraphProperties(
                                  new ParagraphStyleId() { Val = "No Spacing" },
                                  new SpacingBetweenLines() { After = "0" }
                                 );
                                paragraphs[i].PrependChild(paragraphProperties1);

                            }
                            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
                            ContextualSpacing contextualSpacing = new ContextualSpacing();

                            paragraphProperties2.Append(contextualSpacing);
                            paragraphs[i].Append(paragraphProperties2);
                            body.Append(paragraphs[i]);
                        }

                        //I have no idea why it doesnt work when you try to use pageBreakParagraph... but it doesnt... so redeclare this same string here
                        string lineBreakCharacter = "%$%lineBreak%$%";

                        List<Paragraph> pageBreakMarkers = new List<Paragraph>();
                        var lastP = mainPart.Document.Descendants<Paragraph>().LastOrDefault();
                        foreach (Paragraph P in mainPart.Document.Descendants<Paragraph>())
                        {
                            foreach (Run R in P.Descendants<Run>())
                            {
                                if (R.Descendants<Text>()
                                    .Where(T => T.Text == lineBreakCharacter).Count() > 0)
                                {
                                    if (P != lastP)
                                    {
                                        P.InsertAfterSelf
                                            (new Paragraph(
                                                new Run(
                                                    new Break() { Type = BreakValues.Page })));
                                    }
                                    pageBreakMarkers.Add(P);
                                }
                            }
                        }
                        foreach(Paragraph P in pageBreakMarkers)
                        {
                            P.Remove();
                        }

                        var tables = mainPart.Document.Body.Elements<DocumentFormat.OpenXml.Wordprocessing.Table>();

                        var last = tables.LastOrDefault();
                        foreach (DocumentFormat.OpenXml.Wordprocessing.Table table in tables)
                        {
                            foreach (DocumentFormat.OpenXml.Wordprocessing.Paragraph p in table.Elements<Paragraph>())
                            {
                                ParagraphProperties spaceProperties = new ParagraphProperties();
                                ContextualSpacing contextualSpacing = new ContextualSpacing();

                                spaceProperties.Append(contextualSpacing);
                                p.PrependChild(spaceProperties);
                            }
                            foreach (DocumentFormat.OpenXml.Wordprocessing.TableRow row in table.Elements<DocumentFormat.OpenXml.Wordprocessing.TableRow>())
                            {
                                foreach (DocumentFormat.OpenXml.Wordprocessing.Paragraph p in row.Elements<Paragraph>())
                                {
                                    ParagraphProperties spaceProperties = new ParagraphProperties();
                                    ContextualSpacing contextualSpacing = new ContextualSpacing();

                                    spaceProperties.Append(contextualSpacing);
                                    p.PrependChild(spaceProperties);
                                }
                                foreach(DocumentFormat.OpenXml.Wordprocessing.TableCell cell in row.Elements<DocumentFormat.OpenXml.Wordprocessing.TableCell>())
                            {
                                    TableCellProperties tableCellProperties = new TableCellProperties();
                                    ContextualSpacing contextualSpacing1 = new ContextualSpacing();
                                    tableCellProperties.Append(contextualSpacing1);
                                    cell.PrependChild(tableCellProperties);

                                    foreach (DocumentFormat.OpenXml.Wordprocessing.Paragraph p in cell.Elements<Paragraph>())
                                    {
                                        ParagraphProperties spaceProperties = new ParagraphProperties();
                                        ContextualSpacing contextualSpacing = new ContextualSpacing();

                                        spaceProperties.Append(contextualSpacing);
                                        p.PrependChild(spaceProperties);
                                    }
                            }
                        }
                        }
                        mainPart.Document.Save();
                    }

                    byte[] bytesInStream = generatedDocument.ToArray(); // simpler way of converting to array
                    generatedDocument.Close();

                    Response.Clear();
                    Response.ContentType = contentType;
                    Response.AddHeader("content-disposition", "attachment;filename=" + filename);

                    //this will generate problems
                    Response.BinaryWrite(bytesInStream);
                    try
                    {
                        Response.End();
                    }
                    catch (Exception ex)
                    {
                        //Response.End(); generates an exception. if you don't use it, you get some errors when Word opens the file...
                        System.Diagnostics.Debug.WriteLine(ex.Message);
                    }

                }

            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.WriteLine(ex.Message);
            }
        }
        /// <summary>
        /// The create style.
        /// </summary>
        /// <param name="ps">
        /// The ps.
        /// </param>
        /// <param name="styleID">
        /// The style id.
        /// </param>
        /// <param name="styleName">
        /// The style name.
        /// </param>
        /// <param name="basedOnStyleID">
        /// The based on style id.
        /// </param>
        /// <param name="nextStyleID">
        /// The next style id.
        /// </param>
        /// <param name="isDefault">
        /// The is default.
        /// </param>
        /// <param name="isCustomStyle">
        /// The is custom style.
        /// </param>
        /// <returns>
        /// </returns>
        private static Style CreateStyle(
            ParagraphStyle ps,
            string styleID,
            string styleName,
            string basedOnStyleID,
            string nextStyleID,
            bool isDefault = false,
            bool isCustomStyle = true)
        {
            // todo: add font to FontTable?
            var rPr = new StyleRunProperties();

            // http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.color.aspx
            var color = new Color { Val = ps.TextColor.ToString().Trim('#').Substring(2) };
            rPr.Append(color);

            // http://msdn.microsoft.com/en-us/library/cc850848.aspx
            rPr.Append(new RunFonts { Ascii = ps.FontFamily, HighAnsi = ps.FontFamily });
            rPr.Append(new FontSize { Val = new StringValue((ps.FontSize * 2).ToString(CultureInfo.InvariantCulture)) });
            rPr.Append(
                new FontSizeComplexScript
                    {
                       Val = new StringValue((ps.FontSize * 2).ToString(CultureInfo.InvariantCulture))
                    });

            if (ps.Bold)
            {
                rPr.Append(new Bold());
            }

            if (ps.Italic)
            {
                rPr.Append(new Italic());
            }

            var pPr = new StyleParagraphProperties();
            var spacingBetweenLines2 = new SpacingBetweenLines
                {
                    After = string.Format(CultureInfo.InvariantCulture, "{0}", ps.SpacingAfter * 20),
                    Before = string.Format(CultureInfo.InvariantCulture, "{0}", ps.SpacingBefore * 20),
                    Line = string.Format(CultureInfo.InvariantCulture, "{0}", ps.LineSpacing * 240),
                    LineRule = LineSpacingRuleValues.Auto
                };
            var indentation = new Indentation
                {
                    Left = string.Format(CultureInfo.InvariantCulture, "{0}", ps.LeftIndentation * 20),
                    Right = string.Format(CultureInfo.InvariantCulture, "{0}", ps.RightIndentation * 20)
                };
            var contextualSpacing1 = new ContextualSpacing();

            pPr.Append(spacingBetweenLines2);
            pPr.Append(contextualSpacing1);
            pPr.Append(indentation);

            // StyleRunProperties styleRunProperties7 = new StyleRunProperties();
            // RunFonts runFonts8 = new RunFonts() { Ascii = "Verdana", HighAnsi = "Verdana" };
            // Color color7 = new Color() { Val = "000000" };

            // styleRunProperties7.Append(runFonts8);
            // styleRunProperties7.Append(color7);

            // http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.style.aspx
            var style = new Style
                {
                    Default = new OnOffValue(isDefault),
                    CustomStyle = new OnOffValue(isCustomStyle),
                    StyleId = styleID,
                    Type = StyleValues.Paragraph
                };

            style.Append(new Name { Val = styleName });
            if (basedOnStyleID != null)
            {
                style.Append(new BasedOn { Val = basedOnStyleID });
            }

            var rsid = new Rsid();

            // style.Append(rsid);
            var primaryStyle = new PrimaryStyle();
            style.Append(primaryStyle);
            if (nextStyleID != null)
            {
                style.Append(new NextParagraphStyle { Val = nextStyleID });
            }

            style.Append(rPr);
            style.Append(pPr);
            return style;
        }
        /// <summary>
        /// Creates a style.
        /// </summary>
        /// <param name="ps">The paragraph style.</param>
        /// <param name="styleId">The style id.</param>
        /// <param name="styleName">The style name.</param>
        /// <param name="basedOnStyleId">The based on style id.</param>
        /// <param name="nextStyleId">The next style id.</param>
        /// <param name="isDefault"><c>true</c> if the style is default.</param>
        /// <param name="isCustomStyle"><c>true</c> if the style is a custom style.</param>
        /// <returns>The <see cref="Style" />.</returns>
        private static Style CreateStyle(
            ParagraphStyle ps,
            string styleId,
            string styleName,
            string basedOnStyleId,
            string nextStyleId,
            bool isDefault     = false,
            bool isCustomStyle = true)
        {
            // todo: add font to FontTable?
            var rPr = new StyleRunProperties();

            // http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.color.aspx
            var color = new Color {
                Val = ps.TextColor.ToString().Trim('#').Substring(2)
            };

            rPr.AppendChild(color);

            // http://msdn.microsoft.com/en-us/library/cc850848.aspx
            rPr.AppendChild(new RunFonts {
                Ascii = ps.FontFamily, HighAnsi = ps.FontFamily
            });
            rPr.AppendChild(new FontSize {
                Val = new StringValue((ps.FontSize * 2).ToString(CultureInfo.InvariantCulture))
            });
            rPr.AppendChild(
                new FontSizeComplexScript
            {
                Val = new StringValue((ps.FontSize * 2).ToString(CultureInfo.InvariantCulture))
            });

            if (ps.Bold)
            {
                rPr.AppendChild(new Bold());
            }

            if (ps.Italic)
            {
                rPr.AppendChild(new Italic());
            }

            var pPr = new StyleParagraphProperties();
            var spacingBetweenLines2 = new SpacingBetweenLines
            {
                After    = string.Format(CultureInfo.InvariantCulture, "{0}", ps.SpacingAfter * 20),
                Before   = string.Format(CultureInfo.InvariantCulture, "{0}", ps.SpacingBefore * 20),
                Line     = string.Format(CultureInfo.InvariantCulture, "{0}", ps.LineSpacing * 240),
                LineRule = LineSpacingRuleValues.Auto
            };
            var indentation = new Indentation
            {
                Left  = string.Format(CultureInfo.InvariantCulture, "{0}", ps.LeftIndentation * 20),
                Right = string.Format(CultureInfo.InvariantCulture, "{0}", ps.RightIndentation * 20)
            };
            var contextualSpacing1 = new ContextualSpacing();

            pPr.AppendChild(spacingBetweenLines2);
            pPr.AppendChild(contextualSpacing1);
            pPr.AppendChild(indentation);

            // StyleRunProperties styleRunProperties7 = new StyleRunProperties();
            // RunFonts runFonts8 = new RunFonts() { Ascii = "Verdana", HighAnsi = "Verdana" };
            // Color color7 = new Color() { Val = "000000" };

            // styleRunProperties7.AppendChild(runFonts8);
            // styleRunProperties7.AppendChild(color7);

            // http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.style.aspx
            var style = new Style
            {
                Default     = new OnOffValue(isDefault),
                CustomStyle = new OnOffValue(isCustomStyle),
                StyleId     = styleId,
                Type        = StyleValues.Paragraph
            };

            style.AppendChild(new Name {
                Val = styleName
            });
            if (basedOnStyleId != null)
            {
                style.AppendChild(new BasedOn {
                    Val = basedOnStyleId
                });
            }

            //// var rsid = new Rsid();

            // style.AppendChild(rsid);
            var primaryStyle = new PrimaryStyle();

            style.AppendChild(primaryStyle);
            if (nextStyleId != null)
            {
                style.AppendChild(new NextParagraphStyle {
                    Val = nextStyleId
                });
            }

            style.AppendChild(rPr);
            style.AppendChild(pPr);
            return(style);
        }
        // Generates content of styleDefinitionsPart1.
        private void GenerateStyleDefinitionsPart1Content(StyleDefinitionsPart styleDefinitionsPart1)
        {
            Styles styles1 = new Styles() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 w15" } };
            styles1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            styles1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            styles1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            styles1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");
            styles1.AddNamespaceDeclaration("w15", "http://schemas.microsoft.com/office/word/2012/wordml");

            DocDefaults docDefaults1 = new DocDefaults();

            RunPropertiesDefault runPropertiesDefault1 = new RunPropertiesDefault();

            RunPropertiesBaseStyle runPropertiesBaseStyle1 = new RunPropertiesBaseStyle();
            RunFonts runFonts29 = new RunFonts() { AsciiTheme = ThemeFontValues.MinorHighAnsi, HighAnsiTheme = ThemeFontValues.MinorHighAnsi, EastAsiaTheme = ThemeFontValues.MinorHighAnsi, ComplexScriptTheme = ThemeFontValues.MinorBidi };
            FontSize fontSize12 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "22" };
            Languages languages1 = new Languages() { Val = "en-NZ", EastAsia = "en-US", Bidi = "ar-SA" };

            runPropertiesBaseStyle1.Append(runFonts29);
            runPropertiesBaseStyle1.Append(fontSize12);
            runPropertiesBaseStyle1.Append(fontSizeComplexScript1);
            runPropertiesBaseStyle1.Append(languages1);

            runPropertiesDefault1.Append(runPropertiesBaseStyle1);

            ParagraphPropertiesDefault paragraphPropertiesDefault1 = new ParagraphPropertiesDefault();

            ParagraphPropertiesBaseStyle paragraphPropertiesBaseStyle1 = new ParagraphPropertiesBaseStyle();
            SpacingBetweenLines spacingBetweenLines9 = new SpacingBetweenLines() { After = "160", Line = "259", LineRule = LineSpacingRuleValues.Auto };

            paragraphPropertiesBaseStyle1.Append(spacingBetweenLines9);

            paragraphPropertiesDefault1.Append(paragraphPropertiesBaseStyle1);

            docDefaults1.Append(runPropertiesDefault1);
            docDefaults1.Append(paragraphPropertiesDefault1);

            LatentStyles latentStyles1 = new LatentStyles() { DefaultLockedState = false, DefaultUiPriority = 99, DefaultSemiHidden = false, DefaultUnhideWhenUsed = false, DefaultPrimaryStyle = false, Count = 371 };
            LatentStyleExceptionInfo latentStyleExceptionInfo1 = new LatentStyleExceptionInfo() { Name = "Normal", UiPriority = 0, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo2 = new LatentStyleExceptionInfo() { Name = "heading 1", UiPriority = 9, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo3 = new LatentStyleExceptionInfo() { Name = "heading 2", UiPriority = 9, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo4 = new LatentStyleExceptionInfo() { Name = "heading 3", UiPriority = 9, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo5 = new LatentStyleExceptionInfo() { Name = "heading 4", UiPriority = 9, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo6 = new LatentStyleExceptionInfo() { Name = "heading 5", UiPriority = 9, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo7 = new LatentStyleExceptionInfo() { Name = "heading 6", UiPriority = 9, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo8 = new LatentStyleExceptionInfo() { Name = "heading 7", UiPriority = 9, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo9 = new LatentStyleExceptionInfo() { Name = "heading 8", UiPriority = 9, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo10 = new LatentStyleExceptionInfo() { Name = "heading 9", UiPriority = 9, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo11 = new LatentStyleExceptionInfo() { Name = "index 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo12 = new LatentStyleExceptionInfo() { Name = "index 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo13 = new LatentStyleExceptionInfo() { Name = "index 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo14 = new LatentStyleExceptionInfo() { Name = "index 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo15 = new LatentStyleExceptionInfo() { Name = "index 5", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo16 = new LatentStyleExceptionInfo() { Name = "index 6", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo17 = new LatentStyleExceptionInfo() { Name = "index 7", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo18 = new LatentStyleExceptionInfo() { Name = "index 8", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo19 = new LatentStyleExceptionInfo() { Name = "index 9", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo20 = new LatentStyleExceptionInfo() { Name = "toc 1", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo21 = new LatentStyleExceptionInfo() { Name = "toc 2", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo22 = new LatentStyleExceptionInfo() { Name = "toc 3", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo23 = new LatentStyleExceptionInfo() { Name = "toc 4", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo24 = new LatentStyleExceptionInfo() { Name = "toc 5", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo25 = new LatentStyleExceptionInfo() { Name = "toc 6", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo26 = new LatentStyleExceptionInfo() { Name = "toc 7", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo27 = new LatentStyleExceptionInfo() { Name = "toc 8", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo28 = new LatentStyleExceptionInfo() { Name = "toc 9", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo29 = new LatentStyleExceptionInfo() { Name = "Normal Indent", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo30 = new LatentStyleExceptionInfo() { Name = "footnote text", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo31 = new LatentStyleExceptionInfo() { Name = "annotation text", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo32 = new LatentStyleExceptionInfo() { Name = "header", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo33 = new LatentStyleExceptionInfo() { Name = "footer", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo34 = new LatentStyleExceptionInfo() { Name = "index heading", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo35 = new LatentStyleExceptionInfo() { Name = "caption", UiPriority = 35, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo36 = new LatentStyleExceptionInfo() { Name = "table of figures", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo37 = new LatentStyleExceptionInfo() { Name = "envelope address", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo38 = new LatentStyleExceptionInfo() { Name = "envelope return", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo39 = new LatentStyleExceptionInfo() { Name = "footnote reference", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo40 = new LatentStyleExceptionInfo() { Name = "annotation reference", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo41 = new LatentStyleExceptionInfo() { Name = "line number", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo42 = new LatentStyleExceptionInfo() { Name = "page number", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo43 = new LatentStyleExceptionInfo() { Name = "endnote reference", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo44 = new LatentStyleExceptionInfo() { Name = "endnote text", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo45 = new LatentStyleExceptionInfo() { Name = "table of authorities", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo46 = new LatentStyleExceptionInfo() { Name = "macro", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo47 = new LatentStyleExceptionInfo() { Name = "toa heading", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo48 = new LatentStyleExceptionInfo() { Name = "List", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo49 = new LatentStyleExceptionInfo() { Name = "List Bullet", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo50 = new LatentStyleExceptionInfo() { Name = "List Number", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo51 = new LatentStyleExceptionInfo() { Name = "List 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo52 = new LatentStyleExceptionInfo() { Name = "List 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo53 = new LatentStyleExceptionInfo() { Name = "List 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo54 = new LatentStyleExceptionInfo() { Name = "List 5", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo55 = new LatentStyleExceptionInfo() { Name = "List Bullet 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo56 = new LatentStyleExceptionInfo() { Name = "List Bullet 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo57 = new LatentStyleExceptionInfo() { Name = "List Bullet 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo58 = new LatentStyleExceptionInfo() { Name = "List Bullet 5", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo59 = new LatentStyleExceptionInfo() { Name = "List Number 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo60 = new LatentStyleExceptionInfo() { Name = "List Number 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo61 = new LatentStyleExceptionInfo() { Name = "List Number 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo62 = new LatentStyleExceptionInfo() { Name = "List Number 5", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo63 = new LatentStyleExceptionInfo() { Name = "Title", UiPriority = 10, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo64 = new LatentStyleExceptionInfo() { Name = "Closing", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo65 = new LatentStyleExceptionInfo() { Name = "Signature", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo66 = new LatentStyleExceptionInfo() { Name = "Default Paragraph Font", UiPriority = 1, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo67 = new LatentStyleExceptionInfo() { Name = "Body Text", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo68 = new LatentStyleExceptionInfo() { Name = "Body Text Indent", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo69 = new LatentStyleExceptionInfo() { Name = "List Continue", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo70 = new LatentStyleExceptionInfo() { Name = "List Continue 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo71 = new LatentStyleExceptionInfo() { Name = "List Continue 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo72 = new LatentStyleExceptionInfo() { Name = "List Continue 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo73 = new LatentStyleExceptionInfo() { Name = "List Continue 5", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo74 = new LatentStyleExceptionInfo() { Name = "Message Header", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo75 = new LatentStyleExceptionInfo() { Name = "Subtitle", UiPriority = 11, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo76 = new LatentStyleExceptionInfo() { Name = "Salutation", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo77 = new LatentStyleExceptionInfo() { Name = "Date", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo78 = new LatentStyleExceptionInfo() { Name = "Body Text First Indent", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo79 = new LatentStyleExceptionInfo() { Name = "Body Text First Indent 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo80 = new LatentStyleExceptionInfo() { Name = "Note Heading", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo81 = new LatentStyleExceptionInfo() { Name = "Body Text 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo82 = new LatentStyleExceptionInfo() { Name = "Body Text 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo83 = new LatentStyleExceptionInfo() { Name = "Body Text Indent 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo84 = new LatentStyleExceptionInfo() { Name = "Body Text Indent 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo85 = new LatentStyleExceptionInfo() { Name = "Block Text", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo86 = new LatentStyleExceptionInfo() { Name = "Hyperlink", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo87 = new LatentStyleExceptionInfo() { Name = "FollowedHyperlink", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo88 = new LatentStyleExceptionInfo() { Name = "Strong", UiPriority = 22, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo89 = new LatentStyleExceptionInfo() { Name = "Emphasis", UiPriority = 20, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo90 = new LatentStyleExceptionInfo() { Name = "Document Map", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo91 = new LatentStyleExceptionInfo() { Name = "Plain Text", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo92 = new LatentStyleExceptionInfo() { Name = "E-mail Signature", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo93 = new LatentStyleExceptionInfo() { Name = "HTML Top of Form", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo94 = new LatentStyleExceptionInfo() { Name = "HTML Bottom of Form", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo95 = new LatentStyleExceptionInfo() { Name = "Normal (Web)", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo96 = new LatentStyleExceptionInfo() { Name = "HTML Acronym", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo97 = new LatentStyleExceptionInfo() { Name = "HTML Address", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo98 = new LatentStyleExceptionInfo() { Name = "HTML Cite", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo99 = new LatentStyleExceptionInfo() { Name = "HTML Code", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo100 = new LatentStyleExceptionInfo() { Name = "HTML Definition", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo101 = new LatentStyleExceptionInfo() { Name = "HTML Keyboard", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo102 = new LatentStyleExceptionInfo() { Name = "HTML Preformatted", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo103 = new LatentStyleExceptionInfo() { Name = "HTML Sample", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo104 = new LatentStyleExceptionInfo() { Name = "HTML Typewriter", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo105 = new LatentStyleExceptionInfo() { Name = "HTML Variable", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo106 = new LatentStyleExceptionInfo() { Name = "Normal Table", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo107 = new LatentStyleExceptionInfo() { Name = "annotation subject", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo108 = new LatentStyleExceptionInfo() { Name = "No List", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo109 = new LatentStyleExceptionInfo() { Name = "Outline List 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo110 = new LatentStyleExceptionInfo() { Name = "Outline List 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo111 = new LatentStyleExceptionInfo() { Name = "Outline List 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo112 = new LatentStyleExceptionInfo() { Name = "Table Simple 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo113 = new LatentStyleExceptionInfo() { Name = "Table Simple 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo114 = new LatentStyleExceptionInfo() { Name = "Table Simple 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo115 = new LatentStyleExceptionInfo() { Name = "Table Classic 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo116 = new LatentStyleExceptionInfo() { Name = "Table Classic 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo117 = new LatentStyleExceptionInfo() { Name = "Table Classic 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo118 = new LatentStyleExceptionInfo() { Name = "Table Classic 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo119 = new LatentStyleExceptionInfo() { Name = "Table Colorful 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo120 = new LatentStyleExceptionInfo() { Name = "Table Colorful 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo121 = new LatentStyleExceptionInfo() { Name = "Table Colorful 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo122 = new LatentStyleExceptionInfo() { Name = "Table Columns 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo123 = new LatentStyleExceptionInfo() { Name = "Table Columns 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo124 = new LatentStyleExceptionInfo() { Name = "Table Columns 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo125 = new LatentStyleExceptionInfo() { Name = "Table Columns 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo126 = new LatentStyleExceptionInfo() { Name = "Table Columns 5", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo127 = new LatentStyleExceptionInfo() { Name = "Table Grid 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo128 = new LatentStyleExceptionInfo() { Name = "Table Grid 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo129 = new LatentStyleExceptionInfo() { Name = "Table Grid 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo130 = new LatentStyleExceptionInfo() { Name = "Table Grid 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo131 = new LatentStyleExceptionInfo() { Name = "Table Grid 5", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo132 = new LatentStyleExceptionInfo() { Name = "Table Grid 6", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo133 = new LatentStyleExceptionInfo() { Name = "Table Grid 7", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo134 = new LatentStyleExceptionInfo() { Name = "Table Grid 8", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo135 = new LatentStyleExceptionInfo() { Name = "Table List 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo136 = new LatentStyleExceptionInfo() { Name = "Table List 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo137 = new LatentStyleExceptionInfo() { Name = "Table List 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo138 = new LatentStyleExceptionInfo() { Name = "Table List 4", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo139 = new LatentStyleExceptionInfo() { Name = "Table List 5", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo140 = new LatentStyleExceptionInfo() { Name = "Table List 6", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo141 = new LatentStyleExceptionInfo() { Name = "Table List 7", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo142 = new LatentStyleExceptionInfo() { Name = "Table List 8", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo143 = new LatentStyleExceptionInfo() { Name = "Table 3D effects 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo144 = new LatentStyleExceptionInfo() { Name = "Table 3D effects 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo145 = new LatentStyleExceptionInfo() { Name = "Table 3D effects 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo146 = new LatentStyleExceptionInfo() { Name = "Table Contemporary", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo147 = new LatentStyleExceptionInfo() { Name = "Table Elegant", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo148 = new LatentStyleExceptionInfo() { Name = "Table Professional", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo149 = new LatentStyleExceptionInfo() { Name = "Table Subtle 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo150 = new LatentStyleExceptionInfo() { Name = "Table Subtle 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo151 = new LatentStyleExceptionInfo() { Name = "Table Web 1", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo152 = new LatentStyleExceptionInfo() { Name = "Table Web 2", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo153 = new LatentStyleExceptionInfo() { Name = "Table Web 3", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo154 = new LatentStyleExceptionInfo() { Name = "Balloon Text", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo155 = new LatentStyleExceptionInfo() { Name = "Table Grid", UiPriority = 39 };
            LatentStyleExceptionInfo latentStyleExceptionInfo156 = new LatentStyleExceptionInfo() { Name = "Table Theme", SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo157 = new LatentStyleExceptionInfo() { Name = "Placeholder Text", SemiHidden = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo158 = new LatentStyleExceptionInfo() { Name = "No Spacing", UiPriority = 1, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo159 = new LatentStyleExceptionInfo() { Name = "Light Shading", UiPriority = 60 };
            LatentStyleExceptionInfo latentStyleExceptionInfo160 = new LatentStyleExceptionInfo() { Name = "Light List", UiPriority = 61 };
            LatentStyleExceptionInfo latentStyleExceptionInfo161 = new LatentStyleExceptionInfo() { Name = "Light Grid", UiPriority = 62 };
            LatentStyleExceptionInfo latentStyleExceptionInfo162 = new LatentStyleExceptionInfo() { Name = "Medium Shading 1", UiPriority = 63 };
            LatentStyleExceptionInfo latentStyleExceptionInfo163 = new LatentStyleExceptionInfo() { Name = "Medium Shading 2", UiPriority = 64 };
            LatentStyleExceptionInfo latentStyleExceptionInfo164 = new LatentStyleExceptionInfo() { Name = "Medium List 1", UiPriority = 65 };
            LatentStyleExceptionInfo latentStyleExceptionInfo165 = new LatentStyleExceptionInfo() { Name = "Medium List 2", UiPriority = 66 };
            LatentStyleExceptionInfo latentStyleExceptionInfo166 = new LatentStyleExceptionInfo() { Name = "Medium Grid 1", UiPriority = 67 };
            LatentStyleExceptionInfo latentStyleExceptionInfo167 = new LatentStyleExceptionInfo() { Name = "Medium Grid 2", UiPriority = 68 };
            LatentStyleExceptionInfo latentStyleExceptionInfo168 = new LatentStyleExceptionInfo() { Name = "Medium Grid 3", UiPriority = 69 };
            LatentStyleExceptionInfo latentStyleExceptionInfo169 = new LatentStyleExceptionInfo() { Name = "Dark List", UiPriority = 70 };
            LatentStyleExceptionInfo latentStyleExceptionInfo170 = new LatentStyleExceptionInfo() { Name = "Colorful Shading", UiPriority = 71 };
            LatentStyleExceptionInfo latentStyleExceptionInfo171 = new LatentStyleExceptionInfo() { Name = "Colorful List", UiPriority = 72 };
            LatentStyleExceptionInfo latentStyleExceptionInfo172 = new LatentStyleExceptionInfo() { Name = "Colorful Grid", UiPriority = 73 };
            LatentStyleExceptionInfo latentStyleExceptionInfo173 = new LatentStyleExceptionInfo() { Name = "Light Shading Accent 1", UiPriority = 60 };
            LatentStyleExceptionInfo latentStyleExceptionInfo174 = new LatentStyleExceptionInfo() { Name = "Light List Accent 1", UiPriority = 61 };
            LatentStyleExceptionInfo latentStyleExceptionInfo175 = new LatentStyleExceptionInfo() { Name = "Light Grid Accent 1", UiPriority = 62 };
            LatentStyleExceptionInfo latentStyleExceptionInfo176 = new LatentStyleExceptionInfo() { Name = "Medium Shading 1 Accent 1", UiPriority = 63 };
            LatentStyleExceptionInfo latentStyleExceptionInfo177 = new LatentStyleExceptionInfo() { Name = "Medium Shading 2 Accent 1", UiPriority = 64 };
            LatentStyleExceptionInfo latentStyleExceptionInfo178 = new LatentStyleExceptionInfo() { Name = "Medium List 1 Accent 1", UiPriority = 65 };
            LatentStyleExceptionInfo latentStyleExceptionInfo179 = new LatentStyleExceptionInfo() { Name = "Revision", SemiHidden = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo180 = new LatentStyleExceptionInfo() { Name = "List Paragraph", UiPriority = 34, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo181 = new LatentStyleExceptionInfo() { Name = "Quote", UiPriority = 29, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo182 = new LatentStyleExceptionInfo() { Name = "Intense Quote", UiPriority = 30, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo183 = new LatentStyleExceptionInfo() { Name = "Medium List 2 Accent 1", UiPriority = 66 };
            LatentStyleExceptionInfo latentStyleExceptionInfo184 = new LatentStyleExceptionInfo() { Name = "Medium Grid 1 Accent 1", UiPriority = 67 };
            LatentStyleExceptionInfo latentStyleExceptionInfo185 = new LatentStyleExceptionInfo() { Name = "Medium Grid 2 Accent 1", UiPriority = 68 };
            LatentStyleExceptionInfo latentStyleExceptionInfo186 = new LatentStyleExceptionInfo() { Name = "Medium Grid 3 Accent 1", UiPriority = 69 };
            LatentStyleExceptionInfo latentStyleExceptionInfo187 = new LatentStyleExceptionInfo() { Name = "Dark List Accent 1", UiPriority = 70 };
            LatentStyleExceptionInfo latentStyleExceptionInfo188 = new LatentStyleExceptionInfo() { Name = "Colorful Shading Accent 1", UiPriority = 71 };
            LatentStyleExceptionInfo latentStyleExceptionInfo189 = new LatentStyleExceptionInfo() { Name = "Colorful List Accent 1", UiPriority = 72 };
            LatentStyleExceptionInfo latentStyleExceptionInfo190 = new LatentStyleExceptionInfo() { Name = "Colorful Grid Accent 1", UiPriority = 73 };
            LatentStyleExceptionInfo latentStyleExceptionInfo191 = new LatentStyleExceptionInfo() { Name = "Light Shading Accent 2", UiPriority = 60 };
            LatentStyleExceptionInfo latentStyleExceptionInfo192 = new LatentStyleExceptionInfo() { Name = "Light List Accent 2", UiPriority = 61 };
            LatentStyleExceptionInfo latentStyleExceptionInfo193 = new LatentStyleExceptionInfo() { Name = "Light Grid Accent 2", UiPriority = 62 };
            LatentStyleExceptionInfo latentStyleExceptionInfo194 = new LatentStyleExceptionInfo() { Name = "Medium Shading 1 Accent 2", UiPriority = 63 };
            LatentStyleExceptionInfo latentStyleExceptionInfo195 = new LatentStyleExceptionInfo() { Name = "Medium Shading 2 Accent 2", UiPriority = 64 };
            LatentStyleExceptionInfo latentStyleExceptionInfo196 = new LatentStyleExceptionInfo() { Name = "Medium List 1 Accent 2", UiPriority = 65 };
            LatentStyleExceptionInfo latentStyleExceptionInfo197 = new LatentStyleExceptionInfo() { Name = "Medium List 2 Accent 2", UiPriority = 66 };
            LatentStyleExceptionInfo latentStyleExceptionInfo198 = new LatentStyleExceptionInfo() { Name = "Medium Grid 1 Accent 2", UiPriority = 67 };
            LatentStyleExceptionInfo latentStyleExceptionInfo199 = new LatentStyleExceptionInfo() { Name = "Medium Grid 2 Accent 2", UiPriority = 68 };
            LatentStyleExceptionInfo latentStyleExceptionInfo200 = new LatentStyleExceptionInfo() { Name = "Medium Grid 3 Accent 2", UiPriority = 69 };
            LatentStyleExceptionInfo latentStyleExceptionInfo201 = new LatentStyleExceptionInfo() { Name = "Dark List Accent 2", UiPriority = 70 };
            LatentStyleExceptionInfo latentStyleExceptionInfo202 = new LatentStyleExceptionInfo() { Name = "Colorful Shading Accent 2", UiPriority = 71 };
            LatentStyleExceptionInfo latentStyleExceptionInfo203 = new LatentStyleExceptionInfo() { Name = "Colorful List Accent 2", UiPriority = 72 };
            LatentStyleExceptionInfo latentStyleExceptionInfo204 = new LatentStyleExceptionInfo() { Name = "Colorful Grid Accent 2", UiPriority = 73 };
            LatentStyleExceptionInfo latentStyleExceptionInfo205 = new LatentStyleExceptionInfo() { Name = "Light Shading Accent 3", UiPriority = 60 };
            LatentStyleExceptionInfo latentStyleExceptionInfo206 = new LatentStyleExceptionInfo() { Name = "Light List Accent 3", UiPriority = 61 };
            LatentStyleExceptionInfo latentStyleExceptionInfo207 = new LatentStyleExceptionInfo() { Name = "Light Grid Accent 3", UiPriority = 62 };
            LatentStyleExceptionInfo latentStyleExceptionInfo208 = new LatentStyleExceptionInfo() { Name = "Medium Shading 1 Accent 3", UiPriority = 63 };
            LatentStyleExceptionInfo latentStyleExceptionInfo209 = new LatentStyleExceptionInfo() { Name = "Medium Shading 2 Accent 3", UiPriority = 64 };
            LatentStyleExceptionInfo latentStyleExceptionInfo210 = new LatentStyleExceptionInfo() { Name = "Medium List 1 Accent 3", UiPriority = 65 };
            LatentStyleExceptionInfo latentStyleExceptionInfo211 = new LatentStyleExceptionInfo() { Name = "Medium List 2 Accent 3", UiPriority = 66 };
            LatentStyleExceptionInfo latentStyleExceptionInfo212 = new LatentStyleExceptionInfo() { Name = "Medium Grid 1 Accent 3", UiPriority = 67 };
            LatentStyleExceptionInfo latentStyleExceptionInfo213 = new LatentStyleExceptionInfo() { Name = "Medium Grid 2 Accent 3", UiPriority = 68 };
            LatentStyleExceptionInfo latentStyleExceptionInfo214 = new LatentStyleExceptionInfo() { Name = "Medium Grid 3 Accent 3", UiPriority = 69 };
            LatentStyleExceptionInfo latentStyleExceptionInfo215 = new LatentStyleExceptionInfo() { Name = "Dark List Accent 3", UiPriority = 70 };
            LatentStyleExceptionInfo latentStyleExceptionInfo216 = new LatentStyleExceptionInfo() { Name = "Colorful Shading Accent 3", UiPriority = 71 };
            LatentStyleExceptionInfo latentStyleExceptionInfo217 = new LatentStyleExceptionInfo() { Name = "Colorful List Accent 3", UiPriority = 72 };
            LatentStyleExceptionInfo latentStyleExceptionInfo218 = new LatentStyleExceptionInfo() { Name = "Colorful Grid Accent 3", UiPriority = 73 };
            LatentStyleExceptionInfo latentStyleExceptionInfo219 = new LatentStyleExceptionInfo() { Name = "Light Shading Accent 4", UiPriority = 60 };
            LatentStyleExceptionInfo latentStyleExceptionInfo220 = new LatentStyleExceptionInfo() { Name = "Light List Accent 4", UiPriority = 61 };
            LatentStyleExceptionInfo latentStyleExceptionInfo221 = new LatentStyleExceptionInfo() { Name = "Light Grid Accent 4", UiPriority = 62 };
            LatentStyleExceptionInfo latentStyleExceptionInfo222 = new LatentStyleExceptionInfo() { Name = "Medium Shading 1 Accent 4", UiPriority = 63 };
            LatentStyleExceptionInfo latentStyleExceptionInfo223 = new LatentStyleExceptionInfo() { Name = "Medium Shading 2 Accent 4", UiPriority = 64 };
            LatentStyleExceptionInfo latentStyleExceptionInfo224 = new LatentStyleExceptionInfo() { Name = "Medium List 1 Accent 4", UiPriority = 65 };
            LatentStyleExceptionInfo latentStyleExceptionInfo225 = new LatentStyleExceptionInfo() { Name = "Medium List 2 Accent 4", UiPriority = 66 };
            LatentStyleExceptionInfo latentStyleExceptionInfo226 = new LatentStyleExceptionInfo() { Name = "Medium Grid 1 Accent 4", UiPriority = 67 };
            LatentStyleExceptionInfo latentStyleExceptionInfo227 = new LatentStyleExceptionInfo() { Name = "Medium Grid 2 Accent 4", UiPriority = 68 };
            LatentStyleExceptionInfo latentStyleExceptionInfo228 = new LatentStyleExceptionInfo() { Name = "Medium Grid 3 Accent 4", UiPriority = 69 };
            LatentStyleExceptionInfo latentStyleExceptionInfo229 = new LatentStyleExceptionInfo() { Name = "Dark List Accent 4", UiPriority = 70 };
            LatentStyleExceptionInfo latentStyleExceptionInfo230 = new LatentStyleExceptionInfo() { Name = "Colorful Shading Accent 4", UiPriority = 71 };
            LatentStyleExceptionInfo latentStyleExceptionInfo231 = new LatentStyleExceptionInfo() { Name = "Colorful List Accent 4", UiPriority = 72 };
            LatentStyleExceptionInfo latentStyleExceptionInfo232 = new LatentStyleExceptionInfo() { Name = "Colorful Grid Accent 4", UiPriority = 73 };
            LatentStyleExceptionInfo latentStyleExceptionInfo233 = new LatentStyleExceptionInfo() { Name = "Light Shading Accent 5", UiPriority = 60 };
            LatentStyleExceptionInfo latentStyleExceptionInfo234 = new LatentStyleExceptionInfo() { Name = "Light List Accent 5", UiPriority = 61 };
            LatentStyleExceptionInfo latentStyleExceptionInfo235 = new LatentStyleExceptionInfo() { Name = "Light Grid Accent 5", UiPriority = 62 };
            LatentStyleExceptionInfo latentStyleExceptionInfo236 = new LatentStyleExceptionInfo() { Name = "Medium Shading 1 Accent 5", UiPriority = 63 };
            LatentStyleExceptionInfo latentStyleExceptionInfo237 = new LatentStyleExceptionInfo() { Name = "Medium Shading 2 Accent 5", UiPriority = 64 };
            LatentStyleExceptionInfo latentStyleExceptionInfo238 = new LatentStyleExceptionInfo() { Name = "Medium List 1 Accent 5", UiPriority = 65 };
            LatentStyleExceptionInfo latentStyleExceptionInfo239 = new LatentStyleExceptionInfo() { Name = "Medium List 2 Accent 5", UiPriority = 66 };
            LatentStyleExceptionInfo latentStyleExceptionInfo240 = new LatentStyleExceptionInfo() { Name = "Medium Grid 1 Accent 5", UiPriority = 67 };
            LatentStyleExceptionInfo latentStyleExceptionInfo241 = new LatentStyleExceptionInfo() { Name = "Medium Grid 2 Accent 5", UiPriority = 68 };
            LatentStyleExceptionInfo latentStyleExceptionInfo242 = new LatentStyleExceptionInfo() { Name = "Medium Grid 3 Accent 5", UiPriority = 69 };
            LatentStyleExceptionInfo latentStyleExceptionInfo243 = new LatentStyleExceptionInfo() { Name = "Dark List Accent 5", UiPriority = 70 };
            LatentStyleExceptionInfo latentStyleExceptionInfo244 = new LatentStyleExceptionInfo() { Name = "Colorful Shading Accent 5", UiPriority = 71 };
            LatentStyleExceptionInfo latentStyleExceptionInfo245 = new LatentStyleExceptionInfo() { Name = "Colorful List Accent 5", UiPriority = 72 };
            LatentStyleExceptionInfo latentStyleExceptionInfo246 = new LatentStyleExceptionInfo() { Name = "Colorful Grid Accent 5", UiPriority = 73 };
            LatentStyleExceptionInfo latentStyleExceptionInfo247 = new LatentStyleExceptionInfo() { Name = "Light Shading Accent 6", UiPriority = 60 };
            LatentStyleExceptionInfo latentStyleExceptionInfo248 = new LatentStyleExceptionInfo() { Name = "Light List Accent 6", UiPriority = 61 };
            LatentStyleExceptionInfo latentStyleExceptionInfo249 = new LatentStyleExceptionInfo() { Name = "Light Grid Accent 6", UiPriority = 62 };
            LatentStyleExceptionInfo latentStyleExceptionInfo250 = new LatentStyleExceptionInfo() { Name = "Medium Shading 1 Accent 6", UiPriority = 63 };
            LatentStyleExceptionInfo latentStyleExceptionInfo251 = new LatentStyleExceptionInfo() { Name = "Medium Shading 2 Accent 6", UiPriority = 64 };
            LatentStyleExceptionInfo latentStyleExceptionInfo252 = new LatentStyleExceptionInfo() { Name = "Medium List 1 Accent 6", UiPriority = 65 };
            LatentStyleExceptionInfo latentStyleExceptionInfo253 = new LatentStyleExceptionInfo() { Name = "Medium List 2 Accent 6", UiPriority = 66 };
            LatentStyleExceptionInfo latentStyleExceptionInfo254 = new LatentStyleExceptionInfo() { Name = "Medium Grid 1 Accent 6", UiPriority = 67 };
            LatentStyleExceptionInfo latentStyleExceptionInfo255 = new LatentStyleExceptionInfo() { Name = "Medium Grid 2 Accent 6", UiPriority = 68 };
            LatentStyleExceptionInfo latentStyleExceptionInfo256 = new LatentStyleExceptionInfo() { Name = "Medium Grid 3 Accent 6", UiPriority = 69 };
            LatentStyleExceptionInfo latentStyleExceptionInfo257 = new LatentStyleExceptionInfo() { Name = "Dark List Accent 6", UiPriority = 70 };
            LatentStyleExceptionInfo latentStyleExceptionInfo258 = new LatentStyleExceptionInfo() { Name = "Colorful Shading Accent 6", UiPriority = 71 };
            LatentStyleExceptionInfo latentStyleExceptionInfo259 = new LatentStyleExceptionInfo() { Name = "Colorful List Accent 6", UiPriority = 72 };
            LatentStyleExceptionInfo latentStyleExceptionInfo260 = new LatentStyleExceptionInfo() { Name = "Colorful Grid Accent 6", UiPriority = 73 };
            LatentStyleExceptionInfo latentStyleExceptionInfo261 = new LatentStyleExceptionInfo() { Name = "Subtle Emphasis", UiPriority = 19, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo262 = new LatentStyleExceptionInfo() { Name = "Intense Emphasis", UiPriority = 21, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo263 = new LatentStyleExceptionInfo() { Name = "Subtle Reference", UiPriority = 31, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo264 = new LatentStyleExceptionInfo() { Name = "Intense Reference", UiPriority = 32, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo265 = new LatentStyleExceptionInfo() { Name = "Book Title", UiPriority = 33, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo266 = new LatentStyleExceptionInfo() { Name = "Bibliography", UiPriority = 37, SemiHidden = true, UnhideWhenUsed = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo267 = new LatentStyleExceptionInfo() { Name = "TOC Heading", UiPriority = 39, SemiHidden = true, UnhideWhenUsed = true, PrimaryStyle = true };
            LatentStyleExceptionInfo latentStyleExceptionInfo268 = new LatentStyleExceptionInfo() { Name = "Plain Table 1", UiPriority = 41 };
            LatentStyleExceptionInfo latentStyleExceptionInfo269 = new LatentStyleExceptionInfo() { Name = "Plain Table 2", UiPriority = 42 };
            LatentStyleExceptionInfo latentStyleExceptionInfo270 = new LatentStyleExceptionInfo() { Name = "Plain Table 3", UiPriority = 43 };
            LatentStyleExceptionInfo latentStyleExceptionInfo271 = new LatentStyleExceptionInfo() { Name = "Plain Table 4", UiPriority = 44 };
            LatentStyleExceptionInfo latentStyleExceptionInfo272 = new LatentStyleExceptionInfo() { Name = "Plain Table 5", UiPriority = 45 };
            LatentStyleExceptionInfo latentStyleExceptionInfo273 = new LatentStyleExceptionInfo() { Name = "Grid Table Light", UiPriority = 40 };
            LatentStyleExceptionInfo latentStyleExceptionInfo274 = new LatentStyleExceptionInfo() { Name = "Grid Table 1 Light", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo275 = new LatentStyleExceptionInfo() { Name = "Grid Table 2", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo276 = new LatentStyleExceptionInfo() { Name = "Grid Table 3", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo277 = new LatentStyleExceptionInfo() { Name = "Grid Table 4", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo278 = new LatentStyleExceptionInfo() { Name = "Grid Table 5 Dark", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo279 = new LatentStyleExceptionInfo() { Name = "Grid Table 6 Colorful", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo280 = new LatentStyleExceptionInfo() { Name = "Grid Table 7 Colorful", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo281 = new LatentStyleExceptionInfo() { Name = "Grid Table 1 Light Accent 1", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo282 = new LatentStyleExceptionInfo() { Name = "Grid Table 2 Accent 1", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo283 = new LatentStyleExceptionInfo() { Name = "Grid Table 3 Accent 1", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo284 = new LatentStyleExceptionInfo() { Name = "Grid Table 4 Accent 1", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo285 = new LatentStyleExceptionInfo() { Name = "Grid Table 5 Dark Accent 1", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo286 = new LatentStyleExceptionInfo() { Name = "Grid Table 6 Colorful Accent 1", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo287 = new LatentStyleExceptionInfo() { Name = "Grid Table 7 Colorful Accent 1", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo288 = new LatentStyleExceptionInfo() { Name = "Grid Table 1 Light Accent 2", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo289 = new LatentStyleExceptionInfo() { Name = "Grid Table 2 Accent 2", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo290 = new LatentStyleExceptionInfo() { Name = "Grid Table 3 Accent 2", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo291 = new LatentStyleExceptionInfo() { Name = "Grid Table 4 Accent 2", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo292 = new LatentStyleExceptionInfo() { Name = "Grid Table 5 Dark Accent 2", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo293 = new LatentStyleExceptionInfo() { Name = "Grid Table 6 Colorful Accent 2", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo294 = new LatentStyleExceptionInfo() { Name = "Grid Table 7 Colorful Accent 2", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo295 = new LatentStyleExceptionInfo() { Name = "Grid Table 1 Light Accent 3", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo296 = new LatentStyleExceptionInfo() { Name = "Grid Table 2 Accent 3", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo297 = new LatentStyleExceptionInfo() { Name = "Grid Table 3 Accent 3", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo298 = new LatentStyleExceptionInfo() { Name = "Grid Table 4 Accent 3", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo299 = new LatentStyleExceptionInfo() { Name = "Grid Table 5 Dark Accent 3", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo300 = new LatentStyleExceptionInfo() { Name = "Grid Table 6 Colorful Accent 3", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo301 = new LatentStyleExceptionInfo() { Name = "Grid Table 7 Colorful Accent 3", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo302 = new LatentStyleExceptionInfo() { Name = "Grid Table 1 Light Accent 4", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo303 = new LatentStyleExceptionInfo() { Name = "Grid Table 2 Accent 4", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo304 = new LatentStyleExceptionInfo() { Name = "Grid Table 3 Accent 4", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo305 = new LatentStyleExceptionInfo() { Name = "Grid Table 4 Accent 4", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo306 = new LatentStyleExceptionInfo() { Name = "Grid Table 5 Dark Accent 4", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo307 = new LatentStyleExceptionInfo() { Name = "Grid Table 6 Colorful Accent 4", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo308 = new LatentStyleExceptionInfo() { Name = "Grid Table 7 Colorful Accent 4", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo309 = new LatentStyleExceptionInfo() { Name = "Grid Table 1 Light Accent 5", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo310 = new LatentStyleExceptionInfo() { Name = "Grid Table 2 Accent 5", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo311 = new LatentStyleExceptionInfo() { Name = "Grid Table 3 Accent 5", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo312 = new LatentStyleExceptionInfo() { Name = "Grid Table 4 Accent 5", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo313 = new LatentStyleExceptionInfo() { Name = "Grid Table 5 Dark Accent 5", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo314 = new LatentStyleExceptionInfo() { Name = "Grid Table 6 Colorful Accent 5", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo315 = new LatentStyleExceptionInfo() { Name = "Grid Table 7 Colorful Accent 5", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo316 = new LatentStyleExceptionInfo() { Name = "Grid Table 1 Light Accent 6", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo317 = new LatentStyleExceptionInfo() { Name = "Grid Table 2 Accent 6", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo318 = new LatentStyleExceptionInfo() { Name = "Grid Table 3 Accent 6", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo319 = new LatentStyleExceptionInfo() { Name = "Grid Table 4 Accent 6", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo320 = new LatentStyleExceptionInfo() { Name = "Grid Table 5 Dark Accent 6", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo321 = new LatentStyleExceptionInfo() { Name = "Grid Table 6 Colorful Accent 6", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo322 = new LatentStyleExceptionInfo() { Name = "Grid Table 7 Colorful Accent 6", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo323 = new LatentStyleExceptionInfo() { Name = "List Table 1 Light", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo324 = new LatentStyleExceptionInfo() { Name = "List Table 2", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo325 = new LatentStyleExceptionInfo() { Name = "List Table 3", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo326 = new LatentStyleExceptionInfo() { Name = "List Table 4", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo327 = new LatentStyleExceptionInfo() { Name = "List Table 5 Dark", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo328 = new LatentStyleExceptionInfo() { Name = "List Table 6 Colorful", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo329 = new LatentStyleExceptionInfo() { Name = "List Table 7 Colorful", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo330 = new LatentStyleExceptionInfo() { Name = "List Table 1 Light Accent 1", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo331 = new LatentStyleExceptionInfo() { Name = "List Table 2 Accent 1", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo332 = new LatentStyleExceptionInfo() { Name = "List Table 3 Accent 1", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo333 = new LatentStyleExceptionInfo() { Name = "List Table 4 Accent 1", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo334 = new LatentStyleExceptionInfo() { Name = "List Table 5 Dark Accent 1", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo335 = new LatentStyleExceptionInfo() { Name = "List Table 6 Colorful Accent 1", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo336 = new LatentStyleExceptionInfo() { Name = "List Table 7 Colorful Accent 1", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo337 = new LatentStyleExceptionInfo() { Name = "List Table 1 Light Accent 2", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo338 = new LatentStyleExceptionInfo() { Name = "List Table 2 Accent 2", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo339 = new LatentStyleExceptionInfo() { Name = "List Table 3 Accent 2", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo340 = new LatentStyleExceptionInfo() { Name = "List Table 4 Accent 2", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo341 = new LatentStyleExceptionInfo() { Name = "List Table 5 Dark Accent 2", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo342 = new LatentStyleExceptionInfo() { Name = "List Table 6 Colorful Accent 2", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo343 = new LatentStyleExceptionInfo() { Name = "List Table 7 Colorful Accent 2", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo344 = new LatentStyleExceptionInfo() { Name = "List Table 1 Light Accent 3", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo345 = new LatentStyleExceptionInfo() { Name = "List Table 2 Accent 3", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo346 = new LatentStyleExceptionInfo() { Name = "List Table 3 Accent 3", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo347 = new LatentStyleExceptionInfo() { Name = "List Table 4 Accent 3", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo348 = new LatentStyleExceptionInfo() { Name = "List Table 5 Dark Accent 3", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo349 = new LatentStyleExceptionInfo() { Name = "List Table 6 Colorful Accent 3", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo350 = new LatentStyleExceptionInfo() { Name = "List Table 7 Colorful Accent 3", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo351 = new LatentStyleExceptionInfo() { Name = "List Table 1 Light Accent 4", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo352 = new LatentStyleExceptionInfo() { Name = "List Table 2 Accent 4", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo353 = new LatentStyleExceptionInfo() { Name = "List Table 3 Accent 4", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo354 = new LatentStyleExceptionInfo() { Name = "List Table 4 Accent 4", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo355 = new LatentStyleExceptionInfo() { Name = "List Table 5 Dark Accent 4", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo356 = new LatentStyleExceptionInfo() { Name = "List Table 6 Colorful Accent 4", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo357 = new LatentStyleExceptionInfo() { Name = "List Table 7 Colorful Accent 4", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo358 = new LatentStyleExceptionInfo() { Name = "List Table 1 Light Accent 5", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo359 = new LatentStyleExceptionInfo() { Name = "List Table 2 Accent 5", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo360 = new LatentStyleExceptionInfo() { Name = "List Table 3 Accent 5", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo361 = new LatentStyleExceptionInfo() { Name = "List Table 4 Accent 5", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo362 = new LatentStyleExceptionInfo() { Name = "List Table 5 Dark Accent 5", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo363 = new LatentStyleExceptionInfo() { Name = "List Table 6 Colorful Accent 5", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo364 = new LatentStyleExceptionInfo() { Name = "List Table 7 Colorful Accent 5", UiPriority = 52 };
            LatentStyleExceptionInfo latentStyleExceptionInfo365 = new LatentStyleExceptionInfo() { Name = "List Table 1 Light Accent 6", UiPriority = 46 };
            LatentStyleExceptionInfo latentStyleExceptionInfo366 = new LatentStyleExceptionInfo() { Name = "List Table 2 Accent 6", UiPriority = 47 };
            LatentStyleExceptionInfo latentStyleExceptionInfo367 = new LatentStyleExceptionInfo() { Name = "List Table 3 Accent 6", UiPriority = 48 };
            LatentStyleExceptionInfo latentStyleExceptionInfo368 = new LatentStyleExceptionInfo() { Name = "List Table 4 Accent 6", UiPriority = 49 };
            LatentStyleExceptionInfo latentStyleExceptionInfo369 = new LatentStyleExceptionInfo() { Name = "List Table 5 Dark Accent 6", UiPriority = 50 };
            LatentStyleExceptionInfo latentStyleExceptionInfo370 = new LatentStyleExceptionInfo() { Name = "List Table 6 Colorful Accent 6", UiPriority = 51 };
            LatentStyleExceptionInfo latentStyleExceptionInfo371 = new LatentStyleExceptionInfo() { Name = "List Table 7 Colorful Accent 6", UiPriority = 52 };

            latentStyles1.Append(latentStyleExceptionInfo1);
            latentStyles1.Append(latentStyleExceptionInfo2);
            latentStyles1.Append(latentStyleExceptionInfo3);
            latentStyles1.Append(latentStyleExceptionInfo4);
            latentStyles1.Append(latentStyleExceptionInfo5);
            latentStyles1.Append(latentStyleExceptionInfo6);
            latentStyles1.Append(latentStyleExceptionInfo7);
            latentStyles1.Append(latentStyleExceptionInfo8);
            latentStyles1.Append(latentStyleExceptionInfo9);
            latentStyles1.Append(latentStyleExceptionInfo10);
            latentStyles1.Append(latentStyleExceptionInfo11);
            latentStyles1.Append(latentStyleExceptionInfo12);
            latentStyles1.Append(latentStyleExceptionInfo13);
            latentStyles1.Append(latentStyleExceptionInfo14);
            latentStyles1.Append(latentStyleExceptionInfo15);
            latentStyles1.Append(latentStyleExceptionInfo16);
            latentStyles1.Append(latentStyleExceptionInfo17);
            latentStyles1.Append(latentStyleExceptionInfo18);
            latentStyles1.Append(latentStyleExceptionInfo19);
            latentStyles1.Append(latentStyleExceptionInfo20);
            latentStyles1.Append(latentStyleExceptionInfo21);
            latentStyles1.Append(latentStyleExceptionInfo22);
            latentStyles1.Append(latentStyleExceptionInfo23);
            latentStyles1.Append(latentStyleExceptionInfo24);
            latentStyles1.Append(latentStyleExceptionInfo25);
            latentStyles1.Append(latentStyleExceptionInfo26);
            latentStyles1.Append(latentStyleExceptionInfo27);
            latentStyles1.Append(latentStyleExceptionInfo28);
            latentStyles1.Append(latentStyleExceptionInfo29);
            latentStyles1.Append(latentStyleExceptionInfo30);
            latentStyles1.Append(latentStyleExceptionInfo31);
            latentStyles1.Append(latentStyleExceptionInfo32);
            latentStyles1.Append(latentStyleExceptionInfo33);
            latentStyles1.Append(latentStyleExceptionInfo34);
            latentStyles1.Append(latentStyleExceptionInfo35);
            latentStyles1.Append(latentStyleExceptionInfo36);
            latentStyles1.Append(latentStyleExceptionInfo37);
            latentStyles1.Append(latentStyleExceptionInfo38);
            latentStyles1.Append(latentStyleExceptionInfo39);
            latentStyles1.Append(latentStyleExceptionInfo40);
            latentStyles1.Append(latentStyleExceptionInfo41);
            latentStyles1.Append(latentStyleExceptionInfo42);
            latentStyles1.Append(latentStyleExceptionInfo43);
            latentStyles1.Append(latentStyleExceptionInfo44);
            latentStyles1.Append(latentStyleExceptionInfo45);
            latentStyles1.Append(latentStyleExceptionInfo46);
            latentStyles1.Append(latentStyleExceptionInfo47);
            latentStyles1.Append(latentStyleExceptionInfo48);
            latentStyles1.Append(latentStyleExceptionInfo49);
            latentStyles1.Append(latentStyleExceptionInfo50);
            latentStyles1.Append(latentStyleExceptionInfo51);
            latentStyles1.Append(latentStyleExceptionInfo52);
            latentStyles1.Append(latentStyleExceptionInfo53);
            latentStyles1.Append(latentStyleExceptionInfo54);
            latentStyles1.Append(latentStyleExceptionInfo55);
            latentStyles1.Append(latentStyleExceptionInfo56);
            latentStyles1.Append(latentStyleExceptionInfo57);
            latentStyles1.Append(latentStyleExceptionInfo58);
            latentStyles1.Append(latentStyleExceptionInfo59);
            latentStyles1.Append(latentStyleExceptionInfo60);
            latentStyles1.Append(latentStyleExceptionInfo61);
            latentStyles1.Append(latentStyleExceptionInfo62);
            latentStyles1.Append(latentStyleExceptionInfo63);
            latentStyles1.Append(latentStyleExceptionInfo64);
            latentStyles1.Append(latentStyleExceptionInfo65);
            latentStyles1.Append(latentStyleExceptionInfo66);
            latentStyles1.Append(latentStyleExceptionInfo67);
            latentStyles1.Append(latentStyleExceptionInfo68);
            latentStyles1.Append(latentStyleExceptionInfo69);
            latentStyles1.Append(latentStyleExceptionInfo70);
            latentStyles1.Append(latentStyleExceptionInfo71);
            latentStyles1.Append(latentStyleExceptionInfo72);
            latentStyles1.Append(latentStyleExceptionInfo73);
            latentStyles1.Append(latentStyleExceptionInfo74);
            latentStyles1.Append(latentStyleExceptionInfo75);
            latentStyles1.Append(latentStyleExceptionInfo76);
            latentStyles1.Append(latentStyleExceptionInfo77);
            latentStyles1.Append(latentStyleExceptionInfo78);
            latentStyles1.Append(latentStyleExceptionInfo79);
            latentStyles1.Append(latentStyleExceptionInfo80);
            latentStyles1.Append(latentStyleExceptionInfo81);
            latentStyles1.Append(latentStyleExceptionInfo82);
            latentStyles1.Append(latentStyleExceptionInfo83);
            latentStyles1.Append(latentStyleExceptionInfo84);
            latentStyles1.Append(latentStyleExceptionInfo85);
            latentStyles1.Append(latentStyleExceptionInfo86);
            latentStyles1.Append(latentStyleExceptionInfo87);
            latentStyles1.Append(latentStyleExceptionInfo88);
            latentStyles1.Append(latentStyleExceptionInfo89);
            latentStyles1.Append(latentStyleExceptionInfo90);
            latentStyles1.Append(latentStyleExceptionInfo91);
            latentStyles1.Append(latentStyleExceptionInfo92);
            latentStyles1.Append(latentStyleExceptionInfo93);
            latentStyles1.Append(latentStyleExceptionInfo94);
            latentStyles1.Append(latentStyleExceptionInfo95);
            latentStyles1.Append(latentStyleExceptionInfo96);
            latentStyles1.Append(latentStyleExceptionInfo97);
            latentStyles1.Append(latentStyleExceptionInfo98);
            latentStyles1.Append(latentStyleExceptionInfo99);
            latentStyles1.Append(latentStyleExceptionInfo100);
            latentStyles1.Append(latentStyleExceptionInfo101);
            latentStyles1.Append(latentStyleExceptionInfo102);
            latentStyles1.Append(latentStyleExceptionInfo103);
            latentStyles1.Append(latentStyleExceptionInfo104);
            latentStyles1.Append(latentStyleExceptionInfo105);
            latentStyles1.Append(latentStyleExceptionInfo106);
            latentStyles1.Append(latentStyleExceptionInfo107);
            latentStyles1.Append(latentStyleExceptionInfo108);
            latentStyles1.Append(latentStyleExceptionInfo109);
            latentStyles1.Append(latentStyleExceptionInfo110);
            latentStyles1.Append(latentStyleExceptionInfo111);
            latentStyles1.Append(latentStyleExceptionInfo112);
            latentStyles1.Append(latentStyleExceptionInfo113);
            latentStyles1.Append(latentStyleExceptionInfo114);
            latentStyles1.Append(latentStyleExceptionInfo115);
            latentStyles1.Append(latentStyleExceptionInfo116);
            latentStyles1.Append(latentStyleExceptionInfo117);
            latentStyles1.Append(latentStyleExceptionInfo118);
            latentStyles1.Append(latentStyleExceptionInfo119);
            latentStyles1.Append(latentStyleExceptionInfo120);
            latentStyles1.Append(latentStyleExceptionInfo121);
            latentStyles1.Append(latentStyleExceptionInfo122);
            latentStyles1.Append(latentStyleExceptionInfo123);
            latentStyles1.Append(latentStyleExceptionInfo124);
            latentStyles1.Append(latentStyleExceptionInfo125);
            latentStyles1.Append(latentStyleExceptionInfo126);
            latentStyles1.Append(latentStyleExceptionInfo127);
            latentStyles1.Append(latentStyleExceptionInfo128);
            latentStyles1.Append(latentStyleExceptionInfo129);
            latentStyles1.Append(latentStyleExceptionInfo130);
            latentStyles1.Append(latentStyleExceptionInfo131);
            latentStyles1.Append(latentStyleExceptionInfo132);
            latentStyles1.Append(latentStyleExceptionInfo133);
            latentStyles1.Append(latentStyleExceptionInfo134);
            latentStyles1.Append(latentStyleExceptionInfo135);
            latentStyles1.Append(latentStyleExceptionInfo136);
            latentStyles1.Append(latentStyleExceptionInfo137);
            latentStyles1.Append(latentStyleExceptionInfo138);
            latentStyles1.Append(latentStyleExceptionInfo139);
            latentStyles1.Append(latentStyleExceptionInfo140);
            latentStyles1.Append(latentStyleExceptionInfo141);
            latentStyles1.Append(latentStyleExceptionInfo142);
            latentStyles1.Append(latentStyleExceptionInfo143);
            latentStyles1.Append(latentStyleExceptionInfo144);
            latentStyles1.Append(latentStyleExceptionInfo145);
            latentStyles1.Append(latentStyleExceptionInfo146);
            latentStyles1.Append(latentStyleExceptionInfo147);
            latentStyles1.Append(latentStyleExceptionInfo148);
            latentStyles1.Append(latentStyleExceptionInfo149);
            latentStyles1.Append(latentStyleExceptionInfo150);
            latentStyles1.Append(latentStyleExceptionInfo151);
            latentStyles1.Append(latentStyleExceptionInfo152);
            latentStyles1.Append(latentStyleExceptionInfo153);
            latentStyles1.Append(latentStyleExceptionInfo154);
            latentStyles1.Append(latentStyleExceptionInfo155);
            latentStyles1.Append(latentStyleExceptionInfo156);
            latentStyles1.Append(latentStyleExceptionInfo157);
            latentStyles1.Append(latentStyleExceptionInfo158);
            latentStyles1.Append(latentStyleExceptionInfo159);
            latentStyles1.Append(latentStyleExceptionInfo160);
            latentStyles1.Append(latentStyleExceptionInfo161);
            latentStyles1.Append(latentStyleExceptionInfo162);
            latentStyles1.Append(latentStyleExceptionInfo163);
            latentStyles1.Append(latentStyleExceptionInfo164);
            latentStyles1.Append(latentStyleExceptionInfo165);
            latentStyles1.Append(latentStyleExceptionInfo166);
            latentStyles1.Append(latentStyleExceptionInfo167);
            latentStyles1.Append(latentStyleExceptionInfo168);
            latentStyles1.Append(latentStyleExceptionInfo169);
            latentStyles1.Append(latentStyleExceptionInfo170);
            latentStyles1.Append(latentStyleExceptionInfo171);
            latentStyles1.Append(latentStyleExceptionInfo172);
            latentStyles1.Append(latentStyleExceptionInfo173);
            latentStyles1.Append(latentStyleExceptionInfo174);
            latentStyles1.Append(latentStyleExceptionInfo175);
            latentStyles1.Append(latentStyleExceptionInfo176);
            latentStyles1.Append(latentStyleExceptionInfo177);
            latentStyles1.Append(latentStyleExceptionInfo178);
            latentStyles1.Append(latentStyleExceptionInfo179);
            latentStyles1.Append(latentStyleExceptionInfo180);
            latentStyles1.Append(latentStyleExceptionInfo181);
            latentStyles1.Append(latentStyleExceptionInfo182);
            latentStyles1.Append(latentStyleExceptionInfo183);
            latentStyles1.Append(latentStyleExceptionInfo184);
            latentStyles1.Append(latentStyleExceptionInfo185);
            latentStyles1.Append(latentStyleExceptionInfo186);
            latentStyles1.Append(latentStyleExceptionInfo187);
            latentStyles1.Append(latentStyleExceptionInfo188);
            latentStyles1.Append(latentStyleExceptionInfo189);
            latentStyles1.Append(latentStyleExceptionInfo190);
            latentStyles1.Append(latentStyleExceptionInfo191);
            latentStyles1.Append(latentStyleExceptionInfo192);
            latentStyles1.Append(latentStyleExceptionInfo193);
            latentStyles1.Append(latentStyleExceptionInfo194);
            latentStyles1.Append(latentStyleExceptionInfo195);
            latentStyles1.Append(latentStyleExceptionInfo196);
            latentStyles1.Append(latentStyleExceptionInfo197);
            latentStyles1.Append(latentStyleExceptionInfo198);
            latentStyles1.Append(latentStyleExceptionInfo199);
            latentStyles1.Append(latentStyleExceptionInfo200);
            latentStyles1.Append(latentStyleExceptionInfo201);
            latentStyles1.Append(latentStyleExceptionInfo202);
            latentStyles1.Append(latentStyleExceptionInfo203);
            latentStyles1.Append(latentStyleExceptionInfo204);
            latentStyles1.Append(latentStyleExceptionInfo205);
            latentStyles1.Append(latentStyleExceptionInfo206);
            latentStyles1.Append(latentStyleExceptionInfo207);
            latentStyles1.Append(latentStyleExceptionInfo208);
            latentStyles1.Append(latentStyleExceptionInfo209);
            latentStyles1.Append(latentStyleExceptionInfo210);
            latentStyles1.Append(latentStyleExceptionInfo211);
            latentStyles1.Append(latentStyleExceptionInfo212);
            latentStyles1.Append(latentStyleExceptionInfo213);
            latentStyles1.Append(latentStyleExceptionInfo214);
            latentStyles1.Append(latentStyleExceptionInfo215);
            latentStyles1.Append(latentStyleExceptionInfo216);
            latentStyles1.Append(latentStyleExceptionInfo217);
            latentStyles1.Append(latentStyleExceptionInfo218);
            latentStyles1.Append(latentStyleExceptionInfo219);
            latentStyles1.Append(latentStyleExceptionInfo220);
            latentStyles1.Append(latentStyleExceptionInfo221);
            latentStyles1.Append(latentStyleExceptionInfo222);
            latentStyles1.Append(latentStyleExceptionInfo223);
            latentStyles1.Append(latentStyleExceptionInfo224);
            latentStyles1.Append(latentStyleExceptionInfo225);
            latentStyles1.Append(latentStyleExceptionInfo226);
            latentStyles1.Append(latentStyleExceptionInfo227);
            latentStyles1.Append(latentStyleExceptionInfo228);
            latentStyles1.Append(latentStyleExceptionInfo229);
            latentStyles1.Append(latentStyleExceptionInfo230);
            latentStyles1.Append(latentStyleExceptionInfo231);
            latentStyles1.Append(latentStyleExceptionInfo232);
            latentStyles1.Append(latentStyleExceptionInfo233);
            latentStyles1.Append(latentStyleExceptionInfo234);
            latentStyles1.Append(latentStyleExceptionInfo235);
            latentStyles1.Append(latentStyleExceptionInfo236);
            latentStyles1.Append(latentStyleExceptionInfo237);
            latentStyles1.Append(latentStyleExceptionInfo238);
            latentStyles1.Append(latentStyleExceptionInfo239);
            latentStyles1.Append(latentStyleExceptionInfo240);
            latentStyles1.Append(latentStyleExceptionInfo241);
            latentStyles1.Append(latentStyleExceptionInfo242);
            latentStyles1.Append(latentStyleExceptionInfo243);
            latentStyles1.Append(latentStyleExceptionInfo244);
            latentStyles1.Append(latentStyleExceptionInfo245);
            latentStyles1.Append(latentStyleExceptionInfo246);
            latentStyles1.Append(latentStyleExceptionInfo247);
            latentStyles1.Append(latentStyleExceptionInfo248);
            latentStyles1.Append(latentStyleExceptionInfo249);
            latentStyles1.Append(latentStyleExceptionInfo250);
            latentStyles1.Append(latentStyleExceptionInfo251);
            latentStyles1.Append(latentStyleExceptionInfo252);
            latentStyles1.Append(latentStyleExceptionInfo253);
            latentStyles1.Append(latentStyleExceptionInfo254);
            latentStyles1.Append(latentStyleExceptionInfo255);
            latentStyles1.Append(latentStyleExceptionInfo256);
            latentStyles1.Append(latentStyleExceptionInfo257);
            latentStyles1.Append(latentStyleExceptionInfo258);
            latentStyles1.Append(latentStyleExceptionInfo259);
            latentStyles1.Append(latentStyleExceptionInfo260);
            latentStyles1.Append(latentStyleExceptionInfo261);
            latentStyles1.Append(latentStyleExceptionInfo262);
            latentStyles1.Append(latentStyleExceptionInfo263);
            latentStyles1.Append(latentStyleExceptionInfo264);
            latentStyles1.Append(latentStyleExceptionInfo265);
            latentStyles1.Append(latentStyleExceptionInfo266);
            latentStyles1.Append(latentStyleExceptionInfo267);
            latentStyles1.Append(latentStyleExceptionInfo268);
            latentStyles1.Append(latentStyleExceptionInfo269);
            latentStyles1.Append(latentStyleExceptionInfo270);
            latentStyles1.Append(latentStyleExceptionInfo271);
            latentStyles1.Append(latentStyleExceptionInfo272);
            latentStyles1.Append(latentStyleExceptionInfo273);
            latentStyles1.Append(latentStyleExceptionInfo274);
            latentStyles1.Append(latentStyleExceptionInfo275);
            latentStyles1.Append(latentStyleExceptionInfo276);
            latentStyles1.Append(latentStyleExceptionInfo277);
            latentStyles1.Append(latentStyleExceptionInfo278);
            latentStyles1.Append(latentStyleExceptionInfo279);
            latentStyles1.Append(latentStyleExceptionInfo280);
            latentStyles1.Append(latentStyleExceptionInfo281);
            latentStyles1.Append(latentStyleExceptionInfo282);
            latentStyles1.Append(latentStyleExceptionInfo283);
            latentStyles1.Append(latentStyleExceptionInfo284);
            latentStyles1.Append(latentStyleExceptionInfo285);
            latentStyles1.Append(latentStyleExceptionInfo286);
            latentStyles1.Append(latentStyleExceptionInfo287);
            latentStyles1.Append(latentStyleExceptionInfo288);
            latentStyles1.Append(latentStyleExceptionInfo289);
            latentStyles1.Append(latentStyleExceptionInfo290);
            latentStyles1.Append(latentStyleExceptionInfo291);
            latentStyles1.Append(latentStyleExceptionInfo292);
            latentStyles1.Append(latentStyleExceptionInfo293);
            latentStyles1.Append(latentStyleExceptionInfo294);
            latentStyles1.Append(latentStyleExceptionInfo295);
            latentStyles1.Append(latentStyleExceptionInfo296);
            latentStyles1.Append(latentStyleExceptionInfo297);
            latentStyles1.Append(latentStyleExceptionInfo298);
            latentStyles1.Append(latentStyleExceptionInfo299);
            latentStyles1.Append(latentStyleExceptionInfo300);
            latentStyles1.Append(latentStyleExceptionInfo301);
            latentStyles1.Append(latentStyleExceptionInfo302);
            latentStyles1.Append(latentStyleExceptionInfo303);
            latentStyles1.Append(latentStyleExceptionInfo304);
            latentStyles1.Append(latentStyleExceptionInfo305);
            latentStyles1.Append(latentStyleExceptionInfo306);
            latentStyles1.Append(latentStyleExceptionInfo307);
            latentStyles1.Append(latentStyleExceptionInfo308);
            latentStyles1.Append(latentStyleExceptionInfo309);
            latentStyles1.Append(latentStyleExceptionInfo310);
            latentStyles1.Append(latentStyleExceptionInfo311);
            latentStyles1.Append(latentStyleExceptionInfo312);
            latentStyles1.Append(latentStyleExceptionInfo313);
            latentStyles1.Append(latentStyleExceptionInfo314);
            latentStyles1.Append(latentStyleExceptionInfo315);
            latentStyles1.Append(latentStyleExceptionInfo316);
            latentStyles1.Append(latentStyleExceptionInfo317);
            latentStyles1.Append(latentStyleExceptionInfo318);
            latentStyles1.Append(latentStyleExceptionInfo319);
            latentStyles1.Append(latentStyleExceptionInfo320);
            latentStyles1.Append(latentStyleExceptionInfo321);
            latentStyles1.Append(latentStyleExceptionInfo322);
            latentStyles1.Append(latentStyleExceptionInfo323);
            latentStyles1.Append(latentStyleExceptionInfo324);
            latentStyles1.Append(latentStyleExceptionInfo325);
            latentStyles1.Append(latentStyleExceptionInfo326);
            latentStyles1.Append(latentStyleExceptionInfo327);
            latentStyles1.Append(latentStyleExceptionInfo328);
            latentStyles1.Append(latentStyleExceptionInfo329);
            latentStyles1.Append(latentStyleExceptionInfo330);
            latentStyles1.Append(latentStyleExceptionInfo331);
            latentStyles1.Append(latentStyleExceptionInfo332);
            latentStyles1.Append(latentStyleExceptionInfo333);
            latentStyles1.Append(latentStyleExceptionInfo334);
            latentStyles1.Append(latentStyleExceptionInfo335);
            latentStyles1.Append(latentStyleExceptionInfo336);
            latentStyles1.Append(latentStyleExceptionInfo337);
            latentStyles1.Append(latentStyleExceptionInfo338);
            latentStyles1.Append(latentStyleExceptionInfo339);
            latentStyles1.Append(latentStyleExceptionInfo340);
            latentStyles1.Append(latentStyleExceptionInfo341);
            latentStyles1.Append(latentStyleExceptionInfo342);
            latentStyles1.Append(latentStyleExceptionInfo343);
            latentStyles1.Append(latentStyleExceptionInfo344);
            latentStyles1.Append(latentStyleExceptionInfo345);
            latentStyles1.Append(latentStyleExceptionInfo346);
            latentStyles1.Append(latentStyleExceptionInfo347);
            latentStyles1.Append(latentStyleExceptionInfo348);
            latentStyles1.Append(latentStyleExceptionInfo349);
            latentStyles1.Append(latentStyleExceptionInfo350);
            latentStyles1.Append(latentStyleExceptionInfo351);
            latentStyles1.Append(latentStyleExceptionInfo352);
            latentStyles1.Append(latentStyleExceptionInfo353);
            latentStyles1.Append(latentStyleExceptionInfo354);
            latentStyles1.Append(latentStyleExceptionInfo355);
            latentStyles1.Append(latentStyleExceptionInfo356);
            latentStyles1.Append(latentStyleExceptionInfo357);
            latentStyles1.Append(latentStyleExceptionInfo358);
            latentStyles1.Append(latentStyleExceptionInfo359);
            latentStyles1.Append(latentStyleExceptionInfo360);
            latentStyles1.Append(latentStyleExceptionInfo361);
            latentStyles1.Append(latentStyleExceptionInfo362);
            latentStyles1.Append(latentStyleExceptionInfo363);
            latentStyles1.Append(latentStyleExceptionInfo364);
            latentStyles1.Append(latentStyleExceptionInfo365);
            latentStyles1.Append(latentStyleExceptionInfo366);
            latentStyles1.Append(latentStyleExceptionInfo367);
            latentStyles1.Append(latentStyleExceptionInfo368);
            latentStyles1.Append(latentStyleExceptionInfo369);
            latentStyles1.Append(latentStyleExceptionInfo370);
            latentStyles1.Append(latentStyleExceptionInfo371);

            Style style1 = new Style() { Type = StyleValues.Paragraph, StyleId = "Normal", Default = true };
            StyleName styleName1 = new StyleName() { Val = "Normal" };
            PrimaryStyle primaryStyle1 = new PrimaryStyle();

            style1.Append(styleName1);
            style1.Append(primaryStyle1);

            Style style2 = new Style() { Type = StyleValues.Character, StyleId = "DefaultParagraphFont", Default = true };
            StyleName styleName2 = new StyleName() { Val = "Default Paragraph Font" };
            UIPriority uIPriority1 = new UIPriority() { Val = 1 };
            SemiHidden semiHidden1 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed1 = new UnhideWhenUsed();

            style2.Append(styleName2);
            style2.Append(uIPriority1);
            style2.Append(semiHidden1);
            style2.Append(unhideWhenUsed1);

            Style style3 = new Style() { Type = StyleValues.Table, StyleId = "TableNormal", Default = true };
            StyleName styleName3 = new StyleName() { Val = "Normal Table" };
            UIPriority uIPriority2 = new UIPriority() { Val = 99 };
            SemiHidden semiHidden2 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed2 = new UnhideWhenUsed();

            StyleTableProperties styleTableProperties1 = new StyleTableProperties();
            TableIndentation tableIndentation2 = new TableIndentation() { Width = 0, Type = TableWidthUnitValues.Dxa };

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TopMargin topMargin1 = new TopMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
            TableCellLeftMargin tableCellLeftMargin1 = new TableCellLeftMargin() { Width = 108, Type = TableWidthValues.Dxa };
            BottomMargin bottomMargin1 = new BottomMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin() { Width = 108, Type = TableWidthValues.Dxa };

            tableCellMarginDefault1.Append(topMargin1);
            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(bottomMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);

            styleTableProperties1.Append(tableIndentation2);
            styleTableProperties1.Append(tableCellMarginDefault1);

            style3.Append(styleName3);
            style3.Append(uIPriority2);
            style3.Append(semiHidden2);
            style3.Append(unhideWhenUsed2);
            style3.Append(styleTableProperties1);

            Style style4 = new Style() { Type = StyleValues.Numbering, StyleId = "NoList", Default = true };
            StyleName styleName4 = new StyleName() { Val = "No List" };
            UIPriority uIPriority3 = new UIPriority() { Val = 99 };
            SemiHidden semiHidden3 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed3 = new UnhideWhenUsed();

            style4.Append(styleName4);
            style4.Append(uIPriority3);
            style4.Append(semiHidden3);
            style4.Append(unhideWhenUsed3);

            Style style5 = new Style() { Type = StyleValues.Table, StyleId = "TableGrid" };
            StyleName styleName5 = new StyleName() { Val = "Table Grid" };
            BasedOn basedOn1 = new BasedOn() { Val = "TableNormal" };
            UIPriority uIPriority4 = new UIPriority() { Val = 39 };
            Rsid rsid12 = new Rsid() { Val = "00BC116E" };

            StyleParagraphProperties styleParagraphProperties1 = new StyleParagraphProperties();
            SpacingBetweenLines spacingBetweenLines10 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };

            styleParagraphProperties1.Append(spacingBetweenLines10);

            StyleTableProperties styleTableProperties2 = new StyleTableProperties();

            TableBorders tableBorders3 = new TableBorders();
            TopBorder topBorder10 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder10 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder7 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder10 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder2 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder2 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders3.Append(topBorder10);
            tableBorders3.Append(leftBorder10);
            tableBorders3.Append(bottomBorder7);
            tableBorders3.Append(rightBorder10);
            tableBorders3.Append(insideHorizontalBorder2);
            tableBorders3.Append(insideVerticalBorder2);

            styleTableProperties2.Append(tableBorders3);

            style5.Append(styleName5);
            style5.Append(basedOn1);
            style5.Append(uIPriority4);
            style5.Append(rsid12);
            style5.Append(styleParagraphProperties1);
            style5.Append(styleTableProperties2);

            Style style6 = new Style() { Type = StyleValues.Paragraph, StyleId = "ListParagraph" };
            StyleName styleName6 = new StyleName() { Val = "List Paragraph" };
            BasedOn basedOn2 = new BasedOn() { Val = "Normal" };
            UIPriority uIPriority5 = new UIPriority() { Val = 34 };
            PrimaryStyle primaryStyle2 = new PrimaryStyle();
            Rsid rsid13 = new Rsid() { Val = "006D7AD3" };

            StyleParagraphProperties styleParagraphProperties2 = new StyleParagraphProperties();
            Indentation indentation1 = new Indentation() { Left = "720" };
            ContextualSpacing contextualSpacing1 = new ContextualSpacing();

            styleParagraphProperties2.Append(indentation1);
            styleParagraphProperties2.Append(contextualSpacing1);

            style6.Append(styleName6);
            style6.Append(basedOn2);
            style6.Append(uIPriority5);
            style6.Append(primaryStyle2);
            style6.Append(rsid13);
            style6.Append(styleParagraphProperties2);

            styles1.Append(docDefaults1);
            styles1.Append(latentStyles1);
            styles1.Append(style1);
            styles1.Append(style2);
            styles1.Append(style3);
            styles1.Append(style4);
            styles1.Append(style5);
            styles1.Append(style6);

            styleDefinitionsPart1.Styles = styles1;
        }
Example #5
0
        private Style GenerateTitleStyle()
        {
            Style style1 = new Style() { Type = StyleValues.Paragraph, StyleId = TitleStyle };
            StyleName styleName1 = new StyleName() { Val = "Title" };
            BasedOn basedOn1 = new BasedOn() { Val = "Normal" };
            NextParagraphStyle nextParagraphStyle1 = new NextParagraphStyle() { Val = "Normal" };
            LinkedStyle linkedStyle1 = new LinkedStyle() { Val = "TitleChar" };
            UIPriority uIPriority1 = new UIPriority() { Val = 10 };
            PrimaryStyle primaryStyle1 = new PrimaryStyle();
            //Rsid rsid1 = new Rsid() { Val = "0013195F" };

            StyleParagraphProperties styleParagraphProperties1 = new StyleParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            ContextualSpacing contextualSpacing1 = new ContextualSpacing();

            styleParagraphProperties1.Append(spacingBetweenLines1);
            styleParagraphProperties1.Append(contextualSpacing1);

            StyleRunProperties styleRunProperties1 = new StyleRunProperties();
            RunFonts runFonts1 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi, EastAsiaTheme = ThemeFontValues.MajorEastAsia, ComplexScriptTheme = ThemeFontValues.MajorBidi };
            Spacing spacing1 = new Spacing() { Val = -10 };
            Kern kern1 = new Kern() { Val = (UInt32Value)28U };
            FontSize fontSize1 = new FontSize() { Val = "56" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "56" };

            styleRunProperties1.Append(runFonts1);
            styleRunProperties1.Append(spacing1);
            styleRunProperties1.Append(kern1);
            styleRunProperties1.Append(fontSize1);
            styleRunProperties1.Append(fontSizeComplexScript1);

            style1.Append(styleName1);
            style1.Append(basedOn1);
            style1.Append(nextParagraphStyle1);
            style1.Append(linkedStyle1);
            style1.Append(uIPriority1);
            style1.Append(primaryStyle1);
            //style1.Append(rsid1);
            style1.Append(styleParagraphProperties1);
            style1.Append(styleRunProperties1);

            return style1;
        }
Example #6
0
        // Generates content of stylesWithEffectsPart1.
        private void GenerateStylesWithEffectsPart1Content(StylesWithEffectsPart stylesWithEffectsPart1)
        {
            Styles styles1 = new Styles() {MCAttributes = new MarkupCompatibilityAttributes() {Ignorable = "w14 wp14"}};
            styles1.AddNamespaceDeclaration("wpc", "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas");
            styles1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            styles1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
            styles1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            styles1.AddNamespaceDeclaration("m", "http://schemas.openxmlformats.org/officeDocument/2006/math");
            styles1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
            styles1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
            styles1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
            styles1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
            styles1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            styles1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");
            styles1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
            styles1.AddNamespaceDeclaration("wpi", "http://schemas.microsoft.com/office/word/2010/wordprocessingInk");
            styles1.AddNamespaceDeclaration("wne", "http://schemas.microsoft.com/office/word/2006/wordml");
            styles1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");

            DocDefaults docDefaults1 = new DocDefaults();

            RunPropertiesDefault runPropertiesDefault1 = new RunPropertiesDefault();

            RunPropertiesBaseStyle runPropertiesBaseStyle1 = new RunPropertiesBaseStyle();
            RunFonts runFonts1 = new RunFonts()
                                 {
                                 	AsciiTheme = ThemeFontValues.MinorHighAnsi,
                                 	HighAnsiTheme = ThemeFontValues.MinorHighAnsi,
                                 	EastAsiaTheme = ThemeFontValues.MinorHighAnsi,
                                 	ComplexScriptTheme = ThemeFontValues.MinorBidi
                                 };
            FontSize fontSize1 = new FontSize() {Val = "22"};
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() {Val = "22"};
            Languages languages1 = new Languages() {Val = "en-US", EastAsia = "en-US", Bidi = "ar-SA"};

            runPropertiesBaseStyle1.Append(runFonts1);
            runPropertiesBaseStyle1.Append(fontSize1);
            runPropertiesBaseStyle1.Append(fontSizeComplexScript1);
            runPropertiesBaseStyle1.Append(languages1);

            runPropertiesDefault1.Append(runPropertiesBaseStyle1);

            ParagraphPropertiesDefault paragraphPropertiesDefault1 = new ParagraphPropertiesDefault();

            ParagraphPropertiesBaseStyle paragraphPropertiesBaseStyle1 = new ParagraphPropertiesBaseStyle();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines()
                                                       {After = "200", Line = "276", LineRule = LineSpacingRuleValues.Auto};

            paragraphPropertiesBaseStyle1.Append(spacingBetweenLines1);

            paragraphPropertiesDefault1.Append(paragraphPropertiesBaseStyle1);

            docDefaults1.Append(runPropertiesDefault1);
            docDefaults1.Append(paragraphPropertiesDefault1);

            LatentStyles latentStyles1 = new LatentStyles()
                                         {
                                         	DefaultLockedState = false,
                                         	DefaultUiPriority = 99,
                                         	DefaultSemiHidden = true,
                                         	DefaultUnhideWhenUsed = true,
                                         	DefaultPrimaryStyle = false,
                                         	Count = 267
                                         };
            LatentStyleExceptionInfo latentStyleExceptionInfo1 = new LatentStyleExceptionInfo()
                                                                 {
                                                                 	Name = "Normal",
                                                                 	UiPriority = 0,
                                                                 	SemiHidden = false,
                                                                 	UnhideWhenUsed = false,
                                                                 	PrimaryStyle = true
                                                                 };
            LatentStyleExceptionInfo latentStyleExceptionInfo2 = new LatentStyleExceptionInfo()
                                                                 {
                                                                 	Name = "heading 1",
                                                                 	UiPriority = 9,
                                                                 	SemiHidden = false,
                                                                 	UnhideWhenUsed = false,
                                                                 	PrimaryStyle = true
                                                                 };
            LatentStyleExceptionInfo latentStyleExceptionInfo3 = new LatentStyleExceptionInfo()
                                                                 {Name = "heading 2", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo4 = new LatentStyleExceptionInfo()
                                                                 {Name = "heading 3", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo5 = new LatentStyleExceptionInfo()
                                                                 {Name = "heading 4", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo6 = new LatentStyleExceptionInfo()
                                                                 {Name = "heading 5", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo7 = new LatentStyleExceptionInfo()
                                                                 {Name = "heading 6", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo8 = new LatentStyleExceptionInfo()
                                                                 {Name = "heading 7", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo9 = new LatentStyleExceptionInfo()
                                                                 {Name = "heading 8", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo10 = new LatentStyleExceptionInfo()
                                                                  {Name = "heading 9", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo11 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 1", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo12 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 2", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo13 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 3", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo14 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 4", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo15 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 5", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo16 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 6", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo17 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 7", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo18 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 8", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo19 = new LatentStyleExceptionInfo()
                                                                  {Name = "toc 9", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo20 = new LatentStyleExceptionInfo()
                                                                  {Name = "caption", UiPriority = 35, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo21 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Title",
                                                                  	UiPriority = 10,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false,
                                                                  	PrimaryStyle = true
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo22 = new LatentStyleExceptionInfo()
                                                                  {Name = "Default Paragraph Font", UiPriority = 1};
            LatentStyleExceptionInfo latentStyleExceptionInfo23 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Subtitle",
                                                                  	UiPriority = 11,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false,
                                                                  	PrimaryStyle = true
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo24 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Strong",
                                                                  	UiPriority = 22,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false,
                                                                  	PrimaryStyle = true
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo25 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Emphasis",
                                                                  	UiPriority = 20,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false,
                                                                  	PrimaryStyle = true
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo26 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Table Grid",
                                                                  	UiPriority = 59,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo27 = new LatentStyleExceptionInfo()
                                                                  {Name = "Placeholder Text", UnhideWhenUsed = false};
            LatentStyleExceptionInfo latentStyleExceptionInfo28 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "No Spacing",
                                                                  	UiPriority = 1,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false,
                                                                  	PrimaryStyle = true
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo29 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Shading",
                                                                  	UiPriority = 60,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo30 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light List",
                                                                  	UiPriority = 61,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo31 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Grid",
                                                                  	UiPriority = 62,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo32 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 1",
                                                                  	UiPriority = 63,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo33 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 2",
                                                                  	UiPriority = 64,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo34 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 1",
                                                                  	UiPriority = 65,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo35 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 2",
                                                                  	UiPriority = 66,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo36 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 1",
                                                                  	UiPriority = 67,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo37 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 2",
                                                                  	UiPriority = 68,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo38 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 3",
                                                                  	UiPriority = 69,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo39 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Dark List",
                                                                  	UiPriority = 70,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo40 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful Shading",
                                                                  	UiPriority = 71,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo41 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful List",
                                                                  	UiPriority = 72,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo42 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful Grid",
                                                                  	UiPriority = 73,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo43 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Shading Accent 1",
                                                                  	UiPriority = 60,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo44 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light List Accent 1",
                                                                  	UiPriority = 61,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo45 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Grid Accent 1",
                                                                  	UiPriority = 62,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo46 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 1 Accent 1",
                                                                  	UiPriority = 63,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo47 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 2 Accent 1",
                                                                  	UiPriority = 64,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo48 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 1 Accent 1",
                                                                  	UiPriority = 65,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo49 = new LatentStyleExceptionInfo()
                                                                  {Name = "Revision", UnhideWhenUsed = false};
            LatentStyleExceptionInfo latentStyleExceptionInfo50 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "List Paragraph",
                                                                  	UiPriority = 34,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false,
                                                                  	PrimaryStyle = true
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo51 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Quote",
                                                                  	UiPriority = 29,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false,
                                                                  	PrimaryStyle = true
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo52 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Intense Quote",
                                                                  	UiPriority = 30,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false,
                                                                  	PrimaryStyle = true
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo53 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 2 Accent 1",
                                                                  	UiPriority = 66,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo54 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 1 Accent 1",
                                                                  	UiPriority = 67,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo55 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 2 Accent 1",
                                                                  	UiPriority = 68,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo56 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 3 Accent 1",
                                                                  	UiPriority = 69,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo57 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Dark List Accent 1",
                                                                  	UiPriority = 70,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo58 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful Shading Accent 1",
                                                                  	UiPriority = 71,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo59 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful List Accent 1",
                                                                  	UiPriority = 72,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo60 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful Grid Accent 1",
                                                                  	UiPriority = 73,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo61 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Shading Accent 2",
                                                                  	UiPriority = 60,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo62 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light List Accent 2",
                                                                  	UiPriority = 61,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo63 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Grid Accent 2",
                                                                  	UiPriority = 62,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo64 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 1 Accent 2",
                                                                  	UiPriority = 63,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo65 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 2 Accent 2",
                                                                  	UiPriority = 64,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo66 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 1 Accent 2",
                                                                  	UiPriority = 65,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo67 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 2 Accent 2",
                                                                  	UiPriority = 66,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo68 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 1 Accent 2",
                                                                  	UiPriority = 67,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo69 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 2 Accent 2",
                                                                  	UiPriority = 68,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo70 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 3 Accent 2",
                                                                  	UiPriority = 69,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo71 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Dark List Accent 2",
                                                                  	UiPriority = 70,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo72 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful Shading Accent 2",
                                                                  	UiPriority = 71,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo73 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful List Accent 2",
                                                                  	UiPriority = 72,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo74 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful Grid Accent 2",
                                                                  	UiPriority = 73,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo75 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Shading Accent 3",
                                                                  	UiPriority = 60,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo76 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light List Accent 3",
                                                                  	UiPriority = 61,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo77 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Grid Accent 3",
                                                                  	UiPriority = 62,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo78 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 1 Accent 3",
                                                                  	UiPriority = 63,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo79 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 2 Accent 3",
                                                                  	UiPriority = 64,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo80 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 1 Accent 3",
                                                                  	UiPriority = 65,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo81 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 2 Accent 3",
                                                                  	UiPriority = 66,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo82 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 1 Accent 3",
                                                                  	UiPriority = 67,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo83 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 2 Accent 3",
                                                                  	UiPriority = 68,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo84 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 3 Accent 3",
                                                                  	UiPriority = 69,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo85 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Dark List Accent 3",
                                                                  	UiPriority = 70,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo86 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful Shading Accent 3",
                                                                  	UiPriority = 71,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo87 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful List Accent 3",
                                                                  	UiPriority = 72,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo88 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Colorful Grid Accent 3",
                                                                  	UiPriority = 73,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo89 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Shading Accent 4",
                                                                  	UiPriority = 60,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo90 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light List Accent 4",
                                                                  	UiPriority = 61,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo91 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Light Grid Accent 4",
                                                                  	UiPriority = 62,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo92 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 1 Accent 4",
                                                                  	UiPriority = 63,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo93 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Shading 2 Accent 4",
                                                                  	UiPriority = 64,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo94 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 1 Accent 4",
                                                                  	UiPriority = 65,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo95 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium List 2 Accent 4",
                                                                  	UiPriority = 66,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo96 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 1 Accent 4",
                                                                  	UiPriority = 67,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo97 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 2 Accent 4",
                                                                  	UiPriority = 68,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo98 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Medium Grid 3 Accent 4",
                                                                  	UiPriority = 69,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo99 = new LatentStyleExceptionInfo()
                                                                  {
                                                                  	Name = "Dark List Accent 4",
                                                                  	UiPriority = 70,
                                                                  	SemiHidden = false,
                                                                  	UnhideWhenUsed = false
                                                                  };
            LatentStyleExceptionInfo latentStyleExceptionInfo100 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 4",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo101 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 4",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo102 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 4",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo103 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading Accent 5",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo104 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List Accent 5",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo105 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid Accent 5",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo106 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1 Accent 5",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo107 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2 Accent 5",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo108 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1 Accent 5",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo109 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2 Accent 5",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo110 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1 Accent 5",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo111 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2 Accent 5",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo112 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3 Accent 5",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo113 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List Accent 5",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo114 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 5",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo115 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 5",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo116 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 5",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo117 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading Accent 6",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo118 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List Accent 6",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo119 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid Accent 6",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo120 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1 Accent 6",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo121 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2 Accent 6",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo122 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1 Accent 6",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo123 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2 Accent 6",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo124 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1 Accent 6",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo125 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2 Accent 6",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo126 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3 Accent 6",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo127 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List Accent 6",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo128 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 6",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo129 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 6",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo130 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 6",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo131 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Subtle Emphasis",
                                                                   	UiPriority = 19,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo132 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Intense Emphasis",
                                                                   	UiPriority = 21,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo133 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Subtle Reference",
                                                                   	UiPriority = 31,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo134 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Intense Reference",
                                                                   	UiPriority = 32,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo135 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Book Title",
                                                                   	UiPriority = 33,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo136 = new LatentStyleExceptionInfo()
                                                                   {Name = "Bibliography", UiPriority = 37};
            LatentStyleExceptionInfo latentStyleExceptionInfo137 = new LatentStyleExceptionInfo()
                                                                   {Name = "TOC Heading", UiPriority = 39, PrimaryStyle = true};

            latentStyles1.Append(latentStyleExceptionInfo1);
            latentStyles1.Append(latentStyleExceptionInfo2);
            latentStyles1.Append(latentStyleExceptionInfo3);
            latentStyles1.Append(latentStyleExceptionInfo4);
            latentStyles1.Append(latentStyleExceptionInfo5);
            latentStyles1.Append(latentStyleExceptionInfo6);
            latentStyles1.Append(latentStyleExceptionInfo7);
            latentStyles1.Append(latentStyleExceptionInfo8);
            latentStyles1.Append(latentStyleExceptionInfo9);
            latentStyles1.Append(latentStyleExceptionInfo10);
            latentStyles1.Append(latentStyleExceptionInfo11);
            latentStyles1.Append(latentStyleExceptionInfo12);
            latentStyles1.Append(latentStyleExceptionInfo13);
            latentStyles1.Append(latentStyleExceptionInfo14);
            latentStyles1.Append(latentStyleExceptionInfo15);
            latentStyles1.Append(latentStyleExceptionInfo16);
            latentStyles1.Append(latentStyleExceptionInfo17);
            latentStyles1.Append(latentStyleExceptionInfo18);
            latentStyles1.Append(latentStyleExceptionInfo19);
            latentStyles1.Append(latentStyleExceptionInfo20);
            latentStyles1.Append(latentStyleExceptionInfo21);
            latentStyles1.Append(latentStyleExceptionInfo22);
            latentStyles1.Append(latentStyleExceptionInfo23);
            latentStyles1.Append(latentStyleExceptionInfo24);
            latentStyles1.Append(latentStyleExceptionInfo25);
            latentStyles1.Append(latentStyleExceptionInfo26);
            latentStyles1.Append(latentStyleExceptionInfo27);
            latentStyles1.Append(latentStyleExceptionInfo28);
            latentStyles1.Append(latentStyleExceptionInfo29);
            latentStyles1.Append(latentStyleExceptionInfo30);
            latentStyles1.Append(latentStyleExceptionInfo31);
            latentStyles1.Append(latentStyleExceptionInfo32);
            latentStyles1.Append(latentStyleExceptionInfo33);
            latentStyles1.Append(latentStyleExceptionInfo34);
            latentStyles1.Append(latentStyleExceptionInfo35);
            latentStyles1.Append(latentStyleExceptionInfo36);
            latentStyles1.Append(latentStyleExceptionInfo37);
            latentStyles1.Append(latentStyleExceptionInfo38);
            latentStyles1.Append(latentStyleExceptionInfo39);
            latentStyles1.Append(latentStyleExceptionInfo40);
            latentStyles1.Append(latentStyleExceptionInfo41);
            latentStyles1.Append(latentStyleExceptionInfo42);
            latentStyles1.Append(latentStyleExceptionInfo43);
            latentStyles1.Append(latentStyleExceptionInfo44);
            latentStyles1.Append(latentStyleExceptionInfo45);
            latentStyles1.Append(latentStyleExceptionInfo46);
            latentStyles1.Append(latentStyleExceptionInfo47);
            latentStyles1.Append(latentStyleExceptionInfo48);
            latentStyles1.Append(latentStyleExceptionInfo49);
            latentStyles1.Append(latentStyleExceptionInfo50);
            latentStyles1.Append(latentStyleExceptionInfo51);
            latentStyles1.Append(latentStyleExceptionInfo52);
            latentStyles1.Append(latentStyleExceptionInfo53);
            latentStyles1.Append(latentStyleExceptionInfo54);
            latentStyles1.Append(latentStyleExceptionInfo55);
            latentStyles1.Append(latentStyleExceptionInfo56);
            latentStyles1.Append(latentStyleExceptionInfo57);
            latentStyles1.Append(latentStyleExceptionInfo58);
            latentStyles1.Append(latentStyleExceptionInfo59);
            latentStyles1.Append(latentStyleExceptionInfo60);
            latentStyles1.Append(latentStyleExceptionInfo61);
            latentStyles1.Append(latentStyleExceptionInfo62);
            latentStyles1.Append(latentStyleExceptionInfo63);
            latentStyles1.Append(latentStyleExceptionInfo64);
            latentStyles1.Append(latentStyleExceptionInfo65);
            latentStyles1.Append(latentStyleExceptionInfo66);
            latentStyles1.Append(latentStyleExceptionInfo67);
            latentStyles1.Append(latentStyleExceptionInfo68);
            latentStyles1.Append(latentStyleExceptionInfo69);
            latentStyles1.Append(latentStyleExceptionInfo70);
            latentStyles1.Append(latentStyleExceptionInfo71);
            latentStyles1.Append(latentStyleExceptionInfo72);
            latentStyles1.Append(latentStyleExceptionInfo73);
            latentStyles1.Append(latentStyleExceptionInfo74);
            latentStyles1.Append(latentStyleExceptionInfo75);
            latentStyles1.Append(latentStyleExceptionInfo76);
            latentStyles1.Append(latentStyleExceptionInfo77);
            latentStyles1.Append(latentStyleExceptionInfo78);
            latentStyles1.Append(latentStyleExceptionInfo79);
            latentStyles1.Append(latentStyleExceptionInfo80);
            latentStyles1.Append(latentStyleExceptionInfo81);
            latentStyles1.Append(latentStyleExceptionInfo82);
            latentStyles1.Append(latentStyleExceptionInfo83);
            latentStyles1.Append(latentStyleExceptionInfo84);
            latentStyles1.Append(latentStyleExceptionInfo85);
            latentStyles1.Append(latentStyleExceptionInfo86);
            latentStyles1.Append(latentStyleExceptionInfo87);
            latentStyles1.Append(latentStyleExceptionInfo88);
            latentStyles1.Append(latentStyleExceptionInfo89);
            latentStyles1.Append(latentStyleExceptionInfo90);
            latentStyles1.Append(latentStyleExceptionInfo91);
            latentStyles1.Append(latentStyleExceptionInfo92);
            latentStyles1.Append(latentStyleExceptionInfo93);
            latentStyles1.Append(latentStyleExceptionInfo94);
            latentStyles1.Append(latentStyleExceptionInfo95);
            latentStyles1.Append(latentStyleExceptionInfo96);
            latentStyles1.Append(latentStyleExceptionInfo97);
            latentStyles1.Append(latentStyleExceptionInfo98);
            latentStyles1.Append(latentStyleExceptionInfo99);
            latentStyles1.Append(latentStyleExceptionInfo100);
            latentStyles1.Append(latentStyleExceptionInfo101);
            latentStyles1.Append(latentStyleExceptionInfo102);
            latentStyles1.Append(latentStyleExceptionInfo103);
            latentStyles1.Append(latentStyleExceptionInfo104);
            latentStyles1.Append(latentStyleExceptionInfo105);
            latentStyles1.Append(latentStyleExceptionInfo106);
            latentStyles1.Append(latentStyleExceptionInfo107);
            latentStyles1.Append(latentStyleExceptionInfo108);
            latentStyles1.Append(latentStyleExceptionInfo109);
            latentStyles1.Append(latentStyleExceptionInfo110);
            latentStyles1.Append(latentStyleExceptionInfo111);
            latentStyles1.Append(latentStyleExceptionInfo112);
            latentStyles1.Append(latentStyleExceptionInfo113);
            latentStyles1.Append(latentStyleExceptionInfo114);
            latentStyles1.Append(latentStyleExceptionInfo115);
            latentStyles1.Append(latentStyleExceptionInfo116);
            latentStyles1.Append(latentStyleExceptionInfo117);
            latentStyles1.Append(latentStyleExceptionInfo118);
            latentStyles1.Append(latentStyleExceptionInfo119);
            latentStyles1.Append(latentStyleExceptionInfo120);
            latentStyles1.Append(latentStyleExceptionInfo121);
            latentStyles1.Append(latentStyleExceptionInfo122);
            latentStyles1.Append(latentStyleExceptionInfo123);
            latentStyles1.Append(latentStyleExceptionInfo124);
            latentStyles1.Append(latentStyleExceptionInfo125);
            latentStyles1.Append(latentStyleExceptionInfo126);
            latentStyles1.Append(latentStyleExceptionInfo127);
            latentStyles1.Append(latentStyleExceptionInfo128);
            latentStyles1.Append(latentStyleExceptionInfo129);
            latentStyles1.Append(latentStyleExceptionInfo130);
            latentStyles1.Append(latentStyleExceptionInfo131);
            latentStyles1.Append(latentStyleExceptionInfo132);
            latentStyles1.Append(latentStyleExceptionInfo133);
            latentStyles1.Append(latentStyleExceptionInfo134);
            latentStyles1.Append(latentStyleExceptionInfo135);
            latentStyles1.Append(latentStyleExceptionInfo136);
            latentStyles1.Append(latentStyleExceptionInfo137);

            Style style1 = new Style() {Type = StyleValues.Paragraph, StyleId = "Normal", Default = true};
            StyleName styleName1 = new StyleName() {Val = "Normal"};
            PrimaryStyle primaryStyle1 = new PrimaryStyle();

            style1.Append(styleName1);
            style1.Append(primaryStyle1);

            Style style2 = new Style() {Type = StyleValues.Paragraph, StyleId = "Heading2"};
            StyleName styleName2 = new StyleName() {Val = "heading 2"};
            BasedOn basedOn1 = new BasedOn() {Val = "Normal"};
            NextParagraphStyle nextParagraphStyle1 = new NextParagraphStyle() {Val = "Normal"};
            LinkedStyle linkedStyle1 = new LinkedStyle() {Val = "Heading2Char"};
            UIPriority uIPriority1 = new UIPriority() {Val = 9};
            UnhideWhenUsed unhideWhenUsed1 = new UnhideWhenUsed();
            PrimaryStyle primaryStyle2 = new PrimaryStyle();
            Rsid rsid1 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties1 = new StyleParagraphProperties();
            KeepNext keepNext1 = new KeepNext();
            KeepLines keepLines1 = new KeepLines();
            SpacingBetweenLines spacingBetweenLines2 = new SpacingBetweenLines() {Before = "200", After = "0"};
            OutlineLevel outlineLevel1 = new OutlineLevel() {Val = 1};

            styleParagraphProperties1.Append(keepNext1);
            styleParagraphProperties1.Append(keepLines1);
            styleParagraphProperties1.Append(spacingBetweenLines2);
            styleParagraphProperties1.Append(outlineLevel1);

            StyleRunProperties styleRunProperties1 = new StyleRunProperties();
            RunFonts runFonts2 = new RunFonts()
                                 {
                                 	AsciiTheme = ThemeFontValues.MajorHighAnsi,
                                 	HighAnsiTheme = ThemeFontValues.MajorHighAnsi,
                                 	EastAsiaTheme = ThemeFontValues.MajorEastAsia,
                                 	ComplexScriptTheme = ThemeFontValues.MajorBidi
                                 };
            Bold bold1 = new Bold();
            BoldComplexScript boldComplexScript1 = new BoldComplexScript();
            Color color1 = new Color() {Val = "4F81BD", ThemeColor = ThemeColorValues.Accent1};
            FontSize fontSize2 = new FontSize() {Val = "26"};
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() {Val = "26"};

            styleRunProperties1.Append(runFonts2);
            styleRunProperties1.Append(bold1);
            styleRunProperties1.Append(boldComplexScript1);
            styleRunProperties1.Append(color1);
            styleRunProperties1.Append(fontSize2);
            styleRunProperties1.Append(fontSizeComplexScript2);

            style2.Append(styleName2);
            style2.Append(basedOn1);
            style2.Append(nextParagraphStyle1);
            style2.Append(linkedStyle1);
            style2.Append(uIPriority1);
            style2.Append(unhideWhenUsed1);
            style2.Append(primaryStyle2);
            style2.Append(rsid1);
            style2.Append(styleParagraphProperties1);
            style2.Append(styleRunProperties1);

            Style style3 = new Style() {Type = StyleValues.Character, StyleId = "DefaultParagraphFont", Default = true};
            StyleName styleName3 = new StyleName() {Val = "Default Paragraph Font"};
            UIPriority uIPriority2 = new UIPriority() {Val = 1};
            SemiHidden semiHidden1 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed2 = new UnhideWhenUsed();

            style3.Append(styleName3);
            style3.Append(uIPriority2);
            style3.Append(semiHidden1);
            style3.Append(unhideWhenUsed2);

            Style style4 = new Style() {Type = StyleValues.Table, StyleId = "TableNormal", Default = true};
            StyleName styleName4 = new StyleName() {Val = "Normal Table"};
            UIPriority uIPriority3 = new UIPriority() {Val = 99};
            SemiHidden semiHidden2 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed3 = new UnhideWhenUsed();

            StyleTableProperties styleTableProperties1 = new StyleTableProperties();
            TableIndentation tableIndentation1 = new TableIndentation() {Width = 0, Type = TableWidthUnitValues.Dxa};

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TopMargin topMargin1 = new TopMargin() {Width = "0", Type = TableWidthUnitValues.Dxa};
            TableCellLeftMargin tableCellLeftMargin1 = new TableCellLeftMargin() {Width = 108, Type = TableWidthValues.Dxa};
            BottomMargin bottomMargin1 = new BottomMargin() {Width = "0", Type = TableWidthUnitValues.Dxa};
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin() {Width = 108, Type = TableWidthValues.Dxa};

            tableCellMarginDefault1.Append(topMargin1);
            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(bottomMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);

            styleTableProperties1.Append(tableIndentation1);
            styleTableProperties1.Append(tableCellMarginDefault1);

            style4.Append(styleName4);
            style4.Append(uIPriority3);
            style4.Append(semiHidden2);
            style4.Append(unhideWhenUsed3);
            style4.Append(styleTableProperties1);

            Style style5 = new Style() {Type = StyleValues.Numbering, StyleId = "NoList", Default = true};
            StyleName styleName5 = new StyleName() {Val = "No List"};
            UIPriority uIPriority4 = new UIPriority() {Val = 99};
            SemiHidden semiHidden3 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed4 = new UnhideWhenUsed();

            style5.Append(styleName5);
            style5.Append(uIPriority4);
            style5.Append(semiHidden3);
            style5.Append(unhideWhenUsed4);

            Style style6 = new Style() {Type = StyleValues.Table, StyleId = "TableGrid"};
            StyleName styleName6 = new StyleName() {Val = "Table Grid"};
            BasedOn basedOn2 = new BasedOn() {Val = "TableNormal"};
            UIPriority uIPriority5 = new UIPriority() {Val = 59};
            Rsid rsid2 = new Rsid() {Val = "00F06304"};

            StyleParagraphProperties styleParagraphProperties2 = new StyleParagraphProperties();
            SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines()
                                                       {After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto};

            styleParagraphProperties2.Append(spacingBetweenLines3);

            StyleTableProperties styleTableProperties2 = new StyleTableProperties();
            TableIndentation tableIndentation2 = new TableIndentation() {Width = 0, Type = TableWidthUnitValues.Dxa};

            TableBorders tableBorders3 = new TableBorders();
            TopBorder topBorder2 = new TopBorder()
                                   {Val = BorderValues.Single, Color = "auto", Size = (UInt32Value) 4U, Space = (UInt32Value) 0U};
            LeftBorder leftBorder2 = new LeftBorder()
                                     {
                                     	Val = BorderValues.Single,
                                     	Color = "auto",
                                     	Size = (UInt32Value) 4U,
                                     	Space = (UInt32Value) 0U
                                     };
            BottomBorder bottomBorder2 = new BottomBorder()
                                         {
                                         	Val = BorderValues.Single,
                                         	Color = "auto",
                                         	Size = (UInt32Value) 4U,
                                         	Space = (UInt32Value) 0U
                                         };
            RightBorder rightBorder2 = new RightBorder()
                                       {
                                       	Val = BorderValues.Single,
                                       	Color = "auto",
                                       	Size = (UInt32Value) 4U,
                                       	Space = (UInt32Value) 0U
                                       };
            InsideHorizontalBorder insideHorizontalBorder2 = new InsideHorizontalBorder()
                                                             {
                                                             	Val = BorderValues.Single,
                                                             	Color = "auto",
                                                             	Size = (UInt32Value) 4U,
                                                             	Space = (UInt32Value) 0U
                                                             };
            InsideVerticalBorder insideVerticalBorder3 = new InsideVerticalBorder()
                                                         {
                                                         	Val = BorderValues.Single,
                                                         	Color = "auto",
                                                         	Size = (UInt32Value) 4U,
                                                         	Space = (UInt32Value) 0U
                                                         };

            tableBorders3.Append(topBorder2);
            tableBorders3.Append(leftBorder2);
            tableBorders3.Append(bottomBorder2);
            tableBorders3.Append(rightBorder2);
            tableBorders3.Append(insideHorizontalBorder2);
            tableBorders3.Append(insideVerticalBorder3);

            TableCellMarginDefault tableCellMarginDefault2 = new TableCellMarginDefault();
            TopMargin topMargin2 = new TopMargin() {Width = "0", Type = TableWidthUnitValues.Dxa};
            TableCellLeftMargin tableCellLeftMargin2 = new TableCellLeftMargin() {Width = 108, Type = TableWidthValues.Dxa};
            BottomMargin bottomMargin2 = new BottomMargin() {Width = "0", Type = TableWidthUnitValues.Dxa};
            TableCellRightMargin tableCellRightMargin2 = new TableCellRightMargin() {Width = 108, Type = TableWidthValues.Dxa};

            tableCellMarginDefault2.Append(topMargin2);
            tableCellMarginDefault2.Append(tableCellLeftMargin2);
            tableCellMarginDefault2.Append(bottomMargin2);
            tableCellMarginDefault2.Append(tableCellRightMargin2);

            styleTableProperties2.Append(tableIndentation2);
            styleTableProperties2.Append(tableBorders3);
            styleTableProperties2.Append(tableCellMarginDefault2);

            style6.Append(styleName6);
            style6.Append(basedOn2);
            style6.Append(uIPriority5);
            style6.Append(rsid2);
            style6.Append(styleParagraphProperties2);
            style6.Append(styleTableProperties2);

            Style style7 = new Style() {Type = StyleValues.Paragraph, StyleId = "Header"};
            StyleName styleName7 = new StyleName() {Val = "header"};
            BasedOn basedOn3 = new BasedOn() {Val = "Normal"};
            LinkedStyle linkedStyle2 = new LinkedStyle() {Val = "HeaderChar"};
            UIPriority uIPriority6 = new UIPriority() {Val = 99};
            UnhideWhenUsed unhideWhenUsed5 = new UnhideWhenUsed();
            Rsid rsid3 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties3 = new StyleParagraphProperties();

            Tabs tabs1 = new Tabs();
            TabStop tabStop1 = new TabStop() {Val = TabStopValues.Center, Position = 4680};
            TabStop tabStop2 = new TabStop() {Val = TabStopValues.Right, Position = 9360};

            tabs1.Append(tabStop1);
            tabs1.Append(tabStop2);
            SpacingBetweenLines spacingBetweenLines4 = new SpacingBetweenLines()
                                                       {After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto};

            styleParagraphProperties3.Append(tabs1);
            styleParagraphProperties3.Append(spacingBetweenLines4);

            style7.Append(styleName7);
            style7.Append(basedOn3);
            style7.Append(linkedStyle2);
            style7.Append(uIPriority6);
            style7.Append(unhideWhenUsed5);
            style7.Append(rsid3);
            style7.Append(styleParagraphProperties3);

            Style style8 = new Style() {Type = StyleValues.Character, StyleId = "HeaderChar", CustomStyle = true};
            StyleName styleName8 = new StyleName() {Val = "Header Char"};
            BasedOn basedOn4 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle3 = new LinkedStyle() {Val = "Header"};
            UIPriority uIPriority7 = new UIPriority() {Val = 99};
            Rsid rsid4 = new Rsid() {Val = "00442AD3"};

            style8.Append(styleName8);
            style8.Append(basedOn4);
            style8.Append(linkedStyle3);
            style8.Append(uIPriority7);
            style8.Append(rsid4);

            Style style9 = new Style() {Type = StyleValues.Paragraph, StyleId = "Footer"};
            StyleName styleName9 = new StyleName() {Val = "footer"};
            BasedOn basedOn5 = new BasedOn() {Val = "Normal"};
            LinkedStyle linkedStyle4 = new LinkedStyle() {Val = "FooterChar"};
            UIPriority uIPriority8 = new UIPriority() {Val = 99};
            UnhideWhenUsed unhideWhenUsed6 = new UnhideWhenUsed();
            Rsid rsid5 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties4 = new StyleParagraphProperties();

            Tabs tabs2 = new Tabs();
            TabStop tabStop3 = new TabStop() {Val = TabStopValues.Center, Position = 4680};
            TabStop tabStop4 = new TabStop() {Val = TabStopValues.Right, Position = 9360};

            tabs2.Append(tabStop3);
            tabs2.Append(tabStop4);
            SpacingBetweenLines spacingBetweenLines5 = new SpacingBetweenLines()
                                                       {After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto};

            styleParagraphProperties4.Append(tabs2);
            styleParagraphProperties4.Append(spacingBetweenLines5);

            style9.Append(styleName9);
            style9.Append(basedOn5);
            style9.Append(linkedStyle4);
            style9.Append(uIPriority8);
            style9.Append(unhideWhenUsed6);
            style9.Append(rsid5);
            style9.Append(styleParagraphProperties4);

            Style style10 = new Style() {Type = StyleValues.Character, StyleId = "FooterChar", CustomStyle = true};
            StyleName styleName10 = new StyleName() {Val = "Footer Char"};
            BasedOn basedOn6 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle5 = new LinkedStyle() {Val = "Footer"};
            UIPriority uIPriority9 = new UIPriority() {Val = 99};
            Rsid rsid6 = new Rsid() {Val = "00442AD3"};

            style10.Append(styleName10);
            style10.Append(basedOn6);
            style10.Append(linkedStyle5);
            style10.Append(uIPriority9);
            style10.Append(rsid6);

            Style style11 = new Style() {Type = StyleValues.Paragraph, StyleId = "BalloonText"};
            StyleName styleName11 = new StyleName() {Val = "Balloon Text"};
            BasedOn basedOn7 = new BasedOn() {Val = "Normal"};
            LinkedStyle linkedStyle6 = new LinkedStyle() {Val = "BalloonTextChar"};
            UIPriority uIPriority10 = new UIPriority() {Val = 99};
            SemiHidden semiHidden4 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed7 = new UnhideWhenUsed();
            Rsid rsid7 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties5 = new StyleParagraphProperties();
            SpacingBetweenLines spacingBetweenLines6 = new SpacingBetweenLines()
                                                       {After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto};

            styleParagraphProperties5.Append(spacingBetweenLines6);

            StyleRunProperties styleRunProperties2 = new StyleRunProperties();
            RunFonts runFonts3 = new RunFonts() {Ascii = "Tahoma", HighAnsi = "Tahoma", ComplexScript = "Tahoma"};
            FontSize fontSize3 = new FontSize() {Val = "16"};
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript() {Val = "16"};

            styleRunProperties2.Append(runFonts3);
            styleRunProperties2.Append(fontSize3);
            styleRunProperties2.Append(fontSizeComplexScript3);

            style11.Append(styleName11);
            style11.Append(basedOn7);
            style11.Append(linkedStyle6);
            style11.Append(uIPriority10);
            style11.Append(semiHidden4);
            style11.Append(unhideWhenUsed7);
            style11.Append(rsid7);
            style11.Append(styleParagraphProperties5);
            style11.Append(styleRunProperties2);

            Style style12 = new Style() {Type = StyleValues.Character, StyleId = "BalloonTextChar", CustomStyle = true};
            StyleName styleName12 = new StyleName() {Val = "Balloon Text Char"};
            BasedOn basedOn8 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle7 = new LinkedStyle() {Val = "BalloonText"};
            UIPriority uIPriority11 = new UIPriority() {Val = 99};
            SemiHidden semiHidden5 = new SemiHidden();
            Rsid rsid8 = new Rsid() {Val = "00442AD3"};

            StyleRunProperties styleRunProperties3 = new StyleRunProperties();
            RunFonts runFonts4 = new RunFonts() {Ascii = "Tahoma", HighAnsi = "Tahoma", ComplexScript = "Tahoma"};
            FontSize fontSize4 = new FontSize() {Val = "16"};
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript() {Val = "16"};

            styleRunProperties3.Append(runFonts4);
            styleRunProperties3.Append(fontSize4);
            styleRunProperties3.Append(fontSizeComplexScript4);

            style12.Append(styleName12);
            style12.Append(basedOn8);
            style12.Append(linkedStyle7);
            style12.Append(uIPriority11);
            style12.Append(semiHidden5);
            style12.Append(rsid8);
            style12.Append(styleRunProperties3);

            Style style13 = new Style() {Type = StyleValues.Paragraph, StyleId = "Title"};
            StyleName styleName13 = new StyleName() {Val = "Title"};
            BasedOn basedOn9 = new BasedOn() {Val = "Normal"};
            NextParagraphStyle nextParagraphStyle2 = new NextParagraphStyle() {Val = "Normal"};
            LinkedStyle linkedStyle8 = new LinkedStyle() {Val = "TitleChar"};
            UIPriority uIPriority12 = new UIPriority() {Val = 10};
            PrimaryStyle primaryStyle3 = new PrimaryStyle();
            Rsid rsid9 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties6 = new StyleParagraphProperties();

            ParagraphBorders paragraphBorders1 = new ParagraphBorders();
            BottomBorder bottomBorder3 = new BottomBorder()
                                         {
                                         	Val = BorderValues.Single,
                                         	Color = "4F81BD",
                                         	ThemeColor = ThemeColorValues.Accent1,
                                         	Size = (UInt32Value) 8U,
                                         	Space = (UInt32Value) 4U
                                         };

            paragraphBorders1.Append(bottomBorder3);
            SpacingBetweenLines spacingBetweenLines7 = new SpacingBetweenLines()
                                                       {After = "300", Line = "240", LineRule = LineSpacingRuleValues.Auto};
            ContextualSpacing contextualSpacing1 = new ContextualSpacing();

            styleParagraphProperties6.Append(paragraphBorders1);
            styleParagraphProperties6.Append(spacingBetweenLines7);
            styleParagraphProperties6.Append(contextualSpacing1);

            StyleRunProperties styleRunProperties4 = new StyleRunProperties();
            RunFonts runFonts5 = new RunFonts()
                                 {
                                 	AsciiTheme = ThemeFontValues.MajorHighAnsi,
                                 	HighAnsiTheme = ThemeFontValues.MajorHighAnsi,
                                 	EastAsiaTheme = ThemeFontValues.MajorEastAsia,
                                 	ComplexScriptTheme = ThemeFontValues.MajorBidi
                                 };
            Color color2 = new Color() {Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF"};
            Spacing spacing1 = new Spacing() {Val = 5};
            Kern kern1 = new Kern() {Val = (UInt32Value) 28U};
            FontSize fontSize5 = new FontSize() {Val = "52"};
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript() {Val = "52"};

            styleRunProperties4.Append(runFonts5);
            styleRunProperties4.Append(color2);
            styleRunProperties4.Append(spacing1);
            styleRunProperties4.Append(kern1);
            styleRunProperties4.Append(fontSize5);
            styleRunProperties4.Append(fontSizeComplexScript5);

            style13.Append(styleName13);
            style13.Append(basedOn9);
            style13.Append(nextParagraphStyle2);
            style13.Append(linkedStyle8);
            style13.Append(uIPriority12);
            style13.Append(primaryStyle3);
            style13.Append(rsid9);
            style13.Append(styleParagraphProperties6);
            style13.Append(styleRunProperties4);

            Style style14 = new Style() {Type = StyleValues.Character, StyleId = "TitleChar", CustomStyle = true};
            StyleName styleName14 = new StyleName() {Val = "Title Char"};
            BasedOn basedOn10 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle9 = new LinkedStyle() {Val = "Title"};
            UIPriority uIPriority13 = new UIPriority() {Val = 10};
            Rsid rsid10 = new Rsid() {Val = "00442AD3"};

            StyleRunProperties styleRunProperties5 = new StyleRunProperties();
            RunFonts runFonts6 = new RunFonts()
                                 {
                                 	AsciiTheme = ThemeFontValues.MajorHighAnsi,
                                 	HighAnsiTheme = ThemeFontValues.MajorHighAnsi,
                                 	EastAsiaTheme = ThemeFontValues.MajorEastAsia,
                                 	ComplexScriptTheme = ThemeFontValues.MajorBidi
                                 };
            Color color3 = new Color() {Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF"};
            Spacing spacing2 = new Spacing() {Val = 5};
            Kern kern2 = new Kern() {Val = (UInt32Value) 28U};
            FontSize fontSize6 = new FontSize() {Val = "52"};
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript() {Val = "52"};

            styleRunProperties5.Append(runFonts6);
            styleRunProperties5.Append(color3);
            styleRunProperties5.Append(spacing2);
            styleRunProperties5.Append(kern2);
            styleRunProperties5.Append(fontSize6);
            styleRunProperties5.Append(fontSizeComplexScript6);

            style14.Append(styleName14);
            style14.Append(basedOn10);
            style14.Append(linkedStyle9);
            style14.Append(uIPriority13);
            style14.Append(rsid10);
            style14.Append(styleRunProperties5);

            Style style15 = new Style() {Type = StyleValues.Character, StyleId = "Strong"};
            StyleName styleName15 = new StyleName() {Val = "Strong"};
            BasedOn basedOn11 = new BasedOn() {Val = "DefaultParagraphFont"};
            UIPriority uIPriority14 = new UIPriority() {Val = 22};
            PrimaryStyle primaryStyle4 = new PrimaryStyle();
            Rsid rsid11 = new Rsid() {Val = "00442AD3"};

            StyleRunProperties styleRunProperties6 = new StyleRunProperties();
            Bold bold2 = new Bold();
            BoldComplexScript boldComplexScript2 = new BoldComplexScript();

            styleRunProperties6.Append(bold2);
            styleRunProperties6.Append(boldComplexScript2);

            style15.Append(styleName15);
            style15.Append(basedOn11);
            style15.Append(uIPriority14);
            style15.Append(primaryStyle4);
            style15.Append(rsid11);
            style15.Append(styleRunProperties6);

            Style style16 = new Style() {Type = StyleValues.Character, StyleId = "Heading2Char", CustomStyle = true};
            StyleName styleName16 = new StyleName() {Val = "Heading 2 Char"};
            BasedOn basedOn12 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle10 = new LinkedStyle() {Val = "Heading2"};
            UIPriority uIPriority15 = new UIPriority() {Val = 9};
            Rsid rsid12 = new Rsid() {Val = "00442AD3"};

            StyleRunProperties styleRunProperties7 = new StyleRunProperties();
            RunFonts runFonts7 = new RunFonts()
                                 {
                                 	AsciiTheme = ThemeFontValues.MajorHighAnsi,
                                 	HighAnsiTheme = ThemeFontValues.MajorHighAnsi,
                                 	EastAsiaTheme = ThemeFontValues.MajorEastAsia,
                                 	ComplexScriptTheme = ThemeFontValues.MajorBidi
                                 };
            Bold bold3 = new Bold();
            BoldComplexScript boldComplexScript3 = new BoldComplexScript();
            Color color4 = new Color() {Val = "4F81BD", ThemeColor = ThemeColorValues.Accent1};
            FontSize fontSize7 = new FontSize() {Val = "26"};
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript() {Val = "26"};

            styleRunProperties7.Append(runFonts7);
            styleRunProperties7.Append(bold3);
            styleRunProperties7.Append(boldComplexScript3);
            styleRunProperties7.Append(color4);
            styleRunProperties7.Append(fontSize7);
            styleRunProperties7.Append(fontSizeComplexScript7);

            style16.Append(styleName16);
            style16.Append(basedOn12);
            style16.Append(linkedStyle10);
            style16.Append(uIPriority15);
            style16.Append(rsid12);
            style16.Append(styleRunProperties7);

            styles1.Append(docDefaults1);
            styles1.Append(latentStyles1);
            styles1.Append(style1);
            styles1.Append(style2);
            styles1.Append(style3);
            styles1.Append(style4);
            styles1.Append(style5);
            styles1.Append(style6);
            styles1.Append(style7);
            styles1.Append(style8);
            styles1.Append(style9);
            styles1.Append(style10);
            styles1.Append(style11);
            styles1.Append(style12);
            styles1.Append(style13);
            styles1.Append(style14);
            styles1.Append(style15);
            styles1.Append(style16);

            stylesWithEffectsPart1.Styles = styles1;
        }
Example #7
0
        // Generates content of styleDefinitionsPart1.
        private void GenerateStyleDefinitionsPart1Content(StyleDefinitionsPart styleDefinitionsPart1)
        {
            Styles styles2 = new Styles() {MCAttributes = new MarkupCompatibilityAttributes() {Ignorable = "w14"}};
            styles2.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            styles2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            styles2.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            styles2.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");

            DocDefaults docDefaults2 = new DocDefaults();

            RunPropertiesDefault runPropertiesDefault2 = new RunPropertiesDefault();

            RunPropertiesBaseStyle runPropertiesBaseStyle2 = new RunPropertiesBaseStyle();
            RunFonts runFonts8 = new RunFonts()
                                 {
                                 	AsciiTheme = ThemeFontValues.MinorHighAnsi,
                                 	HighAnsiTheme = ThemeFontValues.MinorHighAnsi,
                                 	EastAsiaTheme = ThemeFontValues.MinorHighAnsi,
                                 	ComplexScriptTheme = ThemeFontValues.MinorBidi
                                 };
            FontSize fontSize8 = new FontSize() {Val = "22"};
            FontSizeComplexScript fontSizeComplexScript8 = new FontSizeComplexScript() {Val = "22"};
            Languages languages2 = new Languages() {Val = "en-US", EastAsia = "en-US", Bidi = "ar-SA"};

            runPropertiesBaseStyle2.Append(runFonts8);
            runPropertiesBaseStyle2.Append(fontSize8);
            runPropertiesBaseStyle2.Append(fontSizeComplexScript8);
            runPropertiesBaseStyle2.Append(languages2);

            runPropertiesDefault2.Append(runPropertiesBaseStyle2);

            ParagraphPropertiesDefault paragraphPropertiesDefault2 = new ParagraphPropertiesDefault();

            ParagraphPropertiesBaseStyle paragraphPropertiesBaseStyle2 = new ParagraphPropertiesBaseStyle();
            SpacingBetweenLines spacingBetweenLines10 = new SpacingBetweenLines()
                                                        {After = "200", Line = "276", LineRule = LineSpacingRuleValues.Auto};

            paragraphPropertiesBaseStyle2.Append(spacingBetweenLines10);

            paragraphPropertiesDefault2.Append(paragraphPropertiesBaseStyle2);

            docDefaults2.Append(runPropertiesDefault2);
            docDefaults2.Append(paragraphPropertiesDefault2);

            LatentStyles latentStyles2 = new LatentStyles()
                                         {
                                         	DefaultLockedState = false,
                                         	DefaultUiPriority = 99,
                                         	DefaultSemiHidden = true,
                                         	DefaultUnhideWhenUsed = true,
                                         	DefaultPrimaryStyle = false,
                                         	Count = 267
                                         };
            LatentStyleExceptionInfo latentStyleExceptionInfo138 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Normal",
                                                                   	UiPriority = 0,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo139 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "heading 1",
                                                                   	UiPriority = 9,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo140 = new LatentStyleExceptionInfo()
                                                                   {Name = "heading 2", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo141 = new LatentStyleExceptionInfo()
                                                                   {Name = "heading 3", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo142 = new LatentStyleExceptionInfo()
                                                                   {Name = "heading 4", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo143 = new LatentStyleExceptionInfo()
                                                                   {Name = "heading 5", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo144 = new LatentStyleExceptionInfo()
                                                                   {Name = "heading 6", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo145 = new LatentStyleExceptionInfo()
                                                                   {Name = "heading 7", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo146 = new LatentStyleExceptionInfo()
                                                                   {Name = "heading 8", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo147 = new LatentStyleExceptionInfo()
                                                                   {Name = "heading 9", UiPriority = 9, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo148 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 1", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo149 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 2", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo150 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 3", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo151 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 4", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo152 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 5", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo153 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 6", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo154 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 7", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo155 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 8", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo156 = new LatentStyleExceptionInfo()
                                                                   {Name = "toc 9", UiPriority = 39};
            LatentStyleExceptionInfo latentStyleExceptionInfo157 = new LatentStyleExceptionInfo()
                                                                   {Name = "caption", UiPriority = 35, PrimaryStyle = true};
            LatentStyleExceptionInfo latentStyleExceptionInfo158 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Title",
                                                                   	UiPriority = 10,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo159 = new LatentStyleExceptionInfo()
                                                                   {Name = "Default Paragraph Font", UiPriority = 1};
            LatentStyleExceptionInfo latentStyleExceptionInfo160 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Subtitle",
                                                                   	UiPriority = 11,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo161 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Strong",
                                                                   	UiPriority = 22,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo162 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Emphasis",
                                                                   	UiPriority = 20,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo163 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Table Grid",
                                                                   	UiPriority = 59,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo164 = new LatentStyleExceptionInfo()
                                                                   {Name = "Placeholder Text", UnhideWhenUsed = false};
            LatentStyleExceptionInfo latentStyleExceptionInfo165 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "No Spacing",
                                                                   	UiPriority = 1,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo166 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo167 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo168 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo169 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo170 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo171 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo172 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo173 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo174 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo175 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo176 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo177 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo178 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo179 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo180 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading Accent 1",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo181 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List Accent 1",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo182 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid Accent 1",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo183 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1 Accent 1",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo184 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2 Accent 1",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo185 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1 Accent 1",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo186 = new LatentStyleExceptionInfo()
                                                                   {Name = "Revision", UnhideWhenUsed = false};
            LatentStyleExceptionInfo latentStyleExceptionInfo187 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "List Paragraph",
                                                                   	UiPriority = 34,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo188 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Quote",
                                                                   	UiPriority = 29,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo189 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Intense Quote",
                                                                   	UiPriority = 30,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo190 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2 Accent 1",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo191 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1 Accent 1",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo192 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2 Accent 1",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo193 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3 Accent 1",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo194 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List Accent 1",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo195 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 1",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo196 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 1",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo197 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 1",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo198 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading Accent 2",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo199 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List Accent 2",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo200 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid Accent 2",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo201 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1 Accent 2",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo202 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2 Accent 2",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo203 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1 Accent 2",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo204 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2 Accent 2",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo205 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1 Accent 2",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo206 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2 Accent 2",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo207 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3 Accent 2",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo208 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List Accent 2",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo209 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 2",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo210 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 2",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo211 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 2",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo212 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading Accent 3",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo213 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List Accent 3",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo214 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid Accent 3",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo215 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1 Accent 3",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo216 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2 Accent 3",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo217 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1 Accent 3",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo218 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2 Accent 3",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo219 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1 Accent 3",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo220 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2 Accent 3",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo221 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3 Accent 3",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo222 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List Accent 3",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo223 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 3",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo224 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 3",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo225 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 3",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo226 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading Accent 4",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo227 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List Accent 4",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo228 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid Accent 4",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo229 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1 Accent 4",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo230 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2 Accent 4",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo231 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1 Accent 4",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo232 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2 Accent 4",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo233 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1 Accent 4",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo234 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2 Accent 4",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo235 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3 Accent 4",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo236 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List Accent 4",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo237 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 4",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo238 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 4",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo239 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 4",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo240 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading Accent 5",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo241 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List Accent 5",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo242 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid Accent 5",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo243 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1 Accent 5",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo244 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2 Accent 5",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo245 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1 Accent 5",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo246 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2 Accent 5",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo247 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1 Accent 5",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo248 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2 Accent 5",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo249 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3 Accent 5",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo250 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List Accent 5",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo251 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 5",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo252 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 5",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo253 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 5",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo254 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Shading Accent 6",
                                                                   	UiPriority = 60,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo255 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light List Accent 6",
                                                                   	UiPriority = 61,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo256 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Light Grid Accent 6",
                                                                   	UiPriority = 62,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo257 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 1 Accent 6",
                                                                   	UiPriority = 63,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo258 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Shading 2 Accent 6",
                                                                   	UiPriority = 64,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo259 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 1 Accent 6",
                                                                   	UiPriority = 65,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo260 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium List 2 Accent 6",
                                                                   	UiPriority = 66,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo261 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 1 Accent 6",
                                                                   	UiPriority = 67,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo262 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 2 Accent 6",
                                                                   	UiPriority = 68,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo263 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Medium Grid 3 Accent 6",
                                                                   	UiPriority = 69,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo264 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Dark List Accent 6",
                                                                   	UiPriority = 70,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo265 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Shading Accent 6",
                                                                   	UiPriority = 71,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo266 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful List Accent 6",
                                                                   	UiPriority = 72,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo267 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Colorful Grid Accent 6",
                                                                   	UiPriority = 73,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo268 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Subtle Emphasis",
                                                                   	UiPriority = 19,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo269 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Intense Emphasis",
                                                                   	UiPriority = 21,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo270 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Subtle Reference",
                                                                   	UiPriority = 31,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo271 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Intense Reference",
                                                                   	UiPriority = 32,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo272 = new LatentStyleExceptionInfo()
                                                                   {
                                                                   	Name = "Book Title",
                                                                   	UiPriority = 33,
                                                                   	SemiHidden = false,
                                                                   	UnhideWhenUsed = false,
                                                                   	PrimaryStyle = true
                                                                   };
            LatentStyleExceptionInfo latentStyleExceptionInfo273 = new LatentStyleExceptionInfo()
                                                                   {Name = "Bibliography", UiPriority = 37};
            LatentStyleExceptionInfo latentStyleExceptionInfo274 = new LatentStyleExceptionInfo()
                                                                   {Name = "TOC Heading", UiPriority = 39, PrimaryStyle = true};

            latentStyles2.Append(latentStyleExceptionInfo138);
            latentStyles2.Append(latentStyleExceptionInfo139);
            latentStyles2.Append(latentStyleExceptionInfo140);
            latentStyles2.Append(latentStyleExceptionInfo141);
            latentStyles2.Append(latentStyleExceptionInfo142);
            latentStyles2.Append(latentStyleExceptionInfo143);
            latentStyles2.Append(latentStyleExceptionInfo144);
            latentStyles2.Append(latentStyleExceptionInfo145);
            latentStyles2.Append(latentStyleExceptionInfo146);
            latentStyles2.Append(latentStyleExceptionInfo147);
            latentStyles2.Append(latentStyleExceptionInfo148);
            latentStyles2.Append(latentStyleExceptionInfo149);
            latentStyles2.Append(latentStyleExceptionInfo150);
            latentStyles2.Append(latentStyleExceptionInfo151);
            latentStyles2.Append(latentStyleExceptionInfo152);
            latentStyles2.Append(latentStyleExceptionInfo153);
            latentStyles2.Append(latentStyleExceptionInfo154);
            latentStyles2.Append(latentStyleExceptionInfo155);
            latentStyles2.Append(latentStyleExceptionInfo156);
            latentStyles2.Append(latentStyleExceptionInfo157);
            latentStyles2.Append(latentStyleExceptionInfo158);
            latentStyles2.Append(latentStyleExceptionInfo159);
            latentStyles2.Append(latentStyleExceptionInfo160);
            latentStyles2.Append(latentStyleExceptionInfo161);
            latentStyles2.Append(latentStyleExceptionInfo162);
            latentStyles2.Append(latentStyleExceptionInfo163);
            latentStyles2.Append(latentStyleExceptionInfo164);
            latentStyles2.Append(latentStyleExceptionInfo165);
            latentStyles2.Append(latentStyleExceptionInfo166);
            latentStyles2.Append(latentStyleExceptionInfo167);
            latentStyles2.Append(latentStyleExceptionInfo168);
            latentStyles2.Append(latentStyleExceptionInfo169);
            latentStyles2.Append(latentStyleExceptionInfo170);
            latentStyles2.Append(latentStyleExceptionInfo171);
            latentStyles2.Append(latentStyleExceptionInfo172);
            latentStyles2.Append(latentStyleExceptionInfo173);
            latentStyles2.Append(latentStyleExceptionInfo174);
            latentStyles2.Append(latentStyleExceptionInfo175);
            latentStyles2.Append(latentStyleExceptionInfo176);
            latentStyles2.Append(latentStyleExceptionInfo177);
            latentStyles2.Append(latentStyleExceptionInfo178);
            latentStyles2.Append(latentStyleExceptionInfo179);
            latentStyles2.Append(latentStyleExceptionInfo180);
            latentStyles2.Append(latentStyleExceptionInfo181);
            latentStyles2.Append(latentStyleExceptionInfo182);
            latentStyles2.Append(latentStyleExceptionInfo183);
            latentStyles2.Append(latentStyleExceptionInfo184);
            latentStyles2.Append(latentStyleExceptionInfo185);
            latentStyles2.Append(latentStyleExceptionInfo186);
            latentStyles2.Append(latentStyleExceptionInfo187);
            latentStyles2.Append(latentStyleExceptionInfo188);
            latentStyles2.Append(latentStyleExceptionInfo189);
            latentStyles2.Append(latentStyleExceptionInfo190);
            latentStyles2.Append(latentStyleExceptionInfo191);
            latentStyles2.Append(latentStyleExceptionInfo192);
            latentStyles2.Append(latentStyleExceptionInfo193);
            latentStyles2.Append(latentStyleExceptionInfo194);
            latentStyles2.Append(latentStyleExceptionInfo195);
            latentStyles2.Append(latentStyleExceptionInfo196);
            latentStyles2.Append(latentStyleExceptionInfo197);
            latentStyles2.Append(latentStyleExceptionInfo198);
            latentStyles2.Append(latentStyleExceptionInfo199);
            latentStyles2.Append(latentStyleExceptionInfo200);
            latentStyles2.Append(latentStyleExceptionInfo201);
            latentStyles2.Append(latentStyleExceptionInfo202);
            latentStyles2.Append(latentStyleExceptionInfo203);
            latentStyles2.Append(latentStyleExceptionInfo204);
            latentStyles2.Append(latentStyleExceptionInfo205);
            latentStyles2.Append(latentStyleExceptionInfo206);
            latentStyles2.Append(latentStyleExceptionInfo207);
            latentStyles2.Append(latentStyleExceptionInfo208);
            latentStyles2.Append(latentStyleExceptionInfo209);
            latentStyles2.Append(latentStyleExceptionInfo210);
            latentStyles2.Append(latentStyleExceptionInfo211);
            latentStyles2.Append(latentStyleExceptionInfo212);
            latentStyles2.Append(latentStyleExceptionInfo213);
            latentStyles2.Append(latentStyleExceptionInfo214);
            latentStyles2.Append(latentStyleExceptionInfo215);
            latentStyles2.Append(latentStyleExceptionInfo216);
            latentStyles2.Append(latentStyleExceptionInfo217);
            latentStyles2.Append(latentStyleExceptionInfo218);
            latentStyles2.Append(latentStyleExceptionInfo219);
            latentStyles2.Append(latentStyleExceptionInfo220);
            latentStyles2.Append(latentStyleExceptionInfo221);
            latentStyles2.Append(latentStyleExceptionInfo222);
            latentStyles2.Append(latentStyleExceptionInfo223);
            latentStyles2.Append(latentStyleExceptionInfo224);
            latentStyles2.Append(latentStyleExceptionInfo225);
            latentStyles2.Append(latentStyleExceptionInfo226);
            latentStyles2.Append(latentStyleExceptionInfo227);
            latentStyles2.Append(latentStyleExceptionInfo228);
            latentStyles2.Append(latentStyleExceptionInfo229);
            latentStyles2.Append(latentStyleExceptionInfo230);
            latentStyles2.Append(latentStyleExceptionInfo231);
            latentStyles2.Append(latentStyleExceptionInfo232);
            latentStyles2.Append(latentStyleExceptionInfo233);
            latentStyles2.Append(latentStyleExceptionInfo234);
            latentStyles2.Append(latentStyleExceptionInfo235);
            latentStyles2.Append(latentStyleExceptionInfo236);
            latentStyles2.Append(latentStyleExceptionInfo237);
            latentStyles2.Append(latentStyleExceptionInfo238);
            latentStyles2.Append(latentStyleExceptionInfo239);
            latentStyles2.Append(latentStyleExceptionInfo240);
            latentStyles2.Append(latentStyleExceptionInfo241);
            latentStyles2.Append(latentStyleExceptionInfo242);
            latentStyles2.Append(latentStyleExceptionInfo243);
            latentStyles2.Append(latentStyleExceptionInfo244);
            latentStyles2.Append(latentStyleExceptionInfo245);
            latentStyles2.Append(latentStyleExceptionInfo246);
            latentStyles2.Append(latentStyleExceptionInfo247);
            latentStyles2.Append(latentStyleExceptionInfo248);
            latentStyles2.Append(latentStyleExceptionInfo249);
            latentStyles2.Append(latentStyleExceptionInfo250);
            latentStyles2.Append(latentStyleExceptionInfo251);
            latentStyles2.Append(latentStyleExceptionInfo252);
            latentStyles2.Append(latentStyleExceptionInfo253);
            latentStyles2.Append(latentStyleExceptionInfo254);
            latentStyles2.Append(latentStyleExceptionInfo255);
            latentStyles2.Append(latentStyleExceptionInfo256);
            latentStyles2.Append(latentStyleExceptionInfo257);
            latentStyles2.Append(latentStyleExceptionInfo258);
            latentStyles2.Append(latentStyleExceptionInfo259);
            latentStyles2.Append(latentStyleExceptionInfo260);
            latentStyles2.Append(latentStyleExceptionInfo261);
            latentStyles2.Append(latentStyleExceptionInfo262);
            latentStyles2.Append(latentStyleExceptionInfo263);
            latentStyles2.Append(latentStyleExceptionInfo264);
            latentStyles2.Append(latentStyleExceptionInfo265);
            latentStyles2.Append(latentStyleExceptionInfo266);
            latentStyles2.Append(latentStyleExceptionInfo267);
            latentStyles2.Append(latentStyleExceptionInfo268);
            latentStyles2.Append(latentStyleExceptionInfo269);
            latentStyles2.Append(latentStyleExceptionInfo270);
            latentStyles2.Append(latentStyleExceptionInfo271);
            latentStyles2.Append(latentStyleExceptionInfo272);
            latentStyles2.Append(latentStyleExceptionInfo273);
            latentStyles2.Append(latentStyleExceptionInfo274);

            Style style17 = new Style() {Type = StyleValues.Paragraph, StyleId = "Normal", Default = true};
            StyleName styleName17 = new StyleName() {Val = "Normal"};
            PrimaryStyle primaryStyle5 = new PrimaryStyle();

            style17.Append(styleName17);
            style17.Append(primaryStyle5);

            Style style18 = new Style() {Type = StyleValues.Paragraph, StyleId = "Heading2"};
            StyleName styleName18 = new StyleName() {Val = "heading 2"};
            BasedOn basedOn13 = new BasedOn() {Val = "Normal"};
            NextParagraphStyle nextParagraphStyle3 = new NextParagraphStyle() {Val = "Normal"};
            LinkedStyle linkedStyle11 = new LinkedStyle() {Val = "Heading2Char"};
            UIPriority uIPriority16 = new UIPriority() {Val = 9};
            UnhideWhenUsed unhideWhenUsed8 = new UnhideWhenUsed();
            PrimaryStyle primaryStyle6 = new PrimaryStyle();
            Rsid rsid13 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties7 = new StyleParagraphProperties();
            KeepNext keepNext2 = new KeepNext();
            KeepLines keepLines2 = new KeepLines();
            SpacingBetweenLines spacingBetweenLines11 = new SpacingBetweenLines() {Before = "200", After = "0"};
            OutlineLevel outlineLevel2 = new OutlineLevel() {Val = 1};

            styleParagraphProperties7.Append(keepNext2);
            styleParagraphProperties7.Append(keepLines2);
            styleParagraphProperties7.Append(spacingBetweenLines11);
            styleParagraphProperties7.Append(outlineLevel2);

            StyleRunProperties styleRunProperties8 = new StyleRunProperties();
            RunFonts runFonts9 = new RunFonts()
                                 {
                                 	AsciiTheme = ThemeFontValues.MajorHighAnsi,
                                 	HighAnsiTheme = ThemeFontValues.MajorHighAnsi,
                                 	EastAsiaTheme = ThemeFontValues.MajorEastAsia,
                                 	ComplexScriptTheme = ThemeFontValues.MajorBidi
                                 };
            Bold bold13 = new Bold();
            BoldComplexScript boldComplexScript13 = new BoldComplexScript();
            Color color6 = new Color() {Val = "4F81BD", ThemeColor = ThemeColorValues.Accent1};
            FontSize fontSize9 = new FontSize() {Val = "26"};
            FontSizeComplexScript fontSizeComplexScript9 = new FontSizeComplexScript() {Val = "26"};

            styleRunProperties8.Append(runFonts9);
            styleRunProperties8.Append(bold13);
            styleRunProperties8.Append(boldComplexScript13);
            styleRunProperties8.Append(color6);
            styleRunProperties8.Append(fontSize9);
            styleRunProperties8.Append(fontSizeComplexScript9);

            style18.Append(styleName18);
            style18.Append(basedOn13);
            style18.Append(nextParagraphStyle3);
            style18.Append(linkedStyle11);
            style18.Append(uIPriority16);
            style18.Append(unhideWhenUsed8);
            style18.Append(primaryStyle6);
            style18.Append(rsid13);
            style18.Append(styleParagraphProperties7);
            style18.Append(styleRunProperties8);

            Style style19 = new Style() {Type = StyleValues.Character, StyleId = "DefaultParagraphFont", Default = true};
            StyleName styleName19 = new StyleName() {Val = "Default Paragraph Font"};
            UIPriority uIPriority17 = new UIPriority() {Val = 1};
            SemiHidden semiHidden6 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed9 = new UnhideWhenUsed();

            style19.Append(styleName19);
            style19.Append(uIPriority17);
            style19.Append(semiHidden6);
            style19.Append(unhideWhenUsed9);

            Style style20 = new Style() {Type = StyleValues.Table, StyleId = "TableNormal", Default = true};
            StyleName styleName20 = new StyleName() {Val = "Normal Table"};
            UIPriority uIPriority18 = new UIPriority() {Val = 99};
            SemiHidden semiHidden7 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed10 = new UnhideWhenUsed();

            StyleTableProperties styleTableProperties3 = new StyleTableProperties();
            TableIndentation tableIndentation3 = new TableIndentation() {Width = 0, Type = TableWidthUnitValues.Dxa};

            TableCellMarginDefault tableCellMarginDefault3 = new TableCellMarginDefault();
            TopMargin topMargin3 = new TopMargin() {Width = "0", Type = TableWidthUnitValues.Dxa};
            TableCellLeftMargin tableCellLeftMargin3 = new TableCellLeftMargin() {Width = 108, Type = TableWidthValues.Dxa};
            BottomMargin bottomMargin3 = new BottomMargin() {Width = "0", Type = TableWidthUnitValues.Dxa};
            TableCellRightMargin tableCellRightMargin3 = new TableCellRightMargin() {Width = 108, Type = TableWidthValues.Dxa};

            tableCellMarginDefault3.Append(topMargin3);
            tableCellMarginDefault3.Append(tableCellLeftMargin3);
            tableCellMarginDefault3.Append(bottomMargin3);
            tableCellMarginDefault3.Append(tableCellRightMargin3);

            styleTableProperties3.Append(tableIndentation3);
            styleTableProperties3.Append(tableCellMarginDefault3);

            style20.Append(styleName20);
            style20.Append(uIPriority18);
            style20.Append(semiHidden7);
            style20.Append(unhideWhenUsed10);
            style20.Append(styleTableProperties3);

            Style style21 = new Style() {Type = StyleValues.Numbering, StyleId = "NoList", Default = true};
            StyleName styleName21 = new StyleName() {Val = "No List"};
            UIPriority uIPriority19 = new UIPriority() {Val = 99};
            SemiHidden semiHidden8 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed11 = new UnhideWhenUsed();

            style21.Append(styleName21);
            style21.Append(uIPriority19);
            style21.Append(semiHidden8);
            style21.Append(unhideWhenUsed11);

            Style style22 = new Style() {Type = StyleValues.Table, StyleId = "TableGrid"};
            StyleName styleName22 = new StyleName() {Val = "Table Grid"};
            BasedOn basedOn14 = new BasedOn() {Val = "TableNormal"};
            UIPriority uIPriority20 = new UIPriority() {Val = 59};
            Rsid rsid14 = new Rsid() {Val = "00F06304"};

            StyleParagraphProperties styleParagraphProperties8 = new StyleParagraphProperties();
            SpacingBetweenLines spacingBetweenLines12 = new SpacingBetweenLines()
                                                        {After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto};

            styleParagraphProperties8.Append(spacingBetweenLines12);

            StyleTableProperties styleTableProperties4 = new StyleTableProperties();
            TableIndentation tableIndentation4 = new TableIndentation() {Width = 0, Type = TableWidthUnitValues.Dxa};

            TableBorders tableBorders4 = new TableBorders();
            TopBorder topBorder3 = new TopBorder()
                                   {Val = BorderValues.Single, Color = "auto", Size = (UInt32Value) 4U, Space = (UInt32Value) 0U};
            LeftBorder leftBorder3 = new LeftBorder()
                                     {
                                     	Val = BorderValues.Single,
                                     	Color = "auto",
                                     	Size = (UInt32Value) 4U,
                                     	Space = (UInt32Value) 0U
                                     };
            BottomBorder bottomBorder4 = new BottomBorder()
                                         {
                                         	Val = BorderValues.Single,
                                         	Color = "auto",
                                         	Size = (UInt32Value) 4U,
                                         	Space = (UInt32Value) 0U
                                         };
            RightBorder rightBorder3 = new RightBorder()
                                       {
                                       	Val = BorderValues.Single,
                                       	Color = "auto",
                                       	Size = (UInt32Value) 4U,
                                       	Space = (UInt32Value) 0U
                                       };
            InsideHorizontalBorder insideHorizontalBorder3 = new InsideHorizontalBorder()
                                                             {
                                                             	Val = BorderValues.Single,
                                                             	Color = "auto",
                                                             	Size = (UInt32Value) 4U,
                                                             	Space = (UInt32Value) 0U
                                                             };
            InsideVerticalBorder insideVerticalBorder4 = new InsideVerticalBorder()
                                                         {
                                                         	Val = BorderValues.Single,
                                                         	Color = "auto",
                                                         	Size = (UInt32Value) 4U,
                                                         	Space = (UInt32Value) 0U
                                                         };

            tableBorders4.Append(topBorder3);
            tableBorders4.Append(leftBorder3);
            tableBorders4.Append(bottomBorder4);
            tableBorders4.Append(rightBorder3);
            tableBorders4.Append(insideHorizontalBorder3);
            tableBorders4.Append(insideVerticalBorder4);

            TableCellMarginDefault tableCellMarginDefault4 = new TableCellMarginDefault();
            TopMargin topMargin4 = new TopMargin() {Width = "0", Type = TableWidthUnitValues.Dxa};
            TableCellLeftMargin tableCellLeftMargin4 = new TableCellLeftMargin() {Width = 108, Type = TableWidthValues.Dxa};
            BottomMargin bottomMargin4 = new BottomMargin() {Width = "0", Type = TableWidthUnitValues.Dxa};
            TableCellRightMargin tableCellRightMargin4 = new TableCellRightMargin() {Width = 108, Type = TableWidthValues.Dxa};

            tableCellMarginDefault4.Append(topMargin4);
            tableCellMarginDefault4.Append(tableCellLeftMargin4);
            tableCellMarginDefault4.Append(bottomMargin4);
            tableCellMarginDefault4.Append(tableCellRightMargin4);

            styleTableProperties4.Append(tableIndentation4);
            styleTableProperties4.Append(tableBorders4);
            styleTableProperties4.Append(tableCellMarginDefault4);

            style22.Append(styleName22);
            style22.Append(basedOn14);
            style22.Append(uIPriority20);
            style22.Append(rsid14);
            style22.Append(styleParagraphProperties8);
            style22.Append(styleTableProperties4);

            Style style23 = new Style() {Type = StyleValues.Paragraph, StyleId = "Header"};
            StyleName styleName23 = new StyleName() {Val = "header"};
            BasedOn basedOn15 = new BasedOn() {Val = "Normal"};
            LinkedStyle linkedStyle12 = new LinkedStyle() {Val = "HeaderChar"};
            UIPriority uIPriority21 = new UIPriority() {Val = 99};
            UnhideWhenUsed unhideWhenUsed12 = new UnhideWhenUsed();
            Rsid rsid15 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties9 = new StyleParagraphProperties();

            Tabs tabs4 = new Tabs();
            TabStop tabStop8 = new TabStop() {Val = TabStopValues.Center, Position = 4680};
            TabStop tabStop9 = new TabStop() {Val = TabStopValues.Right, Position = 9360};

            tabs4.Append(tabStop8);
            tabs4.Append(tabStop9);
            SpacingBetweenLines spacingBetweenLines13 = new SpacingBetweenLines()
                                                        {After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto};

            styleParagraphProperties9.Append(tabs4);
            styleParagraphProperties9.Append(spacingBetweenLines13);

            style23.Append(styleName23);
            style23.Append(basedOn15);
            style23.Append(linkedStyle12);
            style23.Append(uIPriority21);
            style23.Append(unhideWhenUsed12);
            style23.Append(rsid15);
            style23.Append(styleParagraphProperties9);

            Style style24 = new Style() {Type = StyleValues.Character, StyleId = "HeaderChar", CustomStyle = true};
            StyleName styleName24 = new StyleName() {Val = "Header Char"};
            BasedOn basedOn16 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle13 = new LinkedStyle() {Val = "Header"};
            UIPriority uIPriority22 = new UIPriority() {Val = 99};
            Rsid rsid16 = new Rsid() {Val = "00442AD3"};

            style24.Append(styleName24);
            style24.Append(basedOn16);
            style24.Append(linkedStyle13);
            style24.Append(uIPriority22);
            style24.Append(rsid16);

            Style style25 = new Style() {Type = StyleValues.Paragraph, StyleId = "Footer"};
            StyleName styleName25 = new StyleName() {Val = "footer"};
            BasedOn basedOn17 = new BasedOn() {Val = "Normal"};
            LinkedStyle linkedStyle14 = new LinkedStyle() {Val = "FooterChar"};
            UIPriority uIPriority23 = new UIPriority() {Val = 99};
            UnhideWhenUsed unhideWhenUsed13 = new UnhideWhenUsed();
            Rsid rsid17 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties10 = new StyleParagraphProperties();

            Tabs tabs5 = new Tabs();
            TabStop tabStop10 = new TabStop() {Val = TabStopValues.Center, Position = 4680};
            TabStop tabStop11 = new TabStop() {Val = TabStopValues.Right, Position = 9360};

            tabs5.Append(tabStop10);
            tabs5.Append(tabStop11);
            SpacingBetweenLines spacingBetweenLines14 = new SpacingBetweenLines()
                                                        {After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto};

            styleParagraphProperties10.Append(tabs5);
            styleParagraphProperties10.Append(spacingBetweenLines14);

            style25.Append(styleName25);
            style25.Append(basedOn17);
            style25.Append(linkedStyle14);
            style25.Append(uIPriority23);
            style25.Append(unhideWhenUsed13);
            style25.Append(rsid17);
            style25.Append(styleParagraphProperties10);

            Style style26 = new Style() {Type = StyleValues.Character, StyleId = "FooterChar", CustomStyle = true};
            StyleName styleName26 = new StyleName() {Val = "Footer Char"};
            BasedOn basedOn18 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle15 = new LinkedStyle() {Val = "Footer"};
            UIPriority uIPriority24 = new UIPriority() {Val = 99};
            Rsid rsid18 = new Rsid() {Val = "00442AD3"};

            style26.Append(styleName26);
            style26.Append(basedOn18);
            style26.Append(linkedStyle15);
            style26.Append(uIPriority24);
            style26.Append(rsid18);

            Style style27 = new Style() {Type = StyleValues.Paragraph, StyleId = "BalloonText"};
            StyleName styleName27 = new StyleName() {Val = "Balloon Text"};
            BasedOn basedOn19 = new BasedOn() {Val = "Normal"};
            LinkedStyle linkedStyle16 = new LinkedStyle() {Val = "BalloonTextChar"};
            UIPriority uIPriority25 = new UIPriority() {Val = 99};
            SemiHidden semiHidden9 = new SemiHidden();
            UnhideWhenUsed unhideWhenUsed14 = new UnhideWhenUsed();
            Rsid rsid19 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties11 = new StyleParagraphProperties();
            SpacingBetweenLines spacingBetweenLines15 = new SpacingBetweenLines()
                                                        {After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto};

            styleParagraphProperties11.Append(spacingBetweenLines15);

            StyleRunProperties styleRunProperties9 = new StyleRunProperties();
            RunFonts runFonts10 = new RunFonts() {Ascii = "Tahoma", HighAnsi = "Tahoma", ComplexScript = "Tahoma"};
            FontSize fontSize10 = new FontSize() {Val = "16"};
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() {Val = "16"};

            styleRunProperties9.Append(runFonts10);
            styleRunProperties9.Append(fontSize10);
            styleRunProperties9.Append(fontSizeComplexScript10);

            style27.Append(styleName27);
            style27.Append(basedOn19);
            style27.Append(linkedStyle16);
            style27.Append(uIPriority25);
            style27.Append(semiHidden9);
            style27.Append(unhideWhenUsed14);
            style27.Append(rsid19);
            style27.Append(styleParagraphProperties11);
            style27.Append(styleRunProperties9);

            Style style28 = new Style() {Type = StyleValues.Character, StyleId = "BalloonTextChar", CustomStyle = true};
            StyleName styleName28 = new StyleName() {Val = "Balloon Text Char"};
            BasedOn basedOn20 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle17 = new LinkedStyle() {Val = "BalloonText"};
            UIPriority uIPriority26 = new UIPriority() {Val = 99};
            SemiHidden semiHidden10 = new SemiHidden();
            Rsid rsid20 = new Rsid() {Val = "00442AD3"};

            StyleRunProperties styleRunProperties10 = new StyleRunProperties();
            RunFonts runFonts11 = new RunFonts() {Ascii = "Tahoma", HighAnsi = "Tahoma", ComplexScript = "Tahoma"};
            FontSize fontSize11 = new FontSize() {Val = "16"};
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() {Val = "16"};

            styleRunProperties10.Append(runFonts11);
            styleRunProperties10.Append(fontSize11);
            styleRunProperties10.Append(fontSizeComplexScript11);

            style28.Append(styleName28);
            style28.Append(basedOn20);
            style28.Append(linkedStyle17);
            style28.Append(uIPriority26);
            style28.Append(semiHidden10);
            style28.Append(rsid20);
            style28.Append(styleRunProperties10);

            Style style29 = new Style() {Type = StyleValues.Paragraph, StyleId = "Title"};
            StyleName styleName29 = new StyleName() {Val = "Title"};
            BasedOn basedOn21 = new BasedOn() {Val = "Normal"};
            NextParagraphStyle nextParagraphStyle4 = new NextParagraphStyle() {Val = "Normal"};
            LinkedStyle linkedStyle18 = new LinkedStyle() {Val = "TitleChar"};
            UIPriority uIPriority27 = new UIPriority() {Val = 10};
            PrimaryStyle primaryStyle7 = new PrimaryStyle();
            Rsid rsid21 = new Rsid() {Val = "00442AD3"};

            StyleParagraphProperties styleParagraphProperties12 = new StyleParagraphProperties();

            ParagraphBorders paragraphBorders2 = new ParagraphBorders();
            BottomBorder bottomBorder5 = new BottomBorder()
                                         {
                                         	Val = BorderValues.Single,
                                         	Color = "4F81BD",
                                         	ThemeColor = ThemeColorValues.Accent1,
                                         	Size = (UInt32Value) 8U,
                                         	Space = (UInt32Value) 4U
                                         };

            paragraphBorders2.Append(bottomBorder5);
            SpacingBetweenLines spacingBetweenLines16 = new SpacingBetweenLines()
                                                        {After = "300", Line = "240", LineRule = LineSpacingRuleValues.Auto};
            ContextualSpacing contextualSpacing2 = new ContextualSpacing();

            styleParagraphProperties12.Append(paragraphBorders2);
            styleParagraphProperties12.Append(spacingBetweenLines16);
            styleParagraphProperties12.Append(contextualSpacing2);

            StyleRunProperties styleRunProperties11 = new StyleRunProperties();
            RunFonts runFonts12 = new RunFonts()
                                  {
                                  	AsciiTheme = ThemeFontValues.MajorHighAnsi,
                                  	HighAnsiTheme = ThemeFontValues.MajorHighAnsi,
                                  	EastAsiaTheme = ThemeFontValues.MajorEastAsia,
                                  	ComplexScriptTheme = ThemeFontValues.MajorBidi
                                  };
            Color color7 = new Color() {Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF"};
            Spacing spacing4 = new Spacing() {Val = 5};
            Kern kern3 = new Kern() {Val = (UInt32Value) 28U};
            FontSize fontSize12 = new FontSize() {Val = "52"};
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() {Val = "52"};

            styleRunProperties11.Append(runFonts12);
            styleRunProperties11.Append(color7);
            styleRunProperties11.Append(spacing4);
            styleRunProperties11.Append(kern3);
            styleRunProperties11.Append(fontSize12);
            styleRunProperties11.Append(fontSizeComplexScript12);

            style29.Append(styleName29);
            style29.Append(basedOn21);
            style29.Append(nextParagraphStyle4);
            style29.Append(linkedStyle18);
            style29.Append(uIPriority27);
            style29.Append(primaryStyle7);
            style29.Append(rsid21);
            style29.Append(styleParagraphProperties12);
            style29.Append(styleRunProperties11);

            Style style30 = new Style() {Type = StyleValues.Character, StyleId = "TitleChar", CustomStyle = true};
            StyleName styleName30 = new StyleName() {Val = "Title Char"};
            BasedOn basedOn22 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle19 = new LinkedStyle() {Val = "Title"};
            UIPriority uIPriority28 = new UIPriority() {Val = 10};
            Rsid rsid22 = new Rsid() {Val = "00442AD3"};

            StyleRunProperties styleRunProperties12 = new StyleRunProperties();
            RunFonts runFonts13 = new RunFonts()
                                  {
                                  	AsciiTheme = ThemeFontValues.MajorHighAnsi,
                                  	HighAnsiTheme = ThemeFontValues.MajorHighAnsi,
                                  	EastAsiaTheme = ThemeFontValues.MajorEastAsia,
                                  	ComplexScriptTheme = ThemeFontValues.MajorBidi
                                  };
            Color color8 = new Color() {Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF"};
            Spacing spacing5 = new Spacing() {Val = 5};
            Kern kern4 = new Kern() {Val = (UInt32Value) 28U};
            FontSize fontSize13 = new FontSize() {Val = "52"};
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() {Val = "52"};

            styleRunProperties12.Append(runFonts13);
            styleRunProperties12.Append(color8);
            styleRunProperties12.Append(spacing5);
            styleRunProperties12.Append(kern4);
            styleRunProperties12.Append(fontSize13);
            styleRunProperties12.Append(fontSizeComplexScript13);

            style30.Append(styleName30);
            style30.Append(basedOn22);
            style30.Append(linkedStyle19);
            style30.Append(uIPriority28);
            style30.Append(rsid22);
            style30.Append(styleRunProperties12);

            Style style31 = new Style() {Type = StyleValues.Character, StyleId = "Strong"};
            StyleName styleName31 = new StyleName() {Val = "Strong"};
            BasedOn basedOn23 = new BasedOn() {Val = "DefaultParagraphFont"};
            UIPriority uIPriority29 = new UIPriority() {Val = 22};
            PrimaryStyle primaryStyle8 = new PrimaryStyle();
            Rsid rsid23 = new Rsid() {Val = "00442AD3"};

            StyleRunProperties styleRunProperties13 = new StyleRunProperties();
            Bold bold14 = new Bold();
            BoldComplexScript boldComplexScript14 = new BoldComplexScript();

            styleRunProperties13.Append(bold14);
            styleRunProperties13.Append(boldComplexScript14);

            style31.Append(styleName31);
            style31.Append(basedOn23);
            style31.Append(uIPriority29);
            style31.Append(primaryStyle8);
            style31.Append(rsid23);
            style31.Append(styleRunProperties13);

            Style style32 = new Style() {Type = StyleValues.Character, StyleId = "Heading2Char", CustomStyle = true};
            StyleName styleName32 = new StyleName() {Val = "Heading 2 Char"};
            BasedOn basedOn24 = new BasedOn() {Val = "DefaultParagraphFont"};
            LinkedStyle linkedStyle20 = new LinkedStyle() {Val = "Heading2"};
            UIPriority uIPriority30 = new UIPriority() {Val = 9};
            Rsid rsid24 = new Rsid() {Val = "00442AD3"};

            StyleRunProperties styleRunProperties14 = new StyleRunProperties();
            RunFonts runFonts14 = new RunFonts()
                                  {
                                  	AsciiTheme = ThemeFontValues.MajorHighAnsi,
                                  	HighAnsiTheme = ThemeFontValues.MajorHighAnsi,
                                  	EastAsiaTheme = ThemeFontValues.MajorEastAsia,
                                  	ComplexScriptTheme = ThemeFontValues.MajorBidi
                                  };
            Bold bold15 = new Bold();
            BoldComplexScript boldComplexScript15 = new BoldComplexScript();
            Color color9 = new Color() {Val = "4F81BD", ThemeColor = ThemeColorValues.Accent1};
            FontSize fontSize14 = new FontSize() {Val = "26"};
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() {Val = "26"};

            styleRunProperties14.Append(runFonts14);
            styleRunProperties14.Append(bold15);
            styleRunProperties14.Append(boldComplexScript15);
            styleRunProperties14.Append(color9);
            styleRunProperties14.Append(fontSize14);
            styleRunProperties14.Append(fontSizeComplexScript14);

            style32.Append(styleName32);
            style32.Append(basedOn24);
            style32.Append(linkedStyle20);
            style32.Append(uIPriority30);
            style32.Append(rsid24);
            style32.Append(styleRunProperties14);

            styles2.Append(docDefaults2);
            styles2.Append(latentStyles2);
            styles2.Append(style17);
            styles2.Append(style18);
            styles2.Append(style19);
            styles2.Append(style20);
            styles2.Append(style21);
            styles2.Append(style22);
            styles2.Append(style23);
            styles2.Append(style24);
            styles2.Append(style25);
            styles2.Append(style26);
            styles2.Append(style27);
            styles2.Append(style28);
            styles2.Append(style29);
            styles2.Append(style30);
            styles2.Append(style31);
            styles2.Append(style32);

            styleDefinitionsPart1.Styles = styles2;
        }
Example #8
0
        /// <summary>
        /// По умолчанию создает пустой параграф
        /// </summary>
        /// <param name="textparagraph">Текст по умолчанию null вернет пустой параграв</param>
        /// <param name="fontsize">Размер шрифта по умолчанию 10 20 делить на 2</param>
        /// <param name="justifications">Выравнивание по умолчанию Слева</param>
        /// <param name="style">Стиль текста 0 обычный по умолчанию: 1 Жирный:, 2 Курсив подчеркнутый, 3 Курсив</param>
        /// <param name="leftident">Отступ слева</param>
        /// <param name="breake">Кнопка Enter после вставки</param>
        /// <param name="isfoters">Вставка в Foters</param>
        /// <param name="isContextualSpacing">Не добавлять пробел между обзацами одного и того-ж стиля</param>
        /// <returns>Возвращаем созданный параграф либо пустой либо заполненный</returns>
        public Paragraph RunParagraphGeneratorStandart(string textparagraph = " ", string fontsize = "20", JustificationValues justifications = JustificationValues.Left, int style = 0, string leftident = "0", bool breake = false, bool isfoters = false, bool isContextualSpacing = true)
        {
            ParagraphProperties paragraphProperties = new ParagraphProperties();
            FontSize            fontSize            = new FontSize {
                Val = fontsize
            };
            Run           run           = new Run();
            RunProperties runProperties = new RunProperties();
            Paragraph     paragraph     = new Paragraph();

            Indentation indental = new Indentation()
            {
                FirstLine = leftident
            };
            Justification justification = new Justification()
            {
                Val = justifications
            };

            ContextualSpacing spasing = new ContextualSpacing()
            {
                Val = isContextualSpacing
            };
            SpacingBetweenLines sp = new SpacingBetweenLines();

            sp.After = "100";
            paragraphProperties.Append(sp);
            paragraphProperties.Append(spasing);

            Text text = new Text()
            {
                Text = textparagraph, Space = SpaceProcessingModeValues.Preserve
            };

            if (isfoters)
            {
                ParagraphStyleId paragraphStyleId = new ParagraphStyleId()
                {
                    Val = "Footer"
                };
                paragraphProperties.Append(paragraphStyleId);
            }

            paragraphProperties.Append(indental);
            paragraphProperties.Append(justification);
            paragraph.Append(paragraphProperties);

            RunFonts runFonts = new RunFonts
            {
                Ascii         = "Times New Roman",
                HighAnsi      = "Times New Roman",
                EastAsia      = "Times New Roman",
                ComplexScript = "Times New Roman"
            };

            if (style != 0)
            {
                AddStyleText(ref runProperties, style);
            }
            FontSizeComplexScript fontSizeComplexScript = new FontSizeComplexScript {
                Val = fontsize
            };

            runProperties.Append(runFonts);
            runProperties.Append(fontSize);
            runProperties.Append(fontSizeComplexScript);



            run.Append(runProperties);
            run.Append(text);

            if (breake)
            {
                Break break1 = new Break();
                run.Append(break1);
            }
            paragraph.Append(run);
            return(paragraph);
        }
        private TableCell CreateTableCell(string contents, string cell_color = "ffffff", int width = 0)
        {
            // Create the TableCell object
            TableCell tc = new TableCell();

            TableCellProperties tcp;
            if (width == 0)
            {
                // Create the TableCellProperties object
                tcp = new TableCellProperties(
                    new TableCellWidth { Type = TableWidthUnitValues.Auto }
                );
            }
            else
            {
                tcp = new TableCellProperties(
                    new TableCellWidth() { Type = TableWidthUnitValues.Dxa, Width = width.ToString() }
                );
            }

            // Create the Shading object
            DocumentFormat.OpenXml.Wordprocessing.Shading shading =
                new DocumentFormat.OpenXml.Wordprocessing.Shading()
                {
                    Color = "auto",
                    Fill = cell_color,
                    Val = ShadingPatternValues.Clear
                };

            // Add the Shading object to the TableCellProperties object
            tcp.Append(shading);

            // Add the TableCellProperties object to the TableCell object
            tc.PrependChild<TableCellProperties>(tcp);

            // also need to ensure you include the text, otherwise it causes an error (it did for me!)
            Text text = new Text(contents);

            // Specify the table cell content.
            Run run = new Run();
            RunProperties runProp = new RunProperties(); // Create run properties.
            RunFonts runFont = new RunFonts();           // Create font
            runFont.Ascii = "Arial";                     // Specify font family

            FontSize size = new FontSize();
            size.Val = new StringValue("22");  // 48 half-point font size
            runProp.Append(runFont);
            runProp.Append(size);

            run.PrependChild<RunProperties>(runProp);
            run.Append(text);

            ParagraphProperties pProperties = new ParagraphProperties();
            ContextualSpacing cs = new ContextualSpacing();
            pProperties.Append(cs);
            Paragraph paragraph = new Paragraph(run);
            paragraph.PrependChild<ParagraphProperties>(pProperties);
            tc.Append(paragraph);

            return tc;
        }