
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_23827ff3c04c4136d5644e56.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_14fc7b62f51bdebdf543e1ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_2270bfea1b8b6c7470f8f5c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_b519f88c34ca154e2e7e3ba6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_9fb284180da631b03a2070fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_4e3db680c0f38bd6df32880f.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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.696000px;}
.ls22{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.431400px;}
.lsa{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.357000px;}
.ls1a{letter-spacing:-0.326400px;}
.ls13{letter-spacing:-0.322800px;}
.ls16{letter-spacing:-0.240600px;}
.ls1e{letter-spacing:-0.228000px;}
.ls19{letter-spacing:-0.214800px;}
.ls9{letter-spacing:-0.108600px;}
.ls1d{letter-spacing:-0.107400px;}
.ls1f{letter-spacing:-0.064800px;}
.ls23{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.054720px;}
.ls1b{letter-spacing:0.097200px;}
.ls18{letter-spacing:0.140400px;}
.ls3{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.174000px;}
.ls12{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.186600px;}
.ls10{letter-spacing:0.243600px;}
.ls7{letter-spacing:0.256200px;}
.ls17{letter-spacing:0.306000px;}
.ls1c{letter-spacing:0.314400px;}
.ls8{letter-spacing:0.321000px;}
.ls4{letter-spacing:0.617760px;}
.ls11{letter-spacing:0.637200px;}
.lse{letter-spacing:0.744000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls21{letter-spacing:12.330720px;}
.ls20{letter-spacing:42.570720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws4{word-spacing:-21.962760px;}
.ws5{word-spacing:-21.533160px;}
.ws3{word-spacing:-15.226440px;}
.wsb{word-spacing:-15.024960px;}
.ws2{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.647440px;}
.wsa{word-spacing:-14.613240px;}
.ws1{word-spacing:-14.506440px;}
.wse{word-spacing:-13.820160px;}
.wsc{word-spacing:-13.749360px;}
.ws7{word-spacing:-13.692360px;}
.ws6{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.398360px;}
.wsd{word-spacing:-13.290960px;}
.ws10{word-spacing:-13.277760px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1359.798240px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-581.690160px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._11{margin-left:-2.303760px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._8{width:2.585520px;}
._9{width:4.447440px;}
._d{width:6.095520px;}
._b{width:7.230960px;}
._c{width:8.236320px;}
._f{width:9.322560px;}
._10{width:11.234880px;}
._e{width:12.310560px;}
._a{width:14.700960px;}
._14{width:16.673040px;}
._13{width:18.346320px;}
._12{width:20.258640px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.416000px;}
.ya4{bottom:89.316000px;}
.y64{bottom:107.316000px;}
.ya3{bottom:110.376000px;}
.y30{bottom:115.596000px;}
.y8a{bottom:122.436000px;}
.y63{bottom:128.376000px;}
.ya2{bottom:131.436000px;}
.y2f{bottom:136.656000px;}
.y89{bottom:143.496000px;}
.y62{bottom:149.436000px;}
.ya1{bottom:152.490000px;}
.y2e{bottom:157.710000px;}
.y88{bottom:164.550000px;}
.y61{bottom:170.490000px;}
.ya0{bottom:173.550000px;}
.y2d{bottom:178.770000px;}
.y87{bottom:185.610000px;}
.y60{bottom:191.550000px;}
.y9f{bottom:194.610000px;}
.y2c{bottom:199.830000px;}
.y86{bottom:206.670000px;}
.y5f{bottom:212.610000px;}
.y9e{bottom:215.670000px;}
.y2b{bottom:220.890000px;}
.y85{bottom:227.730000px;}
.y5e{bottom:233.670000px;}
.y9d{bottom:236.730000px;}
.y2a{bottom:241.950000px;}
.y84{bottom:248.790000px;}
.y5d{bottom:254.730000px;}
.y9c{bottom:257.790000px;}
.y29{bottom:263.010000px;}
.y83{bottom:269.850000px;}
.y5c{bottom:275.790000px;}
.y9b{bottom:278.850000px;}
.y28{bottom:284.070000px;}
.y82{bottom:290.910000px;}
.y5b{bottom:296.850000px;}
.y9a{bottom:299.910000px;}
.y27{bottom:305.130000px;}
.y81{bottom:311.970000px;}
.y5a{bottom:317.910000px;}
.y99{bottom:320.970000px;}
.y26{bottom:326.190000px;}
.y80{bottom:333.075000px;}
.y59{bottom:339.015000px;}
.y98{bottom:342.075000px;}
.y25{bottom:347.295000px;}
.y7f{bottom:354.135000px;}
.y58{bottom:360.075000px;}
.y97{bottom:363.135000px;}
.y24{bottom:368.355000px;}
.y7e{bottom:375.195000px;}
.y57{bottom:381.135000px;}
.y96{bottom:384.195000px;}
.y23{bottom:389.235000px;}
.y7d{bottom:396.255000px;}
.y56{bottom:402.195000px;}
.y95{bottom:405.255000px;}
.y22{bottom:410.295000px;}
.y7c{bottom:417.315000px;}
.y55{bottom:423.255000px;}
.y94{bottom:426.315000px;}
.y21{bottom:431.355000px;}
.y54{bottom:444.315000px;}
.y7b{bottom:447.375000px;}
.y20{bottom:452.415000px;}
.y53{bottom:465.375000px;}
.y7a{bottom:468.435000px;}
.y1f{bottom:473.475000px;}
.y52{bottom:486.435000px;}
.y79{bottom:489.495000px;}
.y1e{bottom:494.535000px;}
.y51{bottom:507.495000px;}
.y78{bottom:510.555000px;}
.y1d{bottom:515.595000px;}
.y50{bottom:528.555000px;}
.y77{bottom:531.615000px;}
.y1c{bottom:536.655000px;}
.y4f{bottom:549.615000px;}
.y76{bottom:552.675000px;}
.y1b{bottom:557.715000px;}
.y4e{bottom:570.675000px;}
.y75{bottom:573.735000px;}
.y1a{bottom:578.775000px;}
.y93{bottom:582.735000px;}
.y4d{bottom:591.735000px;}
.y74{bottom:594.825000px;}
.y19{bottom:602.025000px;}
.y92{bottom:603.825000px;}
.y4c{bottom:612.825000px;}
.y73{bottom:615.885000px;}
.y91{bottom:624.885000px;}
.y18{bottom:632.265000px;}
.y4b{bottom:633.885000px;}
.y72{bottom:636.945000px;}
.y90{bottom:645.945000px;}
.y17{bottom:653.325000px;}
.y4a{bottom:654.945000px;}
.y71{bottom:658.005000px;}
.y8f{bottom:667.005000px;}
.y16{bottom:674.385000px;}
.y49{bottom:676.005000px;}
.y70{bottom:688.065000px;}
.y15{bottom:695.445000px;}
.y48{bottom:697.065000px;}
.y6f{bottom:709.125000px;}
.y14{bottom:716.505000px;}
.y47{bottom:718.125000px;}
.y6e{bottom:730.185000px;}
.y13{bottom:737.565000px;}
.y46{bottom:739.185000px;}
.y6d{bottom:751.245000px;}
.y12{bottom:758.625000px;}
.y45{bottom:760.245000px;}
.y6c{bottom:772.305000px;}
.y11{bottom:779.685000px;}
.y44{bottom:781.305000px;}
.y6b{bottom:793.365000px;}
.y10{bottom:800.745000px;}
.y43{bottom:802.365000px;}
.y6a{bottom:814.425000px;}
.yf{bottom:821.805000px;}
.y42{bottom:823.425000px;}
.y69{bottom:835.485000px;}
.ye{bottom:842.865000px;}
.y41{bottom:844.485000px;}
.y68{bottom:856.545000px;}
.yd{bottom:863.790000px;}
.y40{bottom:865.590000px;}
.y67{bottom:877.650000px;}
.y3f{bottom:886.650000px;}
.yc{bottom:887.190000px;}
.y66{bottom:898.710000px;}
.y3e{bottom:907.710000px;}
.yb{bottom:908.250000px;}
.y65{bottom:919.770000px;}
.y3d{bottom:928.770000px;}
.ya{bottom:930.210000px;}
.y8e{bottom:940.830000px;}
.y3c{bottom:949.830000px;}
.y9{bottom:952.530000px;}
.y8d{bottom:961.890000px;}
.y3b{bottom:970.890000px;}
.y8{bottom:977.550000px;}
.y8c{bottom:982.950000px;}
.y3a{bottom:991.950000px;}
.y8b{bottom:1004.010000px;}
.y7{bottom:1011.210000px;}
.y39{bottom:1013.010000px;}
.y38{bottom:1034.070000px;}
.y5{bottom:1051.530000px;}
.y37{bottom:1055.130000px;}
.y36{bottom:1076.190000px;}
.y4{bottom:1083.750000px;}
.y35{bottom:1097.250000px;}
.y3{bottom:1115.790000px;}
.y34{bottom:1118.310000px;}
.y33{bottom:1139.400000px;}
.y2{bottom:1148.040000px;}
.y32{bottom:1170.180000px;}
.y1{bottom:1182.600000px;}
.y31{bottom:1193.400000px;}
.h8{height:45.374414px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.999987px;}
.x3{left:64.619987px;}
.x4{left:69.479987px;}
.x2{left:75.599987px;}
.x5{left:96.515987px;}
.x6{left:102.275987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.618667pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.383467pt;}
.lsa{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.317333pt;}
.ls1a{letter-spacing:-0.290133pt;}
.ls13{letter-spacing:-0.286933pt;}
.ls16{letter-spacing:-0.213867pt;}
.ls1e{letter-spacing:-0.202667pt;}
.ls19{letter-spacing:-0.190933pt;}
.ls9{letter-spacing:-0.096533pt;}
.ls1d{letter-spacing:-0.095467pt;}
.ls1f{letter-spacing:-0.057600pt;}
.ls23{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.048640pt;}
.ls1b{letter-spacing:0.086400pt;}
.ls18{letter-spacing:0.124800pt;}
.ls3{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.154667pt;}
.ls12{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.165867pt;}
.ls10{letter-spacing:0.216533pt;}
.ls7{letter-spacing:0.227733pt;}
.ls17{letter-spacing:0.272000pt;}
.ls1c{letter-spacing:0.279467pt;}
.ls8{letter-spacing:0.285333pt;}
.ls4{letter-spacing:0.549120pt;}
.ls11{letter-spacing:0.566400pt;}
.lse{letter-spacing:0.661333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls21{letter-spacing:10.960640pt;}
.ls20{letter-spacing:37.840640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws4{word-spacing:-19.522453pt;}
.ws5{word-spacing:-19.140587pt;}
.ws3{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.355520pt;}
.ws2{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.019947pt;}
.wsa{word-spacing:-12.989547pt;}
.ws1{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.284587pt;}
.wsc{word-spacing:-12.221653pt;}
.ws7{word-spacing:-12.170987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.909653pt;}
.wsd{word-spacing:-11.814187pt;}
.ws10{word-spacing:-11.802453pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1208.709547pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-517.057920pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._11{margin-left:-2.047787pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._8{width:2.298240pt;}
._9{width:3.953280pt;}
._d{width:5.418240pt;}
._b{width:6.427520pt;}
._c{width:7.321173pt;}
._f{width:8.286720pt;}
._10{width:9.986560pt;}
._e{width:10.942720pt;}
._a{width:13.067520pt;}
._14{width:14.820480pt;}
._13{width:16.307840pt;}
._12{width:18.007680pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.592000pt;}
.ya4{bottom:79.392000pt;}
.y64{bottom:95.392000pt;}
.ya3{bottom:98.112000pt;}
.y30{bottom:102.752000pt;}
.y8a{bottom:108.832000pt;}
.y63{bottom:114.112000pt;}
.ya2{bottom:116.832000pt;}
.y2f{bottom:121.472000pt;}
.y89{bottom:127.552000pt;}
.y62{bottom:132.832000pt;}
.ya1{bottom:135.546667pt;}
.y2e{bottom:140.186667pt;}
.y88{bottom:146.266667pt;}
.y61{bottom:151.546667pt;}
.ya0{bottom:154.266667pt;}
.y2d{bottom:158.906667pt;}
.y87{bottom:164.986667pt;}
.y60{bottom:170.266667pt;}
.y9f{bottom:172.986667pt;}
.y2c{bottom:177.626667pt;}
.y86{bottom:183.706667pt;}
.y5f{bottom:188.986667pt;}
.y9e{bottom:191.706667pt;}
.y2b{bottom:196.346667pt;}
.y85{bottom:202.426667pt;}
.y5e{bottom:207.706667pt;}
.y9d{bottom:210.426667pt;}
.y2a{bottom:215.066667pt;}
.y84{bottom:221.146667pt;}
.y5d{bottom:226.426667pt;}
.y9c{bottom:229.146667pt;}
.y29{bottom:233.786667pt;}
.y83{bottom:239.866667pt;}
.y5c{bottom:245.146667pt;}
.y9b{bottom:247.866667pt;}
.y28{bottom:252.506667pt;}
.y82{bottom:258.586667pt;}
.y5b{bottom:263.866667pt;}
.y9a{bottom:266.586667pt;}
.y27{bottom:271.226667pt;}
.y81{bottom:277.306667pt;}
.y5a{bottom:282.586667pt;}
.y99{bottom:285.306667pt;}
.y26{bottom:289.946667pt;}
.y80{bottom:296.066667pt;}
.y59{bottom:301.346667pt;}
.y98{bottom:304.066667pt;}
.y25{bottom:308.706667pt;}
.y7f{bottom:314.786667pt;}
.y58{bottom:320.066667pt;}
.y97{bottom:322.786667pt;}
.y24{bottom:327.426667pt;}
.y7e{bottom:333.506667pt;}
.y57{bottom:338.786667pt;}
.y96{bottom:341.506667pt;}
.y23{bottom:345.986667pt;}
.y7d{bottom:352.226667pt;}
.y56{bottom:357.506667pt;}
.y95{bottom:360.226667pt;}
.y22{bottom:364.706667pt;}
.y7c{bottom:370.946667pt;}
.y55{bottom:376.226667pt;}
.y94{bottom:378.946667pt;}
.y21{bottom:383.426667pt;}
.y54{bottom:394.946667pt;}
.y7b{bottom:397.666667pt;}
.y20{bottom:402.146667pt;}
.y53{bottom:413.666667pt;}
.y7a{bottom:416.386667pt;}
.y1f{bottom:420.866667pt;}
.y52{bottom:432.386667pt;}
.y79{bottom:435.106667pt;}
.y1e{bottom:439.586667pt;}
.y51{bottom:451.106667pt;}
.y78{bottom:453.826667pt;}
.y1d{bottom:458.306667pt;}
.y50{bottom:469.826667pt;}
.y77{bottom:472.546667pt;}
.y1c{bottom:477.026667pt;}
.y4f{bottom:488.546667pt;}
.y76{bottom:491.266667pt;}
.y1b{bottom:495.746667pt;}
.y4e{bottom:507.266667pt;}
.y75{bottom:509.986667pt;}
.y1a{bottom:514.466667pt;}
.y93{bottom:517.986667pt;}
.y4d{bottom:525.986667pt;}
.y74{bottom:528.733333pt;}
.y19{bottom:535.133333pt;}
.y92{bottom:536.733333pt;}
.y4c{bottom:544.733333pt;}
.y73{bottom:547.453333pt;}
.y91{bottom:555.453333pt;}
.y18{bottom:562.013333pt;}
.y4b{bottom:563.453333pt;}
.y72{bottom:566.173333pt;}
.y90{bottom:574.173333pt;}
.y17{bottom:580.733333pt;}
.y4a{bottom:582.173333pt;}
.y71{bottom:584.893333pt;}
.y8f{bottom:592.893333pt;}
.y16{bottom:599.453333pt;}
.y49{bottom:600.893333pt;}
.y70{bottom:611.613333pt;}
.y15{bottom:618.173333pt;}
.y48{bottom:619.613333pt;}
.y6f{bottom:630.333333pt;}
.y14{bottom:636.893333pt;}
.y47{bottom:638.333333pt;}
.y6e{bottom:649.053333pt;}
.y13{bottom:655.613333pt;}
.y46{bottom:657.053333pt;}
.y6d{bottom:667.773333pt;}
.y12{bottom:674.333333pt;}
.y45{bottom:675.773333pt;}
.y6c{bottom:686.493333pt;}
.y11{bottom:693.053333pt;}
.y44{bottom:694.493333pt;}
.y6b{bottom:705.213333pt;}
.y10{bottom:711.773333pt;}
.y43{bottom:713.213333pt;}
.y6a{bottom:723.933333pt;}
.yf{bottom:730.493333pt;}
.y42{bottom:731.933333pt;}
.y69{bottom:742.653333pt;}
.ye{bottom:749.213333pt;}
.y41{bottom:750.653333pt;}
.y68{bottom:761.373333pt;}
.yd{bottom:767.813333pt;}
.y40{bottom:769.413333pt;}
.y67{bottom:780.133333pt;}
.y3f{bottom:788.133333pt;}
.yc{bottom:788.613333pt;}
.y66{bottom:798.853333pt;}
.y3e{bottom:806.853333pt;}
.yb{bottom:807.333333pt;}
.y65{bottom:817.573333pt;}
.y3d{bottom:825.573333pt;}
.ya{bottom:826.853333pt;}
.y8e{bottom:836.293333pt;}
.y3c{bottom:844.293333pt;}
.y9{bottom:846.693333pt;}
.y8d{bottom:855.013333pt;}
.y3b{bottom:863.013333pt;}
.y8{bottom:868.933333pt;}
.y8c{bottom:873.733333pt;}
.y3a{bottom:881.733333pt;}
.y8b{bottom:892.453333pt;}
.y7{bottom:898.853333pt;}
.y39{bottom:900.453333pt;}
.y38{bottom:919.173333pt;}
.y5{bottom:934.693333pt;}
.y37{bottom:937.893333pt;}
.y36{bottom:956.613333pt;}
.y4{bottom:963.333333pt;}
.y35{bottom:975.333333pt;}
.y3{bottom:991.813333pt;}
.y34{bottom:994.053333pt;}
.y33{bottom:1012.800000pt;}
.y2{bottom:1020.480000pt;}
.y32{bottom:1040.160000pt;}
.y1{bottom:1051.200000pt;}
.y31{bottom:1060.800000pt;}
.h8{height:40.332812pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.999988pt;}
.x3{left:57.439988pt;}
.x4{left:61.759988pt;}
.x2{left:67.199988pt;}
.x5{left:85.791988pt;}
.x6{left:90.911988pt;}
}




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