
    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_7461069d1f580e3d90dece5e.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_d107ec6eb492eb3df0de70cd.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;}
}
.ws1{word-spacing:-17.160000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:1161.312000px;}
._1{width:3.234000px;}
._2{width:6.204000px;}
._0{width:7.392000px;}
._3{width:471.750000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,106,120);}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y13{bottom:35.058000px;}
.y1d{bottom:57.558000px;}
.y63{bottom:129.483000px;}
.y36{bottom:130.158000px;}
.y12{bottom:132.258000px;}
.ya3{bottom:132.483000px;}
.y49{bottom:137.733000px;}
.y62{bottom:155.358000px;}
.y11{bottom:162.933000px;}
.y48{bottom:163.608000px;}
.y78{bottom:169.608000px;}
.y35{bottom:171.033000px;}
.y61{bottom:185.733000px;}
.y47{bottom:189.483000px;}
.y10{bottom:196.758000px;}
.y34{bottom:196.908000px;}
.y90{bottom:200.733000px;}
.y77{bottom:210.483000px;}
.ya2{bottom:214.233000px;}
.y46{bottom:215.358000px;}
.y60{bottom:220.608000px;}
.y33{bottom:222.783000px;}
.y76{bottom:236.358000px;}
.y45{bottom:241.233000px;}
.y8f{bottom:241.608000px;}
.ya1{bottom:255.108000px;}
.y5f{bottom:261.483000px;}
.y75{bottom:262.233000px;}
.y32{bottom:263.658000px;}
.y8e{bottom:282.483000px;}
.y5e{bottom:287.358000px;}
.y31{bottom:289.533000px;}
.ya0{bottom:295.983000px;}
.y74{bottom:303.108000px;}
.y8d{bottom:312.858000px;}
.y30{bottom:315.408000px;}
.y5d{bottom:328.233000px;}
.y9f{bottom:336.858000px;}
.y2f{bottom:341.283000px;}
.y73{bottom:343.983000px;}
.y44{bottom:344.733000px;}
.y8c{bottom:347.733000px;}
.y9e{bottom:362.733000px;}
.y2e{bottom:367.158000px;}
.y5c{bottom:369.108000px;}
.y43{bottom:370.608000px;}
.yf{bottom:378.933000px;}
.y72{bottom:384.858000px;}
.y8b{bottom:388.608000px;}
.y2d{bottom:393.033000px;}
.y42{bottom:396.483000px;}
.y9d{bottom:403.608000px;}
.ye{bottom:404.808000px;}
.y5b{bottom:409.983000px;}
.y71{bottom:410.733000px;}
.y2c{bottom:418.908000px;}
.y8a{bottom:429.483000px;}
.y9c{bottom:444.483000px;}
.y5a{bottom:450.858000px;}
.y70{bottom:451.608000px;}
.y89{bottom:470.358000px;}
.y2b{bottom:470.658000px;}
.y59{bottom:491.733000px;}
.y6f{bottom:492.483000px;}
.y2a{bottom:496.533000px;}
.y88{bottom:511.233000px;}
.y41{bottom:517.758000px;}
.y6e{bottom:522.858000px;}
.y58{bottom:532.608000px;}
.y87{bottom:552.108000px;}
.y57{bottom:558.483000px;}
.yd{bottom:560.058000px;}
.y40{bottom:563.733000px;}
.y1c{bottom:570.858000px;}
.y9b{bottom:577.983000px;}
.yc{bottom:585.933000px;}
.y86{bottom:592.983000px;}
.y56{bottom:599.358000px;}
.y3f{bottom:602.733000px;}
.y6d{bottom:604.608000px;}
.y1b{bottom:605.358000px;}
.y9a{bottom:608.358000px;}
.yb{bottom:611.808000px;}
.y85{bottom:618.858000px;}
.ya{bottom:637.683000px;}
.y55{bottom:640.233000px;}
.y6c{bottom:645.483000px;}
.y3e{bottom:646.233000px;}
.y84{bottom:649.233000px;}
.y29{bottom:651.783000px;}
.y9{bottom:663.558000px;}
.y99{bottom:675.108000px;}
.y28{bottom:677.658000px;}
.y54{bottom:681.108000px;}
.y6b{bottom:686.358000px;}
.y83{bottom:690.108000px;}
.y98{bottom:700.983000px;}
.y3d{bottom:701.208000px;}
.y27{bottom:703.533000px;}
.y53{bottom:721.983000px;}
.y97{bottom:726.858000px;}
.y6a{bottom:727.233000px;}
.y26{bottom:729.408000px;}
.y82{bottom:730.983000px;}
.y3c{bottom:742.083000px;}
.y25{bottom:755.283000px;}
.y8{bottom:756.183000px;}
.y81{bottom:756.858000px;}
.y52{bottom:762.858000px;}
.y1a{bottom:766.083000px;}
.y96{bottom:767.733000px;}
.y69{bottom:768.108000px;}
.y7{bottom:782.058000px;}
.y3b{bottom:782.958000px;}
.y51{bottom:788.733000px;}
.y80{bottom:797.733000px;}
.y19{bottom:801.333000px;}
.y6{bottom:807.933000px;}
.y95{bottom:808.608000px;}
.y68{bottom:808.983000px;}
.y50{bottom:814.608000px;}
.y3a{bottom:815.433000px;}
.y7f{bottom:823.608000px;}
.y5{bottom:833.808000px;}
.y18{bottom:836.583000px;}
.y4f{bottom:840.483000px;}
.y24{bottom:847.908000px;}
.y7e{bottom:849.483000px;}
.y67{bottom:849.858000px;}
.y4{bottom:861.858000px;}
.y4e{bottom:866.358000px;}
.y17{bottom:871.833000px;}
.y23{bottom:873.783000px;}
.y94{bottom:879.858000px;}
.y7d{bottom:890.358000px;}
.y66{bottom:890.733000px;}
.y22{bottom:899.658000px;}
.y16{bottom:906.333000px;}
.y4d{bottom:907.233000px;}
.y39{bottom:914.658000px;}
.y93{bottom:920.733000px;}
.y21{bottom:925.533000px;}
.y7c{bottom:931.233000px;}
.y65{bottom:931.608000px;}
.y4c{bottom:937.608000px;}
.y38{bottom:940.533000px;}
.y7b{bottom:957.108000px;}
.y92{bottom:961.608000px;}
.y20{bottom:966.408000px;}
.y4b{bottom:972.483000px;}
.y37{bottom:981.408000px;}
.y7a{bottom:987.483000px;}
.y3{bottom:989.283000px;}
.y91{bottom:1002.483000px;}
.y1f{bottom:1007.283000px;}
.y64{bottom:1013.358000px;}
.y15{bottom:1017.108000px;}
.y2{bottom:1021.758000px;}
.y79{bottom:1028.358000px;}
.y1e{bottom:1039.758000px;}
.y14{bottom:1047.783000px;}
.y4a{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;}
.x8{left:22.800000px;}
.x4{left:108.150000px;}
.x6{left:114.900000px;}
.xb{left:117.225000px;}
.xa{left:125.325000px;}
.xc{left:128.475000px;}
.xf{left:132.000000px;}
.x10{left:138.150000px;}
.x11{left:168.150000px;}
.x5{left:247.800000px;}
.x1{left:294.900000px;}
.xd{left:312.975000px;}
.xe{left:389.925000px;}
.x9{left:398.700000px;}
.x3{left:402.675000px;}
.x12{left:416.850000px;}
.x2{left:423.150000px;}
.x7{left:473.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.042667pt;}
.ws1{word-spacing:-15.253333pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:1032.277333pt;}
._1{width:2.874667pt;}
._2{width:5.514667pt;}
._0{width:6.570667pt;}
._3{width:419.333333pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y13{bottom:31.162667pt;}
.y1d{bottom:51.162667pt;}
.y63{bottom:115.096000pt;}
.y36{bottom:115.696000pt;}
.y12{bottom:117.562667pt;}
.ya3{bottom:117.762667pt;}
.y49{bottom:122.429333pt;}
.y62{bottom:138.096000pt;}
.y11{bottom:144.829333pt;}
.y48{bottom:145.429333pt;}
.y78{bottom:150.762667pt;}
.y35{bottom:152.029333pt;}
.y61{bottom:165.096000pt;}
.y47{bottom:168.429333pt;}
.y10{bottom:174.896000pt;}
.y34{bottom:175.029333pt;}
.y90{bottom:178.429333pt;}
.y77{bottom:187.096000pt;}
.ya2{bottom:190.429333pt;}
.y46{bottom:191.429333pt;}
.y60{bottom:196.096000pt;}
.y33{bottom:198.029333pt;}
.y76{bottom:210.096000pt;}
.y45{bottom:214.429333pt;}
.y8f{bottom:214.762667pt;}
.ya1{bottom:226.762667pt;}
.y5f{bottom:232.429333pt;}
.y75{bottom:233.096000pt;}
.y32{bottom:234.362667pt;}
.y8e{bottom:251.096000pt;}
.y5e{bottom:255.429333pt;}
.y31{bottom:257.362667pt;}
.ya0{bottom:263.096000pt;}
.y74{bottom:269.429333pt;}
.y8d{bottom:278.096000pt;}
.y30{bottom:280.362667pt;}
.y5d{bottom:291.762667pt;}
.y9f{bottom:299.429333pt;}
.y2f{bottom:303.362667pt;}
.y73{bottom:305.762667pt;}
.y44{bottom:306.429333pt;}
.y8c{bottom:309.096000pt;}
.y9e{bottom:322.429333pt;}
.y2e{bottom:326.362667pt;}
.y5c{bottom:328.096000pt;}
.y43{bottom:329.429333pt;}
.yf{bottom:336.829333pt;}
.y72{bottom:342.096000pt;}
.y8b{bottom:345.429333pt;}
.y2d{bottom:349.362667pt;}
.y42{bottom:352.429333pt;}
.y9d{bottom:358.762667pt;}
.ye{bottom:359.829333pt;}
.y5b{bottom:364.429333pt;}
.y71{bottom:365.096000pt;}
.y2c{bottom:372.362667pt;}
.y8a{bottom:381.762667pt;}
.y9c{bottom:395.096000pt;}
.y5a{bottom:400.762667pt;}
.y70{bottom:401.429333pt;}
.y89{bottom:418.096000pt;}
.y2b{bottom:418.362667pt;}
.y59{bottom:437.096000pt;}
.y6f{bottom:437.762667pt;}
.y2a{bottom:441.362667pt;}
.y88{bottom:454.429333pt;}
.y41{bottom:460.229333pt;}
.y6e{bottom:464.762667pt;}
.y58{bottom:473.429333pt;}
.y87{bottom:490.762667pt;}
.y57{bottom:496.429333pt;}
.yd{bottom:497.829333pt;}
.y40{bottom:501.096000pt;}
.y1c{bottom:507.429333pt;}
.y9b{bottom:513.762667pt;}
.yc{bottom:520.829333pt;}
.y86{bottom:527.096000pt;}
.y56{bottom:532.762667pt;}
.y3f{bottom:535.762667pt;}
.y6d{bottom:537.429333pt;}
.y1b{bottom:538.096000pt;}
.y9a{bottom:540.762667pt;}
.yb{bottom:543.829333pt;}
.y85{bottom:550.096000pt;}
.ya{bottom:566.829333pt;}
.y55{bottom:569.096000pt;}
.y6c{bottom:573.762667pt;}
.y3e{bottom:574.429333pt;}
.y84{bottom:577.096000pt;}
.y29{bottom:579.362667pt;}
.y9{bottom:589.829333pt;}
.y99{bottom:600.096000pt;}
.y28{bottom:602.362667pt;}
.y54{bottom:605.429333pt;}
.y6b{bottom:610.096000pt;}
.y83{bottom:613.429333pt;}
.y98{bottom:623.096000pt;}
.y3d{bottom:623.296000pt;}
.y27{bottom:625.362667pt;}
.y53{bottom:641.762667pt;}
.y97{bottom:646.096000pt;}
.y6a{bottom:646.429333pt;}
.y26{bottom:648.362667pt;}
.y82{bottom:649.762667pt;}
.y3c{bottom:659.629333pt;}
.y25{bottom:671.362667pt;}
.y8{bottom:672.162667pt;}
.y81{bottom:672.762667pt;}
.y52{bottom:678.096000pt;}
.y1a{bottom:680.962667pt;}
.y96{bottom:682.429333pt;}
.y69{bottom:682.762667pt;}
.y7{bottom:695.162667pt;}
.y3b{bottom:695.962667pt;}
.y51{bottom:701.096000pt;}
.y80{bottom:709.096000pt;}
.y19{bottom:712.296000pt;}
.y6{bottom:718.162667pt;}
.y95{bottom:718.762667pt;}
.y68{bottom:719.096000pt;}
.y50{bottom:724.096000pt;}
.y3a{bottom:724.829333pt;}
.y7f{bottom:732.096000pt;}
.y5{bottom:741.162667pt;}
.y18{bottom:743.629333pt;}
.y4f{bottom:747.096000pt;}
.y24{bottom:753.696000pt;}
.y7e{bottom:755.096000pt;}
.y67{bottom:755.429333pt;}
.y4{bottom:766.096000pt;}
.y4e{bottom:770.096000pt;}
.y17{bottom:774.962667pt;}
.y23{bottom:776.696000pt;}
.y94{bottom:782.096000pt;}
.y7d{bottom:791.429333pt;}
.y66{bottom:791.762667pt;}
.y22{bottom:799.696000pt;}
.y16{bottom:805.629333pt;}
.y4d{bottom:806.429333pt;}
.y39{bottom:813.029333pt;}
.y93{bottom:818.429333pt;}
.y21{bottom:822.696000pt;}
.y7c{bottom:827.762667pt;}
.y65{bottom:828.096000pt;}
.y4c{bottom:833.429333pt;}
.y38{bottom:836.029333pt;}
.y7b{bottom:850.762667pt;}
.y92{bottom:854.762667pt;}
.y20{bottom:859.029333pt;}
.y4b{bottom:864.429333pt;}
.y37{bottom:872.362667pt;}
.y7a{bottom:877.762667pt;}
.y3{bottom:879.362667pt;}
.y91{bottom:891.096000pt;}
.y1f{bottom:895.362667pt;}
.y64{bottom:900.762667pt;}
.y15{bottom:904.096000pt;}
.y2{bottom:908.229333pt;}
.y79{bottom:914.096000pt;}
.y1e{bottom:924.229333pt;}
.y14{bottom:931.362667pt;}
.y4a{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;}
.x8{left:20.266667pt;}
.x4{left:96.133333pt;}
.x6{left:102.133333pt;}
.xb{left:104.200000pt;}
.xa{left:111.400000pt;}
.xc{left:114.200000pt;}
.xf{left:117.333333pt;}
.x10{left:122.800000pt;}
.x11{left:149.466667pt;}
.x5{left:220.266667pt;}
.x1{left:262.133333pt;}
.xd{left:278.200000pt;}
.xe{left:346.600000pt;}
.x9{left:354.400000pt;}
.x3{left:357.933333pt;}
.x12{left:370.533333pt;}
.x2{left:376.133333pt;}
.x7{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; }
  