
    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_6a10c32df27a2e882ffb9722.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_a1fb5397f2519522014bc7e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_181d1e79da33414c19a3de79.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_d6768a60aeb51fdd50fb3a40.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_3f483c8c689c01acaac8d274.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.991699;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_0f031fb1e0ec71466924df58.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010742;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_1f235c616767e0a70ebcdbc8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_56a68b3f3d8848b94212e795.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_dd44669a022e65b0c41b7eae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010254;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.374400px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.152400px;}
.ls9{letter-spacing:0.164400px;}
.ls3{letter-spacing:0.172800px;}
.ls5{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.305400px;}
.ls8{letter-spacing:6.785280px;}
.ls7{letter-spacing:39.881280px;}
.ls0{letter-spacing:89.561280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-66.240000px;}
.ws0{word-spacing:-23.212800px;}
.ws5{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.724400px;}
.ws2{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.146400px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.347840px;}
._1{width:1.351440px;}
._5{width:2.821680px;}
._9{width:4.438080px;}
._4{width:6.094080px;}
._a{width:7.141200px;}
._3{width:8.147520px;}
._2{width:9.495360px;}
._c{width:11.442240px;}
._b{width:12.784320px;}
._7{width:14.771520px;}
._6{width:20.998080px;}
._1a{width:25.345920px;}
._18{width:26.670720px;}
._8{width:28.748160px;}
._19{width:37.136640px;}
._13{width:50.808960px;}
._16{width:54.449280px;}
._15{width:55.750080px;}
._14{width:77.344320px;}
._17{width:79.530240px;}
._f{width:261.008640px;}
._e{width:262.111680px;}
._10{width:344.315520px;}
._d{width:348.621120px;}
._12{width:375.249600px;}
._11{width:545.155200px;}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y67{bottom:23.040000px;}
.y65{bottom:23.220000px;}
.y63{bottom:23.610000px;}
.y61{bottom:24.840000px;}
.y6{bottom:57.960000px;}
.y5{bottom:79.380000px;}
.y75{bottom:117.540000px;}
.y53{bottom:118.080000px;}
.y2c{bottom:123.660000px;}
.y74{bottom:138.060000px;}
.y52{bottom:138.600000px;}
.y2b{bottom:143.640000px;}
.y73{bottom:158.220000px;}
.y51{bottom:159.120000px;}
.y2a{bottom:163.620000px;}
.y72{bottom:178.020000px;}
.y50{bottom:179.280000px;}
.y29{bottom:183.960000px;}
.y4f{bottom:194.790000px;}
.y71{bottom:198.030000px;}
.y28{bottom:204.510000px;}
.y70{bottom:218.190000px;}
.y27{bottom:224.490000px;}
.y6f{bottom:238.710000px;}
.y26{bottom:244.470000px;}
.y4e{bottom:250.770000px;}
.y92{bottom:253.110000px;}
.y6e{bottom:259.230000px;}
.y25{bottom:264.810000px;}
.y4d{bottom:271.110000px;}
.y91{bottom:273.630000px;}
.y6d{bottom:279.750000px;}
.y24{bottom:285.150000px;}
.y4c{bottom:291.270000px;}
.y90{bottom:294.150000px;}
.y6c{bottom:297.030000px;}
.y23{bottom:305.310000px;}
.y4b{bottom:311.070000px;}
.y8f{bottom:314.670000px;}
.y22{bottom:325.110000px;}
.y4a{bottom:331.410000px;}
.y8e{bottom:335.190000px;}
.y6b{bottom:335.910000px;}
.y21{bottom:345.090000px;}
.y49{bottom:351.930000px;}
.y8d{bottom:355.710000px;}
.y20{bottom:365.070000px;}
.y48{bottom:372.090000px;}
.y6a{bottom:374.970000px;}
.y8c{bottom:376.050000px;}
.y1f{bottom:385.230000px;}
.y47{bottom:391.890000px;}
.y8b{bottom:396.570000px;}
.y1e{bottom:405.750000px;}
.y46{bottom:412.275000px;}
.y69{bottom:414.075000px;}
.y8a{bottom:417.135000px;}
.y1d{bottom:426.315000px;}
.y45{bottom:432.795000px;}
.y89{bottom:437.655000px;}
.y1c{bottom:446.835000px;}
.y44{bottom:452.955000px;}
.y88{bottom:458.175000px;}
.y1b{bottom:467.355000px;}
.y43{bottom:472.755000px;}
.y87{bottom:478.695000px;}
.y1a{bottom:487.515000px;}
.y68{bottom:492.015000px;}
.y42{bottom:493.095000px;}
.y86{bottom:499.215000px;}
.y41{bottom:513.615000px;}
.y85{bottom:519.735000px;}
.y19{bottom:525.495000px;}
.y66{bottom:531.075000px;}
.y40{bottom:533.595000px;}
.y84{bottom:540.255000px;}
.y3f{bottom:553.575000px;}
.y83{bottom:560.775000px;}
.y18{bottom:563.475000px;}
.y3e{bottom:573.915000px;}
.y64{bottom:577.335000px;}
.y82{bottom:581.295000px;}
.y17{bottom:583.275000px;}
.y3d{bottom:594.435000px;}
.y81{bottom:601.815000px;}
.y3c{bottom:614.415000px;}
.y80{bottom:622.155000px;}
.y62{bottom:623.775000px;}
.y16{bottom:624.135000px;}
.y3b{bottom:634.425000px;}
.y7f{bottom:642.705000px;}
.y15{bottom:644.145000px;}
.y3a{bottom:654.225000px;}
.y60{bottom:662.865000px;}
.y7e{bottom:663.225000px;}
.y14{bottom:663.945000px;}
.y39{bottom:674.205000px;}
.y7d{bottom:683.745000px;}
.y13{bottom:683.925000px;}
.y38{bottom:694.545000px;}
.y12{bottom:703.725000px;}
.y7c{bottom:704.265000px;}
.y37{bottom:710.205000px;}
.y11{bottom:723.705000px;}
.y7b{bottom:724.785000px;}
.y5f{bottom:725.505000px;}
.y7a{bottom:745.305000px;}
.y5e{bottom:745.845000px;}
.y10{bottom:764.565000px;}
.y79{bottom:765.825000px;}
.y5d{bottom:766.365000px;}
.y36{bottom:767.805000px;}
.yf{bottom:784.545000px;}
.y78{bottom:786.345000px;}
.y5c{bottom:786.885000px;}
.y35{bottom:788.145000px;}
.ye{bottom:804.525000px;}
.y77{bottom:806.865000px;}
.y5b{bottom:807.405000px;}
.y34{bottom:808.665000px;}
.yd{bottom:826.845000px;}
.y76{bottom:827.385000px;}
.y5a{bottom:827.565000px;}
.y33{bottom:828.645000px;}
.yc{bottom:847.005000px;}
.y59{bottom:847.725000px;}
.y32{bottom:848.625000px;}
.yb{bottom:866.850000px;}
.y58{bottom:868.290000px;}
.y31{bottom:869.010000px;}
.ya{bottom:886.830000px;}
.y57{bottom:888.810000px;}
.y30{bottom:889.530000px;}
.y9{bottom:906.630000px;}
.y56{bottom:909.330000px;}
.y2f{bottom:909.510000px;}
.y8{bottom:926.790000px;}
.y2e{bottom:929.490000px;}
.y55{bottom:929.850000px;}
.y7{bottom:948.570000px;}
.y2d{bottom:949.830000px;}
.y54{bottom:950.010000px;}
.y4{bottom:969.630000px;}
.y3{bottom:992.670000px;}
.y2{bottom:1018.770000px;}
.y1{bottom:1038.210000px;}
.hd{height:37.440000px;}
.he{height:37.476000px;}
.hc{height:37.620000px;}
.hb{height:37.656000px;}
.ha{height:43.506914px;}
.h8{height:48.127500px;}
.h4{height:48.224531px;}
.h6{height:48.353906px;}
.h5{height:52.312500px;}
.h9{height:56.880000px;}
.h3{height:62.028281px;}
.hf{height:68.084282px;}
.h7{height:68.956875px;}
.h1{height:74.004654px;}
.h2{height:84.898125px;}
.h0{height:1188.000000px;}
.w2{width:160.770000px;}
.w4{width:217.830000px;}
.w3{width:264.990000px;}
.w1{width:646.665000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:9.900000px;}
.x20{left:12.960000px;}
.x1e{left:14.940000px;}
.x1a{left:18.714000px;}
.x26{left:19.794000px;}
.x21{left:21.240000px;}
.x15{left:24.474000px;}
.x27{left:27.000000px;}
.x1c{left:29.700000px;}
.x22{left:31.854000px;}
.x23{left:37.440000px;}
.x1f{left:43.380000px;}
.x1b{left:49.680000px;}
.x1d{left:56.514000px;}
.x25{left:58.860000px;}
.x19{left:71.865000px;}
.x17{left:82.980000px;}
.x28{left:105.156000px;}
.x4{left:108.036000px;}
.x11{left:111.636000px;}
.xe{left:118.116000px;}
.xd{left:124.416000px;}
.x6{left:131.076000px;}
.x14{left:135.756000px;}
.x29{left:162.030000px;}
.x7{left:179.850000px;}
.x2{left:195.510000px;}
.x3{left:203.790000px;}
.x16{left:298.155000px;}
.xa{left:322.455000px;}
.x10{left:324.795000px;}
.x12{left:338.115000px;}
.xb{left:376.635000px;}
.x9{left:401.475000px;}
.xc{left:427.035000px;}
.x13{left:459.105000px;}
.x8{left:486.105000px;}
.x1{left:555.945000px;}
.x18{left:564.585000px;}
.x5{left:801.900000px;}
.xf{left:810.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.332800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.135467pt;}
.ls9{letter-spacing:0.146133pt;}
.ls3{letter-spacing:0.153600pt;}
.ls5{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.271467pt;}
.ls8{letter-spacing:6.031360pt;}
.ls7{letter-spacing:35.450027pt;}
.ls0{letter-spacing:79.610027pt;}
.ws1{word-spacing:-58.880000pt;}
.ws0{word-spacing:-20.633600pt;}
.ws5{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.866133pt;}
.ws2{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.201280pt;}
._5{width:2.508160pt;}
._9{width:3.944960pt;}
._4{width:5.416960pt;}
._a{width:6.347733pt;}
._3{width:7.242240pt;}
._2{width:8.440320pt;}
._c{width:10.170880pt;}
._b{width:11.363840pt;}
._7{width:13.130240pt;}
._6{width:18.664960pt;}
._1a{width:22.529707pt;}
._18{width:23.707307pt;}
._8{width:25.553920pt;}
._19{width:33.010347pt;}
._13{width:45.163520pt;}
._16{width:48.399360pt;}
._15{width:49.555627pt;}
._14{width:68.750507pt;}
._17{width:70.693547pt;}
._f{width:232.007680pt;}
._e{width:232.988160pt;}
._10{width:306.058240pt;}
._d{width:309.885440pt;}
._12{width:333.555200pt;}
._11{width:484.582400pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:20.480000pt;}
.y65{bottom:20.640000pt;}
.y63{bottom:20.986667pt;}
.y61{bottom:22.080000pt;}
.y6{bottom:51.520000pt;}
.y5{bottom:70.560000pt;}
.y75{bottom:104.480000pt;}
.y53{bottom:104.960000pt;}
.y2c{bottom:109.920000pt;}
.y74{bottom:122.720000pt;}
.y52{bottom:123.200000pt;}
.y2b{bottom:127.680000pt;}
.y73{bottom:140.640000pt;}
.y51{bottom:141.440000pt;}
.y2a{bottom:145.440000pt;}
.y72{bottom:158.240000pt;}
.y50{bottom:159.360000pt;}
.y29{bottom:163.520000pt;}
.y4f{bottom:173.146667pt;}
.y71{bottom:176.026667pt;}
.y28{bottom:181.786667pt;}
.y70{bottom:193.946667pt;}
.y27{bottom:199.546667pt;}
.y6f{bottom:212.186667pt;}
.y26{bottom:217.306667pt;}
.y4e{bottom:222.906667pt;}
.y92{bottom:224.986667pt;}
.y6e{bottom:230.426667pt;}
.y25{bottom:235.386667pt;}
.y4d{bottom:240.986667pt;}
.y91{bottom:243.226667pt;}
.y6d{bottom:248.666667pt;}
.y24{bottom:253.466667pt;}
.y4c{bottom:258.906667pt;}
.y90{bottom:261.466667pt;}
.y6c{bottom:264.026667pt;}
.y23{bottom:271.386667pt;}
.y4b{bottom:276.506667pt;}
.y8f{bottom:279.706667pt;}
.y22{bottom:288.986667pt;}
.y4a{bottom:294.586667pt;}
.y8e{bottom:297.946667pt;}
.y6b{bottom:298.586667pt;}
.y21{bottom:306.746667pt;}
.y49{bottom:312.826667pt;}
.y8d{bottom:316.186667pt;}
.y20{bottom:324.506667pt;}
.y48{bottom:330.746667pt;}
.y6a{bottom:333.306667pt;}
.y8c{bottom:334.266667pt;}
.y1f{bottom:342.426667pt;}
.y47{bottom:348.346667pt;}
.y8b{bottom:352.506667pt;}
.y1e{bottom:360.666667pt;}
.y46{bottom:366.466667pt;}
.y69{bottom:368.066667pt;}
.y8a{bottom:370.786667pt;}
.y1d{bottom:378.946667pt;}
.y45{bottom:384.706667pt;}
.y89{bottom:389.026667pt;}
.y1c{bottom:397.186667pt;}
.y44{bottom:402.626667pt;}
.y88{bottom:407.266667pt;}
.y1b{bottom:415.426667pt;}
.y43{bottom:420.226667pt;}
.y87{bottom:425.506667pt;}
.y1a{bottom:433.346667pt;}
.y68{bottom:437.346667pt;}
.y42{bottom:438.306667pt;}
.y86{bottom:443.746667pt;}
.y41{bottom:456.546667pt;}
.y85{bottom:461.986667pt;}
.y19{bottom:467.106667pt;}
.y66{bottom:472.066667pt;}
.y40{bottom:474.306667pt;}
.y84{bottom:480.226667pt;}
.y3f{bottom:492.066667pt;}
.y83{bottom:498.466667pt;}
.y18{bottom:500.866667pt;}
.y3e{bottom:510.146667pt;}
.y64{bottom:513.186667pt;}
.y82{bottom:516.706667pt;}
.y17{bottom:518.466667pt;}
.y3d{bottom:528.386667pt;}
.y81{bottom:534.946667pt;}
.y3c{bottom:546.146667pt;}
.y80{bottom:553.026667pt;}
.y62{bottom:554.466667pt;}
.y16{bottom:554.786667pt;}
.y3b{bottom:563.933333pt;}
.y7f{bottom:571.293333pt;}
.y15{bottom:572.573333pt;}
.y3a{bottom:581.533333pt;}
.y60{bottom:589.213333pt;}
.y7e{bottom:589.533333pt;}
.y14{bottom:590.173333pt;}
.y39{bottom:599.293333pt;}
.y7d{bottom:607.773333pt;}
.y13{bottom:607.933333pt;}
.y38{bottom:617.373333pt;}
.y12{bottom:625.533333pt;}
.y7c{bottom:626.013333pt;}
.y37{bottom:631.293333pt;}
.y11{bottom:643.293333pt;}
.y7b{bottom:644.253333pt;}
.y5f{bottom:644.893333pt;}
.y7a{bottom:662.493333pt;}
.y5e{bottom:662.973333pt;}
.y10{bottom:679.613333pt;}
.y79{bottom:680.733333pt;}
.y5d{bottom:681.213333pt;}
.y36{bottom:682.493333pt;}
.yf{bottom:697.373333pt;}
.y78{bottom:698.973333pt;}
.y5c{bottom:699.453333pt;}
.y35{bottom:700.573333pt;}
.ye{bottom:715.133333pt;}
.y77{bottom:717.213333pt;}
.y5b{bottom:717.693333pt;}
.y34{bottom:718.813333pt;}
.yd{bottom:734.973333pt;}
.y76{bottom:735.453333pt;}
.y5a{bottom:735.613333pt;}
.y33{bottom:736.573333pt;}
.yc{bottom:752.893333pt;}
.y59{bottom:753.533333pt;}
.y32{bottom:754.333333pt;}
.yb{bottom:770.533333pt;}
.y58{bottom:771.813333pt;}
.y31{bottom:772.453333pt;}
.ya{bottom:788.293333pt;}
.y57{bottom:790.053333pt;}
.y30{bottom:790.693333pt;}
.y9{bottom:805.893333pt;}
.y56{bottom:808.293333pt;}
.y2f{bottom:808.453333pt;}
.y8{bottom:823.813333pt;}
.y2e{bottom:826.213333pt;}
.y55{bottom:826.533333pt;}
.y7{bottom:843.173333pt;}
.y2d{bottom:844.293333pt;}
.y54{bottom:844.453333pt;}
.y4{bottom:861.893333pt;}
.y3{bottom:882.373333pt;}
.y2{bottom:905.573333pt;}
.y1{bottom:922.853333pt;}
.hd{height:33.280000pt;}
.he{height:33.312000pt;}
.hc{height:33.440000pt;}
.hb{height:33.472000pt;}
.ha{height:38.672812pt;}
.h8{height:42.780000pt;}
.h4{height:42.866250pt;}
.h6{height:42.981250pt;}
.h5{height:46.500000pt;}
.h9{height:50.560000pt;}
.h3{height:55.136250pt;}
.hf{height:60.519362pt;}
.h7{height:61.295000pt;}
.h1{height:65.781915pt;}
.h2{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w2{width:142.906667pt;}
.w4{width:193.626667pt;}
.w3{width:235.546667pt;}
.w1{width:574.813333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:8.800000pt;}
.x20{left:11.520000pt;}
.x1e{left:13.280000pt;}
.x1a{left:16.634667pt;}
.x26{left:17.594667pt;}
.x21{left:18.880000pt;}
.x15{left:21.754667pt;}
.x27{left:24.000000pt;}
.x1c{left:26.400000pt;}
.x22{left:28.314667pt;}
.x23{left:33.280000pt;}
.x1f{left:38.560000pt;}
.x1b{left:44.160000pt;}
.x1d{left:50.234667pt;}
.x25{left:52.320000pt;}
.x19{left:63.880000pt;}
.x17{left:73.760000pt;}
.x28{left:93.472000pt;}
.x4{left:96.032000pt;}
.x11{left:99.232000pt;}
.xe{left:104.992000pt;}
.xd{left:110.592000pt;}
.x6{left:116.512000pt;}
.x14{left:120.672000pt;}
.x29{left:144.026667pt;}
.x7{left:159.866667pt;}
.x2{left:173.786667pt;}
.x3{left:181.146667pt;}
.x16{left:265.026667pt;}
.xa{left:286.626667pt;}
.x10{left:288.706667pt;}
.x12{left:300.546667pt;}
.xb{left:334.786667pt;}
.x9{left:356.866667pt;}
.xc{left:379.586667pt;}
.x13{left:408.093333pt;}
.x8{left:432.093333pt;}
.x1{left:494.173333pt;}
.x18{left:501.853333pt;}
.x5{left:712.800000pt;}
.xf{left:720.000000pt;}
}




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