
    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_31a0ad75b60b1fa1111b9c11.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c674d54fe6e58f654980c5b6.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_1730694cbd0a1355e5029267.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_71fddd64ce09ee03dccf0eb7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_96f89c3b89ab05791e72eb98.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_cd900687fa1c6896259f7e15.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_95a66015ef1d9b2b1e8461d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.176000px;}
.lsb{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.666000px;}
.ls14{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.208200px;}
.lsd{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.287280px;}
.ls5{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.460200px;}
.ls22{letter-spacing:0.466800px;}
.ls19{letter-spacing:0.513600px;}
.ls12{letter-spacing:0.828000px;}
.lse{letter-spacing:7.866720px;}
.ls24{letter-spacing:11.466720px;}
.ls3{letter-spacing:31.626720px;}
.ls10{letter-spacing:33.066720px;}
.ls11{letter-spacing:36.666720px;}
.ls23{letter-spacing:41.850720px;}
.ls1c{letter-spacing:43.146720px;}
.ls1f{letter-spacing:43.866720px;}
.ls1b{letter-spacing:46.026720px;}
.ls16{letter-spacing:46.170720px;}
.ls1e{letter-spacing:46.746720px;}
.ls1d{letter-spacing:49.626720px;}
.ls20{letter-spacing:50.346720px;}
.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;}
}
.ws3{word-spacing:-24.227280px;}
.ws4{word-spacing:-23.940000px;}
.ws2{word-spacing:-23.921280px;}
.ws0{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.406800px;}
.wsc{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.384000px;}
.wse{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.580000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-2539.120320px;}
._3{margin-left:-1446.671520px;}
._5{margin-left:-1441.504320px;}
._4{margin-left:-994.312800px;}
._6{margin-left:-574.720560px;}
._1c{margin-left:-15.312480px;}
._e{margin-left:-10.620000px;}
._7{margin-left:-8.036160px;}
._8{margin-left:-4.364400px;}
._1{margin-left:-1.627920px;}
._0{width:1.244880px;}
._d{width:2.812800px;}
._13{width:3.868800px;}
._f{width:5.145840px;}
._12{width:6.412800px;}
._15{width:7.470000px;}
._14{width:8.904240px;}
._19{width:9.934560px;}
._17{width:10.995840px;}
._18{width:12.106800px;}
._b{width:13.119120px;}
._c{width:14.291040px;}
._1b{width:15.947760px;}
._1d{width:17.330400px;}
._16{width:18.547920px;}
._10{width:20.019600px;}
._11{width:21.105360px;}
._1a{width:23.067360px;}
._a{width:34.185360px;}
._9{width:35.654880px;}
._1e{width:36.756480px;}
._1f{width:39.606480px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.056000px;}
.y7e{bottom:88.056000px;}
.y32{bottom:91.296000px;}
.y6a{bottom:94.536000px;}
.ya3{bottom:105.336000px;}
.y7d{bottom:107.856000px;}
.y31{bottom:111.096000px;}
.y69{bottom:114.336000px;}
.ya2{bottom:125.136000px;}
.y7c{bottom:127.296000px;}
.y30{bottom:131.076000px;}
.y68{bottom:133.776000px;}
.yae{bottom:134.136000px;}
.ya1{bottom:144.936000px;}
.y7b{bottom:147.636000px;}
.y2f{bottom:150.870000px;}
.y67{bottom:153.930000px;}
.ya0{bottom:164.730000px;}
.y7a{bottom:167.430000px;}
.y2e{bottom:170.670000px;}
.y66{bottom:173.730000px;}
.y9f{bottom:184.350000px;}
.yab{bottom:184.710000px;}
.y79{bottom:187.230000px;}
.y2d{bottom:190.470000px;}
.y65{bottom:193.710000px;}
.yaa{bottom:204.150000px;}
.y9e{bottom:204.510000px;}
.y78{bottom:207.030000px;}
.y2c{bottom:210.270000px;}
.y64{bottom:213.510000px;}
.y9d{bottom:224.310000px;}
.y77{bottom:226.830000px;}
.y2b{bottom:230.250000px;}
.y63{bottom:233.310000px;}
.y9c{bottom:244.110000px;}
.y76{bottom:246.810000px;}
.y2a{bottom:250.050000px;}
.y62{bottom:253.110000px;}
.y9b{bottom:263.910000px;}
.y75{bottom:266.610000px;}
.y29{bottom:269.850000px;}
.y61{bottom:272.910000px;}
.y9a{bottom:283.890000px;}
.y74{bottom:286.050000px;}
.y28{bottom:289.650000px;}
.y60{bottom:292.890000px;}
.y99{bottom:303.690000px;}
.y73{bottom:306.210000px;}
.y27{bottom:309.450000px;}
.y5f{bottom:312.690000px;}
.ya9{bottom:323.130000px;}
.y98{bottom:323.490000px;}
.y72{bottom:326.010000px;}
.y26{bottom:329.475000px;}
.y5e{bottom:332.535000px;}
.y97{bottom:342.975000px;}
.ya8{bottom:343.335000px;}
.y71{bottom:345.675000px;}
.y25{bottom:349.275000px;}
.y5d{bottom:352.335000px;}
.y96{bottom:363.135000px;}
.y24{bottom:369.075000px;}
.y5c{bottom:372.135000px;}
.y70{bottom:374.835000px;}
.y95{bottom:383.115000px;}
.y23{bottom:388.875000px;}
.y5b{bottom:392.115000px;}
.y6f{bottom:394.635000px;}
.y94{bottom:402.915000px;}
.y22{bottom:408.675000px;}
.y5a{bottom:411.915000px;}
.y6e{bottom:414.435000px;}
.y93{bottom:422.715000px;}
.y21{bottom:428.655000px;}
.y59{bottom:431.715000px;}
.y6d{bottom:434.235000px;}
.y92{bottom:442.155000px;}
.y20{bottom:448.455000px;}
.y58{bottom:451.515000px;}
.y6c{bottom:453.855000px;}
.y91{bottom:462.315000px;}
.y1f{bottom:467.895000px;}
.y57{bottom:471.315000px;}
.y6b{bottom:471.495000px;}
.y90{bottom:482.295000px;}
.y56{bottom:491.295000px;}
.ya7{bottom:501.735000px;}
.y8f{bottom:502.095000px;}
.y1e{bottom:510.195000px;}
.y55{bottom:511.095000px;}
.y8e{bottom:521.895000px;}
.y54{bottom:530.895000px;}
.y1d{bottom:538.995000px;}
.y8d{bottom:541.695000px;}
.y53{bottom:550.695000px;}
.y1c{bottom:558.795000px;}
.y8c{bottom:561.495000px;}
.y52{bottom:570.495000px;}
.y1b{bottom:578.595000px;}
.y8b{bottom:581.475000px;}
.y51{bottom:590.475000px;}
.y1a{bottom:598.605000px;}
.y8a{bottom:600.945000px;}
.y50{bottom:610.305000px;}
.y19{bottom:618.405000px;}
.y89{bottom:621.105000px;}
.yad{bottom:629.745000px;}
.y4f{bottom:630.105000px;}
.y18{bottom:638.205000px;}
.y88{bottom:640.905000px;}
.ya6{bottom:649.545000px;}
.y4e{bottom:649.905000px;}
.y17{bottom:658.005000px;}
.y87{bottom:660.705000px;}
.y4d{bottom:669.705000px;}
.y16{bottom:677.805000px;}
.y86{bottom:680.685000px;}
.y4c{bottom:689.685000px;}
.y15{bottom:697.785000px;}
.y85{bottom:700.485000px;}
.y4b{bottom:709.485000px;}
.y14{bottom:717.585000px;}
.y84{bottom:719.925000px;}
.y4a{bottom:729.285000px;}
.y13{bottom:737.385000px;}
.y83{bottom:740.085000px;}
.y49{bottom:749.085000px;}
.y12{bottom:757.185000px;}
.y82{bottom:759.885000px;}
.y48{bottom:768.885000px;}
.y11{bottom:776.985000px;}
.y81{bottom:779.505000px;}
.ya5{bottom:788.505000px;}
.y47{bottom:788.865000px;}
.y10{bottom:796.965000px;}
.y46{bottom:808.665000px;}
.yf{bottom:816.765000px;}
.y45{bottom:828.465000px;}
.ye{bottom:838.905000px;}
.y44{bottom:848.265000px;}
.yd{bottom:863.970000px;}
.y43{bottom:868.110000px;}
.yc{bottom:883.770000px;}
.y42{bottom:888.090000px;}
.yb{bottom:898.710000px;}
.y41{bottom:907.890000px;}
.ya{bottom:919.770000px;}
.y80{bottom:927.330000px;}
.y40{bottom:927.690000px;}
.y9{bottom:943.350000px;}
.y3f{bottom:947.490000px;}
.yac{bottom:966.930000px;}
.y3e{bottom:967.290000px;}
.y8{bottom:975.030000px;}
.y3d{bottom:987.270000px;}
.y7{bottom:1006.710000px;}
.y3c{bottom:1007.070000px;}
.y3b{bottom:1026.870000px;}
.y3a{bottom:1046.670000px;}
.y5{bottom:1051.710000px;}
.y7f{bottom:1066.110000px;}
.y39{bottom:1066.470000px;}
.y4{bottom:1082.490000px;}
.y38{bottom:1086.450000px;}
.y37{bottom:1106.250000px;}
.y3{bottom:1113.270000px;}
.y36{bottom:1126.050000px;}
.y2{bottom:1143.900000px;}
.ya4{bottom:1145.520000px;}
.y35{bottom:1145.880000px;}
.y34{bottom:1173.240000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.400000px;}
.h6{height:38.158594px;}
.h7{height:58.621992px;}
.h8{height:58.651172px;}
.h5{height:60.226875px;}
.hb{height:61.423863px;}
.h9{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.ha{height:67.824844px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:47.159987px;}
.x1{left:54.179987px;}
.x2{left:75.599987px;}
.x3{left:80.999987px;}
.x4{left:108.035987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-1.045333pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.592000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.185067pt;}
.lsd{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.255360pt;}
.ls5{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.409067pt;}
.ls22{letter-spacing:0.414933pt;}
.ls19{letter-spacing:0.456533pt;}
.ls12{letter-spacing:0.736000pt;}
.lse{letter-spacing:6.992640pt;}
.ls24{letter-spacing:10.192640pt;}
.ls3{letter-spacing:28.112640pt;}
.ls10{letter-spacing:29.392640pt;}
.ls11{letter-spacing:32.592640pt;}
.ls23{letter-spacing:37.200640pt;}
.ls1c{letter-spacing:38.352640pt;}
.ls1f{letter-spacing:38.992640pt;}
.ls1b{letter-spacing:40.912640pt;}
.ls16{letter-spacing:41.040640pt;}
.ls1e{letter-spacing:41.552640pt;}
.ls1d{letter-spacing:44.112640pt;}
.ls20{letter-spacing:44.752640pt;}
.ws3{word-spacing:-21.535360pt;}
.ws4{word-spacing:-21.280000pt;}
.ws2{word-spacing:-21.263360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws12{word-spacing:-13.694933pt;}
.wsc{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.674667pt;}
.wse{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.wsb{word-spacing:-12.960000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-2256.995840pt;}
._3{margin-left:-1285.930240pt;}
._5{margin-left:-1281.337173pt;}
._4{margin-left:-883.833600pt;}
._6{margin-left:-510.862720pt;}
._1c{margin-left:-13.611093pt;}
._e{margin-left:-9.440000pt;}
._7{margin-left:-7.143253pt;}
._8{margin-left:-3.879467pt;}
._1{margin-left:-1.447040pt;}
._0{width:1.106560pt;}
._d{width:2.500267pt;}
._13{width:3.438933pt;}
._f{width:4.574080pt;}
._12{width:5.700267pt;}
._15{width:6.640000pt;}
._14{width:7.914880pt;}
._19{width:8.830720pt;}
._17{width:9.774080pt;}
._18{width:10.761600pt;}
._b{width:11.661440pt;}
._c{width:12.703147pt;}
._1b{width:14.175787pt;}
._1d{width:15.404800pt;}
._16{width:16.487040pt;}
._10{width:17.795200pt;}
._11{width:18.760320pt;}
._1a{width:20.504320pt;}
._a{width:30.386987pt;}
._9{width:31.693227pt;}
._1e{width:32.672427pt;}
._1f{width:35.205760pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.272000pt;}
.y7e{bottom:78.272000pt;}
.y32{bottom:81.152000pt;}
.y6a{bottom:84.032000pt;}
.ya3{bottom:93.632000pt;}
.y7d{bottom:95.872000pt;}
.y31{bottom:98.752000pt;}
.y69{bottom:101.632000pt;}
.ya2{bottom:111.232000pt;}
.y7c{bottom:113.152000pt;}
.y30{bottom:116.512000pt;}
.y68{bottom:118.912000pt;}
.yae{bottom:119.232000pt;}
.ya1{bottom:128.832000pt;}
.y7b{bottom:131.232000pt;}
.y2f{bottom:134.106667pt;}
.y67{bottom:136.826667pt;}
.ya0{bottom:146.426667pt;}
.y7a{bottom:148.826667pt;}
.y2e{bottom:151.706667pt;}
.y66{bottom:154.426667pt;}
.y9f{bottom:163.866667pt;}
.yab{bottom:164.186667pt;}
.y79{bottom:166.426667pt;}
.y2d{bottom:169.306667pt;}
.y65{bottom:172.186667pt;}
.yaa{bottom:181.466667pt;}
.y9e{bottom:181.786667pt;}
.y78{bottom:184.026667pt;}
.y2c{bottom:186.906667pt;}
.y64{bottom:189.786667pt;}
.y9d{bottom:199.386667pt;}
.y77{bottom:201.626667pt;}
.y2b{bottom:204.666667pt;}
.y63{bottom:207.386667pt;}
.y9c{bottom:216.986667pt;}
.y76{bottom:219.386667pt;}
.y2a{bottom:222.266667pt;}
.y62{bottom:224.986667pt;}
.y9b{bottom:234.586667pt;}
.y75{bottom:236.986667pt;}
.y29{bottom:239.866667pt;}
.y61{bottom:242.586667pt;}
.y9a{bottom:252.346667pt;}
.y74{bottom:254.266667pt;}
.y28{bottom:257.466667pt;}
.y60{bottom:260.346667pt;}
.y99{bottom:269.946667pt;}
.y73{bottom:272.186667pt;}
.y27{bottom:275.066667pt;}
.y5f{bottom:277.946667pt;}
.ya9{bottom:287.226667pt;}
.y98{bottom:287.546667pt;}
.y72{bottom:289.786667pt;}
.y26{bottom:292.866667pt;}
.y5e{bottom:295.586667pt;}
.y97{bottom:304.866667pt;}
.ya8{bottom:305.186667pt;}
.y71{bottom:307.266667pt;}
.y25{bottom:310.466667pt;}
.y5d{bottom:313.186667pt;}
.y96{bottom:322.786667pt;}
.y24{bottom:328.066667pt;}
.y5c{bottom:330.786667pt;}
.y70{bottom:333.186667pt;}
.y95{bottom:340.546667pt;}
.y23{bottom:345.666667pt;}
.y5b{bottom:348.546667pt;}
.y6f{bottom:350.786667pt;}
.y94{bottom:358.146667pt;}
.y22{bottom:363.266667pt;}
.y5a{bottom:366.146667pt;}
.y6e{bottom:368.386667pt;}
.y93{bottom:375.746667pt;}
.y21{bottom:381.026667pt;}
.y59{bottom:383.746667pt;}
.y6d{bottom:385.986667pt;}
.y92{bottom:393.026667pt;}
.y20{bottom:398.626667pt;}
.y58{bottom:401.346667pt;}
.y6c{bottom:403.426667pt;}
.y91{bottom:410.946667pt;}
.y1f{bottom:415.906667pt;}
.y57{bottom:418.946667pt;}
.y6b{bottom:419.106667pt;}
.y90{bottom:428.706667pt;}
.y56{bottom:436.706667pt;}
.ya7{bottom:445.986667pt;}
.y8f{bottom:446.306667pt;}
.y1e{bottom:453.506667pt;}
.y55{bottom:454.306667pt;}
.y8e{bottom:463.906667pt;}
.y54{bottom:471.906667pt;}
.y1d{bottom:479.106667pt;}
.y8d{bottom:481.506667pt;}
.y53{bottom:489.506667pt;}
.y1c{bottom:496.706667pt;}
.y8c{bottom:499.106667pt;}
.y52{bottom:507.106667pt;}
.y1b{bottom:514.306667pt;}
.y8b{bottom:516.866667pt;}
.y51{bottom:524.866667pt;}
.y1a{bottom:532.093333pt;}
.y8a{bottom:534.173333pt;}
.y50{bottom:542.493333pt;}
.y19{bottom:549.693333pt;}
.y89{bottom:552.093333pt;}
.yad{bottom:559.773333pt;}
.y4f{bottom:560.093333pt;}
.y18{bottom:567.293333pt;}
.y88{bottom:569.693333pt;}
.ya6{bottom:577.373333pt;}
.y4e{bottom:577.693333pt;}
.y17{bottom:584.893333pt;}
.y87{bottom:587.293333pt;}
.y4d{bottom:595.293333pt;}
.y16{bottom:602.493333pt;}
.y86{bottom:605.053333pt;}
.y4c{bottom:613.053333pt;}
.y15{bottom:620.253333pt;}
.y85{bottom:622.653333pt;}
.y4b{bottom:630.653333pt;}
.y14{bottom:637.853333pt;}
.y84{bottom:639.933333pt;}
.y4a{bottom:648.253333pt;}
.y13{bottom:655.453333pt;}
.y83{bottom:657.853333pt;}
.y49{bottom:665.853333pt;}
.y12{bottom:673.053333pt;}
.y82{bottom:675.453333pt;}
.y48{bottom:683.453333pt;}
.y11{bottom:690.653333pt;}
.y81{bottom:692.893333pt;}
.ya5{bottom:700.893333pt;}
.y47{bottom:701.213333pt;}
.y10{bottom:708.413333pt;}
.y46{bottom:718.813333pt;}
.yf{bottom:726.013333pt;}
.y45{bottom:736.413333pt;}
.ye{bottom:745.693333pt;}
.y44{bottom:754.013333pt;}
.yd{bottom:767.973333pt;}
.y43{bottom:771.653333pt;}
.yc{bottom:785.573333pt;}
.y42{bottom:789.413333pt;}
.yb{bottom:798.853333pt;}
.y41{bottom:807.013333pt;}
.ya{bottom:817.573333pt;}
.y80{bottom:824.293333pt;}
.y40{bottom:824.613333pt;}
.y9{bottom:838.533333pt;}
.y3f{bottom:842.213333pt;}
.yac{bottom:859.493333pt;}
.y3e{bottom:859.813333pt;}
.y8{bottom:866.693333pt;}
.y3d{bottom:877.573333pt;}
.y7{bottom:894.853333pt;}
.y3c{bottom:895.173333pt;}
.y3b{bottom:912.773333pt;}
.y3a{bottom:930.373333pt;}
.y5{bottom:934.853333pt;}
.y7f{bottom:947.653333pt;}
.y39{bottom:947.973333pt;}
.y4{bottom:962.213333pt;}
.y38{bottom:965.733333pt;}
.y37{bottom:983.333333pt;}
.y3{bottom:989.573333pt;}
.y36{bottom:1000.933333pt;}
.y2{bottom:1016.800000pt;}
.ya4{bottom:1018.240000pt;}
.y35{bottom:1018.560000pt;}
.y34{bottom:1042.880000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.800000pt;}
.h6{height:33.918750pt;}
.h7{height:52.108438pt;}
.h8{height:52.134375pt;}
.h5{height:53.535000pt;}
.hb{height:54.598989pt;}
.h9{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.ha{height:60.288750pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:41.919988pt;}
.x1{left:48.159988pt;}
.x2{left:67.199988pt;}
.x3{left:71.999988pt;}
.x4{left:96.031988pt;}
}




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