
    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_fcaf1de0ea4d3db5b6e0c817.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b136e8a73ae51793b0a3a67a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_bf88a66aa9beb5118b50256d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_1ef42a1d9e193dcb0786fa10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890625;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.010641px;}
.ls3{letter-spacing:0.021238px;}
.ls2{letter-spacing:0.189300px;}
.ls7{letter-spacing:0.272419px;}
.ls6{letter-spacing:5.232418px;}
.ls5{letter-spacing:10.275476px;}
.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:-29.879988px;}
.ws6{word-spacing:-18.021231px;}
.ws0{word-spacing:-17.999993px;}
.ws1{word-spacing:-14.939994px;}
.ws3{word-spacing:-12.059995px;}
.ws5{word-spacing:-10.439996px;}
.ws4{word-spacing:-9.719996px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-5.031567px;}
._2{margin-left:-1.348681px;}
._1{width:1.018902px;}
._e{width:2.147071px;}
._15{width:3.152654px;}
._3{width:4.219787px;}
._4{width:5.957705px;}
._5{width:7.368455px;}
._6{width:9.036028px;}
._8{width:10.140107px;}
._7{width:11.792554px;}
._16{width:12.933784px;}
._17{width:14.525424px;}
._14{width:16.431419px;}
._1d{width:18.326769px;}
._b{width:19.587973px;}
._1c{width:20.793618px;}
._12{width:22.097110px;}
._11{width:23.216522px;}
._19{width:24.323258px;}
._f{width:26.270646px;}
._10{width:28.199796px;}
._18{width:29.687324px;}
._c{width:30.843694px;}
._d{width:31.890453px;}
._9{width:33.914207px;}
._a{width:35.492343px;}
._1b{width:38.633417px;}
._1a{width:39.828189px;}
._1f{width:46.110818px;}
._21{width:109.492338px;}
._22{width:110.607049px;}
._13{width:314.232695px;}
._1e{width:2462.423015px;}
._0{width:2498.441001px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs5{font-size:41.759983px;}
.fs1{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.320037px;}
.y2{bottom:53.400240px;}
.y1{bottom:57.720277px;}
.yde{bottom:110.099956px;}
.y30{bottom:110.100256px;}
.y53{bottom:116.940253px;}
.ydd{bottom:127.379949px;}
.y2f{bottom:127.380249px;}
.y52{bottom:134.220246px;}
.yc1{bottom:144.659942px;}
.y2e{bottom:144.660242px;}
.y2d{bottom:151.499939px;}
.y2c{bottom:161.939935px;}
.y89{bottom:162.659935px;}
.ydc{bottom:168.779932px;}
.y2b{bottom:179.219928px;}
.y2a{bottom:186.059926px;}
.y29{bottom:196.499921px;}
.y51{bottom:203.339919px;}
.y88{bottom:208.019917px;}
.y28{bottom:213.599915px;}
.y50{bottom:214.499914px;}
.y104{bottom:220.439912px;}
.yed{bottom:222.059911px;}
.y27{bottom:230.879908px;}
.y87{bottom:236.639905px;}
.ydb{bottom:237.719905px;}
.y26{bottom:248.159901px;}
.yec{bottom:253.019899px;}
.ya9{bottom:254.459898px;}
.y70{bottom:254.999898px;}
.ybf{bottom:256.979897px;}
.yc0{bottom:265.259894px;}
.y25{bottom:265.439894px;}
.y6f{bottom:266.159894px;}
.y24{bottom:272.279891px;}
.y86{bottom:275.159890px;}
.y103{bottom:282.719887px;}
.y23{bottom:283.439887px;}
.yeb{bottom:283.979886px;}
.ya8{bottom:285.599886px;}
.ybe{bottom:287.939885px;}
.yda{bottom:291.899883px;}
.y4e{bottom:297.119881px;}
.y102{bottom:299.819880px;}
.y4f{bottom:305.399878px;}
.y107{bottom:306.119878px;}
.y85{bottom:306.299877px;}
.yea{bottom:315.119874px;}
.ya7{bottom:316.559873px;}
.y101{bottom:317.099873px;}
.ybd{bottom:319.079872px;}
.yd9{bottom:323.039871px;}
.y100{bottom:323.939870px;}
.y4d{bottom:328.079869px;}
.yff{bottom:334.379866px;}
.y106{bottom:337.079865px;}
.y84{bottom:337.259865px;}
.y22{bottom:344.819862px;}
.ye9{bottom:346.079862px;}
.ya5{bottom:347.699861px;}
.ybc{bottom:350.039860px;}
.yfe{bottom:352.199859px;}
.yd8{bottom:353.999858px;}
.ya6{bottom:355.979858px;}
.yfd{bottom:359.039856px;}
.y4c{bottom:359.219856px;}
.y6d{bottom:368.219853px;}
.y83{bottom:368.399853px;}
.yfc{bottom:371.819851px;}
.y21{bottom:375.779850px;}
.y6e{bottom:376.499849px;}
.ye8{bottom:377.219849px;}
.ya4{bottom:378.659849px;}
.ybb{bottom:381.179848px;}
.y4b{bottom:390.179844px;}
.yd7{bottom:392.879843px;}
.y6c{bottom:399.179840px;}
.y82{bottom:399.359840px;}
.y20{bottom:406.919837px;}
.ye7{bottom:408.179837px;}
.yba{bottom:412.139835px;}
.ya3{bottom:418.439833px;}
.yfb{bottom:420.419832px;}
.y4a{bottom:421.319831px;}
.y6b{bottom:430.319828px;}
.y80{bottom:430.499828px;}
.y1f{bottom:437.879825px;}
.y81{bottom:438.779824px;}
.ye5{bottom:439.319824px;}
.yfa{bottom:443.279823px;}
.ye6{bottom:447.599821px;}
.yd6{bottom:449.939820px;}
.yb9{bottom:451.019820px;}
.ya2{bottom:458.759816px;}
.y48{bottom:461.279815px;}
.y7f{bottom:461.459815px;}
.y1e{bottom:469.019812px;}
.y49{bottom:469.559812px;}
.ye4{bottom:470.279812px;}
.yf9{bottom:474.239810px;}
.yd5{bottom:478.379809px;}
.yb8{bottom:479.639808px;}
.ya1{bottom:489.899804px;}
.y47{bottom:492.419803px;}
.y1d{bottom:499.979800px;}
.y6a{bottom:501.419799px;}
.yd4{bottom:506.819797px;}
.yb7{bottom:508.079797px;}
.ye3{bottom:510.419796px;}
.yf7{bottom:514.379794px;}
.ya0{bottom:520.859792px;}
.yf8{bottom:522.659791px;}
.y46{bottom:523.379791px;}
.y1c{bottom:531.119788px;}
.y69{bottom:532.379787px;}
.y7d{bottom:532.559787px;}
.yd3{bottom:535.259786px;}
.yb6{bottom:536.519785px;}
.y7e{bottom:540.839784px;}
.ye2{bottom:541.379783px;}
.yf6{bottom:545.339782px;}
.y9f{bottom:551.819779px;}
.y44{bottom:554.519778px;}
.y1b{bottom:562.079775px;}
.y45{bottom:562.799775px;}
.y68{bottom:563.519775px;}
.yb5{bottom:564.959774px;}
.ye1{bottom:572.519771px;}
.yd2{bottom:573.779770px;}
.yf5{bottom:576.479769px;}
.y9e{bottom:582.959767px;}
.y43{bottom:585.479766px;}
.y1a{bottom:593.219763px;}
.y66{bottom:594.479762px;}
.y7c{bottom:594.659762px;}
.y67{bottom:602.759759px;}
.yb4{bottom:603.479759px;}
.yd0{bottom:604.919758px;}
.yf4{bottom:607.439757px;}
.yd1{bottom:613.199755px;}
.y9d{bottom:613.919754px;}
.y42{bottom:616.619753px;}
.y19{bottom:624.179750px;}
.y65{bottom:625.619750px;}
.yb3{bottom:634.619746px;}
.ycf{bottom:635.879746px;}
.yf3{bottom:638.579745px;}
.y41{bottom:647.579741px;}
.y9b{bottom:652.979739px;}
.y64{bottom:656.579737px;}
.y7b{bottom:656.759737px;}
.y9c{bottom:660.539736px;}
.y18{bottom:664.319734px;}
.yb2{bottom:665.579734px;}
.yce{bottom:667.019733px;}
.yf2{bottom:669.539732px;}
.y40{bottom:678.719729px;}
.y9a{bottom:681.419727px;}
.y62{bottom:687.719725px;}
.y16{bottom:695.279722px;}
.y63{bottom:695.999722px;}
.yb1{bottom:696.719721px;}
.ycc{bottom:697.979721px;}
.yf1{bottom:700.679720px;}
.y17{bottom:703.559719px;}
.ycd{bottom:706.259717px;}
.y3f{bottom:709.679716px;}
.y99{bottom:709.859716px;}
.y61{bottom:718.679713px;}
.y7a{bottom:718.859712px;}
.y15{bottom:726.419709px;}
.yb0{bottom:727.679709px;}
.ycb{bottom:729.119708px;}
.yf0{bottom:731.639707px;}
.y98{bottom:738.299705px;}
.y3e{bottom:740.819704px;}
.y60{bottom:749.819700px;}
.y13{bottom:757.379697px;}
.yaf{bottom:758.819696px;}
.y14{bottom:765.659694px;}
.y97{bottom:766.739693px;}
.yc9{bottom:767.999693px;}
.y3d{bottom:771.779691px;}
.yca{bottom:775.559690px;}
.y5f{bottom:780.779688px;}
.y79{bottom:780.959688px;}
.y12{bottom:788.519685px;}
.yae{bottom:789.779684px;}
.y96{bottom:795.179682px;}
.yc8{bottom:796.439681px;}
.yef{bottom:802.739679px;}
.y3c{bottom:802.919679px;}
.y5e{bottom:811.919675px;}
.y11{bottom:819.479672px;}
.y105{bottom:820.559672px;}
.yad{bottom:820.919672px;}
.yc7{bottom:824.879670px;}
.ye0{bottom:829.919668px;}
.y95{bottom:833.879666px;}
.y3a{bottom:842.879663px;}
.y78{bottom:843.059663px;}
.y10{bottom:850.619660px;}
.y3b{bottom:851.159660px;}
.y5d{bottom:851.879659px;}
.yc6{bottom:853.319659px;}
.ydf{bottom:860.879656px;}
.y94{bottom:864.839654px;}
.y39{bottom:874.019650px;}
.yf{bottom:881.579647px;}
.y77{bottom:881.939647px;}
.y5c{bottom:883.019647px;}
.yac{bottom:891.299643px;}
.yc5{bottom:892.019643px;}
.y93{bottom:895.979642px;}
.y38{bottom:904.979638px;}
.y76{bottom:910.379636px;}
.ye{bottom:912.719635px;}
.y5b{bottom:913.979634px;}
.yc4{bottom:922.979631px;}
.y92{bottom:926.939629px;}
.y37{bottom:936.119626px;}
.yd{bottom:943.679623px;}
.y5a{bottom:945.119622px;}
.y75{bottom:947.819621px;}
.yc3{bottom:954.119618px;}
.y91{bottom:958.079617px;}
.yee{bottom:966.359613px;}
.y36{bottom:967.079613px;}
.yc{bottom:974.819610px;}
.y59{bottom:976.079610px;}
.y74{bottom:976.259609px;}
.yc2{bottom:985.079606px;}
.y90{bottom:989.039604px;}
.yb{bottom:995.699602px;}
.y35{bottom:998.219601px;}
.y73{bottom:1004.699598px;}
.y58{bottom:1007.219597px;}
.yab{bottom:1016.219594px;}
.ya{bottom:1016.399593px;}
.y8e{bottom:1027.919589px;}
.y34{bottom:1029.179588px;}
.y8f{bottom:1035.479586px;}
.y9{bottom:1037.099585px;}
.y57{bottom:1038.179585px;}
.y72{bottom:1042.319583px;}
.yaa{bottom:1047.179581px;}
.y8d{bottom:1056.359577px;}
.y8{bottom:1057.799577px;}
.y33{bottom:1068.959572px;}
.y71{bottom:1070.759572px;}
.y56{bottom:1078.319569px;}
.y7{bottom:1078.499569px;}
.y8c{bottom:1084.799566px;}
.y6{bottom:1099.199560px;}
.y32{bottom:1109.279556px;}
.y8b{bottom:1113.239555px;}
.y55{bottom:1117.559553px;}
.y5{bottom:1119.539552px;}
.y4{bottom:1140.239544px;}
.y31{bottom:1140.419544px;}
.y8a{bottom:1141.859543px;}
.y54{bottom:1148.699541px;}
.h2{height:20.520000px;}
.h5{height:38.158578px;}
.h9{height:40.985140px;}
.h7{height:47.321348px;}
.h4{height:47.344903px;}
.h6{height:58.651148px;}
.hb{height:58.652348px;}
.ha{height:60.226851px;}
.h8{height:65.010911px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h0{height:1263.000000px;}
.w1{width:0.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x11{left:132.479947px;}
.x1f{left:137.339945px;}
.xa{left:148.859921px;}
.x2c{left:165.779934px;}
.x2d{left:180.179928px;}
.x24{left:183.599927px;}
.x25{left:195.839922px;}
.x39{left:206.639917px;}
.xb{left:214.559914px;}
.x3a{left:218.879912px;}
.xc{left:222.479911px;}
.xd{left:247.679901px;}
.xe{left:255.779898px;}
.x14{left:261.179896px;}
.x22{left:268.559893px;}
.x23{left:280.799888px;}
.x4{left:295.019827px;}
.x3d{left:307.259877px;}
.x3{left:310.679876px;}
.x28{left:330.299868px;}
.x2e{left:338.759864px;}
.x29{left:340.739864px;}
.x2f{left:350.999860px;}
.x6{left:362.519761px;}
.x7{left:367.739753px;}
.x5{left:375.119758px;}
.x8{left:382.499748px;}
.x9{left:446.399649px;}
.x17{left:456.659817px;}
.x18{left:462.779815px;}
.x20{left:473.579811px;}
.xf{left:483.299807px;}
.x21{left:485.819806px;}
.x10{left:491.579803px;}
.x15{left:514.259794px;}
.x16{left:520.379792px;}
.x19{left:557.999777px;}
.x1a{left:565.199774px;}
.x1d{left:571.499771px;}
.x1e{left:583.739767px;}
.x30{left:605.879758px;}
.x36{left:608.939756px;}
.x31{left:618.119753px;}
.x37{left:621.179752px;}
.x32{left:626.579749px;}
.x34{left:628.919748px;}
.x33{left:637.019745px;}
.x35{left:641.159744px;}
.x3b{left:648.359741px;}
.x38{left:649.799740px;}
.x3c{left:660.599736px;}
.x1b{left:666.899733px;}
.x3e{left:671.399731px;}
.x1c{left:679.139728px;}
.x2a{left:682.379727px;}
.x3f{left:683.639727px;}
.x2b{left:696.059722px;}
.x26{left:714.419714px;}
.x27{left:724.859710px;}
.x12{left:753.659699px;}
.x13{left:759.779696px;}
.x2{left:765.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.009459pt;}
.ls3{letter-spacing:0.018878pt;}
.ls2{letter-spacing:0.168267pt;}
.ls7{letter-spacing:0.242150pt;}
.ls6{letter-spacing:4.651038pt;}
.ls5{letter-spacing:9.133756pt;}
.ws7{word-spacing:-26.559989pt;}
.ws6{word-spacing:-16.018872pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:-13.279995pt;}
.ws3{word-spacing:-10.719996pt;}
.ws5{word-spacing:-9.279996pt;}
.ws4{word-spacing:-8.639997pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-4.472504pt;}
._2{margin-left:-1.198827pt;}
._1{width:0.905691pt;}
._e{width:1.908508pt;}
._15{width:2.802359pt;}
._3{width:3.750921pt;}
._4{width:5.295738pt;}
._5{width:6.549738pt;}
._6{width:8.032025pt;}
._8{width:9.013428pt;}
._7{width:10.482270pt;}
._16{width:11.496697pt;}
._17{width:12.911488pt;}
._14{width:14.605705pt;}
._1d{width:16.290462pt;}
._b{width:17.411532pt;}
._1c{width:18.483216pt;}
._12{width:19.641875pt;}
._11{width:20.636908pt;}
._19{width:21.620673pt;}
._f{width:23.351686pt;}
._10{width:25.066485pt;}
._18{width:26.388733pt;}
._c{width:27.416617pt;}
._d{width:28.347069pt;}
._9{width:30.145962pt;}
._a{width:31.548750pt;}
._1b{width:34.340815pt;}
._1a{width:35.402835pt;}
._1f{width:40.987393pt;}
._21{width:97.326523pt;}
._22{width:98.317377pt;}
._13{width:279.317951pt;}
._1e{width:2188.820458pt;}
._0{width:2220.836445pt;}
.fs2{font-size:34.559986pt;}
.fs5{font-size:37.119985pt;}
.fs1{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.840033pt;}
.y2{bottom:47.466880pt;}
.y1{bottom:51.306913pt;}
.yde{bottom:97.866628pt;}
.y30{bottom:97.866894pt;}
.y53{bottom:103.946892pt;}
.ydd{bottom:113.226621pt;}
.y2f{bottom:113.226888pt;}
.y52{bottom:119.306886pt;}
.yc1{bottom:128.586615pt;}
.y2e{bottom:128.586882pt;}
.y2d{bottom:134.666613pt;}
.y2c{bottom:143.946609pt;}
.y89{bottom:144.586609pt;}
.ydc{bottom:150.026607pt;}
.y2b{bottom:159.306603pt;}
.y2a{bottom:165.386601pt;}
.y29{bottom:174.666597pt;}
.y51{bottom:180.746594pt;}
.y88{bottom:184.906593pt;}
.y28{bottom:189.866591pt;}
.y50{bottom:190.666590pt;}
.y104{bottom:195.946588pt;}
.yed{bottom:197.386588pt;}
.y27{bottom:205.226585pt;}
.y87{bottom:210.346583pt;}
.ydb{bottom:211.306582pt;}
.y26{bottom:220.586578pt;}
.yec{bottom:224.906577pt;}
.ya9{bottom:226.186576pt;}
.y70{bottom:226.666576pt;}
.ybf{bottom:228.426575pt;}
.yc0{bottom:235.786572pt;}
.y25{bottom:235.946572pt;}
.y6f{bottom:236.586572pt;}
.y24{bottom:242.026570pt;}
.y86{bottom:244.586569pt;}
.y103{bottom:251.306566pt;}
.y23{bottom:251.946566pt;}
.yeb{bottom:252.426566pt;}
.ya8{bottom:253.866565pt;}
.ybe{bottom:255.946564pt;}
.yda{bottom:259.466563pt;}
.y4e{bottom:264.106561pt;}
.y102{bottom:266.506560pt;}
.y4f{bottom:271.466558pt;}
.y107{bottom:272.106558pt;}
.y85{bottom:272.266558pt;}
.yea{bottom:280.106555pt;}
.ya7{bottom:281.386554pt;}
.y101{bottom:281.866554pt;}
.ybd{bottom:283.626553pt;}
.yd9{bottom:287.146552pt;}
.y100{bottom:287.946551pt;}
.y4d{bottom:291.626550pt;}
.yff{bottom:297.226548pt;}
.y106{bottom:299.626547pt;}
.y84{bottom:299.786547pt;}
.y22{bottom:306.506544pt;}
.ye9{bottom:307.626544pt;}
.ya5{bottom:309.066543pt;}
.ybc{bottom:311.146542pt;}
.yfe{bottom:313.066541pt;}
.yd8{bottom:314.666541pt;}
.ya6{bottom:316.426540pt;}
.yfd{bottom:319.146539pt;}
.y4c{bottom:319.306539pt;}
.y6d{bottom:327.306536pt;}
.y83{bottom:327.466536pt;}
.yfc{bottom:330.506534pt;}
.y21{bottom:334.026533pt;}
.y6e{bottom:334.666533pt;}
.ye8{bottom:335.306533pt;}
.ya4{bottom:336.586532pt;}
.ybb{bottom:338.826531pt;}
.y4b{bottom:346.826528pt;}
.yd7{bottom:349.226527pt;}
.y6c{bottom:354.826525pt;}
.y82{bottom:354.986525pt;}
.y20{bottom:361.706522pt;}
.ye7{bottom:362.826522pt;}
.yba{bottom:366.346520pt;}
.ya3{bottom:371.946518pt;}
.yfb{bottom:373.706517pt;}
.y4a{bottom:374.506517pt;}
.y6b{bottom:382.506514pt;}
.y80{bottom:382.666514pt;}
.y1f{bottom:389.226511pt;}
.y81{bottom:390.026511pt;}
.ye5{bottom:390.506510pt;}
.yfa{bottom:394.026509pt;}
.ye6{bottom:397.866508pt;}
.yd6{bottom:399.946507pt;}
.yb9{bottom:400.906506pt;}
.ya2{bottom:407.786504pt;}
.y48{bottom:410.026503pt;}
.y7f{bottom:410.186503pt;}
.y1e{bottom:416.906500pt;}
.y49{bottom:417.386500pt;}
.ye4{bottom:418.026499pt;}
.yf9{bottom:421.546498pt;}
.yd5{bottom:425.226497pt;}
.yb8{bottom:426.346496pt;}
.ya1{bottom:435.466492pt;}
.y47{bottom:437.706492pt;}
.y1d{bottom:444.426489pt;}
.y6a{bottom:445.706488pt;}
.yd4{bottom:450.506486pt;}
.yb7{bottom:451.626486pt;}
.ye3{bottom:453.706485pt;}
.yf7{bottom:457.226484pt;}
.ya0{bottom:462.986481pt;}
.yf8{bottom:464.586481pt;}
.y46{bottom:465.226481pt;}
.y1c{bottom:472.106478pt;}
.y69{bottom:473.226477pt;}
.y7d{bottom:473.386477pt;}
.yd3{bottom:475.786476pt;}
.yb6{bottom:476.906476pt;}
.y7e{bottom:480.746474pt;}
.ye2{bottom:481.226474pt;}
.yf6{bottom:484.746473pt;}
.y9f{bottom:490.506470pt;}
.y44{bottom:492.906470pt;}
.y1b{bottom:499.626467pt;}
.y45{bottom:500.266467pt;}
.y68{bottom:500.906466pt;}
.yb5{bottom:502.186466pt;}
.ye1{bottom:508.906463pt;}
.yd2{bottom:510.026463pt;}
.yf5{bottom:512.426462pt;}
.y9e{bottom:518.186459pt;}
.y43{bottom:520.426458pt;}
.y1a{bottom:527.306456pt;}
.y66{bottom:528.426455pt;}
.y7c{bottom:528.586455pt;}
.y67{bottom:535.786452pt;}
.yb4{bottom:536.426452pt;}
.yd0{bottom:537.706452pt;}
.yf4{bottom:539.946451pt;}
.yd1{bottom:545.066449pt;}
.y9d{bottom:545.706448pt;}
.y42{bottom:548.106447pt;}
.y19{bottom:554.826445pt;}
.y65{bottom:556.106444pt;}
.yb3{bottom:564.106441pt;}
.ycf{bottom:565.226441pt;}
.yf3{bottom:567.626440pt;}
.y41{bottom:575.626436pt;}
.y9b{bottom:580.426434pt;}
.y64{bottom:583.626433pt;}
.y7b{bottom:583.786433pt;}
.y9c{bottom:587.146432pt;}
.y18{bottom:590.506430pt;}
.yb2{bottom:591.626430pt;}
.yce{bottom:592.906430pt;}
.yf2{bottom:595.146429pt;}
.y40{bottom:603.306425pt;}
.y9a{bottom:605.706424pt;}
.y62{bottom:611.306422pt;}
.y16{bottom:618.026419pt;}
.y63{bottom:618.666419pt;}
.yb1{bottom:619.306419pt;}
.ycc{bottom:620.426418pt;}
.yf1{bottom:622.826418pt;}
.y17{bottom:625.386417pt;}
.ycd{bottom:627.786416pt;}
.y3f{bottom:630.826414pt;}
.y99{bottom:630.986414pt;}
.y61{bottom:638.826411pt;}
.y7a{bottom:638.986411pt;}
.y15{bottom:645.706408pt;}
.yb0{bottom:646.826408pt;}
.ycb{bottom:648.106407pt;}
.yf0{bottom:650.346407pt;}
.y98{bottom:656.266404pt;}
.y3e{bottom:658.506403pt;}
.y60{bottom:666.506400pt;}
.y13{bottom:673.226397pt;}
.yaf{bottom:674.506397pt;}
.y14{bottom:680.586394pt;}
.y97{bottom:681.546394pt;}
.yc9{bottom:682.666394pt;}
.y3d{bottom:686.026392pt;}
.yca{bottom:689.386391pt;}
.y5f{bottom:694.026389pt;}
.y79{bottom:694.186389pt;}
.y12{bottom:700.906386pt;}
.yae{bottom:702.026386pt;}
.y96{bottom:706.826384pt;}
.yc8{bottom:707.946383pt;}
.yef{bottom:713.546381pt;}
.y3c{bottom:713.706381pt;}
.y5e{bottom:721.706378pt;}
.y11{bottom:728.426375pt;}
.y105{bottom:729.386375pt;}
.yad{bottom:729.706375pt;}
.yc7{bottom:733.226373pt;}
.ye0{bottom:737.706372pt;}
.y95{bottom:741.226370pt;}
.y3a{bottom:749.226367pt;}
.y78{bottom:749.386367pt;}
.y10{bottom:756.106364pt;}
.y3b{bottom:756.586364pt;}
.y5d{bottom:757.226364pt;}
.yc6{bottom:758.506363pt;}
.ydf{bottom:765.226361pt;}
.y94{bottom:768.746359pt;}
.y39{bottom:776.906356pt;}
.yf{bottom:783.626353pt;}
.y77{bottom:783.946353pt;}
.y5c{bottom:784.906353pt;}
.yac{bottom:792.266350pt;}
.yc5{bottom:792.906350pt;}
.y93{bottom:796.426348pt;}
.y38{bottom:804.426345pt;}
.y76{bottom:809.226343pt;}
.ye{bottom:811.306342pt;}
.y5b{bottom:812.426342pt;}
.yc4{bottom:820.426338pt;}
.y92{bottom:823.946337pt;}
.y37{bottom:832.106334pt;}
.yd{bottom:838.826331pt;}
.y5a{bottom:840.106331pt;}
.y75{bottom:842.506330pt;}
.yc3{bottom:848.106327pt;}
.y91{bottom:851.626326pt;}
.yee{bottom:858.986323pt;}
.y36{bottom:859.626323pt;}
.yc{bottom:866.506320pt;}
.y59{bottom:867.626320pt;}
.y74{bottom:867.786320pt;}
.yc2{bottom:875.626316pt;}
.y90{bottom:879.146315pt;}
.yb{bottom:885.066313pt;}
.y35{bottom:887.306312pt;}
.y73{bottom:893.066309pt;}
.y58{bottom:895.306309pt;}
.yab{bottom:903.306305pt;}
.ya{bottom:903.466305pt;}
.y8e{bottom:913.706301pt;}
.y34{bottom:914.826301pt;}
.y8f{bottom:920.426298pt;}
.y9{bottom:921.866298pt;}
.y57{bottom:922.826298pt;}
.y72{bottom:926.506296pt;}
.yaa{bottom:930.826294pt;}
.y8d{bottom:938.986291pt;}
.y8{bottom:940.266291pt;}
.y33{bottom:950.186287pt;}
.y71{bottom:951.786286pt;}
.y56{bottom:958.506283pt;}
.y7{bottom:958.666283pt;}
.y8c{bottom:964.266281pt;}
.y6{bottom:977.066276pt;}
.y32{bottom:986.026272pt;}
.y8b{bottom:989.546271pt;}
.y55{bottom:993.386269pt;}
.y5{bottom:995.146269pt;}
.y4{bottom:1013.546261pt;}
.y31{bottom:1013.706261pt;}
.y8a{bottom:1014.986261pt;}
.y54{bottom:1021.066258pt;}
.h2{height:18.240000pt;}
.h5{height:33.918736pt;}
.h9{height:36.431235pt;}
.h7{height:42.063421pt;}
.h4{height:42.084358pt;}
.h6{height:52.134354pt;}
.hb{height:52.135421pt;}
.ha{height:53.534979pt;}
.h8{height:57.787477pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x11{left:117.759953pt;}
.x1f{left:122.079951pt;}
.xa{left:132.319929pt;}
.x2c{left:147.359941pt;}
.x2d{left:160.159936pt;}
.x24{left:163.199935pt;}
.x25{left:174.079930pt;}
.x39{left:183.679927pt;}
.xb{left:190.719924pt;}
.x3a{left:194.559922pt;}
.xc{left:197.759921pt;}
.xd{left:220.159912pt;}
.xe{left:227.359909pt;}
.x14{left:232.159907pt;}
.x22{left:238.719905pt;}
.x23{left:249.599900pt;}
.x4{left:262.239846pt;}
.x3d{left:273.119891pt;}
.x3{left:276.159890pt;}
.x28{left:293.599883pt;}
.x2e{left:301.119880pt;}
.x29{left:302.879879pt;}
.x2f{left:311.999875pt;}
.x6{left:322.239788pt;}
.x7{left:326.879780pt;}
.x5{left:333.439785pt;}
.x8{left:339.999776pt;}
.x9{left:396.799688pt;}
.x17{left:405.919838pt;}
.x18{left:411.359835pt;}
.x20{left:420.959832pt;}
.xf{left:429.599828pt;}
.x21{left:431.839827pt;}
.x10{left:436.959825pt;}
.x15{left:457.119817pt;}
.x16{left:462.559815pt;}
.x19{left:495.999802pt;}
.x1a{left:502.399799pt;}
.x1d{left:507.999797pt;}
.x1e{left:518.879792pt;}
.x30{left:538.559785pt;}
.x36{left:541.279783pt;}
.x31{left:549.439780pt;}
.x37{left:552.159779pt;}
.x32{left:556.959777pt;}
.x34{left:559.039776pt;}
.x33{left:566.239774pt;}
.x35{left:569.919772pt;}
.x3b{left:576.319769pt;}
.x38{left:577.599769pt;}
.x3c{left:587.199765pt;}
.x1b{left:592.799763pt;}
.x3e{left:596.799761pt;}
.x1c{left:603.679759pt;}
.x2a{left:606.559757pt;}
.x3f{left:607.679757pt;}
.x2b{left:618.719753pt;}
.x26{left:635.039746pt;}
.x27{left:644.319742pt;}
.x12{left:669.919732pt;}
.x13{left:675.359730pt;}
.x2{left:680.320000pt;}
}




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