Преглед изворни кода

Merge pull request #46 from ckeditor/t/43

Fix: Correct lists ordering for separate list items with the same `mso-list id`. Closes #43.
Piotrek Koszuliński пре 7 година
родитељ
комит
e569eba35e

+ 19 - 2
packages/ckeditor5-paste-from-office/src/filters/list.js

@@ -166,7 +166,7 @@ function transformElementIntoListItem( element, writer ) {
 //
 // where:
 //
-//		* `l1` is a list id (all elements with the same id belongs to the same list),
+//		* `l1` is a list id (however it does not mean this is a continuous list - see #43),
 //		* `level1` is a list item indentation level,
 //		* `lfo1` is a list insertion order in a document.
 //
@@ -210,6 +210,23 @@ function removeBulletElement( element, writer ) {
 	}
 }
 
+// Whether previous and current item belongs to the same list. It is determined based on `item.id`
+// (extracted from `mso-list` style, see #getListItemData) and previous sibling of the current item.
+//
+// @param {Object} previousItem
+// @param {Object} currentItem
+// @returns {Boolean}
 function isNewListNeeded( previousItem, currentItem ) {
-	return previousItem.id !== currentItem.id;
+	if ( previousItem.id !== currentItem.id ) {
+		return true;
+	}
+
+	const previousSibling = currentItem.element.previousSibling;
+
+	if ( !previousSibling ) {
+		return true;
+	}
+
+	// Even with the same id the list does not have to by continuous one (#43).
+	return !previousSibling.is( 'element', 'ul' ) && !previousSibling.is( 'element', 'ol' );
 }

+ 18 - 6
packages/ckeditor5-paste-from-office/tests/_data/list/index.js

@@ -12,6 +12,7 @@ import manyOneItem from './many-one-item/input.word2016.html';
 import heading1 from './heading1/input.word2016.html';
 import heading3Styled from './heading3-styled/input.word2016.html';
 import heading7 from './heading7/input.word2016.html';
+import resumeTemplate from './resume-template/input.word2016.html';
 
 import simpleNormalized from './simple/normalized.word2016.html';
 import styledNormalized from './styled/normalized.word2016.html';
@@ -21,6 +22,7 @@ import manyOneItemNormalized from './many-one-item/normalized.word2016.html';
 import heading1Normalized from './heading1/normalized.word2016.html';
 import heading3StyledNormalized from './heading3-styled/normalized.word2016.html';
 import heading7Normalized from './heading7/normalized.word2016.html';
+import resumeTemplateNormalized from './resume-template/normalized.word2016.html';
 
 import simpleModel from './simple/model.word2016.html';
 import styledModel from './styled/model.word2016.html';
@@ -30,6 +32,7 @@ import manyOneItemModel from './many-one-item/model.word2016.html';
 import heading1Model from './heading1/model.word2016.html';
 import heading3StyledModel from './heading3-styled/model.word2016.html';
 import heading7Model from './heading7/model.word2016.html';
