
    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_2746b6a80db203bbf9b0bb4e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.060000;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_9f81eb5ed1ec98131958767c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_be4b570f94f1d58378c5b3e6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_0602ffd96265e5dfdd7f4767.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_c198e018217ec6b3fc363620.woff')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_0743b38b439d27ec0d9b7abe.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_9c1aa5b52012b7ceee78f9fa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.600000px;}
.lsc{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.223800px;}
.ls10{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.277800px;}
.ls8{letter-spacing:0.325200px;}
.ls0{letter-spacing:36.120960px;}
.ls5{letter-spacing:45.288000px;}
.ls2{letter-spacing:49.284000px;}
.ls3{letter-spacing:72.180000px;}
.ls4{letter-spacing:78.660000px;}
.ls15{letter-spacing:88.593984px;}
.ls14{letter-spacing:88.680960px;}
.lse{letter-spacing:90.825984px;}
.lsd{letter-spacing:90.912960px;}
.ls11{letter-spacing:92.337984px;}
.ls12{letter-spacing:92.424960px;}
.lsb{letter-spacing:96.681024px;}
.lsa{letter-spacing:96.768000px;}
.ls7{letter-spacing:124.149600px;}
.ls6{letter-spacing:124.200000px;}
.ls9{letter-spacing:133.524000px;}
.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:-55.177920px;}
.ws10{word-spacing:-55.144800px;}
.ws7{word-spacing:-49.680000px;}
.ws5{word-spacing:-46.962480px;}
.wsc{word-spacing:-46.864800px;}
.ws4{word-spacing:-46.677312px;}
.ws3{word-spacing:-46.637280px;}
.wsb{word-spacing:-41.673312px;}
.ws2{word-spacing:-41.633280px;}
.wsa{word-spacing:-40.072032px;}
.wsf{word-spacing:-31.903080px;}
.wsd{word-spacing:-31.665312px;}
.wse{word-spacing:-31.625280px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:20.304000px;}
.ws8{word-spacing:20.383272px;}
.ws6{word-spacing:36.828000px;}
._2{margin-left:-3.169584px;}
._0{margin-left:-1.440000px;}
._1{width:1.104000px;}
._4{width:2.663040px;}
._3{width:3.935040px;}
._8{width:50.010960px;}
._7{width:94.821600px;}
._9{width:132.048000px;}
._5{width:574.927200px;}
._6{width:687.986880px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:87.840000px;}
.fsd{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs4{font-size:113.760000px;}
.fs15{font-size:113.904000px;}
.fs2{font-size:131.760000px;}
.fs10{font-size:131.904000px;}
.fs11{font-size:144.000000px;}
.fs12{font-size:144.144000px;}
.fs6{font-size:149.760000px;}
.fs13{font-size:149.904000px;}
.fsa{font-size:162.000000px;}
.fsb{font-size:162.144000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs16{font-size:185.760000px;}
.fs17{font-size:185.904000px;}
.fs14{font-size:203.760000px;}
.fsf{font-size:216.000000px;}
.fs7{font-size:239.760000px;}
.fs5{font-size:239.904000px;}
.fsc{font-size:264.384000px;}
.fs0{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y90{bottom:17.316000px;}
.y55{bottom:18.792000px;}
.y8f{bottom:56.556000px;}
.y3e{bottom:60.372000px;}
.y33{bottom:66.636000px;}
.y21{bottom:68.976000px;}
.y5f{bottom:82.800000px;}
.y4c{bottom:91.404000px;}
.y7d{bottom:92.664000px;}
.y8e{bottom:95.976000px;}
.y69{bottom:97.992000px;}
.y74{bottom:101.484000px;}
.y3d{bottom:105.732000px;}
.y81{bottom:109.050000px;}
.y20{bottom:112.716000px;}
.y83{bottom:114.405000px;}
.y16{bottom:116.388000px;}
.y32{bottom:124.596000px;}
.y7{bottom:127.620000px;}
.y68{bottom:132.552000px;}
.y2a{bottom:133.596000px;}
.y8d{bottom:135.252000px;}
.y4b{bottom:136.764000px;}
.y73{bottom:140.364000px;}
.y5e{bottom:140.760000px;}
.y98{bottom:142.128000px;}
.y3c{bottom:151.125000px;}
.y6{bottom:154.980000px;}
.y1f{bottom:156.450000px;}
.y15{bottom:161.745000px;}
.y67{bottom:167.145000px;}
.y53{bottom:169.305000px;}
.y7c{bottom:173.700000px;}
.y8c{bottom:174.675000px;}
.y72{bottom:179.250000px;}
.y4a{bottom:182.130000px;}
.y31{bottom:182.595000px;}
.y29{bottom:186.555000px;}
.y97{bottom:192.345000px;}
.y3b{bottom:196.485000px;}
.y5{bottom:198.360000px;}
.y5d{bottom:198.750000px;}
.ya{bottom:201.090000px;}
.y66{bottom:201.705000px;}
.y14{bottom:207.105000px;}
.y8b{bottom:213.915000px;}
.y7b{bottom:214.200000px;}
.y52{bottom:214.665000px;}
.y1e{bottom:215.355000px;}
.y71{bottom:218.130000px;}
.y49{bottom:227.520000px;}
.y65{bottom:236.265000px;}
.y30{bottom:240.555000px;}
.y9{bottom:241.590000px;}
.y3a{bottom:241.845000px;}
.y96{bottom:242.610000px;}
.y28{bottom:254.595000px;}
.y7a{bottom:254.700000px;}
.y70{bottom:257.040000px;}
.y1d{bottom:259.095000px;}
.y51{bottom:260.070000px;}
.y13{bottom:267.630000px;}
.y64{bottom:270.825000px;}
.y8a{bottom:271.515000px;}
.y48{bottom:272.880000px;}
.y39{bottom:287.250000px;}
.y95{bottom:292.830000px;}
.y79{bottom:295.230000px;}
.y6f{bottom:295.920000px;}
.y2f{bottom:298.515000px;}
.y1c{bottom:302.835000px;}
.y50{bottom:305.430000px;}
.y27{bottom:307.515000px;}
.y5c{bottom:309.810000px;}
.y89{bottom:310.935000px;}
.y12{bottom:312.990000px;}
.y47{bottom:318.240000px;}
.y38{bottom:332.610000px;}
.y6e{bottom:334.800000px;}
.y78{bottom:335.730000px;}
.y94{bottom:343.050000px;}
.y88{bottom:350.175000px;}
.y5b{bottom:355.215000px;}
.y2e{bottom:356.505000px;}
.y11{bottom:358.350000px;}
.y1b{bottom:361.545000px;}
.y46{bottom:363.630000px;}
.y6d{bottom:373.680000px;}
.y26{bottom:375.405000px;}
.y37{bottom:377.970000px;}
.y87{bottom:389.625000px;}
.y63{bottom:390.750000px;}
.y82{bottom:393.120000px;}
.y93{bottom:393.300000px;}
.y4f{bottom:396.150000px;}
.y4{bottom:398.985000px;}
.y1a{bottom:405.285000px;}
.y45{bottom:408.990000px;}
.y6c{bottom:412.590000px;}
.y2d{bottom:414.465000px;}
.y77{bottom:416.730000px;}
.y10{bottom:418.680000px;}
.y36{bottom:423.330000px;}
.y86{bottom:428.865000px;}
.y62{bottom:436.110000px;}
.y4e{bottom:441.540000px;}
.y25{bottom:443.265000px;}
.y92{bottom:443.520000px;}
.y6b{bottom:451.470000px;}
.y44{bottom:454.350000px;}
.y76{bottom:457.275000px;}
.y80{bottom:459.900000px;}
.y5a{bottom:463.395000px;}
.y19{bottom:463.965000px;}
.yf{bottom:464.040000px;}
.y85{bottom:468.285000px;}
.y35{bottom:468.720000px;}
.y2c{bottom:472.425000px;}
.y3{bottom:476.745000px;}
.y61{bottom:481.500000px;}
.y4d{bottom:486.900000px;}
.y91{bottom:493.740000px;}
.y24{bottom:496.185000px;}
.y75{bottom:497.775000px;}
.y43{bottom:499.710000px;}
.y84{bottom:507.525000px;}
.y18{bottom:507.750000px;}
.ye{bottom:509.400000px;}
.y34{bottom:514.080000px;}
.y59{bottom:521.385000px;}
.y60{bottom:526.860000px;}
.y6a{bottom:529.230000px;}
.y2b{bottom:530.430000px;}
.y42{bottom:545.115000px;}
.y23{bottom:549.150000px;}
.y17{bottom:551.490000px;}
.y2{bottom:554.550000px;}
.yd{bottom:554.760000px;}
.y58{bottom:579.345000px;}
.y41{bottom:590.475000px;}
.y1{bottom:632.310000px;}
.y40{bottom:635.835000px;}
.y57{bottom:668.055000px;}
.y7f{bottom:670.755000px;}
.y3f{bottom:681.225000px;}
.yc{bottom:695.415000px;}
.y22{bottom:695.520000px;}
.yb{bottom:696.495000px;}
.y54{bottom:697.215000px;}
.y8{bottom:698.220000px;}
.y7e{bottom:725.835000px;}
.y56{bottom:726.375000px;}
.h4{height:83.153672px;}
.h19{height:83.258930px;}
.h17{height:85.650469px;}
.hf{height:96.416156px;}
.h3{height:103.807266px;}
.h12{height:105.257812px;}
.h11{height:105.363070px;}
.h10{height:108.281250px;}
.h13{height:108.389531px;}
.h6{height:109.468125px;}
.h14{height:109.573383px;}
.hb{height:118.415039px;}
.hc{height:118.520297px;}
.ha{height:122.625352px;}
.h9{height:122.730609px;}
.h8{height:123.772148px;}
.h1b{height:135.782578px;}
.h1c{height:135.887836px;}
.h15{height:174.418560px;}
.he{height:184.896000px;}
.h7{height:205.234560px;}
.h5{height:205.357824px;}
.hd{height:226.312704px;}
.h16{height:239.580000px;}
.h1{height:241.920000px;}
.h2{height:242.040960px;}
.h18{height:252.000000px;}
.h1a{height:469.620000px;}
.h0{height:810.000000px;}
.w2{width:199.080000px;}
.w3{width:546.660000px;}
.w4{width:656.460000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x18{left:10.800000px;}
.x17{left:18.000000px;}
.x9{left:34.991979px;}
.x1b{left:47.699979px;}
.x12{left:79.235979px;}
.xb{left:85.175979px;}
.x13{left:88.235979px;}
.x11{left:90.395979px;}
.x4{left:91.403979px;}
.x7{left:93.455979px;}
.x5{left:131.003979px;}
.xa{left:133.235979px;}
.x14{left:147.455979px;}
.x15{left:159.509979px;}
.x1{left:166.109979px;}
.x2{left:170.354979px;}
.x3{left:172.829979px;}
.x1d{left:176.609979px;}
.xf{left:178.769979px;}
.x16{left:181.109979px;}
.xe{left:187.769979px;}
.x8{left:199.829979px;}
.x19{left:216.900000px;}
.x1e{left:226.829979px;}
.x6{left:429.989979px;}
.x1c{left:494.849979px;}
.x10{left:562.889979px;}
.xc{left:753.404979px;}
.x1a{left:763.380000px;}
.xd{left:793.904979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.200000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.198933pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.246933pt;}
.ls8{letter-spacing:0.289067pt;}
.ls0{letter-spacing:32.107520pt;}
.ls5{letter-spacing:40.256000pt;}
.ls2{letter-spacing:43.808000pt;}
.ls3{letter-spacing:64.160000pt;}
.ls4{letter-spacing:69.920000pt;}
.ls15{letter-spacing:78.750208pt;}
.ls14{letter-spacing:78.827520pt;}
.lse{letter-spacing:80.734208pt;}
.lsd{letter-spacing:80.811520pt;}
.ls11{letter-spacing:82.078208pt;}
.ls12{letter-spacing:82.155520pt;}
.lsb{letter-spacing:85.938688pt;}
.lsa{letter-spacing:86.016000pt;}
.ls7{letter-spacing:110.355200pt;}
.ls6{letter-spacing:110.400000pt;}
.ls9{letter-spacing:118.688000pt;}
.ws1{word-spacing:-49.047040pt;}
.ws10{word-spacing:-49.017600pt;}
.ws7{word-spacing:-44.160000pt;}
.ws5{word-spacing:-41.744427pt;}
.wsc{word-spacing:-41.657600pt;}
.ws4{word-spacing:-41.490944pt;}
.ws3{word-spacing:-41.455360pt;}
.wsb{word-spacing:-37.042944pt;}
.ws2{word-spacing:-37.007360pt;}
.wsa{word-spacing:-35.619584pt;}
.wsf{word-spacing:-28.358293pt;}
.wsd{word-spacing:-28.146944pt;}
.wse{word-spacing:-28.111360pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:18.048000pt;}
.ws8{word-spacing:18.118464pt;}
.ws6{word-spacing:32.736000pt;}
._2{margin-left:-2.817408pt;}
._0{margin-left:-1.280000pt;}
._1{width:0.981333pt;}
._4{width:2.367147pt;}
._3{width:3.497813pt;}
._8{width:44.454187pt;}
._7{width:84.285867pt;}
._9{width:117.376000pt;}
._5{width:511.046400pt;}
._6{width:611.543893pt;}
.fs3{font-size:78.080000pt;}
.fsd{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs4{font-size:101.120000pt;}
.fs15{font-size:101.248000pt;}
.fs2{font-size:117.120000pt;}
.fs10{font-size:117.248000pt;}
.fs11{font-size:128.000000pt;}
.fs12{font-size:128.128000pt;}
.fs6{font-size:133.120000pt;}
.fs13{font-size:133.248000pt;}
.fsa{font-size:144.000000pt;}
.fsb{font-size:144.128000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs16{font-size:165.120000pt;}
.fs17{font-size:165.248000pt;}
.fs14{font-size:181.120000pt;}
.fsf{font-size:192.000000pt;}
.fs7{font-size:213.120000pt;}
.fs5{font-size:213.248000pt;}
.fsc{font-size:235.008000pt;}
.fs0{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:15.392000pt;}
.y55{bottom:16.704000pt;}
.y8f{bottom:50.272000pt;}
.y3e{bottom:53.664000pt;}
.y33{bottom:59.232000pt;}
.y21{bottom:61.312000pt;}
.y5f{bottom:73.600000pt;}
.y4c{bottom:81.248000pt;}
.y7d{bottom:82.368000pt;}
.y8e{bottom:85.312000pt;}
.y69{bottom:87.104000pt;}
.y74{bottom:90.208000pt;}
.y3d{bottom:93.984000pt;}
.y81{bottom:96.933333pt;}
.y20{bottom:100.192000pt;}
.y83{bottom:101.693333pt;}
.y16{bottom:103.456000pt;}
.y32{bottom:110.752000pt;}
.y7{bottom:113.440000pt;}
.y68{bottom:117.824000pt;}
.y2a{bottom:118.752000pt;}
.y8d{bottom:120.224000pt;}
.y4b{bottom:121.568000pt;}
.y73{bottom:124.768000pt;}
.y5e{bottom:125.120000pt;}
.y98{bottom:126.336000pt;}
.y3c{bottom:134.333333pt;}
.y6{bottom:137.760000pt;}
.y1f{bottom:139.066667pt;}
.y15{bottom:143.773333pt;}
.y67{bottom:148.573333pt;}
.y53{bottom:150.493333pt;}
.y7c{bottom:154.400000pt;}
.y8c{bottom:155.266667pt;}
.y72{bottom:159.333333pt;}
.y4a{bottom:161.893333pt;}
.y31{bottom:162.306667pt;}
.y29{bottom:165.826667pt;}
.y97{bottom:170.973333pt;}
.y3b{bottom:174.653333pt;}
.y5{bottom:176.320000pt;}
.y5d{bottom:176.666667pt;}
.ya{bottom:178.746667pt;}
.y66{bottom:179.293333pt;}
.y14{bottom:184.093333pt;}
.y8b{bottom:190.146667pt;}
.y7b{bottom:190.400000pt;}
.y52{bottom:190.813333pt;}
.y1e{bottom:191.426667pt;}
.y71{bottom:193.893333pt;}
.y49{bottom:202.240000pt;}
.y65{bottom:210.013333pt;}
.y30{bottom:213.826667pt;}
.y9{bottom:214.746667pt;}
.y3a{bottom:214.973333pt;}
.y96{bottom:215.653333pt;}
.y28{bottom:226.306667pt;}
.y7a{bottom:226.400000pt;}
.y70{bottom:228.480000pt;}
.y1d{bottom:230.306667pt;}
.y51{bottom:231.173333pt;}
.y13{bottom:237.893333pt;}
.y64{bottom:240.733333pt;}
.y8a{bottom:241.346667pt;}
.y48{bottom:242.560000pt;}
.y39{bottom:255.333333pt;}
.y95{bottom:260.293333pt;}
.y79{bottom:262.426667pt;}
.y6f{bottom:263.040000pt;}
.y2f{bottom:265.346667pt;}
.y1c{bottom:269.186667pt;}
.y50{bottom:271.493333pt;}
.y27{bottom:273.346667pt;}
.y5c{bottom:275.386667pt;}
.y89{bottom:276.386667pt;}
.y12{bottom:278.213333pt;}
.y47{bottom:282.880000pt;}
.y38{bottom:295.653333pt;}
.y6e{bottom:297.600000pt;}
.y78{bottom:298.426667pt;}
.y94{bottom:304.933333pt;}
.y88{bottom:311.266667pt;}
.y5b{bottom:315.746667pt;}
.y2e{bottom:316.893333pt;}
.y11{bottom:318.533333pt;}
.y1b{bottom:321.373333pt;}
.y46{bottom:323.226667pt;}
.y6d{bottom:332.160000pt;}
.y26{bottom:333.693333pt;}
.y37{bottom:335.973333pt;}
.y87{bottom:346.333333pt;}
.y63{bottom:347.333333pt;}
.y82{bottom:349.440000pt;}
.y93{bottom:349.600000pt;}
.y4f{bottom:352.133333pt;}
.y4{bottom:354.653333pt;}
.y1a{bottom:360.253333pt;}
.y45{bottom:363.546667pt;}
.y6c{bottom:366.746667pt;}
.y2d{bottom:368.413333pt;}
.y77{bottom:370.426667pt;}
.y10{bottom:372.160000pt;}
.y36{bottom:376.293333pt;}
.y86{bottom:381.213333pt;}
.y62{bottom:387.653333pt;}
.y4e{bottom:392.480000pt;}
.y25{bottom:394.013333pt;}
.y92{bottom:394.240000pt;}
.y6b{bottom:401.306667pt;}
.y44{bottom:403.866667pt;}
.y76{bottom:406.466667pt;}
.y80{bottom:408.800000pt;}
.y5a{bottom:411.906667pt;}
.y19{bottom:412.413333pt;}
.yf{bottom:412.480000pt;}
.y85{bottom:416.253333pt;}
.y35{bottom:416.640000pt;}
.y2c{bottom:419.933333pt;}
.y3{bottom:423.773333pt;}
.y61{bottom:428.000000pt;}
.y4d{bottom:432.800000pt;}
.y91{bottom:438.880000pt;}
.y24{bottom:441.053333pt;}
.y75{bottom:442.466667pt;}
.y43{bottom:444.186667pt;}
.y84{bottom:451.133333pt;}
.y18{bottom:451.333333pt;}
.ye{bottom:452.800000pt;}
.y34{bottom:456.960000pt;}
.y59{bottom:463.453333pt;}
.y60{bottom:468.320000pt;}
.y6a{bottom:470.426667pt;}
.y2b{bottom:471.493333pt;}
.y42{bottom:484.546667pt;}
.y23{bottom:488.133333pt;}
.y17{bottom:490.213333pt;}
.y2{bottom:492.933333pt;}
.yd{bottom:493.120000pt;}
.y58{bottom:514.973333pt;}
.y41{bottom:524.866667pt;}
.y1{bottom:562.053333pt;}
.y40{bottom:565.186667pt;}
.y57{bottom:593.826667pt;}
.y7f{bottom:596.226667pt;}
.y3f{bottom:605.533333pt;}
.yc{bottom:618.146667pt;}
.y22{bottom:618.240000pt;}
.yb{bottom:619.106667pt;}
.y54{bottom:619.746667pt;}
.y8{bottom:620.640000pt;}
.y7e{bottom:645.186667pt;}
.y56{bottom:645.666667pt;}
.h4{height:73.914375pt;}
.h19{height:74.007937pt;}
.h17{height:76.133750pt;}
.hf{height:85.703250pt;}
.h3{height:92.273125pt;}
.h12{height:93.562500pt;}
.h11{height:93.656062pt;}
.h10{height:96.250000pt;}
.h13{height:96.346250pt;}
.h6{height:97.305000pt;}
.h14{height:97.398562pt;}
.hb{height:105.257812pt;}
.hc{height:105.351375pt;}
.ha{height:109.000312pt;}
.h9{height:109.093875pt;}
.h8{height:110.019687pt;}
.h1b{height:120.695625pt;}
.h1c{height:120.789187pt;}
.h15{height:155.038720pt;}
.he{height:164.352000pt;}
.h7{height:182.430720pt;}
.h5{height:182.540288pt;}
.hd{height:201.166848pt;}
.h16{height:212.960000pt;}
.h1{height:215.040000pt;}
.h2{height:215.147520pt;}
.h18{height:224.000000pt;}
.h1a{height:417.440000pt;}
.h0{height:720.000000pt;}
.w2{width:176.960000pt;}
.w3{width:485.920000pt;}
.w4{width:583.520000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x18{left:9.600000pt;}
.x17{left:16.000000pt;}
.x9{left:31.103981pt;}
.x1b{left:42.399981pt;}
.x12{left:70.431981pt;}
.xb{left:75.711981pt;}
.x13{left:78.431981pt;}
.x11{left:80.351981pt;}
.x4{left:81.247981pt;}
.x7{left:83.071981pt;}
.x5{left:116.447981pt;}
.xa{left:118.431981pt;}
.x14{left:131.071981pt;}
.x15{left:141.786648pt;}
.x1{left:147.653314pt;}
.x2{left:151.426648pt;}
.x3{left:153.626648pt;}
.x1d{left:156.986648pt;}
.xf{left:158.906648pt;}
.x16{left:160.986648pt;}
.xe{left:166.906648pt;}
.x8{left:177.626648pt;}
.x19{left:192.800000pt;}
.x1e{left:201.626648pt;}
.x6{left:382.213314pt;}
.x1c{left:439.866648pt;}
.x10{left:500.346648pt;}
.xc{left:669.693314pt;}
.x1a{left:678.560000pt;}
.xd{left:705.693314pt;}
}




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