
    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_caea10176753fda7f08bcbd1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_695febf9d68f099bab82a1ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_188c36aeaaaf33b22a2d76d7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_819a53887ecc091d6749c001.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9a1ddd4a4824240ce29e5194.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_70ca4de57694514569fa7475.woff2')format("woff");}.ff6{font-family:ff6;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;}
.ls6{letter-spacing:-5.112000px;}
.ls8{letter-spacing:-4.392000px;}
.lsb{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.720000px;}
.lsd{letter-spacing:10.944000px;}
.lse{letter-spacing:102.384000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.576000px;}
.wsb{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.280000px;}
.ws0{word-spacing:-15.238800px;}
.ws8{word-spacing:-13.608000px;}
.ws6{word-spacing:-12.888000px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-8.712000px;}
._8{margin-left:-7.200000px;}
._9{margin-left:-5.976000px;}
._1f{margin-left:-4.771680px;}
._2{margin-left:-3.719520px;}
._1{margin-left:-2.568240px;}
._3{margin-left:-1.105440px;}
._0{width:1.513440px;}
._e{width:2.880000px;}
._f{width:4.176000px;}
._5{width:5.544000px;}
._6{width:6.817440px;}
._2c{width:7.848000px;}
._21{width:9.000000px;}
._22{width:10.020000px;}
._25{width:11.448000px;}
._10{width:12.576000px;}
._11{width:13.846560px;}
._7{width:15.480000px;}
._1e{width:16.849200px;}
._19{width:19.008240px;}
._1d{width:20.592000px;}
._20{width:21.660000px;}
._17{width:23.688000px;}
._b{width:25.128000px;}
._24{width:26.688000px;}
._4{width:28.272000px;}
._2a{width:29.290800px;}
._2b{width:30.611760px;}
._1c{width:32.136000px;}
._1b{width:33.528000px;}
._2e{width:35.088000px;}
._27{width:40.296000px;}
._28{width:41.589120px;}
._2d{width:43.272000px;}
._23{width:45.144000px;}
._1a{width:46.368000px;}
._15{width:49.638720px;}
._14{width:50.785440px;}
._18{width:52.319760px;}
._c{width:56.376000px;}
._d{width:57.528000px;}
._26{width:64.440000px;}
._16{width:68.518800px;}
._12{width:81.481200px;}
._13{width:82.490880px;}
._29{width:92.304000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(128,0,128);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:69.480000px;}
.y73{bottom:108.900000px;}
.y9f{bottom:111.600000px;}
.y2d{bottom:114.840000px;}
.y51{bottom:117.900000px;}
.y8e{bottom:132.480000px;}
.y72{bottom:132.660000px;}
.y9e{bottom:135.360000px;}
.y2c{bottom:138.600000px;}
.y50{bottom:153.750000px;}
.y8d{bottom:156.270000px;}
.y71{bottom:156.630000px;}
.y2b{bottom:162.390000px;}
.y9d{bottom:168.150000px;}
.y4f{bottom:177.510000px;}
.y2a{bottom:186.150000px;}
.y9c{bottom:191.910000px;}
.y8c{bottom:192.090000px;}
.y70{bottom:192.270000px;}
.y4e{bottom:201.270000px;}
.y6f{bottom:216.210000px;}
.y9b{bottom:224.670000px;}
.y29{bottom:225.030000px;}
.y8b{bottom:227.910000px;}
.y4d{bottom:237.090000px;}
.y9a{bottom:248.610000px;}
.y28{bottom:248.790000px;}
.y8a{bottom:251.670000px;}
.y6e{bottom:252.030000px;}
.y4c{bottom:261.030000px;}
.y27{bottom:272.550000px;}
.y89{bottom:275.610000px;}
.y6d{bottom:275.790000px;}
.y99{bottom:281.370000px;}
.y4b{bottom:284.790000px;}
.y88{bottom:299.370000px;}
.y6c{bottom:299.550000px;}
.y26{bottom:308.370000px;}
.y4a{bottom:308.550000px;}
.y98{bottom:314.130000px;}
.y6b{bottom:323.310000px;}
.y25{bottom:332.130000px;}
.y49{bottom:332.310000px;}
.y87{bottom:335.190000px;}
.y97{bottom:337.890000px;}
.y6a{bottom:347.250000px;}
.y24{bottom:356.070000px;}
.y48{bottom:356.250000px;}
.y86{bottom:358.950000px;}
.y96{bottom:370.830000px;}
.y69{bottom:371.010000px;}
.y23{bottom:379.830000px;}
.y85{bottom:382.710000px;}
.y47{bottom:391.890000px;}
.y22{bottom:403.635000px;}
.y84{bottom:406.695000px;}
.y68{bottom:406.875000px;}
.y46{bottom:415.875000px;}
.y21{bottom:427.395000px;}
.y67{bottom:430.635000px;}
.y95{bottom:436.395000px;}
.y45{bottom:439.635000px;}
.y83{bottom:442.335000px;}
.y20{bottom:451.335000px;}
.y66{bottom:454.395000px;}
.y94{bottom:460.155000px;}
.y44{bottom:463.395000px;}
.y82{bottom:466.275000px;}
.y1f{bottom:475.095000px;}
.y65{bottom:478.155000px;}
.y93{bottom:484.095000px;}
.y43{bottom:487.155000px;}
.y81{bottom:490.035000px;}
.y1e{bottom:498.855000px;}
.y64{bottom:502.095000px;}
.y80{bottom:513.795000px;}
.y92{bottom:516.855000px;}
.y1d{bottom:522.615000px;}
.y42{bottom:522.975000px;}
.y63{bottom:525.855000px;}
.y91{bottom:540.615000px;}
.y1c{bottom:546.555000px;}
.y41{bottom:546.915000px;}
.y7f{bottom:549.615000px;}
.y62{bottom:561.675000px;}
.y40{bottom:570.675000px;}
.y7e{bottom:573.375000px;}
.y1b{bottom:585.255000px;}
.y61{bottom:585.435000px;}
.y3f{bottom:594.435000px;}
.y7d{bottom:597.315000px;}
.y1a{bottom:609.015000px;}
.y60{bottom:609.195000px;}
.y3e{bottom:618.195000px;}
.y7c{bottom:621.075000px;}
.y5f{bottom:632.955000px;}
.y19{bottom:644.835000px;}
.y3d{bottom:654.045000px;}
.y90{bottom:656.925000px;}
.y18{bottom:668.805000px;}
.y3c{bottom:677.805000px;}
.y7b{bottom:680.685000px;}
.y17{bottom:692.565000px;}
.y5e{bottom:692.745000px;}
.y3b{bottom:701.745000px;}
.y7a{bottom:704.445000px;}
.y16{bottom:716.325000px;}
.y5d{bottom:716.505000px;}
.y3a{bottom:725.505000px;}
.y8f{bottom:728.205000px;}
.y15{bottom:740.085000px;}
.y5c{bottom:740.265000px;}
.y39{bottom:749.265000px;}
.y14{bottom:764.025000px;}
.y38{bottom:785.085000px;}
.y13{bottom:787.785000px;}
.y5b{bottom:787.965000px;}
.y37{bottom:808.845000px;}
.y12{bottom:811.545000px;}
.y5a{bottom:823.605000px;}
.y36{bottom:832.605000px;}
.y11{bottom:835.305000px;}
.y59{bottom:847.545000px;}
.y35{bottom:856.545000px;}
.y10{bottom:871.125000px;}
.y58{bottom:871.305000px;}
.y34{bottom:880.305000px;}
.yf{bottom:894.885000px;}
.y57{bottom:895.065000px;}
.y33{bottom:904.110000px;}
.y79{bottom:907.170000px;}
.ya3{bottom:909.870000px;}
.ye{bottom:918.870000px;}
.y78{bottom:930.930000px;}
.yd{bottom:942.630000px;}
.y56{bottom:942.810000px;}
.y32{bottom:942.990000px;}
.y77{bottom:954.690000px;}
.yc{bottom:966.390000px;}
.y55{bottom:966.570000px;}
.y31{bottom:966.750000px;}
.ya2{bottom:975.570000px;}
.yb{bottom:990.150000px;}
.y76{bottom:990.510000px;}
.y54{bottom:999.330000px;}
.y30{bottom:1002.570000px;}
.ya1{bottom:1008.330000px;}
.ya{bottom:1014.090000px;}
.y75{bottom:1014.270000px;}
.y2f{bottom:1026.330000px;}
.y53{bottom:1032.090000px;}
.y74{bottom:1038.210000px;}
.ya0{bottom:1041.090000px;}
.y9{bottom:1047.210000px;}
.y2e{bottom:1050.090000px;}
.y52{bottom:1065.030000px;}
.y8{bottom:1074.030000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.h2{height:42.164648px;}
.ha{height:50.273438px;}
.h9{height:50.800781px;}
.h8{height:54.773438px;}
.h3{height:60.226875px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.hb{height:74.004654px;}
.h5{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.995987px;}
.x6{left:105.515987px;}
.xb{left:113.435987px;}
.x9{left:129.635987px;}
.xf{left:243.569987px;}
.x10{left:288.074987px;}
.xc{left:290.054987px;}
.x7{left:317.774987px;}
.xe{left:331.814987px;}
.xa{left:334.694987px;}
.x8{left:338.474987px;}
.x4{left:350.714987px;}
.xd{left:387.254987px;}
.x5{left:430.634987px;}
.x2{left:457.124987px;}
.x1{left:510.404987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-4.544000pt;}
.ls8{letter-spacing:-3.904000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsd{letter-spacing:9.728000pt;}
.lse{letter-spacing:91.008000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.512000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws8{word-spacing:-12.096000pt;}
.ws6{word-spacing:-11.456000pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-7.744000pt;}
._8{margin-left:-6.400000pt;}
._9{margin-left:-5.312000pt;}
._1f{margin-left:-4.241493pt;}
._2{margin-left:-3.306240pt;}
._1{margin-left:-2.282880pt;}
._3{margin-left:-0.982613pt;}
._0{width:1.345280pt;}
._e{width:2.560000pt;}
._f{width:3.712000pt;}
._5{width:4.928000pt;}
._6{width:6.059947pt;}
._2c{width:6.976000pt;}
._21{width:8.000000pt;}
._22{width:8.906667pt;}
._25{width:10.176000pt;}
._10{width:11.178667pt;}
._11{width:12.308053pt;}
._7{width:13.760000pt;}
._1e{width:14.977067pt;}
._19{width:16.896213pt;}
._1d{width:18.304000pt;}
._20{width:19.253333pt;}
._17{width:21.056000pt;}
._b{width:22.336000pt;}
._24{width:23.722667pt;}
._4{width:25.130667pt;}
._2a{width:26.036267pt;}
._2b{width:27.210453pt;}
._1c{width:28.565333pt;}
._1b{width:29.802667pt;}
._2e{width:31.189333pt;}
._27{width:35.818667pt;}
._28{width:36.968107pt;}
._2d{width:38.464000pt;}
._23{width:40.128000pt;}
._1a{width:41.216000pt;}
._15{width:44.123307pt;}
._14{width:45.142613pt;}
._18{width:46.506453pt;}
._c{width:50.112000pt;}
._d{width:51.136000pt;}
._26{width:57.280000pt;}
._16{width:60.905600pt;}
._12{width:72.427733pt;}
._13{width:73.325227pt;}
._29{width:82.048000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:61.760000pt;}
.y73{bottom:96.800000pt;}
.y9f{bottom:99.200000pt;}
.y2d{bottom:102.080000pt;}
.y51{bottom:104.800000pt;}
.y8e{bottom:117.760000pt;}
.y72{bottom:117.920000pt;}
.y9e{bottom:120.320000pt;}
.y2c{bottom:123.200000pt;}
.y50{bottom:136.666667pt;}
.y8d{bottom:138.906667pt;}
.y71{bottom:139.226667pt;}
.y2b{bottom:144.346667pt;}
.y9d{bottom:149.466667pt;}
.y4f{bottom:157.786667pt;}
.y2a{bottom:165.466667pt;}
.y9c{bottom:170.586667pt;}
.y8c{bottom:170.746667pt;}
.y70{bottom:170.906667pt;}
.y4e{bottom:178.906667pt;}
.y6f{bottom:192.186667pt;}
.y9b{bottom:199.706667pt;}
.y29{bottom:200.026667pt;}
.y8b{bottom:202.586667pt;}
.y4d{bottom:210.746667pt;}
.y9a{bottom:220.986667pt;}
.y28{bottom:221.146667pt;}
.y8a{bottom:223.706667pt;}
.y6e{bottom:224.026667pt;}
.y4c{bottom:232.026667pt;}
.y27{bottom:242.266667pt;}
.y89{bottom:244.986667pt;}
.y6d{bottom:245.146667pt;}
.y99{bottom:250.106667pt;}
.y4b{bottom:253.146667pt;}
.y88{bottom:266.106667pt;}
.y6c{bottom:266.266667pt;}
.y26{bottom:274.106667pt;}
.y4a{bottom:274.266667pt;}
.y98{bottom:279.226667pt;}
.y6b{bottom:287.386667pt;}
.y25{bottom:295.226667pt;}
.y49{bottom:295.386667pt;}
.y87{bottom:297.946667pt;}
.y97{bottom:300.346667pt;}
.y6a{bottom:308.666667pt;}
.y24{bottom:316.506667pt;}
.y48{bottom:316.666667pt;}
.y86{bottom:319.066667pt;}
.y96{bottom:329.626667pt;}
.y69{bottom:329.786667pt;}
.y23{bottom:337.626667pt;}
.y85{bottom:340.186667pt;}
.y47{bottom:348.346667pt;}
.y22{bottom:358.786667pt;}
.y84{bottom:361.506667pt;}
.y68{bottom:361.666667pt;}
.y46{bottom:369.666667pt;}
.y21{bottom:379.906667pt;}
.y67{bottom:382.786667pt;}
.y95{bottom:387.906667pt;}
.y45{bottom:390.786667pt;}
.y83{bottom:393.186667pt;}
.y20{bottom:401.186667pt;}
.y66{bottom:403.906667pt;}
.y94{bottom:409.026667pt;}
.y44{bottom:411.906667pt;}
.y82{bottom:414.466667pt;}
.y1f{bottom:422.306667pt;}
.y65{bottom:425.026667pt;}
.y93{bottom:430.306667pt;}
.y43{bottom:433.026667pt;}
.y81{bottom:435.586667pt;}
.y1e{bottom:443.426667pt;}
.y64{bottom:446.306667pt;}
.y80{bottom:456.706667pt;}
.y92{bottom:459.426667pt;}
.y1d{bottom:464.546667pt;}
.y42{bottom:464.866667pt;}
.y63{bottom:467.426667pt;}
.y91{bottom:480.546667pt;}
.y1c{bottom:485.826667pt;}
.y41{bottom:486.146667pt;}
.y7f{bottom:488.546667pt;}
.y62{bottom:499.266667pt;}
.y40{bottom:507.266667pt;}
.y7e{bottom:509.666667pt;}
.y1b{bottom:520.226667pt;}
.y61{bottom:520.386667pt;}
.y3f{bottom:528.386667pt;}
.y7d{bottom:530.946667pt;}
.y1a{bottom:541.346667pt;}
.y60{bottom:541.506667pt;}
.y3e{bottom:549.506667pt;}
.y7c{bottom:552.066667pt;}
.y5f{bottom:562.626667pt;}
.y19{bottom:573.186667pt;}
.y3d{bottom:581.373333pt;}
.y90{bottom:583.933333pt;}
.y18{bottom:594.493333pt;}
.y3c{bottom:602.493333pt;}
.y7b{bottom:605.053333pt;}
.y17{bottom:615.613333pt;}
.y5e{bottom:615.773333pt;}
.y3b{bottom:623.773333pt;}
.y7a{bottom:626.173333pt;}
.y16{bottom:636.733333pt;}
.y5d{bottom:636.893333pt;}
.y3a{bottom:644.893333pt;}
.y8f{bottom:647.293333pt;}
.y15{bottom:657.853333pt;}
.y5c{bottom:658.013333pt;}
.y39{bottom:666.013333pt;}
.y14{bottom:679.133333pt;}
.y38{bottom:697.853333pt;}
.y13{bottom:700.253333pt;}
.y5b{bottom:700.413333pt;}
.y37{bottom:718.973333pt;}
.y12{bottom:721.373333pt;}
.y5a{bottom:732.093333pt;}
.y36{bottom:740.093333pt;}
.y11{bottom:742.493333pt;}
.y59{bottom:753.373333pt;}
.y35{bottom:761.373333pt;}
.y10{bottom:774.333333pt;}
.y58{bottom:774.493333pt;}
.y34{bottom:782.493333pt;}
.yf{bottom:795.453333pt;}
.y57{bottom:795.613333pt;}
.y33{bottom:803.653333pt;}
.y79{bottom:806.373333pt;}
.ya3{bottom:808.773333pt;}
.ye{bottom:816.773333pt;}
.y78{bottom:827.493333pt;}
.yd{bottom:837.893333pt;}
.y56{bottom:838.053333pt;}
.y32{bottom:838.213333pt;}
.y77{bottom:848.613333pt;}
.yc{bottom:859.013333pt;}
.y55{bottom:859.173333pt;}
.y31{bottom:859.333333pt;}
.ya2{bottom:867.173333pt;}
.yb{bottom:880.133333pt;}
.y76{bottom:880.453333pt;}
.y54{bottom:888.293333pt;}
.y30{bottom:891.173333pt;}
.ya1{bottom:896.293333pt;}
.ya{bottom:901.413333pt;}
.y75{bottom:901.573333pt;}
.y2f{bottom:912.293333pt;}
.y53{bottom:917.413333pt;}
.y74{bottom:922.853333pt;}
.ya0{bottom:925.413333pt;}
.y9{bottom:930.853333pt;}
.y2e{bottom:933.413333pt;}
.y52{bottom:946.693333pt;}
.y8{bottom:954.693333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.h2{height:37.479688pt;}
.ha{height:44.687500pt;}
.h9{height:45.156250pt;}
.h8{height:48.687500pt;}
.h3{height:53.535000pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.hb{height:65.781915pt;}
.h5{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551988pt;}
.x6{left:93.791988pt;}
.xb{left:100.831988pt;}
.x9{left:115.231988pt;}
.xf{left:216.506655pt;}
.x10{left:256.066655pt;}
.xc{left:257.826655pt;}
.x7{left:282.466655pt;}
.xe{left:294.946655pt;}
.xa{left:297.506655pt;}
.x8{left:300.866655pt;}
.x4{left:311.746655pt;}
.xd{left:344.226655pt;}
.x5{left:382.786655pt;}
.x2{left:406.333322pt;}
.x1{left:453.693322pt;}
}




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