
    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_56fe437107f623408eb2673a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_a6489eb9ef440c7950505537.woff')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_ff9d97062097d60e9b649e08.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f5d405f3b01f8fbdbc3c0278.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_5868e7f0baf29bf500ec84f8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_79445ebd354882331e42f03a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_da85af002c94f3662cc62d79.woff')format("woff");}.ff7{font-family:ff7;line-height:1.039551;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_0df4140036aa3804f48a00cb.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.298200px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.181440px;}
.lsa{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls7{letter-spacing:1.080000px;}
.ls2{letter-spacing:2.160000px;}
.ls1{letter-spacing:51.840000px;}
.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:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.ws6{word-spacing:-12.060000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-8.964000px;}
._3{margin-left:-7.179600px;}
._4{margin-left:-5.379600px;}
._1{margin-left:-4.176000px;}
._d{margin-left:-3.024000px;}
._2{margin-left:-1.604400px;}
._0{width:1.544400px;}
._11{width:3.144000px;}
._5{width:4.346400px;}
._9{width:6.024000px;}
._a{width:7.195200px;}
._12{width:8.988000px;}
._13{width:10.560000px;}
._8{width:12.196800px;}
._6{width:14.184000px;}
._7{width:15.260400px;}
._14{width:16.776000px;}
._17{width:24.480000px;}
._15{width:25.488000px;}
._16{width:26.616000px;}
._18{width:34.632000px;}
._19{width:35.784000px;}
._c{width:51.696000px;}
._b{width:52.752000px;}
._1a{width:56.304000px;}
._e{width:71.496000px;}
._f{width:72.636000px;}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(30,30,30);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y64{bottom:7.020000px;}
.y5d{bottom:7.200000px;}
.y60{bottom:18.900000px;}
.y71{bottom:19.080000px;}
.y5b{bottom:20.520000px;}
.y6e{bottom:30.774000px;}
.y62{bottom:30.780000px;}
.y6b{bottom:30.960000px;}
.y5f{bottom:42.660000px;}
.y5a{bottom:44.460000px;}
.y61{bottom:54.540000px;}
.y57{bottom:56.340000px;}
.y7{bottom:57.636000px;}
.y5e{bottom:66.600000px;}
.y59{bottom:68.220000px;}
.y63{bottom:78.480000px;}
.y58{bottom:91.980000px;}
.y6f{bottom:93.996000px;}
.y68{bottom:106.785000px;}
.y2f{bottom:110.736000px;}
.y6d{bottom:120.096000px;}
.y2e{bottom:134.496000px;}
.y2d{bottom:158.430000px;}
.y6c{bottom:169.950000px;}
.y2c{bottom:182.190000px;}
.y67{bottom:195.870000px;}
.y2b{bottom:205.950000px;}
.y2a{bottom:229.710000px;}
.y6a{bottom:245.730000px;}
.y29{bottom:253.650000px;}
.y28{bottom:277.410000px;}
.y69{bottom:295.635000px;}
.y27{bottom:301.215000px;}
.y46{bottom:313.815000px;}
.y66{bottom:321.735000px;}
.y26{bottom:324.975000px;}
.y45{bottom:337.575000px;}
.y65{bottom:347.835000px;}
.y25{bottom:348.915000px;}
.y44{bottom:361.515000px;}
.y24{bottom:372.675000px;}
.y43{bottom:385.275000px;}
.y23{bottom:396.435000px;}
.y56{bottom:397.695000px;}
.y8d{bottom:403.455000px;}
.y42{bottom:409.035000px;}
.y22{bottom:420.195000px;}
.y8c{bottom:427.215000px;}
.y41{bottom:432.795000px;}
.y21{bottom:444.135000px;}
.y8b{bottom:450.975000px;}
.y40{bottom:456.735000px;}
.y20{bottom:467.895000px;}
.y8a{bottom:474.915000px;}
.y3f{bottom:480.495000px;}
.y1f{bottom:491.655000px;}
.y5c{bottom:496.155000px;}
.y89{bottom:498.675000px;}
.y3e{bottom:504.255000px;}
.y1e{bottom:515.415000px;}
.y88{bottom:522.435000px;}
.y3d{bottom:528.015000px;}
.y55{bottom:529.275000px;}
.y1d{bottom:539.175000px;}
.y87{bottom:546.195000px;}
.y3c{bottom:551.775000px;}
.y54{bottom:553.215000px;}
.y86{bottom:569.985000px;}
.y3b{bottom:575.745000px;}
.y53{bottom:577.005000px;}
.y1c{bottom:584.025000px;}
.y85{bottom:593.925000px;}
.y3a{bottom:599.505000px;}
.y52{bottom:600.765000px;}
.y1b{bottom:607.965000px;}
.y84{bottom:617.685000px;}
.y39{bottom:623.265000px;}
.y51{bottom:624.525000px;}
.y1a{bottom:631.725000px;}
.y83{bottom:641.445000px;}
.y38{bottom:647.025000px;}
.y50{bottom:648.465000px;}
.y19{bottom:655.485000px;}
.y82{bottom:665.205000px;}
.y37{bottom:670.965000px;}
.y4f{bottom:672.225000px;}
.y18{bottom:679.245000px;}
.y81{bottom:689.145000px;}
.y36{bottom:694.725000px;}
.y4e{bottom:695.985000px;}
.y80{bottom:712.905000px;}
.y35{bottom:718.485000px;}
.y4d{bottom:719.745000px;}
.y17{bottom:724.065000px;}
.y7f{bottom:736.665000px;}
.y34{bottom:742.245000px;}
.y4c{bottom:743.685000px;}
.y7e{bottom:760.425000px;}
.y33{bottom:766.185000px;}
.y4b{bottom:767.445000px;}
.y16{bottom:768.885000px;}
.y7d{bottom:784.365000px;}
.y32{bottom:789.945000px;}
.y4a{bottom:791.205000px;}
.y15{bottom:792.645000px;}
.y7c{bottom:808.125000px;}
.y31{bottom:813.705000px;}
.y49{bottom:814.965000px;}
.y14{bottom:816.405000px;}
.y7b{bottom:831.885000px;}
.y30{bottom:837.465000px;}
.y48{bottom:838.725000px;}
.y7a{bottom:855.690000px;}
.y47{bottom:858.570000px;}
.y13{bottom:861.450000px;}
.y79{bottom:879.630000px;}
.y12{bottom:885.210000px;}
.y78{bottom:903.390000px;}
.y11{bottom:908.970000px;}
.y77{bottom:927.150000px;}
.y10{bottom:932.730000px;}
.y76{bottom:950.910000px;}
.yf{bottom:956.670000px;}
.y75{bottom:974.850000px;}
.ye{bottom:980.430000px;}
.y74{bottom:998.610000px;}
.yd{bottom:1004.190000px;}
.y73{bottom:1022.370000px;}
.yc{bottom:1027.950000px;}
.y72{bottom:1041.450000px;}
.yb{bottom:1051.710000px;}
.ya{bottom:1075.650000px;}
.y70{bottom:1091.130000px;}
.y9{bottom:1099.410000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.hd{height:23.760000px;}
.ha{height:23.940000px;}
.hc{height:47.520000px;}
.h10{height:47.700000px;}
.hf{height:47.736000px;}
.h2{height:61.189805px;}
.h8{height:62.261719px;}
.h7{height:63.457031px;}
.h4{height:65.884219px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h3{height:84.898125px;}
.hb{height:95.220000px;}
.h9{height:122.400000px;}
.he{height:123.516000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:32.796000px;}
.w7{width:53.100000px;}
.w6{width:60.336000px;}
.wa{width:63.180000px;}
.wc{width:68.040000px;}
.wb{width:74.196000px;}
.w8{width:84.240000px;}
.w9{width:85.176000px;}
.w4{width:137.520000px;}
.w5{width:558.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.980000px;}
.x20{left:3.240000px;}
.x1a{left:5.580000px;}
.x11{left:7.776000px;}
.x14{left:9.720000px;}
.x18{left:11.520000px;}
.x2d{left:12.960000px;}
.x1e{left:14.760000px;}
.x19{left:16.020000px;}
.x24{left:18.720000px;}
.x15{left:20.700000px;}
.x29{left:22.680000px;}
.x2e{left:24.120000px;}
.x28{left:25.740000px;}
.x26{left:27.360000px;}
.x2f{left:28.620000px;}
.x27{left:30.960000px;}
.x31{left:32.400000px;}
.x2c{left:33.840000px;}
.x2b{left:36.900000px;}
.x30{left:38.010000px;}
.x2a{left:42.120000px;}
.x13{left:44.994000px;}
.x9{left:84.959987px;}
.x10{left:86.220000px;}
.xf{left:115.055987px;}
.x12{left:120.096000px;}
.xc{left:152.489987px;}
.xa{left:171.209987px;}
.x5{left:178.589987px;}
.x17{left:187.965000px;}
.x8{left:248.789987px;}
.x16{left:258.690000px;}
.xb{left:316.334987px;}
.x1b{left:320.115000px;}
.x7{left:322.094987px;}
.x3{left:350.534987px;}
.x1d{left:374.115000px;}
.x32{left:406.514987px;}
.x4{left:433.874987px;}
.x6{left:446.474987px;}
.x2{left:457.094987px;}
.x1f{left:459.435000px;}
.x1{left:510.404987px;}
.x21{left:545.685000px;}
.x22{left:609.945000px;}
.xd{left:621.284987px;}
.x23{left:685.050000px;}
.x25{left:749.310000px;}
.xe{left:752.189987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.265067pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.161280pt;}
.lsa{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.920000pt;}
.ls1{letter-spacing:46.080000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws6{word-spacing:-10.720000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-7.968000pt;}
._3{margin-left:-6.381867pt;}
._4{margin-left:-4.781867pt;}
._1{margin-left:-3.712000pt;}
._d{margin-left:-2.688000pt;}
._2{margin-left:-1.426133pt;}
._0{width:1.372800pt;}
._11{width:2.794667pt;}
._5{width:3.863467pt;}
._9{width:5.354667pt;}
._a{width:6.395733pt;}
._12{width:7.989333pt;}
._13{width:9.386667pt;}
._8{width:10.841600pt;}
._6{width:12.608000pt;}
._7{width:13.564800pt;}
._14{width:14.912000pt;}
._17{width:21.760000pt;}
._15{width:22.656000pt;}
._16{width:23.658667pt;}
._18{width:30.784000pt;}
._19{width:31.808000pt;}
._c{width:45.952000pt;}
._b{width:46.890667pt;}
._1a{width:50.048000pt;}
._e{width:63.552000pt;}
._f{width:64.565333pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:6.240000pt;}
.y5d{bottom:6.400000pt;}
.y60{bottom:16.800000pt;}
.y71{bottom:16.960000pt;}
.y5b{bottom:18.240000pt;}
.y6e{bottom:27.354667pt;}
.y62{bottom:27.360000pt;}
.y6b{bottom:27.520000pt;}
.y5f{bottom:37.920000pt;}
.y5a{bottom:39.520000pt;}
.y61{bottom:48.480000pt;}
.y57{bottom:50.080000pt;}
.y7{bottom:51.232000pt;}
.y5e{bottom:59.200000pt;}
.y59{bottom:60.640000pt;}
.y63{bottom:69.760000pt;}
.y58{bottom:81.760000pt;}
.y6f{bottom:83.552000pt;}
.y68{bottom:94.920000pt;}
.y2f{bottom:98.432000pt;}
.y6d{bottom:106.752000pt;}
.y2e{bottom:119.552000pt;}
.y2d{bottom:140.826667pt;}
.y6c{bottom:151.066667pt;}
.y2c{bottom:161.946667pt;}
.y67{bottom:174.106667pt;}
.y2b{bottom:183.066667pt;}
.y2a{bottom:204.186667pt;}
.y6a{bottom:218.426667pt;}
.y29{bottom:225.466667pt;}
.y28{bottom:246.586667pt;}
.y69{bottom:262.786667pt;}
.y27{bottom:267.746667pt;}
.y46{bottom:278.946667pt;}
.y66{bottom:285.986667pt;}
.y26{bottom:288.866667pt;}
.y45{bottom:300.066667pt;}
.y65{bottom:309.186667pt;}
.y25{bottom:310.146667pt;}
.y44{bottom:321.346667pt;}
.y24{bottom:331.266667pt;}
.y43{bottom:342.466667pt;}
.y23{bottom:352.386667pt;}
.y56{bottom:353.506667pt;}
.y8d{bottom:358.626667pt;}
.y42{bottom:363.586667pt;}
.y22{bottom:373.506667pt;}
.y8c{bottom:379.746667pt;}
.y41{bottom:384.706667pt;}
.y21{bottom:394.786667pt;}
.y8b{bottom:400.866667pt;}
.y40{bottom:405.986667pt;}
.y20{bottom:415.906667pt;}
.y8a{bottom:422.146667pt;}
.y3f{bottom:427.106667pt;}
.y1f{bottom:437.026667pt;}
.y5c{bottom:441.026667pt;}
.y89{bottom:443.266667pt;}
.y3e{bottom:448.226667pt;}
.y1e{bottom:458.146667pt;}
.y88{bottom:464.386667pt;}
.y3d{bottom:469.346667pt;}
.y55{bottom:470.466667pt;}
.y1d{bottom:479.266667pt;}
.y87{bottom:485.506667pt;}
.y3c{bottom:490.466667pt;}
.y54{bottom:491.746667pt;}
.y86{bottom:506.653333pt;}
.y3b{bottom:511.773333pt;}
.y53{bottom:512.893333pt;}
.y1c{bottom:519.133333pt;}
.y85{bottom:527.933333pt;}
.y3a{bottom:532.893333pt;}
.y52{bottom:534.013333pt;}
.y1b{bottom:540.413333pt;}
.y84{bottom:549.053333pt;}
.y39{bottom:554.013333pt;}
.y51{bottom:555.133333pt;}
.y1a{bottom:561.533333pt;}
.y83{bottom:570.173333pt;}
.y38{bottom:575.133333pt;}
.y50{bottom:576.413333pt;}
.y19{bottom:582.653333pt;}
.y82{bottom:591.293333pt;}
.y37{bottom:596.413333pt;}
.y4f{bottom:597.533333pt;}
.y18{bottom:603.773333pt;}
.y81{bottom:612.573333pt;}
.y36{bottom:617.533333pt;}
.y4e{bottom:618.653333pt;}
.y80{bottom:633.693333pt;}
.y35{bottom:638.653333pt;}
.y4d{bottom:639.773333pt;}
.y17{bottom:643.613333pt;}
.y7f{bottom:654.813333pt;}
.y34{bottom:659.773333pt;}
.y4c{bottom:661.053333pt;}
.y7e{bottom:675.933333pt;}
.y33{bottom:681.053333pt;}
.y4b{bottom:682.173333pt;}
.y16{bottom:683.453333pt;}
.y7d{bottom:697.213333pt;}
.y32{bottom:702.173333pt;}
.y4a{bottom:703.293333pt;}
.y15{bottom:704.573333pt;}
.y7c{bottom:718.333333pt;}
.y31{bottom:723.293333pt;}
.y49{bottom:724.413333pt;}
.y14{bottom:725.693333pt;}
.y7b{bottom:739.453333pt;}
.y30{bottom:744.413333pt;}
.y48{bottom:745.533333pt;}
.y7a{bottom:760.613333pt;}
.y47{bottom:763.173333pt;}
.y13{bottom:765.733333pt;}
.y79{bottom:781.893333pt;}
.y12{bottom:786.853333pt;}
.y78{bottom:803.013333pt;}
.y11{bottom:807.973333pt;}
.y77{bottom:824.133333pt;}
.y10{bottom:829.093333pt;}
.y76{bottom:845.253333pt;}
.yf{bottom:850.373333pt;}
.y75{bottom:866.533333pt;}
.ye{bottom:871.493333pt;}
.y74{bottom:887.653333pt;}
.yd{bottom:892.613333pt;}
.y73{bottom:908.773333pt;}
.yc{bottom:913.733333pt;}
.y72{bottom:925.733333pt;}
.yb{bottom:934.853333pt;}
.ya{bottom:956.133333pt;}
.y70{bottom:969.893333pt;}
.y9{bottom:977.253333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.hd{height:21.120000pt;}
.ha{height:21.280000pt;}
.hc{height:42.240000pt;}
.h10{height:42.400000pt;}
.hf{height:42.432000pt;}
.h2{height:54.390938pt;}
.h8{height:55.343750pt;}
.h7{height:56.406250pt;}
.h4{height:58.563750pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h3{height:75.465000pt;}
.hb{height:84.640000pt;}
.h9{height:108.800000pt;}
.he{height:109.792000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:29.152000pt;}
.w7{width:47.200000pt;}
.w6{width:53.632000pt;}
.wa{width:56.160000pt;}
.wc{width:60.480000pt;}
.wb{width:65.952000pt;}
.w8{width:74.880000pt;}
.w9{width:75.712000pt;}
.w4{width:122.240000pt;}
.w5{width:496.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.760000pt;}
.x20{left:2.880000pt;}
.x1a{left:4.960000pt;}
.x11{left:6.912000pt;}
.x14{left:8.640000pt;}
.x18{left:10.240000pt;}
.x2d{left:11.520000pt;}
.x1e{left:13.120000pt;}
.x19{left:14.240000pt;}
.x24{left:16.640000pt;}
.x15{left:18.400000pt;}
.x29{left:20.160000pt;}
.x2e{left:21.440000pt;}
.x28{left:22.880000pt;}
.x26{left:24.320000pt;}
.x2f{left:25.440000pt;}
.x27{left:27.520000pt;}
.x31{left:28.800000pt;}
.x2c{left:30.080000pt;}
.x2b{left:32.800000pt;}
.x30{left:33.786667pt;}
.x2a{left:37.440000pt;}
.x13{left:39.994667pt;}
.x9{left:75.519988pt;}
.x10{left:76.640000pt;}
.xf{left:102.271988pt;}
.x12{left:106.752000pt;}
.xc{left:135.546655pt;}
.xa{left:152.186655pt;}
.x5{left:158.746655pt;}
.x17{left:167.080000pt;}
.x8{left:221.146655pt;}
.x16{left:229.946667pt;}
.xb{left:281.186655pt;}
.x1b{left:284.546667pt;}
.x7{left:286.306655pt;}
.x3{left:311.586655pt;}
.x1d{left:332.546667pt;}
.x32{left:361.346655pt;}
.x4{left:385.666655pt;}
.x6{left:396.866655pt;}
.x2{left:406.306655pt;}
.x1f{left:408.386667pt;}
.x1{left:453.693322pt;}
.x21{left:485.053333pt;}
.x22{left:542.173333pt;}
.xd{left:552.253322pt;}
.x23{left:608.933333pt;}
.x25{left:666.053333pt;}
.xe{left:668.613322pt;}
}




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