
    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_0fd3d072d1ee26fa7117c228.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_75452771abc788cf887f6f99.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_3099425351d270367ade98c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.118164;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_83fd275317dab6d0f2258823.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.878906;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:-27.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.000000px;}
.v1{vertical-align:36.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls0{letter-spacing:7.800000px;}
.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:-17.160000px;}
.ws6{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.600000px;}
.ws7{word-spacing:-14.400000px;}
.ws3{word-spacing:-12.000000px;}
.ws5{word-spacing:-9.900000px;}
.ws8{word-spacing:-9.240000px;}
.ws2{word-spacing:-7.656000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.158000px;}
._2{width:1.248000px;}
._0{width:2.304000px;}
._7{width:3.432000px;}
._5{width:4.554000px;}
._6{width:5.616000px;}
._4{width:7.554000px;}
._3{width:8.934000px;}
._9{width:10.062000px;}
._8{width:11.076000px;}
._d{width:12.978000px;}
._e{width:14.280000px;}
._f{width:15.600000px;}
._c{width:17.916000px;}
._b{width:19.038000px;}
._13{width:20.520000px;}
._a{width:22.152000px;}
._11{width:23.880000px;}
._10{width:25.632000px;}
._12{width:27.660000px;}
._14{width:28.902000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,238);}
.fs3{font-size:34.800000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y39{bottom:110.208000px;}
.y18{bottom:133.458000px;}
.y38{bottom:157.083000px;}
.y7b{bottom:163.233000px;}
.y80{bottom:163.983000px;}
.y17{bottom:167.733000px;}
.y7f{bottom:171.708000px;}
.y37{bottom:179.058000px;}
.y5f{bottom:185.958000px;}
.yab{bottom:189.408000px;}
.y7a{bottom:197.508000px;}
.y36{bottom:201.033000px;}
.y16{bottom:202.008000px;}
.ybc{bottom:202.308000px;}
.y7e{bottom:205.983000px;}
.y66{bottom:207.933000px;}
.y92{bottom:214.158000px;}
.y77{bottom:214.833000px;}
.yaa{bottom:221.058000px;}
.y35{bottom:223.008000px;}
.y71{bottom:223.308000px;}
.yc3{bottom:227.508000px;}
.y7d{bottom:229.908000px;}
.y79{bottom:231.783000px;}
.ybb{bottom:233.958000px;}
.y15{bottom:236.283000px;}
.y5e{bottom:240.258000px;}
.y34{bottom:244.983000px;}
.y91{bottom:245.808000px;}
.y76{bottom:249.108000px;}
.y4a{bottom:251.883000px;}
.y70{bottom:257.583000px;}
.ya9{bottom:259.158000px;}
.y68{bottom:266.058000px;}
.y33{bottom:266.958000px;}
.y14{bottom:270.558000px;}
.yba{bottom:272.058000px;}
.y65{bottom:273.858000px;}
.y5d{bottom:274.533000px;}
.y75{bottom:283.383000px;}
.y90{bottom:283.908000px;}
.y32{bottom:288.933000px;}
.ya8{bottom:290.808000px;}
.y49{bottom:291.858000px;}
.y78{bottom:295.833000px;}
.yc2{bottom:297.258000px;}
.y64{bottom:300.333000px;}
.yb9{bottom:303.708000px;}
.y13{bottom:304.833000px;}
.y5c{bottom:308.808000px;}
.y31{bottom:310.908000px;}
.y8f{bottom:315.558000px;}
.y74{bottom:317.658000px;}
.y4d{bottom:317.808000px;}
.y48{bottom:326.133000px;}
.ya7{bottom:328.908000px;}
.y30{bottom:332.883000px;}
.y63{bottom:334.608000px;}
.y7c{bottom:339.783000px;}
.yb8{bottom:341.808000px;}
.y5b{bottom:343.083000px;}
.y73{bottom:351.933000px;}
.y8e{bottom:353.658000px;}
.y2f{bottom:354.858000px;}
.y47{bottom:360.408000px;}
.ya6{bottom:360.558000px;}
.yc1{bottom:367.008000px;}
.y62{bottom:368.883000px;}
.yb7{bottom:373.458000px;}
.y12{bottom:374.358000px;}
.y2e{bottom:376.833000px;}
.y5a{bottom:377.358000px;}
.y8d{bottom:385.308000px;}
.y72{bottom:386.208000px;}
.y46{bottom:394.683000px;}
.ya5{bottom:398.658000px;}
.y2d{bottom:398.808000px;}
.y61{bottom:403.158000px;}
.y11{bottom:405.783000px;}
.yb6{bottom:411.558000px;}
.y59{bottom:411.633000px;}
.y2c{bottom:420.783000px;}
.y8c{bottom:423.408000px;}
.y45{bottom:428.958000px;}
.ya4{bottom:430.308000px;}
.yc0{bottom:436.758000px;}
.y10{bottom:437.208000px;}
.y60{bottom:437.433000px;}
.y2b{bottom:442.758000px;}
.yb5{bottom:443.208000px;}
.y58{bottom:445.908000px;}
.y8b{bottom:455.058000px;}
.y44{bottom:463.233000px;}
.y2a{bottom:464.733000px;}
.ya3{bottom:468.408000px;}
.yf{bottom:468.633000px;}
.y67{bottom:471.708000px;}
.yb4{bottom:474.858000px;}
.y57{bottom:480.183000px;}
.y29{bottom:486.708000px;}
.y8a{bottom:493.158000px;}
.y43{bottom:497.508000px;}
.ye{bottom:500.058000px;}
.y4c{bottom:505.983000px;}
.ybf{bottom:506.508000px;}
.yb3{bottom:512.958000px;}
.y56{bottom:514.458000px;}
.y28{bottom:515.583000px;}
.y89{bottom:524.808000px;}
.yd{bottom:531.483000px;}
.y42{bottom:531.783000px;}
.ya2{bottom:538.158000px;}
.y4b{bottom:540.258000px;}
.yb2{bottom:544.608000px;}
.y55{bottom:548.733000px;}
.yc{bottom:562.908000px;}
.y41{bottom:566.058000px;}
.ya1{bottom:569.808000px;}
.y27{bottom:574.533000px;}
.yb1{bottom:576.258000px;}
.y54{bottom:583.008000px;}
.yb{bottom:594.333000px;}
.y88{bottom:594.558000px;}
.y40{bottom:600.333000px;}
.ya0{bottom:607.908000px;}
.y26{bottom:608.808000px;}
.yb0{bottom:614.358000px;}
.y53{bottom:617.283000px;}
.ya{bottom:625.758000px;}
.y87{bottom:632.658000px;}
.y3f{bottom:634.608000px;}
.y9f{bottom:639.558000px;}
.y25{bottom:643.083000px;}
.yaf{bottom:646.008000px;}
.y52{bottom:651.558000px;}
.y9{bottom:657.183000px;}
.y86{bottom:664.308000px;}
.y3e{bottom:668.883000px;}
.y9e{bottom:671.208000px;}
.y24{bottom:677.358000px;}
.yae{bottom:677.658000px;}
.y51{bottom:685.833000px;}
.y8{bottom:688.608000px;}
.y85{bottom:702.408000px;}
.y6f{bottom:703.158000px;}
.y9d{bottom:709.308000px;}
.y23{bottom:711.633000px;}
.yad{bottom:715.758000px;}
.y7{bottom:720.033000px;}
.y50{bottom:720.108000px;}
.y84{bottom:734.058000px;}
.y6e{bottom:737.433000px;}
.y22{bottom:745.908000px;}
.y9c{bottom:747.408000px;}
.y4f{bottom:754.383000px;}
.y6d{bottom:771.708000px;}
.y83{bottom:772.158000px;}
.y21{bottom:780.183000px;}
.y9b{bottom:785.508000px;}
.y4e{bottom:788.658000px;}
.y6{bottom:797.058000px;}
.y82{bottom:803.808000px;}
.y6c{bottom:805.983000px;}
.y3d{bottom:814.458000px;}
.y9a{bottom:817.158000px;}
.y20{bottom:822.933000px;}
.ybe{bottom:823.608000px;}
.y5{bottom:831.333000px;}
.y6b{bottom:840.258000px;}
.y81{bottom:841.908000px;}
.y3c{bottom:848.733000px;}
.y99{bottom:855.258000px;}
.y1f{bottom:857.208000px;}
.y3b{bottom:883.008000px;}
.y98{bottom:886.908000px;}
.y1e{bottom:891.483000px;}
.ybd{bottom:893.358000px;}
.y4{bottom:905.433000px;}
.y3a{bottom:917.283000px;}
.y97{bottom:925.008000px;}
.y1d{bottom:925.758000px;}
.y6a{bottom:951.558000px;}
.y96{bottom:956.658000px;}
.y1c{bottom:960.033000px;}
.yac{bottom:963.108000px;}
.y69{bottom:985.833000px;}
.y1b{bottom:994.308000px;}
.y95{bottom:994.758000px;}
.y3{bottom:1028.508000px;}
.y1a{bottom:1028.583000px;}
.y94{bottom:1032.858000px;}
.y2{bottom:1062.783000px;}
.y19{bottom:1062.858000px;}
.y93{bottom:1064.508000px;}
.h5{height:30.585937px;}
.h6{height:52.734375px;}
.h7{height:63.281250px;}
.h2{height:68.554688px;}
.h8{height:69.914062px;}
.h4{height:76.150781px;}
.h3{height:79.101562px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:110.775000px;}
.x6{left:112.425000px;}
.x1{left:114.075000px;}
.x2{left:229.050000px;}
.x3{left:252.600000px;}
.x5{left:307.575000px;}
.x4{left:388.875000px;}
.x8{left:450.525000px;}
.x7{left:454.875000px;}
@media print{
.v2{vertical-align:-24.533333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.333333pt;}
.v1{vertical-align:32.533333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls0{letter-spacing:6.933333pt;}
.ws4{word-spacing:-15.253333pt;}
.ws6{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.866667pt;}
.ws7{word-spacing:-12.800000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws5{word-spacing:-8.800000pt;}
.ws8{word-spacing:-8.213333pt;}
.ws2{word-spacing:-6.805333pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.029333pt;}
._2{width:1.109333pt;}
._0{width:2.048000pt;}
._7{width:3.050667pt;}
._5{width:4.048000pt;}
._6{width:4.992000pt;}
._4{width:6.714667pt;}
._3{width:7.941333pt;}
._9{width:8.944000pt;}
._8{width:9.845333pt;}
._d{width:11.536000pt;}
._e{width:12.693333pt;}
._f{width:13.866667pt;}
._c{width:15.925333pt;}
._b{width:16.922667pt;}
._13{width:18.240000pt;}
._a{width:19.690667pt;}
._11{width:21.226667pt;}
._10{width:22.784000pt;}
._12{width:24.586667pt;}
._14{width:25.690667pt;}
.fs3{font-size:30.933333pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y39{bottom:97.962667pt;}
.y18{bottom:118.629333pt;}
.y38{bottom:139.629333pt;}
.y7b{bottom:145.096000pt;}
.y80{bottom:145.762667pt;}
.y17{bottom:149.096000pt;}
.y7f{bottom:152.629333pt;}
.y37{bottom:159.162667pt;}
.y5f{bottom:165.296000pt;}
.yab{bottom:168.362667pt;}
.y7a{bottom:175.562667pt;}
.y36{bottom:178.696000pt;}
.y16{bottom:179.562667pt;}
.ybc{bottom:179.829333pt;}
.y7e{bottom:183.096000pt;}
.y66{bottom:184.829333pt;}
.y92{bottom:190.362667pt;}
.y77{bottom:190.962667pt;}
.yaa{bottom:196.496000pt;}
.y35{bottom:198.229333pt;}
.y71{bottom:198.496000pt;}
.yc3{bottom:202.229333pt;}
.y7d{bottom:204.362667pt;}
.y79{bottom:206.029333pt;}
.ybb{bottom:207.962667pt;}
.y15{bottom:210.029333pt;}
.y5e{bottom:213.562667pt;}
.y34{bottom:217.762667pt;}
.y91{bottom:218.496000pt;}
.y76{bottom:221.429333pt;}
.y4a{bottom:223.896000pt;}
.y70{bottom:228.962667pt;}
.ya9{bottom:230.362667pt;}
.y68{bottom:236.496000pt;}
.y33{bottom:237.296000pt;}
.y14{bottom:240.496000pt;}
.yba{bottom:241.829333pt;}
.y65{bottom:243.429333pt;}
.y5d{bottom:244.029333pt;}
.y75{bottom:251.896000pt;}
.y90{bottom:252.362667pt;}
.y32{bottom:256.829333pt;}
.ya8{bottom:258.496000pt;}
.y49{bottom:259.429333pt;}
.y78{bottom:262.962667pt;}
.yc2{bottom:264.229333pt;}
.y64{bottom:266.962667pt;}
.yb9{bottom:269.962667pt;}
.y13{bottom:270.962667pt;}
.y5c{bottom:274.496000pt;}
.y31{bottom:276.362667pt;}
.y8f{bottom:280.496000pt;}
.y74{bottom:282.362667pt;}
.y4d{bottom:282.496000pt;}
.y48{bottom:289.896000pt;}
.ya7{bottom:292.362667pt;}
.y30{bottom:295.896000pt;}
.y63{bottom:297.429333pt;}
.y7c{bottom:302.029333pt;}
.yb8{bottom:303.829333pt;}
.y5b{bottom:304.962667pt;}
.y73{bottom:312.829333pt;}
.y8e{bottom:314.362667pt;}
.y2f{bottom:315.429333pt;}
.y47{bottom:320.362667pt;}
.ya6{bottom:320.496000pt;}
.yc1{bottom:326.229333pt;}
.y62{bottom:327.896000pt;}
.yb7{bottom:331.962667pt;}
.y12{bottom:332.762667pt;}
.y2e{bottom:334.962667pt;}
.y5a{bottom:335.429333pt;}
.y8d{bottom:342.496000pt;}
.y72{bottom:343.296000pt;}
.y46{bottom:350.829333pt;}
.ya5{bottom:354.362667pt;}
.y2d{bottom:354.496000pt;}
.y61{bottom:358.362667pt;}
.y11{bottom:360.696000pt;}
.yb6{bottom:365.829333pt;}
.y59{bottom:365.896000pt;}
.y2c{bottom:374.029333pt;}
.y8c{bottom:376.362667pt;}
.y45{bottom:381.296000pt;}
.ya4{bottom:382.496000pt;}
.yc0{bottom:388.229333pt;}
.y10{bottom:388.629333pt;}
.y60{bottom:388.829333pt;}
.y2b{bottom:393.562667pt;}
.yb5{bottom:393.962667pt;}
.y58{bottom:396.362667pt;}
.y8b{bottom:404.496000pt;}
.y44{bottom:411.762667pt;}
.y2a{bottom:413.096000pt;}
.ya3{bottom:416.362667pt;}
.yf{bottom:416.562667pt;}
.y67{bottom:419.296000pt;}
.yb4{bottom:422.096000pt;}
.y57{bottom:426.829333pt;}
.y29{bottom:432.629333pt;}
.y8a{bottom:438.362667pt;}
.y43{bottom:442.229333pt;}
.ye{bottom:444.496000pt;}
.y4c{bottom:449.762667pt;}
.ybf{bottom:450.229333pt;}
.yb3{bottom:455.962667pt;}
.y56{bottom:457.296000pt;}
.y28{bottom:458.296000pt;}
.y89{bottom:466.496000pt;}
.yd{bottom:472.429333pt;}
.y42{bottom:472.696000pt;}
.ya2{bottom:478.362667pt;}
.y4b{bottom:480.229333pt;}
.yb2{bottom:484.096000pt;}
.y55{bottom:487.762667pt;}
.yc{bottom:500.362667pt;}
.y41{bottom:503.162667pt;}
.ya1{bottom:506.496000pt;}
.y27{bottom:510.696000pt;}
.yb1{bottom:512.229333pt;}
.y54{bottom:518.229333pt;}
.yb{bottom:528.296000pt;}
.y88{bottom:528.496000pt;}
.y40{bottom:533.629333pt;}
.ya0{bottom:540.362667pt;}
.y26{bottom:541.162667pt;}
.yb0{bottom:546.096000pt;}
.y53{bottom:548.696000pt;}
.ya{bottom:556.229333pt;}
.y87{bottom:562.362667pt;}
.y3f{bottom:564.096000pt;}
.y9f{bottom:568.496000pt;}
.y25{bottom:571.629333pt;}
.yaf{bottom:574.229333pt;}
.y52{bottom:579.162667pt;}
.y9{bottom:584.162667pt;}
.y86{bottom:590.496000pt;}
.y3e{bottom:594.562667pt;}
.y9e{bottom:596.629333pt;}
.y24{bottom:602.096000pt;}
.yae{bottom:602.362667pt;}
.y51{bottom:609.629333pt;}
.y8{bottom:612.096000pt;}
.y85{bottom:624.362667pt;}
.y6f{bottom:625.029333pt;}
.y9d{bottom:630.496000pt;}
.y23{bottom:632.562667pt;}
.yad{bottom:636.229333pt;}
.y7{bottom:640.029333pt;}
.y50{bottom:640.096000pt;}
.y84{bottom:652.496000pt;}
.y6e{bottom:655.496000pt;}
.y22{bottom:663.029333pt;}
.y9c{bottom:664.362667pt;}
.y4f{bottom:670.562667pt;}
.y6d{bottom:685.962667pt;}
.y83{bottom:686.362667pt;}
.y21{bottom:693.496000pt;}
.y9b{bottom:698.229333pt;}
.y4e{bottom:701.029333pt;}
.y6{bottom:708.496000pt;}
.y82{bottom:714.496000pt;}
.y6c{bottom:716.429333pt;}
.y3d{bottom:723.962667pt;}
.y9a{bottom:726.362667pt;}
.y20{bottom:731.496000pt;}
.ybe{bottom:732.096000pt;}
.y5{bottom:738.962667pt;}
.y6b{bottom:746.896000pt;}
.y81{bottom:748.362667pt;}
.y3c{bottom:754.429333pt;}
.y99{bottom:760.229333pt;}
.y1f{bottom:761.962667pt;}
.y3b{bottom:784.896000pt;}
.y98{bottom:788.362667pt;}
.y1e{bottom:792.429333pt;}
.ybd{bottom:794.096000pt;}
.y4{bottom:804.829333pt;}
.y3a{bottom:815.362667pt;}
.y97{bottom:822.229333pt;}
.y1d{bottom:822.896000pt;}
.y6a{bottom:845.829333pt;}
.y96{bottom:850.362667pt;}
.y1c{bottom:853.362667pt;}
.yac{bottom:856.096000pt;}
.y69{bottom:876.296000pt;}
.y1b{bottom:883.829333pt;}
.y95{bottom:884.229333pt;}
.y3{bottom:914.229333pt;}
.y1a{bottom:914.296000pt;}
.y94{bottom:918.096000pt;}
.y2{bottom:944.696000pt;}
.y19{bottom:944.762667pt;}
.y93{bottom:946.229333pt;}
.h5{height:27.187500pt;}
.h6{height:46.875000pt;}
.h7{height:56.250000pt;}
.h2{height:60.937500pt;}
.h8{height:62.145833pt;}
.h4{height:67.689583pt;}
.h3{height:70.312500pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:98.466667pt;}
.x6{left:99.933333pt;}
.x1{left:101.400000pt;}
.x2{left:203.600000pt;}
.x3{left:224.533333pt;}
.x5{left:273.400000pt;}
.x4{left:345.666667pt;}
.x8{left:400.466667pt;}
.x7{left:404.333333pt;}
}




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