
    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_1415c51f1cdd098a164679ec.woff')format("woff");}.ff1{font-family:ff1;line-height:0.947754;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_2708fd9fd160649447b04223.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6d5d901280e2ec0fc735bb52.woff')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_975892907a93df782918f5aa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_2a1854aea0ea13319da53037.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_90cbdfd940ddfce070659cfa.woff')format("woff");}.ff7{font-family:ff7;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;}
.ls10{letter-spacing:-0.403200px;}
.ls5{letter-spacing:-0.331200px;}
.lsc{letter-spacing:-0.302400px;}
.lse{letter-spacing:-0.259200px;}
.lsa{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.172800px;}
.ls0{letter-spacing:0.201600px;}
.ls3{letter-spacing:0.316800px;}
.ls2{letter-spacing:0.388800px;}
.ls6{letter-spacing:1.038000px;}
.lsf{letter-spacing:35.226720px;}
.ls8{letter-spacing:64.170720px;}
.ls9{letter-spacing:195.825600px;}
.lsb{letter-spacing:197.020800px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws0{word-spacing:-22.723200px;}
.ws5{word-spacing:-20.318400px;}
.ws6{word-spacing:-20.246400px;}
.ws3{word-spacing:-19.512000px;}
.ws9{word-spacing:-19.267200px;}
.ws1{word-spacing:-19.123200px;}
.wsb{word-spacing:-19.051200px;}
.wsa{word-spacing:-18.864000px;}
.ws8{word-spacing:-18.820800px;}
.ws2{word-spacing:-18.792000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.126080px;}
._1{width:1.093440px;}
._5{width:2.211120px;}
._2{width:3.840000px;}
._7{width:5.347200px;}
._3{width:6.513840px;}
._4{width:7.613760px;}
._6{width:8.865360px;}
._9{width:9.943680px;}
._8{width:10.995840px;}
._b{width:12.086400px;}
._a{width:13.625280px;}
._d{width:14.760720px;}
._e{width:15.887280px;}
._c{width:17.868240px;}
._10{width:22.290480px;}
._11{width:23.425920px;}
._27{width:25.933200px;}
._12{width:30.059280px;}
._13{width:32.390880px;}
._15{width:46.713600px;}
._17{width:159.413760px;}
._1e{width:172.560960px;}
._1b{width:178.536960px;}
._24{width:182.122560px;}
._f{width:197.020800px;}
._21{width:200.050560px;}
._1a{width:209.612160px;}
._18{width:237.101760px;}
._14{width:243.077760px;}
._25{width:244.433760px;}
._26{width:287.300160px;}
._1c{width:306.584160px;}
._19{width:342.440160px;}
._1f{width:363.953760px;}
._23{width:380.525760px;}
._20{width:422.256000px;}
._1d{width:434.208000px;}
._16{width:458.272800px;}
._22{width:478.591200px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.600000px;}
.y5{bottom:3.780000px;}
.y6{bottom:4.500000px;}
.y96{bottom:9.360000px;}
.y90{bottom:12.420000px;}
.y92{bottom:18.180000px;}
.y8d{bottom:21.240000px;}
.y4{bottom:25.380000px;}
.y8f{bottom:30.060000px;}
.y95{bottom:33.120000px;}
.y8c{bottom:38.925000px;}
.y94{bottom:50.760000px;}
.y9e{bottom:59.040000px;}
.y83{bottom:62.280000px;}
.y44{bottom:70.920000px;}
.y9d{bottom:76.500000px;}
.y82{bottom:79.920000px;}
.y43{bottom:88.560000px;}
.y9c{bottom:95.040000px;}
.y81{bottom:97.560000px;}
.y42{bottom:106.236000px;}
.y9b{bottom:113.616000px;}
.y80{bottom:115.056000px;}
.y41{bottom:123.876000px;}
.y9a{bottom:132.156000px;}
.y7f{bottom:132.696000px;}
.y40{bottom:141.516000px;}
.y7e{bottom:150.330000px;}
.y99{bottom:150.690000px;}
.y3f{bottom:158.970000px;}
.y7d{bottom:167.970000px;}
.y98{bottom:169.410000px;}
.y3e{bottom:176.610000px;}
.y97{bottom:184.170000px;}
.y7c{bottom:185.610000px;}
.y3d{bottom:194.250000px;}
.y7b{bottom:203.070000px;}
.y3c{bottom:211.890000px;}
.y7a{bottom:220.710000px;}
.y3b{bottom:229.530000px;}
.y93{bottom:231.690000px;}
.y79{bottom:238.350000px;}
.y3a{bottom:247.170000px;}
.y78{bottom:255.990000px;}
.y39{bottom:264.630000px;}
.y77{bottom:273.630000px;}
.y91{bottom:279.210000px;}
.y38{bottom:282.270000px;}
.y76{bottom:291.270000px;}
.y37{bottom:299.910000px;}
.y75{bottom:308.730000px;}
.y36{bottom:317.550000px;}
.y74{bottom:326.370000px;}
.y8b{bottom:326.730000px;}
.y35{bottom:335.190000px;}
.y73{bottom:344.010000px;}
.y34{bottom:352.650000px;}
.y72{bottom:361.695000px;}
.y33{bottom:370.335000px;}
.y71{bottom:379.335000px;}
.y8a{bottom:384.015000px;}
.y32{bottom:387.975000px;}
.y70{bottom:396.795000px;}
.y89{bottom:401.475000px;}
.y31{bottom:405.615000px;}
.y6f{bottom:414.255000px;}
.y88{bottom:419.115000px;}
.y30{bottom:423.255000px;}
.y6e{bottom:432.795000px;}
.y87{bottom:436.755000px;}
.y2f{bottom:440.895000px;}
.y6d{bottom:451.515000px;}
.y86{bottom:454.395000px;}
.y2e{bottom:458.355000px;}
.y6c{bottom:470.055000px;}
.y85{bottom:472.035000px;}
.y2d{bottom:475.995000px;}
.y6b{bottom:488.595000px;}
.y84{bottom:489.675000px;}
.y2c{bottom:493.635000px;}
.y6a{bottom:507.135000px;}
.y2b{bottom:511.275000px;}
.y69{bottom:524.775000px;}
.y2a{bottom:528.915000px;}
.y68{bottom:542.415000px;}
.y29{bottom:546.375000px;}
.y67{bottom:560.055000px;}
.y28{bottom:564.015000px;}
.y66{bottom:577.695000px;}
.y27{bottom:581.655000px;}
.y65{bottom:595.155000px;}
.y26{bottom:599.295000px;}
.y64{bottom:612.795000px;}
.y25{bottom:616.965000px;}
.y63{bottom:630.465000px;}
.y24{bottom:634.605000px;}
.y62{bottom:648.105000px;}
.y23{bottom:652.065000px;}
.y61{bottom:665.745000px;}
.y22{bottom:669.705000px;}
.y60{bottom:683.385000px;}
.y21{bottom:687.345000px;}
.y5f{bottom:700.845000px;}
.y20{bottom:704.985000px;}
.y5e{bottom:718.485000px;}
.y1f{bottom:722.625000px;}
.y5d{bottom:736.125000px;}
.y1e{bottom:740.265000px;}
.y5c{bottom:753.765000px;}
.y1d{bottom:757.725000px;}
.y5b{bottom:771.405000px;}
.y1c{bottom:775.365000px;}
.y5a{bottom:788.865000px;}
.y1b{bottom:793.005000px;}
.y59{bottom:806.505000px;}
.y1a{bottom:810.645000px;}
.y58{bottom:824.145000px;}
.y19{bottom:828.285000px;}
.y57{bottom:841.785000px;}
.y18{bottom:845.745000px;}
.y56{bottom:859.425000px;}
.y17{bottom:863.385000px;}
.y55{bottom:877.110000px;}
.y16{bottom:881.070000px;}
.y54{bottom:894.570000px;}
.y15{bottom:898.710000px;}
.y53{bottom:912.210000px;}
.y14{bottom:917.070000px;}
.y52{bottom:929.850000px;}
.y13{bottom:934.710000px;}
.y51{bottom:947.490000px;}
.y12{bottom:952.170000px;}
.y50{bottom:965.130000px;}
.y11{bottom:969.810000px;}
.y4f{bottom:982.770000px;}
.y10{bottom:987.450000px;}
.y4e{bottom:1000.230000px;}
.yf{bottom:1005.090000px;}
.y4d{bottom:1017.870000px;}
.ye{bottom:1022.550000px;}
.y4c{bottom:1035.510000px;}
.yd{bottom:1042.530000px;}
.y4b{bottom:1053.150000px;}
.yc{bottom:1060.170000px;}
.y4a{bottom:1070.790000px;}
.yb{bottom:1077.810000px;}
.y49{bottom:1088.250000px;}
.ya{bottom:1095.450000px;}
.y48{bottom:1105.890000px;}
.y9{bottom:1113.630000px;}
.y47{bottom:1123.530000px;}
.y8{bottom:1134.720000px;}
.y46{bottom:1141.200000px;}
.y7{bottom:1155.960000px;}
.y45{bottom:1158.840000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1215.360000px;}
.h4{height:19.260000px;}
.h7{height:42.806602px;}
.h8{height:42.835781px;}
.hb{height:46.800000px;}
.h2{height:47.480625px;}
.h6{height:51.609375px;}
.ha{height:52.956000px;}
.h9{height:61.423863px;}
.h5{height:65.884219px;}
.h3{height:67.824844px;}
.hc{height:94.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:61.416000px;}
.w4{width:71.640000px;}
.w5{width:71.856000px;}
.w6{width:75.420000px;}
.w7{width:144.216000px;}
.w2{width:734.910000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x7{left:14.220000px;}
.x20{left:16.020000px;}
.x17{left:17.280000px;}
.x1b{left:18.750000px;}
.x19{left:20.880000px;}
.x18{left:24.840000px;}
.x16{left:26.100000px;}
.x1e{left:30.060000px;}
.x1f{left:35.640000px;}
.x1d{left:37.620000px;}
.x4{left:48.420000px;}
.x8{left:54.000000px;}
.x14{left:75.240000px;}
.x11{left:81.000000px;}
.x10{left:108.036000px;}
.x1{left:192.810000px;}
.x9{left:205.230000px;}
.xc{left:213.870000px;}
.xe{left:219.270000px;}
.x13{left:246.810000px;}
.x3{left:260.490000px;}
.x12{left:269.670000px;}
.x15{left:300.315000px;}
.xa{left:302.295000px;}
.xf{left:322.995000px;}
.x2{left:347.295000px;}
.xb{left:371.775000px;}
.xd{left:417.495000px;}
.x1a{left:445.035000px;}
.x1c{left:517.605000px;}
.x6{left:783.330000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.358400pt;}
.ls5{letter-spacing:-0.294400pt;}
.lsc{letter-spacing:-0.268800pt;}
.lse{letter-spacing:-0.230400pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.153600pt;}
.ls0{letter-spacing:0.179200pt;}
.ls3{letter-spacing:0.281600pt;}
.ls2{letter-spacing:0.345600pt;}
.ls6{letter-spacing:0.922667pt;}
.lsf{letter-spacing:31.312640pt;}
.ls8{letter-spacing:57.040640pt;}
.ls9{letter-spacing:174.067200pt;}
.lsb{letter-spacing:175.129600pt;}
.ws7{word-spacing:-53.120000pt;}
.ws0{word-spacing:-20.198400pt;}
.ws5{word-spacing:-18.060800pt;}
.ws6{word-spacing:-17.996800pt;}
.ws3{word-spacing:-17.344000pt;}
.ws9{word-spacing:-17.126400pt;}
.ws1{word-spacing:-16.998400pt;}
.wsb{word-spacing:-16.934400pt;}
.wsa{word-spacing:-16.768000pt;}
.ws8{word-spacing:-16.729600pt;}
.ws2{word-spacing:-16.704000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.971947pt;}
._5{width:1.965440pt;}
._2{width:3.413333pt;}
._7{width:4.753067pt;}
._3{width:5.790080pt;}
._4{width:6.767787pt;}
._6{width:7.880320pt;}
._9{width:8.838827pt;}
._8{width:9.774080pt;}
._b{width:10.743467pt;}
._a{width:12.111360pt;}
._d{width:13.120640pt;}
._e{width:14.122027pt;}
._c{width:15.882880pt;}
._10{width:19.813760pt;}
._11{width:20.823040pt;}
._27{width:23.051733pt;}
._12{width:26.719360pt;}
._13{width:28.791893pt;}
._15{width:41.523200pt;}
._17{width:141.701120pt;}
._1e{width:153.387520pt;}
._1b{width:158.699520pt;}
._24{width:161.886720pt;}
._f{width:175.129600pt;}
._21{width:177.822720pt;}
._1a{width:186.321920pt;}
._18{width:210.757120pt;}
._14{width:216.069120pt;}
._25{width:217.274453pt;}
._26{width:255.377920pt;}
._1c{width:272.519253pt;}
._19{width:304.391253pt;}
._1f{width:323.514453pt;}
._23{width:338.245120pt;}
._20{width:375.338667pt;}
._1d{width:385.962667pt;}
._16{width:407.353600pt;}
._22{width:425.414400pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:3.200000pt;}
.y5{bottom:3.360000pt;}
.y6{bottom:4.000000pt;}
.y96{bottom:8.320000pt;}
.y90{bottom:11.040000pt;}
.y92{bottom:16.160000pt;}
.y8d{bottom:18.880000pt;}
.y4{bottom:22.560000pt;}
.y8f{bottom:26.720000pt;}
.y95{bottom:29.440000pt;}
.y8c{bottom:34.600000pt;}
.y94{bottom:45.120000pt;}
.y9e{bottom:52.480000pt;}
.y83{bottom:55.360000pt;}
.y44{bottom:63.040000pt;}
.y9d{bottom:68.000000pt;}
.y82{bottom:71.040000pt;}
.y43{bottom:78.720000pt;}
.y9c{bottom:84.480000pt;}
.y81{bottom:86.720000pt;}
.y42{bottom:94.432000pt;}
.y9b{bottom:100.992000pt;}
.y80{bottom:102.272000pt;}
.y41{bottom:110.112000pt;}
.y9a{bottom:117.472000pt;}
.y7f{bottom:117.952000pt;}
.y40{bottom:125.792000pt;}
.y7e{bottom:133.626667pt;}
.y99{bottom:133.946667pt;}
.y3f{bottom:141.306667pt;}
.y7d{bottom:149.306667pt;}
.y98{bottom:150.586667pt;}
.y3e{bottom:156.986667pt;}
.y97{bottom:163.706667pt;}
.y7c{bottom:164.986667pt;}
.y3d{bottom:172.666667pt;}
.y7b{bottom:180.506667pt;}
.y3c{bottom:188.346667pt;}
.y7a{bottom:196.186667pt;}
.y3b{bottom:204.026667pt;}
.y93{bottom:205.946667pt;}
.y79{bottom:211.866667pt;}
.y3a{bottom:219.706667pt;}
.y78{bottom:227.546667pt;}
.y39{bottom:235.226667pt;}
.y77{bottom:243.226667pt;}
.y91{bottom:248.186667pt;}
.y38{bottom:250.906667pt;}
.y76{bottom:258.906667pt;}
.y37{bottom:266.586667pt;}
.y75{bottom:274.426667pt;}
.y36{bottom:282.266667pt;}
.y74{bottom:290.106667pt;}
.y8b{bottom:290.426667pt;}
.y35{bottom:297.946667pt;}
.y73{bottom:305.786667pt;}
.y34{bottom:313.466667pt;}
.y72{bottom:321.506667pt;}
.y33{bottom:329.186667pt;}
.y71{bottom:337.186667pt;}
.y8a{bottom:341.346667pt;}
.y32{bottom:344.866667pt;}
.y70{bottom:352.706667pt;}
.y89{bottom:356.866667pt;}
.y31{bottom:360.546667pt;}
.y6f{bottom:368.226667pt;}
.y88{bottom:372.546667pt;}
.y30{bottom:376.226667pt;}
.y6e{bottom:384.706667pt;}
.y87{bottom:388.226667pt;}
.y2f{bottom:391.906667pt;}
.y6d{bottom:401.346667pt;}
.y86{bottom:403.906667pt;}
.y2e{bottom:407.426667pt;}
.y6c{bottom:417.826667pt;}
.y85{bottom:419.586667pt;}
.y2d{bottom:423.106667pt;}
.y6b{bottom:434.306667pt;}
.y84{bottom:435.266667pt;}
.y2c{bottom:438.786667pt;}
.y6a{bottom:450.786667pt;}
.y2b{bottom:454.466667pt;}
.y69{bottom:466.466667pt;}
.y2a{bottom:470.146667pt;}
.y68{bottom:482.146667pt;}
.y29{bottom:485.666667pt;}
.y67{bottom:497.826667pt;}
.y28{bottom:501.346667pt;}
.y66{bottom:513.506667pt;}
.y27{bottom:517.026667pt;}
.y65{bottom:529.026667pt;}
.y26{bottom:532.706667pt;}
.y64{bottom:544.706667pt;}
.y25{bottom:548.413333pt;}
.y63{bottom:560.413333pt;}
.y24{bottom:564.093333pt;}
.y62{bottom:576.093333pt;}
.y23{bottom:579.613333pt;}
.y61{bottom:591.773333pt;}
.y22{bottom:595.293333pt;}
.y60{bottom:607.453333pt;}
.y21{bottom:610.973333pt;}
.y5f{bottom:622.973333pt;}
.y20{bottom:626.653333pt;}
.y5e{bottom:638.653333pt;}
.y1f{bottom:642.333333pt;}
.y5d{bottom:654.333333pt;}
.y1e{bottom:658.013333pt;}
.y5c{bottom:670.013333pt;}
.y1d{bottom:673.533333pt;}
.y5b{bottom:685.693333pt;}
.y1c{bottom:689.213333pt;}
.y5a{bottom:701.213333pt;}
.y1b{bottom:704.893333pt;}
.y59{bottom:716.893333pt;}
.y1a{bottom:720.573333pt;}
.y58{bottom:732.573333pt;}
.y19{bottom:736.253333pt;}
.y57{bottom:748.253333pt;}
.y18{bottom:751.773333pt;}
.y56{bottom:763.933333pt;}
.y17{bottom:767.453333pt;}
.y55{bottom:779.653333pt;}
.y16{bottom:783.173333pt;}
.y54{bottom:795.173333pt;}
.y15{bottom:798.853333pt;}
.y53{bottom:810.853333pt;}
.y14{bottom:815.173333pt;}
.y52{bottom:826.533333pt;}
.y13{bottom:830.853333pt;}
.y51{bottom:842.213333pt;}
.y12{bottom:846.373333pt;}
.y50{bottom:857.893333pt;}
.y11{bottom:862.053333pt;}
.y4f{bottom:873.573333pt;}
.y10{bottom:877.733333pt;}
.y4e{bottom:889.093333pt;}
.yf{bottom:893.413333pt;}
.y4d{bottom:904.773333pt;}
.ye{bottom:908.933333pt;}
.y4c{bottom:920.453333pt;}
.yd{bottom:926.693333pt;}
.y4b{bottom:936.133333pt;}
.yc{bottom:942.373333pt;}
.y4a{bottom:951.813333pt;}
.yb{bottom:958.053333pt;}
.y49{bottom:967.333333pt;}
.ya{bottom:973.733333pt;}
.y48{bottom:983.013333pt;}
.y9{bottom:989.893333pt;}
.y47{bottom:998.693333pt;}
.y8{bottom:1008.640000pt;}
.y46{bottom:1014.400000pt;}
.y7{bottom:1027.520000pt;}
.y45{bottom:1030.080000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1080.320000pt;}
.h4{height:17.120000pt;}
.h7{height:38.050313pt;}
.h8{height:38.076250pt;}
.hb{height:41.600000pt;}
.h2{height:42.205000pt;}
.h6{height:45.875000pt;}
.ha{height:47.072000pt;}
.h9{height:54.598989pt;}
.h5{height:58.563750pt;}
.h3{height:60.288750pt;}
.hc{height:83.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:54.592000pt;}
.w4{width:63.680000pt;}
.w5{width:63.872000pt;}
.w6{width:67.040000pt;}
.w7{width:128.192000pt;}
.w2{width:653.253333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x7{left:12.640000pt;}
.x20{left:14.240000pt;}
.x17{left:15.360000pt;}
.x1b{left:16.666667pt;}
.x19{left:18.560000pt;}
.x18{left:22.080000pt;}
.x16{left:23.200000pt;}
.x1e{left:26.720000pt;}
.x1f{left:31.680000pt;}
.x1d{left:33.440000pt;}
.x4{left:43.040000pt;}
.x8{left:48.000000pt;}
.x14{left:66.880000pt;}
.x11{left:72.000000pt;}
.x10{left:96.032000pt;}
.x1{left:171.386667pt;}
.x9{left:182.426667pt;}
.xc{left:190.106667pt;}
.xe{left:194.906667pt;}
.x13{left:219.386667pt;}
.x3{left:231.546667pt;}
.x12{left:239.706667pt;}
.x15{left:266.946667pt;}
.xa{left:268.706667pt;}
.xf{left:287.106667pt;}
.x2{left:308.706667pt;}
.xb{left:330.466667pt;}
.xd{left:371.106667pt;}
.x1a{left:395.586667pt;}
.x1c{left:460.093333pt;}
.x6{left:696.293333pt;}
}




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