
    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_9188d3021941bf290b163898.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b1cb9c34d6b50c590297ef9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_44a19cea191d48630fecbbb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_fd892891d1e8a1a1534539f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_aabae882853efc245f8002a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_24f903739260a3f46f5215ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_90759b8b22126746a69cf238.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_ecdb8943e04310e9484a6919.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-1.440000px;}
.ls6{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.504000px;}
.ls1{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012000px;}
.lsc{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.936000px;}
.lsa{letter-spacing:1.560000px;}
.ls2{letter-spacing:1.584000px;}
.lsd{letter-spacing:17.424000px;}
.lsb{letter-spacing:53.424000px;}
.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;}
}
.ws2{word-spacing:-19.584000px;}
.ws6{word-spacing:-18.936000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.496000px;}
.ws7{word-spacing:-17.352000px;}
.ws0{word-spacing:-14.506440px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-4.417920px;}
._7{margin-left:-3.384000px;}
._2{margin-left:-2.298240px;}
._0{margin-left:-1.258560px;}
._1{width:1.145280px;}
._3{width:2.221440px;}
._4{width:3.340800px;}
._b{width:4.688160px;}
._f{width:5.821920px;}
._9{width:6.874560px;}
._8{width:7.992000px;}
._11{width:9.157920px;}
._a{width:10.435680px;}
._5{width:12.168000px;}
._6{width:13.968960px;}
._d{width:15.299520px;}
._c{width:16.876320px;}
._23{width:19.099200px;}
._10{width:20.161440px;}
._15{width:21.460320px;}
._19{width:22.788480px;}
._22{width:24.390240px;}
._1c{width:25.633920px;}
._24{width:26.690400px;}
._12{width:27.740160px;}
._14{width:28.828800px;}
._13{width:30.272640px;}
._1d{width:32.401920px;}
._1e{width:33.766560px;}
._e{width:36.394560px;}
._21{width:56.468160px;}
._1f{width:57.562560px;}
._20{width:58.818240px;}
._1b{width:82.042560px;}
._16{width:141.696000px;}
._18{width:193.560000px;}
._17{width:195.240000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y77{bottom:3.600000px;}
.y4e{bottom:7.560000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y4d{bottom:31.320000px;}
.y4c{bottom:55.440000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y4b{bottom:79.230000px;}
.y4a{bottom:102.990000px;}
.y87{bottom:107.316000px;}
.y74{bottom:108.036000px;}
.y43{bottom:110.916000px;}
.y49{bottom:126.750000px;}
.y85{bottom:130.356000px;}
.y86{bottom:131.436000px;}
.y33{bottom:131.796000px;}
.y42{bottom:135.036000px;}
.y5d{bottom:149.076000px;}
.y48{bottom:150.510000px;}
.y84{bottom:154.110000px;}
.y32{bottom:155.550000px;}
.y41{bottom:158.790000px;}
.y5c{bottom:172.830000px;}
.y47{bottom:174.270000px;}
.y83{bottom:177.870000px;}
.y31{bottom:179.310000px;}
.y40{bottom:182.550000px;}
.y5b{bottom:196.635000px;}
.y82{bottom:201.675000px;}
.y30{bottom:203.115000px;}
.y3f{bottom:206.355000px;}
.y5a{bottom:220.395000px;}
.y81{bottom:225.435000px;}
.y2f{bottom:226.875000px;}
.y3e{bottom:230.115000px;}
.y59{bottom:244.155000px;}
.y80{bottom:249.195000px;}
.y2e{bottom:250.635000px;}
.y73{bottom:250.995000px;}
.y3d{bottom:253.515000px;}
.y58{bottom:267.915000px;}
.y3c{bottom:273.315000px;}
.y2d{bottom:274.395000px;}
.y72{bottom:274.755000px;}
.y57{bottom:291.675000px;}
.y7f{bottom:297.075000px;}
.y2c{bottom:298.155000px;}
.y71{bottom:298.515000px;}
.y56{bottom:315.435000px;}
.y7e{bottom:320.865000px;}
.y2b{bottom:321.945000px;}
.y70{bottom:322.305000px;}
.y55{bottom:339.585000px;}
.y7d{bottom:344.625000px;}
.y2a{bottom:346.065000px;}
.y54{bottom:363.345000px;}
.y7c{bottom:368.385000px;}
.y29{bottom:369.825000px;}
.y53{bottom:387.105000px;}
.y7b{bottom:392.145000px;}
.y28{bottom:393.585000px;}
.y8e{bottom:410.505000px;}
.y52{bottom:410.865000px;}
.y7a{bottom:415.905000px;}
.y27{bottom:417.345000px;}
.y8d{bottom:434.265000px;}
.y51{bottom:434.625000px;}
.y6f{bottom:437.145000px;}
.y79{bottom:439.665000px;}
.y26{bottom:441.105000px;}
.y50{bottom:458.430000px;}
.y78{bottom:463.110000px;}
.y25{bottom:464.910000px;}
.y8c{bottom:478.950000px;}
.y76{bottom:479.670000px;}
.y4f{bottom:482.190000px;}
.y24{bottom:488.670000px;}
.y46{bottom:498.390000px;}
.y23{bottom:512.430000px;}
.y8b{bottom:523.950000px;}
.y22{bottom:536.550000px;}
.y21{bottom:560.310000px;}
.y8a{bottom:568.590000px;}
.y20{bottom:584.100000px;}
.y1f{bottom:607.860000px;}
.y89{bottom:613.260000px;}
.y6e{bottom:625.140000px;}
.y1e{bottom:631.620000px;}
.y6d{bottom:648.900000px;}
.y1d{bottom:655.380000px;}
.y88{bottom:657.900000px;}
.y6c{bottom:672.660000px;}
.y1c{bottom:678.780000px;}
.y3b{bottom:679.140000px;}
.y44{bottom:688.860000px;}
.y6b{bottom:696.420000px;}
.y1b{bottom:702.930000px;}
.y6a{bottom:720.210000px;}
.y1a{bottom:727.050000px;}
.y69{bottom:743.970000px;}
.y19{bottom:750.810000px;}
.y68{bottom:767.730000px;}
.y18{bottom:774.570000px;}
.y67{bottom:791.850000px;}
.y17{bottom:798.330000px;}
.y66{bottom:815.610000px;}
.y16{bottom:822.090000px;}
.y65{bottom:839.415000px;}
.y15{bottom:845.895000px;}
.y64{bottom:863.175000px;}
.y14{bottom:869.655000px;}
.y63{bottom:886.935000px;}
.y13{bottom:893.415000px;}
.y75{bottom:903.135000px;}
.y62{bottom:910.695000px;}
.y12{bottom:917.175000px;}
.y61{bottom:934.455000px;}
.y11{bottom:941.295000px;}
.y60{bottom:958.245000px;}
.y10{bottom:964.725000px;}
.y3a{bottom:965.085000px;}
.y5f{bottom:982.365000px;}
.yf{bottom:988.485000px;}
.y39{bottom:988.845000px;}
.y5e{bottom:998.565000px;}
.ye{bottom:1012.605000px;}
.yd{bottom:1036.005000px;}
.y38{bottom:1036.365000px;}
.yc{bottom:1060.125000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y36{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y35{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.h7{height:50.229844px;}
.ha{height:50.273438px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.hf{height:74.004654px;}
.h8{height:97.233750px;}
.hd{height:173.190000px;}
.hb{height:173.235000px;}
.hc{height:190.470000px;}
.he{height:209.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w3{width:298.905000px;}
.w6{width:317.265000px;}
.w7{width:344.310000px;}
.w9{width:350.430000px;}
.wa{width:350.745000px;}
.w8{width:365.910000px;}
.w5{width:378.510000px;}
.wb{width:701.895000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:8.280000px;}
.x8{left:39.270000px;}
.x16{left:61.599000px;}
.x18{left:91.476000px;}
.x5{left:95.796000px;}
.x12{left:98.676000px;}
.xa{left:109.475987px;}
.x21{left:127.835987px;}
.xc{left:149.111987px;}
.x3{left:190.154987px;}
.xb{left:221.474987px;}
.x1e{left:275.505000px;}
.x1c{left:283.074000px;}
.xe{left:288.104987px;}
.x6{left:290.634000px;}
.x15{left:308.985000px;}
.x19{left:310.074000px;}
.xf{left:322.664987px;}
.x2{left:333.509987px;}
.x11{left:334.589987px;}
.x13{left:341.424000px;}
.x4{left:342.869987px;}
.xd{left:387.509987px;}
.x7{left:394.710000px;}
.x20{left:422.459987px;}
.x1a{left:435.780000px;}
.x1d{left:446.220000px;}
.x14{left:477.180000px;}
.x9{left:498.780000px;}
.x10{left:687.854987px;}
.x1f{left:695.409000px;}
.x1b{left:700.454987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.010667pt;}
.lsc{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.832000pt;}
.lsa{letter-spacing:1.386667pt;}
.ls2{letter-spacing:1.408000pt;}
.lsd{letter-spacing:15.488000pt;}
.lsb{letter-spacing:47.488000pt;}
.ws2{word-spacing:-17.408000pt;}
.ws6{word-spacing:-16.832000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.552000pt;}
.ws7{word-spacing:-15.424000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-3.927040pt;}
._7{margin-left:-3.008000pt;}
._2{margin-left:-2.042880pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.018027pt;}
._3{width:1.974613pt;}
._4{width:2.969600pt;}
._b{width:4.167253pt;}
._f{width:5.175040pt;}
._9{width:6.110720pt;}
._8{width:7.104000pt;}
._11{width:8.140373pt;}
._a{width:9.276160pt;}
._5{width:10.816000pt;}
._6{width:12.416853pt;}
._d{width:13.599573pt;}
._c{width:15.001173pt;}
._23{width:16.977067pt;}
._10{width:17.921280pt;}
._15{width:19.075840pt;}
._19{width:20.256427pt;}
._22{width:21.680213pt;}
._1c{width:22.785707pt;}
._24{width:23.724800pt;}
._12{width:24.657920pt;}
._14{width:25.625600pt;}
._13{width:26.909013pt;}
._1d{width:28.801707pt;}
._1e{width:30.014720pt;}
._e{width:32.350720pt;}
._21{width:50.193920pt;}
._1f{width:51.166720pt;}
._20{width:52.282880pt;}
._1b{width:72.926720pt;}
._16{width:125.952000pt;}
._18{width:172.053333pt;}
._17{width:173.546667pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y77{bottom:3.200000pt;}
.y4e{bottom:6.720000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y4d{bottom:27.840000pt;}
.y4c{bottom:49.280000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y4b{bottom:70.426667pt;}
.y4a{bottom:91.546667pt;}
.y87{bottom:95.392000pt;}
.y74{bottom:96.032000pt;}
.y43{bottom:98.592000pt;}
.y49{bottom:112.666667pt;}
.y85{bottom:115.872000pt;}
.y86{bottom:116.832000pt;}
.y33{bottom:117.152000pt;}
.y42{bottom:120.032000pt;}
.y5d{bottom:132.512000pt;}
.y48{bottom:133.786667pt;}
.y84{bottom:136.986667pt;}
.y32{bottom:138.266667pt;}
.y41{bottom:141.146667pt;}
.y5c{bottom:153.626667pt;}
.y47{bottom:154.906667pt;}
.y83{bottom:158.106667pt;}
.y31{bottom:159.386667pt;}
.y40{bottom:162.266667pt;}
.y5b{bottom:174.786667pt;}
.y82{bottom:179.266667pt;}
.y30{bottom:180.546667pt;}
.y3f{bottom:183.426667pt;}
.y5a{bottom:195.906667pt;}
.y81{bottom:200.386667pt;}
.y2f{bottom:201.666667pt;}
.y3e{bottom:204.546667pt;}
.y59{bottom:217.026667pt;}
.y80{bottom:221.506667pt;}
.y2e{bottom:222.786667pt;}
.y73{bottom:223.106667pt;}
.y3d{bottom:225.346667pt;}
.y58{bottom:238.146667pt;}
.y3c{bottom:242.946667pt;}
.y2d{bottom:243.906667pt;}
.y72{bottom:244.226667pt;}
.y57{bottom:259.266667pt;}
.y7f{bottom:264.066667pt;}
.y2c{bottom:265.026667pt;}
.y71{bottom:265.346667pt;}
.y56{bottom:280.386667pt;}
.y7e{bottom:285.213333pt;}
.y2b{bottom:286.173333pt;}
.y70{bottom:286.493333pt;}
.y55{bottom:301.853333pt;}
.y7d{bottom:306.333333pt;}
.y2a{bottom:307.613333pt;}
.y54{bottom:322.973333pt;}
.y7c{bottom:327.453333pt;}
.y29{bottom:328.733333pt;}
.y53{bottom:344.093333pt;}
.y7b{bottom:348.573333pt;}
.y28{bottom:349.853333pt;}
.y8e{bottom:364.893333pt;}
.y52{bottom:365.213333pt;}
.y7a{bottom:369.693333pt;}
.y27{bottom:370.973333pt;}
.y8d{bottom:386.013333pt;}
.y51{bottom:386.333333pt;}
.y6f{bottom:388.573333pt;}
.y79{bottom:390.813333pt;}
.y26{bottom:392.093333pt;}
.y50{bottom:407.493333pt;}
.y78{bottom:411.653333pt;}
.y25{bottom:413.253333pt;}
.y8c{bottom:425.733333pt;}
.y76{bottom:426.373333pt;}
.y4f{bottom:428.613333pt;}
.y24{bottom:434.373333pt;}
.y46{bottom:443.013333pt;}
.y23{bottom:455.493333pt;}
.y8b{bottom:465.733333pt;}
.y22{bottom:476.933333pt;}
.y21{bottom:498.053333pt;}
.y8a{bottom:505.413333pt;}
.y20{bottom:519.200000pt;}
.y1f{bottom:540.320000pt;}
.y89{bottom:545.120000pt;}
.y6e{bottom:555.680000pt;}
.y1e{bottom:561.440000pt;}
.y6d{bottom:576.800000pt;}
.y1d{bottom:582.560000pt;}
.y88{bottom:584.800000pt;}
.y6c{bottom:597.920000pt;}
.y1c{bottom:603.360000pt;}
.y3b{bottom:603.680000pt;}
.y44{bottom:612.320000pt;}
.y6b{bottom:619.040000pt;}
.y1b{bottom:624.826667pt;}
.y6a{bottom:640.186667pt;}
.y1a{bottom:646.266667pt;}
.y69{bottom:661.306667pt;}
.y19{bottom:667.386667pt;}
.y68{bottom:682.426667pt;}
.y18{bottom:688.506667pt;}
.y67{bottom:703.866667pt;}
.y17{bottom:709.626667pt;}
.y66{bottom:724.986667pt;}
.y16{bottom:730.746667pt;}
.y65{bottom:746.146667pt;}
.y15{bottom:751.906667pt;}
.y64{bottom:767.266667pt;}
.y14{bottom:773.026667pt;}
.y63{bottom:788.386667pt;}
.y13{bottom:794.146667pt;}
.y75{bottom:802.786667pt;}
.y62{bottom:809.506667pt;}
.y12{bottom:815.266667pt;}
.y61{bottom:830.626667pt;}
.y11{bottom:836.706667pt;}
.y60{bottom:851.773333pt;}
.y10{bottom:857.533333pt;}
.y3a{bottom:857.853333pt;}
.y5f{bottom:873.213333pt;}
.yf{bottom:878.653333pt;}
.y39{bottom:878.973333pt;}
.y5e{bottom:887.613333pt;}
.ye{bottom:900.093333pt;}
.yd{bottom:920.893333pt;}
.y38{bottom:921.213333pt;}
.yc{bottom:942.333333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y36{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y35{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.h7{height:44.648750pt;}
.ha{height:44.687500pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.hf{height:65.781915pt;}
.h8{height:86.430000pt;}
.hd{height:153.946667pt;}
.hb{height:153.986667pt;}
.hc{height:169.306667pt;}
.he{height:185.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w3{width:265.693333pt;}
.w6{width:282.013333pt;}
.w7{width:306.053333pt;}
.w9{width:311.493333pt;}
.wa{width:311.773333pt;}
.w8{width:325.253333pt;}
.w5{width:336.453333pt;}
.wb{width:623.906667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:7.360000pt;}
.x8{left:34.906667pt;}
.x16{left:54.754667pt;}
.x18{left:81.312000pt;}
.x5{left:85.152000pt;}
.x12{left:87.712000pt;}
.xa{left:97.311988pt;}
.x21{left:113.631988pt;}
.xc{left:132.543988pt;}
.x3{left:169.026655pt;}
.xb{left:196.866655pt;}
.x1e{left:244.893333pt;}
.x1c{left:251.621333pt;}
.xe{left:256.093322pt;}
.x6{left:258.341333pt;}
.x15{left:274.653333pt;}
.x19{left:275.621333pt;}
.xf{left:286.813322pt;}
.x2{left:296.453322pt;}
.x11{left:297.413322pt;}
.x13{left:303.488000pt;}
.x4{left:304.773322pt;}
.xd{left:344.453322pt;}
.x7{left:350.853333pt;}
.x20{left:375.519988pt;}
.x1a{left:387.360000pt;}
.x1d{left:396.640000pt;}
.x14{left:424.160000pt;}
.x9{left:443.360000pt;}
.x10{left:611.426655pt;}
.x1f{left:618.141333pt;}
.x1b{left:622.626655pt;}
.x1{left:709.053322pt;}
}




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