
    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_ad5b68e70c3c6700df55c15f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_fe96f4635972fc91c5833c66.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_eadce42fd20b470f43df3d13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907000;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;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.051000px;}
.ls10{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.102000px;}
.ls14{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.255000px;}
.ls13{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.ls17{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.510000px;}
.lsd{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.765000px;}
.ls1c{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.840000px;}
.ls15{letter-spacing:0.900000px;}
.ls12{letter-spacing:0.960000px;}
.ls1d{letter-spacing:1.020000px;}
.ls20{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.122000px;}
.ls16{letter-spacing:1.140000px;}
.ls1a{letter-spacing:1.200000px;}
.ls1b{letter-spacing:1.320000px;}
.ls1f{letter-spacing:1.380000px;}
.ls8{letter-spacing:1.440000px;}
.ls1e{letter-spacing:1.500000px;}
.ls11{letter-spacing:2.340000px;}
.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:-16.200000px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-17.130000px;}
._5{margin-left:-15.198000px;}
._6{margin-left:-14.178000px;}
._7{margin-left:-12.597000px;}
._b{margin-left:-2.520000px;}
._3{margin-left:-1.479000px;}
._1{width:1.020000px;}
._2{width:2.040000px;}
._4{width:3.468000px;}
._9{width:4.620000px;}
._a{width:6.540000px;}
._14{width:23.658000px;}
._13{width:24.660000px;}
._0{width:36.000000px;}
._10{width:51.516000px;}
._f{width:235.926000px;}
._11{width:273.618000px;}
._12{width:280.800000px;}
._e{width:283.986000px;}
._c{width:466.848000px;}
._8{width:782.736000px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:48.982650px;}
.yae{bottom:49.620450px;}
.y5f{bottom:51.973650px;}
.y86{bottom:53.881950px;}
.y1c{bottom:64.013100px;}
.y48{bottom:66.232650px;}
.yad{bottom:66.870450px;}
.y5e{bottom:67.728150px;}
.y85{bottom:71.131950px;}
.y47{bottom:83.482650px;}
.yac{bottom:84.120450px;}
.y1b{bottom:85.012350px;}
.y84{bottom:88.381950px;}
.y5d{bottom:91.353150px;}
.y1a{bottom:100.006350px;}
.y46{bottom:100.732650px;}
.yab{bottom:101.370450px;}
.y83{bottom:105.631950px;}
.y5c{bottom:107.107650px;}
.y19{bottom:115.000350px;}
.y45{bottom:117.982650px;}
.yaa{bottom:118.620450px;}
.y82{bottom:122.881950px;}
.y18{bottom:129.994350px;}
.y44{bottom:135.232650px;}
.ya9{bottom:135.870450px;}
.y81{bottom:140.131950px;}
.y5b{bottom:141.607650px;}
.y17{bottom:144.988350px;}
.y43{bottom:152.482650px;}
.ya8{bottom:153.120450px;}
.y80{bottom:157.381950px;}
.y16{bottom:159.982350px;}
.y42{bottom:169.732650px;}
.y7f{bottom:174.631950px;}
.y15{bottom:174.976350px;}
.y5a{bottom:176.071650px;}
.y41{bottom:186.982650px;}
.ya7{bottom:187.518150px;}
.y14{bottom:189.970350px;}
.y59{bottom:191.826150px;}
.y7e{bottom:191.881950px;}
.y40{bottom:204.232650px;}
.y58{bottom:215.451150px;}
.ya6{bottom:219.013650px;}
.y13{bottom:219.971100px;}
.y3f{bottom:221.482650px;}
.y7d{bottom:226.323450px;}
.ya5{bottom:234.768150px;}
.y3e{bottom:238.732650px;}
.y57{bottom:239.076150px;}
.y56{bottom:254.830650px;}
.y12{bottom:255.977100px;}
.y3d{bottom:255.982650px;}
.ya4{bottom:256.260150px;}
.y7c{bottom:257.818950px;}
.ya3{bottom:272.014650px;}
.y3c{bottom:273.232650px;}
.y11{bottom:276.976350px;}
.y55{bottom:278.455650px;}
.y7b{bottom:281.443950px;}
.y3b{bottom:290.482650px;}
.y10{bottom:291.970350px;}
.ya2{bottom:293.506650px;}
.y7a{bottom:297.198450px;}
.y54{bottom:302.080650px;}
.yf{bottom:306.964350px;}
.y3a{bottom:307.732650px;}
.ya1{bottom:309.261150px;}
.y53{bottom:317.835150px;}
.y79{bottom:320.823450px;}
.ye{bottom:321.958350px;}
.y39{bottom:324.982650px;}
.ya0{bottom:330.753150px;}
.y78{bottom:336.577950px;}
.yd{bottom:336.952350px;}
.y52{bottom:341.460150px;}
.y38{bottom:342.232650px;}
.y9f{bottom:346.507650px;}
.yc{bottom:351.946350px;}
.y51{bottom:357.214650px;}
.y37{bottom:359.482650px;}
.y77{bottom:360.202950px;}
.yb{bottom:366.940350px;}
.y9e{bottom:367.999650px;}
.yb7{bottom:368.107650px;}
.y76{bottom:375.957450px;}
.y36{bottom:376.732650px;}
.y50{bottom:380.839650px;}
.ya{bottom:381.934350px;}
.y9d{bottom:383.754150px;}
.yb6{bottom:385.357650px;}
.y35{bottom:393.982650px;}
.y4f{bottom:396.594150px;}
.y75{bottom:399.582450px;}
.yb5{bottom:402.607650px;}
.y9c{bottom:405.246150px;}
.y34{bottom:411.232650px;}
.y9{bottom:411.935100px;}
.y74{bottom:415.336950px;}
.yb4{bottom:419.857650px;}
.y4e{bottom:420.219150px;}
.y9b{bottom:421.000650px;}
.y33{bottom:428.482650px;}
.y4d{bottom:435.973650px;}
.yb3{bottom:437.107650px;}
.y73{bottom:438.961950px;}
.y9a{bottom:442.492650px;}
.y32{bottom:445.732650px;}
.yb2{bottom:454.357650px;}
.y72{bottom:454.716450px;}
.y99{bottom:458.247150px;}
.y4c{bottom:459.598650px;}
.y31{bottom:462.982650px;}
.yb1{bottom:471.607650px;}
.y4b{bottom:475.353150px;}
.y71{bottom:478.341450px;}
.y98{bottom:479.739150px;}
.y30{bottom:480.232650px;}
.yb0{bottom:488.857650px;}
.y70{bottom:494.095950px;}
.y97{bottom:495.493650px;}
.y2f{bottom:497.482650px;}
.y4a{bottom:498.978150px;}
.y2e{bottom:514.732650px;}
.y96{bottom:516.985650px;}
.y6f{bottom:517.720950px;}
.y2d{bottom:531.982650px;}
.y95{bottom:532.740150px;}
.y6e{bottom:533.475450px;}
.y2c{bottom:549.232650px;}
.y94{bottom:554.232150px;}
.y6d{bottom:557.100450px;}
.y2b{bottom:566.482650px;}
.y93{bottom:569.986650px;}
.y6c{bottom:572.854950px;}
.y2a{bottom:583.732650px;}
.y92{bottom:591.478650px;}
.y6b{bottom:596.479950px;}
.y29{bottom:600.982650px;}
.y91{bottom:607.233150px;}
.y6a{bottom:612.234450px;}
.y28{bottom:618.232650px;}
.y90{bottom:628.725150px;}
.y27{bottom:635.482650px;}
.y69{bottom:635.859450px;}
.y8{bottom:636.534750px;}
.y8f{bottom:644.479650px;}
.y7{bottom:650.790750px;}
.y68{bottom:651.613950px;}
.y26{bottom:652.732650px;}
.yaf{bottom:661.357650px;}
.y6{bottom:665.046750px;}
.y8e{bottom:665.971650px;}
.y25{bottom:669.982650px;}
.y67{bottom:675.238950px;}
.y8d{bottom:681.726150px;}
.y5{bottom:683.047050px;}
.y24{bottom:687.232650px;}
.y66{bottom:690.993450px;}
.y8c{bottom:703.218150px;}
.y89{bottom:703.231650px;}
.y23{bottom:704.482650px;}
.y65{bottom:714.618450px;}
.y8b{bottom:718.972650px;}
.y88{bottom:718.986150px;}
.y22{bottom:721.732650px;}
.y64{bottom:730.372950px;}
.y8a{bottom:734.727150px;}
.y87{bottom:734.740650px;}
.y21{bottom:738.982650px;}
.y4{bottom:740.377650px;}
.y63{bottom:753.997950px;}
.y20{bottom:756.232650px;}
.y3{bottom:767.377650px;}
.y62{bottom:769.752450px;}
.y1f{bottom:773.482650px;}
.y1e{bottom:790.732650px;}
.y61{bottom:793.377450px;}
.y2{bottom:794.377650px;}
.y1d{bottom:807.982650px;}
.y60{bottom:809.131950px;}
.y1{bottom:855.804150px;}
.h6{height:35.700000px;}
.h8{height:42.000000px;}
.h2{height:42.720000px;}
.h7{height:45.390000px;}
.h5{height:48.060000px;}
.h4{height:53.400000px;}
.h3{height:85.440000px;}
.h0{height:892.914750px;}
.h1{height:893.250000px;}
.w0{width:595.275750px;}
.w1{width:595.500000px;}
.x0{left:0.000000px;}
.x2{left:53.149500px;}
.x3{left:75.649500px;}
.x4{left:98.152350px;}
.x1{left:291.172200px;}
.x9{left:297.636000px;}
.x7{left:304.789500px;}
.xa{left:320.136000px;}
.x5{left:326.626350px;}
.x8{left:430.393500px;}
.x6{left:441.646350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.045333pt;}
.ls10{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.090667pt;}
.ls14{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.226667pt;}
.ls13{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.ls17{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.453333pt;}
.lsd{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.680000pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls15{letter-spacing:0.800000pt;}
.ls12{letter-spacing:0.853333pt;}
.ls1d{letter-spacing:0.906667pt;}
.ls20{letter-spacing:0.960000pt;}
.ls5{letter-spacing:0.997333pt;}
.ls16{letter-spacing:1.013333pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls1f{letter-spacing:1.226667pt;}
.ls8{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.333333pt;}
.ls11{letter-spacing:2.080000pt;}
.ws1{word-spacing:-14.400000pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-15.226667pt;}
._5{margin-left:-13.509333pt;}
._6{margin-left:-12.602667pt;}
._7{margin-left:-11.197333pt;}
._b{margin-left:-2.240000pt;}
._3{margin-left:-1.314667pt;}
._1{width:0.906667pt;}
._2{width:1.813333pt;}
._4{width:3.082667pt;}
._9{width:4.106667pt;}
._a{width:5.813333pt;}
._14{width:21.029333pt;}
._13{width:21.920000pt;}
._0{width:32.000000pt;}
._10{width:45.792000pt;}
._f{width:209.712000pt;}
._11{width:243.216000pt;}
._12{width:249.600000pt;}
._e{width:252.432000pt;}
._c{width:414.976000pt;}
._8{width:695.765333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:43.540133pt;}
.yae{bottom:44.107067pt;}
.y5f{bottom:46.198800pt;}
.y86{bottom:47.895067pt;}
.y1c{bottom:56.900533pt;}
.y48{bottom:58.873467pt;}
.yad{bottom:59.440400pt;}
.y5e{bottom:60.202800pt;}
.y85{bottom:63.228400pt;}
.y47{bottom:74.206800pt;}
.yac{bottom:74.773733pt;}
.y1b{bottom:75.566533pt;}
.y84{bottom:78.561733pt;}
.y5d{bottom:81.202800pt;}
.y1a{bottom:88.894533pt;}
.y46{bottom:89.540133pt;}
.yab{bottom:90.107067pt;}
.y83{bottom:93.895067pt;}
.y5c{bottom:95.206800pt;}
.y19{bottom:102.222533pt;}
.y45{bottom:104.873467pt;}
.yaa{bottom:105.440400pt;}
.y82{bottom:109.228400pt;}
.y18{bottom:115.550533pt;}
.y44{bottom:120.206800pt;}
.ya9{bottom:120.773733pt;}
.y81{bottom:124.561733pt;}
.y5b{bottom:125.873467pt;}
.y17{bottom:128.878533pt;}
.y43{bottom:135.540133pt;}
.ya8{bottom:136.107067pt;}
.y80{bottom:139.895067pt;}
.y16{bottom:142.206533pt;}
.y42{bottom:150.873467pt;}
.y7f{bottom:155.228400pt;}
.y15{bottom:155.534533pt;}
.y5a{bottom:156.508133pt;}
.y41{bottom:166.206800pt;}
.ya7{bottom:166.682800pt;}
.y14{bottom:168.862533pt;}
.y59{bottom:170.512133pt;}
.y7e{bottom:170.561733pt;}
.y40{bottom:181.540133pt;}
.y58{bottom:191.512133pt;}
.ya6{bottom:194.678800pt;}
.y13{bottom:195.529867pt;}
.y3f{bottom:196.873467pt;}
.y7d{bottom:201.176400pt;}
.ya5{bottom:208.682800pt;}
.y3e{bottom:212.206800pt;}
.y57{bottom:212.512133pt;}
.y56{bottom:226.516133pt;}
.y12{bottom:227.535200pt;}
.y3d{bottom:227.540133pt;}
.ya4{bottom:227.786800pt;}
.y7c{bottom:229.172400pt;}
.ya3{bottom:241.790800pt;}
.y3c{bottom:242.873467pt;}
.y11{bottom:246.201200pt;}
.y55{bottom:247.516133pt;}
.y7b{bottom:250.172400pt;}
.y3b{bottom:258.206800pt;}
.y10{bottom:259.529200pt;}
.ya2{bottom:260.894800pt;}
.y7a{bottom:264.176400pt;}
.y54{bottom:268.516133pt;}
.yf{bottom:272.857200pt;}
.y3a{bottom:273.540133pt;}
.ya1{bottom:274.898800pt;}
.y53{bottom:282.520133pt;}
.y79{bottom:285.176400pt;}
.ye{bottom:286.185200pt;}
.y39{bottom:288.873467pt;}
.ya0{bottom:294.002800pt;}
.y78{bottom:299.180400pt;}
.yd{bottom:299.513200pt;}
.y52{bottom:303.520133pt;}
.y38{bottom:304.206800pt;}
.y9f{bottom:308.006800pt;}
.yc{bottom:312.841200pt;}
.y51{bottom:317.524133pt;}
.y37{bottom:319.540133pt;}
.y77{bottom:320.180400pt;}
.yb{bottom:326.169200pt;}
.y9e{bottom:327.110800pt;}
.yb7{bottom:327.206800pt;}
.y76{bottom:334.184400pt;}
.y36{bottom:334.873467pt;}
.y50{bottom:338.524133pt;}
.ya{bottom:339.497200pt;}
.y9d{bottom:341.114800pt;}
.yb6{bottom:342.540133pt;}
.y35{bottom:350.206800pt;}
.y4f{bottom:352.528133pt;}
.y75{bottom:355.184400pt;}
.yb5{bottom:357.873467pt;}
.y9c{bottom:360.218800pt;}
.y34{bottom:365.540133pt;}
.y9{bottom:366.164533pt;}
.y74{bottom:369.188400pt;}
.yb4{bottom:373.206800pt;}
.y4e{bottom:373.528133pt;}
.y9b{bottom:374.222800pt;}
.y33{bottom:380.873467pt;}
.y4d{bottom:387.532133pt;}
.yb3{bottom:388.540133pt;}
.y73{bottom:390.188400pt;}
.y9a{bottom:393.326800pt;}
.y32{bottom:396.206800pt;}
.yb2{bottom:403.873467pt;}
.y72{bottom:404.192400pt;}
.y99{bottom:407.330800pt;}
.y4c{bottom:408.532133pt;}
.y31{bottom:411.540133pt;}
.yb1{bottom:419.206800pt;}
.y4b{bottom:422.536133pt;}
.y71{bottom:425.192400pt;}
.y98{bottom:426.434800pt;}
.y30{bottom:426.873467pt;}
.yb0{bottom:434.540133pt;}
.y70{bottom:439.196400pt;}
.y97{bottom:440.438800pt;}
.y2f{bottom:442.206800pt;}
.y4a{bottom:443.536133pt;}
.y2e{bottom:457.540133pt;}
.y96{bottom:459.542800pt;}
.y6f{bottom:460.196400pt;}
.y2d{bottom:472.873467pt;}
.y95{bottom:473.546800pt;}
.y6e{bottom:474.200400pt;}
.y2c{bottom:488.206800pt;}
.y94{bottom:492.650800pt;}
.y6d{bottom:495.200400pt;}
.y2b{bottom:503.540133pt;}
.y93{bottom:506.654800pt;}
.y6c{bottom:509.204400pt;}
.y2a{bottom:518.873467pt;}
.y92{bottom:525.758800pt;}
.y6b{bottom:530.204400pt;}
.y29{bottom:534.206800pt;}
.y91{bottom:539.762800pt;}
.y6a{bottom:544.208400pt;}
.y28{bottom:549.540133pt;}
.y90{bottom:558.866800pt;}
.y27{bottom:564.873467pt;}
.y69{bottom:565.208400pt;}
.y8{bottom:565.808667pt;}
.y8f{bottom:572.870800pt;}
.y7{bottom:578.480667pt;}
.y68{bottom:579.212400pt;}
.y26{bottom:580.206800pt;}
.yaf{bottom:587.873467pt;}
.y6{bottom:591.152667pt;}
.y8e{bottom:591.974800pt;}
.y25{bottom:595.540133pt;}
.y67{bottom:600.212400pt;}
.y8d{bottom:605.978800pt;}
.y5{bottom:607.152933pt;}
.y24{bottom:610.873467pt;}
.y66{bottom:614.216400pt;}
.y8c{bottom:625.082800pt;}
.y89{bottom:625.094800pt;}
.y23{bottom:626.206800pt;}
.y65{bottom:635.216400pt;}
.y8b{bottom:639.086800pt;}
.y88{bottom:639.098800pt;}
.y22{bottom:641.540133pt;}
.y64{bottom:649.220400pt;}
.y8a{bottom:653.090800pt;}
.y87{bottom:653.102800pt;}
.y21{bottom:656.873467pt;}
.y4{bottom:658.113467pt;}
.y63{bottom:670.220400pt;}
.y20{bottom:672.206800pt;}
.y3{bottom:682.113467pt;}
.y62{bottom:684.224400pt;}
.y1f{bottom:687.540133pt;}
.y1e{bottom:702.873467pt;}
.y61{bottom:705.224400pt;}
.y2{bottom:706.113467pt;}
.y1d{bottom:718.206800pt;}
.y60{bottom:719.228400pt;}
.y1{bottom:760.714800pt;}
.h6{height:31.733333pt;}
.h8{height:37.333333pt;}
.h2{height:37.973333pt;}
.h7{height:40.346667pt;}
.h5{height:42.720000pt;}
.h4{height:47.466667pt;}
.h3{height:75.946667pt;}
.h0{height:793.702000pt;}
.h1{height:794.000000pt;}
.w0{width:529.134000pt;}
.w1{width:529.333333pt;}
.x0{left:0.000000pt;}
.x2{left:47.244000pt;}
.x3{left:67.244000pt;}
.x4{left:87.246533pt;}
.x1{left:258.819733pt;}
.x9{left:264.565333pt;}
.x7{left:270.924000pt;}
.xa{left:284.565333pt;}
.x5{left:290.334533pt;}
.x8{left:382.572000pt;}
.x6{left:392.574533pt;}
}




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