
    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_2ec22b956b4b76614094100a.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_26fb0ab93cadc01046f19d5b.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_0fc81e2296db6ee2668e8a7b.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_90a5a992013ed8bfd7e1f88c.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_c232d3c2b5fad979c15d23c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_3d0a19938ce8ae4c628fd8c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196289;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_bee8a4007f77e5dacfdd206a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196289;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_243ede4dc804a85b98830557.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7d8695d3f1cd16cb0633fed3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f74382a49a63ff114cd4eca4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.163086;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;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.750000px;}
.ls3{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.375600px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.023760px;}
.ls8{letter-spacing:0.259200px;}
.ls5{letter-spacing:0.997920px;}
.ls1{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.620000px;}
.lsb{letter-spacing:1.800000px;}
.ls0{letter-spacing:2.280000px;}
.ls4{letter-spacing:3.330720px;}
.ls9{letter-spacing:63.238560px;}
.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:-18.900000px;}
.ws7{word-spacing:-18.817920px;}
.ws6{word-spacing:-17.843760px;}
.ws0{word-spacing:-17.820000px;}
.ws4{word-spacing:-17.444400px;}
.ws3{word-spacing:-17.070000px;}
.ws5{word-spacing:-16.109280px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-5.132160px;}
._5{margin-left:-3.136320px;}
._c{margin-left:-2.090880px;}
._0{margin-left:-1.045440px;}
._3{width:1.330560px;}
._1{width:2.566080px;}
._8{width:3.611520px;}
._b{width:5.007840px;}
._11{width:6.272640px;}
._f{width:7.484400px;}
._d{width:8.519040px;}
._15{width:9.575280px;}
._e{width:10.795680px;}
._17{width:11.903760px;}
._10{width:12.925440px;}
._12{width:14.517360px;}
._13{width:15.530400px;}
._14{width:16.696800px;}
._16{width:19.863600px;}
._1d{width:20.880480px;}
._18{width:21.882960px;}
._19{width:23.902320px;}
._6{width:27.656640px;}
._1b{width:28.892160px;}
._1a{width:30.507840px;}
._1c{width:31.648320px;}
._2{width:34.024320px;}
._4{width:36.115200px;}
._9{width:38.776320px;}
._7{width:45.048960px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:71.280000px;}
.fs0{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y58{bottom:126.936000px;}
.y1e{bottom:133.956000px;}
.y3c{bottom:136.656000px;}
.y3b{bottom:157.755000px;}
.y1d{bottom:165.315000px;}
.y57{bottom:169.095000px;}
.y77{bottom:170.175000px;}
.y56{bottom:189.615000px;}
.y1c{bottom:196.095000px;}
.y3a{bottom:202.035000px;}
.y55{bottom:210.675000px;}
.y76{bottom:211.215000px;}
.y1b{bottom:227.415000px;}
.y54{bottom:231.225000px;}
.y39{bottom:238.785000px;}
.y53{bottom:251.745000px;}
.y75{bottom:253.905000px;}
.y1a{bottom:258.225000px;}
.y74{bottom:274.425000px;}
.y38{bottom:276.045000px;}
.y19{bottom:289.545000px;}
.y73{bottom:294.945000px;}
.y52{bottom:298.725000px;}
.y72{bottom:316.050000px;}
.y37{bottom:319.290000px;}
.y18{bottom:320.370000px;}
.y36{bottom:339.810000px;}
.y51{bottom:346.830000px;}
.y17{bottom:351.690000px;}
.y71{bottom:357.090000px;}
.y35{bottom:360.330000px;}
.y50{bottom:367.350000px;}
.y34{bottom:381.390000px;}
.y16{bottom:382.500000px;}
.y4f{bottom:387.900000px;}
.y8e{bottom:393.840000px;}
.y70{bottom:399.240000px;}
.y33{bottom:401.940000px;}
.y4e{bottom:408.960000px;}
.y15{bottom:413.820000px;}
.y6f{bottom:419.760000px;}
.y32{bottom:422.460000px;}
.y4d{bottom:429.480000px;}
.y8d{bottom:436.500000px;}
.y6e{bottom:440.820000px;}
.y31{bottom:443.520000px;}
.y14{bottom:444.600000px;}
.y4c{bottom:450.000000px;}
.y8c{bottom:457.020000px;}
.y30{bottom:464.070000px;}
.y4b{bottom:471.090000px;}
.y13{bottom:475.950000px;}
.y8b{bottom:478.110000px;}
.y6d{bottom:482.430000px;}
.y2f{bottom:484.590000px;}
.y8a{bottom:498.630000px;}
.y2e{bottom:505.650000px;}
.y12{bottom:506.730000px;}
.y4a{bottom:512.130000px;}
.y89{bottom:519.150000px;}
.y6c{bottom:526.710000px;}
.y11{bottom:538.095000px;}
.y88{bottom:540.255000px;}
.y2d{bottom:551.055000px;}
.y49{bottom:554.295000px;}
.y87{bottom:560.775000px;}
.y6b{bottom:562.935000px;}
.y10{bottom:568.875000px;}
.y48{bottom:574.815000px;}
.y86{bottom:581.295000px;}
.y47{bottom:595.875000px;}
.yf{bottom:600.195000px;}
.y85{bottom:602.355000px;}
.y2c{bottom:603.975000px;}
.y6a{bottom:605.055000px;}
.y46{bottom:616.425000px;}
.y84{bottom:622.905000px;}
.y69{bottom:625.605000px;}
.ye{bottom:631.005000px;}
.y2b{bottom:635.325000px;}
.y83{bottom:643.425000px;}
.y68{bottom:646.665000px;}
.y45{bottom:657.465000px;}
.yd{bottom:662.325000px;}
.y82{bottom:664.485000px;}
.y2a{bottom:666.105000px;}
.y67{bottom:667.185000px;}
.y81{bottom:685.005000px;}
.y66{bottom:688.245000px;}
.yc{bottom:693.150000px;}
.y29{bottom:697.470000px;}
.y80{bottom:705.570000px;}
.y44{bottom:710.430000px;}
.yb{bottom:723.930000px;}
.y7f{bottom:726.630000px;}
.y28{bottom:729.330000px;}
.y65{bottom:733.110000px;}
.y7e{bottom:747.150000px;}
.y27{bottom:761.190000px;}
.y43{bottom:762.270000px;}
.y7d{bottom:767.700000px;}
.y64{bottom:770.940000px;}
.ya{bottom:775.800000px;}
.y7c{bottom:788.760000px;}
.y26{bottom:792.540000px;}
.y42{bottom:793.080000px;}
.y9{bottom:809.280000px;}
.y7b{bottom:809.820000px;}
.y63{bottom:814.680000px;}
.y25{bottom:823.320000px;}
.y62{bottom:835.740000px;}
.y8{bottom:841.680000px;}
.y41{bottom:845.490000px;}
.y24{bottom:854.670000px;}
.y61{bottom:856.290000px;}
.y7{bottom:874.650000px;}
.y40{bottom:876.270000px;}
.y60{bottom:876.810000px;}
.y23{bottom:885.450000px;}
.y7a{bottom:897.330000px;}
.y5f{bottom:897.870000px;}
.y6{bottom:907.050000px;}
.y5e{bottom:918.390000px;}
.y5{bottom:928.155000px;}
.y3f{bottom:928.695000px;}
.y22{bottom:936.795000px;}
.y5d{bottom:938.955000px;}
.y3e{bottom:959.475000px;}
.y5c{bottom:960.015000px;}
.y4{bottom:962.175000px;}
.y79{bottom:979.995000px;}
.y21{bottom:980.535000px;}
.y3{bottom:998.385000px;}
.y5b{bottom:1001.085000px;}
.y3d{bottom:1011.885000px;}
.y5a{bottom:1022.145000px;}
.y2{bottom:1028.085000px;}
.y20{bottom:1032.945000px;}
.y78{bottom:1043.205000px;}
.y1{bottom:1057.785000px;}
.y59{bottom:1063.185000px;}
.y1f{bottom:1063.725000px;}
.h4{height:49.770703px;}
.h1{height:67.057031px;}
.h3{height:69.957422px;}
.h6{height:70.897148px;}
.h5{height:71.836875px;}
.h7{height:72.985430px;}
.h2{height:95.782500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.072000px;}
.x3{left:125.352000px;}
.xc{left:135.072000px;}
.xd{left:162.105000px;}
.x5{left:215.070000px;}
.x4{left:258.270000px;}
.x14{left:266.370000px;}
.x6{left:280.980000px;}
.x13{left:330.150000px;}
.xe{left:333.930000px;}
.xf{left:335.550000px;}
.x2{left:344.730000px;}
.x16{left:346.350000px;}
.xa{left:351.750000px;}
.x8{left:366.870000px;}
.xb{left:378.210000px;}
.x12{left:389.595000px;}
.x10{left:395.535000px;}
.x15{left:406.875000px;}
.x7{left:425.775000px;}
.x11{left:427.935000px;}
.x9{left:459.285000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.666667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.333867pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.021120pt;}
.ls8{letter-spacing:0.230400pt;}
.ls5{letter-spacing:0.887040pt;}
.ls1{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.440000pt;}
.lsb{letter-spacing:1.600000pt;}
.ls0{letter-spacing:2.026667pt;}
.ls4{letter-spacing:2.960640pt;}
.ls9{letter-spacing:56.212053pt;}
.ws1{word-spacing:-16.800000pt;}
.ws7{word-spacing:-16.727040pt;}
.ws6{word-spacing:-15.861120pt;}
.ws0{word-spacing:-15.840000pt;}
.ws4{word-spacing:-15.506133pt;}
.ws3{word-spacing:-15.173333pt;}
.ws5{word-spacing:-14.319360pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-4.561920pt;}
._5{margin-left:-2.787840pt;}
._c{margin-left:-1.858560pt;}
._0{margin-left:-0.929280pt;}
._3{width:1.182720pt;}
._1{width:2.280960pt;}
._8{width:3.210240pt;}
._b{width:4.451413pt;}
._11{width:5.575680pt;}
._f{width:6.652800pt;}
._d{width:7.572480pt;}
._15{width:8.511360pt;}
._e{width:9.596160pt;}
._17{width:10.581120pt;}
._10{width:11.489280pt;}
._12{width:12.904320pt;}
._13{width:13.804800pt;}
._14{width:14.841600pt;}
._16{width:17.656533pt;}
._1d{width:18.560427pt;}
._18{width:19.451520pt;}
._19{width:21.246507pt;}
._6{width:24.583680pt;}
._1b{width:25.681920pt;}
._1a{width:27.118080pt;}
._1c{width:28.131840pt;}
._2{width:30.243840pt;}
._4{width:32.102400pt;}
._9{width:34.467840pt;}
._7{width:40.043520pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:63.360000pt;}
.fs0{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:112.832000pt;}
.y1e{bottom:119.072000pt;}
.y3c{bottom:121.472000pt;}
.y3b{bottom:140.226667pt;}
.y1d{bottom:146.946667pt;}
.y57{bottom:150.306667pt;}
.y77{bottom:151.266667pt;}
.y56{bottom:168.546667pt;}
.y1c{bottom:174.306667pt;}
.y3a{bottom:179.586667pt;}
.y55{bottom:187.266667pt;}
.y76{bottom:187.746667pt;}
.y1b{bottom:202.146667pt;}
.y54{bottom:205.533333pt;}
.y39{bottom:212.253333pt;}
.y53{bottom:223.773333pt;}
.y75{bottom:225.693333pt;}
.y1a{bottom:229.533333pt;}
.y74{bottom:243.933333pt;}
.y38{bottom:245.373333pt;}
.y19{bottom:257.373333pt;}
.y73{bottom:262.173333pt;}
.y52{bottom:265.533333pt;}
.y72{bottom:280.933333pt;}
.y37{bottom:283.813333pt;}
.y18{bottom:284.773333pt;}
.y36{bottom:302.053333pt;}
.y51{bottom:308.293333pt;}
.y17{bottom:312.613333pt;}
.y71{bottom:317.413333pt;}
.y35{bottom:320.293333pt;}
.y50{bottom:326.533333pt;}
.y34{bottom:339.013333pt;}
.y16{bottom:340.000000pt;}
.y4f{bottom:344.800000pt;}
.y8e{bottom:350.080000pt;}
.y70{bottom:354.880000pt;}
.y33{bottom:357.280000pt;}
.y4e{bottom:363.520000pt;}
.y15{bottom:367.840000pt;}
.y6f{bottom:373.120000pt;}
.y32{bottom:375.520000pt;}
.y4d{bottom:381.760000pt;}
.y8d{bottom:388.000000pt;}
.y6e{bottom:391.840000pt;}
.y31{bottom:394.240000pt;}
.y14{bottom:395.200000pt;}
.y4c{bottom:400.000000pt;}
.y8c{bottom:406.240000pt;}
.y30{bottom:412.506667pt;}
.y4b{bottom:418.746667pt;}
.y13{bottom:423.066667pt;}
.y8b{bottom:424.986667pt;}
.y6d{bottom:428.826667pt;}
.y2f{bottom:430.746667pt;}
.y8a{bottom:443.226667pt;}
.y2e{bottom:449.466667pt;}
.y12{bottom:450.426667pt;}
.y4a{bottom:455.226667pt;}
.y89{bottom:461.466667pt;}
.y6c{bottom:468.186667pt;}
.y11{bottom:478.306667pt;}
.y88{bottom:480.226667pt;}
.y2d{bottom:489.826667pt;}
.y49{bottom:492.706667pt;}
.y87{bottom:498.466667pt;}
.y6b{bottom:500.386667pt;}
.y10{bottom:505.666667pt;}
.y48{bottom:510.946667pt;}
.y86{bottom:516.706667pt;}
.y47{bottom:529.666667pt;}
.yf{bottom:533.506667pt;}
.y85{bottom:535.426667pt;}
.y2c{bottom:536.866667pt;}
.y6a{bottom:537.826667pt;}
.y46{bottom:547.933333pt;}
.y84{bottom:553.693333pt;}
.y69{bottom:556.093333pt;}
.ye{bottom:560.893333pt;}
.y2b{bottom:564.733333pt;}
.y83{bottom:571.933333pt;}
.y68{bottom:574.813333pt;}
.y45{bottom:584.413333pt;}
.yd{bottom:588.733333pt;}
.y82{bottom:590.653333pt;}
.y2a{bottom:592.093333pt;}
.y67{bottom:593.053333pt;}
.y81{bottom:608.893333pt;}
.y66{bottom:611.773333pt;}
.yc{bottom:616.133333pt;}
.y29{bottom:619.973333pt;}
.y80{bottom:627.173333pt;}
.y44{bottom:631.493333pt;}
.yb{bottom:643.493333pt;}
.y7f{bottom:645.893333pt;}
.y28{bottom:648.293333pt;}
.y65{bottom:651.653333pt;}
.y7e{bottom:664.133333pt;}
.y27{bottom:676.613333pt;}
.y43{bottom:677.573333pt;}
.y7d{bottom:682.400000pt;}
.y64{bottom:685.280000pt;}
.ya{bottom:689.600000pt;}
.y7c{bottom:701.120000pt;}
.y26{bottom:704.480000pt;}
.y42{bottom:704.960000pt;}
.y9{bottom:719.360000pt;}
.y7b{bottom:719.840000pt;}
.y63{bottom:724.160000pt;}
.y25{bottom:731.840000pt;}
.y62{bottom:742.880000pt;}
.y8{bottom:748.160000pt;}
.y41{bottom:751.546667pt;}
.y24{bottom:759.706667pt;}
.y61{bottom:761.146667pt;}
.y7{bottom:777.466667pt;}
.y40{bottom:778.906667pt;}
.y60{bottom:779.386667pt;}
.y23{bottom:787.066667pt;}
.y7a{bottom:797.626667pt;}
.y5f{bottom:798.106667pt;}
.y6{bottom:806.266667pt;}
.y5e{bottom:816.346667pt;}
.y5{bottom:825.026667pt;}
.y3f{bottom:825.506667pt;}
.y22{bottom:832.706667pt;}
.y5d{bottom:834.626667pt;}
.y3e{bottom:852.866667pt;}
.y5c{bottom:853.346667pt;}
.y4{bottom:855.266667pt;}
.y79{bottom:871.106667pt;}
.y21{bottom:871.586667pt;}
.y3{bottom:887.453333pt;}
.y5b{bottom:889.853333pt;}
.y3d{bottom:899.453333pt;}
.y5a{bottom:908.573333pt;}
.y2{bottom:913.853333pt;}
.y20{bottom:918.173333pt;}
.y78{bottom:927.293333pt;}
.y1{bottom:940.253333pt;}
.y59{bottom:945.053333pt;}
.y1f{bottom:945.533333pt;}
.h4{height:44.240625pt;}
.h1{height:59.606250pt;}
.h3{height:62.184375pt;}
.h6{height:63.019688pt;}
.h5{height:63.855000pt;}
.h7{height:64.875937pt;}
.h2{height:85.140000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.064000pt;}
.x3{left:111.424000pt;}
.xc{left:120.064000pt;}
.xd{left:144.093333pt;}
.x5{left:191.173333pt;}
.x4{left:229.573333pt;}
.x14{left:236.773333pt;}
.x6{left:249.760000pt;}
.x13{left:293.466667pt;}
.xe{left:296.826667pt;}
.xf{left:298.266667pt;}
.x2{left:306.426667pt;}
.x16{left:307.866667pt;}
.xa{left:312.666667pt;}
.x8{left:326.106667pt;}
.xb{left:336.186667pt;}
.x12{left:346.306667pt;}
.x10{left:351.586667pt;}
.x15{left:361.666667pt;}
.x7{left:378.466667pt;}
.x11{left:380.386667pt;}
.x9{left:408.253333pt;}
}




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