
    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_b313aefa3d8f8ef4dfb7115b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_61340391be89dcc01fa348bf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_a4b3c83a09f89131d5bb18ec.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_18c0d25052132d86ef0865c1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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:ff5;src:url('chunks/assets/font_d6d7b93088be97ffbfc01222.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;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);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.700400px;}
.v5{vertical-align:17.727600px;}
.v2{vertical-align:21.932400px;}
.v1{vertical-align:29.912400px;}
.ls10{letter-spacing:-2.079000px;}
.ls5{letter-spacing:-1.380000px;}
.ls6{letter-spacing:-0.420000px;}
.ls2{letter-spacing:-0.189000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.ls4{letter-spacing:0.240000px;}
.lsa{letter-spacing:2.400000px;}
.lsf{letter-spacing:3.118500px;}
.lsc{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.200000px;}
.lsd{letter-spacing:5.175000px;}
.ls7{letter-spacing:5.760000px;}
.lsb{letter-spacing:5.850000px;}
.ls8{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.lse{letter-spacing:6.300000px;}
.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;}
}
.ws9{word-spacing:-26.925000px;}
.wsc{word-spacing:-26.250000px;}
.ws2{word-spacing:-22.740000px;}
.ws1{word-spacing:-22.620000px;}
.wsd{word-spacing:-19.389000px;}
.ws0{word-spacing:-17.100000px;}
.ws10{word-spacing:-14.820000px;}
.wse{word-spacing:-11.303787px;}
.wsf{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws8{word-spacing:-4.200000px;}
.wsb{word-spacing:-3.600000px;}
.wsa{word-spacing:-2.400000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.189000px;}
.ws7{word-spacing:0.420000px;}
.ws6{word-spacing:1.380000px;}
.ws11{word-spacing:2.079000px;}
.ws12{word-spacing:3.654000px;}
._14{margin-left:-8.434800px;}
._13{margin-left:-7.254900px;}
._b{margin-left:-5.864400px;}
._6{margin-left:-4.671900px;}
._1{margin-left:-3.078000px;}
._2{margin-left:-1.128000px;}
._5{width:1.707300px;}
._4{width:3.336300px;}
._9{width:5.078400px;}
._7{width:6.269400px;}
._8{width:7.814400px;}
._a{width:9.661800px;}
._c{width:10.668000px;}
._11{width:12.689514px;}
._19{width:13.958700px;}
._1a{width:15.097500px;}
._18{width:16.228800px;}
._e{width:18.157200px;}
._1e{width:19.989000px;}
._16{width:21.873600px;}
._17{width:23.073600px;}
._1d{width:26.586300px;}
._10{width:43.445160px;}
._d{width:85.554000px;}
._f{width:243.726000px;}
._12{width:450.440400px;}
._1c{width:452.520900px;}
._0{width:578.400000px;}
._15{width:1016.617200px;}
._3{width:1023.787200px;}
._1b{width:1025.767200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fsc{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs6{font-size:48.972000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:62.964000px;}
.fs2{font-size:63.000000px;}
.fsb{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1d{bottom:106.296300px;}
.y6f{bottom:109.294800px;}
.y43{bottom:109.294950px;}
.y1c{bottom:126.544800px;}
.y6e{bottom:130.796700px;}
.y1b{bottom:145.048200px;}
.y90{bottom:153.301050px;}
.y42{bottom:153.378450px;}
.y1a{bottom:165.296700px;}
.y8f{bottom:173.602800px;}
.y41{bottom:174.785700px;}
.y6d{bottom:174.844350px;}
.y40{bottom:196.192950px;}
.y6c{bottom:196.251600px;}
.y8e{bottom:202.409550px;}
.y19{bottom:209.312850px;}
.y3f{bottom:217.600200px;}
.y6b{bottom:217.658850px;}
.y18{bottom:231.632850px;}
.y3e{bottom:239.007450px;}
.y6a{bottom:239.066100px;}
.y17{bottom:253.949250px;}
.y3d{bottom:260.414700px;}
.y69{bottom:260.473350px;}
.y16{bottom:274.769250px;}
.y3c{bottom:281.821950px;}
.y68{bottom:281.880600px;}
.y8d{bottom:293.791500px;}
.y15{bottom:295.589250px;}
.y3b{bottom:303.229200px;}
.y67{bottom:303.287850px;}
.y8c{bottom:314.094750px;}
.y3a{bottom:324.636450px;}
.y66{bottom:324.695100px;}
.y14{bottom:329.159250px;}
.y8b{bottom:334.398000px;}
.y39{bottom:346.043700px;}
.y65{bottom:346.102350px;}
.y8a{bottom:354.513600px;}
.y38{bottom:367.450950px;}
.y64{bottom:367.509600px;}
.y89{bottom:374.816850px;}
.y13{bottom:379.739250px;}
.y37{bottom:388.858200px;}
.y63{bottom:388.916850px;}
.y88{bottom:395.120100px;}
.y12{bottom:402.059250px;}
.y36{bottom:410.265450px;}
.y62{bottom:410.324100px;}
.y87{bottom:415.423350px;}
.y11{bottom:424.374000px;}
.y35{bottom:431.672700px;}
.y61{bottom:431.731350px;}
.y86{bottom:435.726600px;}
.y10{bottom:445.194000px;}
.y34{bottom:453.079950px;}
.y60{bottom:453.138600px;}
.y85{bottom:456.029850px;}
.yf{bottom:466.014000px;}
.y33{bottom:474.487200px;}
.y5f{bottom:474.545850px;}
.y84{bottom:476.333100px;}
.ye{bottom:486.834000px;}
.y32{bottom:495.894450px;}
.y5e{bottom:495.953100px;}
.y83{bottom:496.636350px;}
.y82{bottom:516.939600px;}
.y5d{bottom:517.360350px;}
.y31{bottom:517.370850px;}
.ya0{bottom:520.177350px;}
.yd{bottom:520.404000px;}
.y81{bottom:537.242850px;}
.y5c{bottom:538.767600px;}
.y30{bottom:538.778100px;}
.y9f{bottom:540.427350px;}
.y54{bottom:556.953600px;}
.y80{bottom:557.546100px;}
.y5b{bottom:560.174850px;}
.y2f{bottom:560.185350px;}
.y9e{bottom:560.677350px;}
.y53{bottom:577.291350px;}
.y7f{bottom:577.849350px;}
.yc{bottom:579.499350px;}
.y9d{bottom:580.927350px;}
.y5a{bottom:581.582100px;}
.y2e{bottom:581.592600px;}
.y52{bottom:597.629100px;}
.y7e{bottom:598.152600px;}
.y59{bottom:602.989350px;}
.y2d{bottom:602.999850px;}
.yb{bottom:607.807350px;}
.y9c{bottom:613.927350px;}
.y51{bottom:617.966850px;}
.y7d{bottom:618.455850px;}
.y58{bottom:624.396600px;}
.y2c{bottom:624.407100px;}
.y50{bottom:638.304600px;}
.y7c{bottom:638.759100px;}
.y57{bottom:645.803850px;}
.y2b{bottom:645.814350px;}
.y9b{bottom:655.384350px;}
.ya{bottom:657.397800px;}
.y4f{bottom:658.642350px;}
.y7b{bottom:659.062350px;}
.y56{bottom:667.211100px;}
.y2a{bottom:667.221600px;}
.y9a{bottom:675.638850px;}
.y4e{bottom:678.980100px;}
.y7a{bottom:679.365600px;}
.y55{bottom:688.618350px;}
.y29{bottom:688.628850px;}
.y9{bottom:690.202800px;}
.y99{bottom:695.893350px;}
.y4d{bottom:699.317850px;}
.y79{bottom:699.668850px;}
.y28{bottom:710.036100px;}
.y98{bottom:716.147850px;}
.y4c{bottom:719.655600px;}
.y78{bottom:719.972100px;}
.y27{bottom:731.443350px;}
.y97{bottom:736.402350px;}
.y4b{bottom:739.993350px;}
.y77{bottom:740.275350px;}
.y8{bottom:752.771100px;}
.y26{bottom:752.850600px;}
.y4a{bottom:760.331100px;}
.y76{bottom:760.578600px;}
.y96{bottom:765.161850px;}
.y25{bottom:774.257850px;}
.y49{bottom:780.668850px;}
.y75{bottom:780.881850px;}
.y7{bottom:783.596100px;}
.y95{bottom:785.416350px;}
.y24{bottom:795.665100px;}
.y48{bottom:801.006600px;}
.y74{bottom:801.185100px;}
.y6{bottom:805.916100px;}
.y94{bottom:814.175850px;}
.y23{bottom:817.072350px;}
.y47{bottom:821.344350px;}
.y73{bottom:821.488350px;}
.y5{bottom:828.236100px;}
.y93{bottom:834.430350px;}
.y22{bottom:838.479600px;}
.y46{bottom:841.682100px;}
.y72{bottom:841.791600px;}
.y92{bottom:854.684850px;}
.y4{bottom:859.061100px;}
.y21{bottom:859.886850px;}
.y45{bottom:862.019850px;}
.y71{bottom:862.094850px;}
.y20{bottom:881.294100px;}
.y3{bottom:881.381100px;}
.y44{bottom:882.363600px;}
.y70{bottom:882.398100px;}
.y91{bottom:883.444350px;}
.y1f{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1e{bottom:948.189000px;}
.h8{height:33.870539px;}
.ha{height:40.757812px;}
.h9{height:45.852539px;}
.h4{height:50.947266px;}
.hf{height:51.884766px;}
.h3{height:53.494629px;}
.he{height:54.479004px;}
.hb{height:58.589355px;}
.hd{height:59.339955px;}
.hc{height:59.667480px;}
.h2{height:63.684082px;}
.h7{height:65.789062px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:82.437900px;}
.x5{left:83.672550px;}
.x1{left:85.039350px;}
.x4{left:105.044250px;}
.x3{left:106.365600px;}
.x2{left:233.345250px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.844800pt;}
.v5{vertical-align:15.757867pt;}
.v2{vertical-align:19.495467pt;}
.v1{vertical-align:26.588800pt;}
.ls10{letter-spacing:-1.848000pt;}
.ls5{letter-spacing:-1.226667pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:-0.168000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.ls4{letter-spacing:0.213333pt;}
.lsa{letter-spacing:2.133333pt;}
.lsf{letter-spacing:2.772000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls0{letter-spacing:3.733333pt;}
.lsd{letter-spacing:4.600000pt;}
.ls7{letter-spacing:5.120000pt;}
.lsb{letter-spacing:5.200000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.lse{letter-spacing:5.600000pt;}
.ws9{word-spacing:-23.933333pt;}
.wsc{word-spacing:-23.333333pt;}
.ws2{word-spacing:-20.213333pt;}
.ws1{word-spacing:-20.106667pt;}
.wsd{word-spacing:-17.234667pt;}
.ws0{word-spacing:-15.200000pt;}
.ws10{word-spacing:-13.173333pt;}
.wse{word-spacing:-10.047811pt;}
.wsf{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws8{word-spacing:-3.733333pt;}
.wsb{word-spacing:-3.200000pt;}
.wsa{word-spacing:-2.133333pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.168000pt;}
.ws7{word-spacing:0.373333pt;}
.ws6{word-spacing:1.226667pt;}
.ws11{word-spacing:1.848000pt;}
.ws12{word-spacing:3.248000pt;}
._14{margin-left:-7.497600pt;}
._13{margin-left:-6.448800pt;}
._b{margin-left:-5.212800pt;}
._6{margin-left:-4.152800pt;}
._1{margin-left:-2.736000pt;}
._2{margin-left:-1.002667pt;}
._5{width:1.517600pt;}
._4{width:2.965600pt;}
._9{width:4.514133pt;}
._7{width:5.572800pt;}
._8{width:6.946133pt;}
._a{width:8.588267pt;}
._c{width:9.482667pt;}
._11{width:11.279568pt;}
._19{width:12.407733pt;}
._1a{width:13.420000pt;}
._18{width:14.425600pt;}
._e{width:16.139733pt;}
._1e{width:17.768000pt;}
._16{width:19.443200pt;}
._17{width:20.509867pt;}
._1d{width:23.632267pt;}
._10{width:38.617920pt;}
._d{width:76.048000pt;}
._f{width:216.645333pt;}
._12{width:400.391467pt;}
._1c{width:402.240800pt;}
._0{width:514.133333pt;}
._15{width:903.659733pt;}
._3{width:910.033067pt;}
._1b{width:911.793067pt;}
.fs8{font-size:27.984000pt;}
.fsc{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs6{font-size:43.530667pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:55.968000pt;}
.fs2{font-size:56.000000pt;}
.fsb{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1d{bottom:94.485600pt;}
.y6f{bottom:97.150933pt;}
.y43{bottom:97.151067pt;}
.y1c{bottom:112.484267pt;}
.y6e{bottom:116.263733pt;}
.y1b{bottom:128.931733pt;}
.y90{bottom:136.267600pt;}
.y42{bottom:136.336400pt;}
.y1a{bottom:146.930400pt;}
.y8f{bottom:154.313600pt;}
.y41{bottom:155.365067pt;}
.y6d{bottom:155.417200pt;}
.y40{bottom:174.393733pt;}
.y6c{bottom:174.445867pt;}
.y8e{bottom:179.919600pt;}
.y19{bottom:186.055867pt;}
.y3f{bottom:193.422400pt;}
.y6b{bottom:193.474533pt;}
.y18{bottom:205.895867pt;}
.y3e{bottom:212.451067pt;}
.y6a{bottom:212.503200pt;}
.y17{bottom:225.732667pt;}
.y3d{bottom:231.479733pt;}
.y69{bottom:231.531867pt;}
.y16{bottom:244.239333pt;}
.y3c{bottom:250.508400pt;}
.y68{bottom:250.560533pt;}
.y8d{bottom:261.148000pt;}
.y15{bottom:262.746000pt;}
.y3b{bottom:269.537067pt;}
.y67{bottom:269.589200pt;}
.y8c{bottom:279.195333pt;}
.y3a{bottom:288.565733pt;}
.y66{bottom:288.617867pt;}
.y14{bottom:292.586000pt;}
.y8b{bottom:297.242667pt;}
.y39{bottom:307.594400pt;}
.y65{bottom:307.646533pt;}
.y8a{bottom:315.123200pt;}
.y38{bottom:326.623067pt;}
.y64{bottom:326.675200pt;}
.y89{bottom:333.170533pt;}
.y13{bottom:337.546000pt;}
.y37{bottom:345.651733pt;}
.y63{bottom:345.703867pt;}
.y88{bottom:351.217867pt;}
.y12{bottom:357.386000pt;}
.y36{bottom:364.680400pt;}
.y62{bottom:364.732533pt;}
.y87{bottom:369.265200pt;}
.y11{bottom:377.221333pt;}
.y35{bottom:383.709067pt;}
.y61{bottom:383.761200pt;}
.y86{bottom:387.312533pt;}
.y10{bottom:395.728000pt;}
.y34{bottom:402.737733pt;}
.y60{bottom:402.789867pt;}
.y85{bottom:405.359867pt;}
.yf{bottom:414.234667pt;}
.y33{bottom:421.766400pt;}
.y5f{bottom:421.818533pt;}
.y84{bottom:423.407200pt;}
.ye{bottom:432.741333pt;}
.y32{bottom:440.795067pt;}
.y5e{bottom:440.847200pt;}
.y83{bottom:441.454533pt;}
.y82{bottom:459.501867pt;}
.y5d{bottom:459.875867pt;}
.y31{bottom:459.885200pt;}
.ya0{bottom:462.379867pt;}
.yd{bottom:462.581333pt;}
.y81{bottom:477.549200pt;}
.y5c{bottom:478.904533pt;}
.y30{bottom:478.913867pt;}
.y9f{bottom:480.379867pt;}
.y54{bottom:495.069867pt;}
.y80{bottom:495.596533pt;}
.y5b{bottom:497.933200pt;}
.y2f{bottom:497.942533pt;}
.y9e{bottom:498.379867pt;}
.y53{bottom:513.147867pt;}
.y7f{bottom:513.643867pt;}
.yc{bottom:515.110533pt;}
.y9d{bottom:516.379867pt;}
.y5a{bottom:516.961867pt;}
.y2e{bottom:516.971200pt;}
.y52{bottom:531.225867pt;}
.y7e{bottom:531.691200pt;}
.y59{bottom:535.990533pt;}
.y2d{bottom:535.999867pt;}
.yb{bottom:540.273200pt;}
.y9c{bottom:545.713200pt;}
.y51{bottom:549.303867pt;}
.y7d{bottom:549.738533pt;}
.y58{bottom:555.019200pt;}
.y2c{bottom:555.028533pt;}
.y50{bottom:567.381867pt;}
.y7c{bottom:567.785867pt;}
.y57{bottom:574.047867pt;}
.y2b{bottom:574.057200pt;}
.y9b{bottom:582.563867pt;}
.ya{bottom:584.353600pt;}
.y4f{bottom:585.459867pt;}
.y7b{bottom:585.833200pt;}
.y56{bottom:593.076533pt;}
.y2a{bottom:593.085867pt;}
.y9a{bottom:600.567867pt;}
.y4e{bottom:603.537867pt;}
.y7a{bottom:603.880533pt;}
.y55{bottom:612.105200pt;}
.y29{bottom:612.114533pt;}
.y9{bottom:613.513600pt;}
.y99{bottom:618.571867pt;}
.y4d{bottom:621.615867pt;}
.y79{bottom:621.927867pt;}
.y28{bottom:631.143200pt;}
.y98{bottom:636.575867pt;}
.y4c{bottom:639.693867pt;}
.y78{bottom:639.975200pt;}
.y27{bottom:650.171867pt;}
.y97{bottom:654.579867pt;}
.y4b{bottom:657.771867pt;}
.y77{bottom:658.022533pt;}
.y8{bottom:669.129867pt;}
.y26{bottom:669.200533pt;}
.y4a{bottom:675.849867pt;}
.y76{bottom:676.069867pt;}
.y96{bottom:680.143867pt;}
.y25{bottom:688.229200pt;}
.y49{bottom:693.927867pt;}
.y75{bottom:694.117200pt;}
.y7{bottom:696.529867pt;}
.y95{bottom:698.147867pt;}
.y24{bottom:707.257867pt;}
.y48{bottom:712.005867pt;}
.y74{bottom:712.164533pt;}
.y6{bottom:716.369867pt;}
.y94{bottom:723.711867pt;}
.y23{bottom:726.286533pt;}
.y47{bottom:730.083867pt;}
.y73{bottom:730.211867pt;}
.y5{bottom:736.209867pt;}
.y93{bottom:741.715867pt;}
.y22{bottom:745.315200pt;}
.y46{bottom:748.161867pt;}
.y72{bottom:748.259200pt;}
.y92{bottom:759.719867pt;}
.y4{bottom:763.609867pt;}
.y21{bottom:764.343867pt;}
.y45{bottom:766.239867pt;}
.y71{bottom:766.306533pt;}
.y20{bottom:783.372533pt;}
.y3{bottom:783.449867pt;}
.y44{bottom:784.323200pt;}
.y70{bottom:784.353867pt;}
.y91{bottom:785.283867pt;}
.y1f{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1e{bottom:842.834667pt;}
.h8{height:30.107146pt;}
.ha{height:36.229167pt;}
.h9{height:40.757812pt;}
.h4{height:45.286458pt;}
.hf{height:46.119792pt;}
.h3{height:47.550781pt;}
.he{height:48.425781pt;}
.hb{height:52.079427pt;}
.hd{height:52.746627pt;}
.hc{height:53.037760pt;}
.h2{height:56.608073pt;}
.h7{height:58.479167pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:73.278133pt;}
.x5{left:74.375600pt;}
.x1{left:75.590533pt;}
.x4{left:93.372667pt;}
.x3{left:94.547200pt;}
.x2{left:207.418000pt;}
}




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