
    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_65f9ace50d5d3864dd2e3dda.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_cb03f35d2ffd2797e0eefbdb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_53c73b7ae46e13ef95236bec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_0c5cd06ad685c43ac7354316.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0a5180665256b51faac3646f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.866000;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:ff6;src:url('chunks/assets/font_9973f6c5f83ce32f8bf5137a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.769000;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:ff7;src:url('chunks/assets/font_1575bfd536a47f21dd302732.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.528000;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:ff8;src:url('chunks/assets/font_a2508cdaf124726a6d0558ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.999000;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:ff9;src:url('chunks/assets/font_18c31cde0e0a3928ab35488c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.427000;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:ffa;src:url('chunks/assets/font_57659c1954e32cf32c4718bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.383000;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);}
.v7{vertical-align:-62.190000px;}
.v8{vertical-align:-41.472000px;}
.v1{vertical-align:-10.764000px;}
.va{vertical-align:-2.154000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.718000px;}
.v6{vertical-align:26.034000px;}
.v2{vertical-align:48.522000px;}
.v4{vertical-align:91.566000px;}
.v9{vertical-align:120.510000px;}
.v3{vertical-align:165.702000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001114px;}
.ls6{letter-spacing:2.773595px;}
.ls7{letter-spacing:4.031691px;}
.lsa{letter-spacing:4.050837px;}
.ls16{letter-spacing:8.249088px;}
.lsb{letter-spacing:10.154915px;}
.lsc{letter-spacing:11.961191px;}
.ls9{letter-spacing:15.924326px;}
.ls8{letter-spacing:18.926915px;}
.ls15{letter-spacing:19.869542px;}
.ls12{letter-spacing:19.941274px;}
.ls0{letter-spacing:22.021478px;}
.ls11{letter-spacing:22.595328px;}
.ls14{letter-spacing:22.667059px;}
.lse{letter-spacing:23.384371px;}
.ls5{letter-spacing:24.777191px;}
.lsf{letter-spacing:27.401318px;}
.ls4{letter-spacing:30.055373px;}
.ls13{letter-spacing:34.646170px;}
.lsd{letter-spacing:35.148288px;}
.ls10{letter-spacing:37.013299px;}
.ls2{letter-spacing:40.643518px;}
.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;}
}
.ws17{word-spacing:-45.664082px;}
.ws20{word-spacing:-38.856103px;}
.ws1b{word-spacing:-33.756703px;}
.ws29{word-spacing:-23.427410px;}
.ws24{word-spacing:-23.212216px;}
.ws1e{word-spacing:-23.140485px;}
.ws1d{word-spacing:-19.510886px;}
.ws1a{word-spacing:-7.531776px;}
.ws19{word-spacing:-3.586560px;}
.ws7{word-spacing:-3.084442px;}
.ws31{word-spacing:-0.789043px;}
.ws21{word-spacing:-0.071731px;}
.ws15{word-spacing:0.000000px;}
.ws28{word-spacing:0.071731px;}
.ws2a{word-spacing:0.143462px;}
.ws14{word-spacing:0.645581px;}
.ws1c{word-spacing:1.147699px;}
.wsf{word-spacing:2.438861px;}
.ws9{word-spacing:2.510592px;}
.ws6{word-spacing:3.156173px;}
.wsb{word-spacing:3.873485px;}
.ws2d{word-spacing:3.945216px;}
.ws2c{word-spacing:4.088678px;}
.wsd{word-spacing:4.303872px;}
.wsa{word-spacing:4.447334px;}
.ws1{word-spacing:4.648169px;}
.ws13{word-spacing:4.877722px;}
.ws2e{word-spacing:5.164646px;}
.ws16{word-spacing:5.379825px;}
.ws8{word-spacing:5.666765px;}
.ws2f{word-spacing:5.810227px;}
.ws0{word-spacing:6.496290px;}
.ws12{word-spacing:7.890432px;}
.ws5{word-spacing:8.392550px;}
.ws32{word-spacing:8.822938px;}
.ws27{word-spacing:9.181594px;}
.ws10{word-spacing:9.253325px;}
.ws11{word-spacing:9.827174px;}
.ws33{word-spacing:10.042368px;}
.ws4{word-spacing:10.401024px;}
.ws30{word-spacing:10.831411px;}
.wsc{word-spacing:11.405261px;}
.wse{word-spacing:11.979110px;}
.ws25{word-spacing:12.122573px;}
.ws3{word-spacing:12.696422px;}
.ws2b{word-spacing:13.198541px;}
.ws22{word-spacing:13.915853px;}
.ws23{word-spacing:13.987584px;}
.ws26{word-spacing:15.135283px;}
.ws1f{word-spacing:17.861069px;}
.ws18{word-spacing:22.867440px;}
.ws2{word-spacing:83.925075px;}
._5{margin-left:-4.882276px;}
._0{margin-left:-3.223350px;}
._3{margin-left:-1.936742px;}
._4{width:1.936742px;}
._1{width:3.223350px;}
._7{width:17.574144px;}
._a{width:22.810522px;}
._6{width:28.979405px;}
._c{width:30.700954px;}
._9{width:33.139814px;}
._2{width:34.430976px;}
._8{width:35.654960px;}
._d{width:43.770251px;}
._f{width:46.051430px;}
._e{width:47.701248px;}
._b{width:55.376486px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:63.168000px;}
.y3f{bottom:137.460000px;}
.y3e{bottom:159.129000px;}
.y1b{bottom:171.147000px;}
.y3d{bottom:180.798000px;}
.y1a{bottom:192.814500px;}
.y3c{bottom:202.467000px;}
.y3b{bottom:224.136000px;}
.y19{bottom:232.242000px;}
.y3a{bottom:263.562000px;}
.y18{bottom:292.143000px;}
.y17{bottom:313.812000px;}
.y39{bottom:323.463000px;}
.y16{bottom:335.479500px;}
.y38{bottom:345.132000px;}
.y15{bottom:357.148500px;}
.y37{bottom:376.513500px;}
.y14{bottom:378.817500px;}
.y13{bottom:400.486500px;}
.y36{bottom:419.851500px;}
.y12{bottom:422.155500px;}
.y11{bottom:443.824500px;}
.y35{bottom:453.102000px;}
.y10{bottom:465.492000px;}
.yf{bottom:504.919500px;}
.y34{bottom:505.095000px;}
.y33{bottom:526.762500px;}
.y32{bottom:558.145500px;}
.ye{bottom:564.820500px;}
.yd{bottom:586.489500px;}
.y31{bottom:601.483500px;}
.yc{bottom:608.157000px;}
.yb{bottom:629.826000px;}
.y30{bottom:638.095500px;}
.ya{bottom:651.495000px;}
.y9{bottom:673.164000px;}
.y2f{bottom:674.707500px;}
.y8{bottom:694.833000px;}
.y2e{bottom:711.321000px;}
.y7{bottom:716.502000px;}
.y6{bottom:738.169500px;}
.y2b{bottom:738.901500px;}
.y28{bottom:747.355500px;}
.y27{bottom:748.896000px;}
.y26{bottom:759.655500px;}
.y2d{bottom:760.194000px;}
.y2c{bottom:771.787500px;}
.y2a{bottom:776.692500px;}
.y5{bottom:777.597000px;}
.y29{bottom:782.071500px;}
.y25{bottom:814.732500px;}
.y24{bottom:836.401500px;}
.y4{bottom:856.924500px;}
.y23{bottom:858.070500px;}
.y48{bottom:867.048000px;}
.y47{bottom:888.717000px;}
.y22{bottom:891.321000px;}
.y3{bottom:898.992000px;}
.y46{bottom:910.386000px;}
.y45{bottom:932.055000px;}
.y21{bottom:943.314000px;}
.y2{bottom:952.230000px;}
.y44{bottom:953.724000px;}
.y20{bottom:969.664500px;}
.y43{bottom:975.393000px;}
.y1f{bottom:981.966000px;}
.y1{bottom:989.589000px;}
.y42{bottom:997.060500px;}
.y41{bottom:1018.729500px;}
.y1e{bottom:1028.817000px;}
.y40{bottom:1040.398500px;}
.y1d{bottom:1062.067500px;}
.h8{height:2.869248px;}
.h7{height:31.800699px;}
.h4{height:53.798400px;}
.h9{height:57.834699px;}
.h2{height:64.557900px;}
.h3{height:77.469300px;}
.h1{height:87.650325px;}
.h5{height:102.320400px;}
.ha{height:123.379248px;}
.h6{height:168.571248px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:108.000000px;}
.xa{left:134.338500px;}
.x1{left:187.627500px;}
.x2{left:248.455500px;}
.xb{left:339.085500px;}
.x12{left:350.193000px;}
.x4{left:371.938500px;}
.x11{left:379.497000px;}
.x3{left:382.477500px;}
.xc{left:384.591000px;}
.x7{left:404.086500px;}
.xd{left:432.946500px;}
.x6{left:454.609500px;}
.xe{left:456.289500px;}
.x8{left:461.283000px;}
.x9{left:482.614500px;}
.x10{left:485.992500px;}
.xf{left:514.708500px;}
@media print{
.v7{vertical-align:-55.280000pt;}
.v8{vertical-align:-36.864000pt;}
.v1{vertical-align:-9.568000pt;}
.va{vertical-align:-1.914667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.416000pt;}
.v6{vertical-align:23.141333pt;}
.v2{vertical-align:43.130667pt;}
.v4{vertical-align:81.392000pt;}
.v9{vertical-align:107.120000pt;}
.v3{vertical-align:147.290667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000990pt;}
.ls6{letter-spacing:2.465418pt;}
.ls7{letter-spacing:3.583725pt;}
.lsa{letter-spacing:3.600744pt;}
.ls16{letter-spacing:7.332523pt;}
.lsb{letter-spacing:9.026591pt;}
.lsc{letter-spacing:10.632170pt;}
.ls9{letter-spacing:14.154957pt;}
.ls8{letter-spacing:16.823925pt;}
.ls15{letter-spacing:17.661815pt;}
.ls12{letter-spacing:17.725577pt;}
.ls0{letter-spacing:19.574647pt;}
.ls11{letter-spacing:20.084736pt;}
.ls14{letter-spacing:20.148497pt;}
.lse{letter-spacing:20.786108pt;}
.ls5{letter-spacing:22.024170pt;}
.lsf{letter-spacing:24.356727pt;}
.ls4{letter-spacing:26.715887pt;}
.ls13{letter-spacing:30.796595pt;}
.lsd{letter-spacing:31.242923pt;}
.ls10{letter-spacing:32.900710pt;}
.ls2{letter-spacing:36.127572pt;}
.ws17{word-spacing:-40.590295pt;}
.ws20{word-spacing:-34.538759pt;}
.ws1b{word-spacing:-30.005958pt;}
.ws29{word-spacing:-20.824364pt;}
.ws24{word-spacing:-20.633081pt;}
.ws1e{word-spacing:-20.569320pt;}
.ws1d{word-spacing:-17.343010pt;}
.ws1a{word-spacing:-6.694912pt;}
.ws19{word-spacing:-3.188053pt;}
.ws7{word-spacing:-2.741726pt;}
.ws31{word-spacing:-0.701372pt;}
.ws21{word-spacing:-0.063761pt;}
.ws15{word-spacing:0.000000pt;}
.ws28{word-spacing:0.063761pt;}
.ws2a{word-spacing:0.127522pt;}
.ws14{word-spacing:0.573850pt;}
.ws1c{word-spacing:1.020177pt;}
.wsf{word-spacing:2.167876pt;}
.ws9{word-spacing:2.231637pt;}
.ws6{word-spacing:2.805487pt;}
.wsb{word-spacing:3.443098pt;}
.ws2d{word-spacing:3.506859pt;}
.ws2c{word-spacing:3.634381pt;}
.wsd{word-spacing:3.825664pt;}
.wsa{word-spacing:3.953186pt;}
.ws1{word-spacing:4.131706pt;}
.ws13{word-spacing:4.335753pt;}
.ws2e{word-spacing:4.590797pt;}
.ws16{word-spacing:4.782067pt;}
.ws8{word-spacing:5.037124pt;}
.ws2f{word-spacing:5.164646pt;}
.ws0{word-spacing:5.774480pt;}
.ws12{word-spacing:7.013717pt;}
.ws5{word-spacing:7.460045pt;}
.ws32{word-spacing:7.842611pt;}
.ws27{word-spacing:8.161417pt;}
.ws10{word-spacing:8.225178pt;}
.ws11{word-spacing:8.735266pt;}
.ws33{word-spacing:8.926549pt;}
.ws4{word-spacing:9.245355pt;}
.ws30{word-spacing:9.627921pt;}
.wsc{word-spacing:10.138010pt;}
.wse{word-spacing:10.648098pt;}
.ws25{word-spacing:10.775620pt;}
.ws3{word-spacing:11.285709pt;}
.ws2b{word-spacing:11.732036pt;}
.ws22{word-spacing:12.369647pt;}
.ws23{word-spacing:12.433408pt;}
.ws26{word-spacing:13.453585pt;}
.ws1f{word-spacing:15.876506pt;}
.ws18{word-spacing:20.326613pt;}
.ws2{word-spacing:74.600067pt;}
._5{margin-left:-4.339801pt;}
._0{margin-left:-2.865200pt;}
._3{margin-left:-1.721549pt;}
._4{width:1.721549pt;}
._1{width:2.865200pt;}
._7{width:15.621461pt;}
._a{width:20.276019pt;}
._6{width:25.759471pt;}
._c{width:27.289737pt;}
._9{width:29.457613pt;}
._2{width:30.605312pt;}
._8{width:31.693298pt;}
._d{width:38.906890pt;}
._f{width:40.934605pt;}
._e{width:42.401109pt;}
._b{width:49.223543pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:56.149333pt;}
.y3f{bottom:122.186667pt;}
.y3e{bottom:141.448000pt;}
.y1b{bottom:152.130667pt;}
.y3d{bottom:160.709333pt;}
.y1a{bottom:171.390667pt;}
.y3c{bottom:179.970667pt;}
.y3b{bottom:199.232000pt;}
.y19{bottom:206.437333pt;}
.y3a{bottom:234.277333pt;}
.y18{bottom:259.682667pt;}
.y17{bottom:278.944000pt;}
.y39{bottom:287.522667pt;}
.y16{bottom:298.204000pt;}
.y38{bottom:306.784000pt;}
.y15{bottom:317.465333pt;}
.y37{bottom:334.678667pt;}
.y14{bottom:336.726667pt;}
.y13{bottom:355.988000pt;}
.y36{bottom:373.201333pt;}
.y12{bottom:375.249333pt;}
.y11{bottom:394.510667pt;}
.y35{bottom:402.757333pt;}
.y10{bottom:413.770667pt;}
.yf{bottom:448.817333pt;}
.y34{bottom:448.973333pt;}
.y33{bottom:468.233333pt;}
.y32{bottom:496.129333pt;}
.ye{bottom:502.062667pt;}
.yd{bottom:521.324000pt;}
.y31{bottom:534.652000pt;}
.yc{bottom:540.584000pt;}
.yb{bottom:559.845333pt;}
.y30{bottom:567.196000pt;}
.ya{bottom:579.106667pt;}
.y9{bottom:598.368000pt;}
.y2f{bottom:599.740000pt;}
.y8{bottom:617.629333pt;}
.y2e{bottom:632.285333pt;}
.y7{bottom:636.890667pt;}
.y6{bottom:656.150667pt;}
.y2b{bottom:656.801333pt;}
.y28{bottom:664.316000pt;}
.y27{bottom:665.685333pt;}
.y26{bottom:675.249333pt;}
.y2d{bottom:675.728000pt;}
.y2c{bottom:686.033333pt;}
.y2a{bottom:690.393333pt;}
.y5{bottom:691.197333pt;}
.y29{bottom:695.174667pt;}
.y25{bottom:724.206667pt;}
.y24{bottom:743.468000pt;}
.y4{bottom:761.710667pt;}
.y23{bottom:762.729333pt;}
.y48{bottom:770.709333pt;}
.y47{bottom:789.970667pt;}
.y22{bottom:792.285333pt;}
.y3{bottom:799.104000pt;}
.y46{bottom:809.232000pt;}
.y45{bottom:828.493333pt;}
.y21{bottom:838.501333pt;}
.y2{bottom:846.426667pt;}
.y44{bottom:847.754667pt;}
.y20{bottom:861.924000pt;}
.y43{bottom:867.016000pt;}
.y1f{bottom:872.858667pt;}
.y1{bottom:879.634667pt;}
.y42{bottom:886.276000pt;}
.y41{bottom:905.537333pt;}
.y1e{bottom:914.504000pt;}
.y40{bottom:924.798667pt;}
.y1d{bottom:944.060000pt;}
.h8{height:2.550443pt;}
.h7{height:28.267288pt;}
.h4{height:47.820800pt;}
.h9{height:51.408621pt;}
.h2{height:57.384800pt;}
.h3{height:68.861600pt;}
.h1{height:77.911400pt;}
.h5{height:90.951467pt;}
.ha{height:109.670443pt;}
.h6{height:149.841109pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.000000pt;}
.xa{left:119.412000pt;}
.x1{left:166.780000pt;}
.x2{left:220.849333pt;}
.xb{left:301.409333pt;}
.x12{left:311.282667pt;}
.x4{left:330.612000pt;}
.x11{left:337.330667pt;}
.x3{left:339.980000pt;}
.xc{left:341.858667pt;}
.x7{left:359.188000pt;}
.xd{left:384.841333pt;}
.x6{left:404.097333pt;}
.xe{left:405.590667pt;}
.x8{left:410.029333pt;}
.x9{left:428.990667pt;}
.x10{left:431.993333pt;}
.xf{left:457.518667pt;}
}




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