
    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_73358e3b8a721777bd8a9fa9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d2f7afcd59e6a056167e19f1.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_a5b2c69a81e42df4ce949816.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_5c8034b77afe0b586d8ad5f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_99d789426fbf5b2b9723d57b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.259800px;}
.ls3{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.lsa{letter-spacing:11.466720px;}
.ls9{letter-spacing:41.706720px;}
.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:-17.856000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.146400px;}
.ws7{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.137120px;}
._2{width:1.045440px;}
._8{width:2.726160px;}
._1{width:3.856800px;}
._d{width:5.289120px;}
._e{width:6.752880px;}
._a{width:8.667600px;}
._9{width:9.681120px;}
._15{width:10.788480px;}
._16{width:11.851920px;}
._11{width:13.539360px;}
._14{width:15.944880px;}
._7{width:17.360640px;}
._6{width:18.878400px;}
._10{width:19.910640px;}
._1a{width:20.984880px;}
._19{width:22.492560px;}
._12{width:23.802960px;}
._c{width:24.993120px;}
._b{width:26.055360px;}
._18{width:27.460080px;}
._13{width:28.476000px;}
._f{width:35.228880px;}
._17{width:39.113280px;}
._5{width:136.056000px;}
._4{width:636.906000px;}
._3{width:748.956000px;}
.fc5{color:transparent;}
.fc4{color:rgb(34,35,37);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:3.240000px;}
.y64{bottom:11.874000px;}
.y5e{bottom:11.880000px;}
.y96{bottom:11.925000px;}
.y65{bottom:20.514000px;}
.y5f{bottom:20.520000px;}
.y97{bottom:20.565000px;}
.yb{bottom:35.640000px;}
.ya{bottom:53.820000px;}
.y9{bottom:71.316000px;}
.y34{bottom:111.276000px;}
.y90{bottom:115.776000px;}
.y8e{bottom:120.096000px;}
.y66{bottom:124.956000px;}
.y33{bottom:134.676000px;}
.y5a{bottom:139.176000px;}
.y63{bottom:142.956000px;}
.y8d{bottom:143.496000px;}
.y32{bottom:158.070000px;}
.y59{bottom:162.570000px;}
.y8c{bottom:166.890000px;}
.y62{bottom:178.230000px;}
.y31{bottom:181.470000px;}
.y58{bottom:185.970000px;}
.y8b{bottom:190.290000px;}
.y30{bottom:204.870000px;}
.y57{bottom:209.370000px;}
.y61{bottom:213.510000px;}
.y8a{bottom:213.690000px;}
.y9a{bottom:224.130000px;}
.y2f{bottom:228.270000px;}
.y8f{bottom:230.070000px;}
.y60{bottom:231.510000px;}
.y56{bottom:232.770000px;}
.y89{bottom:237.090000px;}
.y99{bottom:241.950000px;}
.y2e{bottom:251.670000px;}
.y55{bottom:256.170000px;}
.y88{bottom:260.490000px;}
.y5d{bottom:266.790000px;}
.y2d{bottom:277.230000px;}
.y54{bottom:279.570000px;}
.y87{bottom:283.890000px;}
.y2c{bottom:300.630000px;}
.y5b{bottom:302.070000px;}
.y53{bottom:302.970000px;}
.y86{bottom:307.290000px;}
.y98{bottom:312.510000px;}
.y2b{bottom:324.030000px;}
.y52{bottom:326.370000px;}
.y95{bottom:330.510000px;}
.y85{bottom:330.690000px;}
.y2a{bottom:347.475000px;}
.y51{bottom:349.815000px;}
.y84{bottom:354.135000px;}
.y94{bottom:365.835000px;}
.y9b{bottom:368.715000px;}
.y29{bottom:370.875000px;}
.y50{bottom:373.215000px;}
.y83{bottom:377.535000px;}
.y28{bottom:394.275000px;}
.y4f{bottom:396.615000px;}
.y82{bottom:400.935000px;}
.y93{bottom:401.115000px;}
.y27{bottom:417.675000px;}
.y92{bottom:419.115000px;}
.y4e{bottom:420.015000px;}
.y81{bottom:424.335000px;}
.y26{bottom:441.075000px;}
.y4d{bottom:443.415000px;}
.y80{bottom:447.735000px;}
.y25{bottom:464.475000px;}
.y4c{bottom:466.815000px;}
.y91{bottom:467.715000px;}
.y7f{bottom:471.135000px;}
.y24{bottom:487.875000px;}
.y4b{bottom:490.215000px;}
.y7e{bottom:494.535000px;}
.y23{bottom:511.275000px;}
.y4a{bottom:513.615000px;}
.y7d{bottom:517.935000px;}
.y22{bottom:534.675000px;}
.y49{bottom:537.015000px;}
.y7c{bottom:541.335000px;}
.y21{bottom:558.075000px;}
.y48{bottom:560.415000px;}
.y7b{bottom:564.735000px;}
.y20{bottom:581.475000px;}
.y47{bottom:583.815000px;}
.y7a{bottom:588.135000px;}
.y1f{bottom:604.905000px;}
.y46{bottom:607.245000px;}
.y79{bottom:611.565000px;}
.y1e{bottom:628.305000px;}
.y45{bottom:630.645000px;}
.y78{bottom:634.965000px;}
.y1d{bottom:651.705000px;}
.y44{bottom:654.045000px;}
.y77{bottom:658.365000px;}
.y1c{bottom:675.105000px;}
.y43{bottom:677.445000px;}
.y76{bottom:681.765000px;}
.y1b{bottom:698.505000px;}
.y42{bottom:700.845000px;}
.y75{bottom:705.165000px;}
.y1a{bottom:721.905000px;}
.y41{bottom:724.245000px;}
.y74{bottom:728.565000px;}
.y19{bottom:745.305000px;}
.y40{bottom:747.645000px;}
.y73{bottom:751.965000px;}
.y18{bottom:768.705000px;}
.y3f{bottom:771.045000px;}
.y72{bottom:775.365000px;}
.y17{bottom:792.105000px;}
.y3e{bottom:794.445000px;}
.y71{bottom:798.765000px;}
.y16{bottom:815.505000px;}
.y3d{bottom:817.845000px;}
.y70{bottom:822.165000px;}
.y15{bottom:838.905000px;}
.y3c{bottom:841.245000px;}
.y6f{bottom:845.565000px;}
.y14{bottom:862.305000px;}
.y3b{bottom:864.645000px;}
.y6e{bottom:868.965000px;}
.y13{bottom:885.750000px;}
.y3a{bottom:888.090000px;}
.y6d{bottom:892.410000px;}
.y12{bottom:911.490000px;}
.y6c{bottom:915.810000px;}
.y11{bottom:934.350000px;}
.y39{bottom:934.890000px;}
.y6b{bottom:939.210000px;}
.y10{bottom:957.750000px;}
.y38{bottom:958.290000px;}
.y6a{bottom:962.610000px;}
.y69{bottom:980.430000px;}
.yf{bottom:981.150000px;}
.y37{bottom:981.690000px;}
.ye{bottom:1005.090000px;}
.y68{bottom:1015.710000px;}
.yd{bottom:1027.410000px;}
.y36{bottom:1028.490000px;}
.yc{bottom:1050.810000px;}
.y67{bottom:1050.990000px;}
.y35{bottom:1051.890000px;}
.y8{bottom:1072.410000px;}
.y7{bottom:1089.870000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1123.710000px;}
.y4{bottom:1140.660000px;}
.y3{bottom:1181.340000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.ha{height:17.100000px;}
.hd{height:17.280000px;}
.hb{height:34.380000px;}
.hc{height:34.560000px;}
.he{height:34.596000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h3{height:44.240625px;}
.h8{height:46.251562px;}
.h7{height:46.736719px;}
.h9{height:48.496641px;}
.hf{height:49.255313px;}
.h4{height:50.800781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:107.820000px;}
.w3{width:108.180000px;}
.w4{width:140.076000px;}
.wa{width:152.670000px;}
.w7{width:153.030000px;}
.w8{width:214.230000px;}
.w9{width:263.010000px;}
.w5{width:381.855000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:20.700000px;}
.xf{left:24.660000px;}
.x11{left:27.900000px;}
.x1d{left:38.340000px;}
.x1c{left:51.654000px;}
.x1{left:108.035987px;}
.x7{left:113.075987px;}
.x2{left:130.535987px;}
.x24{left:135.035987px;}
.x13{left:153.750000px;}
.x4{left:157.169987px;}
.xe{left:172.109987px;}
.x10{left:216.390000px;}
.x16{left:222.509987px;}
.x17{left:236.189987px;}
.x19{left:270.029987px;}
.xd{left:277.049987px;}
.x1b{left:284.834987px;}
.x14{left:285.914987px;}
.x21{left:309.494987px;}
.x8{left:326.954987px;}
.x1a{left:332.174987px;}
.xc{left:335.414987px;}
.x12{left:357.195000px;}
.xa{left:362.594987px;}
.xb{left:378.254987px;}
.x22{left:388.154987px;}
.x6{left:396.434987px;}
.x23{left:400.214987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x1e{left:499.245000px;}
.x3{left:518.324987px;}
.x18{left:621.104987px;}
.x20{left:679.649987px;}
.x15{left:685.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsa{letter-spacing:10.192640pt;}
.ls9{letter-spacing:37.072640pt;}
.ws1{word-spacing:-15.872000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.010773pt;}
._2{width:0.929280pt;}
._8{width:2.423253pt;}
._1{width:3.428267pt;}
._d{width:4.701440pt;}
._e{width:6.002560pt;}
._a{width:7.704533pt;}
._9{width:8.605440pt;}
._15{width:9.589760pt;}
._16{width:10.535040pt;}
._11{width:12.034987pt;}
._14{width:14.173227pt;}
._7{width:15.431680pt;}
._6{width:16.780800pt;}
._10{width:17.698347pt;}
._1a{width:18.653227pt;}
._19{width:19.993387pt;}
._12{width:21.158187pt;}
._c{width:22.216107pt;}
._b{width:23.160320pt;}
._18{width:24.408960pt;}
._13{width:25.312000pt;}
._f{width:31.314560pt;}
._17{width:34.767360pt;}
._5{width:120.938667pt;}
._4{width:566.138667pt;}
._3{width:665.738667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.880000pt;}
.y64{bottom:10.554667pt;}
.y5e{bottom:10.560000pt;}
.y96{bottom:10.600000pt;}
.y65{bottom:18.234667pt;}
.y5f{bottom:18.240000pt;}
.y97{bottom:18.280000pt;}
.yb{bottom:31.680000pt;}
.ya{bottom:47.840000pt;}
.y9{bottom:63.392000pt;}
.y34{bottom:98.912000pt;}
.y90{bottom:102.912000pt;}
.y8e{bottom:106.752000pt;}
.y66{bottom:111.072000pt;}
.y33{bottom:119.712000pt;}
.y5a{bottom:123.712000pt;}
.y63{bottom:127.072000pt;}
.y8d{bottom:127.552000pt;}
.y32{bottom:140.506667pt;}
.y59{bottom:144.506667pt;}
.y8c{bottom:148.346667pt;}
.y62{bottom:158.426667pt;}
.y31{bottom:161.306667pt;}
.y58{bottom:165.306667pt;}
.y8b{bottom:169.146667pt;}
.y30{bottom:182.106667pt;}
.y57{bottom:186.106667pt;}
.y61{bottom:189.786667pt;}
.y8a{bottom:189.946667pt;}
.y9a{bottom:199.226667pt;}
.y2f{bottom:202.906667pt;}
.y8f{bottom:204.506667pt;}
.y60{bottom:205.786667pt;}
.y56{bottom:206.906667pt;}
.y89{bottom:210.746667pt;}
.y99{bottom:215.066667pt;}
.y2e{bottom:223.706667pt;}
.y55{bottom:227.706667pt;}
.y88{bottom:231.546667pt;}
.y5d{bottom:237.146667pt;}
.y2d{bottom:246.426667pt;}
.y54{bottom:248.506667pt;}
.y87{bottom:252.346667pt;}
.y2c{bottom:267.226667pt;}
.y5b{bottom:268.506667pt;}
.y53{bottom:269.306667pt;}
.y86{bottom:273.146667pt;}
.y98{bottom:277.786667pt;}
.y2b{bottom:288.026667pt;}
.y52{bottom:290.106667pt;}
.y95{bottom:293.786667pt;}
.y85{bottom:293.946667pt;}
.y2a{bottom:308.866667pt;}
.y51{bottom:310.946667pt;}
.y84{bottom:314.786667pt;}
.y94{bottom:325.186667pt;}
.y9b{bottom:327.746667pt;}
.y29{bottom:329.666667pt;}
.y50{bottom:331.746667pt;}
.y83{bottom:335.586667pt;}
.y28{bottom:350.466667pt;}
.y4f{bottom:352.546667pt;}
.y82{bottom:356.386667pt;}
.y93{bottom:356.546667pt;}
.y27{bottom:371.266667pt;}
.y92{bottom:372.546667pt;}
.y4e{bottom:373.346667pt;}
.y81{bottom:377.186667pt;}
.y26{bottom:392.066667pt;}
.y4d{bottom:394.146667pt;}
.y80{bottom:397.986667pt;}
.y25{bottom:412.866667pt;}
.y4c{bottom:414.946667pt;}
.y91{bottom:415.746667pt;}
.y7f{bottom:418.786667pt;}
.y24{bottom:433.666667pt;}
.y4b{bottom:435.746667pt;}
.y7e{bottom:439.586667pt;}
.y23{bottom:454.466667pt;}
.y4a{bottom:456.546667pt;}
.y7d{bottom:460.386667pt;}
.y22{bottom:475.266667pt;}
.y49{bottom:477.346667pt;}
.y7c{bottom:481.186667pt;}
.y21{bottom:496.066667pt;}
.y48{bottom:498.146667pt;}
.y7b{bottom:501.986667pt;}
.y20{bottom:516.866667pt;}
.y47{bottom:518.946667pt;}
.y7a{bottom:522.786667pt;}
.y1f{bottom:537.693333pt;}
.y46{bottom:539.773333pt;}
.y79{bottom:543.613333pt;}
.y1e{bottom:558.493333pt;}
.y45{bottom:560.573333pt;}
.y78{bottom:564.413333pt;}
.y1d{bottom:579.293333pt;}
.y44{bottom:581.373333pt;}
.y77{bottom:585.213333pt;}
.y1c{bottom:600.093333pt;}
.y43{bottom:602.173333pt;}
.y76{bottom:606.013333pt;}
.y1b{bottom:620.893333pt;}
.y42{bottom:622.973333pt;}
.y75{bottom:626.813333pt;}
.y1a{bottom:641.693333pt;}
.y41{bottom:643.773333pt;}
.y74{bottom:647.613333pt;}
.y19{bottom:662.493333pt;}
.y40{bottom:664.573333pt;}
.y73{bottom:668.413333pt;}
.y18{bottom:683.293333pt;}
.y3f{bottom:685.373333pt;}
.y72{bottom:689.213333pt;}
.y17{bottom:704.093333pt;}
.y3e{bottom:706.173333pt;}
.y71{bottom:710.013333pt;}
.y16{bottom:724.893333pt;}
.y3d{bottom:726.973333pt;}
.y70{bottom:730.813333pt;}
.y15{bottom:745.693333pt;}
.y3c{bottom:747.773333pt;}
.y6f{bottom:751.613333pt;}
.y14{bottom:766.493333pt;}
.y3b{bottom:768.573333pt;}
.y6e{bottom:772.413333pt;}
.y13{bottom:787.333333pt;}
.y3a{bottom:789.413333pt;}
.y6d{bottom:793.253333pt;}
.y12{bottom:810.213333pt;}
.y6c{bottom:814.053333pt;}
.y11{bottom:830.533333pt;}
.y39{bottom:831.013333pt;}
.y6b{bottom:834.853333pt;}
.y10{bottom:851.333333pt;}
.y38{bottom:851.813333pt;}
.y6a{bottom:855.653333pt;}
.y69{bottom:871.493333pt;}
.yf{bottom:872.133333pt;}
.y37{bottom:872.613333pt;}
.ye{bottom:893.413333pt;}
.y68{bottom:902.853333pt;}
.yd{bottom:913.253333pt;}
.y36{bottom:914.213333pt;}
.yc{bottom:934.053333pt;}
.y67{bottom:934.213333pt;}
.y35{bottom:935.013333pt;}
.y8{bottom:953.253333pt;}
.y7{bottom:968.773333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:998.853333pt;}
.y4{bottom:1013.920000pt;}
.y3{bottom:1050.080000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.ha{height:15.200000pt;}
.hd{height:15.360000pt;}
.hb{height:30.560000pt;}
.hc{height:30.720000pt;}
.he{height:30.752000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h3{height:39.325000pt;}
.h8{height:41.112500pt;}
.h7{height:41.543750pt;}
.h9{height:43.108125pt;}
.hf{height:43.782500pt;}
.h4{height:45.156250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:95.840000pt;}
.w3{width:96.160000pt;}
.w4{width:124.512000pt;}
.wa{width:135.706667pt;}
.w7{width:136.026667pt;}
.w8{width:190.426667pt;}
.w9{width:233.786667pt;}
.w5{width:339.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:18.400000pt;}
.xf{left:21.920000pt;}
.x11{left:24.800000pt;}
.x1d{left:34.080000pt;}
.x1c{left:45.914667pt;}
.x1{left:96.031988pt;}
.x7{left:100.511988pt;}
.x2{left:116.031988pt;}
.x24{left:120.031988pt;}
.x13{left:136.666667pt;}
.x4{left:139.706655pt;}
.xe{left:152.986655pt;}
.x10{left:192.346667pt;}
.x16{left:197.786655pt;}
.x17{left:209.946655pt;}
.x19{left:240.026655pt;}
.xd{left:246.266655pt;}
.x1b{left:253.186655pt;}
.x14{left:254.146655pt;}
.x21{left:275.106655pt;}
.x8{left:290.626655pt;}
.x1a{left:295.266655pt;}
.xc{left:298.146655pt;}
.x12{left:317.506667pt;}
.xa{left:322.306655pt;}
.xb{left:336.226655pt;}
.x22{left:345.026655pt;}
.x6{left:352.386655pt;}
.x23{left:355.746655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x1e{left:443.773333pt;}
.x3{left:460.733322pt;}
.x18{left:552.093322pt;}
.x20{left:604.133322pt;}
.x15{left:609.733322pt;}
}




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