
    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_506f5b3a9d6fd79ae8a2d317.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.023000;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_e26b69e6defd0f4640565015.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_f04b013737901d8d5475a460.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.724000;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_7b23995bd556743bcc6c84bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_ccd9631367c5995830b81463.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023000;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_c8eed3ef0b10a6a07a2e41ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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_5501c47e48160ae45a75375d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_835ef2bda2c7c8ad312ecb32.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.974000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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.702000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.545400px;}
.ls1{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.080000px;}
.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;}
}
.ws28{word-spacing:-14.040000px;}
.ws39{word-spacing:-12.798000px;}
.ws1{word-spacing:-1.740000px;}
.ws6{word-spacing:-1.626000px;}
.ws5{word-spacing:-1.620000px;}
.ws2b{word-spacing:-0.594000px;}
.ws27{word-spacing:0.000000px;}
.ws1d{word-spacing:0.054000px;}
.ws41{word-spacing:0.162000px;}
.ws24{word-spacing:0.216000px;}
.ws45{word-spacing:0.270000px;}
.ws4{word-spacing:0.300000px;}
.wsa{word-spacing:0.432000px;}
.wsb{word-spacing:0.464400px;}
.ws1f{word-spacing:1.026000px;}
.ws2f{word-spacing:1.242000px;}
.ws3a{word-spacing:1.296000px;}
.ws2e{word-spacing:1.728000px;}
.ws47{word-spacing:1.782000px;}
.wsc{word-spacing:1.836000px;}
.ws26{word-spacing:2.640000px;}
.ws3f{word-spacing:2.808000px;}
.ws4e{word-spacing:2.970000px;}
.ws4a{word-spacing:3.240000px;}
.ws2a{word-spacing:3.402000px;}
.ws29{word-spacing:3.445200px;}
.ws17{word-spacing:3.834000px;}
.ws38{word-spacing:3.942000px;}
.wsd{word-spacing:4.050000px;}
.ws34{word-spacing:4.212000px;}
.wse{word-spacing:4.266000px;}
.ws4b{word-spacing:4.428000px;}
.ws8{word-spacing:4.482000px;}
.ws37{word-spacing:4.509000px;}
.ws7{word-spacing:4.956000px;}
.ws2{word-spacing:4.980000px;}
.ws1c{word-spacing:5.022000px;}
.ws3b{word-spacing:5.616000px;}
.ws0{word-spacing:5.940000px;}
.ws20{word-spacing:6.048000px;}
.ws40{word-spacing:6.480000px;}
.ws1b{word-spacing:6.642000px;}
.ws1e{word-spacing:7.020000px;}
.ws42{word-spacing:7.074000px;}
.ws4c{word-spacing:7.398000px;}
.ws9{word-spacing:7.506000px;}
.ws15{word-spacing:7.614000px;}
.ws3{word-spacing:7.800000px;}
.ws11{word-spacing:8.424000px;}
.ws10{word-spacing:8.532000px;}
.ws18{word-spacing:8.964000px;}
.ws30{word-spacing:9.180000px;}
.ws3e{word-spacing:9.984600px;}
.ws3d{word-spacing:9.990000px;}
.ws44{word-spacing:10.260000px;}
.ws36{word-spacing:11.502000px;}
.ws49{word-spacing:11.826000px;}
.ws2d{word-spacing:11.880000px;}
.ws14{word-spacing:12.312000px;}
.ws22{word-spacing:13.068000px;}
.ws1a{word-spacing:13.392000px;}
.ws12{word-spacing:14.850000px;}
.ws33{word-spacing:14.958000px;}
.ws19{word-spacing:15.228000px;}
.ws21{word-spacing:15.768000px;}
.ws2c{word-spacing:16.632000px;}
.ws31{word-spacing:17.388000px;}
.ws35{word-spacing:17.874000px;}
.ws23{word-spacing:18.252000px;}
.ws25{word-spacing:19.386000px;}
.ws43{word-spacing:21.654000px;}
.ws4d{word-spacing:23.922000px;}
.ws48{word-spacing:24.624000px;}
.ws13{word-spacing:24.732000px;}
.ws46{word-spacing:26.352000px;}
.ws16{word-spacing:26.946000px;}
.ws3c{word-spacing:45.522000px;}
.wsf{word-spacing:53.136000px;}
.ws32{word-spacing:55.566000px;}
._1{margin-left:-17.166600px;}
._2{margin-left:-1.242000px;}
._3{width:1.263600px;}
._0{width:14.040000px;}
._5{width:385.992000px;}
._4{width:972.756000px;}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:57.000000px;}
.y28{bottom:75.006600px;}
.y46{bottom:75.013350px;}
.y27{bottom:91.506300px;}
.y45{bottom:91.513050px;}
.y26{bottom:108.006000px;}
.y44{bottom:108.012750px;}
.y25{bottom:124.505700px;}
.y43{bottom:124.512450px;}
.y24{bottom:141.005400px;}
.y42{bottom:141.012150px;}
.y41{bottom:157.511850px;}
.y23{bottom:166.505550px;}
.y22{bottom:183.005250px;}
.y40{bottom:183.012000px;}
.y21{bottom:199.504950px;}
.y3f{bottom:199.511700px;}
.y3e{bottom:216.011400px;}
.y20{bottom:225.005100px;}
.y3d{bottom:241.511550px;}
.y1f{bottom:285.004500px;}
.y1e{bottom:301.504200px;}
.y3c{bottom:301.510950px;}
.y1d{bottom:318.003900px;}
.y3b{bottom:318.010650px;}
.y1c{bottom:334.503600px;}
.y3a{bottom:334.510350px;}
.y65{bottom:342.961650px;}
.y8a{bottom:342.969750px;}
.y1b{bottom:351.003300px;}
.y39{bottom:351.010050px;}
.y64{bottom:359.461350px;}
.y89{bottom:359.469450px;}
.y1a{bottom:367.503000px;}
.y38{bottom:367.509750px;}
.y63{bottom:375.961050px;}
.y88{bottom:375.969150px;}
.y62{bottom:392.460750px;}
.y87{bottom:392.468850px;}
.y19{bottom:393.003150px;}
.y37{bottom:393.009900px;}
.y61{bottom:408.960450px;}
.y86{bottom:408.968550px;}
.y18{bottom:409.502850px;}
.y36{bottom:409.509600px;}
.y85{bottom:425.468250px;}
.y17{bottom:426.002550px;}
.y35{bottom:435.009750px;}
.y84{bottom:441.967950px;}
.y60{bottom:443.461050px;}
.y16{bottom:451.502700px;}
.y83{bottom:458.467650px;}
.y5f{bottom:459.960750px;}
.y82{bottom:483.967800px;}
.y5e{bottom:494.461350px;}
.y34{bottom:495.009150px;}
.y81{bottom:500.467500px;}
.y15{bottom:511.502100px;}
.y33{bottom:511.508850px;}
.y80{bottom:516.967200px;}
.y14{bottom:528.001800px;}
.y32{bottom:528.008550px;}
.y7f{bottom:542.467350px;}
.y13{bottom:544.501500px;}
.y31{bottom:544.508250px;}
.y12{bottom:561.001200px;}
.y30{bottom:561.007950px;}
.y11{bottom:577.500900px;}
.y2f{bottom:577.507650px;}
.y5d{bottom:586.983600px;}
.y7e{bottom:587.739600px;}
.y10{bottom:594.000600px;}
.y2e{bottom:594.007350px;}
.y5c{bottom:603.483300px;}
.y7d{bottom:604.239300px;}
.yf{bottom:610.500300px;}
.y2d{bottom:610.507050px;}
.y5b{bottom:619.983000px;}
.y7c{bottom:620.739000px;}
.ye{bottom:636.000450px;}
.y2c{bottom:636.007200px;}
.y5a{bottom:636.482700px;}
.y7b{bottom:637.238700px;}
.yd{bottom:652.500150px;}
.y2b{bottom:652.506900px;}
.y59{bottom:652.982400px;}
.y7a{bottom:653.738400px;}
.yc{bottom:668.999850px;}
.y2a{bottom:669.006600px;}
.y58{bottom:669.482100px;}
.y79{bottom:670.238100px;}
.y57{bottom:685.981800px;}
.y78{bottom:686.737800px;}
.yb{bottom:694.500000px;}
.y29{bottom:694.506750px;}
.y56{bottom:702.481500px;}
.y77{bottom:703.237500px;}
.y76{bottom:719.737200px;}
.y75{bottom:736.236900px;}
.y55{bottom:736.980750px;}
.y74{bottom:752.736600px;}
.y54{bottom:753.480450px;}
.ya{bottom:763.500000px;}
.y73{bottom:769.236300px;}
.y53{bottom:787.981050px;}
.y72{bottom:794.736450px;}
.y9{bottom:799.500000px;}
.y71{bottom:811.236150px;}
.y70{bottom:827.735850px;}
.y8{bottom:835.500000px;}
.y6f{bottom:844.235550px;}
.y7{bottom:853.500000px;}
.y6e{bottom:869.735700px;}
.y6{bottom:871.500000px;}
.y52{bottom:880.503300px;}
.y5{bottom:895.500000px;}
.y51{bottom:897.003000px;}
.y4{bottom:913.500000px;}
.y50{bottom:913.502700px;}
.y6d{bottom:915.007950px;}
.y4f{bottom:930.002400px;}
.y6c{bottom:931.507650px;}
.y49{bottom:940.590000px;}
.y4e{bottom:946.502100px;}
.y6b{bottom:948.007350px;}
.y3{bottom:949.500000px;}
.y6a{bottom:964.507050px;}
.y2{bottom:967.500000px;}
.y4d{bottom:981.001350px;}
.y69{bottom:981.006750px;}
.y4c{bottom:997.501050px;}
.y68{bottom:1006.506900px;}
.y4b{bottom:1014.000750px;}
.y1{bottom:1021.500000px;}
.y67{bottom:1023.006600px;}
.y4a{bottom:1048.500000px;}
.y66{bottom:1048.506750px;}
.y47{bottom:1093.500000px;}
.y8b{bottom:1093.515750px;}
.h8{height:34.945312px;}
.h7{height:36.096000px;}
.h5{height:39.042000px;}
.h6{height:39.204000px;}
.h4{height:39.312000px;}
.ha{height:40.608000px;}
.h9{height:41.418000px;}
.h2{height:43.680000px;}
.h3{height:54.144000px;}
.h1{height:81.216000px;}
.h0{height:1180.500000px;}
.hc{height:1262.250000px;}
.hb{height:1262.520000px;}
.w0{width:880.500000px;}
.w2{width:892.500000px;}
.w1{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:61.717500px;}
.x5{left:75.217500px;}
.x2{left:115.717500px;}
.x1{left:227.544000px;}
.x3{left:323.370000px;}
.x8{left:426.200700px;}
.x6{left:457.718400px;}
.x7{left:471.218400px;}
.x9{left:847.245000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.624000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.484800pt;}
.ls1{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.960000pt;}
.ws28{word-spacing:-12.480000pt;}
.ws39{word-spacing:-11.376000pt;}
.ws1{word-spacing:-1.546667pt;}
.ws6{word-spacing:-1.445333pt;}
.ws5{word-spacing:-1.440000pt;}
.ws2b{word-spacing:-0.528000pt;}
.ws27{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.048000pt;}
.ws41{word-spacing:0.144000pt;}
.ws24{word-spacing:0.192000pt;}
.ws45{word-spacing:0.240000pt;}
.ws4{word-spacing:0.266667pt;}
.wsa{word-spacing:0.384000pt;}
.wsb{word-spacing:0.412800pt;}
.ws1f{word-spacing:0.912000pt;}
.ws2f{word-spacing:1.104000pt;}
.ws3a{word-spacing:1.152000pt;}
.ws2e{word-spacing:1.536000pt;}
.ws47{word-spacing:1.584000pt;}
.wsc{word-spacing:1.632000pt;}
.ws26{word-spacing:2.346667pt;}
.ws3f{word-spacing:2.496000pt;}
.ws4e{word-spacing:2.640000pt;}
.ws4a{word-spacing:2.880000pt;}
.ws2a{word-spacing:3.024000pt;}
.ws29{word-spacing:3.062400pt;}
.ws17{word-spacing:3.408000pt;}
.ws38{word-spacing:3.504000pt;}
.wsd{word-spacing:3.600000pt;}
.ws34{word-spacing:3.744000pt;}
.wse{word-spacing:3.792000pt;}
.ws4b{word-spacing:3.936000pt;}
.ws8{word-spacing:3.984000pt;}
.ws37{word-spacing:4.008000pt;}
.ws7{word-spacing:4.405333pt;}
.ws2{word-spacing:4.426667pt;}
.ws1c{word-spacing:4.464000pt;}
.ws3b{word-spacing:4.992000pt;}
.ws0{word-spacing:5.280000pt;}
.ws20{word-spacing:5.376000pt;}
.ws40{word-spacing:5.760000pt;}
.ws1b{word-spacing:5.904000pt;}
.ws1e{word-spacing:6.240000pt;}
.ws42{word-spacing:6.288000pt;}
.ws4c{word-spacing:6.576000pt;}
.ws9{word-spacing:6.672000pt;}
.ws15{word-spacing:6.768000pt;}
.ws3{word-spacing:6.933333pt;}
.ws11{word-spacing:7.488000pt;}
.ws10{word-spacing:7.584000pt;}
.ws18{word-spacing:7.968000pt;}
.ws30{word-spacing:8.160000pt;}
.ws3e{word-spacing:8.875200pt;}
.ws3d{word-spacing:8.880000pt;}
.ws44{word-spacing:9.120000pt;}
.ws36{word-spacing:10.224000pt;}
.ws49{word-spacing:10.512000pt;}
.ws2d{word-spacing:10.560000pt;}
.ws14{word-spacing:10.944000pt;}
.ws22{word-spacing:11.616000pt;}
.ws1a{word-spacing:11.904000pt;}
.ws12{word-spacing:13.200000pt;}
.ws33{word-spacing:13.296000pt;}
.ws19{word-spacing:13.536000pt;}
.ws21{word-spacing:14.016000pt;}
.ws2c{word-spacing:14.784000pt;}
.ws31{word-spacing:15.456000pt;}
.ws35{word-spacing:15.888000pt;}
.ws23{word-spacing:16.224000pt;}
.ws25{word-spacing:17.232000pt;}
.ws43{word-spacing:19.248000pt;}
.ws4d{word-spacing:21.264000pt;}
.ws48{word-spacing:21.888000pt;}
.ws13{word-spacing:21.984000pt;}
.ws46{word-spacing:23.424000pt;}
.ws16{word-spacing:23.952000pt;}
.ws3c{word-spacing:40.464000pt;}
.wsf{word-spacing:47.232000pt;}
.ws32{word-spacing:49.392000pt;}
._1{margin-left:-15.259200pt;}
._2{margin-left:-1.104000pt;}
._3{width:1.123200pt;}
._0{width:12.480000pt;}
._5{width:343.104000pt;}
._4{width:864.672000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:50.666667pt;}
.y28{bottom:66.672533pt;}
.y46{bottom:66.678533pt;}
.y27{bottom:81.338933pt;}
.y45{bottom:81.344933pt;}
.y26{bottom:96.005333pt;}
.y44{bottom:96.011333pt;}
.y25{bottom:110.671733pt;}
.y43{bottom:110.677733pt;}
.y24{bottom:125.338133pt;}
.y42{bottom:125.344133pt;}
.y41{bottom:140.010533pt;}
.y23{bottom:148.004933pt;}
.y22{bottom:162.671333pt;}
.y40{bottom:162.677333pt;}
.y21{bottom:177.337733pt;}
.y3f{bottom:177.343733pt;}
.y3e{bottom:192.010133pt;}
.y20{bottom:200.004533pt;}
.y3d{bottom:214.676933pt;}
.y1f{bottom:253.337333pt;}
.y1e{bottom:268.003733pt;}
.y3c{bottom:268.009733pt;}
.y1d{bottom:282.670133pt;}
.y3b{bottom:282.676133pt;}
.y1c{bottom:297.336533pt;}
.y3a{bottom:297.342533pt;}
.y65{bottom:304.854800pt;}
.y8a{bottom:304.862000pt;}
.y1b{bottom:312.002933pt;}
.y39{bottom:312.008933pt;}
.y64{bottom:319.521200pt;}
.y89{bottom:319.528400pt;}
.y1a{bottom:326.669333pt;}
.y38{bottom:326.675333pt;}
.y63{bottom:334.187600pt;}
.y88{bottom:334.194800pt;}
.y62{bottom:348.854000pt;}
.y87{bottom:348.861200pt;}
.y19{bottom:349.336133pt;}
.y37{bottom:349.342133pt;}
.y61{bottom:363.520400pt;}
.y86{bottom:363.527600pt;}
.y18{bottom:364.002533pt;}
.y36{bottom:364.008533pt;}
.y85{bottom:378.194000pt;}
.y17{bottom:378.668933pt;}
.y35{bottom:386.675333pt;}
.y84{bottom:392.860400pt;}
.y60{bottom:394.187600pt;}
.y16{bottom:401.335733pt;}
.y83{bottom:407.526800pt;}
.y5f{bottom:408.854000pt;}
.y82{bottom:430.193600pt;}
.y5e{bottom:439.521200pt;}
.y34{bottom:440.008133pt;}
.y81{bottom:444.860000pt;}
.y15{bottom:454.668533pt;}
.y33{bottom:454.674533pt;}
.y80{bottom:459.526400pt;}
.y14{bottom:469.334933pt;}
.y32{bottom:469.340933pt;}
.y7f{bottom:482.193200pt;}
.y13{bottom:484.001333pt;}
.y31{bottom:484.007333pt;}
.y12{bottom:498.667733pt;}
.y30{bottom:498.673733pt;}
.y11{bottom:513.334133pt;}
.y2f{bottom:513.340133pt;}
.y5d{bottom:521.763200pt;}
.y7e{bottom:522.435200pt;}
.y10{bottom:528.000533pt;}
.y2e{bottom:528.006533pt;}
.y5c{bottom:536.429600pt;}
.y7d{bottom:537.101600pt;}
.yf{bottom:542.666933pt;}
.y2d{bottom:542.672933pt;}
.y5b{bottom:551.096000pt;}
.y7c{bottom:551.768000pt;}
.ye{bottom:565.333733pt;}
.y2c{bottom:565.339733pt;}
.y5a{bottom:565.762400pt;}
.y7b{bottom:566.434400pt;}
.yd{bottom:580.000133pt;}
.y2b{bottom:580.006133pt;}
.y59{bottom:580.428800pt;}
.y7a{bottom:581.100800pt;}
.yc{bottom:594.666533pt;}
.y2a{bottom:594.672533pt;}
.y58{bottom:595.095200pt;}
.y79{bottom:595.767200pt;}
.y57{bottom:609.761600pt;}
.y78{bottom:610.433600pt;}
.yb{bottom:617.333333pt;}
.y29{bottom:617.339333pt;}
.y56{bottom:624.428000pt;}
.y77{bottom:625.100000pt;}
.y76{bottom:639.766400pt;}
.y75{bottom:654.432800pt;}
.y55{bottom:655.094000pt;}
.y74{bottom:669.099200pt;}
.y54{bottom:669.760400pt;}
.ya{bottom:678.666667pt;}
.y73{bottom:683.765600pt;}
.y53{bottom:700.427600pt;}
.y72{bottom:706.432400pt;}
.y9{bottom:710.666667pt;}
.y71{bottom:721.098800pt;}
.y70{bottom:735.765200pt;}
.y8{bottom:742.666667pt;}
.y6f{bottom:750.431600pt;}
.y7{bottom:758.666667pt;}
.y6e{bottom:773.098400pt;}
.y6{bottom:774.666667pt;}
.y52{bottom:782.669600pt;}
.y5{bottom:796.000000pt;}
.y51{bottom:797.336000pt;}
.y4{bottom:812.000000pt;}
.y50{bottom:812.002400pt;}
.y6d{bottom:813.340400pt;}
.y4f{bottom:826.668800pt;}
.y6c{bottom:828.006800pt;}
.y49{bottom:836.080000pt;}
.y4e{bottom:841.335200pt;}
.y6b{bottom:842.673200pt;}
.y3{bottom:844.000000pt;}
.y6a{bottom:857.339600pt;}
.y2{bottom:860.000000pt;}
.y4d{bottom:872.001200pt;}
.y69{bottom:872.006000pt;}
.y4c{bottom:886.667600pt;}
.y68{bottom:894.672800pt;}
.y4b{bottom:901.334000pt;}
.y1{bottom:908.000000pt;}
.y67{bottom:909.339200pt;}
.y4a{bottom:932.000000pt;}
.y66{bottom:932.006000pt;}
.y47{bottom:972.000000pt;}
.y8b{bottom:972.014000pt;}
.h8{height:31.062500pt;}
.h7{height:32.085333pt;}
.h5{height:34.704000pt;}
.h6{height:34.848000pt;}
.h4{height:34.944000pt;}
.ha{height:36.096000pt;}
.h9{height:36.816000pt;}
.h2{height:38.826667pt;}
.h3{height:48.128000pt;}
.h1{height:72.192000pt;}
.h0{height:1049.333333pt;}
.hc{height:1122.000000pt;}
.hb{height:1122.240000pt;}
.w0{width:782.666667pt;}
.w2{width:793.333333pt;}
.w1{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:54.860000pt;}
.x5{left:66.860000pt;}
.x2{left:102.860000pt;}
.x1{left:202.261333pt;}
.x3{left:287.440000pt;}
.x8{left:378.845067pt;}
.x6{left:406.860800pt;}
.x7{left:418.860800pt;}
.x9{left:753.106667pt;}
}




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