
    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_e93724b0b0843df50ee020b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119133;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_d2775e5de1a5adc9f798588a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_b393d4bdda38442e413461ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.105000;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_e54b92a433f02fd652967e4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_b6b7b0c4c8d95f163ae3f956.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_ac39e545a25c5f32bba0878f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.900000px;}
.ls22{letter-spacing:-0.630000px;}
.ls23{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.378000px;}
.ls21{letter-spacing:-0.189000px;}
.ls11{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.063000px;}
.ls7{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.189000px;}
.ls14{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.315000px;}
.ls5{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.441000px;}
.ls17{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.567000px;}
.ls2{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.693000px;}
.lsf{letter-spacing:0.756000px;}
.ls16{letter-spacing:0.819000px;}
.ls3{letter-spacing:0.882000px;}
.ls8{letter-spacing:0.945000px;}
.lsd{letter-spacing:1.071000px;}
.ls1e{letter-spacing:1.134000px;}
.ls15{letter-spacing:1.197000px;}
.ls6{letter-spacing:1.260000px;}
.ls1b{letter-spacing:1.386000px;}
.ls19{letter-spacing:1.512000px;}
.ls18{letter-spacing:1.638000px;}
.ls12{letter-spacing:1.701000px;}
.ls1f{letter-spacing:1.764000px;}
.lse{letter-spacing:1.890000px;}
.ls1a{letter-spacing:2.016000px;}
.ls1d{letter-spacing:2.079000px;}
.lsb{letter-spacing:2.205000px;}
.ls1c{letter-spacing:2.646000px;}
.ls20{letter-spacing:2.709000px;}
.ls0{letter-spacing:1598.923800px;}
.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;}
}
.ws5{word-spacing:-17.514000px;}
.ws6{word-spacing:-16.884000px;}
.ws4{word-spacing:-16.680000px;}
.ws0{word-spacing:-11.676000px;}
.ws1{word-spacing:-11.384100px;}
.ws2{word-spacing:-9.757800px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-33.977400px;}
._8{margin-left:-1.953000px;}
._7{width:1.390200px;}
._5{width:2.772000px;}
._6{width:4.347000px;}
._3{width:5.733000px;}
._4{width:6.804000px;}
._2{width:8.190000px;}
._0{width:9.324000px;}
._9{width:11.987400px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:35.100000px;}
.fs6{font-size:40.950000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:63.777750px;}
.y53{bottom:104.171250px;}
.y29{bottom:104.329350px;}
.yaa{bottom:108.423300px;}
.y7f{bottom:108.423450px;}
.y52{bottom:120.158250px;}
.y28{bottom:121.925850px;}
.ya9{bottom:126.030150px;}
.y7e{bottom:126.234900px;}
.y51{bottom:136.145250px;}
.y27{bottom:139.522350px;}
.ya8{bottom:143.637150px;}
.y7d{bottom:144.046350px;}
.y50{bottom:156.182250px;}
.ya7{bottom:161.244000px;}
.y7c{bottom:161.857800px;}
.y26{bottom:165.916200px;}
.ya6{bottom:178.850850px;}
.y7b{bottom:179.669400px;}
.y25{bottom:183.512700px;}
.ya5{bottom:196.457850px;}
.y7a{bottom:197.480850px;}
.y24{bottom:201.109200px;}
.y4f{bottom:210.197850px;}
.y79{bottom:215.292300px;}
.y23{bottom:218.705700px;}
.ya4{bottom:222.862050px;}
.y4e{bottom:227.794350px;}
.y78{bottom:233.103900px;}
.y22{bottom:236.302200px;}
.ya3{bottom:240.468900px;}
.y4d{bottom:245.390850px;}
.y77{bottom:250.915350px;}
.y21{bottom:253.898700px;}
.ya2{bottom:258.075900px;}
.y4c{bottom:262.987350px;}
.y76{bottom:268.726800px;}
.y20{bottom:271.495200px;}
.ya1{bottom:275.682750px;}
.y4b{bottom:280.583850px;}
.y75{bottom:286.538400px;}
.y1f{bottom:289.091700px;}
.ya0{bottom:293.289750px;}
.y4a{bottom:298.180350px;}
.y74{bottom:304.349850px;}
.y1e{bottom:306.688200px;}
.y9f{bottom:310.896600px;}
.y49{bottom:315.776850px;}
.y73{bottom:322.161300px;}
.y1d{bottom:324.284700px;}
.y9e{bottom:328.503450px;}
.y48{bottom:333.373350px;}
.y72{bottom:339.972900px;}
.y1c{bottom:341.881200px;}
.y9d{bottom:346.110450px;}
.y47{bottom:350.969850px;}
.y71{bottom:357.784350px;}
.y1b{bottom:359.477700px;}
.y9c{bottom:363.717300px;}
.y46{bottom:368.566350px;}
.y70{bottom:375.595800px;}
.y1a{bottom:377.074200px;}
.y9b{bottom:381.324300px;}
.y45{bottom:386.162850px;}
.y6f{bottom:393.407250px;}
.y19{bottom:394.670700px;}
.y9a{bottom:398.931150px;}
.y44{bottom:403.759350px;}
.y6e{bottom:411.218850px;}
.y18{bottom:412.267200px;}
.y99{bottom:416.538000px;}
.y43{bottom:421.355850px;}
.y6d{bottom:429.030300px;}
.y17{bottom:429.863700px;}
.y98{bottom:434.145000px;}
.y42{bottom:438.952350px;}
.y6c{bottom:446.841750px;}
.y16{bottom:447.460200px;}
.y97{bottom:451.751850px;}
.y41{bottom:456.548850px;}
.y6b{bottom:464.653350px;}
.y96{bottom:469.358850px;}
.y15{bottom:473.854050px;}
.y6a{bottom:482.464800px;}
.y40{bottom:482.942700px;}
.y95{bottom:486.965700px;}
.y14{bottom:491.450550px;}
.y3f{bottom:500.539200px;}
.y94{bottom:504.572550px;}
.y13{bottom:509.047050px;}
.y69{bottom:509.073600px;}
.y3e{bottom:518.135700px;}
.y12{bottom:526.643550px;}
.y68{bottom:526.885050px;}
.y93{bottom:530.976900px;}
.y3d{bottom:535.732200px;}
.y11{bottom:544.240050px;}
.y67{bottom:544.696650px;}
.y92{bottom:548.583750px;}
.y3c{bottom:553.328700px;}
.y10{bottom:561.836550px;}
.y66{bottom:562.508100px;}
.y91{bottom:566.190600px;}
.y3b{bottom:570.925200px;}
.yf{bottom:579.433050px;}
.y65{bottom:580.319700px;}
.y90{bottom:583.797600px;}
.y3a{bottom:588.521700px;}
.ye{bottom:597.029550px;}
.y64{bottom:598.131150px;}
.y8f{bottom:601.404450px;}
.y39{bottom:606.118200px;}
.yd{bottom:614.626050px;}
.y63{bottom:615.942600px;}
.y8e{bottom:619.011450px;}
.y38{bottom:623.714700px;}
.yc{bottom:632.222550px;}
.y62{bottom:633.754050px;}
.y8d{bottom:636.618300px;}
.y37{bottom:641.311200px;}
.yb{bottom:649.819050px;}
.y61{bottom:651.565650px;}
.y8c{bottom:654.225150px;}
.y36{bottom:658.907700px;}
.ya{bottom:667.415550px;}
.y60{bottom:669.377100px;}
.y8b{bottom:671.832150px;}
.y35{bottom:676.504200px;}
.y5f{bottom:687.188550px;}
.y8a{bottom:689.439000px;}
.y34{bottom:694.100700px;}
.y5e{bottom:705.000150px;}
.y89{bottom:707.046000px;}
.y33{bottom:711.697200px;}
.y9{bottom:715.069200px;}
.yb3{bottom:718.580850px;}
.y5d{bottom:722.811600px;}
.y88{bottom:724.652850px;}
.y8{bottom:734.258700px;}
.yb2{bottom:736.389900px;}
.yba{bottom:736.416750px;}
.y32{bottom:738.091050px;}
.y5c{bottom:740.623050px;}
.y87{bottom:742.259700px;}
.yb1{bottom:754.199100px;}
.y31{bottom:755.687550px;}
.y7{bottom:756.650700px;}
.y5b{bottom:758.434500px;}
.y86{bottom:759.866700px;}
.yb9{bottom:771.847350px;}
.yb0{bottom:772.008300px;}
.y30{bottom:773.283900px;}
.y5a{bottom:776.246100px;}
.y85{bottom:777.473550px;}
.yb8{bottom:789.683400px;}
.yaf{bottom:789.817350px;}
.y2f{bottom:790.880550px;}
.y6{bottom:791.798550px;}
.y59{bottom:794.057550px;}
.y84{bottom:795.080400px;}
.yb7{bottom:807.519300px;}
.yae{bottom:807.626550px;}
.y2e{bottom:808.477050px;}
.y58{bottom:811.869000px;}
.y83{bottom:812.687400px;}
.y5{bottom:818.798550px;}
.yb6{bottom:825.355200px;}
.yad{bottom:825.435750px;}
.y2d{bottom:826.073550px;}
.y57{bottom:829.680600px;}
.y82{bottom:830.294250px;}
.yb5{bottom:843.191100px;}
.yac{bottom:843.244800px;}
.y2c{bottom:843.670050px;}
.y4{bottom:845.798550px;}
.y56{bottom:847.492050px;}
.y81{bottom:847.901250px;}
.yb4{bottom:861.027150px;}
.yab{bottom:861.053850px;}
.y2b{bottom:861.266550px;}
.y55{bottom:865.303500px;}
.y80{bottom:865.508100px;}
.y3{bottom:872.798550px;}
.y2a{bottom:878.863050px;}
.y54{bottom:883.114950px;}
.y1{bottom:927.829350px;}
.h8{height:30.888000px;}
.h2{height:38.934000px;}
.h9{height:47.088000px;}
.h5{height:50.400000px;}
.h7{height:54.936000px;}
.h6{height:56.700000px;}
.h3{height:57.552000px;}
.h4{height:85.170000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x7{left:87.131700px;}
.xa{left:106.299150px;}
.x5{left:128.294700px;}
.x9{left:164.557800px;}
.x4{left:199.921950px;}
.x3{left:225.447300px;}
.x6{left:244.801050px;}
.x8{left:254.996250px;}
.xb{left:375.805950px;}
.xc{left:397.065900px;}
.x1{left:429.161250px;}
.xd{left:463.401150px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.800000pt;}
.ls22{letter-spacing:-0.560000pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.336000pt;}
.ls21{letter-spacing:-0.168000pt;}
.ls11{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.056000pt;}
.ls7{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.168000pt;}
.ls14{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.280000pt;}
.ls5{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.392000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.504000pt;}
.ls2{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.616000pt;}
.lsf{letter-spacing:0.672000pt;}
.ls16{letter-spacing:0.728000pt;}
.ls3{letter-spacing:0.784000pt;}
.ls8{letter-spacing:0.840000pt;}
.lsd{letter-spacing:0.952000pt;}
.ls1e{letter-spacing:1.008000pt;}
.ls15{letter-spacing:1.064000pt;}
.ls6{letter-spacing:1.120000pt;}
.ls1b{letter-spacing:1.232000pt;}
.ls19{letter-spacing:1.344000pt;}
.ls18{letter-spacing:1.456000pt;}
.ls12{letter-spacing:1.512000pt;}
.ls1f{letter-spacing:1.568000pt;}
.lse{letter-spacing:1.680000pt;}
.ls1a{letter-spacing:1.792000pt;}
.ls1d{letter-spacing:1.848000pt;}
.lsb{letter-spacing:1.960000pt;}
.ls1c{letter-spacing:2.352000pt;}
.ls20{letter-spacing:2.408000pt;}
.ls0{letter-spacing:1421.265600pt;}
.ws5{word-spacing:-15.568000pt;}
.ws6{word-spacing:-15.008000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws0{word-spacing:-10.378667pt;}
.ws1{word-spacing:-10.119200pt;}
.ws2{word-spacing:-8.673600pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-30.202133pt;}
._8{margin-left:-1.736000pt;}
._7{width:1.235733pt;}
._5{width:2.464000pt;}
._6{width:3.864000pt;}
._3{width:5.096000pt;}
._4{width:6.048000pt;}
._2{width:7.280000pt;}
._0{width:8.288000pt;}
._9{width:10.655467pt;}
.fs7{font-size:31.200000pt;}
.fs6{font-size:36.400000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:56.691333pt;}
.y53{bottom:92.596667pt;}
.y29{bottom:92.737200pt;}
.yaa{bottom:96.376267pt;}
.y7f{bottom:96.376400pt;}
.y52{bottom:106.807333pt;}
.y28{bottom:108.378533pt;}
.ya9{bottom:112.026800pt;}
.y7e{bottom:112.208800pt;}
.y51{bottom:121.018000pt;}
.y27{bottom:124.019867pt;}
.ya8{bottom:127.677467pt;}
.y7d{bottom:128.041200pt;}
.y50{bottom:138.828667pt;}
.ya7{bottom:143.328000pt;}
.y7c{bottom:143.873600pt;}
.y26{bottom:147.481067pt;}
.ya6{bottom:158.978533pt;}
.y7b{bottom:159.706133pt;}
.y25{bottom:163.122400pt;}
.ya5{bottom:174.629200pt;}
.y7a{bottom:175.538533pt;}
.y24{bottom:178.763733pt;}
.y4f{bottom:186.842533pt;}
.y79{bottom:191.370933pt;}
.y23{bottom:194.405067pt;}
.ya4{bottom:198.099600pt;}
.y4e{bottom:202.483867pt;}
.y78{bottom:207.203467pt;}
.y22{bottom:210.046400pt;}
.ya3{bottom:213.750133pt;}
.y4d{bottom:218.125200pt;}
.y77{bottom:223.035867pt;}
.y21{bottom:225.687733pt;}
.ya2{bottom:229.400800pt;}
.y4c{bottom:233.766533pt;}
.y76{bottom:238.868267pt;}
.y20{bottom:241.329067pt;}
.ya1{bottom:245.051333pt;}
.y4b{bottom:249.407867pt;}
.y75{bottom:254.700800pt;}
.y1f{bottom:256.970400pt;}
.ya0{bottom:260.702000pt;}
.y4a{bottom:265.049200pt;}
.y74{bottom:270.533200pt;}
.y1e{bottom:272.611733pt;}
.y9f{bottom:276.352533pt;}
.y49{bottom:280.690533pt;}
.y73{bottom:286.365600pt;}
.y1d{bottom:288.253067pt;}
.y9e{bottom:292.003067pt;}
.y48{bottom:296.331867pt;}
.y72{bottom:302.198133pt;}
.y1c{bottom:303.894400pt;}
.y9d{bottom:307.653733pt;}
.y47{bottom:311.973200pt;}
.y71{bottom:318.030533pt;}
.y1b{bottom:319.535733pt;}
.y9c{bottom:323.304267pt;}
.y46{bottom:327.614533pt;}
.y70{bottom:333.862933pt;}
.y1a{bottom:335.177067pt;}
.y9b{bottom:338.954933pt;}
.y45{bottom:343.255867pt;}
.y6f{bottom:349.695333pt;}
.y19{bottom:350.818400pt;}
.y9a{bottom:354.605467pt;}
.y44{bottom:358.897200pt;}
.y6e{bottom:365.527867pt;}
.y18{bottom:366.459733pt;}
.y99{bottom:370.256000pt;}
.y43{bottom:374.538533pt;}
.y6d{bottom:381.360267pt;}
.y17{bottom:382.101067pt;}
.y98{bottom:385.906667pt;}
.y42{bottom:390.179867pt;}
.y6c{bottom:397.192667pt;}
.y16{bottom:397.742400pt;}
.y97{bottom:401.557200pt;}
.y41{bottom:405.821200pt;}
.y6b{bottom:413.025200pt;}
.y96{bottom:417.207867pt;}
.y15{bottom:421.203600pt;}
.y6a{bottom:428.857600pt;}
.y40{bottom:429.282400pt;}
.y95{bottom:432.858400pt;}
.y14{bottom:436.844933pt;}
.y3f{bottom:444.923733pt;}
.y94{bottom:448.508933pt;}
.y13{bottom:452.486267pt;}
.y69{bottom:452.509867pt;}
.y3e{bottom:460.565067pt;}
.y12{bottom:468.127600pt;}
.y68{bottom:468.342267pt;}
.y93{bottom:471.979467pt;}
.y3d{bottom:476.206400pt;}
.y11{bottom:483.768933pt;}
.y67{bottom:484.174800pt;}
.y92{bottom:487.630000pt;}
.y3c{bottom:491.847733pt;}
.y10{bottom:499.410267pt;}
.y66{bottom:500.007200pt;}
.y91{bottom:503.280533pt;}
.y3b{bottom:507.489067pt;}
.yf{bottom:515.051600pt;}
.y65{bottom:515.839733pt;}
.y90{bottom:518.931200pt;}
.y3a{bottom:523.130400pt;}
.ye{bottom:530.692933pt;}
.y64{bottom:531.672133pt;}
.y8f{bottom:534.581733pt;}
.y39{bottom:538.771733pt;}
.yd{bottom:546.334267pt;}
.y63{bottom:547.504533pt;}
.y8e{bottom:550.232400pt;}
.y38{bottom:554.413067pt;}
.yc{bottom:561.975600pt;}
.y62{bottom:563.336933pt;}
.y8d{bottom:565.882933pt;}
.y37{bottom:570.054400pt;}
.yb{bottom:577.616933pt;}
.y61{bottom:579.169467pt;}
.y8c{bottom:581.533467pt;}
.y36{bottom:585.695733pt;}
.ya{bottom:593.258267pt;}
.y60{bottom:595.001867pt;}
.y8b{bottom:597.184133pt;}
.y35{bottom:601.337067pt;}
.y5f{bottom:610.834267pt;}
.y8a{bottom:612.834667pt;}
.y34{bottom:616.978400pt;}
.y5e{bottom:626.666800pt;}
.y89{bottom:628.485333pt;}
.y33{bottom:632.619733pt;}
.y9{bottom:635.617067pt;}
.yb3{bottom:638.738533pt;}
.y5d{bottom:642.499200pt;}
.y88{bottom:644.135867pt;}
.y8{bottom:652.674400pt;}
.yb2{bottom:654.568800pt;}
.yba{bottom:654.592667pt;}
.y32{bottom:656.080933pt;}
.y5c{bottom:658.331600pt;}
.y87{bottom:659.786400pt;}
.yb1{bottom:670.399200pt;}
.y31{bottom:671.722267pt;}
.y7{bottom:672.578400pt;}
.y5b{bottom:674.164000pt;}
.y86{bottom:675.437067pt;}
.yb9{bottom:686.086533pt;}
.yb0{bottom:686.229600pt;}
.y30{bottom:687.363467pt;}
.y5a{bottom:689.996533pt;}
.y85{bottom:691.087600pt;}
.yb8{bottom:701.940800pt;}
.yaf{bottom:702.059867pt;}
.y2f{bottom:703.004933pt;}
.y6{bottom:703.820933pt;}
.y59{bottom:705.828933pt;}
.y84{bottom:706.738133pt;}
.yb7{bottom:717.794933pt;}
.yae{bottom:717.890267pt;}
.y2e{bottom:718.646267pt;}
.y58{bottom:721.661333pt;}
.y83{bottom:722.388800pt;}
.y5{bottom:727.820933pt;}
.yb6{bottom:733.649067pt;}
.yad{bottom:733.720667pt;}
.y2d{bottom:734.287600pt;}
.y57{bottom:737.493867pt;}
.y82{bottom:738.039333pt;}
.yb5{bottom:749.503200pt;}
.yac{bottom:749.550933pt;}
.y2c{bottom:749.928933pt;}
.y4{bottom:751.820933pt;}
.y56{bottom:753.326267pt;}
.y81{bottom:753.690000pt;}
.yb4{bottom:765.357467pt;}
.yab{bottom:765.381200pt;}
.y2b{bottom:765.570267pt;}
.y55{bottom:769.158667pt;}
.y80{bottom:769.340533pt;}
.y3{bottom:775.820933pt;}
.y2a{bottom:781.211600pt;}
.y54{bottom:784.991067pt;}
.y1{bottom:824.737200pt;}
.h8{height:27.456000pt;}
.h2{height:34.608000pt;}
.h9{height:41.856000pt;}
.h5{height:44.800000pt;}
.h7{height:48.832000pt;}
.h6{height:50.400000pt;}
.h3{height:51.157333pt;}
.h4{height:75.706667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x7{left:77.450400pt;}
.xa{left:94.488133pt;}
.x5{left:114.039733pt;}
.x9{left:146.273600pt;}
.x4{left:177.708400pt;}
.x3{left:200.397600pt;}
.x6{left:217.600933pt;}
.x8{left:226.663333pt;}
.xb{left:334.049733pt;}
.xc{left:352.947467pt;}
.x1{left:381.476667pt;}
.xd{left:411.912133pt;}
}




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