
    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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_8ba716eab9c93e48efe7ea58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6b43fbafddb179e4fb6892e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_5d8638e2aaf12b8dc259e780.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_e5db8ff295fa442acbba28ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_09fdb1a47441a9b0968d07b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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:ff8;src:url('chunks/assets/font_6777f98588bd25f1903a7be9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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:ff9;src:url('chunks/assets/font_49acee3b74ed00b41e248854.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-2.119953px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.119953px;}
.v3{vertical-align:16.959620px;}
.ls23{letter-spacing:-0.351912px;}
.ls24{letter-spacing:-0.326473px;}
.ls21{letter-spacing:-0.237435px;}
.ls20{letter-spacing:-0.144157px;}
.ls25{letter-spacing:-0.080558px;}
.ls2a{letter-spacing:-0.067838px;}
.ls1e{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.021200px;}
.ls1d{letter-spacing:0.025439px;}
.ls19{letter-spacing:0.067838px;}
.ls0{letter-spacing:0.093278px;}
.ls1b{letter-spacing:0.110238px;}
.ls28{letter-spacing:0.144157px;}
.ls27{letter-spacing:0.211995px;}
.ls1a{letter-spacing:0.220475px;}
.ls26{letter-spacing:0.390071px;}
.ls1f{letter-spacing:0.449430px;}
.lsf{letter-spacing:0.568147px;}
.ls14{letter-spacing:0.627506px;}
.ls9{letter-spacing:0.657185px;}
.ls22{letter-spacing:0.708064px;}
.ls4{letter-spacing:0.784382px;}
.ls6{letter-spacing:0.792862px;}
.ls2b{letter-spacing:0.822542px;}
.lsa{letter-spacing:0.826781px;}
.ls2{letter-spacing:0.847981px;}
.ls7{letter-spacing:0.890380px;}
.ls3{letter-spacing:0.932779px;}
.ls29{letter-spacing:0.992138px;}
.ls13{letter-spacing:1.009097px;}
.ls1c{letter-spacing:1.127815px;}
.lsd{letter-spacing:1.182934px;}
.ls16{letter-spacing:1.322850px;}
.lsb{letter-spacing:1.522126px;}
.lse{letter-spacing:1.632363px;}
.ls5{letter-spacing:1.907957px;}
.ls8{letter-spacing:2.242910px;}
.ls17{letter-spacing:2.370107px;}
.lsc{letter-spacing:2.620261px;}
.ls10{letter-spacing:5.359240px;}
.ls11{letter-spacing:6.419216px;}
.ls12{letter-spacing:7.479193px;}
.ls15{letter-spacing:13.504098px;}
.ls1{letter-spacing:65.472615px;}
.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;}
}
.ws5{word-spacing:-46.638956px;}
.ws8{word-spacing:-39.113125px;}
.ws9{word-spacing:-38.180345px;}
.wse{word-spacing:-36.437744px;}
.wsc{word-spacing:-33.821723px;}
.ws7{word-spacing:-33.779324px;}
.ws6{word-spacing:-33.694526px;}
.wsd{word-spacing:-32.761747px;}
.ws4{word-spacing:-11.248468px;}
.ws3{word-spacing:-10.540404px;}
.wsb{word-spacing:-10.213931px;}
.wsa{word-spacing:-10.188492px;}
.ws0{word-spacing:-9.582186px;}
.ws13{word-spacing:-8.488290px;}
.wsf{word-spacing:-8.055820px;}
.ws10{word-spacing:-7.877744px;}
.ws11{word-spacing:-7.809905px;}
.ws1{word-spacing:-7.665748px;}
.ws12{word-spacing:-7.597910px;}
.ws2{word-spacing:-7.428314px;}
.ws14{word-spacing:0.000000px;}
._2{margin-left:-3.230808px;}
._9{margin-left:-2.221710px;}
._0{margin-left:-1.059976px;}
._1{width:1.110855px;}
._6{width:2.200511px;}
._b{width:3.252007px;}
._a{width:5.155725px;}
._c{width:6.198741px;}
._4{width:8.034620px;}
._d{width:9.035238px;}
._e{width:11.579181px;}
._5{width:13.071627px;}
._3{width:14.513195px;}
._7{width:16.060761px;}
._8{width:17.281853px;}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:33.919241px;}
.fs5{font-size:38.159146px;}
.fs1{font-size:42.399051px;}
.fs3{font-size:46.638956px;}
.fs0{font-size:50.878861px;}
.fs4{font-size:59.358671px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.128174px;}
.y3{bottom:41.074081px;}
.y56{bottom:75.549809px;}
.y55{bottom:85.884578px;}
.ybd{bottom:94.364388px;}
.y54{bottom:96.219346px;}
.ybc{bottom:104.699157px;}
.y53{bottom:106.559415px;}
.ybb{bottom:115.039225px;}
.y52{bottom:116.894184px;}
.yba{bottom:125.373994px;}
.y51{bottom:127.228952px;}
.yb9{bottom:135.708762px;}
.y50{bottom:137.563721px;}
.yb8{bottom:146.043531px;}
.y4f{bottom:147.898490px;}
.yb7{bottom:156.378300px;}
.y4e{bottom:158.498252px;}
.yb6{bottom:166.713069px;}
.y4d{bottom:168.833021px;}
.yb5{bottom:177.047837px;}
.y4c{bottom:179.167790px;}
.yb4{bottom:187.382606px;}
.y4b{bottom:189.502558px;}
.yb3{bottom:197.706775px;}
.y4a{bottom:199.858527px;}
.yb2{bottom:208.073343px;}
.y49{bottom:210.193295px;}
.yb1{bottom:218.673106px;}
.y48{bottom:220.528064px;}
.yb0{bottom:229.007874px;}
.y47{bottom:230.862833px;}
.yaf{bottom:239.342643px;}
.y46{bottom:241.197601px;}
.yae{bottom:249.677412px;}
.y45{bottom:251.532370px;}
.yad{bottom:260.012180px;}
.y44{bottom:261.867139px;}
.yac{bottom:270.346949px;}
.y43{bottom:272.731896px;}
.yab{bottom:280.681718px;}
.y42{bottom:285.981599px;}
.yaa{bottom:291.016486px;}
.y41{bottom:300.291279px;}
.ya9{bottom:301.351255px;}
.ya8{bottom:311.686024px;}
.y40{bottom:314.335964px;}
.ya7{bottom:322.020792px;}
.y3f{bottom:328.677443px;}
.ya6{bottom:332.387360px;}
.ya5{bottom:342.722129px;}
.y3e{bottom:342.987123px;}
.ya4{bottom:353.046298px;}
.y3d{bottom:357.296803px;}
.ya3{bottom:363.391666px;}
.y3c{bottom:371.341488px;}
.ya2{bottom:373.726435px;}
.ya1{bottom:384.315598px;}
.y3b{bottom:385.651168px;}
.ya0{bottom:394.660966px;}
.y3a{bottom:400.225842px;}
.y9f{bottom:404.995735px;}
.y39{bottom:414.270528px;}
.y9e{bottom:415.319904px;}
.y9d{bottom:425.665273px;}
.y38{bottom:428.580207px;}
.y9c{bottom:436.000041px;}
.y37{bottom:442.889887px;}
.y9b{bottom:446.324210px;}
.y9a{bottom:456.690778px;}
.y36{bottom:456.955772px;}
.y99{bottom:467.025547px;}
.y35{bottom:471.265452px;}
.y98{bottom:477.360315px;}
.y34{bottom:485.575132px;}
.y97{bottom:487.695084px;}
.y96{bottom:498.029853px;}
.y33{bottom:499.884811px;}
.y95{bottom:508.364621px;}
.y32{bottom:513.929497px;}
.y94{bottom:518.699390px;}
.y31{bottom:528.239177px;}
.y93{bottom:529.034159px;}
.y92{bottom:539.368928px;}
.y30{bottom:542.548856px;}
.y91{bottom:549.968690px;}
.y2f{bottom:556.593542px;}
.y90{bottom:560.303459px;}
.y8f{bottom:570.638228px;}
.y2e{bottom:570.903222px;}
.y8e{bottom:581.004796px;}
.y2d{bottom:585.244701px;}
.y8d{bottom:591.339564px;}
.y2c{bottom:599.554380px;}
.y8c{bottom:601.674333px;}
.y8b{bottom:612.009102px;}
.y2b{bottom:613.599066px;}
.y8a{bottom:622.343870px;}
.y2a{bottom:627.908746px;}
.y89{bottom:632.678639px;}
.y29{bottom:642.218425px;}
.y88{bottom:643.013408px;}
.y87{bottom:653.348176px;}
.y28{bottom:656.528105px;}
.y86{bottom:663.682945px;}
.y27{bottom:670.837785px;}
.y85{bottom:674.017714px;}
.y84{bottom:684.352482px;}
.y26{bottom:685.147465px;}
.y83{bottom:694.687251px;}
.y25{bottom:699.192150px;}
.y82{bottom:705.043219px;}
.y24{bottom:713.523030px;}
.y81{bottom:715.642982px;}
.y80{bottom:725.977751px;}
.y23{bottom:727.832709px;}
.y7f{bottom:736.312519px;}
.y22{bottom:742.142389px;}
.y7e{bottom:746.647288px;}
.y21{bottom:756.187075px;}
.y7d{bottom:756.982057px;}
.y7c{bottom:767.316825px;}
.y20{bottom:770.761748px;}
.y7b{bottom:777.651594px;}
.y1f{bottom:785.071428px;}
.y7a{bottom:787.986363px;}
.y79{bottom:798.321132px;}
.y1e{bottom:799.116114px;}
.y78{bottom:808.655900px;}
.y1d{bottom:813.425793px;}
.y77{bottom:818.990669px;}
.y1c{bottom:827.756673px;}
.y76{bottom:829.346637px;}
.y75{bottom:839.681406px;}
.y1b{bottom:841.811958px;}
.y74{bottom:850.026774px;}
.y1a{bottom:856.121638px;}
.y73{bottom:860.350943px;}
.y19{bottom:870.431318px;}
.y72{bottom:870.685712px;}
.y71{bottom:881.296074px;}
.y18{bottom:884.740997px;}
.y70{bottom:891.620243px;}
.y17{bottom:898.775083px;}
.y6f{bottom:901.955012px;}
.y6e{bottom:912.300380px;}
.y16{bottom:913.084763px;}
.y6d{bottom:922.624549px;}
.y15{bottom:927.394443px;}
.y6c{bottom:932.959318px;}
.y14{bottom:941.439128px;}
.y6b{bottom:943.304686px;}
.y6a{bottom:953.660655px;}
.y13{bottom:955.780607px;}
.y69{bottom:963.995423px;}
.y12{bottom:971.945245px;}
.y68{bottom:974.330192px;}
.y67{bottom:984.664961px;}
.y11{bottom:988.109884px;}
.y66{bottom:994.999729px;}
.y10{bottom:1004.274522px;}
.y65{bottom:1005.334498px;}
.y64{bottom:1015.669267px;}
.yf{bottom:1020.174166px;}
.y63{bottom:1026.004035px;}
.ye{bottom:1036.338804px;}
.y62{bottom:1046.938567px;}
.yd{bottom:1050.648484px;}
.y61{bottom:1057.273335px;}
.yc{bottom:1064.958163px;}
.y60{bottom:1067.608104px;}
.y5f{bottom:1077.964072px;}
.yb{bottom:1079.289043px;}
.y5e{bottom:1088.298841px;}
.ya{bottom:1093.598722px;}
.y5d{bottom:1098.633610px;}
.y9{bottom:1107.643408px;}
.y5c{bottom:1108.968378px;}
.y5b{bottom:1119.303147px;}
.y8{bottom:1121.953088px;}
.y5a{bottom:1129.637916px;}
.y7{bottom:1135.732779px;}
.y59{bottom:1139.972684px;}
.y6{bottom:1148.982483px;}
.y58{bottom:1150.307453px;}
.y5{bottom:1159.582246px;}
.y57{bottom:1160.642222px;}
.y4{bottom:1172.831949px;}
.y2{bottom:1211.817876px;}
.hb{height:27.294389px;}
.h6{height:33.737057px;}
.h9{height:37.529785px;}
.h7{height:39.306073px;}
.h2{height:42.879353px;}
.ha{height:43.413481px;}
.h3{height:46.388454px;}
.h8{height:47.754830px;}
.h5{height:52.096178px;}
.h4{height:60.778874px;}
.h1{height:1261.371826px;}
.h0{height:1261.500000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:150.304622px;}
.x2{left:163.024338px;}
.x3{left:188.463768px;}
.x4{left:517.957393px;}
.x5{left:556.116539px;}
@media print{
.v2{vertical-align:-1.884402pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.884402pt;}
.v3{vertical-align:15.075218pt;}
.ls23{letter-spacing:-0.312811pt;}
.ls24{letter-spacing:-0.290198pt;}
.ls21{letter-spacing:-0.211053pt;}
.ls20{letter-spacing:-0.128139pt;}
.ls25{letter-spacing:-0.071607pt;}
.ls2a{letter-spacing:-0.060301pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.018844pt;}
.ls1d{letter-spacing:0.022613pt;}
.ls19{letter-spacing:0.060301pt;}
.ls0{letter-spacing:0.082914pt;}
.ls1b{letter-spacing:0.097989pt;}
.ls28{letter-spacing:0.128139pt;}
.ls27{letter-spacing:0.188440pt;}
.ls1a{letter-spacing:0.195978pt;}
.ls26{letter-spacing:0.346730pt;}
.ls1f{letter-spacing:0.399493pt;}
.lsf{letter-spacing:0.505020pt;}
.ls14{letter-spacing:0.557783pt;}
.ls9{letter-spacing:0.584165pt;}
.ls22{letter-spacing:0.629390pt;}
.ls4{letter-spacing:0.697229pt;}
.ls6{letter-spacing:0.704766pt;}
.ls2b{letter-spacing:0.731148pt;}
.lsa{letter-spacing:0.734917pt;}
.ls2{letter-spacing:0.753761pt;}
.ls7{letter-spacing:0.791449pt;}
.ls3{letter-spacing:0.829137pt;}
.ls29{letter-spacing:0.881900pt;}
.ls13{letter-spacing:0.896975pt;}
.ls1c{letter-spacing:1.002502pt;}
.lsd{letter-spacing:1.051496pt;}
.ls16{letter-spacing:1.175867pt;}
.lsb{letter-spacing:1.353001pt;}
.lse{letter-spacing:1.450990pt;}
.ls5{letter-spacing:1.695962pt;}
.ls8{letter-spacing:1.993698pt;}
.ls17{letter-spacing:2.106762pt;}
.lsc{letter-spacing:2.329121pt;}
.ls10{letter-spacing:4.763769pt;}
.ls11{letter-spacing:5.705970pt;}
.ls12{letter-spacing:6.648171pt;}
.ls15{letter-spacing:12.003642pt;}
.ls1{letter-spacing:58.197880pt;}
.ws5{word-spacing:-41.456850pt;}
.ws8{word-spacing:-34.767222pt;}
.ws9{word-spacing:-33.938085pt;}
.wse{word-spacing:-32.389106pt;}
.wsc{word-spacing:-30.063754pt;}
.ws7{word-spacing:-30.026066pt;}
.ws6{word-spacing:-29.950690pt;}
.wsd{word-spacing:-29.121553pt;}
.ws4{word-spacing:-9.998638pt;}
.ws3{word-spacing:-9.369248pt;}
.wsb{word-spacing:-9.079050pt;}
.wsa{word-spacing:-9.056437pt;}
.ws0{word-spacing:-8.517498pt;}
.ws13{word-spacing:-7.545147pt;}
.wsf{word-spacing:-7.160729pt;}
.ws10{word-spacing:-7.002439pt;}
.ws11{word-spacing:-6.942138pt;}
.ws1{word-spacing:-6.813999pt;}
.ws12{word-spacing:-6.753698pt;}
.ws2{word-spacing:-6.602946pt;}
.ws14{word-spacing:0.000000pt;}
._2{margin-left:-2.871829pt;}
._9{margin-left:-1.974854pt;}
._0{margin-left:-0.942201pt;}
._1{width:0.987427pt;}
._6{width:1.956010pt;}
._b{width:2.890673pt;}
._a{width:4.582866pt;}
._c{width:5.509992pt;}
._4{width:7.141885pt;}
._d{width:8.031322pt;}
._e{width:10.292605pt;}
._5{width:11.619224pt;}
._3{width:12.900618pt;}
._7{width:14.276232pt;}
._8{width:15.361647pt;}
.fs2{font-size:30.150436pt;}
.fs5{font-size:33.919241pt;}
.fs1{font-size:37.688045pt;}
.fs3{font-size:41.456850pt;}
.fs0{font-size:45.225654pt;}
.fs4{font-size:52.763263pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.113932pt;}
.y3{bottom:36.510294pt;}
.y56{bottom:67.155386pt;}
.y55{bottom:76.341847pt;}
.ybd{bottom:83.879456pt;}
.y54{bottom:85.528308pt;}
.ybc{bottom:93.065917pt;}
.y53{bottom:94.719480pt;}
.ybb{bottom:102.257089pt;}
.y52{bottom:103.905941pt;}
.yba{bottom:111.443550pt;}
.y51{bottom:113.092402pt;}
.yb9{bottom:120.630011pt;}
.y50{bottom:122.278863pt;}
.yb8{bottom:129.816472pt;}
.y4f{bottom:131.465324pt;}
.yb7{bottom:139.002933pt;}
.y4e{bottom:140.887335pt;}
.yb6{bottom:148.189394pt;}
.y4d{bottom:150.073797pt;}
.yb5{bottom:157.375855pt;}
.y4c{bottom:159.260258pt;}
.yb4{bottom:166.562316pt;}
.y4b{bottom:168.446719pt;}
.yb3{bottom:175.739355pt;}
.y4a{bottom:177.652024pt;}
.yb2{bottom:184.954082pt;}
.y49{bottom:186.838485pt;}
.yb1{bottom:194.376094pt;}
.y48{bottom:196.024946pt;}
.yb0{bottom:203.562555pt;}
.y47{bottom:205.211407pt;}
.yaf{bottom:212.749016pt;}
.y46{bottom:214.397868pt;}
.yae{bottom:221.935477pt;}
.y45{bottom:223.584329pt;}
.yad{bottom:231.121938pt;}
.y44{bottom:232.770790pt;}
.yac{bottom:240.308399pt;}
.y43{bottom:242.428352pt;}
.yab{bottom:249.494860pt;}
.y42{bottom:254.205866pt;}
.yaa{bottom:258.681321pt;}
.y41{bottom:266.925581pt;}
.ya9{bottom:267.867782pt;}
.ya8{bottom:277.054243pt;}
.y40{bottom:279.409746pt;}
.ya7{bottom:286.240704pt;}
.y3f{bottom:292.157727pt;}
.ya6{bottom:295.455431pt;}
.ya5{bottom:304.641892pt;}
.y3e{bottom:304.877443pt;}
.ya4{bottom:313.818931pt;}
.y3d{bottom:317.597158pt;}
.ya3{bottom:323.014815pt;}
.y3c{bottom:330.081323pt;}
.ya2{bottom:332.201276pt;}
.ya1{bottom:341.613865pt;}
.y3b{bottom:342.801038pt;}
.ya0{bottom:350.809748pt;}
.y3a{bottom:355.756304pt;}
.y9f{bottom:359.996209pt;}
.y39{bottom:368.240469pt;}
.y9e{bottom:369.173248pt;}
.y9d{bottom:378.369131pt;}
.y38{bottom:380.960184pt;}
.y9c{bottom:387.555592pt;}
.y37{bottom:393.679900pt;}
.y9b{bottom:396.732631pt;}
.y9a{bottom:405.947358pt;}
.y36{bottom:406.182909pt;}
.y99{bottom:415.133819pt;}
.y35{bottom:418.902624pt;}
.y98{bottom:424.320280pt;}
.y34{bottom:431.622339pt;}
.y97{bottom:433.506741pt;}
.y96{bottom:442.693202pt;}
.y33{bottom:444.342054pt;}
.y95{bottom:451.879664pt;}
.y32{bottom:456.826219pt;}
.y94{bottom:461.066125pt;}
.y31{bottom:469.545935pt;}
.y93{bottom:470.252586pt;}
.y92{bottom:479.439047pt;}
.y30{bottom:482.265650pt;}
.y91{bottom:488.861058pt;}
.y2f{bottom:494.749815pt;}
.y90{bottom:498.047519pt;}
.y8f{bottom:507.233980pt;}
.y2e{bottom:507.469530pt;}
.y8e{bottom:516.448707pt;}
.y2d{bottom:520.217512pt;}
.y8d{bottom:525.635168pt;}
.y2c{bottom:532.937227pt;}
.y8c{bottom:534.821629pt;}
.y8b{bottom:544.008090pt;}
.y2b{bottom:545.421392pt;}
.y8a{bottom:553.194551pt;}
.y2a{bottom:558.141107pt;}
.y89{bottom:562.381012pt;}
.y29{bottom:570.860823pt;}
.y88{bottom:571.567474pt;}
.y87{bottom:580.753935pt;}
.y28{bottom:583.580538pt;}
.y86{bottom:589.940396pt;}
.y27{bottom:596.300253pt;}
.y85{bottom:599.126857pt;}
.y84{bottom:608.313318pt;}
.y26{bottom:609.019969pt;}
.y83{bottom:617.499779pt;}
.y25{bottom:621.504134pt;}
.y82{bottom:626.705084pt;}
.y24{bottom:634.242693pt;}
.y81{bottom:636.127095pt;}
.y80{bottom:645.313556pt;}
.y23{bottom:646.962408pt;}
.y7f{bottom:654.500017pt;}
.y22{bottom:659.682124pt;}
.y7e{bottom:663.686478pt;}
.y21{bottom:672.166289pt;}
.y7d{bottom:672.872939pt;}
.y7c{bottom:682.059400pt;}
.y20{bottom:685.121554pt;}
.y7b{bottom:691.245861pt;}
.y1f{bottom:697.841269pt;}
.y7a{bottom:700.432323pt;}
.y79{bottom:709.618784pt;}
.y1e{bottom:710.325434pt;}
.y78{bottom:718.805245pt;}
.y1d{bottom:723.045150pt;}
.y77{bottom:727.991706pt;}
.y1c{bottom:735.783709pt;}
.y76{bottom:737.197011pt;}
.y75{bottom:746.383472pt;}
.y1b{bottom:748.277296pt;}
.y74{bottom:755.579355pt;}
.y1a{bottom:760.997011pt;}
.y73{bottom:764.756394pt;}
.y19{bottom:773.716727pt;}
.y72{bottom:773.942855pt;}
.y71{bottom:783.374288pt;}
.y18{bottom:786.436442pt;}
.y70{bottom:792.551327pt;}
.y17{bottom:798.911185pt;}
.y6f{bottom:801.737788pt;}
.y6e{bottom:810.933671pt;}
.y16{bottom:811.630900pt;}
.y6d{bottom:820.110710pt;}
.y15{bottom:824.350616pt;}
.y6c{bottom:829.297172pt;}
.y14{bottom:836.834781pt;}
.y6b{bottom:838.493055pt;}
.y6a{bottom:847.698360pt;}
.y13{bottom:849.582762pt;}
.y69{bottom:856.884821pt;}
.y12{bottom:863.951329pt;}
.y68{bottom:866.071282pt;}
.y67{bottom:875.257743pt;}
.y11{bottom:878.319896pt;}
.y66{bottom:884.444204pt;}
.y10{bottom:892.688464pt;}
.y65{bottom:893.630665pt;}
.y64{bottom:902.817126pt;}
.yf{bottom:906.821481pt;}
.y63{bottom:912.003587pt;}
.ye{bottom:921.190048pt;}
.y62{bottom:930.612059pt;}
.yd{bottom:933.909763pt;}
.y61{bottom:939.798520pt;}
.yc{bottom:946.629479pt;}
.y60{bottom:948.984981pt;}
.y5f{bottom:958.190287pt;}
.yb{bottom:959.368038pt;}
.y5e{bottom:967.376748pt;}
.ya{bottom:972.087753pt;}
.y5d{bottom:976.563209pt;}
.y9{bottom:984.571918pt;}
.y5c{bottom:985.749670pt;}
.y5b{bottom:994.936131pt;}
.y8{bottom:997.291634pt;}
.y5a{bottom:1004.122592pt;}
.y7{bottom:1009.540248pt;}
.y59{bottom:1013.309053pt;}
.y6{bottom:1021.317762pt;}
.y58{bottom:1022.495514pt;}
.y5{bottom:1030.739774pt;}
.y57{bottom:1031.681975pt;}
.y4{bottom:1042.517288pt;}
.y2{bottom:1077.171446pt;}
.hb{height:24.261679pt;}
.h6{height:29.988495pt;}
.h9{height:33.359809pt;}
.h7{height:34.938732pt;}
.h2{height:38.114980pt;}
.ha{height:38.589761pt;}
.h3{height:41.234181pt;}
.h8{height:42.448737pt;}
.h5{height:46.307714pt;}
.h4{height:54.025666pt;}
.h1{height:1121.219401pt;}
.h0{height:1121.333333pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:133.604109pt;}
.x2{left:144.910522pt;}
.x3{left:167.523350pt;}
.x4{left:460.406572pt;}
.x5{left:494.325813pt;}
}




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