
    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_3fa191571dca3684a07a8972.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_d6dbeaf287fc81a3cc10ddc2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_fdb7a277d7b8f8cad50637f2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729980;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_ed1d10b350c931859ecbacc0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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:ff6;src:url('chunks/assets/font_16dcc94b164efba00144dc80.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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:ff7;src:url('chunks/assets/font_dc22db1dad887d8d132a980c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-0.924000px;}
.ls5{letter-spacing:-0.774000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:19.548000px;}
.ls1{letter-spacing:24.426720px;}
.ls0{letter-spacing:113.904000px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-9.000000px;}
.ws1{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-4.098240px;}
._6{margin-left:-2.949120px;}
._0{margin-left:-1.513440px;}
._1{width:1.195200px;}
._5{width:2.748960px;}
._2{width:4.242960px;}
._4{width:6.023520px;}
._3{width:7.111440px;}
._8{width:8.214480px;}
._7{width:9.265440px;}
._c{width:27.774000px;}
._d{width:40.716000px;}
._e{width:41.896800px;}
._b{width:71.443440px;}
._a{width:72.468000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:233.850000px;}
.y25{bottom:248.430000px;}
.y3e{bottom:251.850000px;}
.y24{bottom:266.430000px;}
.y3d{bottom:269.850000px;}
.y23{bottom:284.475000px;}
.y83{bottom:287.895000px;}
.y22{bottom:302.475000px;}
.y3c{bottom:305.355000px;}
.y82{bottom:305.895000px;}
.y21{bottom:320.835000px;}
.y3b{bottom:321.915000px;}
.y81{bottom:323.895000px;}
.y67{bottom:324.975000px;}
.y3a{bottom:338.475000px;}
.y20{bottom:338.835000px;}
.y80{bottom:341.895000px;}
.y66{bottom:342.975000px;}
.y1f{bottom:357.015000px;}
.y7f{bottom:359.895000px;}
.y65{bottom:360.975000px;}
.y39{bottom:361.155000px;}
.y7e{bottom:377.895000px;}
.y64{bottom:378.975000px;}
.y1e{bottom:387.255000px;}
.y7d{bottom:395.895000px;}
.y63{bottom:396.975000px;}
.y1d{bottom:405.255000px;}
.y7c{bottom:413.895000px;}
.y62{bottom:414.975000px;}
.y1c{bottom:423.255000px;}
.y7b{bottom:431.895000px;}
.y61{bottom:432.975000px;}
.y1b{bottom:441.255000px;}
.y60{bottom:450.975000px;}
.y1a{bottom:459.255000px;}
.y7a{bottom:468.615000px;}
.y5f{bottom:468.975000px;}
.y19{bottom:477.255000px;}
.y5e{bottom:486.975000px;}
.y18{bottom:495.255000px;}
.y5d{bottom:504.975000px;}
.y17{bottom:513.255000px;}
.y79{bottom:517.035000px;}
.y5c{bottom:522.975000px;}
.y16{bottom:531.255000px;}
.y5b{bottom:540.975000px;}
.y78{bottom:548.715000px;}
.y15{bottom:549.255000px;}
.y5a{bottom:558.975000px;}
.y14{bottom:567.285000px;}
.y59{bottom:577.005000px;}
.y13{bottom:585.285000px;}
.y58{bottom:595.005000px;}
.y12{bottom:603.285000px;}
.y57{bottom:613.005000px;}
.y11{bottom:621.285000px;}
.y9a{bottom:624.525000px;}
.y56{bottom:631.005000px;}
.y10{bottom:639.285000px;}
.y99{bottom:641.085000px;}
.y55{bottom:649.005000px;}
.yf{bottom:657.285000px;}
.y98{bottom:657.645000px;}
.y38{bottom:659.085000px;}
.y54{bottom:667.005000px;}
.y97{bottom:674.025000px;}
.ye{bottom:675.285000px;}
.y37{bottom:677.085000px;}
.y53{bottom:685.005000px;}
.y96{bottom:690.585000px;}
.yd{bottom:693.285000px;}
.y36{bottom:695.085000px;}
.y52{bottom:703.005000px;}
.y95{bottom:707.145000px;}
.yc{bottom:711.285000px;}
.y35{bottom:713.085000px;}
.y51{bottom:721.005000px;}
.y94{bottom:723.525000px;}
.yb{bottom:729.285000px;}
.y34{bottom:731.085000px;}
.y77{bottom:734.505000px;}
.y50{bottom:739.005000px;}
.y93{bottom:740.085000px;}
.ya{bottom:747.285000px;}
.y33{bottom:749.085000px;}
.y76{bottom:752.505000px;}
.y92{bottom:756.645000px;}
.y4f{bottom:757.005000px;}
.y9{bottom:765.285000px;}
.y32{bottom:767.085000px;}
.y75{bottom:770.505000px;}
.y91{bottom:773.025000px;}
.y4e{bottom:775.005000px;}
.y31{bottom:785.085000px;}
.y74{bottom:788.505000px;}
.y90{bottom:789.585000px;}
.y4d{bottom:793.005000px;}
.y8{bottom:802.005000px;}
.y30{bottom:803.085000px;}
.y8f{bottom:806.145000px;}
.y73{bottom:806.505000px;}
.y4c{bottom:811.005000px;}
.y2f{bottom:821.085000px;}
.y8e{bottom:822.525000px;}
.y72{bottom:824.505000px;}
.y4b{bottom:829.005000px;}
.y8d{bottom:839.085000px;}
.y71{bottom:842.505000px;}
.y4a{bottom:847.005000px;}
.y7{bottom:850.470000px;}
.y8c{bottom:855.690000px;}
.y2e{bottom:857.850000px;}
.y70{bottom:860.550000px;}
.y49{bottom:865.050000px;}
.y8b{bottom:872.070000px;}
.y6f{bottom:878.550000px;}
.y48{bottom:883.050000px;}
.y6{bottom:884.670000px;}
.y8a{bottom:888.630000px;}
.y6e{bottom:896.550000px;}
.y5{bottom:899.970000px;}
.y47{bottom:901.050000px;}
.y89{bottom:905.190000px;}
.y2d{bottom:906.630000px;}
.y6d{bottom:914.550000px;}
.y46{bottom:919.050000px;}
.y4{bottom:920.850000px;}
.y88{bottom:921.570000px;}
.y2c{bottom:924.630000px;}
.y6c{bottom:932.550000px;}
.y45{bottom:937.050000px;}
.y3{bottom:937.410000px;}
.y87{bottom:938.130000px;}
.y2b{bottom:942.630000px;}
.y6b{bottom:950.550000px;}
.y86{bottom:954.690000px;}
.y44{bottom:955.050000px;}
.y2a{bottom:960.630000px;}
.y2{bottom:964.770000px;}
.y6a{bottom:968.550000px;}
.y85{bottom:971.070000px;}
.y43{bottom:973.050000px;}
.y69{bottom:986.550000px;}
.y84{bottom:987.630000px;}
.y29{bottom:990.690000px;}
.y42{bottom:991.050000px;}
.y28{bottom:1008.690000px;}
.y41{bottom:1009.050000px;}
.y1{bottom:1019.310000px;}
.y68{bottom:1023.270000px;}
.y27{bottom:1026.690000px;}
.y40{bottom:1027.050000px;}
.y26{bottom:1069.170000px;}
.h4{height:35.332031px;}
.hb{height:52.435898px;}
.h5{height:52.998047px;}
.h6{height:54.421875px;}
.hd{height:55.503491px;}
.h8{height:58.651172px;}
.h3{height:59.038594px;}
.ha{height:60.226875px;}
.h9{height:61.423863px;}
.hc{height:72.562500px;}
.h7{height:74.953125px;}
.h2{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:187.409987px;}
.xc{left:193.889987px;}
.x8{left:204.149987px;}
.xd{left:212.609987px;}
.x2{left:221.789987px;}
.x7{left:229.529987px;}
.x4{left:236.369987px;}
.x3{left:239.789987px;}
.x5{left:315.974987px;}
.x6{left:324.974987px;}
.xb{left:668.624987px;}
.x9{left:690.764987px;}
.xa{left:699.269987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.821333pt;}
.ls5{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:17.376000pt;}
.ls1{letter-spacing:21.712640pt;}
.ls0{letter-spacing:101.248000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws7{word-spacing:-12.592000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-8.000000pt;}
.ws1{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-3.642880pt;}
._6{margin-left:-2.621440pt;}
._0{margin-left:-1.345280pt;}
._1{width:1.062400pt;}
._5{width:2.443520pt;}
._2{width:3.771520pt;}
._4{width:5.354240pt;}
._3{width:6.321280pt;}
._8{width:7.301760pt;}
._7{width:8.235947pt;}
._c{width:24.688000pt;}
._d{width:36.192000pt;}
._e{width:37.241600pt;}
._b{width:63.505280pt;}
._a{width:64.416000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:207.866667pt;}
.y25{bottom:220.826667pt;}
.y3e{bottom:223.866667pt;}
.y24{bottom:236.826667pt;}
.y3d{bottom:239.866667pt;}
.y23{bottom:252.866667pt;}
.y83{bottom:255.906667pt;}
.y22{bottom:268.866667pt;}
.y3c{bottom:271.426667pt;}
.y82{bottom:271.906667pt;}
.y21{bottom:285.186667pt;}
.y3b{bottom:286.146667pt;}
.y81{bottom:287.906667pt;}
.y67{bottom:288.866667pt;}
.y3a{bottom:300.866667pt;}
.y20{bottom:301.186667pt;}
.y80{bottom:303.906667pt;}
.y66{bottom:304.866667pt;}
.y1f{bottom:317.346667pt;}
.y7f{bottom:319.906667pt;}
.y65{bottom:320.866667pt;}
.y39{bottom:321.026667pt;}
.y7e{bottom:335.906667pt;}
.y64{bottom:336.866667pt;}
.y1e{bottom:344.226667pt;}
.y7d{bottom:351.906667pt;}
.y63{bottom:352.866667pt;}
.y1d{bottom:360.226667pt;}
.y7c{bottom:367.906667pt;}
.y62{bottom:368.866667pt;}
.y1c{bottom:376.226667pt;}
.y7b{bottom:383.906667pt;}
.y61{bottom:384.866667pt;}
.y1b{bottom:392.226667pt;}
.y60{bottom:400.866667pt;}
.y1a{bottom:408.226667pt;}
.y7a{bottom:416.546667pt;}
.y5f{bottom:416.866667pt;}
.y19{bottom:424.226667pt;}
.y5e{bottom:432.866667pt;}
.y18{bottom:440.226667pt;}
.y5d{bottom:448.866667pt;}
.y17{bottom:456.226667pt;}
.y79{bottom:459.586667pt;}
.y5c{bottom:464.866667pt;}
.y16{bottom:472.226667pt;}
.y5b{bottom:480.866667pt;}
.y78{bottom:487.746667pt;}
.y15{bottom:488.226667pt;}
.y5a{bottom:496.866667pt;}
.y14{bottom:504.253333pt;}
.y59{bottom:512.893333pt;}
.y13{bottom:520.253333pt;}
.y58{bottom:528.893333pt;}
.y12{bottom:536.253333pt;}
.y57{bottom:544.893333pt;}
.y11{bottom:552.253333pt;}
.y9a{bottom:555.133333pt;}
.y56{bottom:560.893333pt;}
.y10{bottom:568.253333pt;}
.y99{bottom:569.853333pt;}
.y55{bottom:576.893333pt;}
.yf{bottom:584.253333pt;}
.y98{bottom:584.573333pt;}
.y38{bottom:585.853333pt;}
.y54{bottom:592.893333pt;}
.y97{bottom:599.133333pt;}
.ye{bottom:600.253333pt;}
.y37{bottom:601.853333pt;}
.y53{bottom:608.893333pt;}
.y96{bottom:613.853333pt;}
.yd{bottom:616.253333pt;}
.y36{bottom:617.853333pt;}
.y52{bottom:624.893333pt;}
.y95{bottom:628.573333pt;}
.yc{bottom:632.253333pt;}
.y35{bottom:633.853333pt;}
.y51{bottom:640.893333pt;}
.y94{bottom:643.133333pt;}
.yb{bottom:648.253333pt;}
.y34{bottom:649.853333pt;}
.y77{bottom:652.893333pt;}
.y50{bottom:656.893333pt;}
.y93{bottom:657.853333pt;}
.ya{bottom:664.253333pt;}
.y33{bottom:665.853333pt;}
.y76{bottom:668.893333pt;}
.y92{bottom:672.573333pt;}
.y4f{bottom:672.893333pt;}
.y9{bottom:680.253333pt;}
.y32{bottom:681.853333pt;}
.y75{bottom:684.893333pt;}
.y91{bottom:687.133333pt;}
.y4e{bottom:688.893333pt;}
.y31{bottom:697.853333pt;}
.y74{bottom:700.893333pt;}
.y90{bottom:701.853333pt;}
.y4d{bottom:704.893333pt;}
.y8{bottom:712.893333pt;}
.y30{bottom:713.853333pt;}
.y8f{bottom:716.573333pt;}
.y73{bottom:716.893333pt;}
.y4c{bottom:720.893333pt;}
.y2f{bottom:729.853333pt;}
.y8e{bottom:731.133333pt;}
.y72{bottom:732.893333pt;}
.y4b{bottom:736.893333pt;}
.y8d{bottom:745.853333pt;}
.y71{bottom:748.893333pt;}
.y4a{bottom:752.893333pt;}
.y7{bottom:755.973333pt;}
.y8c{bottom:760.613333pt;}
.y2e{bottom:762.533333pt;}
.y70{bottom:764.933333pt;}
.y49{bottom:768.933333pt;}
.y8b{bottom:775.173333pt;}
.y6f{bottom:780.933333pt;}
.y48{bottom:784.933333pt;}
.y6{bottom:786.373333pt;}
.y8a{bottom:789.893333pt;}
.y6e{bottom:796.933333pt;}
.y5{bottom:799.973333pt;}
.y47{bottom:800.933333pt;}
.y89{bottom:804.613333pt;}
.y2d{bottom:805.893333pt;}
.y6d{bottom:812.933333pt;}
.y46{bottom:816.933333pt;}
.y4{bottom:818.533333pt;}
.y88{bottom:819.173333pt;}
.y2c{bottom:821.893333pt;}
.y6c{bottom:828.933333pt;}
.y45{bottom:832.933333pt;}
.y3{bottom:833.253333pt;}
.y87{bottom:833.893333pt;}
.y2b{bottom:837.893333pt;}
.y6b{bottom:844.933333pt;}
.y86{bottom:848.613333pt;}
.y44{bottom:848.933333pt;}
.y2a{bottom:853.893333pt;}
.y2{bottom:857.573333pt;}
.y6a{bottom:860.933333pt;}
.y85{bottom:863.173333pt;}
.y43{bottom:864.933333pt;}
.y69{bottom:876.933333pt;}
.y84{bottom:877.893333pt;}
.y29{bottom:880.613333pt;}
.y42{bottom:880.933333pt;}
.y28{bottom:896.613333pt;}
.y41{bottom:896.933333pt;}
.y1{bottom:906.053333pt;}
.y68{bottom:909.573333pt;}
.y27{bottom:912.613333pt;}
.y40{bottom:912.933333pt;}
.y26{bottom:950.373333pt;}
.h4{height:31.406250pt;}
.hb{height:46.609688pt;}
.h5{height:47.109375pt;}
.h6{height:48.375000pt;}
.hd{height:49.336436pt;}
.h8{height:52.134375pt;}
.h3{height:52.478750pt;}
.ha{height:53.535000pt;}
.h9{height:54.598989pt;}
.hc{height:64.500000pt;}
.h7{height:66.625000pt;}
.h2{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:166.586655pt;}
.xc{left:172.346655pt;}
.x8{left:181.466655pt;}
.xd{left:188.986655pt;}
.x2{left:197.146655pt;}
.x7{left:204.026655pt;}
.x4{left:210.106655pt;}
.x3{left:213.146655pt;}
.x5{left:280.866655pt;}
.x6{left:288.866655pt;}
.xb{left:594.333322pt;}
.x9{left:614.013322pt;}
.xa{left:621.573322pt;}
}




    .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; }
  