
    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_deac6ba04325df5d15f494dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f287f4823365ff6106d03f50.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_37edc7c138bb596c0eeaeea2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_3bc6b74a421a73abe708eb5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_2cd52e7c2632f3c1b70bdbf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.856440px;}
.ls18{letter-spacing:-0.790560px;}
.ls1b{letter-spacing:-0.658800px;}
.ls1a{letter-spacing:-0.527040px;}
.lsb{letter-spacing:-0.461160px;}
.ls5{letter-spacing:-0.263520px;}
.lsa{letter-spacing:-0.197640px;}
.ls9{letter-spacing:-0.131760px;}
.ls4{letter-spacing:-0.065880px;}
.lsf{letter-spacing:-0.056880px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.065880px;}
.ls0{letter-spacing:0.197640px;}
.ls13{letter-spacing:0.263520px;}
.ls16{letter-spacing:0.329400px;}
.ls14{letter-spacing:0.395280px;}
.ls10{letter-spacing:0.527040px;}
.ls12{letter-spacing:1.185840px;}
.ls17{letter-spacing:1.515240px;}
.ls7{letter-spacing:2.964600px;}
.ls11{letter-spacing:3.689280px;}
.ls2{letter-spacing:4.677480px;}
.ls8{letter-spacing:5.138640px;}
.lse{letter-spacing:10.145520px;}
.ls15{letter-spacing:15.218280px;}
.ls6{letter-spacing:675.180000px;}
.lsd{letter-spacing:768.412080px;}
.lsc{letter-spacing:850.526640px;}
.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;}
}
.ws48{word-spacing:-65.945880px;}
.ws47{word-spacing:-16.997040px;}
.ws66{word-spacing:-16.865280px;}
.ws0{word-spacing:-16.667640px;}
.ws3{word-spacing:-16.535880px;}
.ws1{word-spacing:-16.470000px;}
.ws2{word-spacing:-16.404120px;}
.ws2a{word-spacing:-16.338240px;}
.ws29{word-spacing:-16.272360px;}
.ws2b{word-spacing:-16.008840px;}
.ws64{word-spacing:-15.811200px;}
.ws65{word-spacing:-15.679440px;}
.ws46{word-spacing:-14.163120px;}
.ws28{word-spacing:-13.500000px;}
.ws9{word-spacing:-0.197640px;}
.wsa{word-spacing:-0.131760px;}
.ws1f{word-spacing:-0.065880px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:0.065880px;}
.ws14{word-spacing:0.131760px;}
.ws2c{word-spacing:0.170640px;}
.ws4a{word-spacing:0.197640px;}
.ws7{word-spacing:0.263520px;}
.ws4c{word-spacing:0.461160px;}
.ws4e{word-spacing:0.527040px;}
.ws34{word-spacing:0.592920px;}
.ws6d{word-spacing:0.658800px;}
.ws68{word-spacing:0.790560px;}
.wsf{word-spacing:0.856440px;}
.ws3f{word-spacing:0.988200px;}
.ws40{word-spacing:1.251720px;}
.ws2d{word-spacing:1.317600px;}
.ws70{word-spacing:1.449360px;}
.ws3a{word-spacing:1.581120px;}
.ws4d{word-spacing:1.712880px;}
.ws1e{word-spacing:1.976400px;}
.ws58{word-spacing:2.042280px;}
.ws16{word-spacing:2.305800px;}
.ws43{word-spacing:2.437560px;}
.wsb{word-spacing:2.701080px;}
.ws1b{word-spacing:2.766960px;}
.wsd{word-spacing:3.030480px;}
.ws3c{word-spacing:3.162240px;}
.ws13{word-spacing:3.425760px;}
.ws26{word-spacing:3.491640px;}
.ws38{word-spacing:3.623400px;}
.ws25{word-spacing:3.755160px;}
.ws3e{word-spacing:3.886920px;}
.ws10{word-spacing:4.150440px;}
.ws11{word-spacing:4.216320px;}
.ws1c{word-spacing:4.479840px;}
.ws63{word-spacing:4.545720px;}
.ws69{word-spacing:4.611600px;}
.ws5d{word-spacing:4.809240px;}
.ws33{word-spacing:4.941000px;}
.ws1a{word-spacing:5.204520px;}
.ws5a{word-spacing:5.270400px;}
.ws59{word-spacing:5.468040px;}
.ws45{word-spacing:5.533920px;}
.ws12{word-spacing:5.665680px;}
.ws49{word-spacing:5.929200px;}
.ws60{word-spacing:5.995080px;}
.wse{word-spacing:6.258600px;}
.ws15{word-spacing:6.390360px;}
.ws8{word-spacing:6.653880px;}
.ws39{word-spacing:6.719760px;}
.ws17{word-spacing:6.983280px;}
.ws51{word-spacing:7.115040px;}
.ws23{word-spacing:7.378560px;}
.ws2f{word-spacing:7.444440px;}
.ws24{word-spacing:7.707960px;}
.ws62{word-spacing:7.839720px;}
.ws41{word-spacing:8.103240px;}
.ws31{word-spacing:8.564400px;}
.ws32{word-spacing:8.827920px;}
.ws6a{word-spacing:8.893800px;}
.ws5e{word-spacing:9.157320px;}
.ws42{word-spacing:9.223200px;}
.ws57{word-spacing:9.486720px;}
.ws4b{word-spacing:9.618480px;}
.ws44{word-spacing:9.882000px;}
.ws5{word-spacing:9.947880px;}
.ws6{word-spacing:10.211400px;}
.ws3d{word-spacing:10.343160px;}
.ws6e{word-spacing:10.606680px;}
.ws5b{word-spacing:10.672560px;}
.ws36{word-spacing:10.804320px;}
.ws35{word-spacing:10.936080px;}
.ws6b{word-spacing:11.067840px;}
.ws6c{word-spacing:11.331360px;}
.ws30{word-spacing:11.660760px;}
.ws5f{word-spacing:11.792520px;}
.ws19{word-spacing:12.056040px;}
.ws53{word-spacing:12.121920px;}
.ws54{word-spacing:12.385440px;}
.ws27{word-spacing:12.517200px;}
.ws52{word-spacing:12.780720px;}
.ws5c{word-spacing:12.846600px;}
.ws20{word-spacing:13.110120px;}
.ws21{word-spacing:13.241880px;}
.ws67{word-spacing:13.505400px;}
.ws4f{word-spacing:13.571280px;}
.ws2e{word-spacing:13.834800px;}
.ws61{word-spacing:13.966560px;}
.ws37{word-spacing:14.230080px;}
.ws55{word-spacing:14.295960px;}
.ws1d{word-spacing:14.559480px;}
.ws22{word-spacing:14.625360px;}
.ws50{word-spacing:14.888880px;}
.ws6f{word-spacing:15.284160px;}
.ws56{word-spacing:17.458200px;}
.ws3b{word-spacing:17.787600px;}
.ws18{word-spacing:18.907560px;}
._0{margin-left:-1.251720px;}
._1{width:1.251720px;}
._3{width:2.898720px;}
._9{width:4.809240px;}
._6{width:6.390360px;}
._4{width:7.576200px;}
._a{width:9.750240px;}
._7{width:11.067840px;}
._8{width:12.319560px;}
._5{width:13.834800px;}
._2{width:14.954760px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:67.406580px;}
.y56{bottom:67.439520px;}
.y2b{bottom:67.488930px;}
.y55{bottom:86.165910px;}
.y2a{bottom:86.215320px;}
.yb5{bottom:86.314140px;}
.y54{bottom:104.974650px;}
.y29{bottom:105.024060px;}
.yb4{bottom:105.304050px;}
.y53{bottom:123.701040px;}
.y28{bottom:123.750450px;}
.yb3{bottom:124.211610px;}
.y76{bottom:142.427430px;}
.y27{bottom:143.185050px;}
.yb2{bottom:143.201520px;}
.y52{bottom:145.392030px;}
.y75{bottom:161.236170px;}
.y26{bottom:161.911440px;}
.yb1{bottom:162.109080px;}
.y51{bottom:164.200770px;}
.y74{bottom:179.962560px;}
.y25{bottom:180.637830px;}
.yb0{bottom:181.016640px;}
.y50{bottom:182.927160px;}
.y73{bottom:198.688950px;}
.y24{bottom:199.446570px;}
.yaf{bottom:200.006550px;}
.y4f{bottom:201.653550px;}
.y72{bottom:217.497690px;}
.y23{bottom:218.172960px;}
.yae{bottom:218.914110px;}
.y8b{bottom:219.474090px;}
.y4e{bottom:220.462290px;}
.y71{bottom:236.224080px;}
.y22{bottom:236.899350px;}
.yad{bottom:237.821670px;}
.y8a{bottom:238.200480px;}
.y4d{bottom:239.188680px;}
.y70{bottom:254.950470px;}
.y21{bottom:255.708090px;}
.yac{bottom:256.811580px;}
.y89{bottom:256.926870px;}
.y4c{bottom:257.915070px;}
.y6f{bottom:273.759210px;}
.y20{bottom:275.060340px;}
.yab{bottom:275.719140px;}
.y88{bottom:275.735610px;}
.y4b{bottom:276.723810px;}
.y6e{bottom:292.485600px;}
.y1f{bottom:293.869080px;}
.y87{bottom:294.462000px;}
.yaa{bottom:294.709050px;}
.y4a{bottom:295.450200px;}
.y6d{bottom:311.211990px;}
.y1e{bottom:312.595470px;}
.y86{bottom:313.188390px;}
.ya9{bottom:313.616610px;}
.y49{bottom:314.176590px;}
.y1d{bottom:331.321860px;}
.y6c{bottom:331.997130px;}
.ya8{bottom:332.524170px;}
.y96{bottom:332.985330px;}
.y48{bottom:335.867580px;}
.y1c{bottom:350.130600px;}
.y6b{bottom:350.723520px;}
.ya7{bottom:351.514080px;}
.y95{bottom:351.711720px;}
.y47{bottom:354.676320px;}
.y1b{bottom:368.856990px;}
.y6a{bottom:369.449910px;}
.ya6{bottom:370.421640px;}
.y94{bottom:370.438110px;}
.y85{bottom:371.426310px;}
.y46{bottom:373.402710px;}
.y1a{bottom:387.583380px;}
.y69{bottom:388.258650px;}
.y93{bottom:389.246850px;}
.ya5{bottom:389.411550px;}
.y84{bottom:390.235050px;}
.y45{bottom:392.129100px;}
.y19{bottom:406.392120px;}
.y68{bottom:406.985040px;}
.y92{bottom:407.973240px;}
.ya4{bottom:408.319110px;}
.y83{bottom:408.961440px;}
.y44{bottom:410.937840px;}
.y18{bottom:425.118510px;}
.y67{bottom:425.711430px;}
.y91{bottom:426.699630px;}
.ya3{bottom:427.226670px;}
.y82{bottom:427.687830px;}
.y43{bottom:429.664230px;}
.y17{bottom:443.844900px;}
.y66{bottom:444.520170px;}
.y90{bottom:445.508370px;}
.ya2{bottom:446.216580px;}
.y81{bottom:446.496570px;}
.y42{bottom:448.390620px;}
.y16{bottom:462.653640px;}
.y65{bottom:463.246560px;}
.y8f{bottom:464.234760px;}
.ya1{bottom:465.124140px;}
.y80{bottom:465.222960px;}
.y41{bottom:467.199360px;}
.y15{bottom:481.380030px;}
.y64{bottom:481.972950px;}
.y8e{bottom:482.961150px;}
.y7f{bottom:483.949350px;}
.ya0{bottom:484.114050px;}
.y40{bottom:485.925750px;}
.y14{bottom:500.106420px;}
.y63{bottom:500.781690px;}
.y8d{bottom:501.769890px;}
.y7e{bottom:502.758090px;}
.y9f{bottom:503.021610px;}
.y3f{bottom:504.652140px;}
.y13{bottom:518.915160px;}
.y62{bottom:519.508080px;}
.y8c{bottom:520.496280px;}
.y7d{bottom:521.484480px;}
.y9e{bottom:521.929170px;}
.y3e{bottom:523.460880px;}
.y12{bottom:537.641550px;}
.y61{bottom:538.234470px;}
.y7c{bottom:540.210870px;}
.y9d{bottom:540.919080px;}
.y3d{bottom:542.187270px;}
.y11{bottom:557.076150px;}
.y60{bottom:559.019610px;}
.y9c{bottom:559.826640px;}
.y3c{bottom:560.913660px;}
.y10{bottom:575.802540px;}
.y5f{bottom:577.746000px;}
.y9b{bottom:578.816550px;}
.y3b{bottom:579.722400px;}
.yf{bottom:594.528930px;}
.y5e{bottom:596.472390px;}
.y9a{bottom:597.724110px;}
.y3a{bottom:598.448790px;}
.ye{bottom:613.337670px;}
.y5d{bottom:615.281130px;}
.y99{bottom:616.631670px;}
.y39{bottom:617.175180px;}
.yd{bottom:632.064060px;}
.y5c{bottom:634.007520px;}
.y98{bottom:635.621580px;}
.y38{bottom:635.983920px;}
.yc{bottom:650.790450px;}
.y5b{bottom:652.733910px;}
.y97{bottom:654.529140px;}
.y37{bottom:654.710310px;}
.yb{bottom:669.599190px;}
.y5a{bottom:671.542650px;}
.y36{bottom:673.436700px;}
.ya{bottom:688.325580px;}
.y59{bottom:690.269040px;}
.y35{bottom:692.245440px;}
.y9{bottom:707.051970px;}
.y58{bottom:708.995430px;}
.y34{bottom:710.971830px;}
.y8{bottom:726.486570px;}
.y57{bottom:727.804170px;}
.y33{bottom:729.698220px;}
.y7{bottom:745.921170px;}
.y7b{bottom:746.530560px;}
.y32{bottom:748.506960px;}
.y6{bottom:764.647560px;}
.y7a{bottom:765.256950px;}
.y31{bottom:767.233350px;}
.y5{bottom:783.373950px;}
.y79{bottom:784.065690px;}
.y30{bottom:785.959740px;}
.y78{bottom:802.792080px;}
.y4{bottom:802.808550px;}
.y2f{bottom:804.768480px;}
.y77{bottom:821.518470px;}
.y3{bottom:822.243150px;}
.y2e{bottom:823.494870px;}
.y2{bottom:841.595400px;}
.y2d{bottom:842.221260px;}
.y1{bottom:861.030000px;}
.y2c{bottom:914.220000px;}
.h4{height:50.519883px;}
.h5{height:52.458223px;}
.h2{height:57.805840px;}
.h3{height:57.966680px;}
.h1{height:978.000000px;}
.h0{height:978.120000px;}
.w1{width:680.250000px;}
.w0{width:680.400000px;}
.x0{left:0.000000px;}
.x1{left:95.670000px;}
.x2{left:127.522980px;}
.x3{left:467.833140px;}
.x4{left:584.654850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.761280pt;}
.ls18{letter-spacing:-0.702720pt;}
.ls1b{letter-spacing:-0.585600pt;}
.ls1a{letter-spacing:-0.468480pt;}
.lsb{letter-spacing:-0.409920pt;}
.ls5{letter-spacing:-0.234240pt;}
.lsa{letter-spacing:-0.175680pt;}
.ls9{letter-spacing:-0.117120pt;}
.ls4{letter-spacing:-0.058560pt;}
.lsf{letter-spacing:-0.050560pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.058560pt;}
.ls0{letter-spacing:0.175680pt;}
.ls13{letter-spacing:0.234240pt;}
.ls16{letter-spacing:0.292800pt;}
.ls14{letter-spacing:0.351360pt;}
.ls10{letter-spacing:0.468480pt;}
.ls12{letter-spacing:1.054080pt;}
.ls17{letter-spacing:1.346880pt;}
.ls7{letter-spacing:2.635200pt;}
.ls11{letter-spacing:3.279360pt;}
.ls2{letter-spacing:4.157760pt;}
.ls8{letter-spacing:4.567680pt;}
.lse{letter-spacing:9.018240pt;}
.ls15{letter-spacing:13.527360pt;}
.ls6{letter-spacing:600.160000pt;}
.lsd{letter-spacing:683.032960pt;}
.lsc{letter-spacing:756.023680pt;}
.ws48{word-spacing:-58.618560pt;}
.ws47{word-spacing:-15.108480pt;}
.ws66{word-spacing:-14.991360pt;}
.ws0{word-spacing:-14.815680pt;}
.ws3{word-spacing:-14.698560pt;}
.ws1{word-spacing:-14.640000pt;}
.ws2{word-spacing:-14.581440pt;}
.ws2a{word-spacing:-14.522880pt;}
.ws29{word-spacing:-14.464320pt;}
.ws2b{word-spacing:-14.230080pt;}
.ws64{word-spacing:-14.054400pt;}
.ws65{word-spacing:-13.937280pt;}
.ws46{word-spacing:-12.589440pt;}
.ws28{word-spacing:-12.000000pt;}
.ws9{word-spacing:-0.175680pt;}
.wsa{word-spacing:-0.117120pt;}
.ws1f{word-spacing:-0.058560pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:0.058560pt;}
.ws14{word-spacing:0.117120pt;}
.ws2c{word-spacing:0.151680pt;}
.ws4a{word-spacing:0.175680pt;}
.ws7{word-spacing:0.234240pt;}
.ws4c{word-spacing:0.409920pt;}
.ws4e{word-spacing:0.468480pt;}
.ws34{word-spacing:0.527040pt;}
.ws6d{word-spacing:0.585600pt;}
.ws68{word-spacing:0.702720pt;}
.wsf{word-spacing:0.761280pt;}
.ws3f{word-spacing:0.878400pt;}
.ws40{word-spacing:1.112640pt;}
.ws2d{word-spacing:1.171200pt;}
.ws70{word-spacing:1.288320pt;}
.ws3a{word-spacing:1.405440pt;}
.ws4d{word-spacing:1.522560pt;}
.ws1e{word-spacing:1.756800pt;}
.ws58{word-spacing:1.815360pt;}
.ws16{word-spacing:2.049600pt;}
.ws43{word-spacing:2.166720pt;}
.wsb{word-spacing:2.400960pt;}
.ws1b{word-spacing:2.459520pt;}
.wsd{word-spacing:2.693760pt;}
.ws3c{word-spacing:2.810880pt;}
.ws13{word-spacing:3.045120pt;}
.ws26{word-spacing:3.103680pt;}
.ws38{word-spacing:3.220800pt;}
.ws25{word-spacing:3.337920pt;}
.ws3e{word-spacing:3.455040pt;}
.ws10{word-spacing:3.689280pt;}
.ws11{word-spacing:3.747840pt;}
.ws1c{word-spacing:3.982080pt;}
.ws63{word-spacing:4.040640pt;}
.ws69{word-spacing:4.099200pt;}
.ws5d{word-spacing:4.274880pt;}
.ws33{word-spacing:4.392000pt;}
.ws1a{word-spacing:4.626240pt;}
.ws5a{word-spacing:4.684800pt;}
.ws59{word-spacing:4.860480pt;}
.ws45{word-spacing:4.919040pt;}
.ws12{word-spacing:5.036160pt;}
.ws49{word-spacing:5.270400pt;}
.ws60{word-spacing:5.328960pt;}
.wse{word-spacing:5.563200pt;}
.ws15{word-spacing:5.680320pt;}
.ws8{word-spacing:5.914560pt;}
.ws39{word-spacing:5.973120pt;}
.ws17{word-spacing:6.207360pt;}
.ws51{word-spacing:6.324480pt;}
.ws23{word-spacing:6.558720pt;}
.ws2f{word-spacing:6.617280pt;}
.ws24{word-spacing:6.851520pt;}
.ws62{word-spacing:6.968640pt;}
.ws41{word-spacing:7.202880pt;}
.ws31{word-spacing:7.612800pt;}
.ws32{word-spacing:7.847040pt;}
.ws6a{word-spacing:7.905600pt;}
.ws5e{word-spacing:8.139840pt;}
.ws42{word-spacing:8.198400pt;}
.ws57{word-spacing:8.432640pt;}
.ws4b{word-spacing:8.549760pt;}
.ws44{word-spacing:8.784000pt;}
.ws5{word-spacing:8.842560pt;}
.ws6{word-spacing:9.076800pt;}
.ws3d{word-spacing:9.193920pt;}
.ws6e{word-spacing:9.428160pt;}
.ws5b{word-spacing:9.486720pt;}
.ws36{word-spacing:9.603840pt;}
.ws35{word-spacing:9.720960pt;}
.ws6b{word-spacing:9.838080pt;}
.ws6c{word-spacing:10.072320pt;}
.ws30{word-spacing:10.365120pt;}
.ws5f{word-spacing:10.482240pt;}
.ws19{word-spacing:10.716480pt;}
.ws53{word-spacing:10.775040pt;}
.ws54{word-spacing:11.009280pt;}
.ws27{word-spacing:11.126400pt;}
.ws52{word-spacing:11.360640pt;}
.ws5c{word-spacing:11.419200pt;}
.ws20{word-spacing:11.653440pt;}
.ws21{word-spacing:11.770560pt;}
.ws67{word-spacing:12.004800pt;}
.ws4f{word-spacing:12.063360pt;}
.ws2e{word-spacing:12.297600pt;}
.ws61{word-spacing:12.414720pt;}
.ws37{word-spacing:12.648960pt;}
.ws55{word-spacing:12.707520pt;}
.ws1d{word-spacing:12.941760pt;}
.ws22{word-spacing:13.000320pt;}
.ws50{word-spacing:13.234560pt;}
.ws6f{word-spacing:13.585920pt;}
.ws56{word-spacing:15.518400pt;}
.ws3b{word-spacing:15.811200pt;}
.ws18{word-spacing:16.806720pt;}
._0{margin-left:-1.112640pt;}
._1{width:1.112640pt;}
._3{width:2.576640pt;}
._9{width:4.274880pt;}
._6{width:5.680320pt;}
._4{width:6.734400pt;}
._a{width:8.666880pt;}
._7{width:9.838080pt;}
._8{width:10.950720pt;}
._5{width:12.297600pt;}
._2{width:13.293120pt;}
.fs2{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:59.916960pt;}
.y56{bottom:59.946240pt;}
.y2b{bottom:59.990160pt;}
.y55{bottom:76.591920pt;}
.y2a{bottom:76.635840pt;}
.yb5{bottom:76.723680pt;}
.y54{bottom:93.310800pt;}
.y29{bottom:93.354720pt;}
.yb4{bottom:93.603600pt;}
.y53{bottom:109.956480pt;}
.y28{bottom:110.000400pt;}
.yb3{bottom:110.410320pt;}
.y76{bottom:126.602160pt;}
.y27{bottom:127.275600pt;}
.yb2{bottom:127.290240pt;}
.y52{bottom:129.237360pt;}
.y75{bottom:143.321040pt;}
.y26{bottom:143.921280pt;}
.yb1{bottom:144.096960pt;}
.y51{bottom:145.956240pt;}
.y74{bottom:159.966720pt;}
.y25{bottom:160.566960pt;}
.yb0{bottom:160.903680pt;}
.y50{bottom:162.601920pt;}
.y73{bottom:176.612400pt;}
.y24{bottom:177.285840pt;}
.yaf{bottom:177.783600pt;}
.y4f{bottom:179.247600pt;}
.y72{bottom:193.331280pt;}
.y23{bottom:193.931520pt;}
.yae{bottom:194.590320pt;}
.y8b{bottom:195.088080pt;}
.y4e{bottom:195.966480pt;}
.y71{bottom:209.976960pt;}
.y22{bottom:210.577200pt;}
.yad{bottom:211.397040pt;}
.y8a{bottom:211.733760pt;}
.y4d{bottom:212.612160pt;}
.y70{bottom:226.622640pt;}
.y21{bottom:227.296080pt;}
.yac{bottom:228.276960pt;}
.y89{bottom:228.379440pt;}
.y4c{bottom:229.257840pt;}
.y6f{bottom:243.341520pt;}
.y20{bottom:244.498080pt;}
.yab{bottom:245.083680pt;}
.y88{bottom:245.098320pt;}
.y4b{bottom:245.976720pt;}
.y6e{bottom:259.987200pt;}
.y1f{bottom:261.216960pt;}
.y87{bottom:261.744000pt;}
.yaa{bottom:261.963600pt;}
.y4a{bottom:262.622400pt;}
.y6d{bottom:276.632880pt;}
.y1e{bottom:277.862640pt;}
.y86{bottom:278.389680pt;}
.ya9{bottom:278.770320pt;}
.y49{bottom:279.268080pt;}
.y1d{bottom:294.508320pt;}
.y6c{bottom:295.108560pt;}
.ya8{bottom:295.577040pt;}
.y96{bottom:295.986960pt;}
.y48{bottom:298.548960pt;}
.y1c{bottom:311.227200pt;}
.y6b{bottom:311.754240pt;}
.ya7{bottom:312.456960pt;}
.y95{bottom:312.632640pt;}
.y47{bottom:315.267840pt;}
.y1b{bottom:327.872880pt;}
.y6a{bottom:328.399920pt;}
.ya6{bottom:329.263680pt;}
.y94{bottom:329.278320pt;}
.y85{bottom:330.156720pt;}
.y46{bottom:331.913520pt;}
.y1a{bottom:344.518560pt;}
.y69{bottom:345.118800pt;}
.y93{bottom:345.997200pt;}
.ya5{bottom:346.143600pt;}
.y84{bottom:346.875600pt;}
.y45{bottom:348.559200pt;}
.y19{bottom:361.237440pt;}
.y68{bottom:361.764480pt;}
.y92{bottom:362.642880pt;}
.ya4{bottom:362.950320pt;}
.y83{bottom:363.521280pt;}
.y44{bottom:365.278080pt;}
.y18{bottom:377.883120pt;}
.y67{bottom:378.410160pt;}
.y91{bottom:379.288560pt;}
.ya3{bottom:379.757040pt;}
.y82{bottom:380.166960pt;}
.y43{bottom:381.923760pt;}
.y17{bottom:394.528800pt;}
.y66{bottom:395.129040pt;}
.y90{bottom:396.007440pt;}
.ya2{bottom:396.636960pt;}
.y81{bottom:396.885840pt;}
.y42{bottom:398.569440pt;}
.y16{bottom:411.247680pt;}
.y65{bottom:411.774720pt;}
.y8f{bottom:412.653120pt;}
.ya1{bottom:413.443680pt;}
.y80{bottom:413.531520pt;}
.y41{bottom:415.288320pt;}
.y15{bottom:427.893360pt;}
.y64{bottom:428.420400pt;}
.y8e{bottom:429.298800pt;}
.y7f{bottom:430.177200pt;}
.ya0{bottom:430.323600pt;}
.y40{bottom:431.934000pt;}
.y14{bottom:444.539040pt;}
.y63{bottom:445.139280pt;}
.y8d{bottom:446.017680pt;}
.y7e{bottom:446.896080pt;}
.y9f{bottom:447.130320pt;}
.y3f{bottom:448.579680pt;}
.y13{bottom:461.257920pt;}
.y62{bottom:461.784960pt;}
.y8c{bottom:462.663360pt;}
.y7d{bottom:463.541760pt;}
.y9e{bottom:463.937040pt;}
.y3e{bottom:465.298560pt;}
.y12{bottom:477.903600pt;}
.y61{bottom:478.430640pt;}
.y7c{bottom:480.187440pt;}
.y9d{bottom:480.816960pt;}
.y3d{bottom:481.944240pt;}
.y11{bottom:495.178800pt;}
.y60{bottom:496.906320pt;}
.y9c{bottom:497.623680pt;}
.y3c{bottom:498.589920pt;}
.y10{bottom:511.824480pt;}
.y5f{bottom:513.552000pt;}
.y9b{bottom:514.503600pt;}
.y3b{bottom:515.308800pt;}
.yf{bottom:528.470160pt;}
.y5e{bottom:530.197680pt;}
.y9a{bottom:531.310320pt;}
.y3a{bottom:531.954480pt;}
.ye{bottom:545.189040pt;}
.y5d{bottom:546.916560pt;}
.y99{bottom:548.117040pt;}
.y39{bottom:548.600160pt;}
.yd{bottom:561.834720pt;}
.y5c{bottom:563.562240pt;}
.y98{bottom:564.996960pt;}
.y38{bottom:565.319040pt;}
.yc{bottom:578.480400pt;}
.y5b{bottom:580.207920pt;}
.y97{bottom:581.803680pt;}
.y37{bottom:581.964720pt;}
.yb{bottom:595.199280pt;}
.y5a{bottom:596.926800pt;}
.y36{bottom:598.610400pt;}
.ya{bottom:611.844960pt;}
.y59{bottom:613.572480pt;}
.y35{bottom:615.329280pt;}
.y9{bottom:628.490640pt;}
.y58{bottom:630.218160pt;}
.y34{bottom:631.974960pt;}
.y8{bottom:645.765840pt;}
.y57{bottom:646.937040pt;}
.y33{bottom:648.620640pt;}
.y7{bottom:663.041040pt;}
.y7b{bottom:663.582720pt;}
.y32{bottom:665.339520pt;}
.y6{bottom:679.686720pt;}
.y7a{bottom:680.228400pt;}
.y31{bottom:681.985200pt;}
.y5{bottom:696.332400pt;}
.y79{bottom:696.947280pt;}
.y30{bottom:698.630880pt;}
.y78{bottom:713.592960pt;}
.y4{bottom:713.607600pt;}
.y2f{bottom:715.349760pt;}
.y77{bottom:730.238640pt;}
.y3{bottom:730.882800pt;}
.y2e{bottom:731.995440pt;}
.y2{bottom:748.084800pt;}
.y2d{bottom:748.641120pt;}
.y1{bottom:765.360000pt;}
.y2c{bottom:812.640000pt;}
.h4{height:44.906562pt;}
.h5{height:46.629531pt;}
.h2{height:51.382969pt;}
.h3{height:51.525937pt;}
.h1{height:869.333333pt;}
.h0{height:869.440000pt;}
.w1{width:604.666667pt;}
.w0{width:604.800000pt;}
.x0{left:0.000000pt;}
.x1{left:85.040000pt;}
.x2{left:113.353760pt;}
.x3{left:415.851680pt;}
.x4{left:519.693200pt;}
}




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