
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fbffcc512900d31118989bde.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ddbc54a1e666a5ce9fd4effc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_360f95c908578e29e176f195.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_b2880123681fbfd7913fe95f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ebae9fd501538f43934046b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_91134582eaac5a719aefcacf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aad18019f29968b379174df3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_6867ea60b8b84ff27e4a520c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c78346c0c1abb84b5160fbfa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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:ffb;src:url('chunks/assets/font_e945ee103dfe954e1cd3aa56.woff2')format("woff");}.ffb{font-family:ffb;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:-94.320000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.620000px;}
.lsc{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.378600px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.009360px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.720000px;}
.lsa{letter-spacing:4.140000px;}
.lse{letter-spacing:5.580000px;}
.ls2{letter-spacing:6.480000px;}
.ls13{letter-spacing:12.780000px;}
.ls11{letter-spacing:27.360000px;}
.ls1c{letter-spacing:30.384000px;}
.ls12{letter-spacing:32.940000px;}
.ls7{letter-spacing:39.420000px;}
.ls1a{letter-spacing:40.860000px;}
.ls15{letter-spacing:46.620000px;}
.ls0{letter-spacing:152.064000px;}
.ls1b{letter-spacing:168.245280px;}
.ls3{letter-spacing:198.144000px;}
.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;}
}
.ws5{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.050640px;}
.ws4{word-spacing:-20.700000px;}
.wsa{word-spacing:-20.681400px;}
.ws8{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._39{margin-left:-5.616000px;}
._24{margin-left:-2.293440px;}
._0{margin-left:-1.054080px;}
._3{width:1.944000px;}
._e{width:3.718080px;}
._13{width:4.752000px;}
._6{width:6.552000px;}
._b{width:7.848000px;}
._7{width:8.928000px;}
._15{width:10.156320px;}
._a{width:11.376000px;}
._9{width:12.648000px;}
._f{width:14.278080px;}
._8{width:15.480000px;}
._4{width:16.920000px;}
._14{width:18.617040px;}
._22{width:19.763280px;}
._12{width:21.934080px;}
._5{width:23.256000px;}
._25{width:24.598080px;}
._2{width:25.896000px;}
._1{width:26.904000px;}
._10{width:27.982080px;}
._11{width:29.027520px;}
._19{width:30.747600px;}
._23{width:31.926960px;}
._30{width:32.937840px;}
._1a{width:34.201440px;}
._1b{width:35.380800px;}
._c{width:37.152000px;}
._d{width:38.880000px;}
._2a{width:39.978480px;}
._16{width:41.024880px;}
._17{width:42.247440px;}
._21{width:43.247520px;}
._34{width:44.304240px;}
._1e{width:45.532800px;}
._2f{width:46.700640px;}
._2b{width:47.975760px;}
._35{width:49.278240px;}
._29{width:51.386400px;}
._18{width:52.565760px;}
._28{width:54.082080px;}
._31{width:57.451680px;}
._33{width:58.674240px;}
._2c{width:59.726160px;}
._26{width:60.989760px;}
._27{width:62.027520px;}
._2e{width:67.277040px;}
._2d{width:68.277600px;}
._1d{width:70.677360px;}
._32{width:72.826560px;}
._1f{width:80.870400px;}
._20{width:81.920160px;}
._36{width:86.234880px;}
._38{width:95.949360px;}
._37{width:97.215120px;}
._1c{width:170.424000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.960000px;}
.y56{bottom:24.660000px;}
.y5e{bottom:24.690000px;}
.y3{bottom:35.856000px;}
.y55{bottom:45.360000px;}
.y5d{bottom:45.390000px;}
.y2{bottom:55.476000px;}
.y68{bottom:66.054000px;}
.y59{bottom:66.060000px;}
.y5c{bottom:66.090000px;}
.y64{bottom:66.105000px;}
.y67{bottom:86.754000px;}
.y61{bottom:86.760000px;}
.y5b{bottom:86.790000px;}
.y87{bottom:93.096000px;}
.y53{bottom:94.536000px;}
.y2f{bottom:98.316000px;}
.y65{bottom:98.676000px;}
.y66{bottom:107.454000px;}
.y9e{bottom:114.156000px;}
.y86{bottom:120.816000px;}
.y52{bottom:122.256000px;}
.y2e{bottom:126.036000px;}
.y9d{bottom:134.856000px;}
.y85{bottom:148.536000px;}
.y51{bottom:149.976000px;}
.y2d{bottom:153.750000px;}
.y9c{bottom:155.550000px;}
.y9b{bottom:176.250000px;}
.y84{bottom:176.430000px;}
.y50{bottom:177.870000px;}
.y2c{bottom:181.470000px;}
.y9a{bottom:196.950000px;}
.y83{bottom:204.150000px;}
.y4f{bottom:205.590000px;}
.y2b{bottom:209.370000px;}
.y99{bottom:217.650000px;}
.y63{bottom:223.590000px;}
.y82{bottom:231.870000px;}
.y4e{bottom:233.310000px;}
.y2a{bottom:237.090000px;}
.y98{bottom:238.350000px;}
.y97{bottom:259.050000px;}
.y81{bottom:259.770000px;}
.y4d{bottom:261.210000px;}
.y29{bottom:264.810000px;}
.y96{bottom:279.750000px;}
.y80{bottom:287.535000px;}
.y4c{bottom:288.975000px;}
.y95{bottom:300.495000px;}
.y62{bottom:307.155000px;}
.y7f{bottom:315.255000px;}
.y28{bottom:316.335000px;}
.y4b{bottom:316.695000px;}
.y94{bottom:321.195000px;}
.y27{bottom:337.035000px;}
.y93{bottom:341.895000px;}
.y7e{bottom:342.975000px;}
.y4a{bottom:344.415000px;}
.y26{bottom:357.735000px;}
.y92{bottom:362.595000px;}
.y60{bottom:369.975000px;}
.y7d{bottom:370.875000px;}
.y49{bottom:372.315000px;}
.y25{bottom:378.435000px;}
.y91{bottom:383.295000px;}
.y7c{bottom:398.595000px;}
.y24{bottom:399.135000px;}
.y48{bottom:400.035000px;}
.y90{bottom:403.995000px;}
.y23{bottom:419.655000px;}
.y8f{bottom:424.695000px;}
.y7b{bottom:426.315000px;}
.y47{bottom:427.755000px;}
.y22{bottom:440.355000px;}
.y8e{bottom:445.395000px;}
.y7a{bottom:454.035000px;}
.y46{bottom:455.655000px;}
.y21{bottom:461.055000px;}
.y8d{bottom:466.095000px;}
.y5f{bottom:474.195000px;}
.y20{bottom:481.755000px;}
.y79{bottom:481.935000px;}
.y45{bottom:483.375000px;}
.y8c{bottom:486.795000px;}
.y1f{bottom:502.455000px;}
.y8b{bottom:507.495000px;}
.y78{bottom:509.655000px;}
.y44{bottom:511.095000px;}
.y1e{bottom:523.155000px;}
.y8a{bottom:528.195000px;}
.y77{bottom:537.375000px;}
.y43{bottom:538.815000px;}
.y1d{bottom:543.855000px;}
.y89{bottom:548.895000px;}
.y5a{bottom:557.715000px;}
.y1c{bottom:564.585000px;}
.y76{bottom:565.305000px;}
.y42{bottom:566.745000px;}
.y88{bottom:569.625000px;}
.y1b{bottom:585.285000px;}
.y75{bottom:593.025000px;}
.y41{bottom:594.465000px;}
.y1a{bottom:605.985000px;}
.y74{bottom:620.745000px;}
.y40{bottom:622.185000px;}
.y19{bottom:626.685000px;}
.y18{bottom:647.385000px;}
.y73{bottom:648.465000px;}
.y3f{bottom:649.905000px;}
.y58{bottom:662.145000px;}
.y17{bottom:668.085000px;}
.y72{bottom:676.365000px;}
.y3e{bottom:677.805000px;}
.y16{bottom:688.785000px;}
.y71{bottom:704.085000px;}
.y3d{bottom:705.525000px;}
.y15{bottom:709.485000px;}
.y14{bottom:730.185000px;}
.y70{bottom:731.805000px;}
.y3c{bottom:733.245000px;}
.y54{bottom:745.665000px;}
.y13{bottom:750.885000px;}
.y6f{bottom:759.705000px;}
.y3b{bottom:761.145000px;}
.y12{bottom:771.585000px;}
.y6e{bottom:787.425000px;}
.y3a{bottom:788.865000px;}
.y11{bottom:792.285000px;}
.y10{bottom:812.985000px;}
.y6d{bottom:815.145000px;}
.yac{bottom:816.405000px;}
.y39{bottom:816.585000px;}
.yf{bottom:833.685000px;}
.y6c{bottom:842.865000px;}
.y38{bottom:844.305000px;}
.yab{bottom:849.930000px;}
.ye{bottom:854.430000px;}
.y6b{bottom:863.430000px;}
.yaa{bottom:869.550000px;}
.y37{bottom:872.250000px;}
.ya9{bottom:890.250000px;}
.yd{bottom:895.830000px;}
.y36{bottom:899.970000px;}
.ya8{bottom:910.950000px;}
.yc{bottom:917.430000px;}
.y35{bottom:927.690000px;}
.ya7{bottom:931.650000px;}
.yb{bottom:938.490000px;}
.y6a{bottom:946.950000px;}
.ya6{bottom:952.350000px;}
.y34{bottom:955.590000px;}
.ya{bottom:959.190000px;}
.ya5{bottom:973.050000px;}
.y9{bottom:979.890000px;}
.y33{bottom:983.310000px;}
.ya4{bottom:993.750000px;}
.y8{bottom:1000.590000px;}
.y32{bottom:1011.030000px;}
.ya3{bottom:1014.450000px;}
.y7{bottom:1021.830000px;}
.y69{bottom:1030.470000px;}
.ya2{bottom:1035.150000px;}
.y31{bottom:1038.750000px;}
.y6{bottom:1046.130000px;}
.ya1{bottom:1055.850000px;}
.y30{bottom:1066.650000px;}
.y5{bottom:1070.250000px;}
.ya0{bottom:1076.550000px;}
.y4{bottom:1094.370000px;}
.y9f{bottom:1097.250000px;}
.y1{bottom:1194.120000px;}
.hd{height:52.066406px;}
.h7{height:54.878906px;}
.h4{height:59.436914px;}
.h9{height:60.917695px;}
.hb{height:62.100000px;}
.h2{height:65.884219px;}
.h6{height:70.628906px;}
.hc{height:70.664062px;}
.h3{height:72.562500px;}
.h15{height:74.004654px;}
.h13{height:82.620000px;}
.ha{height:82.635820px;}
.h8{height:82.676953px;}
.he{height:82.800000px;}
.h11{height:82.836000px;}
.h5{height:84.898125px;}
.h14{height:86.585445px;}
.h10{height:103.500000px;}
.hf{height:103.536000px;}
.h12{height:124.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:46.116000px;}
.wa{width:75.420000px;}
.w8{width:85.860000px;}
.w7{width:88.056000px;}
.w6{width:98.100000px;}
.w9{width:98.136000px;}
.w5{width:101.556000px;}
.w4{width:110.700000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.560000px;}
.x1{left:42.479987px;}
.x16{left:53.099987px;}
.xd{left:77.400000px;}
.xa{left:84.959987px;}
.x5{left:95.795987px;}
.x18{left:111.995987px;}
.xf{left:124.236000px;}
.xb{left:127.475987px;}
.xc{left:138.995987px;}
.x4{left:173.369987px;}
.x10{left:235.650000px;}
.x7{left:306.434987px;}
.x8{left:308.954987px;}
.x6{left:322.454987px;}
.x11{left:338.115000px;}
.x17{left:341.714987px;}
.x2{left:369.254987px;}
.x12{left:437.115000px;}
.x9{left:443.774987px;}
.x3{left:446.474987px;}
.x13{left:525.885000px;}
.x14{left:612.645000px;}
.x15{left:711.690000px;}
@media print{
.v2{vertical-align:-83.840000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.440000pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.336533pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.008320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.640000pt;}
.lsa{letter-spacing:3.680000pt;}
.lse{letter-spacing:4.960000pt;}
.ls2{letter-spacing:5.760000pt;}
.ls13{letter-spacing:11.360000pt;}
.ls11{letter-spacing:24.320000pt;}
.ls1c{letter-spacing:27.008000pt;}
.ls12{letter-spacing:29.280000pt;}
.ls7{letter-spacing:35.040000pt;}
.ls1a{letter-spacing:36.320000pt;}
.ls15{letter-spacing:41.440000pt;}
.ls0{letter-spacing:135.168000pt;}
.ls1b{letter-spacing:149.551360pt;}
.ls3{letter-spacing:176.128000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.711680pt;}
.ws4{word-spacing:-18.400000pt;}
.wsa{word-spacing:-18.383467pt;}
.ws8{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._39{margin-left:-4.992000pt;}
._24{margin-left:-2.038613pt;}
._0{margin-left:-0.936960pt;}
._3{width:1.728000pt;}
._e{width:3.304960pt;}
._13{width:4.224000pt;}
._6{width:5.824000pt;}
._b{width:6.976000pt;}
._7{width:7.936000pt;}
._15{width:9.027840pt;}
._a{width:10.112000pt;}
._9{width:11.242667pt;}
._f{width:12.691627pt;}
._8{width:13.760000pt;}
._4{width:15.040000pt;}
._14{width:16.548480pt;}
._22{width:17.567360pt;}
._12{width:19.496960pt;}
._5{width:20.672000pt;}
._25{width:21.864960pt;}
._2{width:23.018667pt;}
._1{width:23.914667pt;}
._10{width:24.872960pt;}
._11{width:25.802240pt;}
._19{width:27.331200pt;}
._23{width:28.379520pt;}
._30{width:29.278080pt;}
._1a{width:30.401280pt;}
._1b{width:31.449600pt;}
._c{width:33.024000pt;}
._d{width:34.560000pt;}
._2a{width:35.536427pt;}
._16{width:36.466560pt;}
._17{width:37.553280pt;}
._21{width:38.442240pt;}
._34{width:39.381547pt;}
._1e{width:40.473600pt;}
._2f{width:41.511680pt;}
._2b{width:42.645120pt;}
._35{width:43.802880pt;}
._29{width:45.676800pt;}
._18{width:46.725120pt;}
._28{width:48.072960pt;}
._31{width:51.068160pt;}
._33{width:52.154880pt;}
._2c{width:53.089920pt;}
._26{width:54.213120pt;}
._27{width:55.135573pt;}
._2e{width:59.801813pt;}
._2d{width:60.691200pt;}
._1d{width:62.824320pt;}
._32{width:64.734720pt;}
._1f{width:71.884800pt;}
._20{width:72.817920pt;}
._36{width:76.653227pt;}
._38{width:85.288320pt;}
._37{width:86.413440pt;}
._1c{width:151.488000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:3.520000pt;}
.y56{bottom:21.920000pt;}
.y5e{bottom:21.946667pt;}
.y3{bottom:31.872000pt;}
.y55{bottom:40.320000pt;}
.y5d{bottom:40.346667pt;}
.y2{bottom:49.312000pt;}
.y68{bottom:58.714667pt;}
.y59{bottom:58.720000pt;}
.y5c{bottom:58.746667pt;}
.y64{bottom:58.760000pt;}
.y67{bottom:77.114667pt;}
.y61{bottom:77.120000pt;}
.y5b{bottom:77.146667pt;}
.y87{bottom:82.752000pt;}
.y53{bottom:84.032000pt;}
.y2f{bottom:87.392000pt;}
.y65{bottom:87.712000pt;}
.y66{bottom:95.514667pt;}
.y9e{bottom:101.472000pt;}
.y86{bottom:107.392000pt;}
.y52{bottom:108.672000pt;}
.y2e{bottom:112.032000pt;}
.y9d{bottom:119.872000pt;}
.y85{bottom:132.032000pt;}
.y51{bottom:133.312000pt;}
.y2d{bottom:136.666667pt;}
.y9c{bottom:138.266667pt;}
.y9b{bottom:156.666667pt;}
.y84{bottom:156.826667pt;}
.y50{bottom:158.106667pt;}
.y2c{bottom:161.306667pt;}
.y9a{bottom:175.066667pt;}
.y83{bottom:181.466667pt;}
.y4f{bottom:182.746667pt;}
.y2b{bottom:186.106667pt;}
.y99{bottom:193.466667pt;}
.y63{bottom:198.746667pt;}
.y82{bottom:206.106667pt;}
.y4e{bottom:207.386667pt;}
.y2a{bottom:210.746667pt;}
.y98{bottom:211.866667pt;}
.y97{bottom:230.266667pt;}
.y81{bottom:230.906667pt;}
.y4d{bottom:232.186667pt;}
.y29{bottom:235.386667pt;}
.y96{bottom:248.666667pt;}
.y80{bottom:255.586667pt;}
.y4c{bottom:256.866667pt;}
.y95{bottom:267.106667pt;}
.y62{bottom:273.026667pt;}
.y7f{bottom:280.226667pt;}
.y28{bottom:281.186667pt;}
.y4b{bottom:281.506667pt;}
.y94{bottom:285.506667pt;}
.y27{bottom:299.586667pt;}
.y93{bottom:303.906667pt;}
.y7e{bottom:304.866667pt;}
.y4a{bottom:306.146667pt;}
.y26{bottom:317.986667pt;}
.y92{bottom:322.306667pt;}
.y60{bottom:328.866667pt;}
.y7d{bottom:329.666667pt;}
.y49{bottom:330.946667pt;}
.y25{bottom:336.386667pt;}
.y91{bottom:340.706667pt;}
.y7c{bottom:354.306667pt;}
.y24{bottom:354.786667pt;}
.y48{bottom:355.586667pt;}
.y90{bottom:359.106667pt;}
.y23{bottom:373.026667pt;}
.y8f{bottom:377.506667pt;}
.y7b{bottom:378.946667pt;}
.y47{bottom:380.226667pt;}
.y22{bottom:391.426667pt;}
.y8e{bottom:395.906667pt;}
.y7a{bottom:403.586667pt;}
.y46{bottom:405.026667pt;}
.y21{bottom:409.826667pt;}
.y8d{bottom:414.306667pt;}
.y5f{bottom:421.506667pt;}
.y20{bottom:428.226667pt;}
.y79{bottom:428.386667pt;}
.y45{bottom:429.666667pt;}
.y8c{bottom:432.706667pt;}
.y1f{bottom:446.626667pt;}
.y8b{bottom:451.106667pt;}
.y78{bottom:453.026667pt;}
.y44{bottom:454.306667pt;}
.y1e{bottom:465.026667pt;}
.y8a{bottom:469.506667pt;}
.y77{bottom:477.666667pt;}
.y43{bottom:478.946667pt;}
.y1d{bottom:483.426667pt;}
.y89{bottom:487.906667pt;}
.y5a{bottom:495.746667pt;}
.y1c{bottom:501.853333pt;}
.y76{bottom:502.493333pt;}
.y42{bottom:503.773333pt;}
.y88{bottom:506.333333pt;}
.y1b{bottom:520.253333pt;}
.y75{bottom:527.133333pt;}
.y41{bottom:528.413333pt;}
.y1a{bottom:538.653333pt;}
.y74{bottom:551.773333pt;}
.y40{bottom:553.053333pt;}
.y19{bottom:557.053333pt;}
.y18{bottom:575.453333pt;}
.y73{bottom:576.413333pt;}
.y3f{bottom:577.693333pt;}
.y58{bottom:588.573333pt;}
.y17{bottom:593.853333pt;}
.y72{bottom:601.213333pt;}
.y3e{bottom:602.493333pt;}
.y16{bottom:612.253333pt;}
.y71{bottom:625.853333pt;}
.y3d{bottom:627.133333pt;}
.y15{bottom:630.653333pt;}
.y14{bottom:649.053333pt;}
.y70{bottom:650.493333pt;}
.y3c{bottom:651.773333pt;}
.y54{bottom:662.813333pt;}
.y13{bottom:667.453333pt;}
.y6f{bottom:675.293333pt;}
.y3b{bottom:676.573333pt;}
.y12{bottom:685.853333pt;}
.y6e{bottom:699.933333pt;}
.y3a{bottom:701.213333pt;}
.y11{bottom:704.253333pt;}
.y10{bottom:722.653333pt;}
.y6d{bottom:724.573333pt;}
.yac{bottom:725.693333pt;}
.y39{bottom:725.853333pt;}
.yf{bottom:741.053333pt;}
.y6c{bottom:749.213333pt;}
.y38{bottom:750.493333pt;}
.yab{bottom:755.493333pt;}
.ye{bottom:759.493333pt;}
.y6b{bottom:767.493333pt;}
.yaa{bottom:772.933333pt;}
.y37{bottom:775.333333pt;}
.ya9{bottom:791.333333pt;}
.yd{bottom:796.293333pt;}
.y36{bottom:799.973333pt;}
.ya8{bottom:809.733333pt;}
.yc{bottom:815.493333pt;}
.y35{bottom:824.613333pt;}
.ya7{bottom:828.133333pt;}
.yb{bottom:834.213333pt;}
.y6a{bottom:841.733333pt;}
.ya6{bottom:846.533333pt;}
.y34{bottom:849.413333pt;}
.ya{bottom:852.613333pt;}
.ya5{bottom:864.933333pt;}
.y9{bottom:871.013333pt;}
.y33{bottom:874.053333pt;}
.ya4{bottom:883.333333pt;}
.y8{bottom:889.413333pt;}
.y32{bottom:898.693333pt;}
.ya3{bottom:901.733333pt;}
.y7{bottom:908.293333pt;}
.y69{bottom:915.973333pt;}
.ya2{bottom:920.133333pt;}
.y31{bottom:923.333333pt;}
.y6{bottom:929.893333pt;}
.ya1{bottom:938.533333pt;}
.y30{bottom:948.133333pt;}
.y5{bottom:951.333333pt;}
.ya0{bottom:956.933333pt;}
.y4{bottom:972.773333pt;}
.y9f{bottom:975.333333pt;}
.y1{bottom:1061.440000pt;}
.hd{height:46.281250pt;}
.h7{height:48.781250pt;}
.h4{height:52.832812pt;}
.h9{height:54.149062pt;}
.hb{height:55.200000pt;}
.h2{height:58.563750pt;}
.h6{height:62.781250pt;}
.hc{height:62.812500pt;}
.h3{height:64.500000pt;}
.h15{height:65.781915pt;}
.h13{height:73.440000pt;}
.ha{height:73.454062pt;}
.h8{height:73.490625pt;}
.he{height:73.600000pt;}
.h11{height:73.632000pt;}
.h5{height:75.465000pt;}
.h14{height:76.964840pt;}
.h10{height:92.000000pt;}
.hf{height:92.032000pt;}
.h12{height:110.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:40.992000pt;}
.wa{width:67.040000pt;}
.w8{width:76.320000pt;}
.w7{width:78.272000pt;}
.w6{width:87.200000pt;}
.w9{width:87.232000pt;}
.w5{width:90.272000pt;}
.w4{width:98.400000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.720000pt;}
.x1{left:37.759988pt;}
.x16{left:47.199988pt;}
.xd{left:68.800000pt;}
.xa{left:75.519988pt;}
.x5{left:85.151988pt;}
.x18{left:99.551988pt;}
.xf{left:110.432000pt;}
.xb{left:113.311988pt;}
.xc{left:123.551988pt;}
.x4{left:154.106655pt;}
.x10{left:209.466667pt;}
.x7{left:272.386655pt;}
.x8{left:274.626655pt;}
.x6{left:286.626655pt;}
.x11{left:300.546667pt;}
.x17{left:303.746655pt;}
.x2{left:328.226655pt;}
.x12{left:388.546667pt;}
.x9{left:394.466655pt;}
.x3{left:396.866655pt;}
.x13{left:467.453333pt;}
.x14{left:544.573333pt;}
.x15{left:632.613333pt;}
}




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