
    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_f23ddc5654ef1537a0064e42.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d23076666cb71c9c3e007a37.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_be2e9d65f15dc24cc3415bc4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_7172d3c7c0cdf327a09dabf4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_9e67398f69b95789b9a5b205.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_f531aa202305ec873d5ccc5a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_3e0aa532b81f6d8e7b7d8b00.woff')format("woff");}.ff7{font-family:ff7;line-height:0.754395;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_4cb10e05907c9d0707cf84d8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_639ad1f961685b6d74f35921.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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;}
.m2{transform:matrix(0.000000,-0.250493,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250493,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250493,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,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);}
.v4{vertical-align:-37.186521px;}
.v2{vertical-align:-24.000000px;}
.v5{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.957173px;}
.v1{vertical-align:24.000000px;}
.ls9{letter-spacing:-0.629501px;}
.lsf{letter-spacing:-0.516000px;}
.lsa{letter-spacing:-0.492000px;}
.ls1{letter-spacing:-0.312000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.251093px;}
.lsd{letter-spacing:0.348000px;}
.lse{letter-spacing:0.468000px;}
.lsb{letter-spacing:0.492000px;}
.ls8{letter-spacing:0.516000px;}
.ls4{letter-spacing:0.578221px;}
.ls6{letter-spacing:2.992825px;}
.ls2{letter-spacing:3.010508px;}
.ls5{letter-spacing:565.107716px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.516000px;}
.ws9{word-spacing:-18.468000px;}
.wsc{word-spacing:-18.024000px;}
.wsa{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.508000px;}
.wsb{word-spacing:-17.484000px;}
.ws0{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.688000px;}
.ws4{word-spacing:-9.598030px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:52.072358px;}
.ws5{word-spacing:52.090040px;}
.ws6{word-spacing:1068.488239px;}
._a{margin-left:-3.600000px;}
._2{margin-left:-2.352000px;}
._0{margin-left:-1.008000px;}
._1{width:1.872000px;}
._4{width:3.000000px;}
._3{width:4.278000px;}
._b{width:5.832000px;}
._c{width:6.840000px;}
._11{width:8.352000px;}
._12{width:9.366000px;}
._d{width:10.368000px;}
._f{width:11.424000px;}
._e{width:12.936000px;}
._7{width:14.286000px;}
._9{width:15.816000px;}
._8{width:16.968000px;}
._5{width:20.874000px;}
._6{width:62.446655px;}
._10{width:846.450000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:25.197714px;}
.fs4{font-size:33.199093px;}
.fs2{font-size:34.525289px;}
.fs3{font-size:42.398901px;}
.fs5{font-size:42.482462px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:57.070612px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:4.288716px;}
.y38{bottom:20.877440px;}
.y39{bottom:30.171861px;}
.y3a{bottom:71.636688px;}
.y4{bottom:71.662500px;}
.y43{bottom:79.607123px;}
.y3{bottom:107.287500px;}
.y3b{bottom:113.115662px;}
.y5f{bottom:137.662500px;}
.y42{bottom:152.269359px;}
.y3c{bottom:154.258666px;}
.y5e{bottom:158.280000px;}
.y1e{bottom:162.795000px;}
.y41{bottom:167.852156px;}
.y5d{bottom:178.920000px;}
.y40{bottom:183.448215px;}
.y3d{bottom:195.724378px;}
.y1d{bottom:198.450000px;}
.y4b{bottom:198.825000px;}
.y3f{bottom:199.039853px;}
.y5c{bottom:199.575000px;}
.y5b{bottom:220.200000px;}
.y1c{bottom:234.450000px;}
.y3e{bottom:237.203351px;}
.y37{bottom:251.137227px;}
.y29{bottom:251.137247px;}
.y5a{bottom:252.075000px;}
.y2c{bottom:267.727941px;}
.y21{bottom:267.727960px;}
.y1b{bottom:270.075000px;}
.y2d{bottom:277.011309px;}
.y22{bottom:277.011329px;}
.y6e{bottom:295.575000px;}
.y1a{bottom:305.745000px;}
.y6d{bottom:316.245000px;}
.y2e{bottom:318.485862px;}
.y23{bottom:318.485882px;}
.y7b{bottom:331.995000px;}
.y36{bottom:334.081922px;}
.y28{bottom:334.081941px;}
.y6c{bottom:337.245000px;}
.y19{bottom:341.370000px;}
.y7a{bottom:352.620000px;}
.y6b{bottom:357.870000px;}
.y2f{bottom:359.951574px;}
.y24{bottom:359.951594px;}
.y18{bottom:376.995000px;}
.y4a{bottom:377.370000px;}
.y6a{bottom:378.495000px;}
.y79{bottom:388.620000px;}
.y49{bottom:397.995000px;}
.y69{bottom:399.120000px;}
.y30{bottom:401.098999px;}
.y25{bottom:401.099018px;}
.y34{bottom:408.393062px;}
.y17{bottom:412.620000px;}
.y2a{bottom:417.022194px;}
.y68{bottom:419.745000px;}
.y78{bottom:420.480000px;}
.y48{bottom:433.650000px;}
.y67{bottom:440.775000px;}
.y31{bottom:442.573552px;}
.y26{bottom:442.573571px;}
.y16{bottom:448.650000px;}
.y47{bottom:454.275000px;}
.y33{bottom:458.501153px;}
.y2b{bottom:465.463699px;}
.y35{bottom:470.436903px;}
.y46{bottom:474.900000px;}
.y32{bottom:484.039264px;}
.y27{bottom:484.039283px;}
.y15{bottom:484.275000px;}
.y45{bottom:507.150000px;}
.y20{bottom:509.419258px;}
.y14{bottom:519.900000px;}
.y59{bottom:526.650000px;}
.y58{bottom:547.320000px;}
.y13{bottom:555.570000px;}
.y57{bottom:567.945000px;}
.y56{bottom:588.570000px;}
.y12{bottom:591.195000px;}
.y75{bottom:602.445000px;}
.y55{bottom:609.195000px;}
.y11{bottom:627.195000px;}
.y54{bottom:630.195000px;}
.y74{bottom:638.070000px;}
.y53{bottom:650.820000px;}
.y73{bottom:658.725000px;}
.y10{bottom:662.850000px;}
.y52{bottom:671.475000px;}
.y72{bottom:679.725000px;}
.y51{bottom:692.100000px;}
.y71{bottom:700.350000px;}
.yf{bottom:704.475000px;}
.y50{bottom:712.725000px;}
.y77{bottom:714.600000px;}
.y70{bottom:720.975000px;}
.y4f{bottom:733.725000px;}
.ye{bottom:734.100000px;}
.y6f{bottom:752.850000px;}
.y4e{bottom:754.350000px;}
.yd{bottom:760.725000px;}
.y4d{bottom:774.975000px;}
.yc{bottom:790.770000px;}
.y4c{bottom:806.880000px;}
.yb{bottom:817.380000px;}
.ya{bottom:847.005000px;}
.y66{bottom:865.755000px;}
.y9{bottom:873.630000px;}
.y65{bottom:901.800000px;}
.y8{bottom:903.300000px;}
.y64{bottom:922.425000px;}
.y63{bottom:943.050000px;}
.y7{bottom:951.300000px;}
.y62{bottom:963.675000px;}
.y6{bottom:971.925000px;}
.y61{bottom:984.300000px;}
.y60{bottom:1005.300000px;}
.y76{bottom:1010.925000px;}
.y1f{bottom:1025.955000px;}
.y5{bottom:1046.580000px;}
.y2{bottom:1082.205000px;}
.y1{bottom:1117.830000px;}
.h9{height:25.135354px;}
.h7{height:25.236503px;}
.h8{height:30.991775px;}
.h4{height:33.539062px;}
.hd{height:41.548966px;}
.ha{height:42.289965px;}
.hc{height:42.325330px;}
.he{height:42.343012px;}
.hb{height:49.506139px;}
.h1{height:50.273438px;}
.h2{height:50.308594px;}
.h5{height:50.800781px;}
.hf{height:57.515625px;}
.h3{height:57.539062px;}
.h6{height:497.643009px;}
.h0{height:1188.000000px;}
.w2{width:695.214044px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:10.588699px;}
.xa{left:18.872148px;}
.x9{left:27.806360px;}
.x2{left:108.037486px;}
.x7{left:123.037486px;}
.xe{left:130.770389px;}
.x5{left:145.199986px;}
.x8{left:162.074986px;}
.xc{left:165.854271px;}
.x18{left:181.750554px;}
.x16{left:190.022973px;}
.x15{left:198.970421px;}
.xd{left:211.209180px;}
.x6{left:316.274986px;}
.x19{left:337.020538px;}
.x13{left:344.300259px;}
.xf{left:352.572679px;}
.x4{left:361.274986px;}
.x17{left:425.731742px;}
.x10{left:471.748442px;}
.x1c{left:477.944986px;}
.x1d{left:479.444986px;}
.x14{left:499.565831px;}
.x11{left:567.104057px;}
.x12{left:631.646567px;}
.x3{left:791.204986px;}
.x1a{left:806.969986px;}
.x1{left:810.344986px;}
.x1b{left:812.579986px;}
@media print{
.v4{vertical-align:-33.054685pt;}
.v2{vertical-align:-21.333333pt;}
.v5{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.073043pt;}
.v1{vertical-align:21.333333pt;}
.ls9{letter-spacing:-0.559556pt;}
.lsf{letter-spacing:-0.458667pt;}
.lsa{letter-spacing:-0.437333pt;}
.ls1{letter-spacing:-0.277333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.223194pt;}
.lsd{letter-spacing:0.309333pt;}
.lse{letter-spacing:0.416000pt;}
.lsb{letter-spacing:0.437333pt;}
.ls8{letter-spacing:0.458667pt;}
.ls4{letter-spacing:0.513974pt;}
.ls6{letter-spacing:2.660289pt;}
.ls2{letter-spacing:2.676007pt;}
.ls5{letter-spacing:502.317970pt;}
.wsd{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.458667pt;}
.ws9{word-spacing:-16.416000pt;}
.wsc{word-spacing:-16.021333pt;}
.wsa{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.562667pt;}
.wsb{word-spacing:-15.541333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.389333pt;}
.ws4{word-spacing:-8.531582pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:46.286540pt;}
.ws5{word-spacing:46.302258pt;}
.ws6{word-spacing:949.767324pt;}
._a{margin-left:-3.200000pt;}
._2{margin-left:-2.090667pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.664000pt;}
._4{width:2.666667pt;}
._3{width:3.802667pt;}
._b{width:5.184000pt;}
._c{width:6.080000pt;}
._11{width:7.424000pt;}
._12{width:8.325333pt;}
._d{width:9.216000pt;}
._f{width:10.154667pt;}
._e{width:11.498667pt;}
._7{width:12.698667pt;}
._9{width:14.058667pt;}
._8{width:15.082667pt;}
._5{width:18.554667pt;}
._6{width:55.508137pt;}
._10{width:752.400000pt;}
.fs6{font-size:22.397968pt;}
.fs4{font-size:29.510305pt;}
.fs2{font-size:30.689146pt;}
.fs3{font-size:37.687912pt;}
.fs5{font-size:37.762188pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:50.729433pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:3.812192pt;}
.y38{bottom:18.557725pt;}
.y39{bottom:26.819432pt;}
.y3a{bottom:63.677056pt;}
.y4{bottom:63.700000pt;}
.y43{bottom:70.761887pt;}
.y3{bottom:95.366667pt;}
.y3b{bottom:100.547255pt;}
.y5f{bottom:122.366667pt;}
.y42{bottom:135.350541pt;}
.y3c{bottom:137.118814pt;}
.y5e{bottom:140.693333pt;}
.y1e{bottom:144.706667pt;}
.y41{bottom:149.201916pt;}
.y5d{bottom:159.040000pt;}
.y40{bottom:163.065080pt;}
.y3d{bottom:173.977225pt;}
.y1d{bottom:176.400000pt;}
.y4b{bottom:176.733333pt;}
.y3f{bottom:176.924313pt;}
.y5c{bottom:177.400000pt;}
.y5b{bottom:195.733333pt;}
.y1c{bottom:208.400000pt;}
.y3e{bottom:210.847423pt;}
.y37{bottom:223.233091pt;}
.y29{bottom:223.233108pt;}
.y5a{bottom:224.066667pt;}
.y2c{bottom:237.980392pt;}
.y21{bottom:237.980409pt;}
.y1b{bottom:240.066667pt;}
.y2d{bottom:246.232275pt;}
.y22{bottom:246.232292pt;}
.y6e{bottom:262.733333pt;}
.y1a{bottom:271.773333pt;}
.y6d{bottom:281.106667pt;}
.y2e{bottom:283.098544pt;}
.y23{bottom:283.098562pt;}
.y7b{bottom:295.106667pt;}
.y36{bottom:296.961708pt;}
.y28{bottom:296.961725pt;}
.y6c{bottom:299.773333pt;}
.y19{bottom:303.440000pt;}
.y7a{bottom:313.440000pt;}
.y6b{bottom:318.106667pt;}
.y2f{bottom:319.956955pt;}
.y24{bottom:319.956972pt;}
.y18{bottom:335.106667pt;}
.y4a{bottom:335.440000pt;}
.y6a{bottom:336.440000pt;}
.y79{bottom:345.440000pt;}
.y49{bottom:353.773333pt;}
.y69{bottom:354.773333pt;}
.y30{bottom:356.532444pt;}
.y25{bottom:356.532461pt;}
.y34{bottom:363.016055pt;}
.y17{bottom:366.773333pt;}
.y2a{bottom:370.686395pt;}
.y68{bottom:373.106667pt;}
.y78{bottom:373.760000pt;}
.y48{bottom:385.466667pt;}
.y67{bottom:391.800000pt;}
.y31{bottom:393.398713pt;}
.y26{bottom:393.398730pt;}
.y16{bottom:398.800000pt;}
.y47{bottom:403.800000pt;}
.y33{bottom:407.556580pt;}
.y2b{bottom:413.745510pt;}
.y35{bottom:418.166136pt;}
.y46{bottom:422.133333pt;}
.y32{bottom:430.257123pt;}
.y27{bottom:430.257141pt;}
.y15{bottom:430.466667pt;}
.y45{bottom:450.800000pt;}
.y20{bottom:452.817118pt;}
.y14{bottom:462.133333pt;}
.y59{bottom:468.133333pt;}
.y58{bottom:486.506667pt;}
.y13{bottom:493.840000pt;}
.y57{bottom:504.840000pt;}
.y56{bottom:523.173333pt;}
.y12{bottom:525.506667pt;}
.y75{bottom:535.506667pt;}
.y55{bottom:541.506667pt;}
.y11{bottom:557.506667pt;}
.y54{bottom:560.173333pt;}
.y74{bottom:567.173333pt;}
.y53{bottom:578.506667pt;}
.y73{bottom:585.533333pt;}
.y10{bottom:589.200000pt;}
.y52{bottom:596.866667pt;}
.y72{bottom:604.200000pt;}
.y51{bottom:615.200000pt;}
.y71{bottom:622.533333pt;}
.yf{bottom:626.200000pt;}
.y50{bottom:633.533333pt;}
.y77{bottom:635.200000pt;}
.y70{bottom:640.866667pt;}
.y4f{bottom:652.200000pt;}
.ye{bottom:652.533333pt;}
.y6f{bottom:669.200000pt;}
.y4e{bottom:670.533333pt;}
.yd{bottom:676.200000pt;}
.y4d{bottom:688.866667pt;}
.yc{bottom:702.906667pt;}
.y4c{bottom:717.226667pt;}
.yb{bottom:726.560000pt;}
.ya{bottom:752.893333pt;}
.y66{bottom:769.560000pt;}
.y9{bottom:776.560000pt;}
.y65{bottom:801.600000pt;}
.y8{bottom:802.933333pt;}
.y64{bottom:819.933333pt;}
.y63{bottom:838.266667pt;}
.y7{bottom:845.600000pt;}
.y62{bottom:856.600000pt;}
.y6{bottom:863.933333pt;}
.y61{bottom:874.933333pt;}
.y60{bottom:893.600000pt;}
.y76{bottom:898.600000pt;}
.y1f{bottom:911.960000pt;}
.y5{bottom:930.293333pt;}
.y2{bottom:961.960000pt;}
.y1{bottom:993.626667pt;}
.h9{height:22.342537pt;}
.h7{height:22.432447pt;}
.h8{height:27.548244pt;}
.h4{height:29.812500pt;}
.hd{height:36.932414pt;}
.ha{height:37.591080pt;}
.hc{height:37.622515pt;}
.he{height:37.638233pt;}
.hb{height:44.005457pt;}
.h1{height:44.687500pt;}
.h2{height:44.718750pt;}
.h5{height:45.156250pt;}
.hf{height:51.125000pt;}
.h3{height:51.145833pt;}
.h6{height:442.349341pt;}
.h0{height:1056.000000pt;}
.w2{width:617.968039pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.412177pt;}
.xa{left:16.775243pt;}
.x9{left:24.716765pt;}
.x2{left:96.033321pt;}
.x7{left:109.366655pt;}
.xe{left:116.240346pt;}
.x5{left:129.066655pt;}
.x8{left:144.066655pt;}
.xc{left:147.426019pt;}
.x18{left:161.556048pt;}
.x16{left:168.909309pt;}
.x15{left:176.862596pt;}
.xd{left:187.741493pt;}
.x6{left:281.133321pt;}
.x19{left:299.573811pt;}
.x13{left:306.044675pt;}
.xf{left:313.397937pt;}
.x4{left:321.133321pt;}
.x17{left:378.428215pt;}
.x10{left:419.331948pt;}
.x1c{left:424.839988pt;}
.x1d{left:426.173321pt;}
.x14{left:444.058517pt;}
.x11{left:504.092495pt;}
.x12{left:561.463615pt;}
.x3{left:703.293321pt;}
.x1a{left:717.306655pt;}
.x1{left:720.306655pt;}
.x1b{left:722.293321pt;}
}




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