
    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_1f138cbb6adaaffb06444809.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_a57999e4e5a907455853d0b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.138667;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_4cbf6930c7a5709c1d569fb9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_de4e2fa296bb97c1aeb7f1c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061778;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_8c0cfc869fd64d6f6dc0fc85.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138667;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_619da449d3e8cdeafe4d203e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_ea69b300324af5761f4d64a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.138667;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_cb04da20a45c2e367eeb41db.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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_771d5783dc31b27937dff7be.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.138667;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:ffa;src:url('chunks/assets/font_f19a4dc6d4ecd7cde3f537e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024000;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:ffb;src:url('chunks/assets/font_c4c5ae2fb38e6cb2a3302306.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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);}
.v3{vertical-align:-72.000000px;}
.v4{vertical-align:-44.640000px;}
.v1{vertical-align:-15.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:72.000000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.215400px;}
.ls9{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.000006px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000006px;}
.ls6{letter-spacing:0.007920px;}
.ls11{letter-spacing:0.074400px;}
.ls10{letter-spacing:0.104400px;}
.lsb{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.310200px;}
.ls3{letter-spacing:0.397440px;}
.ls2{letter-spacing:0.577440px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:40.690080px;}
.ls5{letter-spacing:40.717440px;}
.ls7{letter-spacing:42.252048px;}
.ls1{letter-spacing:1727.784000px;}
.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;}
}
.ws10{word-spacing:-180.000000px;}
.ws13{word-spacing:-77.470416px;}
.ws0{word-spacing:-77.436000px;}
.ws1e{word-spacing:-42.694128px;}
.ws12{word-spacing:-42.660000px;}
.ws1{word-spacing:-42.480000px;}
.wsf{word-spacing:-42.300000px;}
.ws1c{word-spacing:-40.119840px;}
.ws1b{word-spacing:-38.201760px;}
.ws1d{word-spacing:-28.281480px;}
.ws14{word-spacing:-0.167760px;}
.ws21{word-spacing:-0.099360px;}
.ws1a{word-spacing:0.000000px;}
.ws1f{word-spacing:0.100080px;}
.ws20{word-spacing:0.115920px;}
.ws11{word-spacing:0.540023px;}
.wse{word-spacing:1.080000px;}
.ws5{word-spacing:5.580000px;}
.ws4{word-spacing:7.200000px;}
.ws18{word-spacing:12.060000px;}
.wsc{word-spacing:12.780000px;}
.ws19{word-spacing:12.960000px;}
.wsb{word-spacing:13.500000px;}
.wsd{word-spacing:14.220000px;}
.ws9{word-spacing:14.400000px;}
.wsa{word-spacing:14.940023px;}
.ws3{word-spacing:25.200000px;}
.ws2{word-spacing:25.740017px;}
.ws6{word-spacing:42.840000px;}
.ws8{word-spacing:43.200000px;}
.ws7{word-spacing:43.380000px;}
.ws15{word-spacing:45.300000px;}
.ws17{word-spacing:195.960000px;}
.ws16{word-spacing:196.920000px;}
._10{margin-left:-22.356000px;}
._4{margin-left:-13.860000px;}
._18{margin-left:-10.692000px;}
._1{margin-left:-9.504000px;}
._8{margin-left:-7.920000px;}
._12{margin-left:-6.713280px;}
._0{margin-left:-5.544000px;}
._5{margin-left:-3.960000px;}
._3{margin-left:-2.772000px;}
._6{margin-left:-1.188000px;}
._9{width:1.296000px;}
._16{width:2.645280px;}
._7{width:8.316000px;}
._a{width:25.020000px;}
._f{width:43.740000px;}
._c{width:51.228000px;}
._14{width:53.699040px;}
._e{width:58.248000px;}
._13{width:62.640480px;}
._15{width:63.685440px;}
._b{width:67.644000px;}
._2{width:77.808000px;}
._d{width:86.760000px;}
._17{width:156.060000px;}
._11{width:306.000000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fsb{font-size:144.000000px;}
.fs7{font-size:159.840000px;}
.fs4{font-size:167.760000px;}
.fs2{font-size:180.000000px;}
.fs8{font-size:180.144000px;}
.fs6{font-size:239.760000px;}
.fsa{font-size:264.240000px;}
.fs1{font-size:324.000000px;}
.fs3{font-size:324.144000px;}
.fs0{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:83.448000px;}
.ye{bottom:133.848000px;}
.yd{bottom:184.245000px;}
.yc{bottom:234.645000px;}
.y51{bottom:336.345000px;}
.y36{bottom:374.070000px;}
.y50{bottom:390.345000px;}
.y35{bottom:428.070000px;}
.y4f{bottom:444.345000px;}
.y34{bottom:482.070000px;}
.y4e{bottom:498.345000px;}
.y33{bottom:536.070000px;}
.y4d{bottom:552.345000px;}
.y32{bottom:590.070000px;}
.y4c{bottom:606.345000px;}
.y31{bottom:644.070000px;}
.y4b{bottom:660.345000px;}
.y30{bottom:698.070000px;}
.y49{bottom:748.875000px;}
.y2f{bottom:752.070000px;}
.y2e{bottom:806.070000px;}
.y2d{bottom:860.070000px;}
.y2c{bottom:914.070000px;}
.y2b{bottom:968.070000px;}
.y2a{bottom:1022.070000px;}
.y29{bottom:1076.070000px;}
.y28{bottom:1130.070000px;}
.y27{bottom:1184.070000px;}
.y26{bottom:1238.070000px;}
.y25{bottom:1292.070000px;}
.y24{bottom:1346.115000px;}
.y4a{bottom:1359.210000px;}
.y48{bottom:1369.830000px;}
.y23{bottom:1400.115000px;}
.y22{bottom:1454.115000px;}
.y21{bottom:1508.115000px;}
.y38{bottom:1538.250000px;}
.yb{bottom:1679.760000px;}
.y45{bottom:3075.330000px;}
.y44{bottom:3107.730000px;}
.y1e{bottom:3234.630000px;}
.y1d{bottom:3288.630000px;}
.y14{bottom:3313.545000px;}
.y1c{bottom:3342.630000px;}
.y1b{bottom:3396.630000px;}
.y10{bottom:3404.730000px;}
.y1a{bottom:3450.630000px;}
.y19{bottom:3558.630000px;}
.y18{bottom:3612.630000px;}
.y11{bottom:3622.320000px;}
.y13{bottom:3633.555000px;}
.y17{bottom:3666.630000px;}
.y12{bottom:3713.790000px;}
.y16{bottom:3720.630000px;}
.y15{bottom:3774.630000px;}
.y43{bottom:3848.655000px;}
.y37{bottom:3870.720000px;}
.ya{bottom:4003.950000px;}
.y46{bottom:4169.730000px;}
.y47{bottom:4178.880000px;}
.y42{bottom:4216.785000px;}
.y41{bottom:4270.830000px;}
.y9{bottom:4292.745000px;}
.y40{bottom:4324.830000px;}
.y8{bottom:4355.565000px;}
.y3f{bottom:4378.830000px;}
.y7{bottom:4409.565000px;}
.y3e{bottom:4432.830000px;}
.y6{bottom:4463.565000px;}
.y3d{bottom:4486.830000px;}
.y5{bottom:4517.565000px;}
.y3c{bottom:4540.830000px;}
.y4{bottom:4571.565000px;}
.y3b{bottom:4594.830000px;}
.y3a{bottom:4648.830000px;}
.y3{bottom:4682.130000px;}
.y39{bottom:4714.890000px;}
.y20{bottom:4917.675000px;}
.y1f{bottom:4971.675000px;}
.y2{bottom:5063.190000px;}
.y1{bottom:5181.990000px;}
.hf{height:90.768000px;}
.h8{height:110.583984px;}
.ha{height:117.616641px;}
.h7{height:140.992960px;}
.h6{height:141.291200px;}
.h10{height:150.187500px;}
.h4{height:151.280000px;}
.hb{height:151.401024px;}
.hd{height:152.720000px;}
.he{height:152.842176px;}
.h9{height:191.177578px;}
.h3{height:241.576172px;}
.h5{height:241.683539px;}
.hc{height:270.562148px;}
.h2{height:295.259766px;}
.h1{height:5314.500000px;}
.h0{height:5314.860000px;}
.w1{width:3826.500000px;}
.w2{width:3826.619943px;}
.w0{width:3826.620000px;}
.x0{left:0.000000px;}
.x12{left:130.931943px;}
.x6{left:182.129943px;}
.x3{left:216.974943px;}
.x9{left:230.549943px;}
.x8{left:233.789943px;}
.x5{left:262.334943px;}
.x1{left:285.329943px;}
.xa{left:450.074943px;}
.xf{left:597.674943px;}
.xe{left:645.014943px;}
.x7{left:970.949943px;}
.x4{left:1000.724943px;}
.xc{left:1093.244943px;}
.x2{left:1245.344943px;}
.x10{left:1273.109943px;}
.xb{left:1312.634943px;}
.x11{left:1595.489943px;}
.xd{left:1603.619943px;}
.x1e{left:1948.214943px;}
.x1b{left:2126.849943px;}
.x13{left:2226.209943px;}
.x14{left:2243.054943px;}
.x15{left:2297.054943px;}
.x17{left:2407.889943px;}
.x16{left:2434.469943px;}
.x1c{left:2575.949943px;}
.x18{left:2635.769943px;}
.x1d{left:2970.254943px;}
.x1a{left:3004.739943px;}
.x19{left:3376.004943px;}
@media print{
.v3{vertical-align:-64.000000pt;}
.v4{vertical-align:-39.680000pt;}
.v1{vertical-align:-13.653333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:64.000000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.191467pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.000005pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000005pt;}
.ls6{letter-spacing:0.007040pt;}
.ls11{letter-spacing:0.066133pt;}
.ls10{letter-spacing:0.092800pt;}
.lsb{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.275733pt;}
.ls3{letter-spacing:0.353280pt;}
.ls2{letter-spacing:0.513280pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:36.168960pt;}
.ls5{letter-spacing:36.193280pt;}
.ls7{letter-spacing:37.557376pt;}
.ls1{letter-spacing:1535.808000pt;}
.ws10{word-spacing:-160.000000pt;}
.ws13{word-spacing:-68.862592pt;}
.ws0{word-spacing:-68.832000pt;}
.ws1e{word-spacing:-37.950336pt;}
.ws12{word-spacing:-37.920000pt;}
.ws1{word-spacing:-37.760000pt;}
.wsf{word-spacing:-37.600000pt;}
.ws1c{word-spacing:-35.662080pt;}
.ws1b{word-spacing:-33.957120pt;}
.ws1d{word-spacing:-25.139093pt;}
.ws14{word-spacing:-0.149120pt;}
.ws21{word-spacing:-0.088320pt;}
.ws1a{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.088960pt;}
.ws20{word-spacing:0.103040pt;}
.ws11{word-spacing:0.480020pt;}
.wse{word-spacing:0.960000pt;}
.ws5{word-spacing:4.960000pt;}
.ws4{word-spacing:6.400000pt;}
.ws18{word-spacing:10.720000pt;}
.wsc{word-spacing:11.360000pt;}
.ws19{word-spacing:11.520000pt;}
.wsb{word-spacing:12.000000pt;}
.wsd{word-spacing:12.640000pt;}
.ws9{word-spacing:12.800000pt;}
.wsa{word-spacing:13.280020pt;}
.ws3{word-spacing:22.400000pt;}
.ws2{word-spacing:22.880015pt;}
.ws6{word-spacing:38.080000pt;}
.ws8{word-spacing:38.400000pt;}
.ws7{word-spacing:38.560000pt;}
.ws15{word-spacing:40.266667pt;}
.ws17{word-spacing:174.186667pt;}
.ws16{word-spacing:175.040000pt;}
._10{margin-left:-19.872000pt;}
._4{margin-left:-12.320000pt;}
._18{margin-left:-9.504000pt;}
._1{margin-left:-8.448000pt;}
._8{margin-left:-7.040000pt;}
._12{margin-left:-5.967360pt;}
._0{margin-left:-4.928000pt;}
._5{margin-left:-3.520000pt;}
._3{margin-left:-2.464000pt;}
._6{margin-left:-1.056000pt;}
._9{width:1.152000pt;}
._16{width:2.351360pt;}
._7{width:7.392000pt;}
._a{width:22.240000pt;}
._f{width:38.880000pt;}
._c{width:45.536000pt;}
._14{width:47.732480pt;}
._e{width:51.776000pt;}
._13{width:55.680427pt;}
._15{width:56.609280pt;}
._b{width:60.128000pt;}
._2{width:69.162667pt;}
._d{width:77.120000pt;}
._17{width:138.720000pt;}
._11{width:272.000000pt;}
.fs5{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fsb{font-size:128.000000pt;}
.fs7{font-size:142.080000pt;}
.fs4{font-size:149.120000pt;}
.fs2{font-size:160.000000pt;}
.fs8{font-size:160.128000pt;}
.fs6{font-size:213.120000pt;}
.fsa{font-size:234.880000pt;}
.fs1{font-size:288.000000pt;}
.fs3{font-size:288.128000pt;}
.fs0{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:74.176000pt;}
.ye{bottom:118.976000pt;}
.yd{bottom:163.773333pt;}
.yc{bottom:208.573333pt;}
.y51{bottom:298.973333pt;}
.y36{bottom:332.506667pt;}
.y50{bottom:346.973333pt;}
.y35{bottom:380.506667pt;}
.y4f{bottom:394.973333pt;}
.y34{bottom:428.506667pt;}
.y4e{bottom:442.973333pt;}
.y33{bottom:476.506667pt;}
.y4d{bottom:490.973333pt;}
.y32{bottom:524.506667pt;}
.y4c{bottom:538.973333pt;}
.y31{bottom:572.506667pt;}
.y4b{bottom:586.973333pt;}
.y30{bottom:620.506667pt;}
.y49{bottom:665.666667pt;}
.y2f{bottom:668.506667pt;}
.y2e{bottom:716.506667pt;}
.y2d{bottom:764.506667pt;}
.y2c{bottom:812.506667pt;}
.y2b{bottom:860.506667pt;}
.y2a{bottom:908.506667pt;}
.y29{bottom:956.506667pt;}
.y28{bottom:1004.506667pt;}
.y27{bottom:1052.506667pt;}
.y26{bottom:1100.506667pt;}
.y25{bottom:1148.506667pt;}
.y24{bottom:1196.546667pt;}
.y4a{bottom:1208.186667pt;}
.y48{bottom:1217.626667pt;}
.y23{bottom:1244.546667pt;}
.y22{bottom:1292.546667pt;}
.y21{bottom:1340.546667pt;}
.y38{bottom:1367.333333pt;}
.yb{bottom:1493.120000pt;}
.y45{bottom:2733.626667pt;}
.y44{bottom:2762.426667pt;}
.y1e{bottom:2875.226667pt;}
.y1d{bottom:2923.226667pt;}
.y14{bottom:2945.373333pt;}
.y1c{bottom:2971.226667pt;}
.y1b{bottom:3019.226667pt;}
.y10{bottom:3026.426667pt;}
.y1a{bottom:3067.226667pt;}
.y19{bottom:3163.226667pt;}
.y18{bottom:3211.226667pt;}
.y11{bottom:3219.840000pt;}
.y13{bottom:3229.826667pt;}
.y17{bottom:3259.226667pt;}
.y12{bottom:3301.146667pt;}
.y16{bottom:3307.226667pt;}
.y15{bottom:3355.226667pt;}
.y43{bottom:3421.026667pt;}
.y37{bottom:3440.640000pt;}
.ya{bottom:3559.066667pt;}
.y46{bottom:3706.426667pt;}
.y47{bottom:3714.560000pt;}
.y42{bottom:3748.253333pt;}
.y41{bottom:3796.293333pt;}
.y9{bottom:3815.773333pt;}
.y40{bottom:3844.293333pt;}
.y8{bottom:3871.613333pt;}
.y3f{bottom:3892.293333pt;}
.y7{bottom:3919.613333pt;}
.y3e{bottom:3940.293333pt;}
.y6{bottom:3967.613333pt;}
.y3d{bottom:3988.293333pt;}
.y5{bottom:4015.613333pt;}
.y3c{bottom:4036.293333pt;}
.y4{bottom:4063.613333pt;}
.y3b{bottom:4084.293333pt;}
.y3a{bottom:4132.293333pt;}
.y3{bottom:4161.893333pt;}
.y39{bottom:4191.013333pt;}
.y20{bottom:4371.266667pt;}
.y1f{bottom:4419.266667pt;}
.y2{bottom:4500.613333pt;}
.y1{bottom:4606.213333pt;}
.hf{height:80.682667pt;}
.h8{height:98.296875pt;}
.ha{height:104.548125pt;}
.h7{height:125.327076pt;}
.h6{height:125.592178pt;}
.h10{height:133.500000pt;}
.h4{height:134.471111pt;}
.hb{height:134.578688pt;}
.hd{height:135.751111pt;}
.he{height:135.859712pt;}
.h9{height:169.935625pt;}
.h3{height:214.734375pt;}
.h5{height:214.829813pt;}
.hc{height:240.499687pt;}
.h2{height:262.453125pt;}
.h1{height:4724.000000pt;}
.h0{height:4724.320000pt;}
.w1{width:3401.333333pt;}
.w2{width:3401.439949pt;}
.w0{width:3401.440000pt;}
.x0{left:0.000000pt;}
.x12{left:116.383949pt;}
.x6{left:161.893283pt;}
.x3{left:192.866616pt;}
.x9{left:204.933283pt;}
.x8{left:207.813283pt;}
.x5{left:233.186616pt;}
.x1{left:253.626616pt;}
.xa{left:400.066616pt;}
.xf{left:531.266616pt;}
.xe{left:573.346616pt;}
.x7{left:863.066616pt;}
.x4{left:889.533283pt;}
.xc{left:971.773283pt;}
.x2{left:1106.973283pt;}
.x10{left:1131.653283pt;}
.xb{left:1166.786616pt;}
.x11{left:1418.213283pt;}
.xd{left:1425.439949pt;}
.x1e{left:1731.746616pt;}
.x1b{left:1890.533283pt;}
.x13{left:1978.853283pt;}
.x14{left:1993.826616pt;}
.x15{left:2041.826616pt;}
.x17{left:2140.346616pt;}
.x16{left:2163.973283pt;}
.x1c{left:2289.733283pt;}
.x18{left:2342.906616pt;}
.x1d{left:2640.226616pt;}
.x1a{left:2670.879949pt;}
.x19{left:3000.893283pt;}
}




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