
    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_cfba650abb18de0119605c45.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_81816e6c98c3f31c1872ed4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_5e53de16286e5aaff4fb446d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.085938;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_48a512a61ce300592499d633.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.085938;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_036b66e61b52875ca7dabc64.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a16805be4bd8cacc2998af8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_4fed6d77366d748acacb65d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.030273;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_835571861118c1e4ccc38ad1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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);}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.355680px;}
.ls13{letter-spacing:0.355800px;}
.lsc{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.740160px;}
.lsd{letter-spacing:0.860160px;}
.ls10{letter-spacing:1.075680px;}
.ls14{letter-spacing:5.544000px;}
.ls2{letter-spacing:27.480000px;}
.ls3{letter-spacing:27.504000px;}
.ls1{letter-spacing:28.920000px;}
.lsb{letter-spacing:201.360000px;}
.lse{letter-spacing:201.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;}
}
.ws6{word-spacing:-14.904000px;}
.ws0{word-spacing:-14.688000px;}
.ws2{word-spacing:-14.616000px;}
.ws3{word-spacing:-14.328000px;}
.ws1{word-spacing:-13.824000px;}
.ws5{word-spacing:-8.477280px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-10.944000px;}
._6{margin-left:-9.216000px;}
._10{margin-left:-8.064000px;}
._2{margin-left:-6.912000px;}
._5{margin-left:-5.100000px;}
._11{margin-left:-4.008000px;}
._4{margin-left:-2.964000px;}
._1{margin-left:-1.020000px;}
._3{width:1.368000px;}
._d{width:2.472000px;}
._7{width:5.112000px;}
._8{width:6.156000px;}
._16{width:7.236000px;}
._a{width:8.256000px;}
._f{width:11.088000px;}
._e{width:12.096000px;}
._9{width:13.308000px;}
._0{width:15.816000px;}
._b{width:16.920000px;}
._c{width:17.988000px;}
._15{width:33.288000px;}
._13{width:35.892000px;}
._14{width:38.592000px;}
._12{width:201.360000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(33,94,153);}
.fc2{color:rgb(14,40,65);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:5.040000px;}
.y20{bottom:5.070000px;}
.y2b{bottom:5.085000px;}
.y41{bottom:5.220000px;}
.y22{bottom:27.000000px;}
.y3e{bottom:27.030000px;}
.y2a{bottom:27.045000px;}
.y26{bottom:27.180000px;}
.y31{bottom:48.960000px;}
.y37{bottom:49.005000px;}
.y59{bottom:49.140000px;}
.y9a{bottom:95.976000px;}
.y52{bottom:105.696000px;}
.y3c{bottom:107.316000px;}
.ya2{bottom:109.476000px;}
.y72{bottom:113.976000px;}
.y99{bottom:121.536000px;}
.y1e{bottom:124.056000px;}
.ya1{bottom:134.856000px;}
.y71{bottom:139.356000px;}
.y98{bottom:146.916000px;}
.y51{bottom:150.510000px;}
.y3b{bottom:151.950000px;}
.y1d{bottom:160.050000px;}
.y70{bottom:164.730000px;}
.y97{bottom:172.290000px;}
.y50{bottom:173.190000px;}
.y6f{bottom:190.290000px;}
.y1c{bottom:197.490000px;}
.y96{bottom:197.850000px;}
.y6e{bottom:215.670000px;}
.y3a{bottom:218.550000px;}
.y95{bottom:223.230000px;}
.y1b{bottom:234.930000px;}
.y4f{bottom:239.790000px;}
.y6d{bottom:241.230000px;}
.y94{bottom:248.790000px;}
.y39{bottom:263.370000px;}
.y1a{bottom:272.370000px;}
.y93{bottom:274.170000px;}
.y6c{bottom:278.670000px;}
.y19{bottom:297.930000px;}
.y92{bottom:299.550000px;}
.y4e{bottom:306.570000px;}
.y38{bottom:308.010000px;}
.y6b{bottom:316.110000px;}
.y18{bottom:323.310000px;}
.y91{bottom:325.110000px;}
.y36{bottom:330.690000px;}
.y6a{bottom:341.535000px;}
.y17{bottom:348.915000px;}
.y90{bottom:350.535000px;}
.y4d{bottom:351.255000px;}
.y69{bottom:367.095000px;}
.y8f{bottom:376.095000px;}
.y16{bottom:386.355000px;}
.y4c{bottom:395.895000px;}
.y35{bottom:397.515000px;}
.y8e{bottom:401.475000px;}
.y68{bottom:404.535000px;}
.y4b{bottom:418.575000px;}
.y15{bottom:423.795000px;}
.y8d{bottom:426.855000px;}
.y67{bottom:441.975000px;}
.y14{bottom:449.175000px;}
.y8c{bottom:450.975000px;}
.y9e{bottom:452.415000px;}
.y66{bottom:459.615000px;}
.y4a{bottom:463.395000px;}
.y34{bottom:464.115000px;}
.y8b{bottom:477.795000px;}
.ya0{bottom:483.735000px;}
.y13{bottom:486.615000px;}
.y8a{bottom:503.355000px;}
.y65{bottom:504.255000px;}
.y33{bottom:508.755000px;}
.y12{bottom:512.175000px;}
.y64{bottom:526.935000px;}
.y89{bottom:528.735000px;}
.y49{bottom:529.995000px;}
.y11{bottom:537.555000px;}
.y63{bottom:549.795000px;}
.y88{bottom:554.115000px;}
.y10{bottom:562.935000px;}
.y62{bottom:572.475000px;}
.y48{bottom:574.635000px;}
.y32{bottom:575.535000px;}
.y9f{bottom:578.235000px;}
.y87{bottom:579.675000px;}
.y61{bottom:595.155000px;}
.yf{bottom:600.375000px;}
.y86{bottom:605.085000px;}
.y60{bottom:617.865000px;}
.y47{bottom:619.485000px;}
.y30{bottom:620.205000px;}
.y85{bottom:630.645000px;}
.ye{bottom:637.125000px;}
.y5f{bottom:640.725000px;}
.y46{bottom:642.165000px;}
.y84{bottom:656.025000px;}
.y5e{bottom:663.405000px;}
.yd{bottom:668.085000px;}
.y83{bottom:681.405000px;}
.y5d{bottom:686.085000px;}
.y2f{bottom:686.805000px;}
.y82{bottom:706.965000px;}
.y5c{bottom:708.765000px;}
.y2e{bottom:731.625000px;}
.y81{bottom:732.345000px;}
.y45{bottom:753.585000px;}
.y5b{bottom:754.305000px;}
.y80{bottom:757.905000px;}
.y2d{bottom:776.265000px;}
.y5a{bottom:776.985000px;}
.y7f{bottom:781.845000px;}
.y9d{bottom:783.285000px;}
.y44{bottom:798.225000px;}
.y58{bottom:799.665000px;}
.y7e{bottom:808.665000px;}
.y2c{bottom:820.905000px;}
.yc{bottom:823.605000px;}
.y7d{bottom:834.225000px;}
.y43{bottom:842.865000px;}
.yb{bottom:849.165000px;}
.y7c{bottom:858.165000px;}
.y9c{bottom:859.605000px;}
.y29{bottom:865.725000px;}
.y57{bottom:866.445000px;}
.ya{bottom:874.590000px;}
.y9b{bottom:883.770000px;}
.y7b{bottom:885.210000px;}
.y9{bottom:899.970000px;}
.y28{bottom:910.410000px;}
.y7a{bottom:910.590000px;}
.y56{bottom:911.130000px;}
.ya9{bottom:918.870000px;}
.y8{bottom:925.530000px;}
.y79{bottom:935.970000px;}
.y7{bottom:950.910000px;}
.y27{bottom:955.050000px;}
.y55{bottom:955.770000px;}
.ya8{bottom:956.310000px;}
.y78{bottom:961.530000px;}
.y42{bottom:977.010000px;}
.y54{bottom:978.630000px;}
.y77{bottom:986.910000px;}
.y6{bottom:988.350000px;}
.ya7{bottom:996.270000px;}
.y25{bottom:999.690000px;}
.y76{bottom:1012.470000px;}
.y5{bottom:1013.910000px;}
.ya6{bottom:1018.230000px;}
.y40{bottom:1021.650000px;}
.y75{bottom:1037.850000px;}
.y4{bottom:1039.290000px;}
.ya5{bottom:1040.190000px;}
.y24{bottom:1044.510000px;}
.y53{bottom:1045.230000px;}
.y74{bottom:1063.230000px;}
.y3f{bottom:1066.470000px;}
.y3{bottom:1076.730000px;}
.ya4{bottom:1080.150000px;}
.y73{bottom:1088.790000px;}
.y21{bottom:1089.150000px;}
.ya3{bottom:1102.290000px;}
.y3d{bottom:1111.830000px;}
.y2{bottom:1114.170000px;}
.y1f{bottom:1133.790000px;}
.y1{bottom:1139.760000px;}
.hd{height:21.960000px;}
.h7{height:21.996000px;}
.h10{height:22.140000px;}
.h11{height:36.193359px;}
.h12{height:38.642344px;}
.h8{height:43.920000px;}
.ha{height:43.956000px;}
.h9{height:44.100000px;}
.he{height:44.136000px;}
.h4{height:57.410156px;}
.h2{height:62.402344px;}
.h3{height:62.507812px;}
.hb{height:65.880000px;}
.hc{height:65.916000px;}
.hf{height:66.060000px;}
.h5{height:74.004654px;}
.h6{height:74.953125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.260000px;}
.w5{width:188.130000px;}
.w6{width:190.110000px;}
.w4{width:242.850000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:106.235987px;}
.xd{left:126.035987px;}
.x4{left:133.235987px;}
.x6{left:143.135987px;}
.x5{left:159.689987px;}
.x8{left:163.110000px;}
.x3{left:199.109987px;}
.xb{left:214.229987px;}
.xc{left:268.229987px;}
.x9{left:406.875000px;}
.xa{left:595.905000px;}
.x2{left:786.749987px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.316160pt;}
.ls13{letter-spacing:0.316267pt;}
.lsc{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.657920pt;}
.lsd{letter-spacing:0.764587pt;}
.ls10{letter-spacing:0.956160pt;}
.ls14{letter-spacing:4.928000pt;}
.ls2{letter-spacing:24.426667pt;}
.ls3{letter-spacing:24.448000pt;}
.ls1{letter-spacing:25.706667pt;}
.lsb{letter-spacing:178.986667pt;}
.lse{letter-spacing:179.008000pt;}
.ws6{word-spacing:-13.248000pt;}
.ws0{word-spacing:-13.056000pt;}
.ws2{word-spacing:-12.992000pt;}
.ws3{word-spacing:-12.736000pt;}
.ws1{word-spacing:-12.288000pt;}
.ws5{word-spacing:-7.535360pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-9.728000pt;}
._6{margin-left:-8.192000pt;}
._10{margin-left:-7.168000pt;}
._2{margin-left:-6.144000pt;}
._5{margin-left:-4.533333pt;}
._11{margin-left:-3.562667pt;}
._4{margin-left:-2.634667pt;}
._1{margin-left:-0.906667pt;}
._3{width:1.216000pt;}
._d{width:2.197333pt;}
._7{width:4.544000pt;}
._8{width:5.472000pt;}
._16{width:6.432000pt;}
._a{width:7.338667pt;}
._f{width:9.856000pt;}
._e{width:10.752000pt;}
._9{width:11.829333pt;}
._0{width:14.058667pt;}
._b{width:15.040000pt;}
._c{width:15.989333pt;}
._15{width:29.589333pt;}
._13{width:31.904000pt;}
._14{width:34.304000pt;}
._12{width:178.986667pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:4.480000pt;}
.y20{bottom:4.506667pt;}
.y2b{bottom:4.520000pt;}
.y41{bottom:4.640000pt;}
.y22{bottom:24.000000pt;}
.y3e{bottom:24.026667pt;}
.y2a{bottom:24.040000pt;}
.y26{bottom:24.160000pt;}
.y31{bottom:43.520000pt;}
.y37{bottom:43.560000pt;}
.y59{bottom:43.680000pt;}
.y9a{bottom:85.312000pt;}
.y52{bottom:93.952000pt;}
.y3c{bottom:95.392000pt;}
.ya2{bottom:97.312000pt;}
.y72{bottom:101.312000pt;}
.y99{bottom:108.032000pt;}
.y1e{bottom:110.272000pt;}
.ya1{bottom:119.872000pt;}
.y71{bottom:123.872000pt;}
.y98{bottom:130.592000pt;}
.y51{bottom:133.786667pt;}
.y3b{bottom:135.066667pt;}
.y1d{bottom:142.266667pt;}
.y70{bottom:146.426667pt;}
.y97{bottom:153.146667pt;}
.y50{bottom:153.946667pt;}
.y6f{bottom:169.146667pt;}
.y1c{bottom:175.546667pt;}
.y96{bottom:175.866667pt;}
.y6e{bottom:191.706667pt;}
.y3a{bottom:194.266667pt;}
.y95{bottom:198.426667pt;}
.y1b{bottom:208.826667pt;}
.y4f{bottom:213.146667pt;}
.y6d{bottom:214.426667pt;}
.y94{bottom:221.146667pt;}
.y39{bottom:234.106667pt;}
.y1a{bottom:242.106667pt;}
.y93{bottom:243.706667pt;}
.y6c{bottom:247.706667pt;}
.y19{bottom:264.826667pt;}
.y92{bottom:266.266667pt;}
.y4e{bottom:272.506667pt;}
.y38{bottom:273.786667pt;}
.y6b{bottom:280.986667pt;}
.y18{bottom:287.386667pt;}
.y91{bottom:288.986667pt;}
.y36{bottom:293.946667pt;}
.y6a{bottom:303.586667pt;}
.y17{bottom:310.146667pt;}
.y90{bottom:311.586667pt;}
.y4d{bottom:312.226667pt;}
.y69{bottom:326.306667pt;}
.y8f{bottom:334.306667pt;}
.y16{bottom:343.426667pt;}
.y4c{bottom:351.906667pt;}
.y35{bottom:353.346667pt;}
.y8e{bottom:356.866667pt;}
.y68{bottom:359.586667pt;}
.y4b{bottom:372.066667pt;}
.y15{bottom:376.706667pt;}
.y8d{bottom:379.426667pt;}
.y67{bottom:392.866667pt;}
.y14{bottom:399.266667pt;}
.y8c{bottom:400.866667pt;}
.y9e{bottom:402.146667pt;}
.y66{bottom:408.546667pt;}
.y4a{bottom:411.906667pt;}
.y34{bottom:412.546667pt;}
.y8b{bottom:424.706667pt;}
.ya0{bottom:429.986667pt;}
.y13{bottom:432.546667pt;}
.y8a{bottom:447.426667pt;}
.y65{bottom:448.226667pt;}
.y33{bottom:452.226667pt;}
.y12{bottom:455.266667pt;}
.y64{bottom:468.386667pt;}
.y89{bottom:469.986667pt;}
.y49{bottom:471.106667pt;}
.y11{bottom:477.826667pt;}
.y63{bottom:488.706667pt;}
.y88{bottom:492.546667pt;}
.y10{bottom:500.386667pt;}
.y62{bottom:508.866667pt;}
.y48{bottom:510.786667pt;}
.y32{bottom:511.586667pt;}
.y9f{bottom:513.986667pt;}
.y87{bottom:515.266667pt;}
.y61{bottom:529.026667pt;}
.yf{bottom:533.666667pt;}
.y86{bottom:537.853333pt;}
.y60{bottom:549.213333pt;}
.y47{bottom:550.653333pt;}
.y30{bottom:551.293333pt;}
.y85{bottom:560.573333pt;}
.ye{bottom:566.333333pt;}
.y5f{bottom:569.533333pt;}
.y46{bottom:570.813333pt;}
.y84{bottom:583.133333pt;}
.y5e{bottom:589.693333pt;}
.yd{bottom:593.853333pt;}
.y83{bottom:605.693333pt;}
.y5d{bottom:609.853333pt;}
.y2f{bottom:610.493333pt;}
.y82{bottom:628.413333pt;}
.y5c{bottom:630.013333pt;}
.y2e{bottom:650.333333pt;}
.y81{bottom:650.973333pt;}
.y45{bottom:669.853333pt;}
.y5b{bottom:670.493333pt;}
.y80{bottom:673.693333pt;}
.y2d{bottom:690.013333pt;}
.y5a{bottom:690.653333pt;}
.y7f{bottom:694.973333pt;}
.y9d{bottom:696.253333pt;}
.y44{bottom:709.533333pt;}
.y58{bottom:710.813333pt;}
.y7e{bottom:718.813333pt;}
.y2c{bottom:729.693333pt;}
.yc{bottom:732.093333pt;}
.y7d{bottom:741.533333pt;}
.y43{bottom:749.213333pt;}
.yb{bottom:754.813333pt;}
.y7c{bottom:762.813333pt;}
.y9c{bottom:764.093333pt;}
.y29{bottom:769.533333pt;}
.y57{bottom:770.173333pt;}
.ya{bottom:777.413333pt;}
.y9b{bottom:785.573333pt;}
.y7b{bottom:786.853333pt;}
.y9{bottom:799.973333pt;}
.y28{bottom:809.253333pt;}
.y7a{bottom:809.413333pt;}
.y56{bottom:809.893333pt;}
.ya9{bottom:816.773333pt;}
.y8{bottom:822.693333pt;}
.y79{bottom:831.973333pt;}
.y7{bottom:845.253333pt;}
.y27{bottom:848.933333pt;}
.y55{bottom:849.573333pt;}
.ya8{bottom:850.053333pt;}
.y78{bottom:854.693333pt;}
.y42{bottom:868.453333pt;}
.y54{bottom:869.893333pt;}
.y77{bottom:877.253333pt;}
.y6{bottom:878.533333pt;}
.ya7{bottom:885.573333pt;}
.y25{bottom:888.613333pt;}
.y76{bottom:899.973333pt;}
.y5{bottom:901.253333pt;}
.ya6{bottom:905.093333pt;}
.y40{bottom:908.133333pt;}
.y75{bottom:922.533333pt;}
.y4{bottom:923.813333pt;}
.ya5{bottom:924.613333pt;}
.y24{bottom:928.453333pt;}
.y53{bottom:929.093333pt;}
.y74{bottom:945.093333pt;}
.y3f{bottom:947.973333pt;}
.y3{bottom:957.093333pt;}
.ya4{bottom:960.133333pt;}
.y73{bottom:967.813333pt;}
.y21{bottom:968.133333pt;}
.ya3{bottom:979.813333pt;}
.y3d{bottom:988.293333pt;}
.y2{bottom:990.373333pt;}
.y1f{bottom:1007.813333pt;}
.y1{bottom:1013.120000pt;}
.hd{height:19.520000pt;}
.h7{height:19.552000pt;}
.h10{height:19.680000pt;}
.h11{height:32.171875pt;}
.h12{height:34.348750pt;}
.h8{height:39.040000pt;}
.ha{height:39.072000pt;}
.h9{height:39.200000pt;}
.he{height:39.232000pt;}
.h4{height:51.031250pt;}
.h2{height:55.468750pt;}
.h3{height:55.562500pt;}
.hb{height:58.560000pt;}
.hc{height:58.592000pt;}
.hf{height:58.720000pt;}
.h5{height:65.781915pt;}
.h6{height:66.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.120000pt;}
.w5{width:167.226667pt;}
.w6{width:168.986667pt;}
.w4{width:215.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:94.431988pt;}
.xd{left:112.031988pt;}
.x4{left:118.431988pt;}
.x6{left:127.231988pt;}
.x5{left:141.946655pt;}
.x8{left:144.986667pt;}
.x3{left:176.986655pt;}
.xb{left:190.426655pt;}
.xc{left:238.426655pt;}
.x9{left:361.666667pt;}
.xa{left:529.693333pt;}
.x2{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; }
  