
    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_b068f9f2f0ce9669348913c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.211914;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_4689d3396962ab12702e6bf0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.211914;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_cccc2b555ce918c19c84e1da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f811cdbf8be01f841b7cd429.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_01ce8cbd34e42b9a86a59126.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_023bb49d555160f0b0b776fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_ec1c97b9c087fbbe24c91c15.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.279600px;}
.lsc{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.126000px;}
.ls15{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.036000px;}
.ls16{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.027840px;}
.ls7{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.152400px;}
.ls9{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.223920px;}
.ls1{letter-spacing:0.228960px;}
.ls17{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.324000px;}
.lse{letter-spacing:0.342000px;}
.lsa{letter-spacing:0.391800px;}
.ls12{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.558000px;}
.ls1b{letter-spacing:0.684000px;}
.ls2{letter-spacing:0.872640px;}
.ls6{letter-spacing:5.292000px;}
.ls11{letter-spacing:11.628000px;}
.ls5{letter-spacing:28.188000px;}
.ls19{letter-spacing:67.788000px;}
.ls10{letter-spacing:849.108000px;}
.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;}
}
.ws8{word-spacing:-54.072000px;}
.ws5{word-spacing:-54.000000px;}
.ws3{word-spacing:-21.427320px;}
.ws0{word-spacing:-21.233520px;}
.ws2{word-spacing:-21.187920px;}
.ws1{word-spacing:-21.035520px;}
.ws10{word-spacing:-19.566000px;}
.wsb{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.350000px;}
.wsf{word-spacing:-19.332000px;}
.wsc{word-spacing:-19.314000px;}
.wsd{word-spacing:-19.026000px;}
.ws4{word-spacing:-19.008000px;}
.wsa{word-spacing:-18.954000px;}
.wse{word-spacing:-18.882000px;}
.ws11{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.468000px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-7.800000px;}
._7{margin-left:-4.158000px;}
._3{margin-left:-2.160000px;}
._2{margin-left:-1.026000px;}
._0{width:1.091520px;}
._1{width:2.996400px;}
._9{width:4.104000px;}
._f{width:5.239440px;}
._a{width:6.372000px;}
._b{width:7.398000px;}
._6{width:8.922000px;}
._5{width:9.990000px;}
._d{width:12.420000px;}
._c{width:14.094000px;}
._15{width:15.421440px;}
._8{width:16.686000px;}
._16{width:17.934480px;}
._17{width:20.556960px;}
._e{width:26.082000px;}
._4{width:30.618000px;}
._10{width:52.056000px;}
._14{width:104.448000px;}
._11{width:363.887760px;}
._12{width:848.304480px;}
.fc3{color:transparent;}
.fc1{color:rgb(20,65,150);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.ya8{bottom:-13.425000px;}
.y0{bottom:0.000000px;}
.y86{bottom:0.435000px;}
.yb{bottom:2.520000px;}
.y80{bottom:2.805000px;}
.y4a{bottom:2.880000px;}
.y9a{bottom:3.885000px;}
.y8d{bottom:4.290000px;}
.y82{bottom:4.425000px;}
.y88{bottom:4.470000px;}
.y8b{bottom:5.370000px;}
.yaf{bottom:5.616000px;}
.yaa{bottom:5.655000px;}
.yad{bottom:5.796000px;}
.y9d{bottom:5.865000px;}
.y49{bottom:6.120000px;}
.ya7{bottom:6.195000px;}
.yb1{bottom:6.300000px;}
.ya5{bottom:6.555000px;}
.y9f{bottom:6.585000px;}
.ya3{bottom:6.915000px;}
.ya1{bottom:7.125000px;}
.y3f{bottom:7.635000px;}
.y84{bottom:7.815000px;}
.yb3{bottom:11.880000px;}
.y58{bottom:20.880000px;}
.yac{bottom:22.176000px;}
.y3e{bottom:24.015000px;}
.y9c{bottom:25.710000px;}
.yb6{bottom:25.920000px;}
.y57{bottom:37.260000px;}
.y9{bottom:39.276000px;}
.y5e{bottom:43.200000px;}
.y66{bottom:53.640000px;}
.y56{bottom:59.760000px;}
.y5d{bottom:65.700000px;}
.y65{bottom:70.200000px;}
.y55{bottom:76.140000px;}
.ycb{bottom:79.020000px;}
.yab{bottom:81.900000px;}
.y5c{bottom:82.080000px;}
.y52{bottom:82.125000px;}
.y7e{bottom:92.016000px;}
.y6b{bottom:92.520000px;}
.y64{bottom:92.550000px;}
.y53{bottom:92.565000px;}
.y25{bottom:92.736000px;}
.yca{bottom:95.400000px;}
.y5f{bottom:98.460000px;}
.y51{bottom:98.505000px;}
.y5b{bottom:104.580000px;}
.y63{bottom:108.930000px;}
.y24{bottom:112.536000px;}
.y6a{bottom:114.840000px;}
.y62{bottom:114.870000px;}
.y50{bottom:114.885000px;}
.yae{bottom:117.720000px;}
.y7d{bottom:120.096000px;}
.y5a{bottom:120.960000px;}
.y69{bottom:131.400000px;}
.y61{bottom:131.430000px;}
.y54{bottom:131.445000px;}
.y23{bottom:132.156000px;}
.y4f{bottom:137.385000px;}
.y7c{bottom:139.716000px;}
.yc9{bottom:146.340000px;}
.y68{bottom:147.780000px;}
.y22{bottom:151.770000px;}
.y4e{bottom:153.765000px;}
.y7b{bottom:159.330000px;}
.y4d{bottom:170.145000px;}
.y21{bottom:171.570000px;}
.yc8{bottom:171.720000px;}
.y7a{bottom:179.130000px;}
.y4c{bottom:186.525000px;}
.y20{bottom:191.190000px;}
.yc7{bottom:197.100000px;}
.y79{bottom:198.750000px;}
.y3c{bottom:203.970000px;}
.yc6{bottom:213.510000px;}
.y78{bottom:218.370000px;}
.y1f{bottom:228.810000px;}
.yc5{bottom:238.890000px;}
.y3b{bottom:241.770000px;}
.y77{bottom:246.450000px;}
.yc4{bottom:255.450000px;}
.ycf{bottom:261.390000px;}
.y1e{bottom:266.610000px;}
.yce{bottom:278.850000px;}
.y3a{bottom:279.390000px;}
.yc3{bottom:280.830000px;}
.y76{bottom:284.115000px;}
.y1d{bottom:286.275000px;}
.y83{bottom:298.260000px;}
.y39{bottom:299.235000px;}
.y1c{bottom:306.075000px;}
.yc2{bottom:306.210000px;}
.y47{bottom:311.835000px;}
.ycd{bottom:315.075000px;}
.y38{bottom:318.855000px;}
.y85{bottom:324.540000px;}
.y1b{bottom:325.695000px;}
.y67{bottom:326.055000px;}
.yc1{bottom:331.590000px;}
.y37{bottom:338.475000px;}
.y1a{bottom:345.315000px;}
.ycc{bottom:352.875000px;}
.yc0{bottom:356.970000px;}
.y36{bottom:358.275000px;}
.y19{bottom:365.115000px;}
.yb7{bottom:367.095000px;}
.y98{bottom:369.975000px;}
.ybf{bottom:373.350000px;}
.y18{bottom:384.735000px;}
.y35{bottom:386.895000px;}
.ybe{bottom:389.730000px;}
.y97{bottom:397.875000px;}
.y17{bottom:404.355000px;}
.ybd{bottom:406.290000px;}
.y34{bottom:406.515000px;}
.y16{bottom:424.155000px;}
.y96{bottom:425.775000px;}
.y33{bottom:426.315000px;}
.ybc{bottom:431.670000px;}
.y15{bottom:443.775000px;}
.y95{bottom:445.575000px;}
.y32{bottom:445.935000px;}
.ybb{bottom:457.050000px;}
.y31{bottom:465.735000px;}
.y3d{bottom:470.520000px;}
.yba{bottom:473.430000px;}
.ya2{bottom:478.980000px;}
.y60{bottom:488.055000px;}
.yb9{bottom:489.855000px;}
.y30{bottom:494.355000px;}
.ya4{bottom:498.600000px;}
.ya6{bottom:498.960000px;}
.ya9{bottom:499.500000px;}
.yb8{bottom:506.235000px;}
.y2f{bottom:513.975000px;}
.y75{bottom:527.475000px;}
.y2e{bottom:533.775000px;}
.y74{bottom:547.095000px;}
.y2d{bottom:553.395000px;}
.y73{bottom:566.925000px;}
.y2c{bottom:573.045000px;}
.y72{bottom:586.545000px;}
.y2b{bottom:592.845000px;}
.y71{bottom:606.165000px;}
.y2a{bottom:612.465000px;}
.y70{bottom:625.965000px;}
.y59{bottom:633.705000px;}
.y29{bottom:641.265000px;}
.y6f{bottom:645.585000px;}
.y14{bottom:659.265000px;}
.y28{bottom:660.885000px;}
.y6e{bottom:665.205000px;}
.y13{bottom:678.885000px;}
.y27{bottom:680.505000px;}
.y6d{bottom:693.285000px;}
.y12{bottom:698.505000px;}
.y26{bottom:700.305000px;}
.y11{bottom:718.305000px;}
.y6c{bottom:722.985000px;}
.y94{bottom:732.345000px;}
.y10{bottom:737.925000px;}
.y7f{bottom:742.320000px;}
.yf{bottom:757.725000px;}
.y81{bottom:759.600000px;}
.y93{bottom:760.245000px;}
.y4b{bottom:768.885000px;}
.ye{bottom:777.345000px;}
.yd{bottom:796.965000px;}
.y92{bottom:798.045000px;}
.y99{bottom:817.380000px;}
.ya0{bottom:833.760000px;}
.y9e{bottom:834.300000px;}
.yc{bottom:834.765000px;}
.y9b{bottom:835.920000px;}
.ya{bottom:858.930000px;}
.yb5{bottom:896.550000px;}
.yb4{bottom:960.270000px;}
.y8c{bottom:963.180000px;}
.y48{bottom:969.810000px;}
.yb2{bottom:974.490000px;}
.y8a{bottom:980.640000px;}
.y89{bottom:981.540000px;}
.y87{bottom:987.480000px;}
.y46{bottom:1005.090000px;}
.y45{bottom:1021.470000px;}
.y44{bottom:1037.850000px;}
.y8{bottom:1039.110000px;}
.yb0{bottom:1051.350000px;}
.y7{bottom:1072.410000px;}
.y43{bottom:1075.650000px;}
.y42{bottom:1095.270000px;}
.y91{bottom:1096.530000px;}
.y6{bottom:1113.990000px;}
.y41{bottom:1115.070000px;}
.y90{bottom:1116.150000px;}
.y5{bottom:1132.380000px;}
.y8f{bottom:1144.080000px;}
.y40{bottom:1148.400000px;}
.y4{bottom:1150.560000px;}
.y3{bottom:1168.740000px;}
.y8e{bottom:1176.480000px;}
.y2{bottom:1186.920000px;}
.y1{bottom:1205.280000px;}
.h16{height:5.762813px;}
.h12{height:14.220000px;}
.hf{height:16.380000px;}
.h17{height:17.640000px;}
.h15{height:17.820000px;}
.h10{height:18.000000px;}
.h13{height:18.180000px;}
.h14{height:18.900000px;}
.h1e{height:19.260000px;}
.h20{height:19.440000px;}
.h21{height:19.800000px;}
.h1d{height:19.980000px;}
.h1a{height:20.160000px;}
.h1c{height:20.700000px;}
.h1b{height:20.880000px;}
.ha{height:21.240000px;}
.h11{height:21.600000px;}
.h5{height:28.980000px;}
.h1f{height:35.820000px;}
.h9{height:37.620000px;}
.h18{height:39.240000px;}
.h23{height:39.420000px;}
.h8{height:41.291016px;}
.h25{height:48.263555px;}
.h6{height:50.312812px;}
.h4{height:54.026367px;}
.h19{height:54.170437px;}
.h7{height:56.320312px;}
.h2{height:59.789180px;}
.h22{height:76.140000px;}
.h3{height:108.052734px;}
.hc{height:134.460000px;}
.hd{height:144.936000px;}
.he{height:161.280000px;}
.hb{height:200.010000px;}
.h24{height:528.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:84.456000px;}
.wd{width:153.540000px;}
.w6{width:171.030000px;}
.w12{width:189.000000px;}
.w14{width:190.080000px;}
.wb{width:195.840000px;}
.wf{width:200.160000px;}
.we{width:201.420000px;}
.w13{width:203.220000px;}
.wa{width:210.600000px;}
.w19{width:213.840000px;}
.w7{width:244.830000px;}
.w16{width:244.980000px;}
.w17{width:265.680000px;}
.wc{width:273.600000px;}
.w3{width:274.530000px;}
.w8{width:308.595000px;}
.w4{width:373.140000px;}
.w18{width:407.340000px;}
.w15{width:464.400000px;}
.w9{width:545.400000px;}
.w10{width:551.700000px;}
.w11{width:591.300000px;}
.w1a{width:805.650000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:4.320000px;}
.x30{left:8.100000px;}
.x25{left:9.750000px;}
.x1c{left:10.830000px;}
.x29{left:12.165000px;}
.x17{left:17.100000px;}
.x7{left:42.479987px;}
.x2a{left:43.740000px;}
.x6{left:55.259987px;}
.x12{left:58.134000px;}
.x1a{left:80.819987px;}
.x19{left:82.079987px;}
.xb{left:85.499987px;}
.x16{left:91.980000px;}
.x18{left:93.455987px;}
.x14{left:104.940000px;}
.xa{left:117.765000px;}
.x11{left:126.936000px;}
.x2b{left:132.840000px;}
.x26{left:139.395000px;}
.x24{left:150.840000px;}
.x1b{left:170.100000px;}
.x1d{left:204.300000px;}
.x23{left:222.300000px;}
.x2e{left:242.640000px;}
.x21{left:249.300000px;}
.x13{left:297.975000px;}
.x1f{left:309.780000px;}
.x8{left:325.694987px;}
.x2c{left:346.320000px;}
.x27{left:349.560000px;}
.x4{left:420.554987px;}
.x20{left:430.200000px;}
.x2f{left:436.500000px;}
.x2{left:465.194987px;}
.xd{left:473.144987px;}
.xf{left:475.124987px;}
.xe{left:485.924987px;}
.xc{left:515.624987px;}
.x22{left:522.900000px;}
.x1e{left:527.220000px;}
.x15{left:542.805000px;}
.x3{left:550.544987px;}
.x28{left:552.600000px;}
.x9{left:574.305000px;}
.x2d{left:585.000000px;}
.x1{left:744.269987px;}
.x5{left:850.499987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.248533pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.112000pt;}
.ls15{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.032000pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.024747pt;}
.ls7{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.135467pt;}
.ls9{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.199040pt;}
.ls1{letter-spacing:0.203520pt;}
.ls17{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.304000pt;}
.lsa{letter-spacing:0.348267pt;}
.ls12{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.496000pt;}
.ls1b{letter-spacing:0.608000pt;}
.ls2{letter-spacing:0.775680pt;}
.ls6{letter-spacing:4.704000pt;}
.ls11{letter-spacing:10.336000pt;}
.ls5{letter-spacing:25.056000pt;}
.ls19{letter-spacing:60.256000pt;}
.ls10{letter-spacing:754.762667pt;}
.ws8{word-spacing:-48.064000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws3{word-spacing:-19.046507pt;}
.ws0{word-spacing:-18.874240pt;}
.ws2{word-spacing:-18.833707pt;}
.ws1{word-spacing:-18.698240pt;}
.ws10{word-spacing:-17.392000pt;}
.wsb{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.200000pt;}
.wsf{word-spacing:-17.184000pt;}
.wsc{word-spacing:-17.168000pt;}
.wsd{word-spacing:-16.912000pt;}
.ws4{word-spacing:-16.896000pt;}
.wsa{word-spacing:-16.848000pt;}
.wse{word-spacing:-16.784000pt;}
.ws11{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.416000pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-6.933333pt;}
._7{margin-left:-3.696000pt;}
._3{margin-left:-1.920000pt;}
._2{margin-left:-0.912000pt;}
._0{width:0.970240pt;}
._1{width:2.663467pt;}
._9{width:3.648000pt;}
._f{width:4.657280pt;}
._a{width:5.664000pt;}
._b{width:6.576000pt;}
._6{width:7.930667pt;}
._5{width:8.880000pt;}
._d{width:11.040000pt;}
._c{width:12.528000pt;}
._15{width:13.707947pt;}
._8{width:14.832000pt;}
._16{width:15.941760pt;}
._17{width:18.272853pt;}
._e{width:23.184000pt;}
._4{width:27.216000pt;}
._10{width:46.272000pt;}
._14{width:92.842667pt;}
._11{width:323.455787pt;}
._12{width:754.048427pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.ya8{bottom:-11.933333pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:0.386667pt;}
.yb{bottom:2.240000pt;}
.y80{bottom:2.493333pt;}
.y4a{bottom:2.560000pt;}
.y9a{bottom:3.453333pt;}
.y8d{bottom:3.813333pt;}
.y82{bottom:3.933333pt;}
.y88{bottom:3.973333pt;}
.y8b{bottom:4.773333pt;}
.yaf{bottom:4.992000pt;}
.yaa{bottom:5.026667pt;}
.yad{bottom:5.152000pt;}
.y9d{bottom:5.213333pt;}
.y49{bottom:5.440000pt;}
.ya7{bottom:5.506667pt;}
.yb1{bottom:5.600000pt;}
.ya5{bottom:5.826667pt;}
.y9f{bottom:5.853333pt;}
.ya3{bottom:6.146667pt;}
.ya1{bottom:6.333333pt;}
.y3f{bottom:6.786667pt;}
.y84{bottom:6.946667pt;}
.yb3{bottom:10.560000pt;}
.y58{bottom:18.560000pt;}
.yac{bottom:19.712000pt;}
.y3e{bottom:21.346667pt;}
.y9c{bottom:22.853333pt;}
.yb6{bottom:23.040000pt;}
.y57{bottom:33.120000pt;}
.y9{bottom:34.912000pt;}
.y5e{bottom:38.400000pt;}
.y66{bottom:47.680000pt;}
.y56{bottom:53.120000pt;}
.y5d{bottom:58.400000pt;}
.y65{bottom:62.400000pt;}
.y55{bottom:67.680000pt;}
.ycb{bottom:70.240000pt;}
.yab{bottom:72.800000pt;}
.y5c{bottom:72.960000pt;}
.y52{bottom:73.000000pt;}
.y7e{bottom:81.792000pt;}
.y6b{bottom:82.240000pt;}
.y64{bottom:82.266667pt;}
.y53{bottom:82.280000pt;}
.y25{bottom:82.432000pt;}
.yca{bottom:84.800000pt;}
.y5f{bottom:87.520000pt;}
.y51{bottom:87.560000pt;}
.y5b{bottom:92.960000pt;}
.y63{bottom:96.826667pt;}
.y24{bottom:100.032000pt;}
.y6a{bottom:102.080000pt;}
.y62{bottom:102.106667pt;}
.y50{bottom:102.120000pt;}
.yae{bottom:104.640000pt;}
.y7d{bottom:106.752000pt;}
.y5a{bottom:107.520000pt;}
.y69{bottom:116.800000pt;}
.y61{bottom:116.826667pt;}
.y54{bottom:116.840000pt;}
.y23{bottom:117.472000pt;}
.y4f{bottom:122.120000pt;}
.y7c{bottom:124.192000pt;}
.yc9{bottom:130.080000pt;}
.y68{bottom:131.360000pt;}
.y22{bottom:134.906667pt;}
.y4e{bottom:136.680000pt;}
.y7b{bottom:141.626667pt;}
.y4d{bottom:151.240000pt;}
.y21{bottom:152.506667pt;}
.yc8{bottom:152.640000pt;}
.y7a{bottom:159.226667pt;}
.y4c{bottom:165.800000pt;}
.y20{bottom:169.946667pt;}
.yc7{bottom:175.200000pt;}
.y79{bottom:176.666667pt;}
.y3c{bottom:181.306667pt;}
.yc6{bottom:189.786667pt;}
.y78{bottom:194.106667pt;}
.y1f{bottom:203.386667pt;}
.yc5{bottom:212.346667pt;}
.y3b{bottom:214.906667pt;}
.y77{bottom:219.066667pt;}
.yc4{bottom:227.066667pt;}
.ycf{bottom:232.346667pt;}
.y1e{bottom:236.986667pt;}
.yce{bottom:247.866667pt;}
.y3a{bottom:248.346667pt;}
.yc3{bottom:249.626667pt;}
.y76{bottom:252.546667pt;}
.y1d{bottom:254.466667pt;}
.y83{bottom:265.120000pt;}
.y39{bottom:265.986667pt;}
.y1c{bottom:272.066667pt;}
.yc2{bottom:272.186667pt;}
.y47{bottom:277.186667pt;}
.ycd{bottom:280.066667pt;}
.y38{bottom:283.426667pt;}
.y85{bottom:288.480000pt;}
.y1b{bottom:289.506667pt;}
.y67{bottom:289.826667pt;}
.yc1{bottom:294.746667pt;}
.y37{bottom:300.866667pt;}
.y1a{bottom:306.946667pt;}
.ycc{bottom:313.666667pt;}
.yc0{bottom:317.306667pt;}
.y36{bottom:318.466667pt;}
.y19{bottom:324.546667pt;}
.yb7{bottom:326.306667pt;}
.y98{bottom:328.866667pt;}
.ybf{bottom:331.866667pt;}
.y18{bottom:341.986667pt;}
.y35{bottom:343.906667pt;}
.ybe{bottom:346.426667pt;}
.y97{bottom:353.666667pt;}
.y17{bottom:359.426667pt;}
.ybd{bottom:361.146667pt;}
.y34{bottom:361.346667pt;}
.y16{bottom:377.026667pt;}
.y96{bottom:378.466667pt;}
.y33{bottom:378.946667pt;}
.ybc{bottom:383.706667pt;}
.y15{bottom:394.466667pt;}
.y95{bottom:396.066667pt;}
.y32{bottom:396.386667pt;}
.ybb{bottom:406.266667pt;}
.y31{bottom:413.986667pt;}
.y3d{bottom:418.240000pt;}
.yba{bottom:420.826667pt;}
.ya2{bottom:425.760000pt;}
.y60{bottom:433.826667pt;}
.yb9{bottom:435.426667pt;}
.y30{bottom:439.426667pt;}
.ya4{bottom:443.200000pt;}
.ya6{bottom:443.520000pt;}
.ya9{bottom:444.000000pt;}
.yb8{bottom:449.986667pt;}
.y2f{bottom:456.866667pt;}
.y75{bottom:468.866667pt;}
.y2e{bottom:474.466667pt;}
.y74{bottom:486.306667pt;}
.y2d{bottom:491.906667pt;}
.y73{bottom:503.933333pt;}
.y2c{bottom:509.373333pt;}
.y72{bottom:521.373333pt;}
.y2b{bottom:526.973333pt;}
.y71{bottom:538.813333pt;}
.y2a{bottom:544.413333pt;}
.y70{bottom:556.413333pt;}
.y59{bottom:563.293333pt;}
.y29{bottom:570.013333pt;}
.y6f{bottom:573.853333pt;}
.y14{bottom:586.013333pt;}
.y28{bottom:587.453333pt;}
.y6e{bottom:591.293333pt;}
.y13{bottom:603.453333pt;}
.y27{bottom:604.893333pt;}
.y6d{bottom:616.253333pt;}
.y12{bottom:620.893333pt;}
.y26{bottom:622.493333pt;}
.y11{bottom:638.493333pt;}
.y6c{bottom:642.653333pt;}
.y94{bottom:650.973333pt;}
.y10{bottom:655.933333pt;}
.y7f{bottom:659.840000pt;}
.yf{bottom:673.533333pt;}
.y81{bottom:675.200000pt;}
.y93{bottom:675.773333pt;}
.y4b{bottom:683.453333pt;}
.ye{bottom:690.973333pt;}
.yd{bottom:708.413333pt;}
.y92{bottom:709.373333pt;}
.y99{bottom:726.560000pt;}
.ya0{bottom:741.120000pt;}
.y9e{bottom:741.600000pt;}
.yc{bottom:742.013333pt;}
.y9b{bottom:743.040000pt;}
.ya{bottom:763.493333pt;}
.yb5{bottom:796.933333pt;}
.yb4{bottom:853.573333pt;}
.y8c{bottom:856.160000pt;}
.y48{bottom:862.053333pt;}
.yb2{bottom:866.213333pt;}
.y8a{bottom:871.680000pt;}
.y89{bottom:872.480000pt;}
.y87{bottom:877.760000pt;}
.y46{bottom:893.413333pt;}
.y45{bottom:907.973333pt;}
.y44{bottom:922.533333pt;}
.y8{bottom:923.653333pt;}
.yb0{bottom:934.533333pt;}
.y7{bottom:953.253333pt;}
.y43{bottom:956.133333pt;}
.y42{bottom:973.573333pt;}
.y91{bottom:974.693333pt;}
.y6{bottom:990.213333pt;}
.y41{bottom:991.173333pt;}
.y90{bottom:992.133333pt;}
.y5{bottom:1006.560000pt;}
.y8f{bottom:1016.960000pt;}
.y40{bottom:1020.800000pt;}
.y4{bottom:1022.720000pt;}
.y3{bottom:1038.880000pt;}
.y8e{bottom:1045.760000pt;}
.y2{bottom:1055.040000pt;}
.y1{bottom:1071.360000pt;}
.h16{height:5.122500pt;}
.h12{height:12.640000pt;}
.hf{height:14.560000pt;}
.h17{height:15.680000pt;}
.h15{height:15.840000pt;}
.h10{height:16.000000pt;}
.h13{height:16.160000pt;}
.h14{height:16.800000pt;}
.h1e{height:17.120000pt;}
.h20{height:17.280000pt;}
.h21{height:17.600000pt;}
.h1d{height:17.760000pt;}
.h1a{height:17.920000pt;}
.h1c{height:18.400000pt;}
.h1b{height:18.560000pt;}
.ha{height:18.880000pt;}
.h11{height:19.200000pt;}
.h5{height:25.760000pt;}
.h1f{height:31.840000pt;}
.h9{height:33.440000pt;}
.h18{height:34.880000pt;}
.h23{height:35.040000pt;}
.h8{height:36.703125pt;}
.h25{height:42.900937pt;}
.h6{height:44.722500pt;}
.h4{height:48.023438pt;}
.h19{height:48.151500pt;}
.h7{height:50.062500pt;}
.h2{height:53.145938pt;}
.h22{height:67.680000pt;}
.h3{height:96.046875pt;}
.hc{height:119.520000pt;}
.hd{height:128.832000pt;}
.he{height:143.360000pt;}
.hb{height:177.786667pt;}
.h24{height:469.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:75.072000pt;}
.wd{width:136.480000pt;}
.w6{width:152.026667pt;}
.w12{width:168.000000pt;}
.w14{width:168.960000pt;}
.wb{width:174.080000pt;}
.wf{width:177.920000pt;}
.we{width:179.040000pt;}
.w13{width:180.640000pt;}
.wa{width:187.200000pt;}
.w19{width:190.080000pt;}
.w7{width:217.626667pt;}
.w16{width:217.760000pt;}
.w17{width:236.160000pt;}
.wc{width:243.200000pt;}
.w3{width:244.026667pt;}
.w8{width:274.306667pt;}
.w4{width:331.680000pt;}
.w18{width:362.080000pt;}
.w15{width:412.800000pt;}
.w9{width:484.800000pt;}
.w10{width:490.400000pt;}
.w11{width:525.600000pt;}
.w1a{width:716.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:3.840000pt;}
.x30{left:7.200000pt;}
.x25{left:8.666667pt;}
.x1c{left:9.626667pt;}
.x29{left:10.813333pt;}
.x17{left:15.200000pt;}
.x7{left:37.759988pt;}
.x2a{left:38.880000pt;}
.x6{left:49.119988pt;}
.x12{left:51.674667pt;}
.x1a{left:71.839988pt;}
.x19{left:72.959988pt;}
.xb{left:75.999988pt;}
.x16{left:81.760000pt;}
.x18{left:83.071988pt;}
.x14{left:93.280000pt;}
.xa{left:104.680000pt;}
.x11{left:112.832000pt;}
.x2b{left:118.080000pt;}
.x26{left:123.906667pt;}
.x24{left:134.080000pt;}
.x1b{left:151.200000pt;}
.x1d{left:181.600000pt;}
.x23{left:197.600000pt;}
.x2e{left:215.680000pt;}
.x21{left:221.600000pt;}
.x13{left:264.866667pt;}
.x1f{left:275.360000pt;}
.x8{left:289.506655pt;}
.x2c{left:307.840000pt;}
.x27{left:310.720000pt;}
.x4{left:373.826655pt;}
.x20{left:382.400000pt;}
.x2f{left:388.000000pt;}
.x2{left:413.506655pt;}
.xd{left:420.573322pt;}
.xf{left:422.333322pt;}
.xe{left:431.933322pt;}
.xc{left:458.333322pt;}
.x22{left:464.800000pt;}
.x1e{left:468.640000pt;}
.x15{left:482.493333pt;}
.x3{left:489.373322pt;}
.x28{left:491.200000pt;}
.x9{left:510.493333pt;}
.x2d{left:520.000000pt;}
.x1{left:661.573322pt;}
.x5{left:755.999988pt;}
}




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