
    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_8cb53cd81f7807d034a953b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_75f23ba47e6ec1a025392a12.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_dc3b233a15470e44fa3276df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_d73989a97cf7731ddac5525b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_371806be9ad4578494ca3a35.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.776855;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_c392ad1b85e4e168e8757c58.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_6b01997448dfbc5bf140471c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:36.000000px;}
.v1{vertical-align:42.660000px;}
.v3{vertical-align:78.660000px;}
.lsc{letter-spacing:-0.294600px;}
.ls6{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.lse{letter-spacing:0.224640px;}
.ls8{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.321600px;}
.lsa{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.605520px;}
.ls3{letter-spacing:0.720000px;}
.lsd{letter-spacing:21.600000px;}
.ls4{letter-spacing:22.536000px;}
.ls5{letter-spacing:29.196000px;}
.ls2{letter-spacing:64.421280px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.645400px;}
.ws8{word-spacing:-11.568000px;}
.ws4{word-spacing:-11.246400px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:4.896000px;}
.ws7{word-spacing:5.256000px;}
.ws5{word-spacing:7.156800px;}
._e{margin-left:-4.464000px;}
._1{margin-left:-2.649600px;}
._0{margin-left:-1.457280px;}
._2{width:1.072320px;}
._5{width:2.124960px;}
._8{width:4.002720px;}
._9{width:5.405280px;}
._d{width:6.912000px;}
._7{width:8.522640px;}
._6{width:10.533600px;}
._b{width:12.188160px;}
._a{width:13.265280px;}
._12{width:14.670720px;}
._c{width:15.696000px;}
._13{width:16.954560px;}
._10{width:19.152000px;}
._16{width:20.211360px;}
._3{width:21.335520px;}
._4{width:22.867680px;}
._1c{width:24.466560px;}
._1a{width:25.968000px;}
._1b{width:27.149760px;}
._19{width:28.313280px;}
._11{width:29.520000px;}
._14{width:36.648000px;}
._15{width:38.160000px;}
._17{width:39.768960px;}
._18{width:40.980480px;}
._f{width:60.228960px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:3.960000px;}
.y7f{bottom:9.180000px;}
.y7d{bottom:9.360000px;}
.yab{bottom:9.900000px;}
.ya8{bottom:24.660000px;}
.y7c{bottom:32.610000px;}
.y7b{bottom:38.550000px;}
.ya7{bottom:45.225000px;}
.y7a{bottom:55.830000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y30{bottom:172.110000px;}
.y8f{bottom:176.070000px;}
.y68{bottom:188.490000px;}
.y4d{bottom:192.450000px;}
.y2f{bottom:192.810000px;}
.y8e{bottom:193.530000px;}
.ybd{bottom:193.890000px;}
.y99{bottom:194.970000px;}
.yae{bottom:195.150000px;}
.y76{bottom:200.370000px;}
.yad{bottom:212.610000px;}
.y2e{bottom:213.510000px;}
.y8d{bottom:217.650000px;}
.y67{bottom:219.450000px;}
.y4c{bottom:223.590000px;}
.ybc{bottom:224.850000px;}
.y2d{bottom:234.210000px;}
.yac{bottom:240.150000px;}
.y8c{bottom:241.590000px;}
.y75{bottom:242.130000px;}
.y66{bottom:250.590000px;}
.y4b{bottom:254.550000px;}
.y2c{bottom:254.910000px;}
.ybb{bottom:255.990000px;}
.y8b{bottom:265.530000px;}
.yaa{bottom:267.510000px;}
.y2b{bottom:275.610000px;}
.y65{bottom:281.370000px;}
.y4a{bottom:285.690000px;}
.yba{bottom:286.950000px;}
.y8a{bottom:289.470000px;}
.y74{bottom:294.150000px;}
.ya6{bottom:295.050000px;}
.y2a{bottom:296.310000px;}
.y89{bottom:313.590000px;}
.y49{bottom:316.650000px;}
.y29{bottom:317.010000px;}
.yb9{bottom:318.090000px;}
.y64{bottom:322.050000px;}
.y73{bottom:325.110000px;}
.y63{bottom:331.050000px;}
.y88{bottom:337.575000px;}
.y28{bottom:337.755000px;}
.y48{bottom:347.835000px;}
.yb8{bottom:349.095000px;}
.y72{bottom:356.295000px;}
.y27{bottom:358.455000px;}
.y87{bottom:361.515000px;}
.ya5{bottom:361.875000px;}
.y47{bottom:378.795000px;}
.y26{bottom:379.155000px;}
.yb7{bottom:380.055000px;}
.ya4{bottom:382.575000px;}
.y86{bottom:385.635000px;}
.y71{bottom:387.255000px;}
.y62{bottom:388.875000px;}
.y25{bottom:399.855000px;}
.ya3{bottom:409.215000px;}
.y85{bottom:409.575000px;}
.y46{bottom:409.755000px;}
.yb6{bottom:411.195000px;}
.y70{bottom:418.395000px;}
.y61{bottom:419.835000px;}
.yd4{bottom:420.195000px;}
.y24{bottom:420.555000px;}
.y84{bottom:433.515000px;}
.ya2{bottom:440.175000px;}
.yd3{bottom:440.535000px;}
.y45{bottom:440.895000px;}
.y23{bottom:441.255000px;}
.yb5{bottom:442.155000px;}
.y6f{bottom:445.035000px;}
.y60{bottom:450.975000px;}
.y83{bottom:457.635000px;}
.yd2{bottom:460.695000px;}
.y22{bottom:461.955000px;}
.ya1{bottom:471.315000px;}
.y44{bottom:471.855000px;}
.y6e{bottom:472.395000px;}
.yb4{bottom:473.295000px;}
.yd1{bottom:481.395000px;}
.y82{bottom:481.575000px;}
.y5f{bottom:481.935000px;}
.y21{bottom:482.655000px;}
.yd0{bottom:502.095000px;}
.ya0{bottom:502.275000px;}
.y43{bottom:502.995000px;}
.y20{bottom:503.355000px;}
.yb3{bottom:504.255000px;}
.y81{bottom:505.515000px;}
.y6d{bottom:512.895000px;}
.y5e{bottom:513.075000px;}
.ycf{bottom:522.795000px;}
.y1f{bottom:524.055000px;}
.y80{bottom:529.635000px;}
.y9f{bottom:533.415000px;}
.y42{bottom:533.955000px;}
.yb2{bottom:535.215000px;}
.yce{bottom:543.495000px;}
.y5d{bottom:544.035000px;}
.y1e{bottom:544.755000px;}
.y7e{bottom:553.575000px;}
.ycd{bottom:564.195000px;}
.y9e{bottom:564.375000px;}
.y41{bottom:565.095000px;}
.y1d{bottom:565.455000px;}
.y5c{bottom:575.175000px;}
.y79{bottom:577.515000px;}
.ycc{bottom:584.895000px;}
.y1c{bottom:586.155000px;}
.y9d{bottom:595.515000px;}
.y40{bottom:596.055000px;}
.ycb{bottom:605.625000px;}
.y5b{bottom:606.165000px;}
.y1b{bottom:606.885000px;}
.yb1{bottom:610.305000px;}
.yca{bottom:626.325000px;}
.y9c{bottom:626.505000px;}
.y3f{bottom:627.225000px;}
.y1a{bottom:627.585000px;}
.y5a{bottom:637.305000px;}
.yb0{bottom:641.265000px;}
.yc9{bottom:647.025000px;}
.y19{bottom:648.285000px;}
.y78{bottom:652.065000px;}
.y9b{bottom:653.325000px;}
.y98{bottom:656.025000px;}
.y3e{bottom:658.185000px;}
.yc8{bottom:667.725000px;}
.y59{bottom:668.265000px;}
.y18{bottom:668.985000px;}
.yaf{bottom:672.405000px;}
.y77{bottom:672.765000px;}
.y9a{bottom:676.005000px;}
.y97{bottom:676.725000px;}
.yc7{bottom:688.425000px;}
.y3d{bottom:689.325000px;}
.y17{bottom:689.685000px;}
.y58{bottom:699.405000px;}
.y96{bottom:703.365000px;}
.yc6{bottom:709.125000px;}
.y16{bottom:710.385000px;}
.y3c{bottom:720.285000px;}
.yc5{bottom:729.825000px;}
.y57{bottom:730.365000px;}
.y15{bottom:731.085000px;}
.y95{bottom:734.505000px;}
.yc4{bottom:750.525000px;}
.y3b{bottom:751.425000px;}
.y14{bottom:751.605000px;}
.y56{bottom:761.505000px;}
.y94{bottom:765.465000px;}
.yc3{bottom:771.225000px;}
.y13{bottom:772.305000px;}
.y3a{bottom:782.385000px;}
.y55{bottom:792.465000px;}
.y12{bottom:793.005000px;}
.y93{bottom:796.605000px;}
.yc2{bottom:812.805000px;}
.y39{bottom:813.525000px;}
.y11{bottom:813.705000px;}
.y54{bottom:823.605000px;}
.y92{bottom:827.565000px;}
.y10{bottom:834.405000px;}
.y38{bottom:844.485000px;}
.y53{bottom:854.565000px;}
.yf{bottom:855.105000px;}
.y91{bottom:858.705000px;}
.yc1{bottom:875.310000px;}
.y37{bottom:875.670000px;}
.ye{bottom:875.850000px;}
.y52{bottom:885.750000px;}
.y90{bottom:889.710000px;}
.yd{bottom:896.550000px;}
.yc0{bottom:901.950000px;}
.y36{bottom:906.630000px;}
.y51{bottom:916.710000px;}
.yc{bottom:917.250000px;}
.y6c{bottom:920.850000px;}
.ybf{bottom:929.310000px;}
.y35{bottom:937.770000px;}
.yb{bottom:939.390000px;}
.y50{bottom:947.670000px;}
.y6b{bottom:951.810000px;}
.ybe{bottom:961.890000px;}
.ya{bottom:966.930000px;}
.y34{bottom:968.730000px;}
.y6a{bottom:982.950000px;}
.y4f{bottom:989.970000px;}
.y9{bottom:994.470000px;}
.y33{bottom:999.870000px;}
.y69{bottom:1013.910000px;}
.y8{bottom:1022.190000px;}
.y32{bottom:1030.830000px;}
.y4e{bottom:1045.050000px;}
.y7{bottom:1049.730000px;}
.y31{bottom:1073.130000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.hd{height:23.220000px;}
.hf{height:23.256000px;}
.he{height:23.400000px;}
.h11{height:26.640000px;}
.h12{height:50.321250px;}
.hc{height:53.573906px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.h10{height:61.956000px;}
.h2{height:64.546875px;}
.hb{height:69.876000px;}
.h7{height:74.820586px;}
.h5{height:85.052461px;}
.h8{height:85.742578px;}
.h6{height:85.847344px;}
.ha{height:100.546875px;}
.h9{height:121.742578px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:45.396000px;}
.wb{width:45.540000px;}
.w14{width:52.380000px;}
.w6{width:57.420000px;}
.wc{width:57.780000px;}
.w9{width:60.480000px;}
.w8{width:60.516000px;}
.w13{width:61.020000px;}
.w7{width:68.040000px;}
.w4{width:70.380000px;}
.w10{width:70.596000px;}
.w12{width:72.576000px;}
.w3{width:74.340000px;}
.w5{width:74.736000px;}
.w11{width:85.860000px;}
.wd{width:91.620000px;}
.wf{width:91.980000px;}
.we{width:141.516000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x1b{left:20.340000px;}
.x1c{left:25.020000px;}
.x1a{left:27.720000px;}
.x1d{left:29.925000px;}
.x2{left:106.415987px;}
.x5{left:139.895987px;}
.x4{left:148.895987px;}
.x7{left:159.509987px;}
.x1f{left:172.289987px;}
.x10{left:182.190000px;}
.x8{left:190.289987px;}
.x21{left:199.470000px;}
.xd{left:219.989987px;}
.xb{left:246.269987px;}
.x11{left:253.290000px;}
.x6{left:263.729987px;}
.x12{left:328.935000px;}
.x22{left:341.715000px;}
.x13{left:387.075000px;}
.x9{left:420.014987px;}
.x23{left:434.415000px;}
.x14{left:455.835000px;}
.x1{left:467.744987px;}
.x24{left:505.905000px;}
.x15{left:517.065000px;}
.x16{left:585.825000px;}
.x25{left:592.485000px;}
.x17{left:647.025000px;}
.xa{left:661.649987px;}
.x26{left:665.790000px;}
.x18{left:693.150000px;}
.x27{left:727.530000px;}
.x19{left:739.410000px;}
.x20{left:746.969987px;}
.xe{left:768.209987px;}
.x1e{left:779.189987px;}
.x3{left:786.749987px;}
.xc{left:831.029987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.000000pt;}
.v1{vertical-align:37.920000pt;}
.v3{vertical-align:69.920000pt;}
.lsc{letter-spacing:-0.261867pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.199680pt;}
.ls8{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.285867pt;}
.lsa{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.538240pt;}
.ls3{letter-spacing:0.640000pt;}
.lsd{letter-spacing:19.200000pt;}
.ls4{letter-spacing:20.032000pt;}
.ls5{letter-spacing:25.952000pt;}
.ls2{letter-spacing:57.263360pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.018133pt;}
.ws8{word-spacing:-10.282667pt;}
.ws4{word-spacing:-9.996800pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:4.352000pt;}
.ws7{word-spacing:4.672000pt;}
.ws5{word-spacing:6.361600pt;}
._e{margin-left:-3.968000pt;}
._1{margin-left:-2.355200pt;}
._0{margin-left:-1.295360pt;}
._2{width:0.953173pt;}
._5{width:1.888853pt;}
._8{width:3.557973pt;}
._9{width:4.804693pt;}
._d{width:6.144000pt;}
._7{width:7.575680pt;}
._6{width:9.363200pt;}
._b{width:10.833920pt;}
._a{width:11.791360pt;}
._12{width:13.040640pt;}
._c{width:13.952000pt;}
._13{width:15.070720pt;}
._10{width:17.024000pt;}
._16{width:17.965653pt;}
._3{width:18.964907pt;}
._4{width:20.326827pt;}
._1c{width:21.748053pt;}
._1a{width:23.082667pt;}
._1b{width:24.133120pt;}
._19{width:25.167360pt;}
._11{width:26.240000pt;}
._14{width:32.576000pt;}
._15{width:33.920000pt;}
._17{width:35.350187pt;}
._18{width:36.427093pt;}
._f{width:53.536853pt;}
.fs5{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:3.520000pt;}
.y7f{bottom:8.160000pt;}
.y7d{bottom:8.320000pt;}
.yab{bottom:8.800000pt;}
.ya8{bottom:21.920000pt;}
.y7c{bottom:28.986667pt;}
.y7b{bottom:34.266667pt;}
.ya7{bottom:40.200000pt;}
.y7a{bottom:49.626667pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y30{bottom:152.986667pt;}
.y8f{bottom:156.506667pt;}
.y68{bottom:167.546667pt;}
.y4d{bottom:171.066667pt;}
.y2f{bottom:171.386667pt;}
.y8e{bottom:172.026667pt;}
.ybd{bottom:172.346667pt;}
.y99{bottom:173.306667pt;}
.yae{bottom:173.466667pt;}
.y76{bottom:178.106667pt;}
.yad{bottom:188.986667pt;}
.y2e{bottom:189.786667pt;}
.y8d{bottom:193.466667pt;}
.y67{bottom:195.066667pt;}
.y4c{bottom:198.746667pt;}
.ybc{bottom:199.866667pt;}
.y2d{bottom:208.186667pt;}
.yac{bottom:213.466667pt;}
.y8c{bottom:214.746667pt;}
.y75{bottom:215.226667pt;}
.y66{bottom:222.746667pt;}
.y4b{bottom:226.266667pt;}
.y2c{bottom:226.586667pt;}
.ybb{bottom:227.546667pt;}
.y8b{bottom:236.026667pt;}
.yaa{bottom:237.786667pt;}
.y2b{bottom:244.986667pt;}
.y65{bottom:250.106667pt;}
.y4a{bottom:253.946667pt;}
.yba{bottom:255.066667pt;}
.y8a{bottom:257.306667pt;}
.y74{bottom:261.466667pt;}
.ya6{bottom:262.266667pt;}
.y2a{bottom:263.386667pt;}
.y89{bottom:278.746667pt;}
.y49{bottom:281.466667pt;}
.y29{bottom:281.786667pt;}
.yb9{bottom:282.746667pt;}
.y64{bottom:286.266667pt;}
.y73{bottom:288.986667pt;}
.y63{bottom:294.266667pt;}
.y88{bottom:300.066667pt;}
.y28{bottom:300.226667pt;}
.y48{bottom:309.186667pt;}
.yb8{bottom:310.306667pt;}
.y72{bottom:316.706667pt;}
.y27{bottom:318.626667pt;}
.y87{bottom:321.346667pt;}
.ya5{bottom:321.666667pt;}
.y47{bottom:336.706667pt;}
.y26{bottom:337.026667pt;}
.yb7{bottom:337.826667pt;}
.ya4{bottom:340.066667pt;}
.y86{bottom:342.786667pt;}
.y71{bottom:344.226667pt;}
.y62{bottom:345.666667pt;}
.y25{bottom:355.426667pt;}
.ya3{bottom:363.746667pt;}
.y85{bottom:364.066667pt;}
.y46{bottom:364.226667pt;}
.yb6{bottom:365.506667pt;}
.y70{bottom:371.906667pt;}
.y61{bottom:373.186667pt;}
.yd4{bottom:373.506667pt;}
.y24{bottom:373.826667pt;}
.y84{bottom:385.346667pt;}
.ya2{bottom:391.266667pt;}
.yd3{bottom:391.586667pt;}
.y45{bottom:391.906667pt;}
.y23{bottom:392.226667pt;}
.yb5{bottom:393.026667pt;}
.y6f{bottom:395.586667pt;}
.y60{bottom:400.866667pt;}
.y83{bottom:406.786667pt;}
.yd2{bottom:409.506667pt;}
.y22{bottom:410.626667pt;}
.ya1{bottom:418.946667pt;}
.y44{bottom:419.426667pt;}
.y6e{bottom:419.906667pt;}
.yb4{bottom:420.706667pt;}
.yd1{bottom:427.906667pt;}
.y82{bottom:428.066667pt;}
.y5f{bottom:428.386667pt;}
.y21{bottom:429.026667pt;}
.yd0{bottom:446.306667pt;}
.ya0{bottom:446.466667pt;}
.y43{bottom:447.106667pt;}
.y20{bottom:447.426667pt;}
.yb3{bottom:448.226667pt;}
.y81{bottom:449.346667pt;}
.y6d{bottom:455.906667pt;}
.y5e{bottom:456.066667pt;}
.ycf{bottom:464.706667pt;}
.y1f{bottom:465.826667pt;}
.y80{bottom:470.786667pt;}
.y9f{bottom:474.146667pt;}
.y42{bottom:474.626667pt;}
.yb2{bottom:475.746667pt;}
.yce{bottom:483.106667pt;}
.y5d{bottom:483.586667pt;}
.y1e{bottom:484.226667pt;}
.y7e{bottom:492.066667pt;}
.ycd{bottom:501.506667pt;}
.y9e{bottom:501.666667pt;}
.y41{bottom:502.306667pt;}
.y1d{bottom:502.626667pt;}
.y5c{bottom:511.266667pt;}
.y79{bottom:513.346667pt;}
.ycc{bottom:519.906667pt;}
.y1c{bottom:521.026667pt;}
.y9d{bottom:529.346667pt;}
.y40{bottom:529.826667pt;}
.ycb{bottom:538.333333pt;}
.y5b{bottom:538.813333pt;}
.y1b{bottom:539.453333pt;}
.yb1{bottom:542.493333pt;}
.yca{bottom:556.733333pt;}
.y9c{bottom:556.893333pt;}
.y3f{bottom:557.533333pt;}
.y1a{bottom:557.853333pt;}
.y5a{bottom:566.493333pt;}
.yb0{bottom:570.013333pt;}
.yc9{bottom:575.133333pt;}
.y19{bottom:576.253333pt;}
.y78{bottom:579.613333pt;}
.y9b{bottom:580.733333pt;}
.y98{bottom:583.133333pt;}
.y3e{bottom:585.053333pt;}
.yc8{bottom:593.533333pt;}
.y59{bottom:594.013333pt;}
.y18{bottom:594.653333pt;}
.yaf{bottom:597.693333pt;}
.y77{bottom:598.013333pt;}
.y9a{bottom:600.893333pt;}
.y97{bottom:601.533333pt;}
.yc7{bottom:611.933333pt;}
.y3d{bottom:612.733333pt;}
.y17{bottom:613.053333pt;}
.y58{bottom:621.693333pt;}
.y96{bottom:625.213333pt;}
.yc6{bottom:630.333333pt;}
.y16{bottom:631.453333pt;}
.y3c{bottom:640.253333pt;}
.yc5{bottom:648.733333pt;}
.y57{bottom:649.213333pt;}
.y15{bottom:649.853333pt;}
.y95{bottom:652.893333pt;}
.yc4{bottom:667.133333pt;}
.y3b{bottom:667.933333pt;}
.y14{bottom:668.093333pt;}
.y56{bottom:676.893333pt;}
.y94{bottom:680.413333pt;}
.yc3{bottom:685.533333pt;}
.y13{bottom:686.493333pt;}
.y3a{bottom:695.453333pt;}
.y55{bottom:704.413333pt;}
.y12{bottom:704.893333pt;}
.y93{bottom:708.093333pt;}
.yc2{bottom:722.493333pt;}
.y39{bottom:723.133333pt;}
.y11{bottom:723.293333pt;}
.y54{bottom:732.093333pt;}
.y92{bottom:735.613333pt;}
.y10{bottom:741.693333pt;}
.y38{bottom:750.653333pt;}
.y53{bottom:759.613333pt;}
.yf{bottom:760.093333pt;}
.y91{bottom:763.293333pt;}
.yc1{bottom:778.053333pt;}
.y37{bottom:778.373333pt;}
.ye{bottom:778.533333pt;}
.y52{bottom:787.333333pt;}
.y90{bottom:790.853333pt;}
.yd{bottom:796.933333pt;}
.yc0{bottom:801.733333pt;}
.y36{bottom:805.893333pt;}
.y51{bottom:814.853333pt;}
.yc{bottom:815.333333pt;}
.y6c{bottom:818.533333pt;}
.ybf{bottom:826.053333pt;}
.y35{bottom:833.573333pt;}
.yb{bottom:835.013333pt;}
.y50{bottom:842.373333pt;}
.y6b{bottom:846.053333pt;}
.ybe{bottom:855.013333pt;}
.ya{bottom:859.493333pt;}
.y34{bottom:861.093333pt;}
.y6a{bottom:873.733333pt;}
.y4f{bottom:879.973333pt;}
.y9{bottom:883.973333pt;}
.y33{bottom:888.773333pt;}
.y69{bottom:901.253333pt;}
.y8{bottom:908.613333pt;}
.y32{bottom:916.293333pt;}
.y4e{bottom:928.933333pt;}
.y7{bottom:933.093333pt;}
.y31{bottom:953.893333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.hd{height:20.640000pt;}
.hf{height:20.672000pt;}
.he{height:20.800000pt;}
.h11{height:23.680000pt;}
.h12{height:44.730000pt;}
.hc{height:47.621250pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.h10{height:55.072000pt;}
.h2{height:57.375000pt;}
.hb{height:62.112000pt;}
.h7{height:66.507188pt;}
.h5{height:75.602187pt;}
.h8{height:76.215625pt;}
.h6{height:76.308750pt;}
.ha{height:89.375000pt;}
.h9{height:108.215625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:40.352000pt;}
.wb{width:40.480000pt;}
.w14{width:46.560000pt;}
.w6{width:51.040000pt;}
.wc{width:51.360000pt;}
.w9{width:53.760000pt;}
.w8{width:53.792000pt;}
.w13{width:54.240000pt;}
.w7{width:60.480000pt;}
.w4{width:62.560000pt;}
.w10{width:62.752000pt;}
.w12{width:64.512000pt;}
.w3{width:66.080000pt;}
.w5{width:66.432000pt;}
.w11{width:76.320000pt;}
.wd{width:81.440000pt;}
.wf{width:81.760000pt;}
.we{width:125.792000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x1b{left:18.080000pt;}
.x1c{left:22.240000pt;}
.x1a{left:24.640000pt;}
.x1d{left:26.600000pt;}
.x2{left:94.591988pt;}
.x5{left:124.351988pt;}
.x4{left:132.351988pt;}
.x7{left:141.786655pt;}
.x1f{left:153.146655pt;}
.x10{left:161.946667pt;}
.x8{left:169.146655pt;}
.x21{left:177.306667pt;}
.xd{left:195.546655pt;}
.xb{left:218.906655pt;}
.x11{left:225.146667pt;}
.x6{left:234.426655pt;}
.x12{left:292.386667pt;}
.x22{left:303.746667pt;}
.x13{left:344.066667pt;}
.x9{left:373.346655pt;}
.x23{left:386.146667pt;}
.x14{left:405.186667pt;}
.x1{left:415.773322pt;}
.x24{left:449.693333pt;}
.x15{left:459.613333pt;}
.x16{left:520.733333pt;}
.x25{left:526.653333pt;}
.x17{left:575.133333pt;}
.xa{left:588.133322pt;}
.x26{left:591.813333pt;}
.x18{left:616.133333pt;}
.x27{left:646.693333pt;}
.x19{left:657.253333pt;}
.x20{left:663.973322pt;}
.xe{left:682.853322pt;}
.x1e{left:692.613322pt;}
.x3{left:699.333322pt;}
.xc{left:738.693322pt;}
}




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