+import resumeTemplateModel from './resume-template/model.word2016.html';
 
 export const fixtures = {
 	input: {
@@ -40,7 +43,8 @@ export const fixtures = {
 		manyOneItem,
 		heading1,
 		heading3Styled,
-		heading7
+		heading7,
+		resumeTemplate
 	},
 	normalized: {
 		simple: simpleNormalized,
@@ -50,7 +54,8 @@ export const fixtures = {
 		manyOneItem: manyOneItemNormalized,
 		heading1: heading1Normalized,
 		heading3Styled: heading3StyledNormalized,
-		heading7: heading7Normalized
+		heading7: heading7Normalized,
+		resumeTemplate: resumeTemplateNormalized
 	},
 	model: {
 		simple: simpleModel,
@@ -60,7 +65,8 @@ export const fixtures = {
 		manyOneItem: manyOneItemModel,
 		heading1: heading1Model,
 		heading3Styled: heading3StyledModel,
-		heading7: heading7Model
+		heading7: heading7Model,
+		resumeTemplate: resumeTemplateModel
 	}
 };
 
@@ -73,6 +79,7 @@ import manyOneItemSafari from './many-one-item/input.safari.word2016.html';
 import heading1Safari from './heading1/input.safari.word2016.html';
 import heading3StyledSafari from './heading3-styled/input.safari.word2016.html';
 import heading7Safari from './heading7/input.safari.word2016.html';
+import resumeTemplateSafari from './resume-template/input.safari.word2016.html';
 
 import simpleNormalizedSafari from './simple/normalized.safari.word2016.html';
 import styledNormalizedSafari from './styled/normalized.safari.word2016.html';
@@ -82,8 +89,10 @@ import manyOneItemNormalizedSafari from './many-one-item/normalized.safari.word2
 import heading1NormalizedSafari from './heading1/normalized.safari.word2016.html';
 import heading3StyledNormalizedSafari from './heading3-styled/normalized.safari.word2016.html';
 import heading7NormalizedSafari from './heading7/normalized.safari.word2016.html';
+import resumeTemplateNormalizedSafari from './resume-template/normalized.safari.word2016.html';
 
 import styledSafariModel from './styled/model.safari.word2016.html';
+import resumeTemplateSafariModel from './resume-template/model.safari.word2016.html';
 
 export const browserFixtures = {
 	safari: {
@@ -95,7 +104,8 @@ export const browserFixtures = {
 			manyOneItem: manyOneItemSafari,
 			heading1: heading1Safari,
 			heading3Styled: heading3StyledSafari,
-			heading7: heading7Safari
+			heading7: heading7Safari,
+			resumeTemplate: resumeTemplateSafari
 		},
 		normalized: {
 			simple: simpleNormalizedSafari,
@@ -105,7 +115,8 @@ export const browserFixtures = {
 			manyOneItem: manyOneItemNormalizedSafari,
 			heading1: heading1NormalizedSafari,
 			heading3Styled: heading3StyledNormalizedSafari,
-			heading7: heading7NormalizedSafari
+			heading7: heading7NormalizedSafari,
+			resumeTemplate: resumeTemplateNormalizedSafari
 		},
 		model: {
 			simple: simpleModel,
@@ -115,7 +126,8 @@ export const browserFixtures = {
 			manyOneItem: manyOneItemModel,
 			heading1: heading1Model,
 			heading3Styled: heading3StyledModel,
-			heading7: heading7Model
+			heading7: heading7Model,
+			resumeTemplate: resumeTemplateSafariModel
 		}
 	}
 };

Разлика између датотеке није приказан због своје велике величине
+ 740 - 0
packages/ckeditor5-paste-from-office/tests/_data/list/resume-template/input.safari.word2016.html


+ 1677 - 0
packages/ckeditor5-paste-from-office/tests/_data/list/resume-template/input.word2016.html

@@ -0,0 +1,1677 @@
+<html xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:w="urn:schemas-microsoft-com:office:word"
+xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
+xmlns="http://www.w3.org/TR/REC-html40">
+
+<head>
+<meta http-equiv=Content-Type content="text/html; charset=utf-8">
+<meta name=ProgId content=Word.Document>
+<meta name=Generator content="Microsoft Word 15">
+<meta name=Originator content="Microsoft Word 15">
+<link rel=File-List
+href="file:////Users/krzysztofkrzton/Library/Group%20Containers/UBF8T346G9.Office/TemporaryItems/msohtmlclip/clip_filelist.xml">
+<!--[if gte mso 9]><xml>
+<o:OfficeDocumentSettings>
+<o:AllowPNG/>
+</o:OfficeDocumentSettings>
+</xml><![endif]-->
+<link rel=themeData
+href="file:////Users/krzysztofkrzton/Library/Group%20Containers/UBF8T346G9.Office/TemporaryItems/msohtmlclip/clip_themedata.thmx">
+<link rel=colorSchemeMapping
+href="file:////Users/krzysztofkrzton/Library/Group%20Containers/UBF8T346G9.Office/TemporaryItems/msohtmlclip/clip_colorschememapping.xml">
+<!--[if gte mso 9]><xml>
+<w:WordDocument>
+<w:View>Normal</w:View>
+<w:Zoom>0</w:Zoom>
+<w:TrackMoves/>
+<w:TrackFormatting/>
+<w:PunctuationKerning/>
+<w:ValidateAgainstSchemas/>
+<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
+<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
+<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
+<w:DoNotPromoteQF/>
+<w:LidThemeOther>EN-US</w:LidThemeOther>
+<w:LidThemeAsian>JA</w:LidThemeAsian>
+<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
+<w:Compatibility>
+<w:BreakWrappedTables/>
+<w:SnapToGridInCell/>
+<w:WrapTextWithPunct/>
+<w:UseAsianBreakRules/>
+<w:DontGrowAutofit/>
+<w:SplitPgBreakAndParaMark/>
+<w:EnableOpenTypeKerning/>
+<w:DontFlipMirrorIndents/>
+<w:OverrideTableStyleHps/>
+<w:UseFELayout/>
+</w:Compatibility>
+<m:mathPr>
+<m:mathFont m:val="Cambria Math"/>
+<m:brkBin m:val="before"/>
+<m:brkBinSub m:val="&#45;-"/>
+<m:smallFrac m:val="off"/>
+<m:dispDef/>
+<m:lMargin m:val="0"/>
+<m:rMargin m:val="0"/>
+<m:defJc m:val="centerGroup"/>
+<m:wrapIndent m:val="1440"/>
+<m:intLim m:val="subSup"/>
+<m:naryLim m:val="undOvr"/>
+</m:mathPr></w:WordDocument>
+</xml><![endif]--><!--[if gte mso 9]><xml>
+<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
+DefSemiHidden="false" DefQFormat="false" DefPriority="99"
+LatentStyleCount="375">
+<w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/>
+<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/>
+<w:LsdException Locked="false" Priority="9" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="heading 2"/>
+<w:LsdException Locked="false" Priority="9" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="heading 3"/>
+<w:LsdException Locked="false" Priority="9" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="heading 4"/>
+<w:LsdException Locked="false" Priority="9" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="heading 5"/>
+<w:LsdException Locked="false" Priority="9" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="heading 6"/>
+<w:LsdException Locked="false" Priority="9" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="heading 7"/>
+<w:LsdException Locked="false" Priority="9" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="heading 8"/>
+<w:LsdException Locked="false" Priority="9" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="heading 9"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 5"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 6"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 7"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 8"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index 9"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 1"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 2"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 3"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 4"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 5"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 6"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 7"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 8"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" Name="toc 9"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Normal Indent"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="footnote text"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="annotation text"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+QFormat="true" Name="header"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+QFormat="true" Name="footer"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="index heading"/>
+<w:LsdException Locked="false" Priority="35" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="caption"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="table of figures"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="envelope address"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="envelope return"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="footnote reference"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="annotation reference"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="line number"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="page number"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="endnote reference"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="endnote text"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="table of authorities"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="macro"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="toa heading"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List"/>
+<w:LsdException Locked="false" Priority="10" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="List Bullet"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Number"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List 5"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Bullet 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Bullet 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Bullet 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Bullet 5"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Number 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Number 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Number 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Number 5"/>
+<w:LsdException Locked="false" Priority="1" QFormat="true" Name="Title"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Closing"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Signature"/>
+<w:LsdException Locked="false" Priority="1" SemiHidden="true"
+UnhideWhenUsed="true" Name="Default Paragraph Font"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Body Text"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Body Text Indent"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Continue"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Continue 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Continue 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Continue 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="List Continue 5"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Message Header"/>
+<w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Salutation"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Date"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Body Text First Indent"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Body Text First Indent 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Note Heading"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Body Text 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Body Text 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Body Text Indent 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Body Text Indent 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Block Text"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Hyperlink"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="FollowedHyperlink"/>
+<w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/>
+<w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Document Map"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Plain Text"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="E-mail Signature"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Top of Form"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Bottom of Form"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Normal (Web)"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Acronym"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Address"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Cite"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Code"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Definition"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Keyboard"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Preformatted"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Sample"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Typewriter"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="HTML Variable"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Normal Table"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="annotation subject"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="No List"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Outline List 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Outline List 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Outline List 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Simple 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Simple 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Simple 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Classic 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Classic 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Classic 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Classic 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Colorful 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Colorful 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Colorful 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Columns 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Columns 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Columns 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Columns 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Columns 5"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Grid 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Grid 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Grid 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Grid 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Grid 5"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Grid 6"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Grid 7"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Grid 8"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table List 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table List 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table List 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table List 4"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table List 5"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table List 6"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table List 7"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table List 8"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table 3D effects 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table 3D effects 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table 3D effects 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Contemporary"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Elegant"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Professional"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Subtle 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Subtle 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Web 1"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Web 2"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Web 3"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Balloon Text"/>
+<w:LsdException Locked="false" Priority="39" Name="Table Grid"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Table Theme"/>
+<w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"/>
+<w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
+<w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
+<w:LsdException Locked="false" Priority="61" Name="Light List"/>
+<w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
+<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
+<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
+<w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
+<w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
+<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
+<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
+<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
+<w:LsdException Locked="false" Priority="70" Name="Dark List"/>
+<w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
+<w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
+<w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
+<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
+<w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
+<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
+<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
+<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
+<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
+<w:LsdException Locked="false" SemiHidden="true" Name="Revision"/>
+<w:LsdException Locked="false" Priority="34" QFormat="true"
+Name="List Paragraph"/>
+<w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
+<w:LsdException Locked="false" Priority="30" QFormat="true"
+Name="Intense Quote"/>
+<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
+<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
+<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
+<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
+<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
+<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
+<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
+<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
+<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
+<w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
+<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
+<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
+<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
+<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
+<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
+<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
+<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
+<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
+<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
+<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
+<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
+<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
+<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
+<w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
+<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
+<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
+<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
+<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
+<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
+<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
+<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
+<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
+<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
+<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
+<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
+<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
+<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
+<w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
+<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
+<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
+<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
+<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
+<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
+<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
+<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
+<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
+<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
+<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
+<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
+<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
+<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
+<w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
+<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
+<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
+<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
+<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
+<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
+<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
+<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
+<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
+<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
+<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
+<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
+<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
+<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
+<w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
+<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
+<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
+<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
+<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
+<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
+<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
+<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
+<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
+<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
+<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
+<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
+<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
+<w:LsdException Locked="false" Priority="19" QFormat="true"
+Name="Subtle Emphasis"/>
+<w:LsdException Locked="false" Priority="21" QFormat="true"
+Name="Intense Emphasis"/>
+<w:LsdException Locked="false" Priority="31" QFormat="true"
+Name="Subtle Reference"/>
+<w:LsdException Locked="false" Priority="32" QFormat="true"
+Name="Intense Reference"/>
+<w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
+<w:LsdException Locked="false" Priority="37" SemiHidden="true"
+UnhideWhenUsed="true" Name="Bibliography"/>
+<w:LsdException Locked="false" Priority="39" SemiHidden="true"
+UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
+<w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/>
+<w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/>
+<w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/>
+<w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/>
+<w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/>
+<w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/>
+<w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/>
+<w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/>
+<w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/>
+<w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/>
+<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/>
+<w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/>
+<w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/>
+<w:LsdException Locked="false" Priority="46"
+Name="Grid Table 1 Light Accent 1"/>
+<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/>
+<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/>
+<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/>
+<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/>
+<w:LsdException Locked="false" Priority="51"
+Name="Grid Table 6 Colorful Accent 1"/>
+<w:LsdException Locked="false" Priority="52"
+Name="Grid Table 7 Colorful Accent 1"/>
+<w:LsdException Locked="false" Priority="46"
+Name="Grid Table 1 Light Accent 2"/>
+<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/>
+<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/>
+<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/>
+<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/>
+<w:LsdException Locked="false" Priority="51"
+Name="Grid Table 6 Colorful Accent 2"/>
+<w:LsdException Locked="false" Priority="52"
+Name="Grid Table 7 Colorful Accent 2"/>
+<w:LsdException Locked="false" Priority="46"
+Name="Grid Table 1 Light Accent 3"/>
+<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/>
+<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/>
+<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/>
+<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/>
+<w:LsdException Locked="false" Priority="51"
+Name="Grid Table 6 Colorful Accent 3"/>
+<w:LsdException Locked="false" Priority="52"
+Name="Grid Table 7 Colorful Accent 3"/>
+<w:LsdException Locked="false" Priority="46"
+Name="Grid Table 1 Light Accent 4"/>
+<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/>
+<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/>
+<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/>
+<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/>
+<w:LsdException Locked="false" Priority="51"
+Name="Grid Table 6 Colorful Accent 4"/>
+<w:LsdException Locked="false" Priority="52"
+Name="Grid Table 7 Colorful Accent 4"/>
+<w:LsdException Locked="false" Priority="46"
+Name="Grid Table 1 Light Accent 5"/>
+<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/>
+<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/>
+<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/>
+<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/>
+<w:LsdException Locked="false" Priority="51"
+Name="Grid Table 6 Colorful Accent 5"/>
+<w:LsdException Locked="false" Priority="52"
+Name="Grid Table 7 Colorful Accent 5"/>
+<w:LsdException Locked="false" Priority="46"
+Name="Grid Table 1 Light Accent 6"/>
+<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/>
+<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/>
+<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/>
+<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/>
+<w:LsdException Locked="false" Priority="51"
+Name="Grid Table 6 Colorful Accent 6"/>
+<w:LsdException Locked="false" Priority="52"
+Name="Grid Table 7 Colorful Accent 6"/>
+<w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/>
+<w:LsdException Locked="false" Priority="47" Name="List Table 2"/>
+<w:LsdException Locked="false" Priority="48" Name="List Table 3"/>
+<w:LsdException Locked="false" Priority="49" Name="List Table 4"/>
+<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/>
+<w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/>
+<w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/>
+<w:LsdException Locked="false" Priority="46"
+Name="List Table 1 Light Accent 1"/>
+<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/>
+<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/>
+<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/>
+<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/>
+<w:LsdException Locked="false" Priority="51"
+Name="List Table 6 Colorful Accent 1"/>
+<w:LsdException Locked="false" Priority="52"
+Name="List Table 7 Colorful Accent 1"/>
+<w:LsdException Locked="false" Priority="46"
+Name="List Table 1 Light Accent 2"/>
+<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/>
+<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/>
+<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/>
+<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/>
+<w:LsdException Locked="false" Priority="51"
+Name="List Table 6 Colorful Accent 2"/>
+<w:LsdException Locked="false" Priority="52"
+Name="List Table 7 Colorful Accent 2"/>
+<w:LsdException Locked="false" Priority="46"
+Name="List Table 1 Light Accent 3"/>
+<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/>
+<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/>
+<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/>
+<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/>
+<w:LsdException Locked="false" Priority="51"
+Name="List Table 6 Colorful Accent 3"/>
+<w:LsdException Locked="false" Priority="52"
+Name="List Table 7 Colorful Accent 3"/>
+<w:LsdException Locked="false" Priority="46"
+Name="List Table 1 Light Accent 4"/>
+<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/>
+<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/>
+<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/>
+<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/>
+<w:LsdException Locked="false" Priority="51"
+Name="List Table 6 Colorful Accent 4"/>
+<w:LsdException Locked="false" Priority="52"
+Name="List Table 7 Colorful Accent 4"/>
+<w:LsdException Locked="false" Priority="46"
+Name="List Table 1 Light Accent 5"/>
+<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/>
+<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/>
+<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/>
+<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/>
+<w:LsdException Locked="false" Priority="51"
+Name="List Table 6 Colorful Accent 5"/>
+<w:LsdException Locked="false" Priority="52"
+Name="List Table 7 Colorful Accent 5"/>
+<w:LsdException Locked="false" Priority="46"
+Name="List Table 1 Light Accent 6"/>
+<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/>
+<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/>
+<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/>
+<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/>
+<w:LsdException Locked="false" Priority="51"
+Name="List Table 6 Colorful Accent 6"/>
+<w:LsdException Locked="false" Priority="52"
+Name="List Table 7 Colorful Accent 6"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Mention"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Smart Hyperlink"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Hashtag"/>
+<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
+Name="Unresolved Mention"/>
+</w:LatentStyles>
+</xml><![endif]-->
+<link rel=plchdr
+href="file:////Users/krzysztofkrzton/Library/Group%20Containers/UBF8T346G9.Office/TemporaryItems/msohtmlclip/clip_plchdr.htm">
+<style>
+<!--
+/* Font Definitions */
+@font-face
+{font-family:Wingdings;
+panose-1:5 0 0 0 0 0 0 0 0 0;
+mso-font-charset:2;
+mso-generic-font-family:decorative;
+mso-font-pitch:variable;
+mso-font-signature:0 268435456 0 0 -2147483648 0;}
+@font-face
+{font-family:"Cambria Math";
+panose-1:2 4 5 3 5 4 6 3 2 4;
+mso-font-charset:0;
+mso-generic-font-family:roman;
+mso-font-pitch:variable;
+mso-font-signature:3 0 0 0 1 0;}
+@font-face
+{font-family:Cambria;
+panose-1:2 4 5 3 5 4 6 3 2 4;
+mso-font-charset:0;
+mso-generic-font-family:roman;
+mso-font-pitch:variable;
+mso-font-signature:-536869121 1107305727 33554432 0 415 0;}
+@font-face
+{font-family:HGMinchoB;
+panose-1:2 11 6 4 2 2 2 2 2 4;
+mso-font-alt:"Yu Mincho Demibold";
+mso-font-charset:128;
+mso-generic-font-family:roman;
+mso-font-pitch:auto;
+mso-font-signature:0 0 0 0 0 0;}
+@font-face
+{font-family:"\@HGMinchoB";
+mso-font-charset:128;
+mso-generic-font-family:roman;
+mso-font-pitch:auto;
+mso-font-signature:0 0 0 0 0 0;}
+/* Style Definitions */
+p.MsoNormal, li.MsoNormal, div.MsoNormal
+{mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-parent:"";
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:12.0pt;
+margin-left:0cm;
+mso-pagination:widow-orphan;
+font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:minor-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:minor-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:minor-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:minor-bidi;
+color:#404040;
+mso-themecolor:text1;
+mso-themetint:191;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+h1
+{mso-style-priority:9;
+mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-link:"Heading 1 Char";
+margin-top:16.0pt;
+margin-right:0cm;
+margin-bottom:5.0pt;
+margin-left:0cm;
+mso-add-space:auto;
+mso-pagination:widow-orphan lines-together;
+page-break-after:avoid;
+mso-outline-level:1;
+font-size:14.0pt;
+mso-bidi-font-size:16.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:0pt;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;
+mso-bidi-font-weight:normal;}
+h1.CxSpFirst
+{mso-style-priority:9;
+mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-link:"Heading 1 Char";
+mso-style-type:export-only;
+margin-top:16.0pt;
+margin-right:0cm;
+margin-bottom:0cm;
+margin-left:0cm;
+margin-bottom:.0001pt;
+mso-add-space:auto;
+mso-pagination:widow-orphan lines-together;
+page-break-after:avoid;
+mso-outline-level:1;
+font-size:14.0pt;
+mso-bidi-font-size:16.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:0pt;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;
+mso-bidi-font-weight:normal;}
+h1.CxSpMiddle
+{mso-style-priority:9;
+mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-link:"Heading 1 Char";
+mso-style-type:export-only;
+margin:0cm;
+margin-bottom:.0001pt;
+mso-add-space:auto;
+mso-pagination:widow-orphan lines-together;
+page-break-after:avoid;
+mso-outline-level:1;
+font-size:14.0pt;
+mso-bidi-font-size:16.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:0pt;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;
+mso-bidi-font-weight:normal;}
+h1.CxSpLast
+{mso-style-priority:9;
+mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-link:"Heading 1 Char";
+mso-style-type:export-only;
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:5.0pt;
+margin-left:0cm;
+mso-add-space:auto;
+mso-pagination:widow-orphan lines-together;
+page-break-after:avoid;
+mso-outline-level:1;
+font-size:14.0pt;
+mso-bidi-font-size:16.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:0pt;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;
+mso-bidi-font-weight:normal;}
+h2
+{mso-style-priority:9;
+mso-style-qformat:yes;
+mso-style-link:"Heading 2 Char";
+mso-style-next:Normal;
+margin-top:3.0pt;
+margin-right:0cm;
+margin-bottom:2.0pt;
+margin-left:0cm;
+mso-add-space:auto;
+mso-pagination:widow-orphan lines-together;
+page-break-after:avoid;
+mso-outline-level:2;
+font-size:12.0pt;
+mso-bidi-font-size:13.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#262626;
+mso-themecolor:text1;
+mso-themetint:217;
+text-transform:uppercase;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;
+mso-bidi-font-weight:normal;}
+h2.CxSpFirst
+{mso-style-priority:9;
+mso-style-qformat:yes;
+mso-style-link:"Heading 2 Char";
+mso-style-next:Normal;
+mso-style-type:export-only;
+margin-top:3.0pt;
+margin-right:0cm;
+margin-bottom:0cm;
+margin-left:0cm;
+margin-bottom:.0001pt;
+mso-add-space:auto;
+mso-pagination:widow-orphan lines-together;
+page-break-after:avoid;
+mso-outline-level:2;
+font-size:12.0pt;
+mso-bidi-font-size:13.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#262626;
+mso-themecolor:text1;
+mso-themetint:217;
+text-transform:uppercase;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;
+mso-bidi-font-weight:normal;}
+h2.CxSpMiddle
+{mso-style-priority:9;
+mso-style-qformat:yes;
+mso-style-link:"Heading 2 Char";
+mso-style-next:Normal;
+mso-style-type:export-only;
+margin:0cm;
+margin-bottom:.0001pt;
+mso-add-space:auto;
+mso-pagination:widow-orphan lines-together;
+page-break-after:avoid;
+mso-outline-level:2;
+font-size:12.0pt;
+mso-bidi-font-size:13.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#262626;
+mso-themecolor:text1;
+mso-themetint:217;
+text-transform:uppercase;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;
+mso-bidi-font-weight:normal;}
+h2.CxSpLast
+{mso-style-priority:9;
+mso-style-qformat:yes;
+mso-style-link:"Heading 2 Char";
+mso-style-next:Normal;
+mso-style-type:export-only;
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:2.0pt;
+margin-left:0cm;
+mso-add-space:auto;
+mso-pagination:widow-orphan lines-together;
+page-break-after:avoid;
+mso-outline-level:2;
+font-size:12.0pt;
+mso-bidi-font-size:13.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#262626;
+mso-themecolor:text1;
+mso-themetint:217;
+text-transform:uppercase;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;
+mso-bidi-font-weight:normal;}
+p.MsoFooter, li.MsoFooter, div.MsoFooter
+{mso-style-priority:99;
+mso-style-link:"Footer Char";
+margin:0cm;
+margin-bottom:.0001pt;
+text-align:right;
+mso-pagination:widow-orphan;
+font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:minor-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:minor-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:minor-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:minor-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+p.MsoListBullet, li.MsoListBullet, div.MsoListBullet
+{mso-style-priority:10;
+mso-style-qformat:yes;
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:12.0pt;
+margin-left:10.8pt;
+mso-add-space:auto;
+text-indent:-10.8pt;
+line-height:120%;
+mso-pagination:widow-orphan;
+mso-list:l0 level1 lfo1;
+tab-stops:list 10.8pt;
+font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:minor-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:minor-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:minor-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:minor-bidi;
+color:#404040;
+mso-themecolor:text1;
+mso-themetint:191;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+p.MsoListBulletCxSpFirst, li.MsoListBulletCxSpFirst, div.MsoListBulletCxSpFirst
+{mso-style-priority:10;
+mso-style-qformat:yes;
+mso-style-type:export-only;
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:0cm;
+margin-left:10.8pt;
+margin-bottom:.0001pt;
+mso-add-space:auto;
+text-indent:-10.8pt;
+line-height:120%;
+mso-pagination:widow-orphan;
+mso-list:l0 level1 lfo1;
+tab-stops:list 10.8pt;
+font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:minor-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:minor-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:minor-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:minor-bidi;
+color:#404040;
+mso-themecolor:text1;
+mso-themetint:191;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+p.MsoListBulletCxSpMiddle, li.MsoListBulletCxSpMiddle, div.MsoListBulletCxSpMiddle
+{mso-style-priority:10;
+mso-style-qformat:yes;
+mso-style-type:export-only;
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:0cm;
+margin-left:10.8pt;
+margin-bottom:.0001pt;
+mso-add-space:auto;
+text-indent:-10.8pt;
+line-height:120%;
+mso-pagination:widow-orphan;
+mso-list:l0 level1 lfo1;
+tab-stops:list 10.8pt;
+font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:minor-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:minor-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:minor-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:minor-bidi;
+color:#404040;
+mso-themecolor:text1;
+mso-themetint:191;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+p.MsoListBulletCxSpLast, li.MsoListBulletCxSpLast, div.MsoListBulletCxSpLast
+{mso-style-priority:10;
+mso-style-qformat:yes;
+mso-style-type:export-only;
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:12.0pt;
+margin-left:10.8pt;
+mso-add-space:auto;
+text-indent:-10.8pt;
+line-height:120%;
+mso-pagination:widow-orphan;
+mso-list:l0 level1 lfo1;
+tab-stops:list 10.8pt;
+font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:minor-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:minor-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:minor-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:minor-bidi;
+color:#404040;
+mso-themecolor:text1;
+mso-themetint:191;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+p.MsoTitle, li.MsoTitle, div.MsoTitle
+{mso-style-priority:1;
+mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-link:"Title Char";
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:6.0pt;
+margin-left:0cm;
+mso-add-space:auto;
+mso-pagination:widow-orphan;
+border:none;
+mso-border-bottom-alt:solid #39A5B7 1.5pt;
+mso-border-bottom-themecolor:accent1;
+padding:0cm;
+mso-padding-alt:0cm 0cm 4.0pt 0cm;
+font-size:28.0pt;
+mso-bidi-font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:14.0pt;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+p.MsoTitleCxSpFirst, li.MsoTitleCxSpFirst, div.MsoTitleCxSpFirst
+{mso-style-priority:1;
+mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-link:"Title Char";
+mso-style-type:export-only;
+margin:0cm;
+margin-bottom:.0001pt;
+mso-add-space:auto;
+mso-pagination:widow-orphan;
+border:none;
+mso-border-bottom-alt:solid #39A5B7 1.5pt;
+mso-border-bottom-themecolor:accent1;
+padding:0cm;
+mso-padding-alt:0cm 0cm 4.0pt 0cm;
+font-size:28.0pt;
+mso-bidi-font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:14.0pt;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+p.MsoTitleCxSpMiddle, li.MsoTitleCxSpMiddle, div.MsoTitleCxSpMiddle
+{mso-style-priority:1;
+mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-link:"Title Char";
+mso-style-type:export-only;
+margin:0cm;
+margin-bottom:.0001pt;
+mso-add-space:auto;
+mso-pagination:widow-orphan;
+border:none;
+mso-border-bottom-alt:solid #39A5B7 1.5pt;
+mso-border-bottom-themecolor:accent1;
+padding:0cm;
+mso-padding-alt:0cm 0cm 4.0pt 0cm;
+font-size:28.0pt;
+mso-bidi-font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:14.0pt;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+p.MsoTitleCxSpLast, li.MsoTitleCxSpLast, div.MsoTitleCxSpLast
+{mso-style-priority:1;
+mso-style-unhide:no;
+mso-style-qformat:yes;
+mso-style-link:"Title Char";
+mso-style-type:export-only;
+margin-top:0cm;
+margin-right:0cm;
+margin-bottom:6.0pt;
+margin-left:0cm;
+mso-add-space:auto;
+mso-pagination:widow-orphan;
+border:none;
+mso-border-bottom-alt:solid #39A5B7 1.5pt;
+mso-border-bottom-themecolor:accent1;
+padding:0cm;
+mso-padding-alt:0cm 0cm 4.0pt 0cm;
+font-size:28.0pt;
+mso-bidi-font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:14.0pt;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+span.Heading1Char
+{mso-style-name:"Heading 1 Char";
+mso-style-priority:9;
+mso-style-unhide:no;
+mso-style-locked:yes;
+mso-style-link:"Heading 1";
+mso-ansi-font-size:14.0pt;
+mso-bidi-font-size:16.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+font-weight:bold;
+mso-bidi-font-weight:normal;}
+span.Heading2Char
+{mso-style-name:"Heading 2 Char";
+mso-style-priority:9;
+mso-style-unhide:no;
+mso-style-locked:yes;
+mso-style-link:"Heading 2";
+mso-ansi-font-size:12.0pt;
+mso-bidi-font-size:13.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#262626;
+mso-themecolor:text1;
+mso-themetint:217;
+text-transform:uppercase;
+font-weight:bold;
+mso-bidi-font-weight:normal;}
+span.TitleChar
+{mso-style-name:"Title Char";
+mso-style-priority:1;
+mso-style-unhide:no;
+mso-style-locked:yes;
+mso-style-link:Title;
+mso-ansi-font-size:28.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:major-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:major-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:major-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:major-bidi;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;
+mso-font-kerning:14.0pt;}
+span.FooterChar
+{mso-style-name:"Footer Char";
+mso-style-priority:99;
+mso-style-unhide:no;
+mso-style-locked:yes;
+mso-style-link:Footer;
+color:#2A7B88;
+mso-themecolor:accent1;
+mso-themeshade:191;}
+.MsoChpDefault
+{mso-style-type:export-only;
+mso-default-props:yes;
+font-size:11.0pt;
+mso-ansi-font-size:11.0pt;
+mso-bidi-font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:minor-latin;
+mso-fareast-font-family:HGMinchoB;
+mso-fareast-theme-font:minor-fareast;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:minor-latin;
+mso-bidi-font-family:"Times New Roman";
+mso-bidi-theme-font:minor-bidi;
+color:#404040;
+mso-themecolor:text1;
+mso-themetint:191;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+.MsoPapDefault
+{mso-style-type:export-only;
+margin-bottom:12.0pt;}
+@page WordSection1
+{size:612.0pt 792.0pt;
+margin:50.4pt 57.6pt 57.6pt 57.6pt;
+mso-header-margin:36.0pt;
+mso-footer-margin:36.0pt;
+mso-page-numbers:1;
+mso-paper-source:0;}
+div.WordSection1
+{page:WordSection1;}
+/* List Definitions */
+@list l0
+{mso-list-id:167987920;
+mso-list-template-ids:1739995318;}
+@list l0:level1
+{mso-level-number-format:bullet;
+mso-level-style-link:"List Bullet";
+mso-level-text:·;
+mso-level-tab-stop:10.8pt;
+mso-level-number-position:left;
+margin-left:10.8pt;
+text-indent:-10.8pt;
+font-family:"Cambria",serif;}
+@list l0:level2
+{mso-level-number-format:bullet;
+mso-level-text:o;
+mso-level-tab-stop:32.4pt;
+mso-level-number-position:left;
+margin-left:32.4pt;
+text-indent:-10.8pt;
+font-family:"Courier New";
+mso-bidi-font-family:"Times New Roman";}
+@list l0:level3
+{mso-level-number-format:bullet;
+mso-level-text:;
+mso-level-tab-stop:54.0pt;
+mso-level-number-position:left;
+margin-left:54.0pt;
+text-indent:-10.8pt;
+font-family:Wingdings;}
+@list l0:level4
+{mso-level-number-format:bullet;
+mso-level-text:;
+mso-level-tab-stop:75.6pt;
+mso-level-number-position:left;
+margin-left:75.6pt;
+text-indent:-10.8pt;
+font-family:Symbol;}
+@list l0:level5
+{mso-level-number-format:bullet;
+mso-level-text:o;
+mso-level-tab-stop:97.2pt;
+mso-level-number-position:left;
+margin-left:97.2pt;
+text-indent:-10.8pt;
+font-family:"Courier New";
+mso-bidi-font-family:"Times New Roman";}
+@list l0:level6
+{mso-level-number-format:bullet;
+mso-level-text:;
+mso-level-tab-stop:118.8pt;
+mso-level-number-position:left;
+margin-left:118.8pt;
+text-indent:-10.8pt;
+font-family:Wingdings;}
+@list l0:level7
+{mso-level-number-format:bullet;
+mso-level-text:;
+mso-level-tab-stop:140.4pt;
+mso-level-number-position:left;
+margin-left:140.4pt;
+text-indent:-10.8pt;
+font-family:Symbol;}
+@list l0:level8
+{mso-level-number-format:bullet;
+mso-level-text:o;
+mso-level-tab-stop:162.0pt;
+mso-level-number-position:left;
+margin-left:162.0pt;
+text-indent:-10.8pt;
+font-family:"Courier New";
+mso-bidi-font-family:"Times New Roman";}
+@list l0:level9
+{mso-level-number-format:bullet;
+mso-level-text:;
+mso-level-tab-stop:183.6pt;
+mso-level-number-position:left;
+margin-left:183.6pt;
+text-indent:-10.8pt;
+font-family:Wingdings;}
+ol
+{margin-bottom:0cm;}
+ul
+{margin-bottom:0cm;}
+-->
+</style>
+<!--[if gte mso 10]>
+<style>
+/* Style Definitions */
+table.MsoNormalTable
+{mso-style-name:"Table Normal";
+mso-tstyle-rowband-size:0;
+mso-tstyle-colband-size:0;
+mso-style-noshow:yes;
+mso-style-priority:99;
+mso-style-parent:"";
+mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
+mso-para-margin-top:0cm;
+mso-para-margin-right:0cm;
+mso-para-margin-bottom:12.0pt;
+mso-para-margin-left:0cm;
+mso-pagination:widow-orphan;
+font-size:11.0pt;
+font-family:"Cambria",serif;
+mso-ascii-font-family:Cambria;
+mso-ascii-theme-font:minor-latin;
+mso-hansi-font-family:Cambria;
+mso-hansi-theme-font:minor-latin;
+color:#404040;
+mso-themecolor:text1;
+mso-themetint:191;
+mso-ansi-language:EN-US;
+mso-fareast-language:JA;}
+</style>
+<![endif]-->
+</head>
+
+<body lang=PL style='tab-interval:36.0pt'>
+<!--StartFragment--><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="7991B463AF754849B9D18A244BABABCD" Title="Your Name:"
+SdtTag="Your Name:" ID="1524743180">
+<div style='mso-element:para-border-div;border:none;border-bottom:solid #39A5B7 1.5pt;
+mso-border-bottom-themecolor:accent1;padding:0cm 0cm 4.0pt 0cm'>
+<p class=MsoTitle><span lang=EN-US>Your Name<o:p></o:p><w:sdtPr></w:sdtPr></span></p>
+</div>
+</w:Sdt>
+
+<p class=MsoNormal><span lang=EN-US><w:Sdt
+PrefixMappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' "
+Xpath="/ns0:CoverPageProperties[1]/ns0:CompanyAddress[1]" ShowingPlcHdr="t"
+Temporary="t" DocPart="D2108BD728B96E4DAF088D004A847E52" Text="t"
+StoreItemID="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA"
+Title="Address, City, ST ZIP Code:" SdtTag="Address, City, ST ZIP Code:"
+ID="-593780209">Address, City, ST ZIP Code</w:Sdt>&nbsp;|&nbsp;<w:Sdt
+PrefixMappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' "
+Xpath="/ns0:CoverPageProperties[1]/ns0:CompanyPhone[1]" ShowingPlcHdr="t"
+Temporary="t" DocPart="3E8EF39B4402964CA8AC02F44102557C" Text="t"
+StoreItemID="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA" Title="Telephone:"
+SdtTag="Telephone:" ID="-1416317146">Telephone</w:Sdt>&nbsp;|&nbsp;<w:Sdt
+PrefixMappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' "
+Xpath="/ns0:CoverPageProperties[1]/ns0:CompanyEmail[1]" ShowingPlcHdr="t"
+Temporary="t" DocPart="174B413EE2146A4E98A5CD53FCDF3D15" Text="t"
+StoreItemID="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA" Title="Email:"
+SdtTag="Email:" ID="-391963670">Email</w:Sdt><o:p></o:p></span></p>
+
+<h1><span lang=EN-US><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="2CF2B3273758D4479328DCCEC10AB1A6" Title="Objective:"
+SdtTag="Objective:" ID="-731932020">Objective</w:Sdt><o:p></o:p></span></h1>
+
+<p class=MsoNormal><span lang=EN-US><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="EA42460587E30B46962B932E29990089" Title="Add Objectives:"
+SdtTag="Add Objectives:" ID="396481143">To get started right away, just click
+any placeholder text (such as this) and start typing to replace it with your
+own.</w:Sdt><o:p></o:p></span></p>
+
+<w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="2FDF2E4A7829EC40965102E0D0E1F2A8" Title="Education:"
+SdtTag="Education:" ID="807127995">
+<h1><span lang=EN-US>Education<o:p></o:p><w:sdtPr></w:sdtPr></span></h1>
+</w:Sdt>
+
+<h2><span lang=EN-US><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="6CDEE26F984DE54FA477C4F459C3B7DD" Text="t" Title="Degree:"
+SdtTag="Degree:" ID="-1403435167">Degree</w:Sdt>&nbsp;|&nbsp;<w:Sdt
+ShowingPlcHdr="t" Temporary="t" DocPart="16689B23DF60624C823D3351BD5FE2E3"
+Text="t" Title="Date Earned:" SdtTag="Date Earned:" ID="-315799195">Date
+Earned</w:Sdt>&nbsp;|&nbsp;<w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="FAA6A973BC257B44B57E3D59624F4405" Text="t" Title="School:"
+SdtTag="School:" ID="530385979">School</w:Sdt><o:p></o:p></span></h2>
+
+<p class=MsoListBulletCxSpFirst style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>Major: <w:Sdt ShowingPlcHdr="t"
+Temporary="t" DocPart="11254AB6F6AF3048B0FB77B19E14A276" Text="t"
+Title="Major:" SdtTag="Major:" ID="1821224400">Click here to enter text</w:Sdt><o:p></o:p></span></p>
+
+<p class=MsoListBulletCxSpMiddle style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>Minor: <w:Sdt ShowingPlcHdr="t"
+Temporary="t" DocPart="11254AB6F6AF3048B0FB77B19E14A276" Text="t"
+Title="Minor:" SdtTag="Minor:" ID="1025376684">Click here to enter text</w:Sdt><o:p></o:p></span></p>
+
+<p class=MsoListBulletCxSpLast style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>Related coursework: <w:Sdt
+ShowingPlcHdr="t" Temporary="t" DocPart="11254AB6F6AF3048B0FB77B19E14A276"
+Text="t" Title="Related coursework: " SdtTag="Related coursework: "
+ID="1648172142">Click here to enter text</w:Sdt><o:p></o:p></span></p>
+
+<h2><span lang=EN-US><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="AF57846D78398A4FABCEFDE49BE44C09" Text="t" Title="Degree:"
+SdtTag="Degree:" ID="-1691290666">Degree</w:Sdt>&nbsp;|&nbsp;<w:Sdt
+ShowingPlcHdr="t" Temporary="t" DocPart="EA073356D4D39C478AB488D46C4727B6"
+Text="t" Title="Date Earned:" SdtTag="Date Earned:" ID="-1221673033">Date
+Earned</w:Sdt>&nbsp;|&nbsp;<w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="2B17CFD5A31CCE4F98C3C9634765799F" Text="t" Title="School:"
+SdtTag="School:" ID="714016034">School</w:Sdt><o:p></o:p></span></h2>
+
+<p class=MsoListBulletCxSpFirst style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>Major: <w:Sdt ShowingPlcHdr="t"
+Temporary="t" DocPart="2D9029A2B401CC42944B7EB502F83824" Text="t"
+Title="Major:" SdtTag="Major:" ID="1046181329">Click here to enter text</w:Sdt><o:p></o:p></span></p>
+
+<p class=MsoListBulletCxSpMiddle style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>Minor: <w:Sdt ShowingPlcHdr="t"
+Temporary="t" DocPart="2D9029A2B401CC42944B7EB502F83824" Text="t"
+Title="Minor:" SdtTag="Minor:" ID="542409479">Click here to enter text</w:Sdt><o:p></o:p></span></p>
+
+<p class=MsoListBulletCxSpLast style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>Related coursework: <w:Sdt
+ShowingPlcHdr="t" Temporary="t" DocPart="2D9029A2B401CC42944B7EB502F83824"
+Text="t" Title="Related Coursework:" SdtTag="Related Coursework:"
+ID="100010185">Click here to enter text</w:Sdt><o:p></o:p></span></p>
+
+<w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="DF58121D682DAE449716952E997A3F3E" Title="Skills &amp; Abilities:"
+SdtTag="Skills &amp; Abilities:" ID="458624136">
+<h1><span lang=EN-US>Skills &amp; Abilities<o:p></o:p><w:sdtPr></w:sdtPr></span></h1>
+</w:Sdt><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="36188BA07632D147B020423032557875" Title="Management:"
+SdtTag="Management:" ID="598525640">
+<h2><span lang=EN-US>Management<o:p></o:p><w:sdtPr></w:sdtPr></span></h2>
+</w:Sdt><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="C51B29163715CD4F99529A18C891B99B" Title="Management Skills:"
+SdtTag="Management Skills:" ID="-1177730712">
+<p class=MsoListBullet style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>Think a document that looks
+this good has to be difficult to format? Think again! To easily apply any text
+formatting you see in this document with just a click, on the Home tab of the
+ribbon, check out Styles.<o:p></o:p><w:sdtPr></w:sdtPr></span></p>
+</w:Sdt><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="1B60D9D4AA008342B6AB8B91B15BF0F2" Title="Sales:" SdtTag="Sales:"
+ID="-2126221975">
+<h2><span lang=EN-US>Sales<o:p></o:p><w:sdtPr></w:sdtPr></span></h2>
+</w:Sdt><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="92F72DE9A594584B9C488FED96B568B4" Title="Sales Skills:"
+SdtTag="Sales Skills:" ID="1544489962">
+<p class=MsoListBullet style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>Some of the sample text in
+this document indicates the name of the style applied, so that you can easily
+apply the same formatting again. For example, this is the List Bullet style.<o:p></o:p><w:sdtPr></w:sdtPr></span></p>
+</w:Sdt><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="2825490EC1FBAC408E7B91902BACFAC0" Title="Communication:"
+SdtTag="Communication:" ID="-1153840069">
+<h2><span lang=EN-US>Communication<o:p></o:p><w:sdtPr></w:sdtPr></span></h2>
+</w:Sdt>
+
+<p class=MsoListBullet style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US><w:Sdt ShowingPlcHdr="t"
+Temporary="t" DocPart="1018054470CB4B4B93F5C30010DA2E3A"
+Title="Communication Skills:" SdtTag="Communication Skills:" ID="-1819335404">You
+delivered that big presentation to rave reviews. Don’t be shy about it now!
+This is the place to show how well you work and play with others.</w:Sdt><o:p></o:p></span></p>
+
+<w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="1B0B4B511610FC429B17F08E12E06394" Title="Leadership:"
+SdtTag="Leadership:" ID="1837562325">
+<h2><span lang=EN-US>Leadership<o:p></o:p><w:sdtPr></w:sdtPr></span></h2>
+</w:Sdt>
+
+<p class=MsoListBullet style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US><w:Sdt ShowingPlcHdr="t"
+Temporary="t" DocPart="D969CD1F1B5AC04493396C70BC53F75B"
+Title="Leadership Skills:" SdtTag="Leadership Skills:" ID="-1072199855">Are you
+president of your fraternity, head of the condo board, or a team lead for your
+favorite charity? You’re a natural leader—tell it like it is!</w:Sdt><o:p></o:p></span></p>
+
+<w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="A19F02371827BB4C8B75126C029F24F7" Title="Experience:"
+SdtTag="Experience:" ID="171684534">
+<h1><span lang=EN-US>Experience<o:p></o:p><w:sdtPr></w:sdtPr></span></h1>
+</w:Sdt>
+
+<h2><span lang=EN-US><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="323DF98978DEAF4B901DADDD9F730C12" Text="t" Title="Job Title 1:"
+SdtTag="Job Title 1:" ID="-1093548063">Job Title</w:Sdt>&nbsp;|&nbsp;<w:Sdt
+ShowingPlcHdr="t" Temporary="t" DocPart="B27EF31D646DB44C8A1DC2186BE634B9"
+Text="t" Title="Company for Job 1:" SdtTag="Company for Job 1:" ID="2063141089">Company</w:Sdt>&nbsp;|&nbsp;<w:Sdt
+ShowingPlcHdr="t" Temporary="t" DocPart="225E4F04EEEE344ABF0DB75123491E14"
+Text="t" Title="Dates From - To for Job 1:" SdtTag="Dates From - To for Job 1:"
+ID="-577978458">Dates From - To</w:Sdt><o:p></o:p></span></h2>
+
+<w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="6484D2D9F5586D4E94F9BC3CAEDFDE20"
+Title="Key responsibilities for Job Title 1:"
+SdtTag="Key responsibilities for Job Title 1:" ID="-513455036">
+<p class=MsoListBullet style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>This is the place for a brief
+summary of your key responsibilities and most stellar accomplishments.<o:p></o:p><w:sdtPr></w:sdtPr></span></p>
+</w:Sdt>
+
+<h2><span lang=EN-US><w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="7E8EE0404F718D419FDC40A3620D186B" Text="t" Title="Job Title 2:"
+SdtTag="Job Title 2:" ID="-915553614">Job Title</w:Sdt>&nbsp;|&nbsp;<w:Sdt
+ShowingPlcHdr="t" Temporary="t" DocPart="42F0809A75B4AC46BFD6752399552474"
+Text="t" Title="Company for Job 2:" SdtTag="Company for Job 2:"
+ID="-1671783373">Company</w:Sdt>&nbsp;|&nbsp;<w:Sdt ShowingPlcHdr="t"
+Temporary="t" DocPart="FC8F5B4FBBC1D2418A42BC699EE23463" Text="t"
+Title="Dates From - To for Job 2:" SdtTag="Dates From - To for Job 2:"
+ID="-1256672044">Dates From - To</w:Sdt><o:p></o:p></span></h2>
+
+<w:Sdt ShowingPlcHdr="t" Temporary="t"
+DocPart="290D27AE8D9A964ABE103E88C285CB84"
+Title="Key responsibilities for Job Title 2:"
+SdtTag="Key responsibilities for Job Title 2:" ID="2140524828">
+<p class=MsoListBullet style='mso-list:l0 level1 lfo1'><![if !supportLists]><span
+lang=EN-US style='mso-ascii-font-family:Cambria;mso-fareast-font-family:Cambria;
+mso-hansi-font-family:Cambria;mso-bidi-font-family:Cambria'><span
+style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
+</span></span></span><![endif]><span lang=EN-US>This is the place for a brief
+summary of your key responsibilities and most stellar accomplishments.<o:p></o:p><w:sdtPr></w:sdtPr></span></p>
+</w:Sdt><!--EndFragment-->
+</body>
+
+</html>

+ 49 - 0
packages/ckeditor5-paste-from-office/tests/_data/list/resume-template/model.safari.word2016.html

@@ -0,0 +1,49 @@
+<paragraph>Your Name</paragraph>
+
+<paragraph>Address, City, ST ZIP Code | Telephone | Email</paragraph>
+
+<heading1>Objective</heading1>
+
+<paragraph>To get started right away, just click any placeholder text (such as this) and start typing to replace it with your own.</paragraph>
+
+<heading1>Education</heading1>
+
+<heading1>DEGREE | DATE EARNED | SCHOOL</heading1>
+
+<listItem listIndent="0" listType="bulleted">Major: Click here to enter text</listItem>
+<listItem listIndent="0" listType="bulleted">Minor: Click here to enter text</listItem>
+<listItem listIndent="0" listType="bulleted">Related coursework: Click here to enter text</listItem>
+
+<heading1>DEGREE | DATE EARNED | SCHOOL</heading1>
+
+<listItem listIndent="0" listType="bulleted">Major: Click here to enter text</listItem>
+<listItem listIndent="0" listType="bulleted">Minor: Click here to enter text</listItem>
+<listItem listIndent="0" listType="bulleted">Related coursework: Click here to enter text</listItem>
+
+<heading1>Skills & Abilities</heading1>
+
+<heading1>MANAGEMENT</heading1>
+
+<listItem listIndent="0" listType="bulleted">Think a document that looks this good has to be difficult to format? Think again! To easily apply any text formatting you see in this document with just a click, on the Home tab of the ribbon, check out Styles.</listItem>
+
+<heading1>SALES</heading1>
+
+<listItem listIndent="0" listType="bulleted">Some of the sample text in this document indicates the name of the style applied, so that you can easily apply the same formatting again. For example, this is the List Bullet style.</listItem>
+
+<heading1>COMMUNICATION</heading1>
+
+<listItem listIndent="0" listType="bulleted">You delivered that big presentation to rave reviews. Don’t be shy about it now! This is the place to show how well you work and play with others.</listItem>
+
+<heading1>LEADERSHIP</heading1>
+
+<listItem listIndent="0" listType="bulleted">Are you president of your fraternity, head of the condo board, or a team lead for your favorite charity? You’re a natural leader—tell it like it is!</listItem>
+
+<heading1>Experience</heading1>
+
+<heading1>JOB TITLE | COMPANY | DATES FROM - TO</heading1>
+
+<listItem listIndent="0" listType="bulleted">This is the place for a brief summary of your key responsibilities and most stellar accomplishments.</listItem>
+
+<heading1>JOB TITLE | COMPANY | DATES FROM - TO</heading1>
+
+<listItem listIndent="0" listType="bulleted">This is the place for a brief summary of your key responsibilities and most stellar accomplishments.</listItem>

+ 49 - 0
packages/ckeditor5-paste-from-office/tests/_data/list/resume-template/model.word2016.html

@@ -0,0 +1,49 @@
+<paragraph>Your Name</paragraph>
+
+<paragraph>Address, City, ST ZIP Code | Telephone | Email</paragraph>
+
+<heading1>Objective</heading1>
+
+<paragraph>To get started right away, just click any placeholder text (such as this) and start typing to replace it with your own.</paragraph>
+
+<heading1>Education</heading1>
+
+<heading1>Degree | Date Earned | School</heading1>
+
+<listItem listIndent="0" listType="bulleted">Major: Click here to enter text</listItem>
+<listItem listIndent="0" listType="bulleted">Minor: Click here to enter text</listItem>
+<listItem listIndent="0" listType="bulleted">Related coursework: Click here to enter text</listItem>
+
+<heading1>Degree | Date Earned | School</heading1>
+
+<listItem listIndent="0" listType="bulleted">Major: Click here to enter text</listItem>
+<listItem listIndent="0" listType="bulleted">Minor: Click here to enter text</listItem>
+<listItem listIndent="0" listType="bulleted">Related coursework: Click here to enter text</listItem>
+
+<heading1>Skills & Abilities</heading1>
+
+<heading1>Management</heading1>
+
+<listItem listIndent="0" listType="bulleted">Think a document that looks this good has to be difficult to format? Think again! To easily apply any text formatting you see in this document with just a click, on the Home tab of the ribbon, check out Styles.</listItem>
+
+<heading1>Sales</heading1>
+
+<listItem listIndent="0" listType="bulleted">Some of the sample text in this document indicates the name of the style applied, so that you can easily apply the same formatting again. For example, this is the List Bullet style.</listItem>
+
+<heading1>Communication</heading1>
+
+<listItem listIndent="0" listType="bulleted">You delivered that big presentation to rave reviews. Don’t be shy about it now! This is the place to show how well you work and play with others.</listItem>
+
+<heading1>Leadership</heading1>
+
+<listItem listIndent="0" listType="bulleted">Are you president of your fraternity, head of the condo board, or a team lead for your favorite charity? You’re a natural leader—tell it like it is!</listItem>
+
+<heading1>Experience</heading1>
+
+<heading1>Job Title | Company | Dates From - To</heading1>
+
+<listItem listIndent="0" listType="bulleted">This is the place for a brief summary of your key responsibilities and most stellar accomplishments.</listItem>
+
+<heading1>Job Title | Company | Dates From - To</heading1>
+
+<listItem listIndent="0" listType="bulleted">This is the place for a brief summary of your key responsibilities and most stellar accomplishments.</listItem>

+ 198 - 0
packages/ckeditor5-paste-from-office/tests/_data/list/resume-template/normalized.safari.word2016.html

@@ -0,0 +1,198 @@
+<w:sdt docpart="FDD2594584A640499F749D0B4EC7B4EF" id="1524743180" sdttag="Your Name:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Your Name:">
+	<div style="border-bottom-color:rgb(57, 165, 183);border-bottom-width:1.5pt;border-style:none none solid;padding:0cm 0cm 4pt">
+		<p class="MsoTitle" style="border:none;color:rgb(42, 123, 136);font-family:Cambria, serif;font-size:28pt;margin:0cm 0cm 6pt;padding:0cm">
+			<span lang="EN-US">Your Name<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</p>
+	</div>
+</w:sdt>
+
+<span style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);display:inline !important;float:none;font-family:-webkit-standard;font-size:medium;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px"></span>
+
+<p class="MsoNormal" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;color:rgb(64, 64, 64);font-family:Cambria, serif;font-size:11pt;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;margin:0cm 0cm 12pt;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px">
+	<span lang="EN-US">
+		<w:sdt docpart="6298CCD5F2DF824AB6406585D590FFC0" id="-593780209" prefixmappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' " sdttag="Address, City, ST ZIP Code:" showingplchdr="t" storeitemid="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA" temporary="t" text="t" title="Address, City, ST ZIP Code:"
+			xpath="/ns0:CoverPageProperties[1]/ns0:CompanyAddress[1]">Address, City, ST ZIP Code</w:sdt> | <w:sdt
+			docpart="3224016DB78512479D7591141E370030" id="-1416317146" prefixmappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' " sdttag="Telephone:" showingplchdr="t" storeitemid="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA" temporary="t" text="t" title="Telephone:"
+			xpath="/ns0:CoverPageProperties[1]/ns0:CompanyPhone[1]">Telephone</w:sdt> | <w:sdt
+			docpart="446FD637F2F1F74CBBD885AADE307980" id="-391963670" prefixmappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' " sdttag="Email:" showingplchdr="t" storeitemid="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA" temporary="t" text="t" title="Email:"
+			xpath="/ns0:CoverPageProperties[1]/ns0:CompanyEmail[1]">Email</w:sdt><o:p></o:p>
+	</span>
+</p>
+
+<h1 style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;break-after:avoid-page;color:rgb(42, 123, 136);font-family:Cambria, serif;font-size:14pt;font-style:normal;font-variant-caps:normal;letter-spacing:normal;margin:16pt 0cm 5pt;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px">
+	<span lang="EN-US">
+		<w:sdt docpart="99800BCFBC62B846A753452E6CA5E7EB" id="-731932020" sdttag="Objective:" showingplchdr="t" temporary="t" title="Objective:">Objective</w:sdt><o:p></o:p>
+	</span>
+</h1>
+
+<p class="MsoNormal" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;color:rgb(64, 64, 64);font-family:Cambria, serif;font-size:11pt;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;margin:0cm 0cm 12pt;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px">
+	<span lang="EN-US">
+		<w:sdt docpart="F7B96515FDC1C3429ADC0CD5BCEDBD96" id="396481143" sdttag="Add Objectives:" showingplchdr="t" temporary="t" title="Add Objectives:">To get started right away, just click any placeholder text (such as this) and start typing to replace it with your own.</w:sdt><o:p></o:p>
+	</span>
+</p>
+
+<w:sdt docpart="8497E7157970F046BED454163FB81E32" id="807127995" sdttag="Education:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Education:">
+	<h1 style="break-after:avoid-page;color:rgb(42, 123, 136);font-family:Cambria, serif;font-size:14pt;margin:16pt 0cm 5pt">
+		<span lang="EN-US">Education<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h1>
+</w:sdt>
+
+<span style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);display:inline !important;float:none;font-family:-webkit-standard;font-size:medium;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px"></span>
+
+<h2 style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;break-after:avoid-page;color:rgb(38, 38, 38);font-family:Cambria, serif;font-size:12pt;font-style:normal;font-variant-caps:normal;letter-spacing:normal;margin:3pt 0cm 2pt;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:uppercase;white-space:normal;widows:auto;word-spacing:0px">
+	<span lang="EN-US">
+		<w:sdt docpart="E0249B3582F8674F80EF5343531A0691" id="-1403435167" sdttag="Degree:" showingplchdr="t" temporary="t" text="t" title="Degree:">DEGREE</w:sdt> | <w:sdt docpart="432A9AE3C2F2A44F84D4265AEAB8D9C1" id="-315799195" sdttag="Date Earned:" showingplchdr="t" temporary="t" text="t" title="Date Earned:">DATE EARNED</w:sdt> | <w:sdt docpart="D3E5C6CFD5C23747BAAF275FC8EC74CB" id="530385979" sdttag="School:" showingplchdr="t" temporary="t" text="t" title="School:">SCHOOL</w:sdt><o:p></o:p>
+	</span>
+</h2>
+
+<ul>
+	<li class="MsoListBulletCxSpFirst" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Major: <w:sdt docpart="1EDC150D3B06E54E95D71F92040E448A" id="1821224400" sdttag="Major:" showingplchdr="t" temporary="t" text="t" title="Major:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+
+	<li class="MsoListBulletCxSpMiddle" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Minor: <w:sdt docpart="1EDC150D3B06E54E95D71F92040E448A" id="1025376684" sdttag="Minor:" showingplchdr="t" temporary="t" text="t" title="Minor:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+
+	<li class="MsoListBulletCxSpLast" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Related coursework: <w:sdt docpart="1EDC150D3B06E54E95D71F92040E448A" id="1648172142" sdttag="Related coursework: " showingplchdr="t" temporary="t" text="t" title="Related coursework: ">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+</ul>
+
+<h2 style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;break-after:avoid-page;color:rgb(38, 38, 38);font-family:Cambria, serif;font-size:12pt;font-style:normal;font-variant-caps:normal;letter-spacing:normal;margin:3pt 0cm 2pt;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:uppercase;white-space:normal;widows:auto;word-spacing:0px">
+	<span lang="EN-US">
+		<w:sdt docpart="41F64626815C6F43B93E6B7D8AB55245" id="-1691290666" sdttag="Degree:" showingplchdr="t" temporary="t" text="t" title="Degree:">DEGREE</w:sdt> | <w:sdt docpart="C338843C8A78084DAAC7D3086E17C62F" id="-1221673033" sdttag="Date Earned:" showingplchdr="t" temporary="t" text="t" title="Date Earned:">DATE EARNED</w:sdt> | <w:sdt docpart="F683F64B2E49FA4E9A45BB94AD26C415" id="714016034" sdttag="School:" showingplchdr="t" temporary="t" text="t" title="School:">SCHOOL</w:sdt><o:p></o:p>
+	</span>
+</h2>
+
+<ul>
+	<li class="MsoListBulletCxSpFirst" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Major: <w:sdt docpart="9EAA648D6489514EB79336B1A935D9AC" id="1046181329" sdttag="Major:" showingplchdr="t" temporary="t" text="t" title="Major:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+
+	<li class="MsoListBulletCxSpMiddle" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Minor: <w:sdt docpart="9EAA648D6489514EB79336B1A935D9AC" id="542409479" sdttag="Minor:" showingplchdr="t" temporary="t" text="t" title="Minor:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+
+	<li class="MsoListBulletCxSpLast" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Related coursework: <w:sdt docpart="9EAA648D6489514EB79336B1A935D9AC" id="100010185" sdttag="Related Coursework:" showingplchdr="t" temporary="t" text="t" title="Related Coursework:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+</ul>
+
+<w:sdt docpart="0958510BE99B344FAF225E579290B12D" id="458624136" sdttag="Skills & Abilities:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Skills & Abilities:">
+	<h1 style="break-after:avoid-page;color:rgb(42, 123, 136);font-family:Cambria, serif;font-size:14pt;margin:16pt 0cm 5pt">
+		<span lang="EN-US">Skills & Abilities<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h1>
+</w:sdt>
+
+<w:sdt docpart="FA81ABB90BC94047B817D42551AB4536" id="598525640" sdttag="Management:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Management:">
+	<h2 style="break-after:avoid-page;color:rgb(38, 38, 38);font-family:Cambria, serif;font-size:12pt;margin:3pt 0cm 2pt;text-transform:uppercase">
+		<span lang="EN-US">MANAGEMENT<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h2>
+</w:sdt>
+
+<w:sdt docpart="07C08B1CF5695F41BAB584E7E2D2D094" id="-1177730712" sdttag="Management Skills:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Management Skills:">
+	<ul>
+		<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+			<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+			<span lang="EN-US">Think a document that looks this good has to be difficult to format? Think again! To easily apply any text formatting you see in this document with just a click, on the Home tab of the ribbon, check out Styles.<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</li>
+	</ul>
+</w:sdt>
+
+<w:sdt docpart="F60991BC2B9B9B4EBBDEAA9A41027754" id="-2126221975" sdttag="Sales:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Sales:">
+	<h2 style="break-after:avoid-page;color:rgb(38, 38, 38);font-family:Cambria, serif;font-size:12pt;margin:3pt 0cm 2pt;text-transform:uppercase">
+		<span lang="EN-US">SALES<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h2>
+</w:sdt>
+
+<w:sdt docpart="952E9B3BDFFE494DA37978C6F4D15566" id="1544489962" sdttag="Sales Skills:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Sales Skills:">
+	<ul>
+		<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+			<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+			<span lang="EN-US">Some of the sample text in this document indicates the name of the style applied, so that you can easily apply the same formatting again. For example, this is the List Bullet style.<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</li>
+	</ul>
+</w:sdt>
+
+<w:sdt docpart="20263866994546478BF384E1F4AEEAA8" id="-1153840069" sdttag="Communication:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Communication:">
+	<h2 style="break-after:avoid-page;color:rgb(38, 38, 38);font-family:Cambria, serif;font-size:12pt;margin:3pt 0cm 2pt;text-transform:uppercase">
+		<span lang="EN-US">COMMUNICATION<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h2>
+</w:sdt>
+
+<span style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);display:inline !important;float:none;font-family:-webkit-standard;font-size:medium;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px"></span>
+
+<ul>
+	<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">
+			<w:sdt docpart="F48896FE79A71D47960BE4B7CDF7D302" id="-1819335404" sdttag="Communication Skills:" showingplchdr="t" temporary="t" title="Communication Skills:">You delivered that big presentation to rave reviews. Don’t be shy about it now! This is the place to show how well you work and play with others.</w:sdt><o:p></o:p>
+		</span>
+	</li>
+</ul>
+
+<w:sdt docpart="A797BA020CD8BB479B2DB2F35147308C" id="1837562325" sdttag="Leadership:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Leadership:">
+	<h2 style="break-after:avoid-page;color:rgb(38, 38, 38);font-family:Cambria, serif;font-size:12pt;margin:3pt 0cm 2pt;text-transform:uppercase">
+		<span lang="EN-US">LEADERSHIP<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h2>
+</w:sdt>
+
+<span style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);display:inline !important;float:none;font-family:-webkit-standard;font-size:medium;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px"></span>
+
+<ul>
+	<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">
+			<w:sdt docpart="DBA77D882343FA408282D0D48DA9C324" id="-1072199855" sdttag="Leadership Skills:" showingplchdr="t" temporary="t" title="Leadership Skills:">Are you president of your fraternity, head of the condo board, or a team lead for your favorite charity? You’re a natural leader—tell it like it is!</w:sdt><o:p></o:p>
+		</span>
+	</li>
+</ul>
+
+<w:sdt docpart="7231CE648F241A47A1394AED5AEA3834" id="171684534" sdttag="Experience:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Experience:">
+	<h1 style="break-after:avoid-page;color:rgb(42, 123, 136);font-family:Cambria, serif;font-size:14pt;margin:16pt 0cm 5pt">
+		<span lang="EN-US">Experience<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h1>
+</w:sdt>
+
+<span style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);display:inline !important;float:none;font-family:-webkit-standard;font-size:medium;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px"></span>
+
+<h2 style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;break-after:avoid-page;color:rgb(38, 38, 38);font-family:Cambria, serif;font-size:12pt;font-style:normal;font-variant-caps:normal;letter-spacing:normal;margin:3pt 0cm 2pt;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:uppercase;white-space:normal;widows:auto;word-spacing:0px">
+	<span lang="EN-US">
+		<w:sdt docpart="B9E20AE245CDC343ADCDD94C256C8E1D" id="-1093548063" sdttag="Job Title 1:" showingplchdr="t" temporary="t" text="t" title="Job Title 1:">JOB TITLE</w:sdt> | <w:sdt docpart="410CDA8D5D72114E9F51B4A7BFB53C43" id="2063141089" sdttag="Company for Job 1:" showingplchdr="t" temporary="t" text="t" title="Company for Job 1:">COMPANY</w:sdt> | <w:sdt docpart="7A7B8E05F8D6474EA47A4772E39A635B" id="-577978458" sdttag="Dates From - To for Job 1:" showingplchdr="t" temporary="t" text="t" title="Dates From - To for Job 1:">DATES FROM - TO</w:sdt><o:p></o:p>
+	</span>
+</h2>
+
+<w:sdt docpart="723EDD3B9355AB408B93DC96E350C9C8" id="-513455036" sdttag="Key responsibilities for Job Title 1:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Key responsibilities for Job Title 1:">
+	<ul>
+		<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+			<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+			<span lang="EN-US">This is the place for a brief summary of your key responsibilities and most stellar accomplishments.<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</li>
+	</ul>
+</w:sdt>
+
+<span style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);display:inline !important;float:none;font-family:-webkit-standard;font-size:medium;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px"></span>
+
+<h2 style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;break-after:avoid-page;color:rgb(38, 38, 38);font-family:Cambria, serif;font-size:12pt;font-style:normal;font-variant-caps:normal;letter-spacing:normal;margin:3pt 0cm 2pt;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:uppercase;white-space:normal;widows:auto;word-spacing:0px">
+	<span lang="EN-US">
+		<w:sdt docpart="66CE783CF1CA534D9E3019F13058D998" id="-915553614" sdttag="Job Title 2:" showingplchdr="t" temporary="t" text="t" title="Job Title 2:">JOB TITLE</w:sdt> | <w:sdt docpart="04B5DB3053CBE943AA7F8C1C7E39F32B" id="-1671783373" sdttag="Company for Job 2:" showingplchdr="t" temporary="t" text="t" title="Company for Job 2:">COMPANY</w:sdt> | <w:sdt docpart="E788172F5AA91E4EA7E28CDBFE11804D" id="-1256672044" sdttag="Dates From - To for Job 2:" showingplchdr="t" temporary="t" text="t" title="Dates From - To for Job 2:">DATES FROM - TO</w:sdt><o:p></o:p>
+	</span>
+</h2>
+
+<w:sdt docpart="35452DC21B458F4990E9AD6B0D21FF93" id="2140524828" sdttag="Key responsibilities for Job Title 2:" showingplchdr="t" style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);font-family:-webkit-standard;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px" temporary="t" title="Key responsibilities for Job Title 2:">
+	<ul>
+		<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+			<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+			<span lang="EN-US">This is the place for a brief summary of your key responsibilities and most stellar accomplishments.<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</li>
+	</ul>
+</w:sdt>
+
+<span style="-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;caret-color:rgb(0, 0, 0);color:rgb(0, 0, 0);display:inline !important;float:none;font-family:-webkit-standard;font-size:medium;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;orphans:auto;text-align:start;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px"></span>

+ 181 - 0
packages/ckeditor5-paste-from-office/tests/_data/list/resume-template/normalized.word2016.html

@@ -0,0 +1,181 @@
+<w:sdt docpart="7991B463AF754849B9D18A244BABABCD" id="1524743180" sdttag="Your Name:" showingplchdr="t" temporary="t" title="Your Name:">
+	<div style="border:none;border-bottom:solid #39A5B7 1.5pt;mso-border-bottom-themecolor:accent1;mso-element:para-border-div;padding:0cm 0cm 4.0pt 0cm">
+		<p class="MsoTitle">
+			<span lang="EN-US">Your Name<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</p>
+	</div>
+</w:sdt>
+
+<p class="MsoNormal">
+	<span lang="EN-US">
+		<w:sdt
+			docpart="D2108BD728B96E4DAF088D004A847E52" id="-593780209" prefixmappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' " sdttag="Address, City, ST ZIP Code:" showingplchdr="t" storeitemid="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA" temporary="t" text="t" title="Address, City, ST ZIP Code:"
+			xpath="/ns0:CoverPageProperties[1]/ns0:CompanyAddress[1]">Address, City, ST ZIP Code</w:sdt> | <w:sdt
+			docpart="3E8EF39B4402964CA8AC02F44102557C" id="-1416317146" prefixmappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' " sdttag="Telephone:" showingplchdr="t" storeitemid="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA" temporary="t" text="t" title="Telephone:"
+			xpath="/ns0:CoverPageProperties[1]/ns0:CompanyPhone[1]">Telephone</w:sdt> | <w:sdt
+			docpart="174B413EE2146A4E98A5CD53FCDF3D15" id="-391963670" prefixmappings="xmlns:ns0='http://schemas.microsoft.com/office/2006/coverPageProps' " sdttag="Email:" showingplchdr="t" storeitemid="X_55AF091B-3C7A-41E3-B477-F2FDAA23CFDA" temporary="t" text="t" title="Email:"
+			xpath="/ns0:CoverPageProperties[1]/ns0:CompanyEmail[1]">Email</w:sdt><o:p></o:p>
+	</span>
+</p>
+
+<h1>
+	<span lang="EN-US">
+		<w:sdt docpart="2CF2B3273758D4479328DCCEC10AB1A6" id="-731932020" sdttag="Objective:" showingplchdr="t" temporary="t" title="Objective:">Objective</w:sdt><o:p></o:p>
+	</span>
+</h1>
+
+<p class="MsoNormal">
+	<span lang="EN-US">
+		<w:sdt docpart="EA42460587E30B46962B932E29990089" id="396481143" sdttag="Add Objectives:" showingplchdr="t" temporary="t" title="Add Objectives:">To get started right away, just click any placeholder text (such as this) and start typing to replace it with your own.</w:sdt><o:p></o:p>
+	</span>
+</p>
+
+<w:sdt docpart="2FDF2E4A7829EC40965102E0D0E1F2A8" id="807127995" sdttag="Education:" showingplchdr="t" temporary="t" title="Education:">
+	<h1>
+		<span lang="EN-US">Education<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h1>
+</w:sdt>
+
+<h2>
+	<span lang="EN-US">
+		<w:sdt docpart="6CDEE26F984DE54FA477C4F459C3B7DD" id="-1403435167" sdttag="Degree:" showingplchdr="t" temporary="t" text="t" title="Degree:">Degree</w:sdt> | <w:sdt docpart="16689B23DF60624C823D3351BD5FE2E3" id="-315799195" sdttag="Date Earned:" showingplchdr="t" temporary="t" text="t" title="Date Earned:">Date Earned</w:sdt> | <w:sdt docpart="FAA6A973BC257B44B57E3D59624F4405" id="530385979" sdttag="School:" showingplchdr="t" temporary="t" text="t" title="School:">School</w:sdt><o:p></o:p>
+	</span>
+</h2>
+
+<ul>
+	<li class="MsoListBulletCxSpFirst" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Major: <w:sdt docpart="11254AB6F6AF3048B0FB77B19E14A276" id="1821224400" sdttag="Major:" showingplchdr="t" temporary="t" text="t" title="Major:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+
+	<li class="MsoListBulletCxSpMiddle" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Minor: <w:sdt docpart="11254AB6F6AF3048B0FB77B19E14A276" id="1025376684" sdttag="Minor:" showingplchdr="t" temporary="t" text="t" title="Minor:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+
+	<li class="MsoListBulletCxSpLast" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Related coursework: <w:sdt docpart="11254AB6F6AF3048B0FB77B19E14A276" id="1648172142" sdttag="Related coursework: " showingplchdr="t" temporary="t" text="t" title="Related coursework: ">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+</ul>
+
+<h2>
+	<span lang="EN-US">
+		<w:sdt docpart="AF57846D78398A4FABCEFDE49BE44C09" id="-1691290666" sdttag="Degree:" showingplchdr="t" temporary="t" text="t" title="Degree:">Degree</w:sdt> | <w:sdt docpart="EA073356D4D39C478AB488D46C4727B6" id="-1221673033" sdttag="Date Earned:" showingplchdr="t" temporary="t" text="t" title="Date Earned:">Date Earned</w:sdt> | <w:sdt docpart="2B17CFD5A31CCE4F98C3C9634765799F" id="714016034" sdttag="School:" showingplchdr="t" temporary="t" text="t" title="School:">School</w:sdt><o:p></o:p>
+	</span>
+</h2>
+
+<ul>
+	<li class="MsoListBulletCxSpFirst" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Major: <w:sdt docpart="2D9029A2B401CC42944B7EB502F83824" id="1046181329" sdttag="Major:" showingplchdr="t" temporary="t" text="t" title="Major:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+
+	<li class="MsoListBulletCxSpMiddle" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Minor: <w:sdt docpart="2D9029A2B401CC42944B7EB502F83824" id="542409479" sdttag="Minor:" showingplchdr="t" temporary="t" text="t" title="Minor:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+
+	<li class="MsoListBulletCxSpLast" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US">Related coursework: <w:sdt docpart="2D9029A2B401CC42944B7EB502F83824" id="100010185" sdttag="Related Coursework:" showingplchdr="t" temporary="t" text="t" title="Related Coursework:">Click here to enter text</w:sdt><o:p></o:p></span>
+	</li>
+</ul>
+
+<w:sdt docpart="DF58121D682DAE449716952E997A3F3E" id="458624136" sdttag="Skills & Abilities:" showingplchdr="t" temporary="t" title="Skills & Abilities:">
+	<h1>
+		<span lang="EN-US">Skills & Abilities<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h1>
+</w:sdt>
+
+<w:sdt docpart="36188BA07632D147B020423032557875" id="598525640" sdttag="Management:" showingplchdr="t" temporary="t" title="Management:">
+	<h2>
+		<span lang="EN-US">Management<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h2>
+</w:sdt>
+
+<w:sdt docpart="C51B29163715CD4F99529A18C891B99B" id="-1177730712" sdttag="Management Skills:" showingplchdr="t" temporary="t" title="Management Skills:">
+	<ul>
+		<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+			<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+			<span lang="EN-US">Think a document that looks this good has to be difficult to format? Think again! To easily apply any text formatting you see in this document with just a click, on the Home tab of the ribbon, check out Styles.<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</li>
+	</ul>
+</w:sdt>
+
+<w:sdt docpart="1B60D9D4AA008342B6AB8B91B15BF0F2" id="-2126221975" sdttag="Sales:" showingplchdr="t" temporary="t" title="Sales:">
+	<h2>
+		<span lang="EN-US">Sales<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h2>
+</w:sdt>
+
+<w:sdt docpart="92F72DE9A594584B9C488FED96B568B4" id="1544489962" sdttag="Sales Skills:" showingplchdr="t" temporary="t" title="Sales Skills:">
+	<ul>
+		<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+			<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+			<span lang="EN-US">Some of the sample text in this document indicates the name of the style applied, so that you can easily apply the same formatting again. For example, this is the List Bullet style.<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</li>
+	</ul>
+</w:sdt>
+
+<w:sdt docpart="2825490EC1FBAC408E7B91902BACFAC0" id="-1153840069" sdttag="Communication:" showingplchdr="t" temporary="t" title="Communication:">
+	<h2>
+		<span lang="EN-US">Communication<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h2>
+</w:sdt>
+
+<ul>
+	<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US"><w:sdt docpart="1018054470CB4B4B93F5C30010DA2E3A" id="-1819335404" sdttag="Communication Skills:" showingplchdr="t" temporary="t" title="Communication Skills:">You delivered that big presentation to rave reviews. Don’t be shy about it now! This is the place to show how well you work and play with others.</w:sdt><o:p></o:p></span>
+	</li>
+</ul>
+
+<w:sdt docpart="1B0B4B511610FC429B17F08E12E06394" id="1837562325" sdttag="Leadership:" showingplchdr="t" temporary="t" title="Leadership:">
+	<h2>
+		<span lang="EN-US">Leadership<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h2>
+</w:sdt>
+
+<ul>
+	<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+		<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+		<span lang="EN-US"><w:sdt docpart="D969CD1F1B5AC04493396C70BC53F75B" id="-1072199855" sdttag="Leadership Skills:" showingplchdr="t" temporary="t" title="Leadership Skills:">Are you president of your fraternity, head of the condo board, or a team lead for your favorite charity? You’re a natural leader—tell it like it is!</w:sdt><o:p></o:p></span>
+	</li>
+</ul>
+
+<w:sdt docpart="A19F02371827BB4C8B75126C029F24F7" id="171684534" sdttag="Experience:" showingplchdr="t" temporary="t" title="Experience:">
+	<h1>
+		<span lang="EN-US">Experience<o:p></o:p><w:sdtpr></w:sdtpr></span>
+	</h1>
+</w:sdt>
+
+<h2>
+	<span lang="EN-US">
+		<w:sdt docpart="323DF98978DEAF4B901DADDD9F730C12" id="-1093548063" sdttag="Job Title 1:" showingplchdr="t" temporary="t" text="t" title="Job Title 1:">Job Title</w:sdt> | <w:sdt docpart="B27EF31D646DB44C8A1DC2186BE634B9" id="2063141089" sdttag="Company for Job 1:" showingplchdr="t" temporary="t" text="t" title="Company for Job 1:">Company</w:sdt> | <w:sdt docpart="225E4F04EEEE344ABF0DB75123491E14" id="-577978458" sdttag="Dates From - To for Job 1:" showingplchdr="t" temporary="t" text="t" title="Dates From - To for Job 1:">Dates From - To</w:sdt><o:p></o:p>
+	</span>
+</h2>
+
+<w:sdt docpart="6484D2D9F5586D4E94F9BC3CAEDFDE20" id="-513455036" sdttag="Key responsibilities for Job Title 1:" showingplchdr="t" temporary="t" title="Key responsibilities for Job Title 1:">
+	<ul>
+		<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+			<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+			<span lang="EN-US">This is the place for a brief summary of your key responsibilities and most stellar accomplishments.<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</li>
+	</ul>
+</w:sdt>
+
+<h2>
+	<span lang="EN-US">
+		<w:sdt docpart="7E8EE0404F718D419FDC40A3620D186B" id="-915553614" sdttag="Job Title 2:" showingplchdr="t" temporary="t" text="t" title="Job Title 2:">Job Title</w:sdt> | <w:sdt docpart="42F0809A75B4AC46BFD6752399552474" id="-1671783373" sdttag="Company for Job 2:" showingplchdr="t" temporary="t" text="t" title="Company for Job 2:">Company</w:sdt> | <w:sdt docpart="FC8F5B4FBBC1D2418A42BC699EE23463" id="-1256672044" sdttag="Dates From - To for Job 2:" showingplchdr="t" temporary="t" text="t" title="Dates From - To for Job 2:">Dates From - To</w:sdt><o:p></o:p>
+	</span>
+</h2>
+
+<w:sdt docpart="290D27AE8D9A964ABE103E88C285CB84" id="2140524828" sdttag="Key responsibilities for Job Title 2:" showingplchdr="t" temporary="t" title="Key responsibilities for Job Title 2:">
+	<ul>
+		<li class="MsoListBullet" style="mso-list:l0 level1 lfo1">
+			<span lang="EN-US" style="mso-ascii-font-family:Cambria;mso-bidi-font-family:Cambria;mso-fareast-font-family:Cambria;mso-hansi-font-family:Cambria"></span>
+			<span lang="EN-US">This is the place for a brief summary of your key responsibilities and most stellar accomplishments.<o:p></o:p><w:sdtpr></w:sdtpr></span>
+		</li>
+	</ul>
+</w:sdt>

BIN
packages/ckeditor5-paste-from-office/tests/_data/list/resume-template/resume-template.docx


Неке датотеке нису приказане због велике количине промена