
    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_8d374ea12bc88633cdb40aef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_5742ceaf5c63d55d2127dafc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905762;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_993cdf56e488f9551ba246d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_a8343cdc3d5613e1613d1dd2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.908203;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:-18.720000px;}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-0.175392px;}
.ls4{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.ls1c{letter-spacing:0.021600px;}
.ls1d{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.093312px;}
.ls6{letter-spacing:0.097800px;}
.lsa{letter-spacing:0.116928px;}
.ls1e{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.120600px;}
.ls19{letter-spacing:0.158688px;}
.ls1{letter-spacing:0.199200px;}
.ls1a{letter-spacing:0.200340px;}
.lsb{letter-spacing:0.200448px;}
.ls17{letter-spacing:0.233856px;}
.ls2{letter-spacing:0.240540px;}
.ls11{letter-spacing:0.242208px;}
.ls12{letter-spacing:0.275616px;}
.ls20{letter-spacing:0.283440px;}
.ls9{letter-spacing:0.283968px;}
.ls23{letter-spacing:0.317376px;}
.ls8{letter-spacing:0.359136px;}
.lsf{letter-spacing:0.360360px;}
.ls22{letter-spacing:0.400896px;}
.ls21{letter-spacing:0.442656px;}
.ls5{letter-spacing:0.705600px;}
.lsd{letter-spacing:0.722304px;}
.lsc{letter-spacing:0.867600px;}
.ls13{letter-spacing:1.074600px;}
.ls28{letter-spacing:4.912800px;}
.ls18{letter-spacing:5.119776px;}
.ls1f{letter-spacing:5.227200px;}
.ls25{letter-spacing:5.673600px;}
.ls14{letter-spacing:11.091600px;}
.ls16{letter-spacing:11.304000px;}
.ls15{letter-spacing:12.183000px;}
.ls1b{letter-spacing:22.197600px;}
.ls24{letter-spacing:22.231800px;}
.ls26{letter-spacing:55.311000px;}
.lse{letter-spacing:198.000060px;}
.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;}
}
.ws8{word-spacing:-21.239136px;}
.wsc{word-spacing:-21.197376px;}
.ws4{word-spacing:-21.080448px;}
.ws9{word-spacing:-20.880000px;}
.wsd{word-spacing:-20.704608px;}
.ws7{word-spacing:-19.533312px;}
.wsb{word-spacing:-18.036000px;}
.wsa{word-spacing:-18.021600px;}
.ws1{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.985600px;}
.ws6{word-spacing:-12.602304px;}
.ws0{word-spacing:-11.880000px;}
.wse{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._23{margin-left:-11.911800px;}
._10{margin-left:-10.799400px;}
._9{margin-left:-1.007940px;}
._e{width:1.032660px;}
._a{width:2.102400px;}
._b{width:3.383460px;}
._c{width:5.364000px;}
._6{width:6.516000px;}
._1{width:7.675200px;}
._17{width:8.677200px;}
._3{width:9.684000px;}
._7{width:10.778400px;}
._12{width:12.523860px;}
._14{width:13.672020px;}
._11{width:14.783460px;}
._15{width:16.309800px;}
._21{width:17.314824px;}
._5{width:19.202400px;}
._d{width:20.584800px;}
._19{width:22.168800px;}
._8{width:23.392800px;}
._1d{width:24.753600px;}
._13{width:25.999200px;}
._18{width:27.309600px;}
._f{width:28.800000px;}
._1a{width:30.600000px;}
._1e{width:32.104800px;}
._24{width:33.516000px;}
._26{width:34.653600px;}
._1c{width:36.194400px;}
._20{width:37.224000px;}
._22{width:38.361600px;}
._4{width:39.996000px;}
._27{width:42.854400px;}
._28{width:44.150400px;}
._1b{width:49.024800px;}
._29{width:55.206720px;}
._16{width:73.562400px;}
._2b{width:144.000060px;}
._2a{width:156.000060px;}
._25{width:180.000060px;}
._2{width:198.000060px;}
._1f{width:1391.759460px;}
._0{width:1409.039460px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.920030px;}
.y1{bottom:52.199985px;}
.y2d{bottom:61.560015px;}
.y55{bottom:62.640030px;}
.y4e{bottom:81.720030px;}
.y2c{bottom:82.080015px;}
.y80{bottom:83.160030px;}
.y86{bottom:86.760030px;}
.y54{bottom:89.640030px;}
.y7c{bottom:102.240015px;}
.y2b{bottom:102.600015px;}
.y9d{bottom:103.680015px;}
.y7f{bottom:107.280015px;}
.y85{bottom:110.160015px;}
.ya5{bottom:110.880015px;}
.y53{bottom:116.640015px;}
.y7d{bottom:122.760015px;}
.y2a{bottom:123.120015px;}
.y7b{bottom:124.200015px;}
.y9c{bottom:127.800015px;}
.y7e{bottom:129.960015px;}
.yaa{bottom:131.400015px;}
.ya4{bottom:135.360015px;}
.y43{bottom:143.280015px;}
.y29{bottom:143.640015px;}
.y64{bottom:144.720015px;}
.y7a{bottom:148.320015px;}
.ya7{bottom:151.200015px;}
.y9b{bottom:151.920015px;}
.ya9{bottom:154.800015px;}
.ya3{bottom:159.480015px;}
.y40{bottom:163.800015px;}
.y28{bottom:164.520015px;}
.y94{bottom:165.240015px;}
.y63{bottom:168.840015px;}
.y42{bottom:170.640015px;}
.y79{bottom:171.720015px;}
.y9a{bottom:175.320015px;}
.ya2{bottom:182.880015px;}
.y50{bottom:184.320015px;}
.y27{bottom:185.040015px;}
.y84{bottom:185.760015px;}
.y93{bottom:189.360015px;}
.ya6{bottom:191.880015px;}
.y62{bottom:192.240015px;}
.y99{bottom:196.200015px;}
.y3f{bottom:197.640015px;}
.ya1{bottom:203.400015px;}
.yab{bottom:204.840015px;}
.y26{bottom:205.560015px;}
.y83{bottom:209.880015px;}
.y61{bottom:212.760015px;}
.y92{bottom:213.840015px;}
.y98{bottom:216.720015px;}
.ya0{bottom:223.560015px;}
.y3e{bottom:224.640015px;}
.y88{bottom:225.360015px;}
.y25{bottom:226.080015px;}
.y60{bottom:233.280015px;}
.y78{bottom:234.360015px;}
.y91{bottom:237.240015px;}
.y87{bottom:245.880015px;}
.y24{bottom:246.600015px;}
.y3d{bottom:251.640015px;}
.y5f{bottom:253.800015px;}
.y77{bottom:257.760015px;}
.y9f{bottom:266.400015px;}
.y23{bottom:267.120015px;}
.y5e{bottom:274.320015px;}
.y76{bottom:278.280015px;}
.y3c{bottom:278.640015px;}
.y9e{bottom:286.920015px;}
.y22{bottom:287.640015px;}
.y5d{bottom:294.840015px;}
.y75{bottom:298.800015px;}
.y3b{bottom:305.640015px;}
.y81{bottom:307.440015px;}
.y21{bottom:308.160015px;}
.y5c{bottom:315.720015px;}
.y74{bottom:319.320015px;}
.y52{bottom:327.960015px;}
.y20{bottom:328.680015px;}
.y3a{bottom:332.640015px;}
.y5b{bottom:336.240015px;}
.y73{bottom:339.840015px;}
.y44{bottom:348.480015px;}
.y1f{bottom:349.200015px;}
.y5a{bottom:356.760015px;}
.y39{bottom:359.640015px;}
.y72{bottom:360.360015px;}
.y41{bottom:369.000015px;}
.y1e{bottom:369.720015px;}
.y59{bottom:377.280015px;}
.y82{bottom:380.160015px;}
.y71{bottom:380.880015px;}
.y38{bottom:386.640015px;}
.y1d{bottom:389.520015px;}
.y34{bottom:390.240015px;}
.y58{bottom:397.800015px;}
.y70{bottom:401.400015px;}
.y51{bottom:410.400015px;}
.y33{bottom:410.760015px;}
.y8b{bottom:411.840015px;}
.y1c{bottom:413.640015px;}
.y57{bottom:417.600015px;}
.y6f{bottom:421.920015px;}
.y4f{bottom:430.920015px;}
.y32{bottom:431.280015px;}
.y8a{bottom:435.960015px;}
.y1b{bottom:440.640015px;}
.y97{bottom:442.080015px;}
.y6e{bottom:442.440015px;}
.y95{bottom:451.440015px;}
.y31{bottom:451.800015px;}
.y89{bottom:458.640015px;}
.y6d{bottom:462.960015px;}
.y1a{bottom:467.640015px;}
.y96{bottom:471.960015px;}
.y30{bottom:472.320015px;}
.y37{bottom:473.400015px;}
.y6c{bottom:483.480015px;}
.y2f{bottom:492.840015px;}
.y19{bottom:494.640015px;}
.y36{bottom:497.520015px;}
.y6b{bottom:504.000015px;}
.y2e{bottom:513.000015px;}
.y4d{bottom:513.360015px;}
.y35{bottom:520.200015px;}
.y18{bottom:521.640015px;}
.ya8{bottom:524.160015px;}
.y6a{bottom:524.520015px;}
.y4c{bottom:534.240015px;}
.y69{bottom:545.040015px;}
.y17{bottom:548.640015px;}
.y4b{bottom:554.760015px;}
.y68{bottom:565.920015px;}
.y56{bottom:574.560015px;}
.y4a{bottom:575.280015px;}
.y16{bottom:575.640015px;}
.y67{bottom:586.440015px;}
.y49{bottom:595.800015px;}
.y15{bottom:602.640015px;}
.y66{bottom:606.960015px;}
.y48{bottom:616.320015px;}
.y65{bottom:626.760015px;}
.y14{bottom:629.640015px;}
.y47{bottom:636.840015px;}
.y13{bottom:656.640015px;}
.y46{bottom:657.360015px;}
.y45{bottom:677.160015px;}
.y90{bottom:677.880015px;}
.y12{bottom:683.640015px;}
.y8f{bottom:698.400015px;}
.y11{bottom:710.640015px;}
.y8e{bottom:718.920015px;}
.y10{bottom:737.640015px;}
.y8d{bottom:739.440015px;}
.y8c{bottom:759.240015px;}
.yf{bottom:764.640015px;}
.ye{bottom:791.640015px;}
.yd{bottom:818.640015px;}
.yc{bottom:845.640015px;}
.yb{bottom:872.640015px;}
.ya{bottom:899.640015px;}
.y9{bottom:926.640015px;}
.y8{bottom:953.640015px;}
.y7{bottom:980.640015px;}
.y6{bottom:1007.640015px;}
.y5{bottom:1034.640015px;}
.y4{bottom:1061.640015px;}
.y3{bottom:1088.640015px;}
.h4{height:57.379219px;}
.h3{height:63.175781px;}
.h2{height:1197.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:865.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.x2{left:113.760135px;}
.x3{left:167.760150px;}
@media print{
.v1{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-0.155904pt;}
.ls4{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ls1c{letter-spacing:0.019200pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.082944pt;}
.ls6{letter-spacing:0.086933pt;}
.lsa{letter-spacing:0.103936pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.107200pt;}
.ls19{letter-spacing:0.141056pt;}
.ls1{letter-spacing:0.177067pt;}
.ls1a{letter-spacing:0.178080pt;}
.lsb{letter-spacing:0.178176pt;}
.ls17{letter-spacing:0.207872pt;}
.ls2{letter-spacing:0.213813pt;}
.ls11{letter-spacing:0.215296pt;}
.ls12{letter-spacing:0.244992pt;}
.ls20{letter-spacing:0.251947pt;}
.ls9{letter-spacing:0.252416pt;}
.ls23{letter-spacing:0.282112pt;}
.ls8{letter-spacing:0.319232pt;}
.lsf{letter-spacing:0.320320pt;}
.ls22{letter-spacing:0.356352pt;}
.ls21{letter-spacing:0.393472pt;}
.ls5{letter-spacing:0.627200pt;}
.lsd{letter-spacing:0.642048pt;}
.lsc{letter-spacing:0.771200pt;}
.ls13{letter-spacing:0.955200pt;}
.ls28{letter-spacing:4.366933pt;}
.ls18{letter-spacing:4.550912pt;}
.ls1f{letter-spacing:4.646400pt;}
.ls25{letter-spacing:5.043200pt;}
.ls14{letter-spacing:9.859200pt;}
.ls16{letter-spacing:10.048000pt;}
.ls15{letter-spacing:10.829333pt;}
.ls1b{letter-spacing:19.731200pt;}
.ls24{letter-spacing:19.761600pt;}
.ls26{letter-spacing:49.165333pt;}
.lse{letter-spacing:176.000053pt;}
.ws8{word-spacing:-18.879232pt;}
.wsc{word-spacing:-18.842112pt;}
.ws4{word-spacing:-18.738176pt;}
.ws9{word-spacing:-18.560000pt;}
.wsd{word-spacing:-18.404096pt;}
.ws7{word-spacing:-17.362944pt;}
.wsb{word-spacing:-16.032000pt;}
.wsa{word-spacing:-16.019200pt;}
.ws1{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.987200pt;}
.ws6{word-spacing:-11.202048pt;}
.ws0{word-spacing:-10.560000pt;}
.wse{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._23{margin-left:-10.588267pt;}
._10{margin-left:-9.599467pt;}
._9{margin-left:-0.895947pt;}
._e{width:0.917920pt;}
._a{width:1.868800pt;}
._b{width:3.007520pt;}
._c{width:4.768000pt;}
._6{width:5.792000pt;}
._1{width:6.822400pt;}
._17{width:7.713067pt;}
._3{width:8.608000pt;}
._7{width:9.580800pt;}
._12{width:11.132320pt;}
._14{width:12.152907pt;}
._11{width:13.140853pt;}
._15{width:14.497600pt;}
._21{width:15.390955pt;}
._5{width:17.068800pt;}
._d{width:18.297600pt;}
._19{width:19.705600pt;}
._8{width:20.793600pt;}
._1d{width:22.003200pt;}
._13{width:23.110400pt;}
._18{width:24.275200pt;}
._f{width:25.600000pt;}
._1a{width:27.200000pt;}
._1e{width:28.537600pt;}
._24{width:29.792000pt;}
._26{width:30.803200pt;}
._1c{width:32.172800pt;}
._20{width:33.088000pt;}
._22{width:34.099200pt;}
._4{width:35.552000pt;}
._27{width:38.092800pt;}
._28{width:39.244800pt;}
._1b{width:43.577600pt;}
._29{width:49.072640pt;}
._16{width:65.388800pt;}
._2b{width:128.000053pt;}
._2a{width:138.666720pt;}
._25{width:160.000053pt;}
._2{width:176.000053pt;}
._1f{width:1237.119520pt;}
._0{width:1252.479520pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:7.040027pt;}
.y1{bottom:46.399987pt;}
.y2d{bottom:54.720013pt;}
.y55{bottom:55.680027pt;}
.y4e{bottom:72.640027pt;}
.y2c{bottom:72.960013pt;}
.y80{bottom:73.920027pt;}
.y86{bottom:77.120027pt;}
.y54{bottom:79.680027pt;}
.y7c{bottom:90.880013pt;}
.y2b{bottom:91.200013pt;}
.y9d{bottom:92.160013pt;}
.y7f{bottom:95.360013pt;}
.y85{bottom:97.920013pt;}
.ya5{bottom:98.560013pt;}
.y53{bottom:103.680013pt;}
.y7d{bottom:109.120013pt;}
.y2a{bottom:109.440013pt;}
.y7b{bottom:110.400013pt;}
.y9c{bottom:113.600013pt;}
.y7e{bottom:115.520013pt;}
.yaa{bottom:116.800013pt;}
.ya4{bottom:120.320013pt;}
.y43{bottom:127.360013pt;}
.y29{bottom:127.680013pt;}
.y64{bottom:128.640013pt;}
.y7a{bottom:131.840013pt;}
.ya7{bottom:134.400013pt;}
.y9b{bottom:135.040013pt;}
.ya9{bottom:137.600013pt;}
.ya3{bottom:141.760013pt;}
.y40{bottom:145.600013pt;}
.y28{bottom:146.240013pt;}
.y94{bottom:146.880013pt;}
.y63{bottom:150.080013pt;}
.y42{bottom:151.680013pt;}
.y79{bottom:152.640013pt;}
.y9a{bottom:155.840013pt;}
.ya2{bottom:162.560013pt;}
.y50{bottom:163.840013pt;}
.y27{bottom:164.480013pt;}
.y84{bottom:165.120013pt;}
.y93{bottom:168.320013pt;}
.ya6{bottom:170.560013pt;}
.y62{bottom:170.880013pt;}
.y99{bottom:174.400013pt;}
.y3f{bottom:175.680013pt;}
.ya1{bottom:180.800013pt;}
.yab{bottom:182.080013pt;}
.y26{bottom:182.720013pt;}
.y83{bottom:186.560013pt;}
.y61{bottom:189.120013pt;}
.y92{bottom:190.080013pt;}
.y98{bottom:192.640013pt;}
.ya0{bottom:198.720013pt;}
.y3e{bottom:199.680013pt;}
.y88{bottom:200.320013pt;}
.y25{bottom:200.960013pt;}
.y60{bottom:207.360013pt;}
.y78{bottom:208.320013pt;}
.y91{bottom:210.880013pt;}
.y87{bottom:218.560013pt;}
.y24{bottom:219.200013pt;}
.y3d{bottom:223.680013pt;}
.y5f{bottom:225.600013pt;}
.y77{bottom:229.120013pt;}
.y9f{bottom:236.800013pt;}
.y23{bottom:237.440013pt;}
.y5e{bottom:243.840013pt;}
.y76{bottom:247.360013pt;}
.y3c{bottom:247.680013pt;}
.y9e{bottom:255.040013pt;}
.y22{bottom:255.680013pt;}
.y5d{bottom:262.080013pt;}
.y75{bottom:265.600013pt;}
.y3b{bottom:271.680013pt;}
.y81{bottom:273.280013pt;}
.y21{bottom:273.920013pt;}
.y5c{bottom:280.640013pt;}
.y74{bottom:283.840013pt;}
.y52{bottom:291.520013pt;}
.y20{bottom:292.160013pt;}
.y3a{bottom:295.680013pt;}
.y5b{bottom:298.880013pt;}
.y73{bottom:302.080013pt;}
.y44{bottom:309.760013pt;}
.y1f{bottom:310.400013pt;}
.y5a{bottom:317.120013pt;}
.y39{bottom:319.680013pt;}
.y72{bottom:320.320013pt;}
.y41{bottom:328.000013pt;}
.y1e{bottom:328.640013pt;}
.y59{bottom:335.360013pt;}
.y82{bottom:337.920013pt;}
.y71{bottom:338.560013pt;}
.y38{bottom:343.680013pt;}
.y1d{bottom:346.240013pt;}
.y34{bottom:346.880013pt;}
.y58{bottom:353.600013pt;}
.y70{bottom:356.800013pt;}
.y51{bottom:364.800013pt;}
.y33{bottom:365.120013pt;}
.y8b{bottom:366.080013pt;}
.y1c{bottom:367.680013pt;}
.y57{bottom:371.200013pt;}
.y6f{bottom:375.040013pt;}
.y4f{bottom:383.040013pt;}
.y32{bottom:383.360013pt;}
.y8a{bottom:387.520013pt;}
.y1b{bottom:391.680013pt;}
.y97{bottom:392.960013pt;}
.y6e{bottom:393.280013pt;}
.y95{bottom:401.280013pt;}
.y31{bottom:401.600013pt;}
.y89{bottom:407.680013pt;}
.y6d{bottom:411.520013pt;}
.y1a{bottom:415.680013pt;}
.y96{bottom:419.520013pt;}
.y30{bottom:419.840013pt;}
.y37{bottom:420.800013pt;}
.y6c{bottom:429.760013pt;}
.y2f{bottom:438.080013pt;}
.y19{bottom:439.680013pt;}
.y36{bottom:442.240013pt;}
.y6b{bottom:448.000013pt;}
.y2e{bottom:456.000013pt;}
.y4d{bottom:456.320013pt;}
.y35{bottom:462.400013pt;}
.y18{bottom:463.680013pt;}
.ya8{bottom:465.920013pt;}
.y6a{bottom:466.240013pt;}
.y4c{bottom:474.880013pt;}
.y69{bottom:484.480013pt;}
.y17{bottom:487.680013pt;}
.y4b{bottom:493.120013pt;}
.y68{bottom:503.040013pt;}
.y56{bottom:510.720013pt;}
.y4a{bottom:511.360013pt;}
.y16{bottom:511.680013pt;}
.y67{bottom:521.280013pt;}
.y49{bottom:529.600013pt;}
.y15{bottom:535.680013pt;}
.y66{bottom:539.520013pt;}
.y48{bottom:547.840013pt;}
.y65{bottom:557.120013pt;}
.y14{bottom:559.680013pt;}
.y47{bottom:566.080013pt;}
.y13{bottom:583.680013pt;}
.y46{bottom:584.320013pt;}
.y45{bottom:601.920013pt;}
.y90{bottom:602.560013pt;}
.y12{bottom:607.680013pt;}
.y8f{bottom:620.800013pt;}
.y11{bottom:631.680013pt;}
.y8e{bottom:639.040013pt;}
.y10{bottom:655.680013pt;}
.y8d{bottom:657.280013pt;}
.y8c{bottom:674.880013pt;}
.yf{bottom:679.680013pt;}
.ye{bottom:703.680013pt;}
.yd{bottom:727.680013pt;}
.yc{bottom:751.680013pt;}
.yb{bottom:775.680013pt;}
.ya{bottom:799.680013pt;}
.y9{bottom:823.680013pt;}
.y8{bottom:847.680013pt;}
.y7{bottom:871.680013pt;}
.y6{bottom:895.680013pt;}
.y5{bottom:919.680013pt;}
.y4{bottom:943.680013pt;}
.y3{bottom:967.680013pt;}
.h4{height:51.003750pt;}
.h3{height:56.156250pt;}
.h2{height:1064.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:769.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.x2{left:101.120120pt;}
.x3{left:149.120133pt;}
}




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