
    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_a5d8d1fd875b96e2d0341d4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e7082e17e637b06e482d342f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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:-228.959908px;}
.v2{vertical-align:-209.519916px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:89.279964px;}
.v4{vertical-align:95.759962px;}
.v5{vertical-align:99.359960px;}
.v7{vertical-align:157.679937px;}
.v3{vertical-align:367.199853px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.152578px;}
.ls2{letter-spacing:0.152666px;}
.ls5{letter-spacing:0.190195px;}
.ls1{letter-spacing:0.391642px;}
.ls4{letter-spacing:3385.801046px;}
.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;}
}
.ws2{word-spacing:-105.675760px;}
.ws11{word-spacing:-93.674843px;}
.ws7{word-spacing:-85.868606px;}
.ws3{word-spacing:-70.256132px;}
.ws0{word-spacing:-62.449895px;}
.ws6{word-spacing:-54.796236px;}
.ws5{word-spacing:-54.643658px;}
.wsc{word-spacing:-46.837421px;}
.ws9{word-spacing:-39.031184px;}
.ws10{word-spacing:-31.224948px;}
.wse{word-spacing:-23.418711px;}
.wsd{word-spacing:-21.417111px;}
.wsf{word-spacing:-19.415512px;}
.ws4{word-spacing:-5.116504px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:2027.065877px;}
.wsa{word-spacing:2322.265509px;}
.ws8{word-spacing:2744.185319px;}
._8{margin-left:-1086.190126px;}
._a{margin-left:-439.251321px;}
._6{margin-left:-19.746900px;}
._4{margin-left:-7.418809px;}
._2{margin-left:-3.749775px;}
._3{margin-left:-2.690584px;}
._0{margin-left:-1.324951px;}
._1{width:1.255868px;}
._9{width:2.455746px;}
._7{width:1606.049509px;}
._5{width:2967.740788px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,213,0);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(89,89,89);}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:69.839972px;}
.fs9{font-size:77.039969px;}
.fsa{font-size:84.239966px;}
.fs1{font-size:97.919961px;}
.fsc{font-size:112.319955px;}
.fs7{font-size:140.399944px;}
.fs8{font-size:168.479933px;}
.fs5{font-size:196.559921px;}
.fs0{font-size:224.639910px;}
.fs2{font-size:252.719899px;}
.fs3{font-size:280.799888px;}
.fs6{font-size:308.879876px;}
.fsd{font-size:336.959865px;}
.fs4{font-size:378.719849px;}
.fse{font-size:617.039753px;}
.y17{bottom:-46.439803px;}
.y61{bottom:-35.639779px;}
.y44{bottom:-25.559811px;}
.y1c{bottom:-23.039812px;}
.y72{bottom:-18.539814px;}
.yb{bottom:-16.379815px;}
.y54{bottom:-10.079818px;}
.y9{bottom:-9.539818px;}
.y79{bottom:-1.439821px;}
.y42{bottom:-0.359821px;}
.y0{bottom:0.000000px;}
.y5c{bottom:4.140182px;}
.y49{bottom:9.180179px;}
.y4f{bottom:9.180189px;}
.y63{bottom:9.180282px;}
.y7{bottom:11.880155px;}
.ye{bottom:11.880182px;}
.y10{bottom:11.880236px;}
.y12{bottom:11.880263px;}
.y5{bottom:13.320101px;}
.y19{bottom:13.320197px;}
.y25{bottom:13.320202px;}
.y39{bottom:13.320251px;}
.y15{bottom:14.940185px;}
.y1e{bottom:14.940188px;}
.y74{bottom:17.820186px;}
.y21{bottom:19.980106px;}
.y37{bottom:80.160325px;}
.y3{bottom:82.500324px;}
.y3c{bottom:82.860324px;}
.y36{bottom:97.440318px;}
.y13{bottom:99.960317px;}
.y5a{bottom:115.800311px;}
.y28{bottom:116.700310px;}
.y3d{bottom:121.560308px;}
.y3b{bottom:124.980307px;}
.y64{bottom:136.680302px;}
.y59{bottom:136.860302px;}
.y6b{bottom:139.020301px;}
.y4d{bottom:143.880299px;}
.y58{bottom:157.920294px;}
.y6a{bottom:172.680288px;}
.y35{bottom:175.380287px;}
.y2e{bottom:175.740287px;}
.y34{bottom:177.720286px;}
.y62{bottom:178.080000px;}
.y68{bottom:187.260282px;}
.y33{bottom:189.240281px;}
.y3a{bottom:192.120280px;}
.y4c{bottom:194.460279px;}
.y70{bottom:198.780277px;}
.y69{bottom:206.340274px;}
.y11{bottom:222.720000px;}
.y76{bottom:225.780267px;}
.y2a{bottom:228.120266px;}
.y27{bottom:232.980264px;}
.y67{bottom:237.840262px;}
.y4b{bottom:244.860259px;}
.y38{bottom:251.700000px;}
.y31{bottom:260.700253px;}
.y47{bottom:261.240253px;}
.y32{bottom:265.020251px;}
.y2b{bottom:273.300248px;}
.y6f{bottom:274.560247px;}
.y7c{bottom:279.960245px;}
.y16{bottom:280.500245px;}
.y1f{bottom:280.860245px;}
.y29{bottom:287.160242px;}
.y66{bottom:288.420242px;}
.yf{bottom:290.220000px;}
.y26{bottom:292.020240px;}
.y2d{bottom:310.740233px;}
.y46{bottom:311.820232px;}
.y1a{bottom:324.240227px;}
.y75{bottom:326.940226px;}
.y65{bottom:339.000221px;}
.y7b{bottom:351.780216px;}
.y30{bottom:353.400216px;}
.y45{bottom:362.220212px;}
.y50{bottom:370.320209px;}
.y24{bottom:373.380000px;}
.y60{bottom:374.640000px;}
.y57{bottom:375.360207px;}
.y18{bottom:386.700000px;}
.y2c{bottom:386.700202px;}
.y5f{bottom:389.400201px;}
.y5e{bottom:389.940201px;}
.y4a{bottom:395.700199px;}
.y56{bottom:400.740197px;}
.y1d{bottom:408.480000px;}
.y73{bottom:410.100000px;}
.y4e{bottom:411.720000px;}
.y5d{bottom:413.160192px;}
.y14{bottom:415.140000px;}
.yd{bottom:425.040000px;}
.y55{bottom:425.940187px;}
.y5b{bottom:432.240000px;}
.y7a{bottom:435.840000px;}
.y48{bottom:436.920000px;}
.y8{bottom:446.460000px;}
.y23{bottom:462.480172px;}
.y43{bottom:471.300168px;}
.y6{bottom:492.360000px;}
.y6e{bottom:511.080153px;}
.y22{bottom:512.520152px;}
.y78{bottom:516.300150px;}
.y53{bottom:527.100146px;}
.y71{bottom:529.080145px;}
.y41{bottom:534.660143px;}
.ya{bottom:565.800131px;}
.y1b{bottom:565.980131px;}
.y52{bottom:577.680126px;}
.y6d{bottom:578.400126px;}
.y40{bottom:593.700120px;}
.y20{bottom:606.300000px;}
.y2f{bottom:626.280106px;}
.y4{bottom:627.360000px;}
.y6c{bottom:645.900099px;}
.y3f{bottom:652.740096px;}
.y51{bottom:653.460096px;}
.y77{bottom:657.240094px;}
.y2{bottom:701.340076px;}
.yc{bottom:751.740056px;}
.y3e{bottom:756.420054px;}
.y1{bottom:768.840049px;}
.h23{height:3.420000px;}
.h24{height:5.040000px;}
.h1e{height:7.200000px;}
.h1c{height:9.540000px;}
.h2a{height:10.620000px;}
.hb{height:10.800000px;}
.h1b{height:12.240000px;}
.h22{height:14.220000px;}
.h9{height:21.420000px;}
.ha{height:31.320000px;}
.h1d{height:34.740000px;}
.h28{height:36.360000px;}
.h19{height:37.440000px;}
.he{height:37.980000px;}
.hd{height:40.500000px;}
.h6{height:41.220000px;}
.h8{height:47.160000px;}
.h27{height:57.780000px;}
.hc{height:59.760000px;}
.h5{height:62.640000px;}
.h3{height:70.560000px;}
.h21{height:72.840908px;}
.h1f{height:80.350280px;}
.h20{height:87.859652px;}
.h2{height:102.127459px;}
.hf{height:105.660000px;}
.h25{height:117.146203px;}
.h15{height:146.432754px;}
.h1a{height:175.719305px;}
.h11{height:205.005855px;}
.h1{height:234.292406px;}
.h17{height:235.712718px;}
.h14{height:242.192716px;}
.h16{height:245.792714px;}
.h4{height:263.578957px;}
.h7{height:292.865508px;}
.h18{height:304.112691px;}
.h12{height:322.152059px;}
.h26{height:351.438609px;}
.h10{height:394.992967px;}
.h29{height:643.553180px;}
.h13{height:689.351912px;}
.h0{height:892.500000px;}
.w13{width:86.220000px;}
.wd{width:87.074400px;}
.we{width:91.214400px;}
.w12{width:109.620000px;}
.w14{width:159.120000px;}
.w11{width:217.800000px;}
.wb{width:222.794400px;}
.w17{width:231.840000px;}
.w10{width:271.620000px;}
.w3{width:299.294400px;}
.w6{width:410.714400px;}
.w7{width:501.840000px;}
.w4{width:507.420000px;}
.wa{width:558.180000px;}
.w16{width:569.160000px;}
.w8{width:712.440000px;}
.w15{width:769.140000px;}
.w5{width:934.334400px;}
.w2{width:1009.214400px;}
.w1{width:1036.754400px;}
.wc{width:1175.760000px;}
.w9{width:1214.280000px;}
.wf{width:1243.934040px;}
.w0{width:1263.000000px;}
.x14{left:-105.299995px;}
.x0{left:0.000000px;}
.x3{left:12.765925px;}
.x2f{left:19.065960px;}
.x7{left:26.445889px;}
.xc{left:33.465960px;}
.x8{left:37.245885px;}
.x36{left:38.685885px;}
.x59{left:40.305884px;}
.xe{left:42.285883px;}
.xf{left:45.705882px;}
.x1f{left:49.306480px;}
.x2a{left:52.725879px;}
.x37{left:55.785878px;}
.x1{left:58.485877px;}
.x22{left:67.125873px;}
.x16{left:69.645872px;}
.x17{left:80.445868px;}
.x50{left:88.005865px;}
.x4e{left:95.025960px;}
.x31{left:117.525853px;}
.x4c{left:123.105851px;}
.x43{left:126.525849px;}
.x2b{left:133.365847px;}
.x4d{left:137.145960px;}
.x51{left:138.585845px;}
.x5a{left:142.545843px;}
.x33{left:156.945837px;}
.x4f{left:161.806435px;}
.x34{left:170.805832px;}
.x5b{left:179.985960px;}
.x20{left:194.926422px;}
.x57{left:196.186422px;}
.x58{left:214.726414px;}
.x55{left:217.066413px;}
.x4{left:226.245600px;}
.x56{left:233.445600px;}
.x44{left:242.265803px;}
.x2d{left:243.705803px;}
.x5{left:253.785600px;}
.x45{left:259.186396px;}
.x21{left:263.506395px;}
.xb{left:265.666394px;}
.x18{left:272.145791px;}
.x3f{left:292.846383px;}
.x38{left:296.265600px;}
.x23{left:302.205779px;}
.x3e{left:323.266371px;}
.x9{left:328.665600px;}
.x24{left:337.845765px;}
.x29{left:347.926361px;}
.x40{left:415.606334px;}
.x4a{left:431.446327px;}
.x49{left:432.886327px;}
.x2{left:449.445720px;}
.x47{left:479.686308px;}
.x48{left:482.206307px;}
.x35{left:491.925703px;}
.x2c{left:515.325694px;}
.x13{left:521.446291px;}
.xd{left:535.305600px;}
.x25{left:554.025678px;}
.x19{left:559.605676px;}
.x1a{left:578.685669px;}
.x32{left:583.725667px;}
.x1e{left:602.626259px;}
.x5e{left:621.886251px;}
.x39{left:641.326243px;}
.x10{left:648.346241px;}
.x5d{left:665.446234px;}
.x3a{left:668.325600px;}
.x28{left:681.826227px;}
.x41{left:690.466224px;}
.x42{left:696.406221px;}
.x5c{left:749.145600px;}
.x52{left:771.106192px;}
.x26{left:784.425586px;}
.x1b{left:785.865586px;}
.x53{left:788.926184px;}
.x54{left:807.826177px;}
.xa{left:852.285600px;}
.x46{left:876.585600px;}
.x4b{left:894.226142px;}
.x12{left:918.706133px;}
.x2e{left:928.785528px;}
.x3b{left:940.486124px;}
.x1c{left:944.985522px;}
.x6{left:963.705600px;}
.x27{left:987.645505px;}
.x3c{left:1008.346097px;}
.x30{left:1022.746091px;}
.x11{left:1040.205600px;}
.x3d{left:1064.686074px;}
.x1d{left:1171.785600px;}
.x15{left:1175.925600px;}
@media print{
.v1{vertical-align:-203.519919pt;}
.v2{vertical-align:-186.239926pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:79.359968pt;}
.v4{vertical-align:85.119966pt;}
.v5{vertical-align:88.319965pt;}
.v7{vertical-align:140.159944pt;}
.v3{vertical-align:326.399869pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.135625pt;}
.ls2{letter-spacing:0.135703pt;}
.ls5{letter-spacing:0.169062pt;}
.ls1{letter-spacing:0.348126pt;}
.ls4{letter-spacing:3009.600929pt;}
.ws2{word-spacing:-93.934009pt;}
.ws11{word-spacing:-83.266527pt;}
.ws7{word-spacing:-76.327649pt;}
.ws3{word-spacing:-62.449895pt;}
.ws0{word-spacing:-55.511018pt;}
.ws6{word-spacing:-48.707766pt;}
.ws5{word-spacing:-48.572141pt;}
.wsc{word-spacing:-41.633263pt;}
.ws9{word-spacing:-34.694386pt;}
.ws10{word-spacing:-27.755509pt;}
.wse{word-spacing:-20.816632pt;}
.wsd{word-spacing:-19.037432pt;}
.wsf{word-spacing:-17.258233pt;}
.ws4{word-spacing:-4.548004pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:1801.836335pt;}
.wsa{word-spacing:2064.236008pt;}
.ws8{word-spacing:2439.275839pt;}
._8{margin-left:-965.502334pt;}
._a{margin-left:-390.445618pt;}
._6{margin-left:-17.552800pt;}
._4{margin-left:-6.594497pt;}
._2{margin-left:-3.333133pt;}
._3{margin-left:-2.391630pt;}
._0{margin-left:-1.177734pt;}
._1{width:1.116327pt;}
._9{width:2.182885pt;}
._7{width:1427.599564pt;}
._5{width:2637.991812pt;}
.fsb{font-size:62.079975pt;}
.fs9{font-size:68.479973pt;}
.fsa{font-size:74.879970pt;}
.fs1{font-size:87.039965pt;}
.fsc{font-size:99.839960pt;}
.fs7{font-size:124.799950pt;}
.fs8{font-size:149.759940pt;}
.fs5{font-size:174.719930pt;}
.fs0{font-size:199.679920pt;}
.fs2{font-size:224.639910pt;}
.fs3{font-size:249.599900pt;}
.fs6{font-size:274.559890pt;}
.fsd{font-size:299.519880pt;}
.fs4{font-size:336.639865pt;}
.fse{font-size:548.479781pt;}
.y17{bottom:-41.279825pt;}
.y61{bottom:-31.679803pt;}
.y44{bottom:-22.719832pt;}
.y1c{bottom:-20.479833pt;}
.y72{bottom:-16.479835pt;}
.yb{bottom:-14.559836pt;}
.y54{bottom:-8.959838pt;}
.y9{bottom:-8.479838pt;}
.y79{bottom:-1.279841pt;}
.y42{bottom:-0.319841pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:3.680162pt;}
.y49{bottom:8.160159pt;}
.y4f{bottom:8.160168pt;}
.y63{bottom:8.160251pt;}
.y7{bottom:10.560138pt;}
.ye{bottom:10.560162pt;}
.y10{bottom:10.560210pt;}
.y12{bottom:10.560234pt;}
.y5{bottom:11.840090pt;}
.y19{bottom:11.840175pt;}
.y25{bottom:11.840180pt;}
.y39{bottom:11.840223pt;}
.y15{bottom:13.280164pt;}
.y1e{bottom:13.280167pt;}
.y74{bottom:15.840165pt;}
.y21{bottom:17.760095pt;}
.y37{bottom:71.253622pt;}
.y3{bottom:73.333621pt;}
.y3c{bottom:73.653621pt;}
.y36{bottom:86.613616pt;}
.y13{bottom:88.853615pt;}
.y5a{bottom:102.933609pt;}
.y28{bottom:103.733609pt;}
.y3d{bottom:108.053607pt;}
.y3b{bottom:111.093606pt;}
.y64{bottom:121.493602pt;}
.y59{bottom:121.653602pt;}
.y6b{bottom:123.573601pt;}
.y4d{bottom:127.893600pt;}
.y58{bottom:140.373595pt;}
.y6a{bottom:153.493589pt;}
.y35{bottom:155.893588pt;}
.y2e{bottom:156.213588pt;}
.y34{bottom:157.973587pt;}
.y62{bottom:158.293333pt;}
.y68{bottom:166.453584pt;}
.y33{bottom:168.213583pt;}
.y3a{bottom:170.773582pt;}
.y4c{bottom:172.853582pt;}
.y70{bottom:176.693580pt;}
.y69{bottom:183.413577pt;}
.y11{bottom:197.973333pt;}
.y76{bottom:200.693570pt;}
.y2a{bottom:202.773570pt;}
.y27{bottom:207.093568pt;}
.y67{bottom:211.413566pt;}
.y4b{bottom:217.653564pt;}
.y38{bottom:223.733333pt;}
.y31{bottom:231.733558pt;}
.y47{bottom:232.213558pt;}
.y32{bottom:235.573556pt;}
.y2b{bottom:242.933553pt;}
.y6f{bottom:244.053553pt;}
.y7c{bottom:248.853551pt;}
.y16{bottom:249.333551pt;}
.y1f{bottom:249.653551pt;}
.y29{bottom:255.253549pt;}
.y66{bottom:256.373548pt;}
.yf{bottom:257.973333pt;}
.y26{bottom:259.573547pt;}
.y2d{bottom:276.213540pt;}
.y46{bottom:277.173540pt;}
.y1a{bottom:288.213535pt;}
.y75{bottom:290.613534pt;}
.y65{bottom:301.333530pt;}
.y7b{bottom:312.693526pt;}
.y30{bottom:314.133525pt;}
.y45{bottom:321.973522pt;}
.y50{bottom:329.173519pt;}
.y24{bottom:331.893333pt;}
.y60{bottom:333.013333pt;}
.y57{bottom:333.653517pt;}
.y18{bottom:343.733333pt;}
.y2c{bottom:343.733513pt;}
.y5f{bottom:346.133512pt;}
.y5e{bottom:346.613512pt;}
.y4a{bottom:351.733510pt;}
.y56{bottom:356.213508pt;}
.y1d{bottom:363.093333pt;}
.y73{bottom:364.533333pt;}
.y4e{bottom:365.973333pt;}
.y5d{bottom:367.253504pt;}
.y14{bottom:369.013333pt;}
.yd{bottom:377.813333pt;}
.y55{bottom:378.613499pt;}
.y5b{bottom:384.213333pt;}
.y7a{bottom:387.413333pt;}
.y48{bottom:388.373333pt;}
.y8{bottom:396.853333pt;}
.y23{bottom:411.093486pt;}
.y43{bottom:418.933483pt;}
.y6{bottom:437.653333pt;}
.y6e{bottom:454.293469pt;}
.y22{bottom:455.573468pt;}
.y78{bottom:458.933467pt;}
.y53{bottom:468.533463pt;}
.y71{bottom:470.293463pt;}
.y41{bottom:475.253461pt;}
.ya{bottom:502.933449pt;}
.y1b{bottom:503.093449pt;}
.y52{bottom:513.493445pt;}
.y6d{bottom:514.133445pt;}
.y40{bottom:527.733440pt;}
.y20{bottom:538.933333pt;}
.y2f{bottom:556.693428pt;}
.y4{bottom:557.653333pt;}
.y6c{bottom:574.133421pt;}
.y3f{bottom:580.213419pt;}
.y51{bottom:580.853418pt;}
.y77{bottom:584.213417pt;}
.y2{bottom:623.413401pt;}
.yc{bottom:668.213383pt;}
.y3e{bottom:672.373382pt;}
.y1{bottom:683.413377pt;}
.h23{height:3.040000pt;}
.h24{height:4.480000pt;}
.h1e{height:6.400000pt;}
.h1c{height:8.480000pt;}
.h2a{height:9.440000pt;}
.hb{height:9.600000pt;}
.h1b{height:10.880000pt;}
.h22{height:12.640000pt;}
.h9{height:19.040000pt;}
.ha{height:27.840000pt;}
.h1d{height:30.880000pt;}
.h28{height:32.320000pt;}
.h19{height:33.280000pt;}
.he{height:33.760000pt;}
.hd{height:36.000000pt;}
.h6{height:36.640000pt;}
.h8{height:41.920000pt;}
.h27{height:51.360000pt;}
.hc{height:53.120000pt;}
.h5{height:55.680000pt;}
.h3{height:62.720000pt;}
.h21{height:64.747474pt;}
.h1f{height:71.422471pt;}
.h20{height:78.097469pt;}
.h2{height:90.779964pt;}
.hf{height:93.920000pt;}
.h25{height:104.129958pt;}
.h15{height:130.162448pt;}
.h1a{height:156.194938pt;}
.h11{height:182.227427pt;}
.h1{height:208.259917pt;}
.h17{height:209.522416pt;}
.h14{height:215.282414pt;}
.h16{height:218.482413pt;}
.h4{height:234.292406pt;}
.h7{height:260.324896pt;}
.h18{height:270.322392pt;}
.h12{height:286.357385pt;}
.h26{height:312.389875pt;}
.h10{height:351.104860pt;}
.h29{height:572.047271pt;}
.h13{height:612.757255pt;}
.h0{height:793.333333pt;}
.w13{width:76.640000pt;}
.wd{width:77.399467pt;}
.we{width:81.079467pt;}
.w12{width:97.440000pt;}
.w14{width:141.440000pt;}
.w11{width:193.600000pt;}
.wb{width:198.039467pt;}
.w17{width:206.080000pt;}
.w10{width:241.440000pt;}
.w3{width:266.039467pt;}
.w6{width:365.079467pt;}
.w7{width:446.080000pt;}
.w4{width:451.040000pt;}
.wa{width:496.160000pt;}
.w16{width:505.920000pt;}
.w8{width:633.280000pt;}
.w15{width:683.680000pt;}
.w5{width:830.519467pt;}
.w2{width:897.079467pt;}
.w1{width:921.559467pt;}
.wc{width:1045.120000pt;}
.w9{width:1079.360000pt;}
.wf{width:1105.719147pt;}
.w0{width:1122.666667pt;}
.x14{left:-93.599996pt;}
.x0{left:0.000000pt;}
.x3{left:11.347489pt;}
.x2f{left:16.947520pt;}
.x7{left:23.507457pt;}
.xc{left:29.747520pt;}
.x8{left:33.107453pt;}
.x36{left:34.387453pt;}
.x59{left:35.827452pt;}
.xe{left:37.587452pt;}
.xf{left:40.627450pt;}
.x1f{left:43.827982pt;}
.x2a{left:46.867448pt;}
.x37{left:49.587447pt;}
.x1{left:51.987446pt;}
.x22{left:59.667443pt;}
.x16{left:61.907442pt;}
.x17{left:71.507438pt;}
.x50{left:78.227435pt;}
.x4e{left:84.467520pt;}
.x31{left:104.467425pt;}
.x4c{left:109.427423pt;}
.x43{left:112.467422pt;}
.x2b{left:118.547419pt;}
.x4d{left:121.907520pt;}
.x51{left:123.187417pt;}
.x5a{left:126.707416pt;}
.x33{left:139.507411pt;}
.x4f{left:143.827942pt;}
.x34{left:151.827406pt;}
.x5b{left:159.987520pt;}
.x20{left:173.267931pt;}
.x57{left:174.387930pt;}
.x58{left:190.867924pt;}
.x55{left:192.947923pt;}
.x4{left:201.107200pt;}
.x56{left:207.507200pt;}
.x44{left:215.347381pt;}
.x2d{left:216.627380pt;}
.x5{left:225.587200pt;}
.x45{left:230.387908pt;}
.x21{left:234.227906pt;}
.xb{left:236.147906pt;}
.x18{left:241.907370pt;}
.x3f{left:260.307896pt;}
.x38{left:263.347200pt;}
.x23{left:268.627359pt;}
.x3e{left:287.347885pt;}
.x9{left:292.147200pt;}
.x24{left:300.307347pt;}
.x29{left:309.267876pt;}
.x40{left:369.427852pt;}
.x4a{left:383.507847pt;}
.x49{left:384.787846pt;}
.x2{left:399.507307pt;}
.x47{left:426.387829pt;}
.x48{left:428.627829pt;}
.x35{left:437.267292pt;}
.x2c{left:458.067283pt;}
.x13{left:463.507815pt;}
.xd{left:475.827200pt;}
.x25{left:492.467270pt;}
.x19{left:497.427268pt;}
.x1a{left:514.387261pt;}
.x32{left:518.867259pt;}
.x1e{left:535.667786pt;}
.x5e{left:552.787779pt;}
.x39{left:570.067772pt;}
.x10{left:576.307769pt;}
.x5d{left:591.507763pt;}
.x3a{left:594.067200pt;}
.x28{left:606.067758pt;}
.x41{left:613.747755pt;}
.x42{left:619.027752pt;}
.x5c{left:665.907200pt;}
.x52{left:685.427726pt;}
.x26{left:697.267188pt;}
.x1b{left:698.547187pt;}
.x53{left:701.267719pt;}
.x54{left:718.067713pt;}
.xa{left:757.587200pt;}
.x46{left:779.187200pt;}
.x4b{left:794.867682pt;}
.x12{left:816.627673pt;}
.x2e{left:825.587136pt;}
.x3b{left:835.987666pt;}
.x1c{left:839.987131pt;}
.x6{left:856.627200pt;}
.x27{left:877.907116pt;}
.x3c{left:896.307641pt;}
.x30{left:909.107636pt;}
.x11{left:924.627200pt;}
.x3d{left:946.387621pt;}
.x1d{left:1041.587200pt;}
.x15{left:1045.267200pt;}
}




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