
    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_c00a4013f616278e2649f5f5.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_cb7d22abe826883cb772ab92.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_ecf0959d26481c81910eef4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_b9510df35d91e025f068a2f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_18c523e1ad73a2a7a64427ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_0bf820b57b1c0f112cd501fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_5882c40ae69d28c5c550b51b.woff2')format("woff");}.ff7{font-family:ff7;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:30.240000px;}
.ls6{letter-spacing:-2.880000px;}
.ls9{letter-spacing:-1.926000px;}
.ls7{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.422000px;}
.ls10{letter-spacing:-0.720000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.ls0{letter-spacing:0.025920px;}
.ls8{letter-spacing:0.115200px;}
.lsc{letter-spacing:0.140160px;}
.lsb{letter-spacing:0.164160px;}
.lsf{letter-spacing:0.200160px;}
.lse{letter-spacing:0.423360px;}
.lsa{letter-spacing:0.699840px;}
.ls2{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.840000px;}
.ls12{letter-spacing:1.460160px;}
.ls11{letter-spacing:1.472160px;}
.ls4{letter-spacing:10.800000px;}
.ls14{letter-spacing:16.306560px;}
.ls13{letter-spacing:46.558560px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.543360px;}
.ws8{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws2{word-spacing:-13.680000px;}
.ws1{word-spacing:-12.240000px;}
.ws6{word-spacing:-10.419840px;}
.ws5{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-8.782080px;}
._5{margin-left:-7.152960px;}
._4{margin-left:-5.370720px;}
._19{margin-left:-4.206720px;}
._7{margin-left:-3.055200px;}
._0{margin-left:-2.016000px;}
._6{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.016000px;}
._3{width:3.144000px;}
._17{width:4.176000px;}
._f{width:5.334240px;}
._10{width:6.892800px;}
._d{width:8.174400px;}
._e{width:9.604800px;}
._9{width:10.998720px;}
._11{width:12.078240px;}
._8{width:13.556160px;}
._15{width:16.200480px;}
._14{width:17.438400px;}
._16{width:18.832800px;}
._13{width:19.998720px;}
._12{width:21.732480px;}
._18{width:22.740480px;}
._c{width:23.786880px;}
._a{width:24.787680px;}
._b{width:25.945920px;}
._1b{width:30.119040px;}
._1c{width:33.220320px;}
._1a{width:34.320960px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.240000px;}
.y2b{bottom:117.036000px;}
.y6a{bottom:118.476000px;}
.y5c{bottom:119.196000px;}
.y53{bottom:122.076000px;}
.y2a{bottom:142.956000px;}
.y5b{bottom:145.116000px;}
.y69{bottom:146.916000px;}
.y52{bottom:147.636000px;}
.y29{bottom:169.590000px;}
.y5a{bottom:171.030000px;}
.y51{bottom:173.550000px;}
.y68{bottom:175.350000px;}
.y87{bottom:185.070000px;}
.y59{bottom:196.995000px;}
.y28{bottom:197.355000px;}
.y50{bottom:199.515000px;}
.y67{bottom:203.115000px;}
.y86{bottom:210.675000px;}
.y58{bottom:222.915000px;}
.y27{bottom:223.275000px;}
.y4f{bottom:225.435000px;}
.y66{bottom:229.035000px;}
.y85{bottom:236.595000px;}
.y26{bottom:248.835000px;}
.y4e{bottom:251.355000px;}
.y65{bottom:254.955000px;}
.y84{bottom:262.515000px;}
.y25{bottom:274.755000px;}
.y4d{bottom:277.275000px;}
.y64{bottom:280.875000px;}
.y83{bottom:288.435000px;}
.y57{bottom:300.315000px;}
.y24{bottom:300.675000px;}
.y4c{bottom:303.195000px;}
.y63{bottom:306.795000px;}
.y82{bottom:314.355000px;}
.y9b{bottom:326.265000px;}
.y23{bottom:326.625000px;}
.y56{bottom:327.345000px;}
.y4b{bottom:329.145000px;}
.y62{bottom:332.385000px;}
.y81{bottom:340.305000px;}
.y9a{bottom:352.185000px;}
.y22{bottom:352.545000px;}
.y4a{bottom:354.705000px;}
.y61{bottom:358.305000px;}
.y80{bottom:366.225000px;}
.y99{bottom:378.105000px;}
.y21{bottom:378.465000px;}
.y49{bottom:380.625000px;}
.y60{bottom:384.225000px;}
.y7f{bottom:392.145000px;}
.y98{bottom:404.025000px;}
.y20{bottom:404.385000px;}
.y48{bottom:406.545000px;}
.y5f{bottom:410.145000px;}
.y7e{bottom:417.705000px;}
.y97{bottom:429.945000px;}
.y1f{bottom:430.305000px;}
.y47{bottom:432.465000px;}
.y5e{bottom:436.065000px;}
.y7d{bottom:443.625000px;}
.y1e{bottom:455.910000px;}
.y46{bottom:458.430000px;}
.y5d{bottom:462.030000px;}
.y7c{bottom:469.590000px;}
.y1d{bottom:481.830000px;}
.y45{bottom:484.350000px;}
.y7b{bottom:495.510000px;}
.y96{bottom:507.390000px;}
.y1c{bottom:507.750000px;}
.y44{bottom:510.270000px;}
.y7a{bottom:521.430000px;}
.y95{bottom:533.310000px;}
.y1b{bottom:533.670000px;}
.y43{bottom:535.830000px;}
.y79{bottom:547.350000px;}
.y94{bottom:559.230000px;}
.y1a{bottom:559.590000px;}
.y42{bottom:561.750000px;}
.y78{bottom:573.300000px;}
.y93{bottom:585.180000px;}
.y19{bottom:585.540000px;}
.y41{bottom:587.700000px;}
.y77{bottom:599.220000px;}
.y92{bottom:611.100000px;}
.y18{bottom:611.460000px;}
.y9c{bottom:611.820000px;}
.y40{bottom:613.620000px;}
.y76{bottom:624.780000px;}
.y17{bottom:637.020000px;}
.y3f{bottom:639.540000px;}
.y75{bottom:650.700000px;}
.y16{bottom:662.940000px;}
.y3e{bottom:665.460000px;}
.y74{bottom:676.620000px;}
.y91{bottom:688.500000px;}
.y15{bottom:688.860000px;}
.y3d{bottom:691.380000px;}
.y73{bottom:698.970000px;}
.y90{bottom:714.450000px;}
.y14{bottom:714.810000px;}
.y3c{bottom:717.330000px;}
.y8f{bottom:740.370000px;}
.y13{bottom:741.450000px;}
.y3b{bottom:742.890000px;}
.y8e{bottom:766.290000px;}
.y3a{bottom:768.810000px;}
.y12{bottom:769.170000px;}
.y8d{bottom:792.210000px;}
.y39{bottom:794.730000px;}
.y11{bottom:798.690000px;}
.y8c{bottom:818.130000px;}
.y38{bottom:820.650000px;}
.y10{bottom:824.610000px;}
.y55{bottom:826.095000px;}
.y8b{bottom:844.095000px;}
.y37{bottom:846.615000px;}
.yf{bottom:850.575000px;}
.y8a{bottom:870.015000px;}
.y36{bottom:872.535000px;}
.ye{bottom:876.495000px;}
.y89{bottom:895.575000px;}
.y35{bottom:898.455000px;}
.yd{bottom:902.415000px;}
.y54{bottom:903.855000px;}
.y88{bottom:922.575000px;}
.y34{bottom:924.375000px;}
.yc{bottom:928.335000px;}
.y72{bottom:947.415000px;}
.y33{bottom:949.935000px;}
.yb{bottom:954.285000px;}
.y71{bottom:973.365000px;}
.y32{bottom:975.885000px;}
.ya{bottom:979.845000px;}
.y70{bottom:999.285000px;}
.y31{bottom:1001.805000px;}
.y9{bottom:1015.125000px;}
.y6f{bottom:1025.205000px;}
.y30{bottom:1027.725000px;}
.y8{bottom:1041.045000px;}
.y6e{bottom:1051.125000px;}
.y2f{bottom:1053.645000px;}
.y7{bottom:1062.285000px;}
.y6d{bottom:1077.045000px;}
.y2e{bottom:1079.610000px;}
.y6{bottom:1093.290000px;}
.y6c{bottom:1102.650000px;}
.y2d{bottom:1105.530000px;}
.y5{bottom:1126.770000px;}
.y6b{bottom:1129.290000px;}
.y2c{bottom:1131.090000px;}
.y3{bottom:1149.090000px;}
.y2{bottom:1170.690000px;}
.y1{bottom:1193.370000px;}
.he{height:34.855313px;}
.h6{height:38.158594px;}
.h3{height:53.302500px;}
.h8{height:54.219375px;}
.hd{height:56.455313px;}
.hf{height:56.575312px;}
.h7{height:59.357813px;}
.hc{height:59.758594px;}
.ha{height:60.952500px;}
.h10{height:62.163910px;}
.h9{height:65.010937px;}
.hb{height:66.757500px;}
.h5{height:72.326250px;}
.h2{height:72.562500px;}
.h4{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x5{left:135.035987px;}
.x2{left:160.274987px;}
.x6{left:162.074987px;}
.x3{left:219.314987px;}
.x4{left:785.444987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:26.880000pt;}
.ls6{letter-spacing:-2.560000pt;}
.ls9{letter-spacing:-1.712000pt;}
.ls7{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.264000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.ls0{letter-spacing:0.023040pt;}
.ls8{letter-spacing:0.102400pt;}
.lsc{letter-spacing:0.124587pt;}
.lsb{letter-spacing:0.145920pt;}
.lsf{letter-spacing:0.177920pt;}
.lse{letter-spacing:0.376320pt;}
.lsa{letter-spacing:0.622080pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls12{letter-spacing:1.297920pt;}
.ls11{letter-spacing:1.308587pt;}
.ls4{letter-spacing:9.600000pt;}
.ls14{letter-spacing:14.494720pt;}
.ls13{letter-spacing:41.385387pt;}
.ws3{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.816320pt;}
.ws8{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws1{word-spacing:-10.880000pt;}
.ws6{word-spacing:-9.262080pt;}
.ws5{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-7.806293pt;}
._5{margin-left:-6.358187pt;}
._4{margin-left:-4.773973pt;}
._19{margin-left:-3.739307pt;}
._7{margin-left:-2.715733pt;}
._0{margin-left:-1.792000pt;}
._6{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.792000pt;}
._3{width:2.794667pt;}
._17{width:3.712000pt;}
._f{width:4.741547pt;}
._10{width:6.126933pt;}
._d{width:7.266133pt;}
._e{width:8.537600pt;}
._9{width:9.776640pt;}
._11{width:10.736213pt;}
._8{width:12.049920pt;}
._15{width:14.400427pt;}
._14{width:15.500800pt;}
._16{width:16.740267pt;}
._13{width:17.776640pt;}
._12{width:19.317760pt;}
._18{width:20.213760pt;}
._c{width:21.143893pt;}
._a{width:22.033493pt;}
._b{width:23.063040pt;}
._1b{width:26.772480pt;}
._1c{width:29.529173pt;}
._1a{width:30.507520pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.880000pt;}
.y2b{bottom:104.032000pt;}
.y6a{bottom:105.312000pt;}
.y5c{bottom:105.952000pt;}
.y53{bottom:108.512000pt;}
.y2a{bottom:127.072000pt;}
.y5b{bottom:128.992000pt;}
.y69{bottom:130.592000pt;}
.y52{bottom:131.232000pt;}
.y29{bottom:150.746667pt;}
.y5a{bottom:152.026667pt;}
.y51{bottom:154.266667pt;}
.y68{bottom:155.866667pt;}
.y87{bottom:164.506667pt;}
.y59{bottom:175.106667pt;}
.y28{bottom:175.426667pt;}
.y50{bottom:177.346667pt;}
.y67{bottom:180.546667pt;}
.y86{bottom:187.266667pt;}
.y58{bottom:198.146667pt;}
.y27{bottom:198.466667pt;}
.y4f{bottom:200.386667pt;}
.y66{bottom:203.586667pt;}
.y85{bottom:210.306667pt;}
.y26{bottom:221.186667pt;}
.y4e{bottom:223.426667pt;}
.y65{bottom:226.626667pt;}
.y84{bottom:233.346667pt;}
.y25{bottom:244.226667pt;}
.y4d{bottom:246.466667pt;}
.y64{bottom:249.666667pt;}
.y83{bottom:256.386667pt;}
.y57{bottom:266.946667pt;}
.y24{bottom:267.266667pt;}
.y4c{bottom:269.506667pt;}
.y63{bottom:272.706667pt;}
.y82{bottom:279.426667pt;}
.y9b{bottom:290.013333pt;}
.y23{bottom:290.333333pt;}
.y56{bottom:290.973333pt;}
.y4b{bottom:292.573333pt;}
.y62{bottom:295.453333pt;}
.y81{bottom:302.493333pt;}
.y9a{bottom:313.053333pt;}
.y22{bottom:313.373333pt;}
.y4a{bottom:315.293333pt;}
.y61{bottom:318.493333pt;}
.y80{bottom:325.533333pt;}
.y99{bottom:336.093333pt;}
.y21{bottom:336.413333pt;}
.y49{bottom:338.333333pt;}
.y60{bottom:341.533333pt;}
.y7f{bottom:348.573333pt;}
.y98{bottom:359.133333pt;}
.y20{bottom:359.453333pt;}
.y48{bottom:361.373333pt;}
.y5f{bottom:364.573333pt;}
.y7e{bottom:371.293333pt;}
.y97{bottom:382.173333pt;}
.y1f{bottom:382.493333pt;}
.y47{bottom:384.413333pt;}
.y5e{bottom:387.613333pt;}
.y7d{bottom:394.333333pt;}
.y1e{bottom:405.253333pt;}
.y46{bottom:407.493333pt;}
.y5d{bottom:410.693333pt;}
.y7c{bottom:417.413333pt;}
.y1d{bottom:428.293333pt;}
.y45{bottom:430.533333pt;}
.y7b{bottom:440.453333pt;}
.y96{bottom:451.013333pt;}
.y1c{bottom:451.333333pt;}
.y44{bottom:453.573333pt;}
.y7a{bottom:463.493333pt;}
.y95{bottom:474.053333pt;}
.y1b{bottom:474.373333pt;}
.y43{bottom:476.293333pt;}
.y79{bottom:486.533333pt;}
.y94{bottom:497.093333pt;}
.y1a{bottom:497.413333pt;}
.y42{bottom:499.333333pt;}
.y78{bottom:509.600000pt;}
.y93{bottom:520.160000pt;}
.y19{bottom:520.480000pt;}
.y41{bottom:522.400000pt;}
.y77{bottom:532.640000pt;}
.y92{bottom:543.200000pt;}
.y18{bottom:543.520000pt;}
.y9c{bottom:543.840000pt;}
.y40{bottom:545.440000pt;}
.y76{bottom:555.360000pt;}
.y17{bottom:566.240000pt;}
.y3f{bottom:568.480000pt;}
.y75{bottom:578.400000pt;}
.y16{bottom:589.280000pt;}
.y3e{bottom:591.520000pt;}
.y74{bottom:601.440000pt;}
.y91{bottom:612.000000pt;}
.y15{bottom:612.320000pt;}
.y3d{bottom:614.560000pt;}
.y73{bottom:621.306667pt;}
.y90{bottom:635.066667pt;}
.y14{bottom:635.386667pt;}
.y3c{bottom:637.626667pt;}
.y8f{bottom:658.106667pt;}
.y13{bottom:659.066667pt;}
.y3b{bottom:660.346667pt;}
.y8e{bottom:681.146667pt;}
.y3a{bottom:683.386667pt;}
.y12{bottom:683.706667pt;}
.y8d{bottom:704.186667pt;}
.y39{bottom:706.426667pt;}
.y11{bottom:709.946667pt;}
.y8c{bottom:727.226667pt;}
.y38{bottom:729.466667pt;}
.y10{bottom:732.986667pt;}
.y55{bottom:734.306667pt;}
.y8b{bottom:750.306667pt;}
.y37{bottom:752.546667pt;}
.yf{bottom:756.066667pt;}
.y8a{bottom:773.346667pt;}
.y36{bottom:775.586667pt;}
.ye{bottom:779.106667pt;}
.y89{bottom:796.066667pt;}
.y35{bottom:798.626667pt;}
.yd{bottom:802.146667pt;}
.y54{bottom:803.426667pt;}
.y88{bottom:820.066667pt;}
.y34{bottom:821.666667pt;}
.yc{bottom:825.186667pt;}
.y72{bottom:842.146667pt;}
.y33{bottom:844.386667pt;}
.yb{bottom:848.253333pt;}
.y71{bottom:865.213333pt;}
.y32{bottom:867.453333pt;}
.ya{bottom:870.973333pt;}
.y70{bottom:888.253333pt;}
.y31{bottom:890.493333pt;}
.y9{bottom:902.333333pt;}
.y6f{bottom:911.293333pt;}
.y30{bottom:913.533333pt;}
.y8{bottom:925.373333pt;}
.y6e{bottom:934.333333pt;}
.y2f{bottom:936.573333pt;}
.y7{bottom:944.253333pt;}
.y6d{bottom:957.373333pt;}
.y2e{bottom:959.653333pt;}
.y6{bottom:971.813333pt;}
.y6c{bottom:980.133333pt;}
.y2d{bottom:982.693333pt;}
.y5{bottom:1001.573333pt;}
.y6b{bottom:1003.813333pt;}
.y2c{bottom:1005.413333pt;}
.y3{bottom:1021.413333pt;}
.y2{bottom:1040.613333pt;}
.y1{bottom:1060.773333pt;}
.he{height:30.982500pt;}
.h6{height:33.918750pt;}
.h3{height:47.380000pt;}
.h8{height:48.195000pt;}
.hd{height:50.182500pt;}
.hf{height:50.289167pt;}
.h7{height:52.762500pt;}
.hc{height:53.118750pt;}
.ha{height:54.180000pt;}
.h10{height:55.256809pt;}
.h9{height:57.787500pt;}
.hb{height:59.340000pt;}
.h5{height:64.290000pt;}
.h2{height:64.500000pt;}
.h4{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x5{left:120.031988pt;}
.x2{left:142.466655pt;}
.x6{left:144.066655pt;}
.x3{left:194.946655pt;}
.x4{left:698.173322pt;}
}




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