
    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_d542f481929e81f159c0009a.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_cb7e97fe30a691d514074977.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_901b85f9ba3d059dd7e66df3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f4265bf8d1d184931380d319.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_92583a15d880d093cf3a9de2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_51c2256cffa62c90ca5b05de.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932617;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_bd8d762ed58ed4c03718b36f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932617;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_cf106b8ba7b7724318aeed72.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.123600px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:2.581920px;}
.lsc{letter-spacing:5.461920px;}
.ls6{letter-spacing:34.261920px;}
.lse{letter-spacing:54.144000px;}
.ls1{letter-spacing:77.309760px;}
.lsd{letter-spacing:86.821920px;}
.ls0{letter-spacing:111.029760px;}
.lsa{letter-spacing:178.261920px;}
.ls9{letter-spacing:179.701920px;}
.ls3{letter-spacing:275.304000px;}
.ls5{letter-spacing:276.024000px;}
.ls4{letter-spacing:337.944000px;}
.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:-72.000000px;}
.ws3{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.340000px;}
.ws2{word-spacing:-20.216400px;}
.ws6{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-6.411600px;}
._0{margin-left:-1.188000px;}
._1{width:1.244880px;}
._7{width:2.466720px;}
._a{width:4.032000px;}
._5{width:5.616000px;}
._6{width:6.624000px;}
._e{width:7.632000px;}
._f{width:9.000000px;}
._2{width:10.728000px;}
._3{width:12.147120px;}
._b{width:13.628880px;}
._8{width:15.624000px;}
._15{width:16.644000px;}
._14{width:19.296000px;}
._1c{width:21.264000px;}
._10{width:22.692000px;}
._11{width:23.760000px;}
._20{width:24.819120px;}
._1b{width:25.884000px;}
._1a{width:27.324000px;}
._4{width:30.672000px;}
._21{width:34.200000px;}
._1e{width:35.568000px;}
._1f{width:37.140000px;}
._c{width:41.247120px;}
._d{width:42.552000px;}
._1d{width:45.864000px;}
._12{width:49.248000px;}
._13{width:50.256000px;}
._18{width:53.928000px;}
._23{width:60.120000px;}
._24{width:61.848000px;}
._19{width:66.240000px;}
._16{width:72.360000px;}
._17{width:73.368000px;}
._22{width:936.900000px;}
.fc6{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc5{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,56,100);}
.fs3{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:81.360000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:10.260000px;}
.y6{bottom:11.340000px;}
.y78{bottom:32.040000px;}
.y7{bottom:55.440000px;}
.y4{bottom:57.600000px;}
.y32{bottom:115.956000px;}
.y76{bottom:119.016000px;}
.y5d{bottom:125.136000px;}
.y31{bottom:139.716000px;}
.y75{bottom:142.956000px;}
.y5c{bottom:149.076000px;}
.y30{bottom:163.650000px;}
.y74{bottom:166.710000px;}
.y5b{bottom:172.830000px;}
.y2f{bottom:187.410000px;}
.y73{bottom:190.470000px;}
.y5a{bottom:196.590000px;}
.y2e{bottom:211.170000px;}
.y72{bottom:214.230000px;}
.y59{bottom:220.350000px;}
.y2d{bottom:234.930000px;}
.y71{bottom:238.170000px;}
.y58{bottom:244.290000px;}
.y77{bottom:254.910000px;}
.y2c{bottom:258.870000px;}
.y57{bottom:268.050000px;}
.y2b{bottom:282.630000px;}
.y56{bottom:291.810000px;}
.y2a{bottom:306.390000px;}
.y55{bottom:315.570000px;}
.y29{bottom:330.150000px;}
.y54{bottom:341.535000px;}
.y28{bottom:353.955000px;}
.y53{bottom:365.295000px;}
.y27{bottom:377.895000px;}
.y52{bottom:391.215000px;}
.y26{bottom:401.655000px;}
.y51{bottom:417.135000px;}
.y25{bottom:425.415000px;}
.y50{bottom:443.055000px;}
.y24{bottom:451.335000px;}
.y4f{bottom:466.815000px;}
.y23{bottom:475.095000px;}
.y4e{bottom:490.755000px;}
.y22{bottom:499.035000px;}
.y70{bottom:499.935000px;}
.y4d{bottom:514.515000px;}
.y21{bottom:522.795000px;}
.y6f{bottom:523.875000px;}
.y4c{bottom:538.275000px;}
.y6e{bottom:547.635000px;}
.y20{bottom:548.715000px;}
.y4b{bottom:562.035000px;}
.y6d{bottom:571.395000px;}
.y1f{bottom:572.475000px;}
.y4a{bottom:585.975000px;}
.y6c{bottom:595.155000px;}
.y1e{bottom:596.235000px;}
.y49{bottom:609.765000px;}
.y6b{bottom:619.125000px;}
.y1d{bottom:620.025000px;}
.y48{bottom:633.525000px;}
.y6a{bottom:642.885000px;}
.y1c{bottom:643.965000px;}
.y47{bottom:657.285000px;}
.y69{bottom:666.645000px;}
.y1b{bottom:667.545000px;}
.y46{bottom:681.225000px;}
.y68{bottom:690.405000px;}
.y1a{bottom:692.745000px;}
.y45{bottom:704.985000px;}
.y67{bottom:714.165000px;}
.y19{bottom:717.765000px;}
.y44{bottom:728.745000px;}
.y66{bottom:737.925000px;}
.y18{bottom:742.965000px;}
.y43{bottom:752.505000px;}
.y65{bottom:764.025000px;}
.y17{bottom:766.725000px;}
.y42{bottom:776.445000px;}
.y64{bottom:787.785000px;}
.y16{bottom:790.665000px;}
.y41{bottom:800.205000px;}
.y63{bottom:811.545000px;}
.y15{bottom:814.425000px;}
.y40{bottom:823.965000px;}
.y62{bottom:837.465000px;}
.y14{bottom:838.185000px;}
.y3f{bottom:847.725000px;}
.y61{bottom:857.265000px;}
.y13{bottom:861.945000px;}
.y3e{bottom:871.710000px;}
.y12{bottom:885.930000px;}
.y3d{bottom:895.470000px;}
.y11{bottom:909.690000px;}
.y3c{bottom:919.230000px;}
.y10{bottom:933.450000px;}
.y3b{bottom:942.990000px;}
.yf{bottom:957.210000px;}
.y3a{bottom:966.750000px;}
.ye{bottom:981.150000px;}
.y39{bottom:990.690000px;}
.y7b{bottom:996.990000px;}
.yd{bottom:1004.910000px;}
.y38{bottom:1014.450000px;}
.y7a{bottom:1020.750000px;}
.yc{bottom:1034.610000px;}
.y37{bottom:1038.210000px;}
.y79{bottom:1044.510000px;}
.yb{bottom:1058.370000px;}
.y36{bottom:1064.130000px;}
.y60{bottom:1068.270000px;}
.ya{bottom:1076.370000px;}
.y35{bottom:1087.890000px;}
.y5f{bottom:1092.210000px;}
.y9{bottom:1102.470000px;}
.y34{bottom:1113.810000px;}
.y5e{bottom:1115.970000px;}
.y8{bottom:1134.150000px;}
.y33{bottom:1139.760000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1200.780000px;}
.y1{bottom:1216.260000px;}
.h6{height:4.021875px;}
.h3{height:27.036000px;}
.h9{height:34.036523px;}
.h2{height:38.100586px;}
.h4{height:50.273438px;}
.h8{height:50.800781px;}
.hb{height:51.609375px;}
.ha{height:51.996094px;}
.hc{height:52.417969px;}
.hd{height:59.232305px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.he{height:237.990000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w6{width:625.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x12{left:68.759987px;}
.x4{left:87.660000px;}
.x9{left:95.795987px;}
.x1{left:99.395987px;}
.x2{left:122.615987px;}
.xe{left:127.295987px;}
.x15{left:133.776000px;}
.x10{left:138.275987px;}
.x11{left:148.895987px;}
.xb{left:168.869987px;}
.xa{left:174.809987px;}
.xd{left:187.229987px;}
.xf{left:295.814987px;}
.x5{left:297.795000px;}
.x3{left:378.434987px;}
.x6{left:393.915000px;}
.xc{left:446.474987px;}
.x14{left:448.094987px;}
.x8{left:500.145000px;}
.x13{left:543.884987px;}
.x16{left:625.614000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.109867pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:2.295040pt;}
.lsc{letter-spacing:4.855040pt;}
.ls6{letter-spacing:30.455040pt;}
.lse{letter-spacing:48.128000pt;}
.ls1{letter-spacing:68.719787pt;}
.lsd{letter-spacing:77.175040pt;}
.ls0{letter-spacing:98.693120pt;}
.lsa{letter-spacing:158.455040pt;}
.ls9{letter-spacing:159.735040pt;}
.ls3{letter-spacing:244.714667pt;}
.ls5{letter-spacing:245.354667pt;}
.ls4{letter-spacing:300.394667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.080000pt;}
.ws2{word-spacing:-17.970133pt;}
.ws6{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-5.699200pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.106560pt;}
._7{width:2.192640pt;}
._a{width:3.584000pt;}
._5{width:4.992000pt;}
._6{width:5.888000pt;}
._e{width:6.784000pt;}
._f{width:8.000000pt;}
._2{width:9.536000pt;}
._3{width:10.797440pt;}
._b{width:12.114560pt;}
._8{width:13.888000pt;}
._15{width:14.794667pt;}
._14{width:17.152000pt;}
._1c{width:18.901333pt;}
._10{width:20.170667pt;}
._11{width:21.120000pt;}
._20{width:22.061440pt;}
._1b{width:23.008000pt;}
._1a{width:24.288000pt;}
._4{width:27.264000pt;}
._21{width:30.400000pt;}
._1e{width:31.616000pt;}
._1f{width:33.013333pt;}
._c{width:36.664107pt;}
._d{width:37.824000pt;}
._1d{width:40.768000pt;}
._12{width:43.776000pt;}
._13{width:44.672000pt;}
._18{width:47.936000pt;}
._23{width:53.440000pt;}
._24{width:54.976000pt;}
._19{width:58.880000pt;}
._16{width:64.320000pt;}
._17{width:65.216000pt;}
._22{width:832.800000pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:72.320000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:9.120000pt;}
.y6{bottom:10.080000pt;}
.y78{bottom:28.480000pt;}
.y7{bottom:49.280000pt;}
.y4{bottom:51.200000pt;}
.y32{bottom:103.072000pt;}
.y76{bottom:105.792000pt;}
.y5d{bottom:111.232000pt;}
.y31{bottom:124.192000pt;}
.y75{bottom:127.072000pt;}
.y5c{bottom:132.512000pt;}
.y30{bottom:145.466667pt;}
.y74{bottom:148.186667pt;}
.y5b{bottom:153.626667pt;}
.y2f{bottom:166.586667pt;}
.y73{bottom:169.306667pt;}
.y5a{bottom:174.746667pt;}
.y2e{bottom:187.706667pt;}
.y72{bottom:190.426667pt;}
.y59{bottom:195.866667pt;}
.y2d{bottom:208.826667pt;}
.y71{bottom:211.706667pt;}
.y58{bottom:217.146667pt;}
.y77{bottom:226.586667pt;}
.y2c{bottom:230.106667pt;}
.y57{bottom:238.266667pt;}
.y2b{bottom:251.226667pt;}
.y56{bottom:259.386667pt;}
.y2a{bottom:272.346667pt;}
.y55{bottom:280.506667pt;}
.y29{bottom:293.466667pt;}
.y54{bottom:303.586667pt;}
.y28{bottom:314.626667pt;}
.y53{bottom:324.706667pt;}
.y27{bottom:335.906667pt;}
.y52{bottom:347.746667pt;}
.y26{bottom:357.026667pt;}
.y51{bottom:370.786667pt;}
.y25{bottom:378.146667pt;}
.y50{bottom:393.826667pt;}
.y24{bottom:401.186667pt;}
.y4f{bottom:414.946667pt;}
.y23{bottom:422.306667pt;}
.y4e{bottom:436.226667pt;}
.y22{bottom:443.586667pt;}
.y70{bottom:444.386667pt;}
.y4d{bottom:457.346667pt;}
.y21{bottom:464.706667pt;}
.y6f{bottom:465.666667pt;}
.y4c{bottom:478.466667pt;}
.y6e{bottom:486.786667pt;}
.y20{bottom:487.746667pt;}
.y4b{bottom:499.586667pt;}
.y6d{bottom:507.906667pt;}
.y1f{bottom:508.866667pt;}
.y4a{bottom:520.866667pt;}
.y6c{bottom:529.026667pt;}
.y1e{bottom:529.986667pt;}
.y49{bottom:542.013333pt;}
.y6b{bottom:550.333333pt;}
.y1d{bottom:551.133333pt;}
.y48{bottom:563.133333pt;}
.y6a{bottom:571.453333pt;}
.y1c{bottom:572.413333pt;}
.y47{bottom:584.253333pt;}
.y69{bottom:592.573333pt;}
.y1b{bottom:593.373333pt;}
.y46{bottom:605.533333pt;}
.y68{bottom:613.693333pt;}
.y1a{bottom:615.773333pt;}
.y45{bottom:626.653333pt;}
.y67{bottom:634.813333pt;}
.y19{bottom:638.013333pt;}
.y44{bottom:647.773333pt;}
.y66{bottom:655.933333pt;}
.y18{bottom:660.413333pt;}
.y43{bottom:668.893333pt;}
.y65{bottom:679.133333pt;}
.y17{bottom:681.533333pt;}
.y42{bottom:690.173333pt;}
.y64{bottom:700.253333pt;}
.y16{bottom:702.813333pt;}
.y41{bottom:711.293333pt;}
.y63{bottom:721.373333pt;}
.y15{bottom:723.933333pt;}
.y40{bottom:732.413333pt;}
.y62{bottom:744.413333pt;}
.y14{bottom:745.053333pt;}
.y3f{bottom:753.533333pt;}
.y61{bottom:762.013333pt;}
.y13{bottom:766.173333pt;}
.y3e{bottom:774.853333pt;}
.y12{bottom:787.493333pt;}
.y3d{bottom:795.973333pt;}
.y11{bottom:808.613333pt;}
.y3c{bottom:817.093333pt;}
.y10{bottom:829.733333pt;}
.y3b{bottom:838.213333pt;}
.yf{bottom:850.853333pt;}
.y3a{bottom:859.333333pt;}
.ye{bottom:872.133333pt;}
.y39{bottom:880.613333pt;}
.y7b{bottom:886.213333pt;}
.yd{bottom:893.253333pt;}
.y38{bottom:901.733333pt;}
.y7a{bottom:907.333333pt;}
.yc{bottom:919.653333pt;}
.y37{bottom:922.853333pt;}
.y79{bottom:928.453333pt;}
.yb{bottom:940.773333pt;}
.y36{bottom:945.893333pt;}
.y60{bottom:949.573333pt;}
.ya{bottom:956.773333pt;}
.y35{bottom:967.013333pt;}
.y5f{bottom:970.853333pt;}
.y9{bottom:979.973333pt;}
.y34{bottom:990.053333pt;}
.y5e{bottom:991.973333pt;}
.y8{bottom:1008.133333pt;}
.y33{bottom:1013.120000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1067.360000pt;}
.y1{bottom:1081.120000pt;}
.h6{height:3.575000pt;}
.h3{height:24.032000pt;}
.h9{height:30.254687pt;}
.h2{height:33.867188pt;}
.h4{height:44.687500pt;}
.h8{height:45.156250pt;}
.hb{height:45.875000pt;}
.ha{height:46.218750pt;}
.hc{height:46.593750pt;}
.hd{height:52.650937pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.he{height:211.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w6{width:556.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x12{left:61.119988pt;}
.x4{left:77.920000pt;}
.x9{left:85.151988pt;}
.x1{left:88.351988pt;}
.x2{left:108.991988pt;}
.xe{left:113.151988pt;}
.x15{left:118.912000pt;}
.x10{left:122.911988pt;}
.x11{left:132.351988pt;}
.xb{left:150.106655pt;}
.xa{left:155.386655pt;}
.xd{left:166.426655pt;}
.xf{left:262.946655pt;}
.x5{left:264.706667pt;}
.x3{left:336.386655pt;}
.x6{left:350.146667pt;}
.xc{left:396.866655pt;}
.x14{left:398.306655pt;}
.x8{left:444.573333pt;}
.x13{left:483.453322pt;}
.x16{left:556.101333pt;}
}




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