1*cabbd591SAndrew Rist<!--*********************************************************** 2*cabbd591SAndrew Rist * 3*cabbd591SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*cabbd591SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*cabbd591SAndrew Rist * distributed with this work for additional information 6*cabbd591SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*cabbd591SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*cabbd591SAndrew Rist * "License"); you may not use this file except in compliance 9*cabbd591SAndrew Rist * with the License. You may obtain a copy of the License at 10*cabbd591SAndrew Rist * 11*cabbd591SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*cabbd591SAndrew Rist * 13*cabbd591SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*cabbd591SAndrew Rist * software distributed under the License is distributed on an 15*cabbd591SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*cabbd591SAndrew Rist * KIND, either express or implied. See the License for the 17*cabbd591SAndrew Rist * specific language governing permissions and limitations 18*cabbd591SAndrew Rist * under the License. 19*cabbd591SAndrew Rist * 20*cabbd591SAndrew Rist ***********************************************************--> 21cdf0e10cSrcweir 22cdf0e10cSrcweir 23cdf0e10cSrcweir 24cdf0e10cSrcweir<!ELEMENT style:font-decl EMPTY> 25cdf0e10cSrcweir<!ATTLIST style:font-decl style:name %string; #REQUIRED> 26cdf0e10cSrcweir<!ATTLIST style:font-decl fo:font-family %string; #REQUIRED> 27cdf0e10cSrcweir<!ATTLIST style:font-decl style:font-style-name %string; #IMPLIED> 28cdf0e10cSrcweir<!ENTITY % fontFamilyGeneric "(roman|swiss|modern|decorative|script|system)"> 29cdf0e10cSrcweir<!ATTLIST style:font-decl style:font-family-generic %fontFamilyGeneric; 30cdf0e10cSrcweir #IMPLIED> 31cdf0e10cSrcweir<!ENTITY % fontPitch "(fixed|variable)"> 32cdf0e10cSrcweir<!ATTLIST style:font-decl style:font-pitch %fontPitch; #IMPLIED> 33cdf0e10cSrcweir<!ATTLIST style:font-decl style:font-charset %textEncoding; #IMPLIED> 34cdf0e10cSrcweir 35cdf0e10cSrcweir<!ELEMENT style:style ( style:properties?,office:events?,style:map*)> 36cdf0e10cSrcweir 37cdf0e10cSrcweir<!ATTLIST style:style style:name %styleName; #REQUIRED> 38cdf0e10cSrcweir 39cdf0e10cSrcweir<!ENTITY % styleFamily "(paragraph|text|section| 40cdf0e10cSrcweir table|table-column|table-row|table-cell|table-page|chart|graphics|default|drawing-page|presentation|control)"> 41cdf0e10cSrcweir<!ATTLIST style:style style:family %styleFamily; #REQUIRED> 42cdf0e10cSrcweir 43cdf0e10cSrcweir<!ATTLIST style:style style:parent-style-name %styleName; #IMPLIED> 44cdf0e10cSrcweir<!ATTLIST style:style style:master-page-name %styleName; #IMPLIED> 45cdf0e10cSrcweir<!ATTLIST style:style style:next-style-name %styleName; #IMPLIED> 46cdf0e10cSrcweir<!ATTLIST style:style style:list-style-name %styleName; #IMPLIED> 47cdf0e10cSrcweir<!ATTLIST style:style style:data-style-name %styleName; #IMPLIED> 48cdf0e10cSrcweir 49cdf0e10cSrcweir<!ATTLIST style:style style:auto-update %boolean; "false"> 50cdf0e10cSrcweir 51cdf0e10cSrcweir<!ATTLIST style:style style:class %string; #IMPLIED> 52cdf0e10cSrcweir 53cdf0e10cSrcweir<!ELEMENT style:default-style (style:properties?)> 54cdf0e10cSrcweir<!ATTLIST style:default-style style:family %styleFamily; #REQUIRED> 55cdf0e10cSrcweir 56cdf0e10cSrcweir<!ELEMENT style:map EMPTY> 57cdf0e10cSrcweir 58cdf0e10cSrcweir<!ATTLIST style:map style:condition %string; #REQUIRED> 59cdf0e10cSrcweir<!ATTLIST style:map style:apply-style-name %styleName; #REQUIRED> 60cdf0e10cSrcweir<!ATTLIST style:map style:base-cell-address %cell-address; #IMPLIED> 61cdf0e10cSrcweir 62cdf0e10cSrcweir<!ELEMENT style:properties ANY> 63cdf0e10cSrcweir 64cdf0e10cSrcweir<!-- number format properties --> 65cdf0e10cSrcweir<!ATTLIST style:properties style:num-prefix %string; #IMPLIED> 66cdf0e10cSrcweir<!ATTLIST style:properties style:num-suffix %string; #IMPLIED> 67cdf0e10cSrcweir<!ATTLIST style:properties style:num-format %string; #IMPLIED> 68cdf0e10cSrcweir<!ATTLIST style:properties style:num-letter-sync %boolean; #IMPLIED> 69cdf0e10cSrcweir 70cdf0e10cSrcweir<!-- frame properties --> 71cdf0e10cSrcweir<!ATTLIST style:properties fo:width %positiveLength; #IMPLIED> 72cdf0e10cSrcweir<!ATTLIST style:properties fo:height %positiveLength; #IMPLIED> 73cdf0e10cSrcweir<!ATTLIST style:properties style:vertical-pos (top|middle|bottom|from-top) #IMPLIED> 74cdf0e10cSrcweir<!ATTLIST style:properties style:vertical-rel (page|page-content| 75cdf0e10cSrcweir frame|frame-content| 76cdf0e10cSrcweir paragraph|paragraph-content|char| 77cdf0e10cSrcweir line|baseline|text) #IMPLIED> 78cdf0e10cSrcweir<!ATTLIST style:properties style:horizontal-pos (left|center|right|from-left|inside|outside|from-inside) #IMPLIED> 79cdf0e10cSrcweir<!ATTLIST style:properties style:horizontal-rel (page|page-content| 80cdf0e10cSrcweir frame|frame-content| 81cdf0e10cSrcweir paragraph|paragraph-content| 82cdf0e10cSrcweir char) #IMPLIED> 83cdf0e10cSrcweir<!ATTLIST style:properties svg:width %lengthOrPercentage; #IMPLIED> 84cdf0e10cSrcweir<!ATTLIST style:properties svg:height %lengthOrPercentage; #IMPLIED> 85cdf0e10cSrcweir<!ATTLIST style:properties fo:min-height %lengthOrPercentage; #IMPLIED> 86cdf0e10cSrcweir<!ATTLIST style:properties fo:min-width %lengthOrPercentage; #IMPLIED> 87cdf0e10cSrcweir<!ATTLIST style:properties fo:max-height %lengthOrPercentage; #IMPLIED> 88cdf0e10cSrcweir<!ATTLIST style:properties fo:max-width %lengthOrPercentage; #IMPLIED> 89cdf0e10cSrcweir<!ATTLIST style:properties text:anchor-type %anchorType; #IMPLIED> 90cdf0e10cSrcweir<!ATTLIST style:properties text:anchor-page-number %positiveInteger; #IMPLIED> 91cdf0e10cSrcweir<!ATTLIST style:properties svg:x %coordinate; #IMPLIED> 92cdf0e10cSrcweir<!ATTLIST style:properties svg:y %coordinate; #IMPLIED> 93cdf0e10cSrcweir<!ATTLIST style:properties style:print-content %boolean; #IMPLIED> 94cdf0e10cSrcweir<!ATTLIST style:properties style:protect %boolean; #IMPLIED> 95cdf0e10cSrcweir<!ATTLIST style:properties style:wrap (none|left|right|parallel|dynamic|run-through) #IMPLIED> 96cdf0e10cSrcweir<!ENTITY % noLimitOrPositiveInteger "CDATA"> 97cdf0e10cSrcweir<!ATTLIST style:properties style:number-wrapped-paragraphs %noLimitOrPositiveInteger; #IMPLIED> 98cdf0e10cSrcweir<!ATTLIST style:properties style:wrap-contour %boolean; #IMPLIED> 99cdf0e10cSrcweir<!ATTLIST style:properties style:wrap-contour-mode (full|outside) #IMPLIED> 100cdf0e10cSrcweir<!ATTLIST style:properties style:run-through (foreground|background) #IMPLIED> 101cdf0e10cSrcweir<!ATTLIST style:properties style:editable %boolean; #IMPLIED> 102cdf0e10cSrcweir<!ATTLIST style:properties style:mirror CDATA #IMPLIED> 103cdf0e10cSrcweir<!ATTLIST style:properties fo:clip CDATA #IMPLIED> 104cdf0e10cSrcweir<!ATTLIST style:properties text:animation (none|scroll|alternate|slide) #IMPLIED> 105cdf0e10cSrcweir<!ATTLIST style:properties text:animation-direction (left|right|up|down) #IMPLIED> 106cdf0e10cSrcweir<!ATTLIST style:properties text:animation-start-inside %boolean; #IMPLIED> 107cdf0e10cSrcweir<!ATTLIST style:properties text:animation-stop-inside %boolean; #IMPLIED> 108cdf0e10cSrcweir<!ATTLIST style:properties text:animation-repeat %integer; #IMPLIED> 109cdf0e10cSrcweir<!ATTLIST style:properties text:animation-delay %timeDuration; #IMPLIED> 110cdf0e10cSrcweir<!ATTLIST style:properties text:animation-steps %length; #IMPLIED> 111cdf0e10cSrcweir 112cdf0e10cSrcweir<!-- text properties --> 113cdf0e10cSrcweir<!ATTLIST style:properties fo:font-variant (normal|small-caps) #IMPLIED> 114cdf0e10cSrcweir<!ATTLIST style:properties fo:text-transform (none|lowercase| 115cdf0e10cSrcweir uppercase|capitalize) #IMPLIED> 116cdf0e10cSrcweir<!ATTLIST style:properties fo:color %color; #IMPLIED> 117cdf0e10cSrcweir<!ATTLIST style:properties style:use-window-font-color %boolean; #IMPLIED> 118cdf0e10cSrcweir<!ATTLIST style:properties style:text-outline %boolean; #IMPLIED> 119cdf0e10cSrcweir<!ATTLIST style:properties style:text-crossing-out 120cdf0e10cSrcweir (none|single-line|double-line|thick-line|slash|X) 121cdf0e10cSrcweir #IMPLIED> 122cdf0e10cSrcweir<!ATTLIST style:properties style:text-position CDATA #IMPLIED> 123cdf0e10cSrcweir<!ATTLIST style:properties style:text-align (left|right|start|center|end|justify|justified) #IMPLIED> 124cdf0e10cSrcweir 125cdf0e10cSrcweir<!ATTLIST style:properties style:font-name %string; #IMPLIED> 126cdf0e10cSrcweir<!ATTLIST style:properties fo:font-family %string; #IMPLIED> 127cdf0e10cSrcweir<!ATTLIST style:properties style:font-family-generic %fontFamilyGeneric; 128cdf0e10cSrcweir #IMPLIED> 129cdf0e10cSrcweir<!ATTLIST style:properties style:font-style-name %string; #IMPLIED> 130cdf0e10cSrcweir<!ATTLIST style:properties style:font-pitch %fontPitch; #IMPLIED> 131cdf0e10cSrcweir<!ATTLIST style:properties style:font-charset %textEncoding; #IMPLIED> 132cdf0e10cSrcweir<!ATTLIST style:properties style:font-name-asian %string; #IMPLIED> 133cdf0e10cSrcweir<!ATTLIST style:properties style:font-family-asian %string; #IMPLIED> 134cdf0e10cSrcweir<!ATTLIST style:properties style:font-family-generic-asian %fontFamilyGeneric; 135cdf0e10cSrcweir #IMPLIED> 136cdf0e10cSrcweir<!ATTLIST style:properties style:font-style-name-asian %string; #IMPLIED> 137cdf0e10cSrcweir<!ATTLIST style:properties style:font-pitch-asian %fontPitch; #IMPLIED> 138cdf0e10cSrcweir<!ATTLIST style:properties style:font-charset-asian %textEncoding; #IMPLIED> 139cdf0e10cSrcweir<!ATTLIST style:properties style:font-name-complex %string; #IMPLIED> 140cdf0e10cSrcweir<!ATTLIST style:properties style:font-family-complex %string; #IMPLIED> 141cdf0e10cSrcweir<!ATTLIST style:properties style:font-family-generic-complex %fontFamilyGeneric; 142cdf0e10cSrcweir #IMPLIED> 143cdf0e10cSrcweir<!ATTLIST style:properties style:font-style-name-complex %string; #IMPLIED> 144cdf0e10cSrcweir<!ATTLIST style:properties style:font-pitch-complex %fontPitch; #IMPLIED> 145cdf0e10cSrcweir<!ATTLIST style:properties style:font-charset-complex %textEncoding; #IMPLIED> 146cdf0e10cSrcweir 147cdf0e10cSrcweir<!ATTLIST style:properties fo:font-size %positiveLengthOrPercentage; #IMPLIED> 148cdf0e10cSrcweir<!ATTLIST style:properties style:font-size-rel %length; #IMPLIED> 149cdf0e10cSrcweir<!ATTLIST style:properties style:font-size-asian %positiveLengthOrPercentage; #IMPLIED> 150cdf0e10cSrcweir<!ATTLIST style:properties style:font-size-rel-asian %length; #IMPLIED> 151cdf0e10cSrcweir<!ATTLIST style:properties style:font-size-complex %positiveLengthOrPercentage; #IMPLIED> 152cdf0e10cSrcweir<!ATTLIST style:properties style:font-size-rel-complex %length; #IMPLIED> 153cdf0e10cSrcweir<!ENTITY % normalOrLength "CDATA"> 154cdf0e10cSrcweir<!ATTLIST style:properties fo:letter-spacing %normalOrLength; #IMPLIED> 155cdf0e10cSrcweir<!ATTLIST style:properties fo:language %languageOnly; #IMPLIED> 156cdf0e10cSrcweir<!ATTLIST style:properties style:language-asian %languageOnly; #IMPLIED> 157cdf0e10cSrcweir<!ATTLIST style:properties style:language-complex %languageOnly; #IMPLIED> 158cdf0e10cSrcweir<!ATTLIST style:properties fo:country %country; #IMPLIED> 159cdf0e10cSrcweir<!ATTLIST style:properties style:country-asian %country; #IMPLIED> 160cdf0e10cSrcweir<!ATTLIST style:properties style:country-complex %country; #IMPLIED> 161cdf0e10cSrcweir<!ENTITY % fontStyle "(normal|italic|oblique)"> 162cdf0e10cSrcweir<!ATTLIST style:properties fo:font-style %fontStyle; #IMPLIED> 163cdf0e10cSrcweir<!ATTLIST style:properties style:font-style-asian %fontStyle; #IMPLIED> 164cdf0e10cSrcweir<!ATTLIST style:properties style:font-style-complex %fontStyle; #IMPLIED> 165cdf0e10cSrcweir<!ENTITY % fontRelief "(none|embossed|engraved)"> 166cdf0e10cSrcweir<!ATTLIST style:properties style:font-relief %fontRelief; #IMPLIED> 167cdf0e10cSrcweir<!ATTLIST style:properties fo:text-shadow CDATA #IMPLIED> 168cdf0e10cSrcweir<!ATTLIST style:properties style:text-underline 169cdf0e10cSrcweir (none|single|double|dotted|dash|long-dash|dot-dash| 170cdf0e10cSrcweir dot-dot-dash|wave|bold|bold-dotted|bold-dash| 171cdf0e10cSrcweir bold-long-dash|bold-dot-dash|bold-dot-dot-dash| 172cdf0e10cSrcweir bold-wave|double-wave|small-wave) #IMPLIED> 173cdf0e10cSrcweir<!ATTLIST style:properties style:text-autospace (none | ideograph-alpha) #IMPLIED> 174cdf0e10cSrcweir<!ATTLIST style:properties style:punctuation-wrap (simple | hanging) #IMPLIED> 175cdf0e10cSrcweir<!ATTLIST style:properties style:line-break (normal | strict) #IMPLIED> 176cdf0e10cSrcweir<!ENTITY % fontColorOrColor "CDATA"> 177cdf0e10cSrcweir<!ATTLIST style:properties style:text-underline-color %fontColorOrColor; 178cdf0e10cSrcweir #IMPLIED> 179cdf0e10cSrcweir<!ATTLIST style:properties fo:font-weight CDATA #IMPLIED> 180cdf0e10cSrcweir<!ATTLIST style:properties style:font-weight-asian CDATA #IMPLIED> 181cdf0e10cSrcweir<!ATTLIST style:properties style:font-weight-complex CDATA #IMPLIED> 182cdf0e10cSrcweir<!ATTLIST style:properties fo:score-spaces %boolean; #IMPLIED> 183cdf0e10cSrcweir<!ATTLIST style:properties style:letter-kerning %boolean; #IMPLIED> 184cdf0e10cSrcweir<!ATTLIST style:properties style:text-blinking %boolean; #IMPLIED> 185cdf0e10cSrcweir<!ATTLIST style:properties style:text-background-color %transparentOrColor; 186cdf0e10cSrcweir #IMPLIED> 187cdf0e10cSrcweir 188cdf0e10cSrcweir<!ATTLIST style:properties style:text-combine (none|letters|lines) #IMPLIED> 189cdf0e10cSrcweir<!ATTLIST style:properties style:text-combine-start-char %character; #IMPLIED> 190cdf0e10cSrcweir<!ATTLIST style:properties style:text-combine-end-char %character; #IMPLIED> 191cdf0e10cSrcweir<!ATTLIST style:properties style:text-emphasize CDATA #IMPLIED> 192cdf0e10cSrcweir<!ATTLIST style:properties style:text-scale %percentage; #IMPLIED> 193cdf0e10cSrcweir<!ATTLIST style:properties style:text-rotation-angle %integer; #IMPLIED> 194cdf0e10cSrcweir<!ATTLIST style:properties style:text-rotation-scale (fixed|line-height) #IMPLIED> 195cdf0e10cSrcweir 196cdf0e10cSrcweir<!-- paragraph properties --> 197cdf0e10cSrcweir<!ENTITY % nonNegativeLengthOrPercentageOrNormal "CDATA"> 198cdf0e10cSrcweir<!ATTLIST style:properties fo:line-height 199cdf0e10cSrcweir %nonNegativeLengthOrPercentageOrNormal; #IMPLIED> 200cdf0e10cSrcweir<!ATTLIST style:properties style:line-height-at-least %nonNegativeLength; 201cdf0e10cSrcweir #IMPLIED> 202cdf0e10cSrcweir<!ATTLIST style:properties style:line-spacing %length; #IMPLIED> 203cdf0e10cSrcweir<!ATTLIST style:properties fo:text-align (start|end|center|justify) #IMPLIED> 204cdf0e10cSrcweir<!ATTLIST style:properties fo:text-align-last (start|center|justify) #IMPLIED> 205cdf0e10cSrcweir<!ATTLIST style:properties style:text-align-source (fix|value-type) #IMPLIED> 206cdf0e10cSrcweir<!ATTLIST style:properties style:justify-single-word %boolean; #IMPLIED> 207cdf0e10cSrcweir<!ATTLIST style:properties style:break-inside (auto|avoid) #IMPLIED> 208cdf0e10cSrcweir<!ATTLIST style:properties fo:widows %nonNegativeInteger; #IMPLIED> 209cdf0e10cSrcweir<!ATTLIST style:properties fo:orphans %nonNegativeInteger; #IMPLIED> 210cdf0e10cSrcweir 211cdf0e10cSrcweir<!ATTLIST style:properties fo:hyphenate %boolean; #IMPLIED> 212cdf0e10cSrcweir<!ATTLIST style:properties fo:hyphenate-keep (none|page) #IMPLIED> 213cdf0e10cSrcweir<!ATTLIST style:properties fo:hyphenation-remain-char-count %positiveInteger; 214cdf0e10cSrcweir #IMPLIED> 215cdf0e10cSrcweir<!ATTLIST style:properties fo:hyphenation-push-char-count %positiveInteger; 216cdf0e10cSrcweir #IMPLIED> 217cdf0e10cSrcweir<!ATTLIST style:properties fo:hyphenation-ladder-count 218cdf0e10cSrcweir %noLimitOrPositiveInteger; #IMPLIED> 219cdf0e10cSrcweir<!ATTLIST style:properties style:page-number %positiveInteger; #IMPLIED> 220cdf0e10cSrcweir 221cdf0e10cSrcweir<!ELEMENT style:tab-stops (style:tab-stop)*> 222cdf0e10cSrcweir<!ELEMENT style:tab-stop EMPTY> 223cdf0e10cSrcweir<!ATTLIST style:tab-stop style:position %nonNegativeLength; #REQUIRED> 224cdf0e10cSrcweir<!ATTLIST style:tab-stop style:type (left|center|right|char|default) "left"> 225cdf0e10cSrcweir<!ATTLIST style:tab-stop style:char %character; #IMPLIED> 226cdf0e10cSrcweir<!ATTLIST style:tab-stop style:leader-char %character; " "> 227cdf0e10cSrcweir 228cdf0e10cSrcweir<!ELEMENT style:drop-cap EMPTY> 229cdf0e10cSrcweir<!ENTITY % wordOrPositiveInteger "CDATA"> 230cdf0e10cSrcweir<!ATTLIST style:drop-cap style:length %wordOrPositiveInteger; "1"> 231cdf0e10cSrcweir<!ATTLIST style:drop-cap style:lines %positiveInteger; "1"> 232cdf0e10cSrcweir<!ATTLIST style:drop-cap style:distance %length; "0cm"> 233cdf0e10cSrcweir<!ATTLIST style:drop-cap style:style-name %styleName; #IMPLIED> 234cdf0e10cSrcweir 235cdf0e10cSrcweir<!ATTLIST style:properties style:register-true %boolean; #IMPLIED> 236cdf0e10cSrcweir<!ATTLIST style:properties style:register-truth-ref-style-name %styleName; #IMPLIED> 237cdf0e10cSrcweir<!ATTLIST style:properties fo:margin-left %positiveLengthOrPercentage; #IMPLIED> 238cdf0e10cSrcweir<!ATTLIST style:properties fo:margin-right %positiveLengthOrPercentage; 239cdf0e10cSrcweir #IMPLIED> 240cdf0e10cSrcweir<!ATTLIST style:properties fo:text-indent %lengthOrPercentage; #IMPLIED> 241cdf0e10cSrcweir<!ATTLIST style:properties style:auto-text-indent %boolean; #IMPLIED> 242cdf0e10cSrcweir<!ATTLIST style:properties fo:margin-top %positiveLengthOrPercentage; #IMPLIED> 243cdf0e10cSrcweir<!ATTLIST style:properties fo:margin-bottom %positiveLengthOrPercentage; #IMPLIED> 244cdf0e10cSrcweir<!ATTLIST style:properties fo:break-before (auto|column|page) #IMPLIED> 245cdf0e10cSrcweir<!ATTLIST style:properties fo:break-after (auto|column|page) #IMPLIED> 246cdf0e10cSrcweir<!ATTLIST style:properties fo:background-color %transparentOrColor; #IMPLIED> 247cdf0e10cSrcweir 248cdf0e10cSrcweir<!ELEMENT style:background-image (office:binary-data?)> 249cdf0e10cSrcweir<!ATTLIST style:background-image xlink:type (simple) #IMPLIED> 250cdf0e10cSrcweir<!ATTLIST style:background-image xlink:href %uriReference; #IMPLIED> 251cdf0e10cSrcweir<!ATTLIST style:background-image xlink:show (embed) #IMPLIED> 252cdf0e10cSrcweir<!ATTLIST style:background-image xlink:actuate (onLoad) #IMPLIED> 253cdf0e10cSrcweir<!ATTLIST style:background-image style:repeat (no-repeat|repeat|stretch) 254cdf0e10cSrcweir "repeat"> 255cdf0e10cSrcweir<!ATTLIST style:background-image style:position CDATA "center"> 256cdf0e10cSrcweir<!ATTLIST style:background-image style:filter-name %string; #IMPLIED> 257cdf0e10cSrcweir 258cdf0e10cSrcweir<!ELEMENT style:symbol-image (office:binary-data?)> 259cdf0e10cSrcweir<!ATTLIST style:symbol-image xlink:type (simple) #IMPLIED> 260cdf0e10cSrcweir<!ATTLIST style:symbol-image xlink:href %uriReference; #IMPLIED> 261cdf0e10cSrcweir<!ATTLIST style:symbol-image xlink:show (embed) #IMPLIED> 262cdf0e10cSrcweir<!ATTLIST style:symbol-image xlink:actuate (onLoad) #IMPLIED> 263cdf0e10cSrcweir 264cdf0e10cSrcweir<!ATTLIST style:properties fo:border CDATA #IMPLIED> 265cdf0e10cSrcweir<!ATTLIST style:properties fo:border-top CDATA #IMPLIED> 266cdf0e10cSrcweir<!ATTLIST style:properties fo:border-bottom CDATA #IMPLIED> 267cdf0e10cSrcweir<!ATTLIST style:properties fo:border-left CDATA #IMPLIED> 268cdf0e10cSrcweir<!ATTLIST style:properties fo:border-right CDATA #IMPLIED> 269cdf0e10cSrcweir<!ATTLIST style:properties style:border-line-width CDATA #IMPLIED> 270cdf0e10cSrcweir<!ATTLIST style:properties style:border-line-width-top CDATA #IMPLIED> 271cdf0e10cSrcweir<!ATTLIST style:properties style:border-line-width-bottom CDATA #IMPLIED> 272cdf0e10cSrcweir<!ATTLIST style:properties style:border-line-width-left CDATA #IMPLIED> 273cdf0e10cSrcweir<!ATTLIST style:properties style:border-line-width-right CDATA #IMPLIED> 274cdf0e10cSrcweir<!ATTLIST style:properties fo:padding %nonNegativeLength; #IMPLIED> 275cdf0e10cSrcweir<!ATTLIST style:properties fo:padding-top %nonNegativeLength; #IMPLIED> 276cdf0e10cSrcweir<!ATTLIST style:properties fo:padding-bottom %nonNegativeLength; #IMPLIED> 277cdf0e10cSrcweir<!ATTLIST style:properties fo:padding-left %nonNegativeLength; #IMPLIED> 278cdf0e10cSrcweir<!ATTLIST style:properties fo:padding-right %nonNegativeLength; #IMPLIED> 279cdf0e10cSrcweir<!ATTLIST style:properties style:shadow CDATA #IMPLIED> 280cdf0e10cSrcweir<!ATTLIST style:properties fo:keep-with-next %boolean; #IMPLIED> 281cdf0e10cSrcweir 282cdf0e10cSrcweir<!ATTLIST style:properties text:number-lines %boolean; "false"> 283cdf0e10cSrcweir<!ATTLIST style:properties text:line-number %nonNegativeInteger; #IMPLIED> 284cdf0e10cSrcweir 285cdf0e10cSrcweir<!ATTLIST style:properties style:decimal-places %nonNegativeInteger; #IMPLIED> 286cdf0e10cSrcweir<!ATTLIST style:properties style:tab-stop-distance %nonNegativeLength; #IMPLIED> 287cdf0e10cSrcweir 288cdf0e10cSrcweir<!-- table properties --> 289cdf0e10cSrcweir<!ATTLIST style:properties style:width %positiveLength; #IMPLIED> 290cdf0e10cSrcweir<!ATTLIST style:properties style:rel-width %percentage; #IMPLIED> 291cdf0e10cSrcweir<!ATTLIST style:properties style:may-break-between-rows %boolean; #IMPLIED> 292cdf0e10cSrcweir<!ATTLIST style:properties table:page-style-name %styleName; #IMPLIED> 293cdf0e10cSrcweir<!ATTLIST style:properties table:display %boolean; #IMPLIED> 294cdf0e10cSrcweir 295cdf0e10cSrcweir<!-- table column properties --> 296cdf0e10cSrcweir<!ATTLIST style:properties style:column-width %positiveLength; #IMPLIED> 297cdf0e10cSrcweir<!ENTITY % relWidth "CDATA"> 298cdf0e10cSrcweir<!ATTLIST style:properties style:rel-column-width %relWidth; #IMPLIED> 299cdf0e10cSrcweir<!ATTLIST style:properties style:use-optimal-column-width %boolean; #IMPLIED> 300cdf0e10cSrcweir 301cdf0e10cSrcweir<!-- table row properties --> 302cdf0e10cSrcweir<!ATTLIST style:properties style:row-height %positiveLength; #IMPLIED> 303cdf0e10cSrcweir<!ATTLIST style:properties style:min-row-height %nonNegativeLength; #IMPLIED> 304cdf0e10cSrcweir<!ATTLIST style:properties style:use-optimal-row-height %boolean; #IMPLIED> 305cdf0e10cSrcweir 306cdf0e10cSrcweir<!-- table cell properties --> 307cdf0e10cSrcweir<!ATTLIST style:properties 308cdf0e10cSrcweir table:align (left | center | right | margins) #IMPLIED 309cdf0e10cSrcweir table:border-model (collapsing | separating) #IMPLIED 310cdf0e10cSrcweir fo:vertical-align (top | middle | bottom | automatic) #IMPLIED 311cdf0e10cSrcweir fo:direction (ltr | ttb) #IMPLIED 312cdf0e10cSrcweir style:rotation-angle %nonNegativeInteger; #IMPLIED 313cdf0e10cSrcweir style:rotation-align (none | bottom | top | center) #IMPLIED 314cdf0e10cSrcweir style:cell-protect CDATA #IMPLIED 315cdf0e10cSrcweir fo:wrap-option (no-wrap | wrap) #IMPLIED 316cdf0e10cSrcweir> 317cdf0e10cSrcweir<!ELEMENT style:columns (style:column-sep?,style:column*)> 318cdf0e10cSrcweir<!ATTLIST style:columns fo:column-count %nonNegativeInteger; #IMPLIED> 319cdf0e10cSrcweir<!ATTLIST style:columns fo:column-gap %positiveLength; #IMPLIED> 320cdf0e10cSrcweir 321cdf0e10cSrcweir<!ELEMENT style:column EMPTY> 322cdf0e10cSrcweir<!ATTLIST style:column style:rel-width CDATA #IMPLIED> 323cdf0e10cSrcweir<!ATTLIST style:column fo:margin-left %positiveLength; #IMPLIED> 324cdf0e10cSrcweir<!ATTLIST style:column fo:margin-right %positiveLength; #IMPLIED> 325cdf0e10cSrcweir 326cdf0e10cSrcweir<!ELEMENT style:column-sep EMPTY> 327cdf0e10cSrcweir<!ATTLIST style:column-sep style:style (none|solid|dotted|dashed|dot-dashed) 328cdf0e10cSrcweir "solid"> 329cdf0e10cSrcweir<!ATTLIST style:column-sep style:width %length; #REQUIRED> 330cdf0e10cSrcweir<!ATTLIST style:column-sep style:height %percentage; "100%"> 331cdf0e10cSrcweir<!ATTLIST style:column-sep style:vertical-align (top|middle|bottom) "top"> 332cdf0e10cSrcweir<!ATTLIST style:column-sep style:color %color; "#000000"> 333cdf0e10cSrcweir 334cdf0e10cSrcweir<!-- page master properties --> 335cdf0e10cSrcweir<!ELEMENT style:page-master (style:properties?, style:header-style?, style:footer-style?)> 336cdf0e10cSrcweir<!ATTLIST style:page-master style:name %styleName; #REQUIRED> 337cdf0e10cSrcweir<!ATTLIST style:page-master style:page-usage (all|left|right|mirrored) "all"> 338cdf0e10cSrcweir 339cdf0e10cSrcweir<!ELEMENT style:header-style (style:properties?)> 340cdf0e10cSrcweir<!ELEMENT style:footer-style (style:properties?)> 341cdf0e10cSrcweir 342cdf0e10cSrcweir<!ATTLIST style:properties fo:page-width %length; #IMPLIED> 343cdf0e10cSrcweir<!ATTLIST style:properties fo:page-height %length; #IMPLIED> 344cdf0e10cSrcweir<!ATTLIST style:properties style:paper-tray-number %positiveNumberOrDefault; #IMPLIED> 345cdf0e10cSrcweir<!ATTLIST style:properties style:print-orientation (portrait|landscape) #IMPLIED> 346cdf0e10cSrcweir<!ATTLIST style:properties style:print CDATA #IMPLIED> 347cdf0e10cSrcweir<!ATTLIST style:properties style:print-page-order (ttb|ltr) #IMPLIED> 348cdf0e10cSrcweir<!ATTLIST style:properties style:first-page-number %positiveInteger; #IMPLIED> 349cdf0e10cSrcweir<!ATTLIST style:properties style:scale-to %percentage; #IMPLIED> 350cdf0e10cSrcweir<!ATTLIST style:properties style:scale-to-pages %positiveInteger; #IMPLIED> 351cdf0e10cSrcweir<!ATTLIST style:properties style:table-centering (horizontal | vertical | both | none) #IMPLIED> 352cdf0e10cSrcweir 353cdf0e10cSrcweir<!ATTLIST style:properties style:footnote-max-height %lengthOrNoLimit; #IMPLIED> 354cdf0e10cSrcweir<!ATTLIST style:properties style:vertical-align (top|bottom|middle|basline|auto) #IMPLIED> 355cdf0e10cSrcweir 356cdf0e10cSrcweir<!ELEMENT style:footnote-sep EMPTY> 357cdf0e10cSrcweir<!ATTLIST style:footnote-sep style:width %length; #IMPLIED> 358cdf0e10cSrcweir<!ATTLIST style:footnote-sep style:rel-width %percentage; #IMPLIED> 359cdf0e10cSrcweir<!ATTLIST style:footnote-sep style:color %color; #IMPLIED> 360cdf0e10cSrcweir<!ATTLIST style:footnote-sep style:adjustment (left|center|right) "left"> 361cdf0e10cSrcweir<!ATTLIST style:footnote-sep style:distance-before-sep %length; #IMPLIED> 362cdf0e10cSrcweir<!ATTLIST style:footnote-sep style:distance-after-sep %length; #IMPLIED> 363cdf0e10cSrcweir 364cdf0e10cSrcweir<!-- master page --> 365cdf0e10cSrcweir<!ELEMENT style:master-page ( (style:header, style:header-left?)?, (style:footer, style:footer-left?)?, 366cdf0e10cSrcweir office:forms?,style:style*, (%shapes;)*, presentation:notes? )> 367cdf0e10cSrcweir<!ATTLIST style:master-page style:name %styleName; #REQUIRED> 368cdf0e10cSrcweir<!ATTLIST style:master-page style:page-master-name %styleName; #REQUIRED> 369cdf0e10cSrcweir<!ATTLIST style:master-page style:next-style-name %styleName; #IMPLIED> 370cdf0e10cSrcweir<!ATTLIST style:master-page draw:style-name %styleName; #IMPLIED> 371cdf0e10cSrcweir 372cdf0e10cSrcweir<!-- handout master --> 373cdf0e10cSrcweir<!ELEMENT style:handout-master (%shapes;)*> 374cdf0e10cSrcweir<!ATTLIST style:handout-master presentation:presentation-page-layout-name %styleName; #IMPLIED> 375cdf0e10cSrcweir 376cdf0e10cSrcweir<!ENTITY % hd-ft-content "( text:p | (style:region-left?, style:region-center?, style:region-right?) )"> 377cdf0e10cSrcweir<!ELEMENT style:header %hd-ft-content;> 378cdf0e10cSrcweir<!ELEMENT style:footer %hd-ft-content;> 379cdf0e10cSrcweir<!ELEMENT style:header-left %hd-ft-content;> 380cdf0e10cSrcweir<!ATTLIST style:header-left style:display %boolean; "true"> 381cdf0e10cSrcweir<!ELEMENT style:footer-left %hd-ft-content;> 382cdf0e10cSrcweir<!ATTLIST style:footer-left style:display %boolean; "true"> 383cdf0e10cSrcweir 384cdf0e10cSrcweir<!ENTITY % region-content "(text:p*)"> 385cdf0e10cSrcweir<!ELEMENT style:region-left %region-content;> 386cdf0e10cSrcweir<!ELEMENT style:region-center %region-content;> 387cdf0e10cSrcweir<!ELEMENT style:region-right %region-content;> 388