private void CreateLocalStyleContent()
{
XmlNode nodeAutomaticStyles = this.XmlDoc.SelectSingleNode(
"/office:document-content/office:automatic-styles", this.NamespaceManager);
foreach(IStyle style in this.Styles.ToValueList())
nodeAutomaticStyles.AppendChild(style.Node);
}