
    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_64a153c3e391ce213018ed1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_46966d4a40ae02ba14659360.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.098145;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_9b34ff6f963acf01ab1e9e6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_11dc321e0446431626c44595.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.745117;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_87a59a8932e0a184712d3246.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904785;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_9e54fedc34cbc222025bbb13.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.098145;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_b07f1a10116e4ca1e6f87e40.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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:20.880000px;}
.lsf{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.540000px;}
.lse{letter-spacing:5.220000px;}
.lsc{letter-spacing:40.986720px;}
.lsb{letter-spacing:71.424000px;}
.ls3{letter-spacing:72.144000px;}
.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:-23.418720px;}
.ws6{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.680200px;}
.ws0{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.328000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._b{margin-left:-3.286800px;}
._c{margin-left:-2.211120px;}
._8{margin-left:-1.095120px;}
._1{width:1.254960px;}
._a{width:2.330640px;}
._9{width:3.525840px;}
._d{width:4.907760px;}
._18{width:5.908320px;}
._f{width:6.912960px;}
._10{width:7.998480px;}
._14{width:9.029520px;}
._13{width:10.039680px;}
._12{width:11.115360px;}
._15{width:13.829520px;}
._11{width:17.031600px;}
._16{width:52.091280px;}
._17{width:93.744000px;}
._7{width:657.660000px;}
._5{width:705.900000px;}
._2{width:717.020400px;}
._3{width:862.860000px;}
._4{width:964.367040px;}
._e{width:979.307040px;}
._0{width:1026.336000px;}
._6{width:1310.736000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf{bottom:56.340000px;}
.ye{bottom:73.440000px;}
.yd{bottom:90.720000px;}
.yc{bottom:108.000000px;}
.yb{bottom:125.280000px;}
.y85{bottom:149.040000px;}
.y50{bottom:150.480000px;}
.y84{bottom:166.320000px;}
.y4f{bottom:167.760000px;}
.y99{bottom:168.840000px;}
.y83{bottom:183.600000px;}
.y98{bottom:186.120000px;}
.y4e{bottom:200.010000px;}
.y82{bottom:200.730000px;}
.y97{bottom:203.250000px;}
.y4d{bottom:217.290000px;}
.y81{bottom:218.010000px;}
.y96{bottom:220.530000px;}
.y4c{bottom:234.570000px;}
.y80{bottom:235.290000px;}
.y95{bottom:237.810000px;}
.y4b{bottom:251.850000px;}
.y7f{bottom:252.570000px;}
.y94{bottom:255.090000px;}
.y4a{bottom:269.130000px;}
.y7e{bottom:269.850000px;}
.y49{bottom:286.410000px;}
.y93{bottom:291.090000px;}
.y48{bottom:303.510000px;}
.y7d{bottom:305.850000px;}
.y47{bottom:320.790000px;}
.y92{bottom:326.010000px;}
.y7c{bottom:340.770000px;}
.y46{bottom:353.010000px;}
.y91{bottom:354.990000px;}
.y7b{bottom:358.050000px;}
.y2e{bottom:368.850000px;}
.y45{bottom:370.290000px;}
.y7a{bottom:375.330000px;}
.y2d{bottom:386.130000px;}
.y44{bottom:387.570000px;}
.y79{bottom:392.430000px;}
.y2c{bottom:403.410000px;}
.y43{bottom:404.850000px;}
.y78{bottom:409.710000px;}
.y2b{bottom:420.690000px;}
.y42{bottom:422.130000px;}
.y77{bottom:426.990000px;}
.y2a{bottom:437.835000px;}
.y41{bottom:439.275000px;}
.y76{bottom:444.315000px;}
.y29{bottom:455.115000px;}
.y40{bottom:456.555000px;}
.y75{bottom:461.595000px;}
.y74{bottom:478.875000px;}
.y3f{bottom:488.775000px;}
.y28{bottom:491.115000px;}
.y73{bottom:495.975000px;}
.y3e{bottom:506.055000px;}
.y72{bottom:513.255000px;}
.y3d{bottom:523.335000px;}
.y27{bottom:526.035000px;}
.y71{bottom:530.535000px;}
.y3c{bottom:540.615000px;}
.y26{bottom:543.315000px;}
.y70{bottom:547.815000px;}
.y3b{bottom:557.895000px;}
.y25{bottom:560.595000px;}
.y6f{bottom:565.095000px;}
.y24{bottom:577.875000px;}
.y6e{bottom:582.195000px;}
.y3a{bottom:593.895000px;}
.y23{bottom:595.155000px;}
.y22{bottom:612.435000px;}
.y6d{bottom:614.415000px;}
.y39{bottom:614.595000px;}
.y6c{bottom:631.695000px;}
.y21{bottom:648.255000px;}
.y6b{bottom:648.975000px;}
.y38{bottom:653.295000px;}
.y6a{bottom:666.255000px;}
.y20{bottom:683.205000px;}
.y69{bottom:683.565000px;}
.y37{bottom:688.245000px;}
.y68{bottom:700.845000px;}
.y36{bottom:705.525000px;}
.y1f{bottom:715.605000px;}
.y67{bottom:718.125000px;}
.y35{bottom:722.805000px;}
.y34{bottom:740.085000px;}
.y1e{bottom:747.825000px;}
.y66{bottom:750.345000px;}
.y1d{bottom:765.105000px;}
.y65{bottom:767.625000px;}
.y33{bottom:775.365000px;}
.y1c{bottom:782.385000px;}
.y64{bottom:784.725000px;}
.y1b{bottom:799.485000px;}
.y63{bottom:802.005000px;}
.y32{bottom:804.345000px;}
.y1a{bottom:816.765000px;}
.y62{bottom:819.285000px;}
.y61{bottom:836.565000px;}
.ya8{bottom:844.665000px;}
.y19{bottom:852.765000px;}
.y60{bottom:853.845000px;}
.ya7{bottom:861.945000px;}
.y5f{bottom:871.125000px;}
.ya6{bottom:879.225000px;}
.y90{bottom:884.085000px;}
.y5e{bottom:888.225000px;}
.y18{bottom:890.745000px;}
.ya5{bottom:896.325000px;}
.y5d{bottom:905.505000px;}
.y17{bottom:908.025000px;}
.ya4{bottom:913.650000px;}
.y8f{bottom:916.350000px;}
.y5c{bottom:922.830000px;}
.y16{bottom:925.350000px;}
.ya3{bottom:930.930000px;}
.y8e{bottom:933.630000px;}
.y5b{bottom:940.110000px;}
.y15{bottom:942.630000px;}
.ya2{bottom:948.210000px;}
.y8d{bottom:950.910000px;}
.y5a{bottom:957.390000px;}
.y14{bottom:959.730000px;}
.ya1{bottom:965.490000px;}
.y8c{bottom:968.190000px;}
.y13{bottom:977.550000px;}
.ya0{bottom:982.590000px;}
.y8b{bottom:985.290000px;}
.y59{bottom:989.610000px;}
.y9f{bottom:999.870000px;}
.y8a{bottom:1002.570000px;}
.y58{bottom:1006.890000px;}
.y12{bottom:1015.710000px;}
.y9e{bottom:1017.150000px;}
.y57{bottom:1023.990000px;}
.y9d{bottom:1034.430000px;}
.y89{bottom:1038.570000px;}
.y56{bottom:1041.270000px;}
.y11{bottom:1043.790000px;}
.y9c{bottom:1051.710000px;}
.y55{bottom:1058.550000px;}
.y10{bottom:1067.910000px;}
.y9b{bottom:1068.990000px;}
.y88{bottom:1073.490000px;}
.y54{bottom:1075.830000px;}
.y87{bottom:1090.770000px;}
.ya{bottom:1092.030000px;}
.y53{bottom:1093.110000px;}
.y9a{bottom:1107.510000px;}
.y86{bottom:1108.050000px;}
.y9{bottom:1110.930000px;}
.y52{bottom:1125.330000px;}
.y8{bottom:1128.030000px;}
.y51{bottom:1142.610000px;}
.y7{bottom:1145.310000px;}
.y6{bottom:1162.620000px;}
.y5{bottom:1179.900000px;}
.y4{bottom:1197.180000px;}
.y31{bottom:1209.780000px;}
.y3{bottom:1214.460000px;}
.y30{bottom:1227.420000px;}
.y2{bottom:1231.560000px;}
.y2f{bottom:1247.220000px;}
.y1{bottom:1248.840000px;}
.h7{height:49.605469px;}
.h8{height:52.417969px;}
.h6{height:52.727695px;}
.h2{height:53.573906px;}
.h5{height:58.445156px;}
.h9{height:59.383125px;}
.h4{height:61.329023px;}
.ha{height:64.546875px;}
.h3{height:65.884219px;}
.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:106.235987px;}
.x2{left:123.695987px;}
.xe{left:138.275987px;}
.x5{left:146.555987px;}
.x4{left:223.409987px;}
.xd{left:249.509987px;}
.x10{left:266.969987px;}
.x6{left:344.414987px;}
.x7{left:355.394987px;}
.x9{left:397.334987px;}
.x3{left:409.754987px;}
.x8{left:446.474987px;}
.xc{left:604.364987px;}
.xb{left:770.189987px;}
.xf{left:776.129987px;}
.xa{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.480000pt;}
.lse{letter-spacing:4.640000pt;}
.lsc{letter-spacing:36.432640pt;}
.lsb{letter-spacing:63.488000pt;}
.ls3{letter-spacing:64.128000pt;}
.ws1{word-spacing:-20.816640pt;}
.ws6{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.ws8{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.736000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._b{margin-left:-2.921600pt;}
._c{margin-left:-1.965440pt;}
._8{margin-left:-0.973440pt;}
._1{width:1.115520pt;}
._a{width:2.071680pt;}
._9{width:3.134080pt;}
._d{width:4.362453pt;}
._18{width:5.251840pt;}
._f{width:6.144853pt;}
._10{width:7.109760pt;}
._14{width:8.026240pt;}
._13{width:8.924160pt;}
._12{width:9.880320pt;}
._15{width:12.292907pt;}
._11{width:15.139200pt;}
._16{width:46.303360pt;}
._17{width:83.328000pt;}
._7{width:584.586667pt;}
._5{width:627.466667pt;}
._2{width:637.351467pt;}
._3{width:766.986667pt;}
._4{width:857.215147pt;}
._e{width:870.495147pt;}
._0{width:912.298667pt;}
._6{width:1165.098667pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:50.080000pt;}
.ye{bottom:65.280000pt;}
.yd{bottom:80.640000pt;}
.yc{bottom:96.000000pt;}
.yb{bottom:111.360000pt;}
.y85{bottom:132.480000pt;}
.y50{bottom:133.760000pt;}
.y84{bottom:147.840000pt;}
.y4f{bottom:149.120000pt;}
.y99{bottom:150.080000pt;}
.y83{bottom:163.200000pt;}
.y98{bottom:165.440000pt;}
.y4e{bottom:177.786667pt;}
.y82{bottom:178.426667pt;}
.y97{bottom:180.666667pt;}
.y4d{bottom:193.146667pt;}
.y81{bottom:193.786667pt;}
.y96{bottom:196.026667pt;}
.y4c{bottom:208.506667pt;}
.y80{bottom:209.146667pt;}
.y95{bottom:211.386667pt;}
.y4b{bottom:223.866667pt;}
.y7f{bottom:224.506667pt;}
.y94{bottom:226.746667pt;}
.y4a{bottom:239.226667pt;}
.y7e{bottom:239.866667pt;}
.y49{bottom:254.586667pt;}
.y93{bottom:258.746667pt;}
.y48{bottom:269.786667pt;}
.y7d{bottom:271.866667pt;}
.y47{bottom:285.146667pt;}
.y92{bottom:289.786667pt;}
.y7c{bottom:302.906667pt;}
.y46{bottom:313.786667pt;}
.y91{bottom:315.546667pt;}
.y7b{bottom:318.266667pt;}
.y2e{bottom:327.866667pt;}
.y45{bottom:329.146667pt;}
.y7a{bottom:333.626667pt;}
.y2d{bottom:343.226667pt;}
.y44{bottom:344.506667pt;}
.y79{bottom:348.826667pt;}
.y2c{bottom:358.586667pt;}
.y43{bottom:359.866667pt;}
.y78{bottom:364.186667pt;}
.y2b{bottom:373.946667pt;}
.y42{bottom:375.226667pt;}
.y77{bottom:379.546667pt;}
.y2a{bottom:389.186667pt;}
.y41{bottom:390.466667pt;}
.y76{bottom:394.946667pt;}
.y29{bottom:404.546667pt;}
.y40{bottom:405.826667pt;}
.y75{bottom:410.306667pt;}
.y74{bottom:425.666667pt;}
.y3f{bottom:434.466667pt;}
.y28{bottom:436.546667pt;}
.y73{bottom:440.866667pt;}
.y3e{bottom:449.826667pt;}
.y72{bottom:456.226667pt;}
.y3d{bottom:465.186667pt;}
.y27{bottom:467.586667pt;}
.y71{bottom:471.586667pt;}
.y3c{bottom:480.546667pt;}
.y26{bottom:482.946667pt;}
.y70{bottom:486.946667pt;}
.y3b{bottom:495.906667pt;}
.y25{bottom:498.306667pt;}
.y6f{bottom:502.306667pt;}
.y24{bottom:513.666667pt;}
.y6e{bottom:517.506667pt;}
.y3a{bottom:527.906667pt;}
.y23{bottom:529.026667pt;}
.y22{bottom:544.386667pt;}
.y6d{bottom:546.146667pt;}
.y39{bottom:546.306667pt;}
.y6c{bottom:561.506667pt;}
.y21{bottom:576.226667pt;}
.y6b{bottom:576.866667pt;}
.y38{bottom:580.706667pt;}
.y6a{bottom:592.226667pt;}
.y20{bottom:607.293333pt;}
.y69{bottom:607.613333pt;}
.y37{bottom:611.773333pt;}
.y68{bottom:622.973333pt;}
.y36{bottom:627.133333pt;}
.y1f{bottom:636.093333pt;}
.y67{bottom:638.333333pt;}
.y35{bottom:642.493333pt;}
.y34{bottom:657.853333pt;}
.y1e{bottom:664.733333pt;}
.y66{bottom:666.973333pt;}
.y1d{bottom:680.093333pt;}
.y65{bottom:682.333333pt;}
.y33{bottom:689.213333pt;}
.y1c{bottom:695.453333pt;}
.y64{bottom:697.533333pt;}
.y1b{bottom:710.653333pt;}
.y63{bottom:712.893333pt;}
.y32{bottom:714.973333pt;}
.y1a{bottom:726.013333pt;}
.y62{bottom:728.253333pt;}
.y61{bottom:743.613333pt;}
.ya8{bottom:750.813333pt;}
.y19{bottom:758.013333pt;}
.y60{bottom:758.973333pt;}
.ya7{bottom:766.173333pt;}
.y5f{bottom:774.333333pt;}
.ya6{bottom:781.533333pt;}
.y90{bottom:785.853333pt;}
.y5e{bottom:789.533333pt;}
.y18{bottom:791.773333pt;}
.ya5{bottom:796.733333pt;}
.y5d{bottom:804.893333pt;}
.y17{bottom:807.133333pt;}
.ya4{bottom:812.133333pt;}
.y8f{bottom:814.533333pt;}
.y5c{bottom:820.293333pt;}
.y16{bottom:822.533333pt;}
.ya3{bottom:827.493333pt;}
.y8e{bottom:829.893333pt;}
.y5b{bottom:835.653333pt;}
.y15{bottom:837.893333pt;}
.ya2{bottom:842.853333pt;}
.y8d{bottom:845.253333pt;}
.y5a{bottom:851.013333pt;}
.y14{bottom:853.093333pt;}
.ya1{bottom:858.213333pt;}
.y8c{bottom:860.613333pt;}
.y13{bottom:868.933333pt;}
.ya0{bottom:873.413333pt;}
.y8b{bottom:875.813333pt;}
.y59{bottom:879.653333pt;}
.y9f{bottom:888.773333pt;}
.y8a{bottom:891.173333pt;}
.y58{bottom:895.013333pt;}
.y12{bottom:902.853333pt;}
.y9e{bottom:904.133333pt;}
.y57{bottom:910.213333pt;}
.y9d{bottom:919.493333pt;}
.y89{bottom:923.173333pt;}
.y56{bottom:925.573333pt;}
.y11{bottom:927.813333pt;}
.y9c{bottom:934.853333pt;}
.y55{bottom:940.933333pt;}
.y10{bottom:949.253333pt;}
.y9b{bottom:950.213333pt;}
.y88{bottom:954.213333pt;}
.y54{bottom:956.293333pt;}
.y87{bottom:969.573333pt;}
.ya{bottom:970.693333pt;}
.y53{bottom:971.653333pt;}
.y9a{bottom:984.453333pt;}
.y86{bottom:984.933333pt;}
.y9{bottom:987.493333pt;}
.y52{bottom:1000.293333pt;}
.y8{bottom:1002.693333pt;}
.y51{bottom:1015.653333pt;}
.y7{bottom:1018.053333pt;}
.y6{bottom:1033.440000pt;}
.y5{bottom:1048.800000pt;}
.y4{bottom:1064.160000pt;}
.y31{bottom:1075.360000pt;}
.y3{bottom:1079.520000pt;}
.y30{bottom:1091.040000pt;}
.y2{bottom:1094.720000pt;}
.y2f{bottom:1108.640000pt;}
.y1{bottom:1110.080000pt;}
.h7{height:44.093750pt;}
.h8{height:46.593750pt;}
.h6{height:46.869062pt;}
.h2{height:47.621250pt;}
.h5{height:51.951250pt;}
.h9{height:52.785000pt;}
.h4{height:54.514687pt;}
.ha{height:57.375000pt;}
.h3{height:58.563750pt;}
.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:94.431988pt;}
.x2{left:109.951988pt;}
.xe{left:122.911988pt;}
.x5{left:130.271988pt;}
.x4{left:198.586655pt;}
.xd{left:221.786655pt;}
.x10{left:237.306655pt;}
.x6{left:306.146655pt;}
.x7{left:315.906655pt;}
.x9{left:353.186655pt;}
.x3{left:364.226655pt;}
.x8{left:396.866655pt;}
.xc{left:537.213322pt;}
.xb{left:684.613322pt;}
.xf{left:689.893322pt;}
.xa{left:699.333322pt;}
}




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