Remove trunk directory

This commit is contained in:
Paulo Gustavo Veiga
2009-11-06 23:30:29 -02:00
parent 2494133fed
commit 75470a91fd
715 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,147 @@
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<xs:element name="ellipse">
<xs:complexType>
<xs:attribute name="visibility" use="required">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="hidden"/>
<xs:enumeration value="visible"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ry" type="xs:float" use="required"/>
<xs:attribute name="width" type="xs:float" use="required"/>
<xs:attribute name="rx" type="xs:float" use="required"/>
<xs:attribute name="cy" use="required" type="xs:float"/>
<xs:attribute name="cx" use="required" type="xs:float"/>
<xs:attribute name="stroke-width" type="xs:NMTOKEN" use="required"/>
<xs:attribute name="height" type="xs:float" use="required"/>
<xs:attribute name="fill" type="xs:string" use="required" fixed="#E0E5EF"/>
<xs:attribute name="stroke" type="xs:string" use="required" fixed="#023BB9"/>
</xs:complexType>
</xs:element>
<xs:element name="g">
<xs:complexType>
<xs:choice>
<xs:element ref="svg:ellipse"/>
<xs:element ref="svg:line"/>
<xs:element ref="svg:rect"/>
<xs:element ref="svg:text"/>
</xs:choice>
<xs:attribute name="height" type="xs:NMTOKEN" use="required" fixed="100"/>
<xs:attribute name="transform" type="xs:string" use="required"/>
<xs:attribute name="width" type="xs:NMTOKEN" use="required" fixed="100"/>
<xs:attribute name="preserveAspectRatio" type="xs:NMTOKEN" use="required" fixed="none"/>
<xs:attribute name="focusable" type="xs:NMTOKEN" use="required" fixed="true"/>
</xs:complexType>
</xs:element>
<xs:element name="line">
<xs:complexType>
<xs:attribute name="style" type="xs:string" use="optional"/>
<xs:attribute name="visibility" use="optional">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="hidden"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="stroke-opacity" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="fill-opacity" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="x1" use="required" type="xs:float"/>
<xs:attribute name="y1" use="required" type="xs:float"/>
<xs:attribute name="x2" use="required" type="xs:float"/>
<xs:attribute name="y2" use="required" type="xs:float"/>
<xs:attribute name="stroke-width" type="xs:NMTOKEN" use="required" fixed="1px"/>
<xs:attribute name="stroke" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="polyline">
<xs:complexType>
<xs:attribute name="fill-opacity" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="visibility" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="stroke-width" type="xs:NMTOKEN" use="required" fixed="1px"/>
<xs:attribute name="points" type="xs:string" use="optional"/>
<xs:attribute name="stroke-opacity" use="required">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="0.4"/>
<xs:enumeration value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="stroke" type="xs:string" use="required"/>
<xs:attribute name="fill" type="xs:NMTOKEN" use="required" fixed="none"/>
</xs:complexType>
</xs:element>
<xs:element name="rect">
<xs:complexType>
<xs:attribute name="visibility" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="style" type="xs:string" use="optional"/>
<xs:attribute name="ry" use="optional" type="xs:float"/>
<xs:attribute name="width" type="xs:NMTOKEN" use="required"/>
<xs:attribute name="rx" use="optional" type="xs:float"/>
<xs:attribute name="stroke-opacity" use="optional" type="xs:float"/>
<xs:attribute name="fill-opacity" use="optional" type="xs:float"/>
<xs:attribute name="y" use="required" type="xs:float"/>
<xs:attribute name="x" use="required" type="xs:float"/>
<xs:attribute name="stroke-width" use="required" type="xs:string"/>
<xs:attribute name="height" use="required" type="xs:float"/>
<xs:attribute name="fill" type="xs:string" use="required"/>
<xs:attribute name="stroke" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="svg">
<xs:complexType>
<xs:sequence>
<xs:element ref="svg:polyline" maxOccurs="unbounded"/>
<xs:element ref="svg:line" maxOccurs="unbounded"/>
<xs:element ref="svg:g" maxOccurs="unbounded"/>
<xs:element ref="svg:rect" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="height" type="xs:NMTOKEN" use="required"/>
<xs:attribute name="width" type="xs:NMTOKEN" use="required"/>
<xs:attribute name="viewBox" type="xs:string" use="required"/>
<xs:attribute name="preserveAspectRatio" type="xs:NMTOKEN" use="required"/>
<xs:attribute name="focusable" type="xs:NMTOKEN" use="required"/>
<xs:attribute name="id" type="xs:NMTOKEN" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="text">
<xs:complexType mixed="true">
<xs:attribute name="font-style" use="required">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="italic"/>
<xs:enumeration value="normal"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="style" type="xs:string" use="required"/>
<xs:attribute name="font-size" use="required" type="xs:float"/>
<xs:attribute name="font-family" type="xs:NMTOKEN" use="required" fixed="verdana"/>
<xs:attribute name="font-weight" use="required">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="bold"/>
<xs:enumeration value="normal"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="y" use="required" type="xs:float"/>
<xs:attribute name="focusable" type="xs:NMTOKEN" use="required" fixed="true"/>
<xs:attribute name="x" use="required" type="xs:float"/>
<xs:attribute name="fill" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://mindmap.com/xml/vmlmap"
xmlns:v="http://mindmap.com/xml/vmlmap">
<xs:complexType name="element">
<xs:attribute name="style" type="xs:string" use="optional"/>
<xs:attribute name="strokecolor" type="xs:string" use="required"/>
<xs:attribute name="fillcolor" type="xs:string" use="optional"/>
<xs:attribute name="strokeweight" type="xs:string" use="optional"/>
<xs:attribute name="opacity" use="optional" type="xs:string"/>
</xs:complexType>
<xs:element name="fill">
<xs:complexType>
<xs:attribute name="opacity" use="optional" type="xs:string"/>
</xs:complexType>
</xs:element>
<xs:element name="group">
<xs:complexType>
<xs:complexContent>
<xs:extension base="v:element">
<xs:choice>
<xs:element ref="v:group" maxOccurs="unbounded"/>
<xs:element ref="v:line" maxOccurs="unbounded"/>
<xs:element ref="v:oval" maxOccurs="unbounded"/>
<xs:element ref="v:polyline" maxOccurs="unbounded"/>
<xs:element ref="v:rect" maxOccurs="unbounded"/>
<xs:element ref="v:roundrect" maxOccurs="unbounded"/>
<xs:element ref="v:shape" maxOccurs="unbounded"/>
</xs:choice>
<xs:attribute name="coordorigin" type="xs:string" use="optional"/>
<xs:attribute name="coordsize" type="xs:string" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="line">
<xs:complexType>
<xs:complexContent>
<xs:extension base="v:element">
<xs:sequence>
<xs:element ref="v:stroke"/>
<xs:element ref="v:fill" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="stroked" type="xs:NMTOKEN" use="required" fixed="t"/>
<xs:attribute name="to" type="xs:string" use="required"/>
<xs:attribute name="from" type="xs:string" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="oval">
<xs:complexType>
<xs:complexContent>
<xs:extension base="v:element">
<xs:sequence>
<xs:element ref="v:stroke"/>
<xs:element ref="v:fill"/>
</xs:sequence>
<xs:attribute name="coordsize" type="xs:string" use="required" fixed="21600,21600"/>
<xs:attribute name="stroked" type="xs:NMTOKEN" use="required" fixed="t"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="polyline">
<xs:complexType>
<xs:complexContent>
<xs:extension base="v:element">
<xs:sequence>
<xs:element ref="v:stroke"/>
<xs:element ref="v:fill" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="points" type="xs:string" use="optional"/>
<xs:attribute name="xPoints" type="xs:string" use="optional"/>
<xs:attribute name="filled" type="xs:NMTOKEN" use="required" fixed="f"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="rect">
<xs:complexType>
<xs:complexContent>
<xs:extension base="v:element">
<xs:sequence>
<xs:element ref="v:stroke"/>
<xs:element ref="v:fill"/>
</xs:sequence>
<xs:attribute name="coordsize" type="xs:string" use="required"/>
<xs:attribute name="stroked" type="xs:NMTOKEN" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="roundrect">
<xs:complexType>
<xs:complexContent>
<xs:extension base="v:element">
<xs:sequence>
<xs:element ref="v:stroke"/>
<xs:element ref="v:fill"/>
</xs:sequence>
<xs:attribute name="arcsize" type="xs:NMTOKEN" use="required" fixed="9830f"/>
<xs:attribute name="coordsize" type="xs:string" use="required" fixed="21600,21600"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="shape">
<xs:complexType>
<xs:complexContent>
<xs:extension base="v:element">
<xs:sequence>
<xs:element ref="v:textbox"/>
</xs:sequence>
<xs:attribute name="coordsize" type="xs:string" use="required" fixed="100,100"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="stroke">
<xs:complexType>
<xs:attribute name="dashstyle" use="optional">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="solid"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="textbox">
<xs:complexType>
<xs:complexContent>
<xs:extension base="v:element">
<xs:sequence>
<xs:element name="SPAN">
<xs:complexType>
<xs:sequence>
<xs:element name="SPAN" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="inset" type="xs:string" use="required" fixed="0,0,0,0"/>
<xs:attribute name="xFontScale" type="xs:float" use="required"/>
<xs:attribute name="xTextSize" type="xs:string" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,228 @@
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="none" viewBox="-433.65 -228.9 867.3 457.8"
height="654" width="1239" id="workspace" focusable="true">
<polyline points="173.5,100 183.5,100 183.5,129 188.5,134 240,134" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<polyline points="173.5,100 183.5,100 183.5,105 188.5,110 240,110" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<polyline points="173.5,100 183.5,100 183.5,91 188.5,86 240,86" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<polyline points="173.5,100 183.5,100 183.5,67 188.5,62 240,62" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<line y1="0" x1="0" y2="100" x2="-175" stroke="#495879" stroke-width="1px"></line>
<polyline points="-229.5,-150 -239.5,-150 -239.5,-121 -244.5,-116 -296,-116" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<polyline points="-229.5,-150 -239.5,-150 -239.5,-145 -244.5,-140 -296,-140" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<polyline points="-229.5,-150 -239.5,-150 -239.5,-159 -244.5,-164 -296,-164" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<polyline points="-229.5,-150 -239.5,-150 -239.5,-183 -244.5,-188 -296,-188" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<line y1="0" x1="0" y2="-150" x2="-163.5" stroke="#495879" stroke-width="1px"></line>
<polyline points="206.5,0 216.5,0 216.5,29 221.5,34 261.5,34" stroke-opacity="1" stroke="#495879" stroke-width="1px"
fill="none"></polyline>
<polyline points="206.5,0 216.5,0 216.5,5 221.5,10 263,10" stroke-opacity="1" stroke="#495879" stroke-width="1px"
fill="none"></polyline>
<polyline points="206.5,0 216.5,0 216.5,-9 221.5,-14 261.5,-14" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<polyline points="206.5,0 216.5,0 216.5,-33 221.5,-38 263,-38" stroke-opacity="1" stroke="#495879"
stroke-width="1px" fill="none"></polyline>
<line y1="0" x1="0" y2="0" x2="140.5" stroke="#495879" stroke-width="1px"></line>
<rect visibility="hidden" fill-opacity="0.4" stroke-opacity="0.4" fill="#CC0033;" stroke="#FF9933;"
stroke-width="1px" y="5" x="5" height="10" width="50"></rect>
<polyline visibility="hidden" fill-opacity="0.4" stroke-opacity="0.4" stroke="#CC0033;" stroke-width="1px"
fill="none"></polyline>
<line visibility="hidden" fill-opacity="0.4" stroke-opacity="0.4" stroke="#CC0033;" stroke-width="1px"></line>
<rect visibility="hidden" fill-opacity="0.4" stroke-opacity="0.4" fill="#CC0033;" stroke="#FF9933;"
stroke-width="1px" y="5" x="5" height="10" width="50"></rect>
<g transform="translate(225, -52) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="42"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="39" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Node 0
</text>
</g>
<g transform="translate(225, -28) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="41"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="38" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Node 1
</text>
</g>
<g transform="translate(225, -4) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="42"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="39" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Node 2
</text>
</g>
<g transform="translate(225, 20) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="41"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="38" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Node 3
</text>
</g>
<g transform="translate(139, -9) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3.6" rx="3.6" height="24" width="71"></rect>
<rect style="cursor: move;" fill="#E0E5EF" stroke="#023BB9" stroke-width="0.5px" y="0" x="0" ry="2.7" rx="2.7"
height="18" width="67"></rect>
<text x="4" y="12" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="10.75" font-family="verdana" focusable="true">Main Topic
</text>
<ellipse stroke="#023BB9" visibility="visible" fill="#E0E5EF" stroke-width="0.5px" cy="9" cx="70" ry="3" rx="3"
height="6" width="6"></ellipse>
</g>
<g transform="translate(-296, -202) scale(1, 1)" height="100" width="100" focusable="true"
preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="52"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="49" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Sub Topic
</text>
</g>
<g transform="translate(-296, -178) scale(1, 1)" height="100" width="100" focusable="true"
preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="52"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="49" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Sub Topic
</text>
</g>
<g transform="translate(-296, -154) scale(1, 1)" height="100" width="100" focusable="true"
preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="52"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="49" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Sub Topic
</text>
</g>
<g transform="translate(-296, -130) scale(1, 1)" height="100" width="100" focusable="true"
preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="52"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="49" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Sub Topic
</text>
</g>
<g transform="translate(-229, -159) scale(1, 1)" height="100" width="100" focusable="true"
preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3.6" rx="3.6" height="24" width="71"></rect>
<rect style="cursor: move;" fill="#E0E5EF" stroke="#023BB9" stroke-width="0.5px" y="0" x="0" ry="2.7" rx="2.7"
height="18" width="67"></rect>
<text x="4" y="12" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="10.75" font-family="verdana" focusable="true">Main Topic
</text>
<ellipse stroke="#023BB9" visibility="visible" fill="#E0E5EF" stroke-width="0.5px" cy="9" cx="-3" ry="3" rx="3"
height="6" width="6"></ellipse>
</g>
<g transform="translate(-241, 91) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3.6" rx="3.6" height="24" width="72"></rect>
<rect style="cursor: move;" fill="#E0E5EF" stroke="#023BB9" stroke-width="0.5px" y="0" x="0" ry="2.7" rx="2.7"
height="18" width="68"></rect>
<text x="4" y="12" style="cursor: move;" fill="#00cccc" font-weight="normal" font-style="italic"
font-size="10.75" font-family="verdana" focusable="true">Main Topic
</text>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
</g>
<g transform="translate(-58, -15) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="5.55" rx="5.55" height="37" width="120"></rect>
<rect style="cursor: default;" stroke="#023BB9" fill="#f7f7f7" stroke-width="0.5px" y="0" x="0" ry="4.65"
rx="4.65" height="31" width="116"></rect>
<text x="9" y="19" style="cursor: default;" fill="#023BB9" font-weight="bold" font-style="normal"
font-size="13.4375" font-family="verdana" focusable="true">Central Topic
</text>
</g>
<g transform="translate(192, 48) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="52"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="49" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Sub Topic
</text>
</g>
<g transform="translate(192, 72) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="52"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="49" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Sub Topic
</text>
</g>
<g transform="translate(192, 96) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="52"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="49" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Sub Topic
</text>
</g>
<g transform="translate(192, 120) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3" rx="3" height="20" width="52"></rect>
<ellipse stroke="#023BB9" visibility="hidden" fill="#E0E5EF" stroke-width="0.5px" cy="3" cx="3" ry="3" rx="3"
height="6" width="6"></ellipse>
<line y2="14" x2="49" y1="14" x1="-1" visibility="hidden" style="cursor: move;" stroke="#495879"
stroke-width="1px"></line>
<text x="3" y="9" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="8.0625" font-family="verdana" focusable="true">Sub Topic
</text>
</g>
<g transform="translate(86, 91) scale(1, 1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a" stroke-width="1px" y="-3" x="-2"
ry="3.6" rx="3.6" height="24" width="91"></rect>
<rect style="cursor: move;" fill="#E0E5EF" stroke="#023BB9" stroke-width="0.5px" y="0" x="0" ry="2.7" rx="2.7"
height="18" width="87"></rect>
<text x="4" y="12" style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal"
font-size="10.75" font-family="verdana" focusable="true">Isolated Topic
</text>
<ellipse stroke="#023BB9" visibility="visible" fill="#E0E5EF" stroke-width="0.5px" cy="9" cx="90" ry="3" rx="3"
height="6" width="6"></ellipse>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -0,0 +1,577 @@
<HTML xmlns:v="urn:schemas-microsoft-com:vml">
<HEAD>
<STYLE>
v\:* {
behavior: url( #default#VML );
}
</STYLE>
<TITLE>VML Sample</TITLE>
</HEAD>
<BODY>
<DIV id=workspaceContainer
style="BORDER-RIGHT: #edf1be 0px solid; BORDER-TOP: #edf1be 0px solid; LEFT: 0px; OVERFLOW: hidden; BORDER-LEFT: #edf1be 0px solid; WIDTH: 1270px; BORDER-BOTTOM: #edf1be 0px solid; POSITION: relative; TOP: 0px; HEIGHT: 705px; BACKGROUND-COLOR: #ffffff"><?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" />
<v:group style="WIDTH: 1270px; POSITION: absolute; HEIGHT: 705px" coordsize="889,493" coordorigin="-445,-247">
<v:polyline style="POSITION: absolute"
readPoints="167.1, 100.0 177.1, 100.0 177.1, 130.5 182.1, 135.5 230.6, 135.5"
points="334,200,344,200,344,230,349,235,397,235" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="167.1, 100.0 177.1, 100.0 177.1, 106.5 182.1, 111.5 230.6, 111.5"
points="334,200,344,200,344,206,349,211,397,211" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="167.1, 100.0 177.1, 100.0 177.1, 92.5 182.1, 87.5 230.6, 87.5"
points="334,187,344,187,344,179,349,174,397,174" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="167.1, 100.0 177.1, 100.0 177.1, 68.5 182.1, 63.5 230.6, 63.5"
points="334,163,344,163,344,131,349,126,397,126" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:line style="POSITION: absolute" from="0,0" to="-176,100" fillcolor="white" stroked="t" strokecolor="#495879"
strokeweight="1.5pt">
<v:stroke dashstyle="solid"></v:stroke>
</v:line>
<v:polyline style="POSITION: absolute"
readPoints="-226.3, -150.0 -236.3, -150.0 -236.3, -119.5 -241.3, -114.5 -289.6, -114.5"
points="-515,-300,-525,-300,-525,-269,-530,-264,-578,-264" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="-226.3, -150.0 -236.3, -150.0 -236.3, -143.5 -241.3, -138.5 -289.6, -138.5"
points="-515,-300,-525,-300,-525,-293,-530,-288,-578,-288" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="-226.3, -150.0 -236.3, -150.0 -236.3, -157.5 -241.3, -162.5 -289.6, -162.5"
points="-515,-312,-525,-312,-525,-319,-530,-324,-578,-324" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="-226.3, -150.0 -236.3, -150.0 -236.3, -181.5 -241.3, -186.5 -289.6, -186.5"
points="-515,-336,-525,-336,-525,-367,-530,-372,-578,-372" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:line style="POSITION: absolute" from="0,0" to="-164,-150" fillcolor="white" stroked="t" strokecolor="#495879"
strokeweight="1.5pt">
<v:stroke dashstyle="solid"></v:stroke>
</v:line>
<v:polyline style="POSITION: absolute" readPoints="203.3, 0.0 213.3, 0.0 213.3, 30.5 218.3, 35.5 256.0, 35.5"
points="406,0,416,0,416,30,421,35,459,35" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="203.3, 0.0 213.3, 0.0 213.3, 6.5 218.3, 11.5 256.0, 11.5"
points="406,0,416,0,416,6,421,11,459,11" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="203.3, 0.0 213.3, 0.0 213.3, -7.5 218.3, -12.5 256.0, -12.5"
points="406,-12,416,-12,416,-19,421,-24,459,-24" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="203.3, 0.0 213.3, 0.0 213.3, -31.5 218.3, -36.5 256.0, -36.5"
points="406,-36,416,-36,416,-67,421,-72,459,-72" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:line style="POSITION: absolute" from="0,0" to="141,0" fillcolor="white" stroked="t" strokecolor="#495879"
strokeweight="1.5pt">
<v:stroke dashstyle="solid"></v:stroke>
</v:line>
<v:rect style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 50px; POSITION: absolute; TOP: 5px; HEIGHT: 10px"
coordsize="21600,21600" fillcolor="#c03" stroked="t" strokecolor="#f93" strokeweight="13619emu">
<v:stroke opacity="26214f" dashstyle="solid"></v:stroke>
<v:fill opacity="26214f"></v:fill>
</v:rect>
<v:polyline style="VISIBILITY: hidden; POSITION: absolute" filled="f" strokecolor="#c03" strokeweight=".75pt">
<v:stroke opacity="26214f" dashstyle="solid"></v:stroke>
<v:fill opacity="26214f"></v:fill>
</v:polyline>
<v:line style="VISIBILITY: hidden; POSITION: absolute" from="0,0" to="0,0" fillcolor="white" stroked="t"
strokecolor="#c03" strokeweight="1.5pt">
<v:stroke opacity="26214f" dashstyle="solid"></v:stroke>
<v:fill opacity="26214f"></v:fill>
</v:line>
<v:rect style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 50px; POSITION: absolute; TOP: 5px; HEIGHT: 10px"
coordsize="21600,21600" fillcolor="#c03" stroked="t" strokecolor="#f93" strokeweight="13619emu">
<v:stroke opacity="26214f" dashstyle="solid"></v:stroke>
<v:fill opacity="26214f"></v:fill>
</v:rect>
<v:group style="LEFT: 222px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -53px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 38px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="35,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 36px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.031pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.375pt; OVERFLOW: visible; WIDTH: 37.812pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Node 0</SPAN></SPAN></v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 222px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -29px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 38px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="35,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 36px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.281pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.375pt; OVERFLOW: visible; WIDTH: 37.812pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Node 1</SPAN></SPAN></v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 222px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -5px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 38px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="35,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 36px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.5pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.375pt; OVERFLOW: visible; WIDTH: 37.812pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Node 2</SPAN></SPAN></v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 222px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 19px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 38px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="35,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 36px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.375pt; OVERFLOW: visible; WIDTH: 37.812pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Node 3</SPAN></SPAN></v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 140px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -11px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 66px; POSITION: absolute; TOP: -3px; HEIGHT: 29px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 62px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 3px; WIDTH: 80px; CURSOR: move; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.625pt; LEFT: auto; FONT: 15px verdana; MARGIN-LEFT: 0.687pt; OVERFLOW: visible; WIDTH: 84.968pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Main Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
<v:oval style="LEFT: 62px; VISIBILITY: visible; WIDTH: 6px; POSITION: absolute; TOP: 8px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
</v:group>
<v:group style="LEFT: -290px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -203px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.406pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.125pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Sub Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: -290px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -179px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.656pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.125pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Sub Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: -290px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -155px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.125pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.125pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Sub Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: -290px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -131px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.375pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.125pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Sub Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: -226px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -161px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 66px; POSITION: absolute; TOP: -3px; HEIGHT: 29px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 62px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 3px; WIDTH: 80px; CURSOR: move; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.25pt; LEFT: auto; FONT: 15px verdana; MARGIN-LEFT: 0.562pt; OVERFLOW: visible; WIDTH: 84.968pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Main Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
<v:oval style="LEFT: -6px; VISIBILITY: visible; WIDTH: 6px; POSITION: absolute; TOP: 8px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
</v:group>
<v:group style="LEFT: -238px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 89px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 68px; POSITION: absolute; TOP: -3px; HEIGHT: 29px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 64px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 3px; WIDTH: 80px; CURSOR: move; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.625pt; LEFT: auto; FONT: italic 15px verdana; MARGIN-LEFT: 0.031pt; OVERFLOW: visible; WIDTH: 84.968pt; COLOR: #00cccc; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Main Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
</v:group>
<v:group style="LEFT: -59px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -18px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 122px; POSITION: absolute; TOP: -3px; HEIGHT: 43px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 118px; CURSOR: default; POSITION: absolute; TOP: 0px; HEIGHT: 37px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#f7f7f7" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 8px; WIDTH: 130px; CURSOR: default; POSITION: absolute; TOP: 6px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.718pt; LEFT: auto; FONT: bold 19px verdana; MARGIN-LEFT: 0.687pt; OVERFLOW: visible; WIDTH: 138.531pt; COLOR: #023bb9; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Central Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 186px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 47px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.031pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.687pt; OVERFLOW: visible; WIDTH: 57.093pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Sub Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 186px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 71px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.281pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.687pt; OVERFLOW: visible; WIDTH: 57.093pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Sub Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 186px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 95px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.5pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.687pt; OVERFLOW: visible; WIDTH: 57.093pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Sub Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 186px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 119px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17"
fillcolor="white" stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.687pt; OVERFLOW: visible; WIDTH: 57.093pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Sub Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 86px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 89px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 84px; POSITION: absolute; TOP: -3px; HEIGHT: 29px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 80px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 3px; WIDTH: 112px; CURSOR: move; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.625pt; LEFT: auto; FONT: 15px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 119.25pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
inset="0,0,0,0"><SPAN style="WIDTH: 100%; HEIGHT: 100%"><SPAN>Isolated Topic</SPAN></SPAN>
</v:textbox>
</v:shape>
<v:oval style="LEFT: 80px; VISIBILITY: visible; WIDTH: 6px; POSITION: absolute; TOP: 8px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
</v:group>
</v:group>
</DIV>
</DIV>
</BODY>
</HTML>

View File

@@ -0,0 +1,612 @@
<?xml version="1.0" encoding="UTF-8" ?>
<v:group style="WIDTH: 1270px; POSITION: absolute; HEIGHT: 705px" coordsize="889,493" coordorigin="-444,-247">
<v:rect style="LEFT: -62px; VISIBILITY: visible; WIDTH: 124px; POSITION: absolute; TOP: -21px; HEIGHT: 43px"
coordsize="21600,21600" fillcolor="#c03" stroked="t" strokecolor="#f93" strokeweight="13619emu">
<v:stroke opacity="26214f" dashstyle="solid"></v:stroke>
<v:fill opacity="26214f"></v:fill>
</v:rect>
<v:polyline style="VISIBILITY: hidden; POSITION: absolute" filled="f" strokecolor="#c03" strokeweight=".75pt">
<v:stroke opacity="26214f" dashstyle="solid"></v:stroke>
<v:fill opacity="26214f"></v:fill>
</v:polyline>
<v:line style="VISIBILITY: visible; POSITION: absolute" from="258,-250" to="0,0" fillcolor="white" stroked="t"
strokecolor="#c03" strokeweight="1.5pt">
<v:stroke opacity="26214f" dashstyle="solid"></v:stroke>
<v:fill opacity="26214f"></v:fill>
</v:line>
<v:polyline style="POSITION: absolute" readPoints="167.1, 100.0 177.1, 100.0 177.1, 130.5 182.1, 135.5 230.6, 135.5"
points="334,200,344,200,344,230,349,235,397,235" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="167.1, 100.0 177.1, 100.0 177.1, 106.5 182.1, 111.5 230.6, 111.5"
points="334,200,344,200,344,206,349,211,397,211" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="167.1, 100.0 177.1, 100.0 177.1, 92.5 182.1, 87.5 230.6, 87.5"
points="334,187,344,187,344,179,349,174,397,174" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="167.1, 100.0 177.1, 100.0 177.1, 68.5 182.1, 63.5 230.6, 63.5"
points="334,163,344,163,344,131,349,126,397,126" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:line style="POSITION: absolute" from="0,0" to="-176,100" fillcolor="white" stroked="t" strokecolor="#495879"
strokeweight="1.5pt">
<v:stroke dashstyle="solid"></v:stroke>
</v:line>
<v:polyline style="POSITION: absolute"
readPoints="-226.3, -150.0 -236.3, -150.0 -236.3, -119.5 -241.3, -114.5 -289.6, -114.5"
points="-515,-300,-525,-300,-525,-269,-530,-264,-578,-264" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="-226.3, -150.0 -236.3, -150.0 -236.3, -143.5 -241.3, -138.5 -289.6, -138.5"
points="-515,-300,-525,-300,-525,-293,-530,-288,-578,-288" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="-226.3, -150.0 -236.3, -150.0 -236.3, -157.5 -241.3, -162.5 -289.6, -162.5"
points="-515,-312,-525,-312,-525,-319,-530,-324,-578,-324" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute"
readPoints="-226.3, -150.0 -236.3, -150.0 -236.3, -181.5 -241.3, -186.5 -289.6, -186.5"
points="-515,-336,-525,-336,-525,-367,-530,-372,-578,-372" filled="f" strokecolor="#495879"
strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:line style="POSITION: absolute" from="0,0" to="-164,-150" fillcolor="white" stroked="t" strokecolor="#495879"
strokeweight="1.5pt">
<v:stroke dashstyle="solid"></v:stroke>
</v:line>
<v:polyline style="POSITION: absolute" readPoints="203.3, 0.0 213.3, 0.0 213.3, 30.5 218.3, 35.5 256.0, 35.5"
points="406,0,416,0,416,30,421,35,459,35" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="203.3, 0.0 213.3, 0.0 213.3, 6.5 218.3, 11.5 256.0, 11.5"
points="406,0,416,0,416,6,421,11,459,11" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="203.3, 0.0 213.3, 0.0 213.3, -7.5 218.3, -12.5 256.0, -12.5"
points="406,-12,416,-12,416,-19,421,-24,459,-24" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:polyline style="POSITION: absolute" readPoints="203.3, 0.0 213.3, 0.0 213.3, -31.5 218.3, -36.5 256.0, -36.5"
points="406,-36,416,-36,416,-67,421,-72,459,-72" filled="f" strokecolor="#495879" strokeweight=".75pt">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
</v:polyline>
<v:line style="POSITION: absolute" from="0,0" to="141,0" fillcolor="white" stroked="t" strokecolor="#495879"
strokeweight="1.5pt">
<v:stroke dashstyle="solid"></v:stroke>
</v:line>
<v:group style="LEFT: 222px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -53px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 38px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="35,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 36px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.687pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.562pt; OVERFLOW: visible; WIDTH: 37.843pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Node 0</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 222px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -29px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 38px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="35,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 36px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.156pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.562pt; OVERFLOW: visible; WIDTH: 37.843pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Node 1</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 222px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -5px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 38px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="35,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 36px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.406pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.562pt; OVERFLOW: visible; WIDTH: 37.843pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Node 2</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 222px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 19px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 38px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="35,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 36px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.656pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.562pt; OVERFLOW: visible; WIDTH: 37.843pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Node 3</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 140px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -11px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 66px; CURSOR: text; POSITION: absolute; TOP: -3px; HEIGHT: 29px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#c7d8ff" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="1" dashstyle="solid"></v:stroke>
<v:fill opacity="1"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 62px; CURSOR: text; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 3px; WIDTH: 80px; CURSOR: text; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.281pt; LEFT: auto; FONT: 15px verdana; MARGIN-LEFT: 0.031pt; OVERFLOW: visible; WIDTH: 84.968pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Main Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
<v:oval style="LEFT: 62px; VISIBILITY: visible; WIDTH: 6px; POSITION: absolute; TOP: 8px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
</v:group>
<v:group style="LEFT: -290px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -203px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.312pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.093pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Sub Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: -290px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -179px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.531pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.093pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Sub Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: -290px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -155px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.031pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.093pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Sub Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: -290px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -131px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.281pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.093pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Sub Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: -226px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -161px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 66px; POSITION: absolute; TOP: -3px; HEIGHT: 29px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 62px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 3px; WIDTH: 80px; CURSOR: move; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.656pt; LEFT: auto; FONT: 15px verdana; MARGIN-LEFT: 0.156pt; OVERFLOW: visible; WIDTH: 84.968pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Main Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
<v:oval style="LEFT: -6px; VISIBILITY: visible; WIDTH: 6px; POSITION: absolute; TOP: 8px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
</v:group>
<v:group style="LEFT: -238px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 89px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 68px; POSITION: absolute; TOP: -3px; HEIGHT: 29px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 64px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 3px; WIDTH: 80px; CURSOR: move; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.312pt; LEFT: auto; FONT: 15px verdana; MARGIN-LEFT: 0.031pt; OVERFLOW: visible; WIDTH: 84.968pt; COLOR: #00cccc; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Main Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
</v:group>
<v:group style="LEFT: -59px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -18px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 122px; POSITION: absolute; TOP: -3px; HEIGHT: 43px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 118px; CURSOR: default; POSITION: absolute; TOP: 0px; HEIGHT: 37px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#f7f7f7" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 8px; WIDTH: 130px; CURSOR: default; POSITION: absolute; TOP: 6px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.406pt; LEFT: auto; FONT: bold 19px verdana; MARGIN-LEFT: 0.687pt; OVERFLOW: visible; WIDTH: 138.531pt; COLOR: #023bb9; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Central Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 186px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 47px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.687pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.125pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Sub Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 186px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 71px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.156pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.125pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Sub Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 186px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 95px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.406pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.125pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Sub Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 186px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 119px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 49px; POSITION: absolute; TOP: -3px; HEIGHT: 23px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:oval style="LEFT: 5px; VISIBILITY: hidden; WIDTH: 6px; POSITION: absolute; TOP: 5px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
<v:line style="VISIBILITY: hidden; CURSOR: move; POSITION: absolute" from="-1,17" to="46,17" fillcolor="white"
stroked="t" strokecolor="#495879" strokeweight="1.5pt">
<v:stroke></v:stroke>
</v:line>
<v:shape
style="Z-INDEX: 10; LEFT: 2px; WIDTH: 54px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.656pt; LEFT: auto; FONT: 11px verdana; MARGIN-LEFT: 0.25pt; OVERFLOW: visible; WIDTH: 57.125pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Sub Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
</v:group>
<v:group style="LEFT: 86px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: 89px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect style="LEFT: -2px; WIDTH: 84px; POSITION: absolute; TOP: -3px; HEIGHT: 29px" arcsize="9830f"
coordsize="21600,21600" fillcolor="#dbe2e6" stroked="t" strokecolor="#77555a"
strokeweight="13619emu">
<v:stroke opacity="0" dashstyle="solid"></v:stroke>
<v:fill opacity="0"></v:fill>
</v:roundrect>
<v:roundrect style="LEFT: 0px; WIDTH: 80px; CURSOR: move; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:roundrect>
<v:shape
style="Z-INDEX: 10; LEFT: 3px; WIDTH: 112px; CURSOR: move; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.312pt; LEFT: auto; FONT: 15px verdana; MARGIN-LEFT: 0.687pt; OVERFLOW: visible; WIDTH: 119.25pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.312pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Isolated Topic</SPAN>
</SPAN>
</v:textbox>
</v:shape>
<v:oval style="LEFT: 80px; VISIBILITY: visible; WIDTH: 6px; POSITION: absolute; TOP: 8px; HEIGHT: 6px"
coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9" strokeweight="6762emu">
<v:stroke dashstyle="solid"></v:stroke>
<v:fill></v:fill>
</v:oval>
</v:group>
<v:group style="LEFT: 249px; WIDTH: 100px; CURSOR: move; POSITION: absolute; TOP: -247px; HEIGHT: 100px"
coordsize="100,100">
<v:roundrect
style="LEFT: 0px; VISIBILITY: visible; WIDTH: 62px; CURSOR: default; POSITION: absolute; TOP: 0px; HEIGHT: 23px"
arcsize="9830f" coordsize="21600,21600" fillcolor="#e0e5ef" stroked="t" strokecolor="#023bb9"
strokeweight="6762emu">
<v:stroke opacity=".5" dashstyle="solid"></v:stroke>
<v:fill opacity=".5"></v:fill>
</v:roundrect>
<v:shape style="Z-INDEX: 10; LEFT: 3px; WIDTH: 80px; POSITION: absolute; TOP: 1px; HEIGHT: 1px; antialias: true"
coordsize="100,100">
<v:textbox
style="MARGIN-TOP: 0.593pt; LEFT: auto; FONT: 15px Arial; MARGIN-LEFT: 0.031pt; OVERFLOW: visible; WIDTH: 84.968pt; COLOR: #525c61; POSITION: absolute; TOP: auto; HEIGHT: 0.343pt"
fontScale="1.4" inset="0,0,0,0">
<SPAN style="WIDTH: 100%; HEIGHT: 100%">
<SPAN>Main Topic</SPAN>
</SPAN>
</v:textbox>
<v:stroke opacity=".5"></v:stroke>
<v:fill opacity=".5"></v:fill>
</v:shape>
</v:group>
<v:rect style="LEFT: 256px; VISIBILITY: visible; WIDTH: 50px; POSITION: absolute; TOP: -255px; HEIGHT: 10px"
coordsize="21600,21600" fillcolor="#c03" stroked="t" strokecolor="#f93" strokeweight="13619emu">
<v:stroke opacity="26214f" dashstyle="solid"></v:stroke>
<v:fill opacity="26214f"></v:fill>
</v:rect>
</v:group>