
    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_53e4717b2630fc255f8c56c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_65b751c6b2ddae4d3e27b8bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_593a06a8fff177c706fd9ef9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4167924450a73bb1f4a8a798.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_8fbf8e9094efcb5bfce7912f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_e48be028243e8b2850c0d4d1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e6cac40466c1d43532c2e157.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_df3a390a0444ca7ac821663b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dc77c80fa5a86ca2b5f26e92.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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:-0.094800px;}
.lsa{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.054720px;}
.ls2{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.109440px;}
.lsc{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.666720px;}
.ls0{letter-spacing:1548.564000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.488000px;}
.ws5{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.734480px;}
.ws1{word-spacing:-13.625280px;}
.ws3{word-spacing:0.000000px;}
._21{margin-left:-2.365920px;}
._1{margin-left:-1.080000px;}
._0{width:1.254960px;}
._19{width:2.369040px;}
._d{width:3.648000px;}
._e{width:4.968000px;}
._2{width:6.048000px;}
._17{width:7.056000px;}
._1c{width:8.064000px;}
._c{width:9.120000px;}
._2c{width:10.152000px;}
._9{width:11.232000px;}
._8{width:12.240000px;}
._23{width:13.896000px;}
._24{width:14.976000px;}
._f{width:16.344000px;}
._33{width:19.152000px;}
._2a{width:20.160000px;}
._20{width:21.240000px;}
._16{width:23.112000px;}
._1f{width:24.264000px;}
._3{width:25.704000px;}
._18{width:26.708160px;}
._14{width:27.912000px;}
._28{width:29.184000px;}
._32{width:30.240000px;}
._b{width:31.248000px;}
._a{width:32.328000px;}
._30{width:33.336000px;}
._1e{width:34.344000px;}
._2b{width:36.288000px;}
._22{width:37.440000px;}
._4{width:39.096000px;}
._5{width:40.184160px;}
._15{width:41.688000px;}
._10{width:43.560000px;}
._11{width:44.568000px;}
._29{width:46.944000px;}
._1a{width:48.384000px;}
._1b{width:49.390080px;}
._6{width:50.880000px;}
._7{width:52.200000px;}
._12{width:54.144000px;}
._13{width:55.224000px;}
._25{width:56.880000px;}
._26{width:58.085040px;}
._2d{width:59.334960px;}
._27{width:70.344000px;}
._31{width:71.424000px;}
._1d{width:76.176000px;}
._35{width:80.856000px;}
._34{width:81.936000px;}
._36{width:83.436000px;}
._2e{width:86.256000px;}
._2f{width:87.850080px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(19,138,196);}
.fc1{color:rgb(54,54,54);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.492500px;}
.y3{bottom:56.376000px;}
.y36{bottom:57.996000px;}
.y2{bottom:70.416000px;}
.y4{bottom:70.423500px;}
.y35{bottom:79.956000px;}
.y30{bottom:141.336000px;}
.y80{bottom:146.376000px;}
.y61{bottom:149.076000px;}
.y2f{bottom:162.030000px;}
.y7f{bottom:167.070000px;}
.y60{bottom:169.770000px;}
.y2e{bottom:182.730000px;}
.y7e{bottom:187.770000px;}
.y86{bottom:190.470000px;}
.y2d{bottom:203.430000px;}
.y5f{bottom:208.470000px;}
.y85{bottom:211.170000px;}
.y2c{bottom:224.130000px;}
.y5e{bottom:229.170000px;}
.y84{bottom:231.870000px;}
.y2b{bottom:244.830000px;}
.y5d{bottom:249.870000px;}
.y83{bottom:252.570000px;}
.y2a{bottom:265.530000px;}
.y5c{bottom:270.615000px;}
.y82{bottom:273.315000px;}
.y29{bottom:286.275000px;}
.y5b{bottom:291.315000px;}
.y28{bottom:306.975000px;}
.y5a{bottom:312.015000px;}
.y27{bottom:327.675000px;}
.y7d{bottom:330.015000px;}
.y59{bottom:332.715000px;}
.y26{bottom:348.375000px;}
.y7c{bottom:350.715000px;}
.y58{bottom:353.415000px;}
.y98{bottom:358.095000px;}
.y25{bottom:369.075000px;}
.y7b{bottom:371.415000px;}
.y57{bottom:374.115000px;}
.y97{bottom:378.795000px;}
.y24{bottom:389.775000px;}
.y7a{bottom:392.115000px;}
.y56{bottom:394.815000px;}
.y79{bottom:412.815000px;}
.y55{bottom:415.515000px;}
.y96{bottom:418.395000px;}
.y23{bottom:428.475000px;}
.y78{bottom:433.515000px;}
.y54{bottom:436.215000px;}
.y22{bottom:449.175000px;}
.y77{bottom:454.215000px;}
.y53{bottom:456.915000px;}
.y95{bottom:459.975000px;}
.y21{bottom:469.875000px;}
.y76{bottom:474.915000px;}
.y52{bottom:477.615000px;}
.y20{bottom:490.575000px;}
.y75{bottom:495.615000px;}
.y81{bottom:498.315000px;}
.y94{bottom:498.675000px;}
.y1f{bottom:511.275000px;}
.y51{bottom:516.315000px;}
.y93{bottom:519.375000px;}
.y1e{bottom:531.975000px;}
.y50{bottom:537.015000px;}
.y1d{bottom:552.705000px;}
.y4f{bottom:557.745000px;}
.y92{bottom:557.925000px;}
.y1c{bottom:573.405000px;}
.y4e{bottom:578.445000px;}
.y1b{bottom:593.925000px;}
.y91{bottom:596.985000px;}
.y4d{bottom:599.145000px;}
.y1a{bottom:614.625000px;}
.y90{bottom:617.685000px;}
.y4c{bottom:619.845000px;}
.y19{bottom:635.325000px;}
.y8f{bottom:638.385000px;}
.y4b{bottom:640.545000px;}
.y18{bottom:656.025000px;}
.y74{bottom:658.545000px;}
.y8e{bottom:659.085000px;}
.y4a{bottom:661.245000px;}
.y17{bottom:676.725000px;}
.y73{bottom:679.245000px;}
.y8d{bottom:679.785000px;}
.y49{bottom:681.945000px;}
.y16{bottom:697.425000px;}
.y72{bottom:699.945000px;}
.y8c{bottom:700.485000px;}
.y48{bottom:702.645000px;}
.y71{bottom:720.645000px;}
.y8b{bottom:721.185000px;}
.y47{bottom:723.345000px;}
.y15{bottom:736.125000px;}
.y70{bottom:741.345000px;}
.y8a{bottom:741.885000px;}
.y46{bottom:744.045000px;}
.y6f{bottom:762.045000px;}
.y89{bottom:762.585000px;}
.y45{bottom:773.925000px;}
.y6e{bottom:782.745000px;}
.y88{bottom:783.285000px;}
.y14{bottom:783.465000px;}
.y6d{bottom:803.265000px;}
.y87{bottom:803.985000px;}
.y6c{bottom:823.965000px;}
.y44{bottom:824.685000px;}
.y13{bottom:831.165000px;}
.y43{bottom:845.430000px;}
.y12{bottom:851.910000px;}
.y6b{bottom:854.070000px;}
.y42{bottom:866.130000px;}
.y11{bottom:872.610000px;}
.y41{bottom:886.830000px;}
.y6a{bottom:904.830000px;}
.y40{bottom:907.530000px;}
.y69{bottom:925.530000px;}
.y3f{bottom:928.230000px;}
.y10{bottom:931.470000px;}
.y68{bottom:946.230000px;}
.y3e{bottom:948.930000px;}
.y67{bottom:966.930000px;}
.y3d{bottom:969.630000px;}
.y66{bottom:987.630000px;}
.y3c{bottom:990.330000px;}
.yf{bottom:996.450000px;}
.y65{bottom:1008.330000px;}
.y3b{bottom:1011.030000px;}
.y64{bottom:1029.030000px;}
.y3a{bottom:1031.730000px;}
.yc{bottom:1036.230000px;}
.ye{bottom:1044.330000px;}
.y63{bottom:1049.730000px;}
.y39{bottom:1052.430000px;}
.yb{bottom:1053.330000px;}
.y62{bottom:1070.430000px;}
.ya{bottom:1070.610000px;}
.yd{bottom:1078.710000px;}
.y9{bottom:1087.890000px;}
.y38{bottom:1091.130000px;}
.y8{bottom:1104.990000px;}
.y37{bottom:1111.830000px;}
.y7{bottom:1122.300000px;}
.y34{bottom:1138.320000px;}
.y6{bottom:1140.300000px;}
.y33{bottom:1161.540000px;}
.y32{bottom:1179.000000px;}
.y1{bottom:1192.680000px;}
.y31{bottom:1196.280000px;}
.h8{height:43.536094px;}
.h5{height:47.692500px;}
.h2{height:49.113281px;}
.hd{height:50.027344px;}
.h7{height:52.453125px;}
.hc{height:58.651172px;}
.he{height:61.370156px;}
.h4{height:62.327813px;}
.h3{height:69.086250px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.h9{height:78.679688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:26.985000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.036000px;}
.x4{left:116.496000px;}
.x7{left:134.856000px;}
.x2{left:145.476000px;}
.x8{left:232.590000px;}
.x9{left:432.795000px;}
.xa{left:456.375000px;}
.x6{left:550.365000px;}
.x3{left:731.310000px;}
.x5{left:784.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.084267pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.048640pt;}
.ls2{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.097280pt;}
.lsc{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.592640pt;}
.ls0{letter-spacing:1376.501333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.208427pt;}
.ws1{word-spacing:-12.111360pt;}
.ws3{word-spacing:0.000000pt;}
._21{margin-left:-2.103040pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.115520pt;}
._19{width:2.105813pt;}
._d{width:3.242667pt;}
._e{width:4.416000pt;}
._2{width:5.376000pt;}
._17{width:6.272000pt;}
._1c{width:7.168000pt;}
._c{width:8.106667pt;}
._2c{width:9.024000pt;}
._9{width:9.984000pt;}
._8{width:10.880000pt;}
._23{width:12.352000pt;}
._24{width:13.312000pt;}
._f{width:14.528000pt;}
._33{width:17.024000pt;}
._2a{width:17.920000pt;}
._20{width:18.880000pt;}
._16{width:20.544000pt;}
._1f{width:21.568000pt;}
._3{width:22.848000pt;}
._18{width:23.740587pt;}
._14{width:24.810667pt;}
._28{width:25.941333pt;}
._32{width:26.880000pt;}
._b{width:27.776000pt;}
._a{width:28.736000pt;}
._30{width:29.632000pt;}
._1e{width:30.528000pt;}
._2b{width:32.256000pt;}
._22{width:33.280000pt;}
._4{width:34.752000pt;}
._5{width:35.719253pt;}
._15{width:37.056000pt;}
._10{width:38.720000pt;}
._11{width:39.616000pt;}
._29{width:41.728000pt;}
._1a{width:43.008000pt;}
._1b{width:43.902293pt;}
._6{width:45.226667pt;}
._7{width:46.400000pt;}
._12{width:48.128000pt;}
._13{width:49.088000pt;}
._25{width:50.560000pt;}
._26{width:51.631147pt;}
._2d{width:52.742187pt;}
._27{width:62.528000pt;}
._31{width:63.488000pt;}
._1d{width:67.712000pt;}
._35{width:71.872000pt;}
._34{width:72.832000pt;}
._36{width:74.165333pt;}
._2e{width:76.672000pt;}
._2f{width:78.088960pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.993333pt;}
.y3{bottom:50.112000pt;}
.y36{bottom:51.552000pt;}
.y2{bottom:62.592000pt;}
.y4{bottom:62.598667pt;}
.y35{bottom:71.072000pt;}
.y30{bottom:125.632000pt;}
.y80{bottom:130.112000pt;}
.y61{bottom:132.512000pt;}
.y2f{bottom:144.026667pt;}
.y7f{bottom:148.506667pt;}
.y60{bottom:150.906667pt;}
.y2e{bottom:162.426667pt;}
.y7e{bottom:166.906667pt;}
.y86{bottom:169.306667pt;}
.y2d{bottom:180.826667pt;}
.y5f{bottom:185.306667pt;}
.y85{bottom:187.706667pt;}
.y2c{bottom:199.226667pt;}
.y5e{bottom:203.706667pt;}
.y84{bottom:206.106667pt;}
.y2b{bottom:217.626667pt;}
.y5d{bottom:222.106667pt;}
.y83{bottom:224.506667pt;}
.y2a{bottom:236.026667pt;}
.y5c{bottom:240.546667pt;}
.y82{bottom:242.946667pt;}
.y29{bottom:254.466667pt;}
.y5b{bottom:258.946667pt;}
.y28{bottom:272.866667pt;}
.y5a{bottom:277.346667pt;}
.y27{bottom:291.266667pt;}
.y7d{bottom:293.346667pt;}
.y59{bottom:295.746667pt;}
.y26{bottom:309.666667pt;}
.y7c{bottom:311.746667pt;}
.y58{bottom:314.146667pt;}
.y98{bottom:318.306667pt;}
.y25{bottom:328.066667pt;}
.y7b{bottom:330.146667pt;}
.y57{bottom:332.546667pt;}
.y97{bottom:336.706667pt;}
.y24{bottom:346.466667pt;}
.y7a{bottom:348.546667pt;}
.y56{bottom:350.946667pt;}
.y79{bottom:366.946667pt;}
.y55{bottom:369.346667pt;}
.y96{bottom:371.906667pt;}
.y23{bottom:380.866667pt;}
.y78{bottom:385.346667pt;}
.y54{bottom:387.746667pt;}
.y22{bottom:399.266667pt;}
.y77{bottom:403.746667pt;}
.y53{bottom:406.146667pt;}
.y95{bottom:408.866667pt;}
.y21{bottom:417.666667pt;}
.y76{bottom:422.146667pt;}
.y52{bottom:424.546667pt;}
.y20{bottom:436.066667pt;}
.y75{bottom:440.546667pt;}
.y81{bottom:442.946667pt;}
.y94{bottom:443.266667pt;}
.y1f{bottom:454.466667pt;}
.y51{bottom:458.946667pt;}
.y93{bottom:461.666667pt;}
.y1e{bottom:472.866667pt;}
.y50{bottom:477.346667pt;}
.y1d{bottom:491.293333pt;}
.y4f{bottom:495.773333pt;}
.y92{bottom:495.933333pt;}
.y1c{bottom:509.693333pt;}
.y4e{bottom:514.173333pt;}
.y1b{bottom:527.933333pt;}
.y91{bottom:530.653333pt;}
.y4d{bottom:532.573333pt;}
.y1a{bottom:546.333333pt;}
.y90{bottom:549.053333pt;}
.y4c{bottom:550.973333pt;}
.y19{bottom:564.733333pt;}
.y8f{bottom:567.453333pt;}
.y4b{bottom:569.373333pt;}
.y18{bottom:583.133333pt;}
.y74{bottom:585.373333pt;}
.y8e{bottom:585.853333pt;}
.y4a{bottom:587.773333pt;}
.y17{bottom:601.533333pt;}
.y73{bottom:603.773333pt;}
.y8d{bottom:604.253333pt;}
.y49{bottom:606.173333pt;}
.y16{bottom:619.933333pt;}
.y72{bottom:622.173333pt;}
.y8c{bottom:622.653333pt;}
.y48{bottom:624.573333pt;}
.y71{bottom:640.573333pt;}
.y8b{bottom:641.053333pt;}
.y47{bottom:642.973333pt;}
.y15{bottom:654.333333pt;}
.y70{bottom:658.973333pt;}
.y8a{bottom:659.453333pt;}
.y46{bottom:661.373333pt;}
.y6f{bottom:677.373333pt;}
.y89{bottom:677.853333pt;}
.y45{bottom:687.933333pt;}
.y6e{bottom:695.773333pt;}
.y88{bottom:696.253333pt;}
.y14{bottom:696.413333pt;}
.y6d{bottom:714.013333pt;}
.y87{bottom:714.653333pt;}
.y6c{bottom:732.413333pt;}
.y44{bottom:733.053333pt;}
.y13{bottom:738.813333pt;}
.y43{bottom:751.493333pt;}
.y12{bottom:757.253333pt;}
.y6b{bottom:759.173333pt;}
.y42{bottom:769.893333pt;}
.y11{bottom:775.653333pt;}
.y41{bottom:788.293333pt;}
.y6a{bottom:804.293333pt;}
.y40{bottom:806.693333pt;}
.y69{bottom:822.693333pt;}
.y3f{bottom:825.093333pt;}
.y10{bottom:827.973333pt;}
.y68{bottom:841.093333pt;}
.y3e{bottom:843.493333pt;}
.y67{bottom:859.493333pt;}
.y3d{bottom:861.893333pt;}
.y66{bottom:877.893333pt;}
.y3c{bottom:880.293333pt;}
.yf{bottom:885.733333pt;}
.y65{bottom:896.293333pt;}
.y3b{bottom:898.693333pt;}
.y64{bottom:914.693333pt;}
.y3a{bottom:917.093333pt;}
.yc{bottom:921.093333pt;}
.ye{bottom:928.293333pt;}
.y63{bottom:933.093333pt;}
.y39{bottom:935.493333pt;}
.yb{bottom:936.293333pt;}
.y62{bottom:951.493333pt;}
.ya{bottom:951.653333pt;}
.yd{bottom:958.853333pt;}
.y9{bottom:967.013333pt;}
.y38{bottom:969.893333pt;}
.y8{bottom:982.213333pt;}
.y37{bottom:988.293333pt;}
.y7{bottom:997.600000pt;}
.y34{bottom:1011.840000pt;}
.y6{bottom:1013.600000pt;}
.y33{bottom:1032.480000pt;}
.y32{bottom:1048.000000pt;}
.y1{bottom:1060.160000pt;}
.y31{bottom:1063.360000pt;}
.h8{height:38.698750pt;}
.h5{height:42.393333pt;}
.h2{height:43.656250pt;}
.hd{height:44.468750pt;}
.h7{height:46.625000pt;}
.hc{height:52.134375pt;}
.he{height:54.551250pt;}
.h4{height:55.402500pt;}
.h3{height:61.410000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.h9{height:69.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:23.986667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.032000pt;}
.x4{left:103.552000pt;}
.x7{left:119.872000pt;}
.x2{left:129.312000pt;}
.x8{left:206.746667pt;}
.x9{left:384.706667pt;}
.xa{left:405.666667pt;}
.x6{left:489.213333pt;}
.x3{left:650.053333pt;}
.x5{left:697.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; }
  