
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_cc3ffdb58547a3dddb10d8ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0ad0216a28dcc14841576e7c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990200;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7a1309b85f35fa39e0af162b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.835800;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6a14a9f28b50951067341cf6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6d67b3170aac2358056a2736.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.007200px;}
.ls23{letter-spacing:0.012900px;}
.ls48{letter-spacing:0.019350px;}
.ls45{letter-spacing:0.045150px;}
.ls24{letter-spacing:0.064500px;}
.lsb{letter-spacing:0.103200px;}
.ls3c{letter-spacing:0.129000px;}
.ls3f{letter-spacing:0.141900px;}
.ls22{letter-spacing:0.154800px;}
.ls42{letter-spacing:0.161250px;}
.ls44{letter-spacing:0.167700px;}
.ls43{letter-spacing:0.174150px;}
.ls25{letter-spacing:0.180600px;}
.ls46{letter-spacing:0.219300px;}
.ls3e{letter-spacing:0.245100px;}
.ls3a{letter-spacing:0.290250px;}
.ls40{letter-spacing:0.296700px;}
.ls49{letter-spacing:0.303150px;}
.ls26{letter-spacing:0.309600px;}
.ls1e{letter-spacing:0.316050px;}
.ls13{letter-spacing:0.322500px;}
.ls2{letter-spacing:0.341850px;}
.ls20{letter-spacing:0.354750px;}
.ls2e{letter-spacing:0.374100px;}
.ls1f{letter-spacing:0.380550px;}
.ls30{letter-spacing:0.387000px;}
.ls8{letter-spacing:0.393450px;}
.ls17{letter-spacing:0.399900px;}
.ls27{letter-spacing:0.419250px;}
.ls38{letter-spacing:0.432150px;}
.ls10{letter-spacing:0.438600px;}
.ls3b{letter-spacing:0.451500px;}
.ls47{letter-spacing:0.464400px;}
.ls28{letter-spacing:0.470850px;}
.ls35{letter-spacing:0.503100px;}
.ls2d{letter-spacing:0.516000px;}
.ls14{letter-spacing:0.580500px;}
.ls41{letter-spacing:0.593400px;}
.ls6{letter-spacing:0.645000px;}
.ls1b{letter-spacing:0.657900px;}
.ls1d{letter-spacing:0.670800px;}
.ls33{letter-spacing:0.690150px;}
.ls12{letter-spacing:0.696600px;}
.ls9{letter-spacing:0.722400px;}
.ls2f{letter-spacing:0.728850px;}
.lsd{letter-spacing:0.735300px;}
.lsa{letter-spacing:0.748200px;}
.ls11{letter-spacing:0.761100px;}
.ls4{letter-spacing:0.793350px;}
.ls1c{letter-spacing:0.799800px;}
.ls2c{letter-spacing:0.819150px;}
.ls37{letter-spacing:0.870750px;}
.ls32{letter-spacing:0.909450px;}
.ls16{letter-spacing:0.948150px;}
.ls2a{letter-spacing:0.973950px;}
.lsc{letter-spacing:0.993300px;}
.ls34{letter-spacing:1.012650px;}
.lsf{letter-spacing:1.025550px;}
.ls4a{letter-spacing:1.038450px;}
.ls2b{letter-spacing:1.070700px;}
.ls3d{letter-spacing:1.102950px;}
.ls18{letter-spacing:1.193250px;}
.ls15{letter-spacing:1.206150px;}
.ls39{letter-spacing:1.219050px;}
.ls31{letter-spacing:1.309350px;}
.ls7{letter-spacing:1.367400px;}
.ls5{letter-spacing:1.393200px;}
.ls3{letter-spacing:1.425450px;}
.ls21{letter-spacing:1.631850px;}
.ls36{letter-spacing:1.651200px;}
.lse{letter-spacing:2.109150px;}
.ls29{letter-spacing:894.972600px;}
.ls1{letter-spacing:1000.722000px;}
.ls0{letter-spacing:1433.038800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3d{word-spacing:-17.625000px;}
.ws2{word-spacing:-16.125000px;}
.ws0{word-spacing:-12.750000px;}
.ws35{word-spacing:-0.464400px;}
.ws24{word-spacing:-0.328950px;}
.ws1{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.ws6b{word-spacing:0.070950px;}
.ws3e{word-spacing:0.116100px;}
.ws62{word-spacing:0.129000px;}
.ws9{word-spacing:0.264450px;}
.ws20{word-spacing:0.335400px;}
.ws40{word-spacing:0.632100px;}
.ws2b{word-spacing:0.703050px;}
.ws72{word-spacing:0.709500px;}
.ws43{word-spacing:0.741750px;}
.ws2d{word-spacing:0.999750px;}
.ws15{word-spacing:1.206150px;}
.ws12{word-spacing:1.360950px;}
.ws63{word-spacing:1.373850px;}
.ws70{word-spacing:1.502850px;}
.ws6f{word-spacing:1.560900px;}
.ws6{word-spacing:1.612500px;}
.ws4e{word-spacing:1.715700px;}
.ws5c{word-spacing:1.857600px;}
.ws50{word-spacing:2.005950px;}
.ws21{word-spacing:2.096250px;}
.ws51{word-spacing:2.102700px;}
.ws65{word-spacing:2.238150px;}
.ws33{word-spacing:2.289750px;}
.ws47{word-spacing:2.451000px;}
.ws30{word-spacing:2.541300px;}
.ws3f{word-spacing:2.554200px;}
.ws1e{word-spacing:2.773500px;}
.wsb{word-spacing:2.857350px;}
.ws59{word-spacing:2.947650px;}
.ws58{word-spacing:2.973450px;}
.ws73{word-spacing:2.992800px;}
.ws25{word-spacing:2.999250px;}
.ws5b{word-spacing:3.012150px;}
.ws55{word-spacing:3.063750px;}
.ws37{word-spacing:3.070200px;}
.ws4d{word-spacing:3.147600px;}
.ws64{word-spacing:3.154050px;}
.ws52{word-spacing:3.199200px;}
.ws14{word-spacing:3.225000px;}
.ws36{word-spacing:3.334650px;}
.ws57{word-spacing:3.347550px;}
.ws31{word-spacing:3.412050px;}
.ws42{word-spacing:3.457200px;}
.ws29{word-spacing:3.895800px;}
.ws2a{word-spacing:3.908700px;}
.ws60{word-spacing:4.057050px;}
.ws4a{word-spacing:4.115100px;}
.ws5f{word-spacing:4.128000px;}
.ws66{word-spacing:4.140900px;}
.ws54{word-spacing:4.173150px;}
.ws5{word-spacing:4.205400px;}
.ws3b{word-spacing:4.237650px;}
.ws22{word-spacing:4.250550px;}
.ws1b{word-spacing:4.308600px;}
.ws8{word-spacing:4.340850px;}
.ws71{word-spacing:4.373100px;}
.ws26{word-spacing:4.398900px;}
.wsa{word-spacing:4.424700px;}
.ws28{word-spacing:4.437600px;}
.ws32{word-spacing:4.637550px;}
.ws46{word-spacing:4.669800px;}
.ws11{word-spacing:4.721400px;}
.ws10{word-spacing:4.805250px;}
.ws38{word-spacing:4.818150px;}
.ws5d{word-spacing:4.927800px;}
.ws6e{word-spacing:4.992300px;}
.ws48{word-spacing:5.005200px;}
.ws16{word-spacing:5.011650px;}
.ws53{word-spacing:5.263200px;}
.ws34{word-spacing:5.314800px;}
.ws23{word-spacing:5.321250px;}
.ws49{word-spacing:5.334150px;}
.wsf{word-spacing:5.495400px;}
.ws6a{word-spacing:5.501850px;}
.wsd{word-spacing:5.527650px;}
.ws13{word-spacing:5.534100px;}
.ws61{word-spacing:5.650200px;}
.wsc{word-spacing:5.746950px;}
.ws18{word-spacing:5.798550px;}
.ws56{word-spacing:5.830800px;}
.ws39{word-spacing:6.024300px;}
.ws2f{word-spacing:6.043650px;}
.ws44{word-spacing:6.056550px;}
.ws1f{word-spacing:6.069450px;}
.ws4f{word-spacing:6.237150px;}
.ws4b{word-spacing:6.250050px;}
.ws67{word-spacing:6.321000px;}
.ws1d{word-spacing:6.411300px;}
.ws17{word-spacing:6.514500px;}
.ws4c{word-spacing:6.611250px;}
.wse{word-spacing:6.630600px;}
.ws2e{word-spacing:6.669300px;}
.ws3c{word-spacing:6.830550px;}
.ws3a{word-spacing:6.940200px;}
.ws45{word-spacing:7.056300px;}
.ws19{word-spacing:7.165950px;}
.ws1c{word-spacing:7.198200px;}
.ws6d{word-spacing:7.294950px;}
.ws69{word-spacing:7.307850px;}
.ws6c{word-spacing:7.314300px;}
.ws27{word-spacing:7.475550px;}
.ws68{word-spacing:7.488450px;}
.ws5e{word-spacing:7.507800px;}
.ws5a{word-spacing:7.752900px;}
.ws1a{word-spacing:7.804500px;}
.ws2c{word-spacing:7.972200px;}
.ws7{word-spacing:8.030250px;}
.ws4{word-spacing:8.062500px;}
.ws41{word-spacing:8.068950px;}
._7{margin-left:-318.348000px;}
._9{margin-left:-290.361600px;}
._4{margin-left:-24.290700px;}
._3{margin-left:-17.331150px;}
._2{margin-left:-1.425450px;}
._6{width:3.889350px;}
._5{width:6.069450px;}
._0{width:15.340800px;}
._1{width:899.085000px;}
._8{width:2699.373000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:52.500000px;}
.fs4{font-size:64.500000px;}
.fs1{font-size:69.000000px;}
.fs3{font-size:70.500000px;}
.y63{bottom:-46.275150px;}
.y0{bottom:0.000000px;}
.y1{bottom:73.574250px;}
.yc5{bottom:128.726400px;}
.y95{bottom:128.768325px;}
.y32{bottom:128.790788px;}
.y62{bottom:128.794013px;}
.yc4{bottom:146.386500px;}
.y94{bottom:146.428425px;}
.y31{bottom:146.450888px;}
.y61{bottom:146.452500px;}
.yc3{bottom:164.046600px;}
.y93{bottom:164.088525px;}
.y30{bottom:164.110988px;}
.y92{bottom:181.748625px;}
.y60{bottom:181.769475px;}
.y2f{bottom:181.771088px;}
.yc2{bottom:190.502888px;}
.y91{bottom:199.408725px;}
.y5f{bottom:199.427963px;}
.y2e{bottom:199.431188px;}
.yc1{bottom:208.164600px;}
.y90{bottom:217.068825px;}
.y5e{bottom:217.086450px;}
.y2d{bottom:217.091288px;}
.yc0{bottom:225.826313px;}
.y8f{bottom:234.728925px;}
.y2c{bottom:234.751388px;}
.ybf{bottom:243.488025px;}
.y5d{bottom:243.542738px;}
.y8e{bottom:252.389025px;}
.y2b{bottom:252.411488px;}
.ybe{bottom:261.149738px;}
.y5c{bottom:261.201225px;}
.y8d{bottom:270.049125px;}
.y2a{bottom:270.071588px;}
.ybd{bottom:278.811450px;}
.y5b{bottom:278.859713px;}
.y8c{bottom:287.709225px;}
.y29{bottom:287.731688px;}
.ybc{bottom:296.473163px;}
.y5a{bottom:296.518200px;}
.y8b{bottom:305.369325px;}
.y28{bottom:305.391788px;}
.ybb{bottom:314.134875px;}
.y59{bottom:314.176688px;}
.y8a{bottom:323.029425px;}
.y27{bottom:323.051888px;}
.yba{bottom:331.796588px;}
.y58{bottom:331.835175px;}
.y89{bottom:340.689525px;}
.y26{bottom:340.711988px;}
.yb9{bottom:349.458300px;}
.y57{bottom:349.493663px;}
.y88{bottom:358.349625px;}
.y25{bottom:358.372088px;}
.yb8{bottom:367.120013px;}
.y56{bottom:367.152150px;}
.y24{bottom:376.032188px;}
.yb7{bottom:384.781725px;}
.y87{bottom:384.805913px;}
.y55{bottom:384.810638px;}
.y23{bottom:393.692288px;}
.yb6{bottom:402.443438px;}
.y86{bottom:402.466013px;}
.y54{bottom:402.469125px;}
.y22{bottom:411.352388px;}
.yb5{bottom:420.105150px;}
.y85{bottom:420.126113px;}
.y53{bottom:420.127613px;}
.y21{bottom:429.012487px;}
.yb4{bottom:437.766863px;}
.y52{bottom:437.786100px;}
.y84{bottom:437.786213px;}
.y20{bottom:446.672587px;}
.yb3{bottom:455.428575px;}
.y51{bottom:455.444588px;}
.y83{bottom:455.446313px;}
.y1f{bottom:464.332687px;}
.yb2{bottom:473.090288px;}
.y50{bottom:473.103075px;}
.y82{bottom:473.106413px;}
.y1e{bottom:481.992787px;}
.y4f{bottom:490.761563px;}
.y81{bottom:490.766513px;}
.yb1{bottom:499.546575px;}
.y1d{bottom:499.652887px;}
.y4e{bottom:508.420050px;}
.y80{bottom:508.425000px;}
.yb0{bottom:517.206675px;}
.y1c{bottom:517.312987px;}
.y4d{bottom:526.078538px;}
.y7f{bottom:526.085100px;}
.yaf{bottom:534.866775px;}
.y4c{bottom:543.737025px;}
.y7e{bottom:543.745200px;}
.y1b{bottom:543.769275px;}
.yae{bottom:552.526875px;}
.y4b{bottom:561.395513px;}
.y7d{bottom:561.405300px;}
.y1a{bottom:561.430987px;}
.yad{bottom:570.186975px;}
.y4a{bottom:579.054000px;}
.y7c{bottom:579.065400px;}
.y19{bottom:579.092700px;}
.yac{bottom:587.847075px;}
.y49{bottom:596.712488px;}
.y7b{bottom:596.725500px;}
.y18{bottom:596.754413px;}
.yab{bottom:605.507175px;}
.y48{bottom:614.370975px;}
.y7a{bottom:614.385600px;}
.y17{bottom:614.416125px;}
.yaa{bottom:623.167275px;}
.y47{bottom:632.031075px;}
.y79{bottom:632.045700px;}
.y16{bottom:632.077838px;}
.ya9{bottom:640.827375px;}
.y46{bottom:649.689563px;}
.y15{bottom:649.739550px;}
.ya8{bottom:658.487475px;}
.y78{bottom:658.500375px;}
.y45{bottom:667.348050px;}
.ya7{bottom:676.147575px;}
.y77{bottom:676.158863px;}
.y14{bottom:676.195838px;}
.y44{bottom:685.006538px;}
.ya6{bottom:693.807675px;}
.y76{bottom:693.817350px;}
.y13{bottom:693.855937px;}
.y43{bottom:702.665025px;}
.ya5{bottom:711.467775px;}
.y75{bottom:711.475837px;}
.y12{bottom:711.516038px;}
.y42{bottom:720.323513px;}
.ya4{bottom:729.127875px;}
.y74{bottom:729.134325px;}
.y11{bottom:729.176137px;}
.y41{bottom:746.779800px;}
.y73{bottom:746.792813px;}
.y10{bottom:746.836238px;}
.ya3{bottom:755.585775px;}
.y40{bottom:764.438288px;}
.y72{bottom:764.451300px;}
.yf{bottom:764.496337px;}
.ya2{bottom:773.247488px;}
.y3f{bottom:782.096775px;}
.y71{bottom:782.109787px;}
.ye{bottom:782.156438px;}
.ya1{bottom:790.909200px;}
.y3e{bottom:799.755263px;}
.y70{bottom:799.768275px;}
.yd{bottom:799.816538px;}
.ya0{bottom:808.570913px;}
.y3d{bottom:817.413750px;}
.y6f{bottom:817.426762px;}
.yc{bottom:817.476637px;}
.y9f{bottom:826.232625px;}
.y3c{bottom:835.072238px;}
.y6e{bottom:835.085250px;}
.yb{bottom:835.136737px;}
.y9e{bottom:843.894338px;}
.y3b{bottom:852.730725px;}
.y6d{bottom:852.743738px;}
.ya{bottom:852.796838px;}
.y9d{bottom:861.556050px;}
.yd4{bottom:862.033350px;}
.ycc{bottom:862.036575px;}
.y3a{bottom:870.389213px;}
.y6c{bottom:870.402225px;}
.y9{bottom:870.456937px;}
.y9c{bottom:879.217763px;}
.yd3{bottom:879.630562px;}
.ycb{bottom:879.633788px;}
.y39{bottom:888.047700px;}
.y6b{bottom:888.060712px;}
.y8{bottom:888.117037px;}
.y9b{bottom:896.879475px;}
.yd2{bottom:897.227775px;}
.yca{bottom:897.231000px;}
.y38{bottom:905.706188px;}
.y6a{bottom:905.719200px;}
.y7{bottom:905.777137px;}
.y9a{bottom:914.541188px;}
.yd1{bottom:914.824987px;}
.yc9{bottom:914.828213px;}
.y37{bottom:923.366288px;}
.y69{bottom:923.377688px;}
.y99{bottom:932.202900px;}
.yd0{bottom:932.422200px;}
.y36{bottom:941.024775px;}
.y6{bottom:941.032837px;}
.y68{bottom:941.036175px;}
.yc8{bottom:941.221612px;}
.y98{bottom:958.659188px;}
.y35{bottom:958.684875px;}
.y5{bottom:958.692937px;}
.y67{bottom:958.694663px;}
.ycf{bottom:958.815600px;}
.yc7{bottom:958.818825px;}
.y97{bottom:976.320900px;}
.y34{bottom:976.344975px;}
.y4{bottom:976.353038px;}
.y66{bottom:976.353150px;}
.yce{bottom:976.412813px;}
.yc6{bottom:976.416037px;}
.y96{bottom:993.982613px;}
.y33{bottom:994.005075px;}
.ycd{bottom:994.010025px;}
.y65{bottom:994.013250px;}
.y3{bottom:994.014750px;}
.y64{bottom:1025.941650px;}
.y2{bottom:1025.943000px;}
.h6{height:26.244141px;}
.h2{height:44.013000px;}
.h5{height:54.244500px;}
.h4{height:55.663500px;}
.h3{height:60.841500px;}
.h1{height:1146.000000px;}
.h0{height:1146.258900px;}
.w0{width:844.370400px;}
.w1{width:844.500000px;}
.x0{left:0.000000px;}
.x5{left:11.988150px;}
.x6{left:82.027500px;}
.x1{left:90.871650px;}
.x7{left:103.286700px;}
.x2{left:112.130850px;}
.x8{left:436.946813px;}
.x4{left:445.792575px;}
.x9{left:458.207625px;}
.x3{left:467.051775px;}
.xe{left:469.731750px;}
.xd{left:488.759250px;}
.xb{left:533.473875px;}
.xc{left:556.081125px;}
.xa{left:609.356513px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.006400pt;}
.ls23{letter-spacing:0.011467pt;}
.ls48{letter-spacing:0.017200pt;}
.ls45{letter-spacing:0.040133pt;}
.ls24{letter-spacing:0.057333pt;}
.lsb{letter-spacing:0.091733pt;}
.ls3c{letter-spacing:0.114667pt;}
.ls3f{letter-spacing:0.126133pt;}
.ls22{letter-spacing:0.137600pt;}
.ls42{letter-spacing:0.143333pt;}
.ls44{letter-spacing:0.149067pt;}
.ls43{letter-spacing:0.154800pt;}
.ls25{letter-spacing:0.160533pt;}
.ls46{letter-spacing:0.194933pt;}
.ls3e{letter-spacing:0.217867pt;}
.ls3a{letter-spacing:0.258000pt;}
.ls40{letter-spacing:0.263733pt;}
.ls49{letter-spacing:0.269467pt;}
.ls26{letter-spacing:0.275200pt;}
.ls1e{letter-spacing:0.280933pt;}
.ls13{letter-spacing:0.286667pt;}
.ls2{letter-spacing:0.303867pt;}
.ls20{letter-spacing:0.315333pt;}
.ls2e{letter-spacing:0.332533pt;}
.ls1f{letter-spacing:0.338267pt;}
.ls30{letter-spacing:0.344000pt;}
.ls8{letter-spacing:0.349733pt;}
.ls17{letter-spacing:0.355467pt;}
.ls27{letter-spacing:0.372667pt;}
.ls38{letter-spacing:0.384133pt;}
.ls10{letter-spacing:0.389867pt;}
.ls3b{letter-spacing:0.401333pt;}
.ls47{letter-spacing:0.412800pt;}
.ls28{letter-spacing:0.418533pt;}
.ls35{letter-spacing:0.447200pt;}
.ls2d{letter-spacing:0.458667pt;}
.ls14{letter-spacing:0.516000pt;}
.ls41{letter-spacing:0.527467pt;}
.ls6{letter-spacing:0.573333pt;}
.ls1b{letter-spacing:0.584800pt;}
.ls1d{letter-spacing:0.596267pt;}
.ls33{letter-spacing:0.613467pt;}
.ls12{letter-spacing:0.619200pt;}
.ls9{letter-spacing:0.642133pt;}
.ls2f{letter-spacing:0.647867pt;}
.lsd{letter-spacing:0.653600pt;}
.lsa{letter-spacing:0.665067pt;}
.ls11{letter-spacing:0.676533pt;}
.ls4{letter-spacing:0.705200pt;}
.ls1c{letter-spacing:0.710933pt;}
.ls2c{letter-spacing:0.728133pt;}
.ls37{letter-spacing:0.774000pt;}
.ls32{letter-spacing:0.808400pt;}
.ls16{letter-spacing:0.842800pt;}
.ls2a{letter-spacing:0.865733pt;}
.lsc{letter-spacing:0.882933pt;}
.ls34{letter-spacing:0.900133pt;}
.lsf{letter-spacing:0.911600pt;}
.ls4a{letter-spacing:0.923067pt;}
.ls2b{letter-spacing:0.951733pt;}
.ls3d{letter-spacing:0.980400pt;}
.ls18{letter-spacing:1.060667pt;}
.ls15{letter-spacing:1.072133pt;}
.ls39{letter-spacing:1.083600pt;}
.ls31{letter-spacing:1.163867pt;}
.ls7{letter-spacing:1.215467pt;}
.ls5{letter-spacing:1.238400pt;}
.ls3{letter-spacing:1.267067pt;}
.ls21{letter-spacing:1.450533pt;}
.ls36{letter-spacing:1.467733pt;}
.lse{letter-spacing:1.874800pt;}
.ls29{letter-spacing:795.531200pt;}
.ls1{letter-spacing:889.530667pt;}
.ls0{letter-spacing:1273.812267pt;}
.ws3d{word-spacing:-15.666667pt;}
.ws2{word-spacing:-14.333333pt;}
.ws0{word-spacing:-11.333333pt;}
.ws35{word-spacing:-0.412800pt;}
.ws24{word-spacing:-0.292400pt;}
.ws1{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.063067pt;}
.ws3e{word-spacing:0.103200pt;}
.ws62{word-spacing:0.114667pt;}
.ws9{word-spacing:0.235067pt;}
.ws20{word-spacing:0.298133pt;}
.ws40{word-spacing:0.561867pt;}
.ws2b{word-spacing:0.624933pt;}
.ws72{word-spacing:0.630667pt;}
.ws43{word-spacing:0.659333pt;}
.ws2d{word-spacing:0.888667pt;}
.ws15{word-spacing:1.072133pt;}
.ws12{word-spacing:1.209733pt;}
.ws63{word-spacing:1.221200pt;}
.ws70{word-spacing:1.335867pt;}
.ws6f{word-spacing:1.387467pt;}
.ws6{word-spacing:1.433333pt;}
.ws4e{word-spacing:1.525067pt;}
.ws5c{word-spacing:1.651200pt;}
.ws50{word-spacing:1.783067pt;}
.ws21{word-spacing:1.863333pt;}
.ws51{word-spacing:1.869067pt;}
.ws65{word-spacing:1.989467pt;}
.ws33{word-spacing:2.035333pt;}
.ws47{word-spacing:2.178667pt;}
.ws30{word-spacing:2.258933pt;}
.ws3f{word-spacing:2.270400pt;}
.ws1e{word-spacing:2.465333pt;}
.wsb{word-spacing:2.539867pt;}
.ws59{word-spacing:2.620133pt;}
.ws58{word-spacing:2.643067pt;}
.ws73{word-spacing:2.660267pt;}
.ws25{word-spacing:2.666000pt;}
.ws5b{word-spacing:2.677467pt;}
.ws55{word-spacing:2.723333pt;}
.ws37{word-spacing:2.729067pt;}
.ws4d{word-spacing:2.797867pt;}
.ws64{word-spacing:2.803600pt;}
.ws52{word-spacing:2.843733pt;}
.ws14{word-spacing:2.866667pt;}
.ws36{word-spacing:2.964133pt;}
.ws57{word-spacing:2.975600pt;}
.ws31{word-spacing:3.032933pt;}
.ws42{word-spacing:3.073067pt;}
.ws29{word-spacing:3.462933pt;}
.ws2a{word-spacing:3.474400pt;}
.ws60{word-spacing:3.606267pt;}
.ws4a{word-spacing:3.657867pt;}
.ws5f{word-spacing:3.669333pt;}
.ws66{word-spacing:3.680800pt;}
.ws54{word-spacing:3.709467pt;}
.ws5{word-spacing:3.738133pt;}
.ws3b{word-spacing:3.766800pt;}
.ws22{word-spacing:3.778267pt;}
.ws1b{word-spacing:3.829867pt;}
.ws8{word-spacing:3.858533pt;}
.ws71{word-spacing:3.887200pt;}
.ws26{word-spacing:3.910133pt;}
.wsa{word-spacing:3.933067pt;}
.ws28{word-spacing:3.944533pt;}
.ws32{word-spacing:4.122267pt;}
.ws46{word-spacing:4.150933pt;}
.ws11{word-spacing:4.196800pt;}
.ws10{word-spacing:4.271333pt;}
.ws38{word-spacing:4.282800pt;}
.ws5d{word-spacing:4.380267pt;}
.ws6e{word-spacing:4.437600pt;}
.ws48{word-spacing:4.449067pt;}
.ws16{word-spacing:4.454800pt;}
.ws53{word-spacing:4.678400pt;}
.ws34{word-spacing:4.724267pt;}
.ws23{word-spacing:4.730000pt;}
.ws49{word-spacing:4.741467pt;}
.wsf{word-spacing:4.884800pt;}
.ws6a{word-spacing:4.890533pt;}
.wsd{word-spacing:4.913467pt;}
.ws13{word-spacing:4.919200pt;}
.ws61{word-spacing:5.022400pt;}
.wsc{word-spacing:5.108400pt;}
.ws18{word-spacing:5.154267pt;}
.ws56{word-spacing:5.182933pt;}
.ws39{word-spacing:5.354933pt;}
.ws2f{word-spacing:5.372133pt;}
.ws44{word-spacing:5.383600pt;}
.ws1f{word-spacing:5.395067pt;}
.ws4f{word-spacing:5.544133pt;}
.ws4b{word-spacing:5.555600pt;}
.ws67{word-spacing:5.618667pt;}
.ws1d{word-spacing:5.698933pt;}
.ws17{word-spacing:5.790667pt;}
.ws4c{word-spacing:5.876667pt;}
.wse{word-spacing:5.893867pt;}
.ws2e{word-spacing:5.928267pt;}
.ws3c{word-spacing:6.071600pt;}
.ws3a{word-spacing:6.169067pt;}
.ws45{word-spacing:6.272267pt;}
.ws19{word-spacing:6.369733pt;}
.ws1c{word-spacing:6.398400pt;}
.ws6d{word-spacing:6.484400pt;}
.ws69{word-spacing:6.495867pt;}
.ws6c{word-spacing:6.501600pt;}
.ws27{word-spacing:6.644933pt;}
.ws68{word-spacing:6.656400pt;}
.ws5e{word-spacing:6.673600pt;}
.ws5a{word-spacing:6.891467pt;}
.ws1a{word-spacing:6.937333pt;}
.ws2c{word-spacing:7.086400pt;}
.ws7{word-spacing:7.138000pt;}
.ws4{word-spacing:7.166667pt;}
.ws41{word-spacing:7.172400pt;}
._7{margin-left:-282.976000pt;}
._9{margin-left:-258.099200pt;}
._4{margin-left:-21.591733pt;}
._3{margin-left:-15.405467pt;}
._2{margin-left:-1.267067pt;}
._6{width:3.457200pt;}
._5{width:5.395067pt;}
._0{width:13.636267pt;}
._1{width:799.186667pt;}
._8{width:2399.442667pt;}
.fs5{font-size:32.000000pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:46.666667pt;}
.fs4{font-size:57.333333pt;}
.fs1{font-size:61.333333pt;}
.fs3{font-size:62.666667pt;}
.y63{bottom:-41.133467pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:65.399333pt;}
.yc5{bottom:114.423467pt;}
.y95{bottom:114.460733pt;}
.y32{bottom:114.480700pt;}
.y62{bottom:114.483567pt;}
.yc4{bottom:130.121333pt;}
.y94{bottom:130.158600pt;}
.y31{bottom:130.178567pt;}
.y61{bottom:130.180000pt;}
.yc3{bottom:145.819200pt;}
.y93{bottom:145.856467pt;}
.y30{bottom:145.876433pt;}
.y92{bottom:161.554333pt;}
.y60{bottom:161.572867pt;}
.y2f{bottom:161.574300pt;}
.yc2{bottom:169.335900pt;}
.y91{bottom:177.252200pt;}
.y5f{bottom:177.269300pt;}
.y2e{bottom:177.272167pt;}
.yc1{bottom:185.035200pt;}
.y90{bottom:192.950067pt;}
.y5e{bottom:192.965733pt;}
.y2d{bottom:192.970033pt;}
.yc0{bottom:200.734500pt;}
.y8f{bottom:208.647933pt;}
.y2c{bottom:208.667900pt;}
.ybf{bottom:216.433800pt;}
.y5d{bottom:216.482433pt;}
.y8e{bottom:224.345800pt;}
.y2b{bottom:224.365767pt;}
.ybe{bottom:232.133100pt;}
.y5c{bottom:232.178867pt;}
.y8d{bottom:240.043667pt;}
.y2a{bottom:240.063633pt;}
.ybd{bottom:247.832400pt;}
.y5b{bottom:247.875300pt;}
.y8c{bottom:255.741533pt;}
.y29{bottom:255.761500pt;}
.ybc{bottom:263.531700pt;}
.y5a{bottom:263.571733pt;}
.y8b{bottom:271.439400pt;}
.y28{bottom:271.459367pt;}
.ybb{bottom:279.231000pt;}
.y59{bottom:279.268167pt;}
.y8a{bottom:287.137267pt;}
.y27{bottom:287.157233pt;}
.yba{bottom:294.930300pt;}
.y58{bottom:294.964600pt;}
.y89{bottom:302.835133pt;}
.y26{bottom:302.855100pt;}
.yb9{bottom:310.629600pt;}
.y57{bottom:310.661033pt;}
.y88{bottom:318.533000pt;}
.y25{bottom:318.552967pt;}
.yb8{bottom:326.328900pt;}
.y56{bottom:326.357467pt;}
.y24{bottom:334.250833pt;}
.yb7{bottom:342.028200pt;}
.y87{bottom:342.049700pt;}
.y55{bottom:342.053900pt;}
.y23{bottom:349.948700pt;}
.yb6{bottom:357.727500pt;}
.y86{bottom:357.747567pt;}
.y54{bottom:357.750333pt;}
.y22{bottom:365.646567pt;}
.yb5{bottom:373.426800pt;}
.y85{bottom:373.445433pt;}
.y53{bottom:373.446767pt;}
.y21{bottom:381.344433pt;}
.yb4{bottom:389.126100pt;}
.y52{bottom:389.143200pt;}
.y84{bottom:389.143300pt;}
.y20{bottom:397.042300pt;}
.yb3{bottom:404.825400pt;}
.y51{bottom:404.839633pt;}
.y83{bottom:404.841167pt;}
.y1f{bottom:412.740167pt;}
.yb2{bottom:420.524700pt;}
.y50{bottom:420.536067pt;}
.y82{bottom:420.539033pt;}
.y1e{bottom:428.438033pt;}
.y4f{bottom:436.232500pt;}
.y81{bottom:436.236900pt;}
.yb1{bottom:444.041400pt;}
.y1d{bottom:444.135900pt;}
.y4e{bottom:451.928933pt;}
.y80{bottom:451.933333pt;}
.yb0{bottom:459.739267pt;}
.y1c{bottom:459.833767pt;}
.y4d{bottom:467.625367pt;}
.y7f{bottom:467.631200pt;}
.yaf{bottom:475.437133pt;}
.y4c{bottom:483.321800pt;}
.y7e{bottom:483.329067pt;}
.y1b{bottom:483.350467pt;}
.yae{bottom:491.135000pt;}
.y4b{bottom:499.018233pt;}
.y7d{bottom:499.026933pt;}
.y1a{bottom:499.049767pt;}
.yad{bottom:506.832867pt;}
.y4a{bottom:514.714667pt;}
.y7c{bottom:514.724800pt;}
.y19{bottom:514.749067pt;}
.yac{bottom:522.530733pt;}
.y49{bottom:530.411100pt;}
.y7b{bottom:530.422667pt;}
.y18{bottom:530.448367pt;}
.yab{bottom:538.228600pt;}
.y48{bottom:546.107533pt;}
.y7a{bottom:546.120533pt;}
.y17{bottom:546.147667pt;}
.yaa{bottom:553.926467pt;}
.y47{bottom:561.805400pt;}
.y79{bottom:561.818400pt;}
.y16{bottom:561.846967pt;}
.ya9{bottom:569.624333pt;}
.y46{bottom:577.501833pt;}
.y15{bottom:577.546267pt;}
.ya8{bottom:585.322200pt;}
.y78{bottom:585.333667pt;}
.y45{bottom:593.198267pt;}
.ya7{bottom:601.020067pt;}
.y77{bottom:601.030100pt;}
.y14{bottom:601.062967pt;}
.y44{bottom:608.894700pt;}
.ya6{bottom:616.717933pt;}
.y76{bottom:616.726533pt;}
.y13{bottom:616.760833pt;}
.y43{bottom:624.591133pt;}
.ya5{bottom:632.415800pt;}
.y75{bottom:632.422967pt;}
.y12{bottom:632.458700pt;}
.y42{bottom:640.287567pt;}
.ya4{bottom:648.113667pt;}
.y74{bottom:648.119400pt;}
.y11{bottom:648.156567pt;}
.y41{bottom:663.804267pt;}
.y73{bottom:663.815833pt;}
.y10{bottom:663.854433pt;}
.ya3{bottom:671.631800pt;}
.y40{bottom:679.500700pt;}
.y72{bottom:679.512267pt;}
.yf{bottom:679.552300pt;}
.ya2{bottom:687.331100pt;}
.y3f{bottom:695.197133pt;}
.y71{bottom:695.208700pt;}
.ye{bottom:695.250167pt;}
.ya1{bottom:703.030400pt;}
.y3e{bottom:710.893567pt;}
.y70{bottom:710.905133pt;}
.yd{bottom:710.948033pt;}
.ya0{bottom:718.729700pt;}
.y3d{bottom:726.590000pt;}
.y6f{bottom:726.601567pt;}
.yc{bottom:726.645900pt;}
.y9f{bottom:734.429000pt;}
.y3c{bottom:742.286433pt;}
.y6e{bottom:742.298000pt;}
.yb{bottom:742.343767pt;}
.y9e{bottom:750.128300pt;}
.y3b{bottom:757.982867pt;}
.y6d{bottom:757.994433pt;}
.ya{bottom:758.041633pt;}
.y9d{bottom:765.827600pt;}
.yd4{bottom:766.251867pt;}
.ycc{bottom:766.254733pt;}
.y3a{bottom:773.679300pt;}
.y6c{bottom:773.690867pt;}
.y9{bottom:773.739500pt;}
.y9c{bottom:781.526900pt;}
.yd3{bottom:781.893833pt;}
.ycb{bottom:781.896700pt;}
.y39{bottom:789.375733pt;}
.y6b{bottom:789.387300pt;}
.y8{bottom:789.437367pt;}
.y9b{bottom:797.226200pt;}
.yd2{bottom:797.535800pt;}
.yca{bottom:797.538667pt;}
.y38{bottom:805.072167pt;}
.y6a{bottom:805.083733pt;}
.y7{bottom:805.135233pt;}
.y9a{bottom:812.925500pt;}
.yd1{bottom:813.177767pt;}
.yc9{bottom:813.180633pt;}
.y37{bottom:820.770033pt;}
.y69{bottom:820.780167pt;}
.y99{bottom:828.624800pt;}
.yd0{bottom:828.819733pt;}
.y36{bottom:836.466467pt;}
.y6{bottom:836.473633pt;}
.y68{bottom:836.476600pt;}
.yc8{bottom:836.641433pt;}
.y98{bottom:852.141500pt;}
.y35{bottom:852.164333pt;}
.y5{bottom:852.171500pt;}
.y67{bottom:852.173033pt;}
.ycf{bottom:852.280533pt;}
.yc7{bottom:852.283400pt;}
.y97{bottom:867.840800pt;}
.y34{bottom:867.862200pt;}
.y4{bottom:867.869367pt;}
.y66{bottom:867.869467pt;}
.yce{bottom:867.922500pt;}
.yc6{bottom:867.925367pt;}
.y96{bottom:883.540100pt;}
.y33{bottom:883.560067pt;}
.ycd{bottom:883.564467pt;}
.y65{bottom:883.567333pt;}
.y3{bottom:883.568667pt;}
.y64{bottom:911.948133pt;}
.y2{bottom:911.949333pt;}
.h6{height:23.328125pt;}
.h2{height:39.122667pt;}
.h5{height:48.217333pt;}
.h4{height:49.478667pt;}
.h3{height:54.081333pt;}
.h1{height:1018.666667pt;}
.h0{height:1018.896800pt;}
.w0{width:750.551467pt;}
.w1{width:750.666667pt;}
.x0{left:0.000000pt;}
.x5{left:10.656133pt;}
.x6{left:72.913333pt;}
.x1{left:80.774800pt;}
.x7{left:91.810400pt;}
.x2{left:99.671867pt;}
.x8{left:388.397167pt;}
.x4{left:396.260067pt;}
.x9{left:407.295667pt;}
.x3{left:415.157133pt;}
.xe{left:417.539333pt;}
.xd{left:434.452667pt;}
.xb{left:474.199000pt;}
.xc{left:494.294333pt;}
.xa{left:541.650233pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  