
    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_da71ec958c362d3f9ade2265.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_95b49882ad8ff470fd341ee4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6775f73e72b85afac5421c6c.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v2{vertical-align:-75.579840px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls19{letter-spacing:-2.185920px;}
.ls21{letter-spacing:-2.053440px;}
.ls1f{letter-spacing:-1.854720px;}
.ls16{letter-spacing:-1.324800px;}
.ls20{letter-spacing:-1.126080px;}
.ls15{letter-spacing:-0.728640px;}
.ls14{letter-spacing:-0.596160px;}
.ls18{letter-spacing:-0.463680px;}
.ls13{letter-spacing:-0.397440px;}
.ls12{letter-spacing:-0.331200px;}
.ls17{letter-spacing:-0.264960px;}
.ls11{letter-spacing:-0.240480px;}
.lsf{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.059760px;}
.lse{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.132480px;}
.ls1e{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.264960px;}
.ls4{letter-spacing:0.331200px;}
.ls1a{letter-spacing:0.358560px;}
.ls10{letter-spacing:0.378000px;}
.lsc{letter-spacing:1.391040px;}
.lsb{letter-spacing:1.457280px;}
.ls5{letter-spacing:2.848320px;}
.ls6{letter-spacing:3.841920px;}
.lsd{letter-spacing:5.431680px;}
.ls1c{letter-spacing:6.491520px;}
.ls9{letter-spacing:6.690240px;}
.ls7{letter-spacing:8.611200px;}
.ls1d{letter-spacing:15.566400px;}
.ls1{letter-spacing:20.865600px;}
.ls2{letter-spacing:21.594240px;}
.ls8{letter-spacing:38.154240px;}
.ls1b{letter-spacing:56.900160px;}
.ls0{letter-spacing:437.051520px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.891200px;}
.ws4{word-spacing:-16.692480px;}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.295040px;}
.ws5{word-spacing:-16.228800px;}
.ws1{word-spacing:-16.162560px;}
.ws7{word-spacing:-16.096320px;}
.ws33{word-spacing:-15.963840px;}
.ws34{word-spacing:-15.433920px;}
.ws36{word-spacing:-14.880240px;}
.ws0{word-spacing:-10.440000px;}
.ws35{word-spacing:-9.720000px;}
.ws13{word-spacing:-0.861120px;}
.wse{word-spacing:-0.331200px;}
.wsb{word-spacing:-0.216000px;}
.ws52{word-spacing:-0.179280px;}
.ws11{word-spacing:-0.132480px;}
.ws8{word-spacing:0.000000px;}
.wsc{word-spacing:0.240480px;}
.wsd{word-spacing:0.331200px;}
.ws19{word-spacing:0.397440px;}
.ws25{word-spacing:0.596160px;}
.ws2f{word-spacing:0.728640px;}
.ws1d{word-spacing:1.324800px;}
.ws30{word-spacing:1.457280px;}
.ws45{word-spacing:1.854720px;}
.ws4a{word-spacing:2.053440px;}
.ws31{word-spacing:2.185920px;}
.ws3f{word-spacing:2.583360px;}
.ws17{word-spacing:2.782080px;}
.ws18{word-spacing:3.643200px;}
.ws38{word-spacing:3.974400px;}
.ws46{word-spacing:4.173120px;}
.ws32{word-spacing:4.901760px;}
.ws1c{word-spacing:5.431680px;}
.ws40{word-spacing:5.630400px;}
.ws3d{word-spacing:5.762880px;}
.ws22{word-spacing:6.359040px;}
.ws2e{word-spacing:6.491520px;}
.ws21{word-spacing:7.220160px;}
.ws43{word-spacing:7.816320px;}
.ws23{word-spacing:7.948800px;}
.wsa{word-spacing:8.100000px;}
.ws9{word-spacing:8.208000px;}
.ws1e{word-spacing:8.478720px;}
.ws37{word-spacing:8.844480px;}
.ws29{word-spacing:10.797120px;}
.ws4b{word-spacing:11.194560px;}
.ws3e{word-spacing:11.393280px;}
.ws44{word-spacing:13.380480px;}
.ws28{word-spacing:13.711680px;}
.ws3a{word-spacing:14.241600px;}
.ws4d{word-spacing:14.374080px;}
.ws2b{word-spacing:16.957440px;}
.ws3c{word-spacing:17.156160px;}
.ws4f{word-spacing:17.884800px;}
.ws49{word-spacing:18.017280px;}
.ws48{word-spacing:18.613440px;}
.ws4c{word-spacing:20.733120px;}
.ws39{word-spacing:20.865600px;}
.ws10{word-spacing:22.190400px;}
.ws3b{word-spacing:22.322880px;}
.ws14{word-spacing:23.647680px;}
.ws15{word-spacing:24.376320px;}
.ws24{word-spacing:25.899840px;}
.ws47{word-spacing:26.628480px;}
.ws2d{word-spacing:27.224640px;}
.ws50{word-spacing:28.681920px;}
.ws2a{word-spacing:31.331520px;}
.ws20{word-spacing:32.060160px;}
.ws51{word-spacing:33.120000px;}
.wsf{word-spacing:34.444800px;}
.ws27{word-spacing:35.173440px;}
.ws26{word-spacing:35.305920px;}
.ws12{word-spacing:36.564480px;}
.ws1f{word-spacing:38.021760px;}
.ws1b{word-spacing:38.882880px;}
.ws1a{word-spacing:39.280320px;}
.ws2c{word-spacing:40.340160px;}
.ws41{word-spacing:40.936320px;}
.ws16{word-spacing:45.374400px;}
.ws4e{word-spacing:47.229120px;}
.ws42{word-spacing:72.599040px;}
._0{margin-left:-7.452000px;}
._2{margin-left:-1.728000px;}
._1{width:1.404000px;}
._6{width:3.166560px;}
._a{width:5.022720px;}
._9{width:6.232320px;}
._10{width:7.835040px;}
._c{width:9.332640px;}
._5{width:10.627200px;}
._4{width:12.127680px;}
._16{width:13.433760px;}
._22{width:14.976000px;}
._1d{width:17.769600px;}
._e{width:18.878400px;}
._3{width:20.900160px;}
._7{width:22.057920px;}
._13{width:23.256000px;}
._d{width:24.531840px;}
._1a{width:26.488800px;}
._17{width:27.754560px;}
._23{width:29.018880px;}
._b{width:30.072960px;}
._19{width:31.939200px;}
._18{width:33.197760px;}
._14{width:35.498880px;}
._8{width:36.835200px;}
._1e{width:40.086720px;}
._15{width:41.135040px;}
._1b{width:42.459840px;}
._f{width:46.234080px;}
._11{width:48.355200px;}
._12{width:49.625280px;}
._1c{width:56.370240px;}
._1f{width:95.385600px;}
._20{width:96.390720px;}
._21{width:113.474880px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.780000px;}
.ya0{bottom:90.584640px;}
.y38{bottom:99.013680px;}
.y9f{bottom:109.479600px;}
.yd6{bottom:117.540000px;}
.y37{bottom:118.090800px;}
.y67{bottom:118.289520px;}
.y9e{bottom:128.374560px;}
.yd5{bottom:128.606400px;}
.y36{bottom:136.985760px;}
.y66{bottom:137.184480px;}
.y9d{bottom:147.451680px;}
.yd4{bottom:147.683520px;}
.y35{bottom:156.062880px;}
.y65{bottom:156.261600px;}
.y9c{bottom:166.346640px;}
.yd3{bottom:166.578480px;}
.y34{bottom:174.957840px;}
.y64{bottom:175.156560px;}
.y9b{bottom:185.423760px;}
.yd2{bottom:185.655600px;}
.y33{bottom:194.034960px;}
.y63{bottom:194.233680px;}
.y9a{bottom:204.318720px;}
.yd1{bottom:204.550560px;}
.y32{bottom:212.929920px;}
.y62{bottom:213.128640px;}
.y99{bottom:223.213680px;}
.yd0{bottom:223.445520px;}
.y31{bottom:231.824880px;}
.y61{bottom:232.023600px;}
.y98{bottom:242.290800px;}
.ycf{bottom:242.522640px;}
.y30{bottom:250.902000px;}
.y60{bottom:251.100720px;}
.y97{bottom:261.185760px;}
.yce{bottom:261.417600px;}
.y2f{bottom:269.796960px;}
.y5f{bottom:269.995680px;}
.y96{bottom:280.262880px;}
.ycd{bottom:280.494720px;}
.y2e{bottom:288.874080px;}
.y5e{bottom:289.072800px;}
.y95{bottom:299.157840px;}
.ycc{bottom:299.389680px;}
.y2d{bottom:307.769040px;}
.y5d{bottom:307.967760px;}
.y94{bottom:318.052800px;}
.ycb{bottom:318.284640px;}
.y2c{bottom:326.664000px;}
.y5c{bottom:326.862720px;}
.y93{bottom:337.129920px;}
.yca{bottom:337.361760px;}
.y2b{bottom:345.741120px;}
.y5b{bottom:345.939840px;}
.y92{bottom:356.024880px;}
.yc9{bottom:356.256720px;}
.y2a{bottom:364.636080px;}
.y5a{bottom:364.834800px;}
.y91{bottom:375.102000px;}
.yc8{bottom:375.333840px;}
.y29{bottom:383.713200px;}
.y59{bottom:383.911920px;}
.y90{bottom:393.996960px;}
.yc7{bottom:394.228800px;}
.y28{bottom:402.608160px;}
.y58{bottom:402.806880px;}
.y8f{bottom:413.074080px;}
.yc6{bottom:413.305920px;}
.y27{bottom:421.503120px;}
.y57{bottom:421.701840px;}
.y8e{bottom:431.969040px;}
.yc5{bottom:432.200880px;}
.y26{bottom:440.580240px;}
.y56{bottom:440.778960px;}
.y8d{bottom:450.864000px;}
.yc4{bottom:451.095840px;}
.y25{bottom:459.475200px;}
.y55{bottom:459.673920px;}
.y8c{bottom:469.941120px;}
.yc3{bottom:470.172960px;}
.y24{bottom:478.552320px;}
.y54{bottom:478.751040px;}
.y8b{bottom:488.836080px;}
.yc2{bottom:489.067920px;}
.y23{bottom:497.447280px;}
.y53{bottom:497.646000px;}
.y8a{bottom:507.913200px;}
.yc1{bottom:508.145040px;}
.y22{bottom:516.342240px;}
.y52{bottom:516.540960px;}
.y89{bottom:526.808160px;}
.yc0{bottom:527.040000px;}
.y21{bottom:535.419360px;}
.y51{bottom:535.618080px;}
.y88{bottom:545.703120px;}
.ybf{bottom:545.934960px;}
.y20{bottom:554.314320px;}
.y50{bottom:554.513040px;}
.y87{bottom:564.780240px;}
.ybe{bottom:565.012080px;}
.y1f{bottom:573.391440px;}
.y4f{bottom:573.590160px;}
.y86{bottom:583.675200px;}
.ybd{bottom:583.907040px;}
.y1e{bottom:592.286400px;}
.y4e{bottom:592.485120px;}
.y85{bottom:602.752320px;}
.ybc{bottom:602.984160px;}
.y1d{bottom:611.363520px;}
.y4d{bottom:611.562240px;}
.y84{bottom:621.647280px;}
.ybb{bottom:621.879120px;}
.y1c{bottom:630.258480px;}
.y4c{bottom:630.457200px;}
.y83{bottom:640.542240px;}
.yba{bottom:640.774080px;}
.y1b{bottom:649.153440px;}
.y4b{bottom:649.352160px;}
.y82{bottom:659.619360px;}
.yb9{bottom:659.851200px;}
.y1a{bottom:668.230560px;}
.y4a{bottom:668.429280px;}
.y81{bottom:678.514320px;}
.yb8{bottom:678.746160px;}
.y19{bottom:687.125520px;}
.y49{bottom:687.324240px;}
.y80{bottom:697.591440px;}
.yb7{bottom:697.823280px;}
.y18{bottom:706.202640px;}
.y48{bottom:706.401360px;}
.y7f{bottom:716.486400px;}
.yb6{bottom:716.718240px;}
.y17{bottom:725.097600px;}
.y47{bottom:725.296320px;}
.y7e{bottom:735.381360px;}
.yb5{bottom:735.613200px;}
.y16{bottom:743.992560px;}
.y46{bottom:744.191280px;}
.y7d{bottom:754.458480px;}
.yb4{bottom:754.690320px;}
.y15{bottom:763.069680px;}
.y45{bottom:763.268400px;}
.y7c{bottom:773.353440px;}
.yb3{bottom:773.585280px;}
.y14{bottom:781.964640px;}
.y44{bottom:782.163360px;}
.y7b{bottom:792.430560px;}
.yb2{bottom:792.662400px;}
.y13{bottom:801.041760px;}
.y43{bottom:801.240480px;}
.y7a{bottom:811.325520px;}
.yb1{bottom:811.557360px;}
.y12{bottom:819.936720px;}
.y42{bottom:820.135440px;}
.y79{bottom:830.220480px;}
.yb0{bottom:830.452320px;}
.y11{bottom:838.831680px;}
.y41{bottom:839.030400px;}
.y78{bottom:849.297600px;}
.yaf{bottom:849.529440px;}
.y10{bottom:857.908800px;}
.y40{bottom:858.107520px;}
.y77{bottom:868.192560px;}
.yae{bottom:868.424400px;}
.yf{bottom:876.803760px;}
.y3f{bottom:877.002480px;}
.y76{bottom:887.269680px;}
.yad{bottom:887.501520px;}
.ye{bottom:895.880880px;}
.y3e{bottom:896.079600px;}
.y75{bottom:906.164640px;}
.yac{bottom:906.396480px;}
.yd{bottom:914.775840px;}
.y3d{bottom:914.974560px;}
.y74{bottom:925.241760px;}
.yab{bottom:925.473600px;}
.yc{bottom:933.670800px;}
.y3c{bottom:933.869520px;}
.y73{bottom:944.136720px;}
.yaa{bottom:944.368560px;}
.yb{bottom:952.747920px;}
.y3b{bottom:952.946640px;}
.y72{bottom:963.031680px;}
.ya9{bottom:963.263520px;}
.ya{bottom:971.642880px;}
.y3a{bottom:971.841600px;}
.y71{bottom:982.108800px;}
.ya8{bottom:982.340640px;}
.y9{bottom:990.720000px;}
.y39{bottom:990.918720px;}
.y70{bottom:1001.003760px;}
.ya7{bottom:1001.235600px;}
.y8{bottom:1010.160000px;}
.y6f{bottom:1020.080880px;}
.ya6{bottom:1020.312720px;}
.y6e{bottom:1038.975840px;}
.ya5{bottom:1039.207680px;}
.y7{bottom:1049.220000px;}
.y6d{bottom:1057.870800px;}
.ya4{bottom:1058.102640px;}
.y6{bottom:1067.940360px;}
.y6c{bottom:1076.947920px;}
.ya3{bottom:1077.179760px;}
.y5{bottom:1085.225940px;}
.y6b{bottom:1095.842880px;}
.ya2{bottom:1096.074720px;}
.y4{bottom:1105.380000px;}
.y6a{bottom:1114.920000px;}
.ya1{bottom:1115.151840px;}
.y69{bottom:1133.460000px;}
.y2{bottom:1136.520000px;}
.y68{bottom:1152.900000px;}
.y1{bottom:1154.340000px;}
.h9{height:38.158594px;}
.h2{height:52.998047px;}
.h7{height:57.992344px;}
.h3{height:58.651172px;}
.h8{height:65.010937px;}
.h6{height:70.664062px;}
.h5{height:71.225156px;}
.h4{height:121.179375px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.500000px;}
.x3{left:103.320000px;}
.x2{left:446.400000px;}
.x4{left:461.247840px;}
.x5{left:488.075040px;}
@media print{
.v2{vertical-align:-67.182080pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls19{letter-spacing:-1.943040pt;}
.ls21{letter-spacing:-1.825280pt;}
.ls1f{letter-spacing:-1.648640pt;}
.ls16{letter-spacing:-1.177600pt;}
.ls20{letter-spacing:-1.000960pt;}
.ls15{letter-spacing:-0.647680pt;}
.ls14{letter-spacing:-0.529920pt;}
.ls18{letter-spacing:-0.412160pt;}
.ls13{letter-spacing:-0.353280pt;}
.ls12{letter-spacing:-0.294400pt;}
.ls17{letter-spacing:-0.235520pt;}
.ls11{letter-spacing:-0.213760pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.053120pt;}
.lse{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.117760pt;}
.ls1e{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.235520pt;}
.ls4{letter-spacing:0.294400pt;}
.ls1a{letter-spacing:0.318720pt;}
.ls10{letter-spacing:0.336000pt;}
.lsc{letter-spacing:1.236480pt;}
.lsb{letter-spacing:1.295360pt;}
.ls5{letter-spacing:2.531840pt;}
.ls6{letter-spacing:3.415040pt;}
.lsd{letter-spacing:4.828160pt;}
.ls1c{letter-spacing:5.770240pt;}
.ls9{letter-spacing:5.946880pt;}
.ls7{letter-spacing:7.654400pt;}
.ls1d{letter-spacing:13.836800pt;}
.ls1{letter-spacing:18.547200pt;}
.ls2{letter-spacing:19.194880pt;}
.ls8{letter-spacing:33.914880pt;}
.ls1b{letter-spacing:50.577920pt;}
.ls0{letter-spacing:388.490240pt;}
.ws2{word-spacing:-15.014400pt;}
.ws4{word-spacing:-14.837760pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.484480pt;}
.ws5{word-spacing:-14.425600pt;}
.ws1{word-spacing:-14.366720pt;}
.ws7{word-spacing:-14.307840pt;}
.ws33{word-spacing:-14.190080pt;}
.ws34{word-spacing:-13.719040pt;}
.ws36{word-spacing:-13.226880pt;}
.ws0{word-spacing:-9.280000pt;}
.ws35{word-spacing:-8.640000pt;}
.ws13{word-spacing:-0.765440pt;}
.wse{word-spacing:-0.294400pt;}
.wsb{word-spacing:-0.192000pt;}
.ws52{word-spacing:-0.159360pt;}
.ws11{word-spacing:-0.117760pt;}
.ws8{word-spacing:0.000000pt;}
.wsc{word-spacing:0.213760pt;}
.wsd{word-spacing:0.294400pt;}
.ws19{word-spacing:0.353280pt;}
.ws25{word-spacing:0.529920pt;}
.ws2f{word-spacing:0.647680pt;}
.ws1d{word-spacing:1.177600pt;}
.ws30{word-spacing:1.295360pt;}
.ws45{word-spacing:1.648640pt;}
.ws4a{word-spacing:1.825280pt;}
.ws31{word-spacing:1.943040pt;}
.ws3f{word-spacing:2.296320pt;}
.ws17{word-spacing:2.472960pt;}
.ws18{word-spacing:3.238400pt;}
.ws38{word-spacing:3.532800pt;}
.ws46{word-spacing:3.709440pt;}
.ws32{word-spacing:4.357120pt;}
.ws1c{word-spacing:4.828160pt;}
.ws40{word-spacing:5.004800pt;}
.ws3d{word-spacing:5.122560pt;}
.ws22{word-spacing:5.652480pt;}
.ws2e{word-spacing:5.770240pt;}
.ws21{word-spacing:6.417920pt;}
.ws43{word-spacing:6.947840pt;}
.ws23{word-spacing:7.065600pt;}
.wsa{word-spacing:7.200000pt;}
.ws9{word-spacing:7.296000pt;}
.ws1e{word-spacing:7.536640pt;}
.ws37{word-spacing:7.861760pt;}
.ws29{word-spacing:9.597440pt;}
.ws4b{word-spacing:9.950720pt;}
.ws3e{word-spacing:10.127360pt;}
.ws44{word-spacing:11.893760pt;}
.ws28{word-spacing:12.188160pt;}
.ws3a{word-spacing:12.659200pt;}
.ws4d{word-spacing:12.776960pt;}
.ws2b{word-spacing:15.073280pt;}
.ws3c{word-spacing:15.249920pt;}
.ws4f{word-spacing:15.897600pt;}
.ws49{word-spacing:16.015360pt;}
.ws48{word-spacing:16.545280pt;}
.ws4c{word-spacing:18.429440pt;}
.ws39{word-spacing:18.547200pt;}
.ws10{word-spacing:19.724800pt;}
.ws3b{word-spacing:19.842560pt;}
.ws14{word-spacing:21.020160pt;}
.ws15{word-spacing:21.667840pt;}
.ws24{word-spacing:23.022080pt;}
.ws47{word-spacing:23.669760pt;}
.ws2d{word-spacing:24.199680pt;}
.ws50{word-spacing:25.495040pt;}
.ws2a{word-spacing:27.850240pt;}
.ws20{word-spacing:28.497920pt;}
.ws51{word-spacing:29.440000pt;}
.wsf{word-spacing:30.617600pt;}
.ws27{word-spacing:31.265280pt;}
.ws26{word-spacing:31.383040pt;}
.ws12{word-spacing:32.501760pt;}
.ws1f{word-spacing:33.797120pt;}
.ws1b{word-spacing:34.562560pt;}
.ws1a{word-spacing:34.915840pt;}
.ws2c{word-spacing:35.857920pt;}
.ws41{word-spacing:36.387840pt;}
.ws16{word-spacing:40.332800pt;}
.ws4e{word-spacing:41.981440pt;}
.ws42{word-spacing:64.532480pt;}
._0{margin-left:-6.624000pt;}
._2{margin-left:-1.536000pt;}
._1{width:1.248000pt;}
._6{width:2.814720pt;}
._a{width:4.464640pt;}
._9{width:5.539840pt;}
._10{width:6.964480pt;}
._c{width:8.295680pt;}
._5{width:9.446400pt;}
._4{width:10.780160pt;}
._16{width:11.941120pt;}
._22{width:13.312000pt;}
._1d{width:15.795200pt;}
._e{width:16.780800pt;}
._3{width:18.577920pt;}
._7{width:19.607040pt;}
._13{width:20.672000pt;}
._d{width:21.806080pt;}
._1a{width:23.545600pt;}
._17{width:24.670720pt;}
._23{width:25.794560pt;}
._b{width:26.731520pt;}
._19{width:28.390400pt;}
._18{width:29.509120pt;}
._14{width:31.554560pt;}
._8{width:32.742400pt;}
._1e{width:35.632640pt;}
._15{width:36.564480pt;}
._1b{width:37.742080pt;}
._f{width:41.096960pt;}
._11{width:42.982400pt;}
._12{width:44.111360pt;}
._1c{width:50.106880pt;}
._1f{width:84.787200pt;}
._20{width:85.680640pt;}
._21{width:100.866560pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.360000pt;}
.ya0{bottom:80.519680pt;}
.y38{bottom:88.012160pt;}
.y9f{bottom:97.315200pt;}
.yd6{bottom:104.480000pt;}
.y37{bottom:104.969600pt;}
.y67{bottom:105.146240pt;}
.y9e{bottom:114.110720pt;}
.yd5{bottom:114.316800pt;}
.y36{bottom:121.765120pt;}
.y66{bottom:121.941760pt;}
.y9d{bottom:131.068160pt;}
.yd4{bottom:131.274240pt;}
.y35{bottom:138.722560pt;}
.y65{bottom:138.899200pt;}
.y9c{bottom:147.863680pt;}
.yd3{bottom:148.069760pt;}
.y34{bottom:155.518080pt;}
.y64{bottom:155.694720pt;}
.y9b{bottom:164.821120pt;}
.yd2{bottom:165.027200pt;}
.y33{bottom:172.475520pt;}
.y63{bottom:172.652160pt;}
.y9a{bottom:181.616640pt;}
.yd1{bottom:181.822720pt;}
.y32{bottom:189.271040pt;}
.y62{bottom:189.447680pt;}
.y99{bottom:198.412160pt;}
.yd0{bottom:198.618240pt;}
.y31{bottom:206.066560pt;}
.y61{bottom:206.243200pt;}
.y98{bottom:215.369600pt;}
.ycf{bottom:215.575680pt;}
.y30{bottom:223.024000pt;}
.y60{bottom:223.200640pt;}
.y97{bottom:232.165120pt;}
.yce{bottom:232.371200pt;}
.y2f{bottom:239.819520pt;}
.y5f{bottom:239.996160pt;}
.y96{bottom:249.122560pt;}
.ycd{bottom:249.328640pt;}
.y2e{bottom:256.776960pt;}
.y5e{bottom:256.953600pt;}
.y95{bottom:265.918080pt;}
.ycc{bottom:266.124160pt;}
.y2d{bottom:273.572480pt;}
.y5d{bottom:273.749120pt;}
.y94{bottom:282.713600pt;}
.ycb{bottom:282.919680pt;}
.y2c{bottom:290.368000pt;}
.y5c{bottom:290.544640pt;}
.y93{bottom:299.671040pt;}
.yca{bottom:299.877120pt;}
.y2b{bottom:307.325440pt;}
.y5b{bottom:307.502080pt;}
.y92{bottom:316.466560pt;}
.yc9{bottom:316.672640pt;}
.y2a{bottom:324.120960pt;}
.y5a{bottom:324.297600pt;}
.y91{bottom:333.424000pt;}
.yc8{bottom:333.630080pt;}
.y29{bottom:341.078400pt;}
.y59{bottom:341.255040pt;}
.y90{bottom:350.219520pt;}
.yc7{bottom:350.425600pt;}
.y28{bottom:357.873920pt;}
.y58{bottom:358.050560pt;}
.y8f{bottom:367.176960pt;}
.yc6{bottom:367.383040pt;}
.y27{bottom:374.669440pt;}
.y57{bottom:374.846080pt;}
.y8e{bottom:383.972480pt;}
.yc5{bottom:384.178560pt;}
.y26{bottom:391.626880pt;}
.y56{bottom:391.803520pt;}
.y8d{bottom:400.768000pt;}
.yc4{bottom:400.974080pt;}
.y25{bottom:408.422400pt;}
.y55{bottom:408.599040pt;}
.y8c{bottom:417.725440pt;}
.yc3{bottom:417.931520pt;}
.y24{bottom:425.379840pt;}
.y54{bottom:425.556480pt;}
.y8b{bottom:434.520960pt;}
.yc2{bottom:434.727040pt;}
.y23{bottom:442.175360pt;}
.y53{bottom:442.352000pt;}
.y8a{bottom:451.478400pt;}
.yc1{bottom:451.684480pt;}
.y22{bottom:458.970880pt;}
.y52{bottom:459.147520pt;}
.y89{bottom:468.273920pt;}
.yc0{bottom:468.480000pt;}
.y21{bottom:475.928320pt;}
.y51{bottom:476.104960pt;}
.y88{bottom:485.069440pt;}
.ybf{bottom:485.275520pt;}
.y20{bottom:492.723840pt;}
.y50{bottom:492.900480pt;}
.y87{bottom:502.026880pt;}
.ybe{bottom:502.232960pt;}
.y1f{bottom:509.681280pt;}
.y4f{bottom:509.857920pt;}
.y86{bottom:518.822400pt;}
.ybd{bottom:519.028480pt;}
.y1e{bottom:526.476800pt;}
.y4e{bottom:526.653440pt;}
.y85{bottom:535.779840pt;}
.ybc{bottom:535.985920pt;}
.y1d{bottom:543.434240pt;}
.y4d{bottom:543.610880pt;}
.y84{bottom:552.575360pt;}
.ybb{bottom:552.781440pt;}
.y1c{bottom:560.229760pt;}
.y4c{bottom:560.406400pt;}
.y83{bottom:569.370880pt;}
.yba{bottom:569.576960pt;}
.y1b{bottom:577.025280pt;}
.y4b{bottom:577.201920pt;}
.y82{bottom:586.328320pt;}
.yb9{bottom:586.534400pt;}
.y1a{bottom:593.982720pt;}
.y4a{bottom:594.159360pt;}
.y81{bottom:603.123840pt;}
.yb8{bottom:603.329920pt;}
.y19{bottom:610.778240pt;}
.y49{bottom:610.954880pt;}
.y80{bottom:620.081280pt;}
.yb7{bottom:620.287360pt;}
.y18{bottom:627.735680pt;}
.y48{bottom:627.912320pt;}
.y7f{bottom:636.876800pt;}
.yb6{bottom:637.082880pt;}
.y17{bottom:644.531200pt;}
.y47{bottom:644.707840pt;}
.y7e{bottom:653.672320pt;}
.yb5{bottom:653.878400pt;}
.y16{bottom:661.326720pt;}
.y46{bottom:661.503360pt;}
.y7d{bottom:670.629760pt;}
.yb4{bottom:670.835840pt;}
.y15{bottom:678.284160pt;}
.y45{bottom:678.460800pt;}
.y7c{bottom:687.425280pt;}
.yb3{bottom:687.631360pt;}
.y14{bottom:695.079680pt;}
.y44{bottom:695.256320pt;}
.y7b{bottom:704.382720pt;}
.yb2{bottom:704.588800pt;}
.y13{bottom:712.037120pt;}
.y43{bottom:712.213760pt;}
.y7a{bottom:721.178240pt;}
.yb1{bottom:721.384320pt;}
.y12{bottom:728.832640pt;}
.y42{bottom:729.009280pt;}
.y79{bottom:737.973760pt;}
.yb0{bottom:738.179840pt;}
.y11{bottom:745.628160pt;}
.y41{bottom:745.804800pt;}
.y78{bottom:754.931200pt;}
.yaf{bottom:755.137280pt;}
.y10{bottom:762.585600pt;}
.y40{bottom:762.762240pt;}
.y77{bottom:771.726720pt;}
.yae{bottom:771.932800pt;}
.yf{bottom:779.381120pt;}
.y3f{bottom:779.557760pt;}
.y76{bottom:788.684160pt;}
.yad{bottom:788.890240pt;}
.ye{bottom:796.338560pt;}
.y3e{bottom:796.515200pt;}
.y75{bottom:805.479680pt;}
.yac{bottom:805.685760pt;}
.yd{bottom:813.134080pt;}
.y3d{bottom:813.310720pt;}
.y74{bottom:822.437120pt;}
.yab{bottom:822.643200pt;}
.yc{bottom:829.929600pt;}
.y3c{bottom:830.106240pt;}
.y73{bottom:839.232640pt;}
.yaa{bottom:839.438720pt;}
.yb{bottom:846.887040pt;}
.y3b{bottom:847.063680pt;}
.y72{bottom:856.028160pt;}
.ya9{bottom:856.234240pt;}
.ya{bottom:863.682560pt;}
.y3a{bottom:863.859200pt;}
.y71{bottom:872.985600pt;}
.ya8{bottom:873.191680pt;}
.y9{bottom:880.640000pt;}
.y39{bottom:880.816640pt;}
.y70{bottom:889.781120pt;}
.ya7{bottom:889.987200pt;}
.y8{bottom:897.920000pt;}
.y6f{bottom:906.738560pt;}
.ya6{bottom:906.944640pt;}
.y6e{bottom:923.534080pt;}
.ya5{bottom:923.740160pt;}
.y7{bottom:932.640000pt;}
.y6d{bottom:940.329600pt;}
.ya4{bottom:940.535680pt;}
.y6{bottom:949.280320pt;}
.y6c{bottom:957.287040pt;}
.ya3{bottom:957.493120pt;}
.y5{bottom:964.645280pt;}
.y6b{bottom:974.082560pt;}
.ya2{bottom:974.288640pt;}
.y4{bottom:982.560000pt;}
.y6a{bottom:991.040000pt;}
.ya1{bottom:991.246080pt;}
.y69{bottom:1007.520000pt;}
.y2{bottom:1010.240000pt;}
.y68{bottom:1024.800000pt;}
.y1{bottom:1026.080000pt;}
.h9{height:33.918750pt;}
.h2{height:47.109375pt;}
.h7{height:51.548750pt;}
.h3{height:52.134375pt;}
.h8{height:57.787500pt;}
.h6{height:62.812500pt;}
.h5{height:63.311250pt;}
.h4{height:107.715000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.000000pt;}
.x3{left:91.840000pt;}
.x2{left:396.800000pt;}
.x4{left:409.998080pt;}
.x5{left:433.844480pt;}
}




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