
    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_a305d3cbcd11b08bc29231ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_091fac9d037924aa9d44f29a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.048000px;}
.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:-24.960000px;}
.ws0{word-spacing:-21.840000px;}
.ws1{word-spacing:-17.160000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:1161.312000px;}
._0{width:1.980000px;}
._1{width:3.894000px;}
._2{width:10.296000px;}
._3{width:11.352000px;}
._4{width:94.290000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,106,120);}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y19{bottom:35.058000px;}
.y27{bottom:57.558000px;}
.y26{bottom:80.058000px;}
.y56{bottom:136.383000px;}
.y81{bottom:145.233000px;}
.y18{bottom:155.658000px;}
.y41{bottom:160.158000px;}
.y55{bottom:162.258000px;}
.y96{bottom:169.233000px;}
.y6c{bottom:179.733000px;}
.y17{bottom:181.533000px;}
.y40{bottom:186.033000px;}
.y80{bottom:186.108000px;}
.y54{bottom:188.133000px;}
.y95{bottom:210.108000px;}
.y53{bottom:214.008000px;}
.y6b{bottom:220.608000px;}
.y7f{bottom:226.983000px;}
.y16{bottom:233.283000px;}
.y3f{bottom:237.783000px;}
.y94{bottom:250.983000px;}
.y15{bottom:259.158000px;}
.y6a{bottom:261.483000px;}
.y3e{bottom:263.658000px;}
.y7e{bottom:267.858000px;}
.y93{bottom:291.858000px;}
.y52{bottom:294.408000px;}
.y7d{bottom:298.233000px;}
.y69{bottom:302.358000px;}
.y14{bottom:310.908000px;}
.y3d{bottom:315.408000px;}
.y25{bottom:315.633000px;}
.y92{bottom:332.733000px;}
.y13{bottom:336.783000px;}
.y7c{bottom:339.108000px;}
.y51{bottom:340.383000px;}
.y3c{bottom:341.283000px;}
.y68{bottom:343.233000px;}
.ya8{bottom:349.608000px;}
.y67{bottom:369.108000px;}
.y91{bottom:373.608000px;}
.y7b{bottom:379.983000px;}
.y50{bottom:386.358000px;}
.y12{bottom:388.533000px;}
.y3b{bottom:393.033000px;}
.y90{bottom:399.483000px;}
.y66{bottom:409.983000px;}
.y11{bottom:414.408000px;}
.y3a{bottom:418.908000px;}
.y7a{bottom:420.858000px;}
.y4f{bottom:425.358000px;}
.y8f{bottom:429.858000px;}
.ya7{bottom:431.358000px;}
.y65{bottom:450.858000px;}
.y79{bottom:461.733000px;}
.y10{bottom:466.158000px;}
.y4e{bottom:468.858000px;}
.y39{bottom:470.658000px;}
.y8e{bottom:470.733000px;}
.ya6{bottom:472.233000px;}
.y24{bottom:476.358000px;}
.y64{bottom:491.733000px;}
.yf{bottom:492.033000px;}
.y38{bottom:496.533000px;}
.y78{bottom:502.608000px;}
.y23{bottom:510.858000px;}
.y8d{bottom:511.608000px;}
.ya5{bottom:513.108000px;}
.y4d{bottom:523.833000px;}
.y63{bottom:532.608000px;}
.y8c{bottom:537.483000px;}
.y77{bottom:543.483000px;}
.ye{bottom:543.783000px;}
.y37{bottom:548.283000px;}
.ya4{bottom:553.983000px;}
.y4c{bottom:564.708000px;}
.yd{bottom:569.658000px;}
.y62{bottom:573.483000px;}
.y36{bottom:574.158000px;}
.y8b{bottom:578.358000px;}
.ya3{bottom:579.858000px;}
.y76{bottom:584.358000px;}
.y4b{bottom:605.583000px;}
.yc{bottom:610.533000px;}
.y61{bottom:614.358000px;}
.y8a{bottom:619.233000px;}
.ya2{bottom:620.733000px;}
.y22{bottom:621.633000px;}
.y75{bottom:625.233000px;}
.y35{bottom:625.908000px;}
.yb{bottom:636.408000px;}
.y4a{bottom:638.058000px;}
.y89{bottom:645.108000px;}
.y34{bottom:651.783000px;}
.y21{bottom:652.308000px;}
.y60{bottom:655.233000px;}
.ya1{bottom:661.608000px;}
.ya{bottom:662.283000px;}
.y74{bottom:666.108000px;}
.y88{bottom:675.483000px;}
.y5f{bottom:681.108000px;}
.y20{bottom:682.983000px;}
.ya0{bottom:687.483000px;}
.y9{bottom:688.158000px;}
.y49{bottom:696.408000px;}
.y33{bottom:703.533000px;}
.y5e{bottom:706.983000px;}
.y8{bottom:714.033000px;}
.y87{bottom:716.358000px;}
.y1f{bottom:716.808000px;}
.y9f{bottom:728.358000px;}
.y32{bottom:729.408000px;}
.y5d{bottom:732.858000px;}
.y48{bottom:737.283000px;}
.y7{bottom:739.908000px;}
.y73{bottom:747.858000px;}
.y86{bottom:757.233000px;}
.y5c{bottom:758.733000px;}
.y47{bottom:763.158000px;}
.y6{bottom:767.958000px;}
.y9e{bottom:769.233000px;}
.y31{bottom:770.283000px;}
.y72{bottom:788.733000px;}
.y9d{bottom:795.108000px;}
.y30{bottom:796.158000px;}
.y85{bottom:798.108000px;}
.y5b{bottom:799.608000px;}
.y46{bottom:804.033000px;}
.y2f{bottom:822.033000px;}
.y9c{bottom:825.483000px;}
.y71{bottom:829.608000px;}
.y5a{bottom:829.983000px;}
.y45{bottom:836.508000px;}
.y84{bottom:838.983000px;}
.y2e{bottom:847.908000px;}
.y59{bottom:864.858000px;}
.y9b{bottom:866.358000px;}
.y70{bottom:870.483000px;}
.y2d{bottom:873.783000px;}
.y83{bottom:879.858000px;}
.y44{bottom:894.858000px;}
.y5{bottom:895.383000px;}
.y6f{bottom:896.358000px;}
.y1e{bottom:898.983000px;}
.y2c{bottom:899.658000px;}
.y9a{bottom:907.233000px;}
.y82{bottom:920.733000px;}
.y6e{bottom:926.733000px;}
.y4{bottom:927.858000px;}
.y43{bottom:935.733000px;}
.y2b{bottom:940.533000px;}
.y58{bottom:946.608000px;}
.y99{bottom:948.108000px;}
.y1d{bottom:950.733000px;}
.y6d{bottom:961.608000px;}
.y3{bottom:974.808000px;}
.y1c{bottom:976.608000px;}
.y2a{bottom:981.408000px;}
.y57{bottom:987.483000px;}
.y98{bottom:988.983000px;}
.y42{bottom:1002.483000px;}
.y29{bottom:1007.283000px;}
.y97{bottom:1019.358000px;}
.y2{bottom:1021.758000px;}
.y1b{bottom:1028.358000px;}
.y28{bottom:1039.758000px;}
.y1a{bottom:1054.233000px;}
.h7{height:50.160000px;}
.h3{height:50.490000px;}
.h4{height:64.260000px;}
.h5{height:68.850000px;}
.h6{height:73.440000px;}
.h2{height:91.800000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:22.800000px;}
.x6{left:108.150000px;}
.x9{left:114.900000px;}
.x2{left:120.525000px;}
.x1{left:124.725000px;}
.xe{left:138.150000px;}
.xf{left:168.150000px;}
.xc{left:243.225000px;}
.x8{left:247.800000px;}
.x3{left:316.725000px;}
.xd{left:389.925000px;}
.xb{left:398.700000px;}
.x5{left:402.675000px;}
.x10{left:416.850000px;}
.x4{left:423.150000px;}
.xa{left:473.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.042667pt;}
.ws4{word-spacing:-22.186667pt;}
.ws0{word-spacing:-19.413333pt;}
.ws1{word-spacing:-15.253333pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:1032.277333pt;}
._0{width:1.760000pt;}
._1{width:3.461333pt;}
._2{width:9.152000pt;}
._3{width:10.090667pt;}
._4{width:83.813333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y19{bottom:31.162667pt;}
.y27{bottom:51.162667pt;}
.y26{bottom:71.162667pt;}
.y56{bottom:121.229333pt;}
.y81{bottom:129.096000pt;}
.y18{bottom:138.362667pt;}
.y41{bottom:142.362667pt;}
.y55{bottom:144.229333pt;}
.y96{bottom:150.429333pt;}
.y6c{bottom:159.762667pt;}
.y17{bottom:161.362667pt;}
.y40{bottom:165.362667pt;}
.y80{bottom:165.429333pt;}
.y54{bottom:167.229333pt;}
.y95{bottom:186.762667pt;}
.y53{bottom:190.229333pt;}
.y6b{bottom:196.096000pt;}
.y7f{bottom:201.762667pt;}
.y16{bottom:207.362667pt;}
.y3f{bottom:211.362667pt;}
.y94{bottom:223.096000pt;}
.y15{bottom:230.362667pt;}
.y6a{bottom:232.429333pt;}
.y3e{bottom:234.362667pt;}
.y7e{bottom:238.096000pt;}
.y93{bottom:259.429333pt;}
.y52{bottom:261.696000pt;}
.y7d{bottom:265.096000pt;}
.y69{bottom:268.762667pt;}
.y14{bottom:276.362667pt;}
.y3d{bottom:280.362667pt;}
.y25{bottom:280.562667pt;}
.y92{bottom:295.762667pt;}
.y13{bottom:299.362667pt;}
.y7c{bottom:301.429333pt;}
.y51{bottom:302.562667pt;}
.y3c{bottom:303.362667pt;}
.y68{bottom:305.096000pt;}
.ya8{bottom:310.762667pt;}
.y67{bottom:328.096000pt;}
.y91{bottom:332.096000pt;}
.y7b{bottom:337.762667pt;}
.y50{bottom:343.429333pt;}
.y12{bottom:345.362667pt;}
.y3b{bottom:349.362667pt;}
.y90{bottom:355.096000pt;}
.y66{bottom:364.429333pt;}
.y11{bottom:368.362667pt;}
.y3a{bottom:372.362667pt;}
.y7a{bottom:374.096000pt;}
.y4f{bottom:378.096000pt;}
.y8f{bottom:382.096000pt;}
.ya7{bottom:383.429333pt;}
.y65{bottom:400.762667pt;}
.y79{bottom:410.429333pt;}
.y10{bottom:414.362667pt;}
.y4e{bottom:416.762667pt;}
.y39{bottom:418.362667pt;}
.y8e{bottom:418.429333pt;}
.ya6{bottom:419.762667pt;}
.y24{bottom:423.429333pt;}
.y64{bottom:437.096000pt;}
.yf{bottom:437.362667pt;}
.y38{bottom:441.362667pt;}
.y78{bottom:446.762667pt;}
.y23{bottom:454.096000pt;}
.y8d{bottom:454.762667pt;}
.ya5{bottom:456.096000pt;}
.y4d{bottom:465.629333pt;}
.y63{bottom:473.429333pt;}
.y8c{bottom:477.762667pt;}
.y77{bottom:483.096000pt;}
.ye{bottom:483.362667pt;}
.y37{bottom:487.362667pt;}
.ya4{bottom:492.429333pt;}
.y4c{bottom:501.962667pt;}
.yd{bottom:506.362667pt;}
.y62{bottom:509.762667pt;}
.y36{bottom:510.362667pt;}
.y8b{bottom:514.096000pt;}
.ya3{bottom:515.429333pt;}
.y76{bottom:519.429333pt;}
.y4b{bottom:538.296000pt;}
.yc{bottom:542.696000pt;}
.y61{bottom:546.096000pt;}
.y8a{bottom:550.429333pt;}
.ya2{bottom:551.762667pt;}
.y22{bottom:552.562667pt;}
.y75{bottom:555.762667pt;}
.y35{bottom:556.362667pt;}
.yb{bottom:565.696000pt;}
.y4a{bottom:567.162667pt;}
.y89{bottom:573.429333pt;}
.y34{bottom:579.362667pt;}
.y21{bottom:579.829333pt;}
.y60{bottom:582.429333pt;}
.ya1{bottom:588.096000pt;}
.ya{bottom:588.696000pt;}
.y74{bottom:592.096000pt;}
.y88{bottom:600.429333pt;}
.y5f{bottom:605.429333pt;}
.y20{bottom:607.096000pt;}
.ya0{bottom:611.096000pt;}
.y9{bottom:611.696000pt;}
.y49{bottom:619.029333pt;}
.y33{bottom:625.362667pt;}
.y5e{bottom:628.429333pt;}
.y8{bottom:634.696000pt;}
.y87{bottom:636.762667pt;}
.y1f{bottom:637.162667pt;}
.y9f{bottom:647.429333pt;}
.y32{bottom:648.362667pt;}
.y5d{bottom:651.429333pt;}
.y48{bottom:655.362667pt;}
.y7{bottom:657.696000pt;}
.y73{bottom:664.762667pt;}
.y86{bottom:673.096000pt;}
.y5c{bottom:674.429333pt;}
.y47{bottom:678.362667pt;}
.y6{bottom:682.629333pt;}
.y9e{bottom:683.762667pt;}
.y31{bottom:684.696000pt;}
.y72{bottom:701.096000pt;}
.y9d{bottom:706.762667pt;}
.y30{bottom:707.696000pt;}
.y85{bottom:709.429333pt;}
.y5b{bottom:710.762667pt;}
.y46{bottom:714.696000pt;}
.y2f{bottom:730.696000pt;}
.y9c{bottom:733.762667pt;}
.y71{bottom:737.429333pt;}
.y5a{bottom:737.762667pt;}
.y45{bottom:743.562667pt;}
.y84{bottom:745.762667pt;}
.y2e{bottom:753.696000pt;}
.y59{bottom:768.762667pt;}
.y9b{bottom:770.096000pt;}
.y70{bottom:773.762667pt;}
.y2d{bottom:776.696000pt;}
.y83{bottom:782.096000pt;}
.y44{bottom:795.429333pt;}
.y5{bottom:795.896000pt;}
.y6f{bottom:796.762667pt;}
.y1e{bottom:799.096000pt;}
.y2c{bottom:799.696000pt;}
.y9a{bottom:806.429333pt;}
.y82{bottom:818.429333pt;}
.y6e{bottom:823.762667pt;}
.y4{bottom:824.762667pt;}
.y43{bottom:831.762667pt;}
.y2b{bottom:836.029333pt;}
.y58{bottom:841.429333pt;}
.y99{bottom:842.762667pt;}
.y1d{bottom:845.096000pt;}
.y6d{bottom:854.762667pt;}
.y3{bottom:866.496000pt;}
.y1c{bottom:868.096000pt;}
.y2a{bottom:872.362667pt;}
.y57{bottom:877.762667pt;}
.y98{bottom:879.096000pt;}
.y42{bottom:891.096000pt;}
.y29{bottom:895.362667pt;}
.y97{bottom:906.096000pt;}
.y2{bottom:908.229333pt;}
.y1b{bottom:914.096000pt;}
.y28{bottom:924.229333pt;}
.y1a{bottom:937.096000pt;}
.h7{height:44.586667pt;}
.h3{height:44.880000pt;}
.h4{height:57.120000pt;}
.h5{height:61.200000pt;}
.h6{height:65.280000pt;}
.h2{height:81.600000pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:20.266667pt;}
.x6{left:96.133333pt;}
.x9{left:102.133333pt;}
.x2{left:107.133333pt;}
.x1{left:110.866667pt;}
.xe{left:122.800000pt;}
.xf{left:149.466667pt;}
.xc{left:216.200000pt;}
.x8{left:220.266667pt;}
.x3{left:281.533333pt;}
.xd{left:346.600000pt;}
.xb{left:354.400000pt;}
.x5{left:357.933333pt;}
.x10{left:370.533333pt;}
.x4{left:376.133333pt;}
.xa{left:421.266667pt;}
}




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