
    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_e26ea45ee54cc1858a2aa9b1.woff2')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_56d76dd1f4c1ae1c4157850a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.742676;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_09abaa767ccaa3ffda03710f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_20b47cd2a6853a05592df1dd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3919680d226f16a6db9ee8f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_2dbf36b0b0c7abdde804af36.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2193e1ca823ab4ff22ec328c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_623f38576785946cbb02b4d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-1.032000px;}
.ls21{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.557400px;}
.ls10{letter-spacing:-0.534600px;}
.lsa{letter-spacing:-0.516000px;}
.ls3{letter-spacing:-0.502200px;}
.ls6{letter-spacing:-0.492000px;}
.ls9{letter-spacing:-0.468000px;}
.ls18{letter-spacing:-0.407400px;}
.ls20{letter-spacing:-0.384600px;}
.ls12{letter-spacing:-0.366000px;}
.ls13{letter-spacing:-0.318000px;}
.ls4{letter-spacing:-0.075000px;}
.ls14{letter-spacing:-0.025920px;}
.ls8{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.075000px;}
.lsf{letter-spacing:0.084000px;}
.ls1c{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.174000px;}
.ls22{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.408000px;}
.ls23{letter-spacing:0.468000px;}
.ls17{letter-spacing:0.492000px;}
.ls16{letter-spacing:0.516000px;}
.ls1d{letter-spacing:0.558000px;}
.lsb{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.984000px;}
.lsd{letter-spacing:1.032000px;}
.lse{letter-spacing:1.500000px;}
.ls1e{letter-spacing:1.524000px;}
.ls11{letter-spacing:1.650000px;}
.ls19{letter-spacing:1.680000px;}
.ls24{letter-spacing:2.016000px;}
.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;}
}
.ws17{word-spacing:-72.000000px;}
.ws22{word-spacing:-20.016000px;}
.wse{word-spacing:-19.650000px;}
.ws1d{word-spacing:-19.524000px;}
.ws10{word-spacing:-19.500000px;}
.ws13{word-spacing:-19.032000px;}
.wsc{word-spacing:-18.984000px;}
.wsb{word-spacing:-18.666000px;}
.ws1c{word-spacing:-18.595500px;}
.ws15{word-spacing:-18.516000px;}
.ws16{word-spacing:-18.492000px;}
.ws21{word-spacing:-18.468000px;}
.ws1e{word-spacing:-18.445500px;}
.ws19{word-spacing:-18.174000px;}
.ws14{word-spacing:-18.150000px;}
.ws1a{word-spacing:-18.112500px;}
.ws1b{word-spacing:-18.037500px;}
.ws6{word-spacing:-18.024000px;}
.ws12{word-spacing:-18.011580px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.976000px;}
.ws1{word-spacing:-17.962500px;}
.ws11{word-spacing:-17.682000px;}
.ws1f{word-spacing:-17.652900px;}
.wsf{word-spacing:-17.634000px;}
.ws18{word-spacing:-17.630100px;}
.ws0{word-spacing:-17.535300px;}
.ws9{word-spacing:-17.532000px;}
.ws3{word-spacing:-17.508000px;}
.wsd{word-spacing:-17.502900px;}
.wsa{word-spacing:-17.484000px;}
.ws2{word-spacing:-17.480100px;}
.ws20{word-spacing:-17.425500px;}
.ws23{word-spacing:-16.968000px;}
.ws4{word-spacing:-15.000000px;}
.ws7{word-spacing:0.000000px;}
._a{margin-left:-6.388500px;}
._2{margin-left:-2.299500px;}
._1{margin-left:-1.068000px;}
._0{width:1.408500px;}
._3{width:2.500500px;}
._4{width:3.700500px;}
._5{width:4.789500px;}
._6{width:6.316500px;}
._8{width:9.721500px;}
._7{width:11.299500px;}
._9{width:12.313500px;}
.fc1{color:rgb(14,14,14);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:72.150000px;}
.y0{bottom:0.000000px;}
.y2{bottom:69.412500px;}
.y4e{bottom:130.912500px;}
.y71{bottom:131.287500px;}
.y4d{bottom:151.530000px;}
.y70{bottom:151.920000px;}
.y2a{bottom:157.170000px;}
.y4c{bottom:172.170000px;}
.y6f{bottom:172.920000px;}
.y4b{bottom:192.825000px;}
.y6e{bottom:193.575000px;}
.y29{bottom:198.825000px;}
.y4a{bottom:213.450000px;}
.y6d{bottom:214.200000px;}
.y28{bottom:219.450000px;}
.y49{bottom:234.450000px;}
.y6c{bottom:234.825000px;}
.y27{bottom:240.450000px;}
.y48{bottom:255.075000px;}
.y6b{bottom:255.450000px;}
.y26{bottom:261.075000px;}
.y47{bottom:275.700000px;}
.y6a{bottom:276.450000px;}
.y46{bottom:296.325000px;}
.y69{bottom:297.075000px;}
.y25{bottom:302.700000px;}
.y45{bottom:316.980000px;}
.y68{bottom:317.745000px;}
.y24{bottom:323.355000px;}
.y44{bottom:337.995000px;}
.y67{bottom:338.370000px;}
.y23{bottom:343.995000px;}
.y43{bottom:358.620000px;}
.y66{bottom:358.995000px;}
.y22{bottom:364.995000px;}
.y42{bottom:379.245000px;}
.y65{bottom:379.995000px;}
.y21{bottom:385.620000px;}
.y41{bottom:399.870000px;}
.y64{bottom:400.620000px;}
.y40{bottom:420.480000px;}
.y63{bottom:421.245000px;}
.y20{bottom:427.275000px;}
.y3f{bottom:441.525000px;}
.y62{bottom:441.900000px;}
.y1f{bottom:447.900000px;}
.y3e{bottom:462.150000px;}
.y61{bottom:462.525000px;}
.y1e{bottom:468.525000px;}
.y3d{bottom:482.775000px;}
.y60{bottom:483.525000px;}
.y1d{bottom:489.525000px;}
.y3c{bottom:503.400000px;}
.y5f{bottom:504.150000px;}
.y1c{bottom:510.150000px;}
.y3b{bottom:524.025000px;}
.y5e{bottom:524.775000px;}
.y1b{bottom:530.775000px;}
.y3a{bottom:545.070000px;}
.y5d{bottom:545.445000px;}
.y1a{bottom:551.445000px;}
.y39{bottom:565.695000px;}
.y5c{bottom:566.070000px;}
.y19{bottom:572.070000px;}
.y38{bottom:586.320000px;}
.y5b{bottom:587.070000px;}
.y37{bottom:606.945000px;}
.y5a{bottom:607.695000px;}
.y18{bottom:613.695000px;}
.y36{bottom:627.570000px;}
.y59{bottom:628.320000px;}
.y17{bottom:634.695000px;}
.y35{bottom:648.195000px;}
.y58{bottom:648.945000px;}
.y16{bottom:655.320000px;}
.y34{bottom:669.225000px;}
.y57{bottom:669.600000px;}
.y33{bottom:689.850000px;}
.y56{bottom:690.225000px;}
.y15{bottom:696.600000px;}
.y32{bottom:710.475000px;}
.y55{bottom:711.225000px;}
.y14{bottom:713.850000px;}
.y13{bottom:731.100000px;}
.y54{bottom:731.850000px;}
.y12{bottom:748.350000px;}
.y31{bottom:751.725000px;}
.y53{bottom:752.475000px;}
.y11{bottom:765.600000px;}
.y30{bottom:772.725000px;}
.y52{bottom:773.100000px;}
.y10{bottom:782.880000px;}
.y2f{bottom:793.380000px;}
.y51{bottom:793.755000px;}
.yf{bottom:800.130000px;}
.y2e{bottom:814.005000px;}
.y50{bottom:814.755000px;}
.ye{bottom:817.380000px;}
.y4f{bottom:835.380000px;}
.y2d{bottom:855.630000px;}
.yd{bottom:856.005000px;}
.y2c{bottom:876.255000px;}
.yc{bottom:876.630000px;}
.yb{bottom:897.300000px;}
.y2b{bottom:917.925000px;}
.ya{bottom:918.300000px;}
.y9{bottom:938.925000px;}
.y8{bottom:959.550000px;}
.y7{bottom:980.175000px;}
.y6{bottom:1000.800000px;}
.y5{bottom:1021.830000px;}
.y4{bottom:1042.455000px;}
.y3{bottom:1063.080000px;}
.y1{bottom:1117.080000px;}
.h6{height:41.894531px;}
.h1{height:50.273438px;}
.h5{height:50.378174px;}
.h3{height:50.800781px;}
.h4{height:50.906616px;}
.h2{height:52.421484px;}
.h7{height:59.343750px;}
.h8{height:59.467383px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.037486px;}
.x8{left:162.074986px;}
.x6{left:231.494986px;}
.x2{left:272.369986px;}
.x3{left:294.494986px;}
.x7{left:351.899986px;}
.x4{left:404.069986px;}
.x5{left:459.194986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-0.917333pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.495467pt;}
.ls10{letter-spacing:-0.475200pt;}
.lsa{letter-spacing:-0.458667pt;}
.ls3{letter-spacing:-0.446400pt;}
.ls6{letter-spacing:-0.437333pt;}
.ls9{letter-spacing:-0.416000pt;}
.ls18{letter-spacing:-0.362133pt;}
.ls20{letter-spacing:-0.341867pt;}
.ls12{letter-spacing:-0.325333pt;}
.ls13{letter-spacing:-0.282667pt;}
.ls4{letter-spacing:-0.066667pt;}
.ls14{letter-spacing:-0.023040pt;}
.ls8{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.066667pt;}
.lsf{letter-spacing:0.074667pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.154667pt;}
.ls22{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.362667pt;}
.ls23{letter-spacing:0.416000pt;}
.ls17{letter-spacing:0.437333pt;}
.ls16{letter-spacing:0.458667pt;}
.ls1d{letter-spacing:0.496000pt;}
.lsb{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.874667pt;}
.lsd{letter-spacing:0.917333pt;}
.lse{letter-spacing:1.333333pt;}
.ls1e{letter-spacing:1.354667pt;}
.ls11{letter-spacing:1.466667pt;}
.ls19{letter-spacing:1.493333pt;}
.ls24{letter-spacing:1.792000pt;}
.ws17{word-spacing:-64.000000pt;}
.ws22{word-spacing:-17.792000pt;}
.wse{word-spacing:-17.466667pt;}
.ws1d{word-spacing:-17.354667pt;}
.ws10{word-spacing:-17.333333pt;}
.ws13{word-spacing:-16.917333pt;}
.wsc{word-spacing:-16.874667pt;}
.wsb{word-spacing:-16.592000pt;}
.ws1c{word-spacing:-16.529333pt;}
.ws15{word-spacing:-16.458667pt;}
.ws16{word-spacing:-16.437333pt;}
.ws21{word-spacing:-16.416000pt;}
.ws1e{word-spacing:-16.396000pt;}
.ws19{word-spacing:-16.154667pt;}
.ws14{word-spacing:-16.133333pt;}
.ws1a{word-spacing:-16.100000pt;}
.ws1b{word-spacing:-16.033333pt;}
.ws6{word-spacing:-16.021333pt;}
.ws12{word-spacing:-16.010293pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.978667pt;}
.ws1{word-spacing:-15.966667pt;}
.ws11{word-spacing:-15.717333pt;}
.ws1f{word-spacing:-15.691467pt;}
.wsf{word-spacing:-15.674667pt;}
.ws18{word-spacing:-15.671200pt;}
.ws0{word-spacing:-15.586933pt;}
.ws9{word-spacing:-15.584000pt;}
.ws3{word-spacing:-15.562667pt;}
.wsd{word-spacing:-15.558133pt;}
.wsa{word-spacing:-15.541333pt;}
.ws2{word-spacing:-15.537867pt;}
.ws20{word-spacing:-15.489333pt;}
.ws23{word-spacing:-15.082667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws7{word-spacing:0.000000pt;}
._a{margin-left:-5.678667pt;}
._2{margin-left:-2.044000pt;}
._1{margin-left:-0.949333pt;}
._0{width:1.252000pt;}
._3{width:2.222667pt;}
._4{width:3.289333pt;}
._5{width:4.257333pt;}
._6{width:5.614667pt;}
._8{width:8.641333pt;}
._7{width:10.044000pt;}
._9{width:10.945333pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:64.133333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:61.700000pt;}
.y4e{bottom:116.366667pt;}
.y71{bottom:116.700000pt;}
.y4d{bottom:134.693333pt;}
.y70{bottom:135.040000pt;}
.y2a{bottom:139.706667pt;}
.y4c{bottom:153.040000pt;}
.y6f{bottom:153.706667pt;}
.y4b{bottom:171.400000pt;}
.y6e{bottom:172.066667pt;}
.y29{bottom:176.733333pt;}
.y4a{bottom:189.733333pt;}
.y6d{bottom:190.400000pt;}
.y28{bottom:195.066667pt;}
.y49{bottom:208.400000pt;}
.y6c{bottom:208.733333pt;}
.y27{bottom:213.733333pt;}
.y48{bottom:226.733333pt;}
.y6b{bottom:227.066667pt;}
.y26{bottom:232.066667pt;}
.y47{bottom:245.066667pt;}
.y6a{bottom:245.733333pt;}
.y46{bottom:263.400000pt;}
.y69{bottom:264.066667pt;}
.y25{bottom:269.066667pt;}
.y45{bottom:281.760000pt;}
.y68{bottom:282.440000pt;}
.y24{bottom:287.426667pt;}
.y44{bottom:300.440000pt;}
.y67{bottom:300.773333pt;}
.y23{bottom:305.773333pt;}
.y43{bottom:318.773333pt;}
.y66{bottom:319.106667pt;}
.y22{bottom:324.440000pt;}
.y42{bottom:337.106667pt;}
.y65{bottom:337.773333pt;}
.y21{bottom:342.773333pt;}
.y41{bottom:355.440000pt;}
.y64{bottom:356.106667pt;}
.y40{bottom:373.760000pt;}
.y63{bottom:374.440000pt;}
.y20{bottom:379.800000pt;}
.y3f{bottom:392.466667pt;}
.y62{bottom:392.800000pt;}
.y1f{bottom:398.133333pt;}
.y3e{bottom:410.800000pt;}
.y61{bottom:411.133333pt;}
.y1e{bottom:416.466667pt;}
.y3d{bottom:429.133333pt;}
.y60{bottom:429.800000pt;}
.y1d{bottom:435.133333pt;}
.y3c{bottom:447.466667pt;}
.y5f{bottom:448.133333pt;}
.y1c{bottom:453.466667pt;}
.y3b{bottom:465.800000pt;}
.y5e{bottom:466.466667pt;}
.y1b{bottom:471.800000pt;}
.y3a{bottom:484.506667pt;}
.y5d{bottom:484.840000pt;}
.y1a{bottom:490.173333pt;}
.y39{bottom:502.840000pt;}
.y5c{bottom:503.173333pt;}
.y19{bottom:508.506667pt;}
.y38{bottom:521.173333pt;}
.y5b{bottom:521.840000pt;}
.y37{bottom:539.506667pt;}
.y5a{bottom:540.173333pt;}
.y18{bottom:545.506667pt;}
.y36{bottom:557.840000pt;}
.y59{bottom:558.506667pt;}
.y17{bottom:564.173333pt;}
.y35{bottom:576.173333pt;}
.y58{bottom:576.840000pt;}
.y16{bottom:582.506667pt;}
.y34{bottom:594.866667pt;}
.y57{bottom:595.200000pt;}
.y33{bottom:613.200000pt;}
.y56{bottom:613.533333pt;}
.y15{bottom:619.200000pt;}
.y32{bottom:631.533333pt;}
.y55{bottom:632.200000pt;}
.y14{bottom:634.533333pt;}
.y13{bottom:649.866667pt;}
.y54{bottom:650.533333pt;}
.y12{bottom:665.200000pt;}
.y31{bottom:668.200000pt;}
.y53{bottom:668.866667pt;}
.y11{bottom:680.533333pt;}
.y30{bottom:686.866667pt;}
.y52{bottom:687.200000pt;}
.y10{bottom:695.893333pt;}
.y2f{bottom:705.226667pt;}
.y51{bottom:705.560000pt;}
.yf{bottom:711.226667pt;}
.y2e{bottom:723.560000pt;}
.y50{bottom:724.226667pt;}
.ye{bottom:726.560000pt;}
.y4f{bottom:742.560000pt;}
.y2d{bottom:760.560000pt;}
.yd{bottom:760.893333pt;}
.y2c{bottom:778.893333pt;}
.yc{bottom:779.226667pt;}
.yb{bottom:797.600000pt;}
.y2b{bottom:815.933333pt;}
.ya{bottom:816.266667pt;}
.y9{bottom:834.600000pt;}
.y8{bottom:852.933333pt;}
.y7{bottom:871.266667pt;}
.y6{bottom:889.600000pt;}
.y5{bottom:908.293333pt;}
.y4{bottom:926.626667pt;}
.y3{bottom:944.960000pt;}
.y1{bottom:992.960000pt;}
.h6{height:37.239583pt;}
.h1{height:44.687500pt;}
.h5{height:44.780599pt;}
.h3{height:45.156250pt;}
.h4{height:45.250326pt;}
.h2{height:46.596875pt;}
.h7{height:52.750000pt;}
.h8{height:52.859896pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.033321pt;}
.x8{left:144.066655pt;}
.x6{left:205.773321pt;}
.x2{left:242.106655pt;}
.x3{left:261.773321pt;}
.x7{left:312.799988pt;}
.x4{left:359.173321pt;}
.x5{left:408.173321pt;}
}




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