
    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_1eba4d1c730334fce9135495.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_bcb0e986003c2e8f361fa18e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_e37404e57a96e2b1bec21f33.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_985cb19102b54697eb180d45.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c7ee15165f4733e214d6eafd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v3{vertical-align:30.240000px;}
.v2{vertical-align:35.280000px;}
.ls1c{letter-spacing:-1.494000px;}
.lsf{letter-spacing:-1.260000px;}
.ls24{letter-spacing:-0.726000px;}
.ls8{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls27{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls26{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.135600px;}
.ls1b{letter-spacing:0.147000px;}
.ls23{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.ls21{letter-spacing:0.269400px;}
.ls18{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.306600px;}
.ls13{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.403920px;}
.ls16{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.773280px;}
.lse{letter-spacing:0.864000px;}
.ls6{letter-spacing:1.386720px;}
.ls1{letter-spacing:3.036000px;}
.ls3{letter-spacing:3.060000px;}
.ls1d{letter-spacing:6.660000px;}
.ls15{letter-spacing:12.420000px;}
.ls17{letter-spacing:13.140000px;}
.ls1e{letter-spacing:14.760000px;}
.ls25{letter-spacing:16.506720px;}
.ls22{letter-spacing:46.026720px;}
.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;}
}
.ws12{word-spacing:-42.029400px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.804000px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.093600px;}
.wse{word-spacing:-15.087000px;}
.ws4{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws13{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.328000px;}
.ws5{word-spacing:-9.720000px;}
.ws16{word-spacing:-9.711360px;}
.ws15{word-spacing:-8.994000px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.637760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1110.513600px;}
._6{margin-left:-881.400000px;}
._18{margin-left:-3.708240px;}
._c{margin-left:-2.387280px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._b{width:2.169840px;}
._7{width:3.193680px;}
._8{width:4.921440px;}
._a{width:6.048480px;}
._9{width:7.073280px;}
._e{width:8.158560px;}
._16{width:10.068480px;}
._17{width:11.262720px;}
._19{width:12.329040px;}
._d{width:13.854960px;}
._13{width:16.056480px;}
._10{width:17.959440px;}
._f{width:19.123200px;}
._15{width:20.271360px;}
._14{width:21.304080px;}
._1b{width:23.306400px;}
._1a{width:24.441840px;}
._24{width:26.053200px;}
._28{width:27.205920px;}
._12{width:28.818000px;}
._11{width:30.298320px;}
._2e{width:31.343040px;}
._21{width:32.717520px;}
._1f{width:34.032240px;}
._2a{width:35.318160px;}
._1e{width:36.812160px;}
._1d{width:38.007360px;}
._20{width:39.085920px;}
._2b{width:40.737600px;}
._1c{width:41.832000px;}
._26{width:43.832880px;}
._29{width:44.999280px;}
._22{width:46.522080px;}
._23{width:47.898720px;}
._2d{width:54.028800px;}
._2c{width:59.145120px;}
._25{width:72.159120px;}
._27{width:75.476880px;}
._2f{width:1987.800000px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.480000px;}
.y8{bottom:11.700000px;}
.y9{bottom:39.600000px;}
.y6{bottom:55.260000px;}
.y70{bottom:85.140000px;}
.y38{bottom:90.720000px;}
.y98{bottom:94.140000px;}
.ya6{bottom:95.940000px;}
.y6f{bottom:104.940000px;}
.y37{bottom:110.520000px;}
.y97{bottom:113.940000px;}
.ya5{bottom:115.740000px;}
.y6e{bottom:124.740000px;}
.y36{bottom:130.320000px;}
.y96{bottom:133.740000px;}
.ya4{bottom:135.540000px;}
.y6d{bottom:144.540000px;}
.y35{bottom:150.300000px;}
.y95{bottom:153.570000px;}
.ya3{bottom:155.550000px;}
.y6c{bottom:164.370000px;}
.y34{bottom:170.130000px;}
.y94{bottom:173.370000px;}
.ya2{bottom:175.350000px;}
.y6b{bottom:184.170000px;}
.y33{bottom:189.930000px;}
.y93{bottom:193.170000px;}
.ya1{bottom:195.150000px;}
.y6a{bottom:204.150000px;}
.y32{bottom:209.730000px;}
.y92{bottom:213.150000px;}
.ya0{bottom:214.950000px;}
.y69{bottom:223.950000px;}
.y31{bottom:229.530000px;}
.y91{bottom:232.950000px;}
.y9f{bottom:234.750000px;}
.y68{bottom:243.750000px;}
.y30{bottom:249.510000px;}
.y90{bottom:252.750000px;}
.y9e{bottom:254.730000px;}
.y67{bottom:263.550000px;}
.y2f{bottom:269.310000px;}
.y8f{bottom:272.550000px;}
.y9d{bottom:274.530000px;}
.y66{bottom:283.350000px;}
.y2e{bottom:289.110000px;}
.y8e{bottom:292.350000px;}
.y9c{bottom:294.330000px;}
.y65{bottom:303.330000px;}
.y2d{bottom:308.910000px;}
.y8d{bottom:312.330000px;}
.y9b{bottom:314.130000px;}
.y64{bottom:323.130000px;}
.y2c{bottom:328.710000px;}
.y8c{bottom:332.130000px;}
.y9a{bottom:339.870000px;}
.y63{bottom:342.930000px;}
.y99{bottom:347.430000px;}
.y2b{bottom:348.690000px;}
.y8b{bottom:351.930000px;}
.y62{bottom:362.730000px;}
.y2a{bottom:368.490000px;}
.y8a{bottom:371.730000px;}
.y61{bottom:382.530000px;}
.y29{bottom:388.290000px;}
.y89{bottom:391.530000px;}
.y60{bottom:402.555000px;}
.y28{bottom:408.135000px;}
.y88{bottom:411.555000px;}
.y5f{bottom:422.355000px;}
.y27{bottom:427.935000px;}
.y87{bottom:431.355000px;}
.y5e{bottom:442.155000px;}
.y26{bottom:447.915000px;}
.y86{bottom:451.155000px;}
.y5d{bottom:461.955000px;}
.y25{bottom:467.715000px;}
.y85{bottom:470.955000px;}
.y5c{bottom:481.755000px;}
.y24{bottom:487.515000px;}
.y84{bottom:490.755000px;}
.y5b{bottom:501.735000px;}
.y23{bottom:507.315000px;}
.y83{bottom:510.735000px;}
.y5a{bottom:521.535000px;}
.y22{bottom:527.115000px;}
.y82{bottom:530.535000px;}
.y59{bottom:541.335000px;}
.y21{bottom:547.095000px;}
.y81{bottom:550.335000px;}
.y58{bottom:561.135000px;}
.y20{bottom:566.895000px;}
.y80{bottom:570.135000px;}
.y57{bottom:580.935000px;}
.y1f{bottom:588.855000px;}
.y7f{bottom:589.935000px;}
.y56{bottom:600.915000px;}
.y1e{bottom:608.835000px;}
.y7e{bottom:609.915000px;}
.y55{bottom:620.715000px;}
.y1d{bottom:628.635000px;}
.y7d{bottom:629.715000px;}
.y54{bottom:640.515000px;}
.y1c{bottom:648.435000px;}
.y7c{bottom:649.545000px;}
.y53{bottom:660.345000px;}
.y1b{bottom:668.265000px;}
.y7b{bottom:669.345000px;}
.y52{bottom:680.145000px;}
.y1a{bottom:688.065000px;}
.y7a{bottom:689.145000px;}
.y51{bottom:700.125000px;}
.y19{bottom:708.045000px;}
.y79{bottom:709.125000px;}
.y50{bottom:719.925000px;}
.y18{bottom:727.845000px;}
.y78{bottom:728.925000px;}
.y4f{bottom:739.725000px;}
.y17{bottom:747.645000px;}
.y77{bottom:748.725000px;}
.y4e{bottom:759.525000px;}
.y16{bottom:767.445000px;}
.y76{bottom:768.525000px;}
.y4d{bottom:779.325000px;}
.y15{bottom:787.245000px;}
.y75{bottom:788.325000px;}
.y4c{bottom:799.305000px;}
.y14{bottom:807.225000px;}
.y74{bottom:808.305000px;}
.y4b{bottom:819.105000px;}
.y13{bottom:827.025000px;}
.y73{bottom:828.105000px;}
.y4a{bottom:838.905000px;}
.y12{bottom:846.825000px;}
.y72{bottom:847.905000px;}
.y49{bottom:858.705000px;}
.y11{bottom:866.625000px;}
.y71{bottom:867.705000px;}
.y10{bottom:886.425000px;}
.y48{bottom:887.505000px;}
.y47{bottom:907.530000px;}
.yf{bottom:908.610000px;}
.y46{bottom:927.330000px;}
.ye{bottom:928.410000px;}
.y45{bottom:947.130000px;}
.yd{bottom:948.930000px;}
.y44{bottom:966.930000px;}
.yc{bottom:970.170000px;}
.y43{bottom:986.730000px;}
.yb{bottom:993.570000px;}
.y42{bottom:1006.710000px;}
.ya{bottom:1025.250000px;}
.y41{bottom:1026.510000px;}
.y40{bottom:1046.310000px;}
.y5{bottom:1054.050000px;}
.y3f{bottom:1066.110000px;}
.y3e{bottom:1085.910000px;}
.y4{bottom:1087.890000px;}
.y3d{bottom:1105.890000px;}
.y3{bottom:1118.850000px;}
.y3c{bottom:1125.690000px;}
.y3b{bottom:1145.490000px;}
.y2{bottom:1149.660000px;}
.y3a{bottom:1165.320000px;}
.y1{bottom:1181.700000px;}
.y39{bottom:1193.400000px;}
.h4{height:21.960000px;}
.h5{height:27.432422px;}
.h9{height:41.726953px;}
.h8{height:42.164648px;}
.ha{height:43.506914px;}
.hb{height:46.251562px;}
.h3{height:46.736719px;}
.he{height:48.027656px;}
.hf{height:48.147656px;}
.h2{height:54.864844px;}
.h6{height:65.884219px;}
.h7{height:67.565039px;}
.hc{height:70.474219px;}
.hd{height:71.966953px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x7{left:56.879987px;}
.x2{left:62.100000px;}
.x11{left:80.999987px;}
.x12{left:108.035987px;}
.x4{left:118.296000px;}
.xd{left:145.475987px;}
.x6{left:217.119000px;}
.xb{left:250.409987px;}
.xa{left:340.454987px;}
.x8{left:373.574987px;}
.x5{left:442.509000px;}
.x9{left:446.504987px;}
.xc{left:473.504987px;}
.xf{left:500.504987px;}
.x10{left:527.504987px;}
.xe{left:593.204987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v3{vertical-align:26.880000pt;}
.v2{vertical-align:31.360000pt;}
.ls1c{letter-spacing:-1.328000pt;}
.lsf{letter-spacing:-1.120000pt;}
.ls24{letter-spacing:-0.645333pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls27{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls26{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.120533pt;}
.ls1b{letter-spacing:0.130667pt;}
.ls23{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.ls21{letter-spacing:0.239467pt;}
.ls18{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.272533pt;}
.ls13{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.359040pt;}
.ls16{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.687360pt;}
.lse{letter-spacing:0.768000pt;}
.ls6{letter-spacing:1.232640pt;}
.ls1{letter-spacing:2.698667pt;}
.ls3{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:5.920000pt;}
.ls15{letter-spacing:11.040000pt;}
.ls17{letter-spacing:11.680000pt;}
.ls1e{letter-spacing:13.120000pt;}
.ls25{letter-spacing:14.672640pt;}
.ls22{letter-spacing:40.912640pt;}
.ws12{word-spacing:-37.359467pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.ws0{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.048000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.410667pt;}
.ws4{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws13{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.736000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws16{word-spacing:-8.632320pt;}
.ws15{word-spacing:-7.994667pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.789120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-987.123200pt;}
._6{margin-left:-783.466667pt;}
._18{margin-left:-3.296213pt;}
._c{margin-left:-2.122027pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._b{width:1.928747pt;}
._7{width:2.838827pt;}
._8{width:4.374613pt;}
._a{width:5.376427pt;}
._9{width:6.287360pt;}
._e{width:7.252053pt;}
._16{width:8.949760pt;}
._17{width:10.011307pt;}
._19{width:10.959147pt;}
._d{width:12.315520pt;}
._13{width:14.272427pt;}
._10{width:15.963947pt;}
._f{width:16.998400pt;}
._15{width:18.018987pt;}
._14{width:18.936960pt;}
._1b{width:20.716800pt;}
._1a{width:21.726080pt;}
._24{width:23.158400pt;}
._28{width:24.183040pt;}
._12{width:25.616000pt;}
._11{width:26.931840pt;}
._2e{width:27.860480pt;}
._21{width:29.082240pt;}
._1f{width:30.250880pt;}
._2a{width:31.393920pt;}
._1e{width:32.721920pt;}
._1d{width:33.784320pt;}
._20{width:34.743040pt;}
._2b{width:36.211200pt;}
._1c{width:37.184000pt;}
._26{width:38.962560pt;}
._29{width:39.999360pt;}
._22{width:41.352960pt;}
._23{width:42.576640pt;}
._2d{width:48.025600pt;}
._2c{width:52.573440pt;}
._25{width:64.141440pt;}
._27{width:67.090560pt;}
._2f{width:1766.933333pt;}
.fs2{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.760000pt;}
.y8{bottom:10.400000pt;}
.y9{bottom:35.200000pt;}
.y6{bottom:49.120000pt;}
.y70{bottom:75.680000pt;}
.y38{bottom:80.640000pt;}
.y98{bottom:83.680000pt;}
.ya6{bottom:85.280000pt;}
.y6f{bottom:93.280000pt;}
.y37{bottom:98.240000pt;}
.y97{bottom:101.280000pt;}
.ya5{bottom:102.880000pt;}
.y6e{bottom:110.880000pt;}
.y36{bottom:115.840000pt;}
.y96{bottom:118.880000pt;}
.ya4{bottom:120.480000pt;}
.y6d{bottom:128.480000pt;}
.y35{bottom:133.600000pt;}
.y95{bottom:136.506667pt;}
.ya3{bottom:138.266667pt;}
.y6c{bottom:146.106667pt;}
.y34{bottom:151.226667pt;}
.y94{bottom:154.106667pt;}
.ya2{bottom:155.866667pt;}
.y6b{bottom:163.706667pt;}
.y33{bottom:168.826667pt;}
.y93{bottom:171.706667pt;}
.ya1{bottom:173.466667pt;}
.y6a{bottom:181.466667pt;}
.y32{bottom:186.426667pt;}
.y92{bottom:189.466667pt;}
.ya0{bottom:191.066667pt;}
.y69{bottom:199.066667pt;}
.y31{bottom:204.026667pt;}
.y91{bottom:207.066667pt;}
.y9f{bottom:208.666667pt;}
.y68{bottom:216.666667pt;}
.y30{bottom:221.786667pt;}
.y90{bottom:224.666667pt;}
.y9e{bottom:226.426667pt;}
.y67{bottom:234.266667pt;}
.y2f{bottom:239.386667pt;}
.y8f{bottom:242.266667pt;}
.y9d{bottom:244.026667pt;}
.y66{bottom:251.866667pt;}
.y2e{bottom:256.986667pt;}
.y8e{bottom:259.866667pt;}
.y9c{bottom:261.626667pt;}
.y65{bottom:269.626667pt;}
.y2d{bottom:274.586667pt;}
.y8d{bottom:277.626667pt;}
.y9b{bottom:279.226667pt;}
.y64{bottom:287.226667pt;}
.y2c{bottom:292.186667pt;}
.y8c{bottom:295.226667pt;}
.y9a{bottom:302.106667pt;}
.y63{bottom:304.826667pt;}
.y99{bottom:308.826667pt;}
.y2b{bottom:309.946667pt;}
.y8b{bottom:312.826667pt;}
.y62{bottom:322.426667pt;}
.y2a{bottom:327.546667pt;}
.y8a{bottom:330.426667pt;}
.y61{bottom:340.026667pt;}
.y29{bottom:345.146667pt;}
.y89{bottom:348.026667pt;}
.y60{bottom:357.826667pt;}
.y28{bottom:362.786667pt;}
.y88{bottom:365.826667pt;}
.y5f{bottom:375.426667pt;}
.y27{bottom:380.386667pt;}
.y87{bottom:383.426667pt;}
.y5e{bottom:393.026667pt;}
.y26{bottom:398.146667pt;}
.y86{bottom:401.026667pt;}
.y5d{bottom:410.626667pt;}
.y25{bottom:415.746667pt;}
.y85{bottom:418.626667pt;}
.y5c{bottom:428.226667pt;}
.y24{bottom:433.346667pt;}
.y84{bottom:436.226667pt;}
.y5b{bottom:445.986667pt;}
.y23{bottom:450.946667pt;}
.y83{bottom:453.986667pt;}
.y5a{bottom:463.586667pt;}
.y22{bottom:468.546667pt;}
.y82{bottom:471.586667pt;}
.y59{bottom:481.186667pt;}
.y21{bottom:486.306667pt;}
.y81{bottom:489.186667pt;}
.y58{bottom:498.786667pt;}
.y20{bottom:503.906667pt;}
.y80{bottom:506.786667pt;}
.y57{bottom:516.386667pt;}
.y1f{bottom:523.426667pt;}
.y7f{bottom:524.386667pt;}
.y56{bottom:534.146667pt;}
.y1e{bottom:541.186667pt;}
.y7e{bottom:542.146667pt;}
.y55{bottom:551.746667pt;}
.y1d{bottom:558.786667pt;}
.y7d{bottom:559.746667pt;}
.y54{bottom:569.346667pt;}
.y1c{bottom:576.386667pt;}
.y7c{bottom:577.373333pt;}
.y53{bottom:586.973333pt;}
.y1b{bottom:594.013333pt;}
.y7b{bottom:594.973333pt;}
.y52{bottom:604.573333pt;}
.y1a{bottom:611.613333pt;}
.y7a{bottom:612.573333pt;}
.y51{bottom:622.333333pt;}
.y19{bottom:629.373333pt;}
.y79{bottom:630.333333pt;}
.y50{bottom:639.933333pt;}
.y18{bottom:646.973333pt;}
.y78{bottom:647.933333pt;}
.y4f{bottom:657.533333pt;}
.y17{bottom:664.573333pt;}
.y77{bottom:665.533333pt;}
.y4e{bottom:675.133333pt;}
.y16{bottom:682.173333pt;}
.y76{bottom:683.133333pt;}
.y4d{bottom:692.733333pt;}
.y15{bottom:699.773333pt;}
.y75{bottom:700.733333pt;}
.y4c{bottom:710.493333pt;}
.y14{bottom:717.533333pt;}
.y74{bottom:718.493333pt;}
.y4b{bottom:728.093333pt;}
.y13{bottom:735.133333pt;}
.y73{bottom:736.093333pt;}
.y4a{bottom:745.693333pt;}
.y12{bottom:752.733333pt;}
.y72{bottom:753.693333pt;}
.y49{bottom:763.293333pt;}
.y11{bottom:770.333333pt;}
.y71{bottom:771.293333pt;}
.y10{bottom:787.933333pt;}
.y48{bottom:788.893333pt;}
.y47{bottom:806.693333pt;}
.yf{bottom:807.653333pt;}
.y46{bottom:824.293333pt;}
.ye{bottom:825.253333pt;}
.y45{bottom:841.893333pt;}
.yd{bottom:843.493333pt;}
.y44{bottom:859.493333pt;}
.yc{bottom:862.373333pt;}
.y43{bottom:877.093333pt;}
.yb{bottom:883.173333pt;}
.y42{bottom:894.853333pt;}
.ya{bottom:911.333333pt;}
.y41{bottom:912.453333pt;}
.y40{bottom:930.053333pt;}
.y5{bottom:936.933333pt;}
.y3f{bottom:947.653333pt;}
.y3e{bottom:965.253333pt;}
.y4{bottom:967.013333pt;}
.y3d{bottom:983.013333pt;}
.y3{bottom:994.533333pt;}
.y3c{bottom:1000.613333pt;}
.y3b{bottom:1018.213333pt;}
.y2{bottom:1021.920000pt;}
.y3a{bottom:1035.840000pt;}
.y1{bottom:1050.400000pt;}
.y39{bottom:1060.800000pt;}
.h4{height:19.520000pt;}
.h5{height:24.384375pt;}
.h9{height:37.090625pt;}
.h8{height:37.479688pt;}
.ha{height:38.672812pt;}
.hb{height:41.112500pt;}
.h3{height:41.543750pt;}
.he{height:42.691250pt;}
.hf{height:42.797917pt;}
.h2{height:48.768750pt;}
.h6{height:58.563750pt;}
.h7{height:60.057813pt;}
.hc{height:62.643750pt;}
.hd{height:63.970625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x7{left:50.559988pt;}
.x2{left:55.200000pt;}
.x11{left:71.999988pt;}
.x12{left:96.031988pt;}
.x4{left:105.152000pt;}
.xd{left:129.311988pt;}
.x6{left:192.994667pt;}
.xb{left:222.586655pt;}
.xa{left:302.626655pt;}
.x8{left:332.066655pt;}
.x5{left:393.341333pt;}
.x9{left:396.893322pt;}
.xc{left:420.893322pt;}
.xf{left:444.893322pt;}
.x10{left:468.893322pt;}
.xe{left:527.293322pt;}
}




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