
    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_19dea17b040126015410621c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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:-23.400000px;}
.ws2{word-spacing:-17.160000px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:1161.312000px;}
._1{width:2.838000px;}
._0{width:3.894000px;}
._2{width:5.016000px;}
._3{width:6.204000px;}
._4{width:7.260000px;}
._6{width:8.448000px;}
._5{width:9.570000px;}
.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;}
.y6a{bottom:116.358000px;}
.y9c{bottom:122.358000px;}
.y51{bottom:127.383000px;}
.y83{bottom:135.483000px;}
.y9b{bottom:148.233000px;}
.y39{bottom:151.383000px;}
.y69{bottom:157.233000px;}
.y50{bottom:168.258000px;}
.y82{bottom:176.358000px;}
.y38{bottom:183.858000px;}
.y9a{bottom:189.108000px;}
.y68{bottom:198.108000px;}
.y4f{bottom:209.133000px;}
.y81{bottom:217.233000px;}
.y99{bottom:229.983000px;}
.y67{bottom:238.983000px;}
.y37{bottom:242.208000px;}
.y80{bottom:247.608000px;}
.y4e{bottom:250.008000px;}
.y66{bottom:264.858000px;}
.y98{bottom:270.858000px;}
.y36{bottom:283.083000px;}
.y7f{bottom:288.483000px;}
.y4d{bottom:290.883000px;}
.y12{bottom:303.783000px;}
.y65{bottom:305.733000px;}
.y35{bottom:308.958000px;}
.y97{bottom:311.733000px;}
.y4c{bottom:321.258000px;}
.y7e{bottom:329.358000px;}
.y11{bottom:334.458000px;}
.y64{bottom:346.608000px;}
.y34{bottom:349.833000px;}
.y96{bottom:352.608000px;}
.y7d{bottom:359.733000px;}
.y4b{bottom:362.133000px;}
.y10{bottom:365.133000px;}
.y33{bottom:382.308000px;}
.y63{bottom:387.483000px;}
.y95{bottom:393.483000px;}
.y7c{bottom:394.608000px;}
.yf{bottom:395.808000px;}
.y4a{bottom:403.008000px;}
.yac{bottom:414.108000px;}
.ye{bottom:426.483000px;}
.y62{bottom:428.358000px;}
.y49{bottom:433.383000px;}
.y94{bottom:434.358000px;}
.y7b{bottom:435.483000px;}
.y32{bottom:440.658000px;}
.y61{bottom:458.733000px;}
.yd{bottom:460.308000px;}
.y7a{bottom:461.358000px;}
.y48{bottom:468.258000px;}
.y93{bottom:475.233000px;}
.y31{bottom:481.533000px;}
.y60{bottom:493.608000px;}
.yab{bottom:495.858000px;}
.y79{bottom:502.233000px;}
.y30{bottom:507.408000px;}
.y92{bottom:516.108000px;}
.yaa{bottom:521.733000px;}
.y78{bottom:528.108000px;}
.y2f{bottom:533.283000px;}
.y5f{bottom:534.483000px;}
.ya9{bottom:547.608000px;}
.y47{bottom:550.008000px;}
.y77{bottom:553.983000px;}
.y91{bottom:556.983000px;}
.y2e{bottom:559.158000px;}
.ya8{bottom:573.483000px;}
.y5e{bottom:575.358000px;}
.y46{bottom:590.883000px;}
.y76{bottom:594.858000px;}
.y90{bottom:597.858000px;}
.y2d{bottom:600.033000px;}
.y5d{bottom:605.733000px;}
.ya7{bottom:614.358000px;}
.y2c{bottom:625.908000px;}
.yc{bottom:631.608000px;}
.y45{bottom:631.758000px;}
.y75{bottom:635.733000px;}
.y8f{bottom:638.733000px;}
.ya6{bottom:640.233000px;}
.y1c{bottom:643.458000px;}
.y5c{bottom:646.608000px;}
.y2b{bottom:651.783000px;}
.yb{bottom:657.483000px;}
.y44{bottom:657.633000px;}
.ya5{bottom:666.108000px;}
.y5b{bottom:672.483000px;}
.y74{bottom:676.608000px;}
.y2a{bottom:677.658000px;}
.y1b{bottom:678.708000px;}
.y8e{bottom:679.608000px;}
.ya{bottom:683.358000px;}
.y43{bottom:683.508000px;}
.y73{bottom:702.483000px;}
.y29{bottom:703.533000px;}
.ya4{bottom:706.983000px;}
.y9{bottom:709.233000px;}
.y42{bottom:709.383000px;}
.y5a{bottom:713.358000px;}
.y1a{bottom:713.958000px;}
.y8d{bottom:720.483000px;}
.y8{bottom:735.108000px;}
.y41{bottom:735.258000px;}
.y72{bottom:743.358000px;}
.y59{bottom:743.733000px;}
.y28{bottom:744.408000px;}
.ya3{bottom:747.858000px;}
.y19{bottom:749.208000px;}
.y7{bottom:760.983000px;}
.y40{bottom:761.133000px;}
.y8c{bottom:761.358000px;}
.y27{bottom:770.283000px;}
.ya2{bottom:773.733000px;}
.y58{bottom:778.608000px;}
.y18{bottom:783.708000px;}
.y71{bottom:784.233000px;}
.y6{bottom:786.858000px;}
.y3f{bottom:787.008000px;}
.y8b{bottom:787.233000px;}
.y26{bottom:796.158000px;}
.ya1{bottom:799.608000px;}
.y70{bottom:814.608000px;}
.y5{bottom:814.908000px;}
.y57{bottom:819.483000px;}
.y25{bottom:822.033000px;}
.y8a{bottom:828.108000px;}
.y6f{bottom:840.483000px;}
.y24{bottom:847.908000px;}
.y89{bottom:853.983000px;}
.y56{bottom:860.358000px;}
.y3e{bottom:867.408000px;}
.y23{bottom:873.783000px;}
.y6e{bottom:875.358000px;}
.ya0{bottom:881.358000px;}
.y55{bottom:890.733000px;}
.y88{bottom:894.858000px;}
.y22{bottom:899.658000px;}
.y3d{bottom:913.383000px;}
.y6d{bottom:916.233000px;}
.y9f{bottom:922.233000px;}
.y54{bottom:931.608000px;}
.y87{bottom:935.733000px;}
.y21{bottom:940.533000px;}
.y4{bottom:942.333000px;}
.y17{bottom:944.433000px;}
.y9e{bottom:948.108000px;}
.y3c{bottom:952.383000px;}
.y6c{bottom:957.108000px;}
.y86{bottom:961.608000px;}
.y53{bottom:972.483000px;}
.y3{bottom:974.808000px;}
.y9d{bottom:978.483000px;}
.y16{bottom:979.683000px;}
.y20{bottom:981.408000px;}
.y6b{bottom:982.983000px;}
.y3b{bottom:995.883000px;}
.y85{bottom:1002.483000px;}
.y1f{bottom:1007.283000px;}
.y52{bottom:1013.358000px;}
.y15{bottom:1014.933000px;}
.y2{bottom:1021.758000px;}
.y84{bottom:1028.358000px;}
.y1e{bottom:1039.758000px;}
.y14{bottom:1049.433000px;}
.y3a{bottom:1054.233000px;}
.h7{height:50.160000px;}
.h3{height:50.556000px;}
.h4{height:64.344000px;}
.h5{height:68.940000px;}
.h6{height:73.536000px;}
.h2{height:91.920000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:22.800000px;}
.x5{left:108.150000px;}
.xb{left:109.275000px;}
.x10{left:113.625000px;}
.x7{left:114.900000px;}
.x1{left:127.125000px;}
.xf{left:129.450000px;}
.xc{left:133.275000px;}
.x11{left:134.550000px;}
.x13{left:138.150000px;}
.x14{left:168.150000px;}
.x2{left:197.100000px;}
.xd{left:213.825000px;}
.x6{left:247.800000px;}
.x12{left:371.325000px;}
.xe{left:389.925000px;}
.xa{left:398.700000px;}
.x4{left:402.675000px;}
.x15{left:416.850000px;}
.x3{left:423.150000px;}
.x8{left:473.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.042667pt;}
.ws1{word-spacing:-20.800000pt;}
.ws2{word-spacing:-15.253333pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:1032.277333pt;}
._1{width:2.522667pt;}
._0{width:3.461333pt;}
._2{width:4.458667pt;}
._3{width:5.514667pt;}
._4{width:6.453333pt;}
._6{width:7.509333pt;}
._5{width:8.506667pt;}
.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;}
.y6a{bottom:103.429333pt;}
.y9c{bottom:108.762667pt;}
.y51{bottom:113.229333pt;}
.y83{bottom:120.429333pt;}
.y9b{bottom:131.762667pt;}
.y39{bottom:134.562667pt;}
.y69{bottom:139.762667pt;}
.y50{bottom:149.562667pt;}
.y82{bottom:156.762667pt;}
.y38{bottom:163.429333pt;}
.y9a{bottom:168.096000pt;}
.y68{bottom:176.096000pt;}
.y4f{bottom:185.896000pt;}
.y81{bottom:193.096000pt;}
.y99{bottom:204.429333pt;}
.y67{bottom:212.429333pt;}
.y37{bottom:215.296000pt;}
.y80{bottom:220.096000pt;}
.y4e{bottom:222.229333pt;}
.y66{bottom:235.429333pt;}
.y98{bottom:240.762667pt;}
.y36{bottom:251.629333pt;}
.y7f{bottom:256.429333pt;}
.y4d{bottom:258.562667pt;}
.y12{bottom:270.029333pt;}
.y65{bottom:271.762667pt;}
.y35{bottom:274.629333pt;}
.y97{bottom:277.096000pt;}
.y4c{bottom:285.562667pt;}
.y7e{bottom:292.762667pt;}
.y11{bottom:297.296000pt;}
.y64{bottom:308.096000pt;}
.y34{bottom:310.962667pt;}
.y96{bottom:313.429333pt;}
.y7d{bottom:319.762667pt;}
.y4b{bottom:321.896000pt;}
.y10{bottom:324.562667pt;}
.y33{bottom:339.829333pt;}
.y63{bottom:344.429333pt;}
.y95{bottom:349.762667pt;}
.y7c{bottom:350.762667pt;}
.yf{bottom:351.829333pt;}
.y4a{bottom:358.229333pt;}
.yac{bottom:368.096000pt;}
.ye{bottom:379.096000pt;}
.y62{bottom:380.762667pt;}
.y49{bottom:385.229333pt;}
.y94{bottom:386.096000pt;}
.y7b{bottom:387.096000pt;}
.y32{bottom:391.696000pt;}
.y61{bottom:407.762667pt;}
.yd{bottom:409.162667pt;}
.y7a{bottom:410.096000pt;}
.y48{bottom:416.229333pt;}
.y93{bottom:422.429333pt;}
.y31{bottom:428.029333pt;}
.y60{bottom:438.762667pt;}
.yab{bottom:440.762667pt;}
.y79{bottom:446.429333pt;}
.y30{bottom:451.029333pt;}
.y92{bottom:458.762667pt;}
.yaa{bottom:463.762667pt;}
.y78{bottom:469.429333pt;}
.y2f{bottom:474.029333pt;}
.y5f{bottom:475.096000pt;}
.ya9{bottom:486.762667pt;}
.y47{bottom:488.896000pt;}
.y77{bottom:492.429333pt;}
.y91{bottom:495.096000pt;}
.y2e{bottom:497.029333pt;}
.ya8{bottom:509.762667pt;}
.y5e{bottom:511.429333pt;}
.y46{bottom:525.229333pt;}
.y76{bottom:528.762667pt;}
.y90{bottom:531.429333pt;}
.y2d{bottom:533.362667pt;}
.y5d{bottom:538.429333pt;}
.ya7{bottom:546.096000pt;}
.y2c{bottom:556.362667pt;}
.yc{bottom:561.429333pt;}
.y45{bottom:561.562667pt;}
.y75{bottom:565.096000pt;}
.y8f{bottom:567.762667pt;}
.ya6{bottom:569.096000pt;}
.y1c{bottom:571.962667pt;}
.y5c{bottom:574.762667pt;}
.y2b{bottom:579.362667pt;}
.yb{bottom:584.429333pt;}
.y44{bottom:584.562667pt;}
.ya5{bottom:592.096000pt;}
.y5b{bottom:597.762667pt;}
.y74{bottom:601.429333pt;}
.y2a{bottom:602.362667pt;}
.y1b{bottom:603.296000pt;}
.y8e{bottom:604.096000pt;}
.ya{bottom:607.429333pt;}
.y43{bottom:607.562667pt;}
.y73{bottom:624.429333pt;}
.y29{bottom:625.362667pt;}
.ya4{bottom:628.429333pt;}
.y9{bottom:630.429333pt;}
.y42{bottom:630.562667pt;}
.y5a{bottom:634.096000pt;}
.y1a{bottom:634.629333pt;}
.y8d{bottom:640.429333pt;}
.y8{bottom:653.429333pt;}
.y41{bottom:653.562667pt;}
.y72{bottom:660.762667pt;}
.y59{bottom:661.096000pt;}
.y28{bottom:661.696000pt;}
.ya3{bottom:664.762667pt;}
.y19{bottom:665.962667pt;}
.y7{bottom:676.429333pt;}
.y40{bottom:676.562667pt;}
.y8c{bottom:676.762667pt;}
.y27{bottom:684.696000pt;}
.ya2{bottom:687.762667pt;}
.y58{bottom:692.096000pt;}
.y18{bottom:696.629333pt;}
.y71{bottom:697.096000pt;}
.y6{bottom:699.429333pt;}
.y3f{bottom:699.562667pt;}
.y8b{bottom:699.762667pt;}
.y26{bottom:707.696000pt;}
.ya1{bottom:710.762667pt;}
.y70{bottom:724.096000pt;}
.y5{bottom:724.362667pt;}
.y57{bottom:728.429333pt;}
.y25{bottom:730.696000pt;}
.y8a{bottom:736.096000pt;}
.y6f{bottom:747.096000pt;}
.y24{bottom:753.696000pt;}
.y89{bottom:759.096000pt;}
.y56{bottom:764.762667pt;}
.y3e{bottom:771.029333pt;}
.y23{bottom:776.696000pt;}
.y6e{bottom:778.096000pt;}
.ya0{bottom:783.429333pt;}
.y55{bottom:791.762667pt;}
.y88{bottom:795.429333pt;}
.y22{bottom:799.696000pt;}
.y3d{bottom:811.896000pt;}
.y6d{bottom:814.429333pt;}
.y9f{bottom:819.762667pt;}
.y54{bottom:828.096000pt;}
.y87{bottom:831.762667pt;}
.y21{bottom:836.029333pt;}
.y4{bottom:837.629333pt;}
.y17{bottom:839.496000pt;}
.y9e{bottom:842.762667pt;}
.y3c{bottom:846.562667pt;}
.y6c{bottom:850.762667pt;}
.y86{bottom:854.762667pt;}
.y53{bottom:864.429333pt;}
.y3{bottom:866.496000pt;}
.y9d{bottom:869.762667pt;}
.y16{bottom:870.829333pt;}
.y20{bottom:872.362667pt;}
.y6b{bottom:873.762667pt;}
.y3b{bottom:885.229333pt;}
.y85{bottom:891.096000pt;}
.y1f{bottom:895.362667pt;}
.y52{bottom:900.762667pt;}
.y15{bottom:902.162667pt;}
.y2{bottom:908.229333pt;}
.y84{bottom:914.096000pt;}
.y1e{bottom:924.229333pt;}
.y14{bottom:932.829333pt;}
.y3a{bottom:937.096000pt;}
.h7{height:44.586667pt;}
.h3{height:44.938667pt;}
.h4{height:57.194667pt;}
.h5{height:61.280000pt;}
.h6{height:65.365333pt;}
.h2{height:81.706667pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:20.266667pt;}
.x5{left:96.133333pt;}
.xb{left:97.133333pt;}
.x10{left:101.000000pt;}
.x7{left:102.133333pt;}
.x1{left:113.000000pt;}
.xf{left:115.066667pt;}
.xc{left:118.466667pt;}
.x11{left:119.600000pt;}
.x13{left:122.800000pt;}
.x14{left:149.466667pt;}
.x2{left:175.200000pt;}
.xd{left:190.066667pt;}
.x6{left:220.266667pt;}
.x12{left:330.066667pt;}
.xe{left:346.600000pt;}
.xa{left:354.400000pt;}
.x4{left:357.933333pt;}
.x15{left:370.533333pt;}
.x3{left:376.133333pt;}
.x8{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; }
  