
    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_59b9a4ffe0a2f6356ef0ead9.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_100a6b0c2e71bdbc6498ff3c.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_2bc55f93061915ee23987659.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_f5bb2e5082c6c0859e96a036.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_97947f77541dfb97ea31441e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fc0f23f70b7db70f5a3cda0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_69145fa0c8c2b87d62cae8b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_bc30f6d11a2a2a06219b24b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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_954aa839bd2b91ee7f7b7890.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.600000px;}
.ls6{letter-spacing:-1.200000px;}
.lse{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.024000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.024000px;}
.ls3{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.322800px;}
.ls4{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.600000px;}
.lsb{letter-spacing:12.000000px;}
.lsa{letter-spacing:62.400000px;}
.lsc{letter-spacing:102.384000px;}
.ls9{letter-spacing:138.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;}
}
.ws3{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.976000px;}
.ws7{word-spacing:-17.568000px;}
.ws0{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.140000px;}
.ws2{word-spacing:0.000000px;}
._22{margin-left:-15.624000px;}
._23{margin-left:-10.800000px;}
._5{margin-left:-7.452000px;}
._3{margin-left:-5.544000px;}
._4{margin-left:-4.110000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._8{width:2.688000px;}
._7{width:4.284000px;}
._b{width:6.282000px;}
._a{width:7.368000px;}
._9{width:9.000000px;}
._1e{width:10.074000px;}
._21{width:11.838000px;}
._c{width:13.116000px;}
._6{width:14.118000px;}
._e{width:15.246000px;}
._f{width:16.824000px;}
._12{width:19.128000px;}
._d{width:20.454000px;}
._1d{width:21.804000px;}
._1c{width:23.016000px;}
._25{width:24.816000px;}
._24{width:25.848000px;}
._14{width:28.386000px;}
._13{width:29.592000px;}
._11{width:30.816000px;}
._10{width:31.968000px;}
._1f{width:38.880000px;}
._20{width:40.164000px;}
._1b{width:41.328000px;}
._1a{width:42.732000px;}
._16{width:48.432000px;}
._15{width:49.464000px;}
._17{width:51.198000px;}
._2c{width:54.594000px;}
._2b{width:55.614000px;}
._2a{width:58.584000px;}
._19{width:61.884000px;}
._18{width:63.174000px;}
._26{width:64.626000px;}
._28{width:84.744000px;}
._27{width:85.824000px;}
._29{width:87.954000px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:6.885000px;}
.y66{bottom:6.900000px;}
.y6a{bottom:6.915000px;}
.y63{bottom:7.200000px;}
.y6{bottom:68.737500px;}
.y38{bottom:89.437500px;}
.y37{bottom:94.837500px;}
.y31{bottom:97.537500px;}
.y36{bottom:107.737500px;}
.y77{bottom:108.337500px;}
.y35{bottom:113.137500px;}
.y30{bottom:121.237500px;}
.y48{bottom:126.037500px;}
.y34{bottom:126.637500px;}
.y47{bottom:131.437500px;}
.y46{bottom:144.337500px;}
.y2f{bottom:145.237500px;}
.y53{bottom:149.737500px;}
.y76{bottom:158.130000px;}
.y45{bottom:162.630000px;}
.y52{bottom:163.245000px;}
.y44{bottom:168.030000px;}
.y2e{bottom:168.975000px;}
.y43{bottom:180.975000px;}
.y75{bottom:181.875000px;}
.y42{bottom:186.375000px;}
.y2d{bottom:192.675000px;}
.y41{bottom:199.275000px;}
.y40{bottom:204.675000px;}
.y74{bottom:205.575000px;}
.y2c{bottom:216.675000px;}
.y3f{bottom:218.175000px;}
.y73{bottom:229.575000px;}
.y2b{bottom:240.375000px;}
.y72{bottom:253.275000px;}
.y51{bottom:264.075000px;}
.y2a{bottom:264.375000px;}
.y71{bottom:276.975000px;}
.y29{bottom:288.075000px;}
.y70{bottom:300.975000px;}
.y28{bottom:311.775000px;}
.y6f{bottom:324.675000px;}
.y50{bottom:335.475000px;}
.y27{bottom:335.775000px;}
.y33{bottom:342.705000px;}
.y6e{bottom:348.420000px;}
.y26{bottom:359.505000px;}
.y6d{bottom:372.420000px;}
.y25{bottom:383.205000px;}
.y6b{bottom:389.820000px;}
.y4f{bottom:406.905000px;}
.y24{bottom:407.205000px;}
.y3e{bottom:414.120000px;}
.y69{bottom:414.405000px;}
.y23{bottom:430.920000px;}
.y68{bottom:439.005000px;}
.y22{bottom:454.620000px;}
.y67{bottom:463.605000px;}
.y4e{bottom:478.320000px;}
.y21{bottom:478.620000px;}
.y65{bottom:488.205000px;}
.y20{bottom:502.305000px;}
.y64{bottom:512.550000px;}
.y1f{bottom:526.050000px;}
.y3d{bottom:532.950000px;}
.y62{bottom:537.150000px;}
.y4d{bottom:549.750000px;}
.y1e{bottom:550.050000px;}
.y3c{bottom:556.950000px;}
.y61{bottom:568.650000px;}
.y1d{bottom:573.750000px;}
.y60{bottom:592.650000px;}
.y1c{bottom:597.450000px;}
.y5f{bottom:616.350000px;}
.y4c{bottom:621.150000px;}
.y1b{bottom:621.450000px;}
.y5e{bottom:640.050000px;}
.y1a{bottom:645.150000px;}
.y5d{bottom:664.050000px;}
.y4b{bottom:664.950000px;}
.y19{bottom:668.850000px;}
.y3b{bottom:675.750000px;}
.y5c{bottom:683.880000px;}
.y18{bottom:692.880000px;}
.y17{bottom:716.580000px;}
.y16{bottom:740.280000px;}
.y15{bottom:764.280000px;}
.y4a{bottom:771.195000px;}
.y14{bottom:787.995000px;}
.y13{bottom:811.695000px;}
.y3a{bottom:818.580000px;}
.y12{bottom:835.695000px;}
.y49{bottom:842.580000px;}
.y11{bottom:859.425000px;}
.y10{bottom:883.125000px;}
.y32{bottom:890.025000px;}
.y5b{bottom:893.325000px;}
.yf{bottom:907.125000px;}
.y39{bottom:914.025000px;}
.y5a{bottom:917.325000px;}
.ye{bottom:930.825000px;}
.y59{bottom:941.025000px;}
.yd{bottom:954.525000px;}
.y58{bottom:964.725000px;}
.yc{bottom:978.525000px;}
.y57{bottom:988.725000px;}
.yb{bottom:1002.225000px;}
.y55{bottom:1012.425000px;}
.y56{bottom:1019.370000px;}
.ya{bottom:1025.955000px;}
.y54{bottom:1032.570000px;}
.y9{bottom:1049.955000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h10{height:23.700000px;}
.hf{height:23.737500px;}
.he{height:24.000000px;}
.hb{height:39.387305px;}
.h2{height:42.333984px;}
.h9{height:47.109375px;}
.hc{height:59.677734px;}
.h3{height:60.468750px;}
.hd{height:61.435547px;}
.h8{height:63.457031px;}
.h5{height:64.775391px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h11{height:74.004654px;}
.ha{height:82.441406px;}
.h4{height:84.656250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:121.537500px;}
.w4{width:364.650000px;}
.w3{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:7.530000px;}
.x3{left:84.937487px;}
.x13{left:90.037487px;}
.x27{left:95.137487px;}
.x6{left:132.937487px;}
.x1e{left:141.937473px;}
.x1f{left:147.937487px;}
.x2d{left:174.645000px;}
.x25{left:195.974973px;}
.x16{left:208.874973px;}
.x17{left:214.874987px;}
.x1a{left:227.174973px;}
.x1b{left:233.174987px;}
.xc{left:277.574987px;}
.x9{left:280.574987px;}
.x12{left:301.019987px;}
.x8{left:318.119987px;}
.xa{left:320.819987px;}
.xb{left:331.619987px;}
.x4{left:350.819987px;}
.x30{left:401.219987px;}
.x2b{left:409.319987px;}
.x5{left:428.549987px;}
.x7{left:446.249987px;}
.x2{left:457.049987px;}
.xe{left:465.449973px;}
.xf{left:471.449987px;}
.x1{left:510.449987px;}
.x26{left:532.349987px;}
.x2f{left:539.895000px;}
.x28{left:562.379987px;}
.x29{left:584.894973px;}
.x2a{left:596.894987px;}
.x18{left:611.894973px;}
.x19{left:617.879987px;}
.x10{left:663.524973px;}
.x11{left:669.524987px;}
.x1c{left:694.124973px;}
.x1d{left:700.124987px;}
.x21{left:704.024973px;}
.x2c{left:713.024987px;}
.x22{left:716.024987px;}
.x14{left:778.454973px;}
.x15{left:784.454987px;}
.x20{left:790.454987px;}
.x23{left:791.669973px;}
.x24{left:803.669987px;}
.xd{left:807.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.ls6{letter-spacing:-1.066667pt;}
.lse{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.021333pt;}
.ls3{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.286933pt;}
.ls4{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.533333pt;}
.lsb{letter-spacing:10.666667pt;}
.lsa{letter-spacing:55.466667pt;}
.lsc{letter-spacing:91.008000pt;}
.ls9{letter-spacing:123.008000pt;}
.ws3{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.978667pt;}
.ws7{word-spacing:-15.616000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws4{word-spacing:-11.680000pt;}
.ws2{word-spacing:0.000000pt;}
._22{margin-left:-13.888000pt;}
._23{margin-left:-9.600000pt;}
._5{margin-left:-6.624000pt;}
._3{margin-left:-4.928000pt;}
._4{margin-left:-3.653333pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._8{width:2.389333pt;}
._7{width:3.808000pt;}
._b{width:5.584000pt;}
._a{width:6.549333pt;}
._9{width:8.000000pt;}
._1e{width:8.954667pt;}
._21{width:10.522667pt;}
._c{width:11.658667pt;}
._6{width:12.549333pt;}
._e{width:13.552000pt;}
._f{width:14.954667pt;}
._12{width:17.002667pt;}
._d{width:18.181333pt;}
._1d{width:19.381333pt;}
._1c{width:20.458667pt;}
._25{width:22.058667pt;}
._24{width:22.976000pt;}
._14{width:25.232000pt;}
._13{width:26.304000pt;}
._11{width:27.392000pt;}
._10{width:28.416000pt;}
._1f{width:34.560000pt;}
._20{width:35.701333pt;}
._1b{width:36.736000pt;}
._1a{width:37.984000pt;}
._16{width:43.050667pt;}
._15{width:43.968000pt;}
._17{width:45.509333pt;}
._2c{width:48.528000pt;}
._2b{width:49.434667pt;}
._2a{width:52.074667pt;}
._19{width:55.008000pt;}
._18{width:56.154667pt;}
._26{width:57.445333pt;}
._28{width:75.328000pt;}
._27{width:76.288000pt;}
._29{width:78.181333pt;}
.fs5{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.120000pt;}
.y66{bottom:6.133333pt;}
.y6a{bottom:6.146667pt;}
.y63{bottom:6.400000pt;}
.y6{bottom:61.100000pt;}
.y38{bottom:79.500000pt;}
.y37{bottom:84.300000pt;}
.y31{bottom:86.700000pt;}
.y36{bottom:95.766667pt;}
.y77{bottom:96.300000pt;}
.y35{bottom:100.566667pt;}
.y30{bottom:107.766667pt;}
.y48{bottom:112.033333pt;}
.y34{bottom:112.566667pt;}
.y47{bottom:116.833333pt;}
.y46{bottom:128.300000pt;}
.y2f{bottom:129.100000pt;}
.y53{bottom:133.100000pt;}
.y76{bottom:140.560000pt;}
.y45{bottom:144.560000pt;}
.y52{bottom:145.106667pt;}
.y44{bottom:149.360000pt;}
.y2e{bottom:150.200000pt;}
.y43{bottom:160.866667pt;}
.y75{bottom:161.666667pt;}
.y42{bottom:165.666667pt;}
.y2d{bottom:171.266667pt;}
.y41{bottom:177.133333pt;}
.y40{bottom:181.933333pt;}
.y74{bottom:182.733333pt;}
.y2c{bottom:192.600000pt;}
.y3f{bottom:193.933333pt;}
.y73{bottom:204.066667pt;}
.y2b{bottom:213.666667pt;}
.y72{bottom:225.133333pt;}
.y51{bottom:234.733333pt;}
.y2a{bottom:235.000000pt;}
.y71{bottom:246.200000pt;}
.y29{bottom:256.066667pt;}
.y70{bottom:267.533333pt;}
.y28{bottom:277.133333pt;}
.y6f{bottom:288.600000pt;}
.y50{bottom:298.200000pt;}
.y27{bottom:298.466667pt;}
.y33{bottom:304.626667pt;}
.y6e{bottom:309.706667pt;}
.y26{bottom:319.560000pt;}
.y6d{bottom:331.040000pt;}
.y25{bottom:340.626667pt;}
.y6b{bottom:346.506667pt;}
.y4f{bottom:361.693333pt;}
.y24{bottom:361.960000pt;}
.y3e{bottom:368.106667pt;}
.y69{bottom:368.360000pt;}
.y23{bottom:383.040000pt;}
.y68{bottom:390.226667pt;}
.y22{bottom:404.106667pt;}
.y67{bottom:412.093333pt;}
.y4e{bottom:425.173333pt;}
.y21{bottom:425.440000pt;}
.y65{bottom:433.960000pt;}
.y20{bottom:446.493333pt;}
.y64{bottom:455.600000pt;}
.y1f{bottom:467.600000pt;}
.y3d{bottom:473.733333pt;}
.y62{bottom:477.466667pt;}
.y4d{bottom:488.666667pt;}
.y1e{bottom:488.933333pt;}
.y3c{bottom:495.066667pt;}
.y61{bottom:505.466667pt;}
.y1d{bottom:510.000000pt;}
.y60{bottom:526.800000pt;}
.y1c{bottom:531.066667pt;}
.y5f{bottom:547.866667pt;}
.y4c{bottom:552.133333pt;}
.y1b{bottom:552.400000pt;}
.y5e{bottom:568.933333pt;}
.y1a{bottom:573.466667pt;}
.y5d{bottom:590.266667pt;}
.y4b{bottom:591.066667pt;}
.y19{bottom:594.533333pt;}
.y3b{bottom:600.666667pt;}
.y5c{bottom:607.893333pt;}
.y18{bottom:615.893333pt;}
.y17{bottom:636.960000pt;}
.y16{bottom:658.026667pt;}
.y15{bottom:679.360000pt;}
.y4a{bottom:685.506667pt;}
.y14{bottom:700.440000pt;}
.y13{bottom:721.506667pt;}
.y3a{bottom:727.626667pt;}
.y12{bottom:742.840000pt;}
.y49{bottom:748.960000pt;}
.y11{bottom:763.933333pt;}
.y10{bottom:785.000000pt;}
.y32{bottom:791.133333pt;}
.y5b{bottom:794.066667pt;}
.yf{bottom:806.333333pt;}
.y39{bottom:812.466667pt;}
.y5a{bottom:815.400000pt;}
.ye{bottom:827.400000pt;}
.y59{bottom:836.466667pt;}
.yd{bottom:848.466667pt;}
.y58{bottom:857.533333pt;}
.yc{bottom:869.800000pt;}
.y57{bottom:878.866667pt;}
.yb{bottom:890.866667pt;}
.y55{bottom:899.933333pt;}
.y56{bottom:906.106667pt;}
.ya{bottom:911.960000pt;}
.y54{bottom:917.840000pt;}
.y9{bottom:933.293333pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h10{height:21.066667pt;}
.hf{height:21.100000pt;}
.he{height:21.333333pt;}
.hb{height:35.010937pt;}
.h2{height:37.630208pt;}
.h9{height:41.875000pt;}
.hc{height:53.046875pt;}
.h3{height:53.750000pt;}
.hd{height:54.609375pt;}
.h8{height:56.406250pt;}
.h5{height:57.578125pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h11{height:65.781915pt;}
.ha{height:73.281250pt;}
.h4{height:75.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:108.033333pt;}
.w4{width:324.133333pt;}
.w3{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.693333pt;}
.x3{left:75.499988pt;}
.x13{left:80.033322pt;}
.x27{left:84.566655pt;}
.x6{left:118.166655pt;}
.x1e{left:126.166643pt;}
.x1f{left:131.499988pt;}
.x2d{left:155.240000pt;}
.x25{left:174.199976pt;}
.x16{left:185.666643pt;}
.x17{left:190.999988pt;}
.x1a{left:201.933310pt;}
.x1b{left:207.266655pt;}
.xc{left:246.733322pt;}
.x9{left:249.399988pt;}
.x12{left:267.573322pt;}
.x8{left:282.773322pt;}
.xa{left:285.173322pt;}
.xb{left:294.773322pt;}
.x4{left:311.839988pt;}
.x30{left:356.639988pt;}
.x2b{left:363.839988pt;}
.x5{left:380.933322pt;}
.x7{left:396.666655pt;}
.x2{left:406.266655pt;}
.xe{left:413.733310pt;}
.xf{left:419.066655pt;}
.x1{left:453.733322pt;}
.x26{left:473.199988pt;}
.x2f{left:479.906667pt;}
.x28{left:499.893322pt;}
.x29{left:519.906643pt;}
.x2a{left:530.573322pt;}
.x18{left:543.906643pt;}
.x19{left:549.226655pt;}
.x10{left:589.799976pt;}
.x11{left:595.133322pt;}
.x1c{left:616.999976pt;}
.x1d{left:622.333322pt;}
.x21{left:625.799976pt;}
.x2c{left:633.799988pt;}
.x22{left:636.466655pt;}
.x14{left:691.959976pt;}
.x15{left:697.293322pt;}
.x20{left:702.626655pt;}
.x23{left:703.706643pt;}
.x24{left:714.373322pt;}
.xd{left:718.106655pt;}
}




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