1.20.5 Page Layout

The following doesn’t catch because the style name is not in use. Is there a way to get styles to be specifies as a default without referring to names.

<..oo2 automatic styles..>+
 \Configure{automatic-styles}
    {\csname a:page-layout\endcsname}
 \NewConfigure{page-layout}{1}
 \Configure{page-layout}{%
    <style:page-layout style:name="Standard-page-layout">\Hnewline
      <style:page-layout-properties
          fo:page-width="\the\paperwidth" "8.5in"
          fo:page-height="\the\paperheight" "11in"
          style:num-format="1"
          style:print-orientation="portrait"
          fo:margin-top="0.7874in"
          fo:margin-bottom="0.7874in"
          fo:margin-left="0.7874in"
          fo:margin-right="0.7874in"
          style:writing-mode="lr-tb"
          style:footnote-max-height="0in">\Hnewline
        <style:footnote-sep
          style:width="0.0071in"
          style:distance-before-sep="0.0398in"
          style:distance-after-sep="0.0398in"
          style:adjustment="left"
          style:rel-width="25\%"
          style:color="\#000000"/>\Hnewline
      </style:page-layout-properties>\Hnewline
      <style:header-style/>
      <style:footer-style/>
    </style:page-layout>\Hnewline
 }
-_-_-

<..styles.xml: master-styles..>
 <style:master-page
           style:name="Standard"
           style:page-layout-name="Standard-page-layout"/>\Hnewline
-_-_-

<..styles.xml: automatic-styles..>
 <style:page-layout style:name="Standard-page-layout">
    <style:page-layout-properties
       fo:page-width="\the\paperwidth" "8.5in"
       fo:page-height="\the\paperheight" "11in"
       fo:margin-left="1.0in"
       fo:margin-right="1.0in"
       style:print-orientation="portrait"
     >
     </style:page-layout-properties>
 </style:page-layout>
-_-_-