
    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_40f2ffd1f1bcab7946ec3a0e.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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6c6f6e09eb1c557f113a1b0f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a8ec3e1868a0667ad304c2ad.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_844940d6a808ddd115d1e8b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_675d5c534dfcf43e53f8210e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_911a4a12a808003456c2fb90.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.786133;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_b79150cc27823a3af5e19115.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-1.620000px;}
.ls1f{letter-spacing:-1.458000px;}
.ls18{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.690000px;}
.lsc{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.341400px;}
.ls19{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.028080px;}
.ls7{letter-spacing:-0.018720px;}
.ls5{letter-spacing:-0.000001px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.079920px;}
.ls13{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.208080px;}
.ls15{letter-spacing:0.252720px;}
.ls14{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.369360px;}
.ls9{letter-spacing:0.378600px;}
.lse{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.513360px;}
.ls22{letter-spacing:0.522720px;}
.ls11{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.549360px;}
.ls10{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.980000px;}
.ls1c{letter-spacing:2.700000px;}
.ls16{letter-spacing:118.397280px;}
.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;}
}
.wsd{word-spacing:-24.300000px;}
.wsc{word-spacing:-22.140000px;}
.ws5{word-spacing:-21.438600px;}
.ws8{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.410400px;}
.ws6{word-spacing:-21.401400px;}
.ws15{word-spacing:-21.312720px;}
.wsa{word-spacing:-21.097440px;}
.ws14{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.ws4{word-spacing:-21.031920px;}
.ws17{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.ws16{word-spacing:-19.602000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.712000px;}
.wsf{word-spacing:-16.865400px;}
.wse{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.254600px;}
.ws10{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.300000px;}
.ws13{word-spacing:-14.940000px;}
.wsb{word-spacing:0.000000px;}
._1b{margin-left:-6.359280px;}
._14{margin-left:-5.202240px;}
._8{margin-left:-3.811440px;}
._3{margin-left:-2.724000px;}
._2{margin-left:-1.158720px;}
._1{width:1.104000px;}
._0{width:2.208000px;}
._a{width:3.601680px;}
._b{width:4.871280px;}
._5{width:6.410640px;}
._16{width:7.701360px;}
._15{width:8.712720px;}
._1d{width:9.849600px;}
._18{width:11.119680px;}
._19{width:12.588240px;}
._17{width:14.068080px;}
._20{width:15.500160px;}
._4{width:16.846560px;}
._d{width:18.617040px;}
._e{width:19.696800px;}
._1a{width:22.767360px;}
._24{width:24.624000px;}
._27{width:27.562080px;}
._11{width:28.620960px;}
._6{width:33.359040px;}
._1f{width:34.360800px;}
._21{width:35.760960px;}
._12{width:36.981360px;}
._22{width:38.074560px;}
._13{width:39.237120px;}
._1e{width:40.258800px;}
._9{width:41.846640px;}
._26{width:43.362960px;}
._25{width:45.757200px;}
._1c{width:47.835120px;}
._f{width:49.116000px;}
._10{width:51.044880px;}
._23{width:57.788640px;}
._c{width:80.344320px;}
._7{width:81.904080px;}
._29{width:101.664000px;}
._2a{width:102.690720px;}
._28{width:131.904000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.240000px;}
.y3{bottom:3.960000px;}
.y70{bottom:4.140000px;}
.y51{bottom:4.320000px;}
.y54{bottom:4.680000px;}
.ya{bottom:5.220000px;}
.y52{bottom:5.760000px;}
.y6b{bottom:5.940000px;}
.y5b{bottom:6.885000px;}
.y9{bottom:7.380000px;}
.y64{bottom:11.520000px;}
.y62{bottom:11.700000px;}
.y5e{bottom:11.880000px;}
.y6d{bottom:13.860000px;}
.y69{bottom:14.940000px;}
.y59{bottom:15.840000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y65{bottom:20.340000px;}
.y5c{bottom:20.520000px;}
.y6e{bottom:22.500000px;}
.y67{bottom:23.580000px;}
.y57{bottom:24.480000px;}
.y2{bottom:24.660000px;}
.y55{bottom:25.200000px;}
.y4d{bottom:26.100000px;}
.y60{bottom:28.980000px;}
.y68{bottom:32.220000px;}
.y58{bottom:33.120000px;}
.y50{bottom:36.540000px;}
.y4f{bottom:41.040000px;}
.y8{bottom:44.640000px;}
.y61{bottom:46.260000px;}
.y4e{bottom:50.400000px;}
.y4c{bottom:57.600000px;}
.y53{bottom:70.020000px;}
.yb4{bottom:95.256000px;}
.y4b{bottom:96.840000px;}
.ya7{bottom:98.856000px;}
.y2e{bottom:109.656000px;}
.y49{bottom:117.036000px;}
.y84{bottom:119.736000px;}
.yb3{bottom:122.976000px;}
.ya6{bottom:126.576000px;}
.y2d{bottom:133.956000px;}
.y83{bottom:147.456000px;}
.yb2{bottom:150.870000px;}
.y48{bottom:153.210000px;}
.ya5{bottom:154.470000px;}
.y2c{bottom:161.670000px;}
.y82{bottom:175.350000px;}
.yb1{bottom:178.590000px;}
.ya4{bottom:182.190000px;}
.y2b{bottom:189.390000px;}
.y81{bottom:203.070000px;}
.yb0{bottom:206.310000px;}
.ya3{bottom:209.910000px;}
.y2a{bottom:217.110000px;}
.y47{bottom:225.570000px;}
.y80{bottom:230.790000px;}
.yaf{bottom:234.030000px;}
.ya2{bottom:237.630000px;}
.y29{bottom:245.010000px;}
.y7f{bottom:258.510000px;}
.y46{bottom:261.930000px;}
.ya1{bottom:265.530000px;}
.y28{bottom:272.730000px;}
.y7e{bottom:286.410000px;}
.yae{bottom:289.650000px;}
.ya0{bottom:293.250000px;}
.y45{bottom:298.110000px;}
.y27{bottom:300.450000px;}
.y7d{bottom:314.130000px;}
.yad{bottom:317.370000px;}
.y9f{bottom:320.970000px;}
.y26{bottom:328.350000px;}
.y44{bottom:334.290000px;}
.y7c{bottom:341.895000px;}
.yac{bottom:345.135000px;}
.y9e{bottom:348.915000px;}
.y25{bottom:356.115000px;}
.y7b{bottom:369.615000px;}
.y43{bottom:370.515000px;}
.yab{bottom:373.035000px;}
.y9d{bottom:376.635000px;}
.y24{bottom:383.835000px;}
.y7a{bottom:397.515000px;}
.yaa{bottom:400.755000px;}
.y9c{bottom:404.355000px;}
.y42{bottom:406.875000px;}
.y23{bottom:411.555000px;}
.y79{bottom:425.235000px;}
.ya9{bottom:428.475000px;}
.y9b{bottom:432.075000px;}
.y22{bottom:439.455000px;}
.y41{bottom:443.055000px;}
.y78{bottom:452.955000px;}
.ya8{bottom:456.375000px;}
.y9a{bottom:459.975000px;}
.y21{bottom:467.175000px;}
.y40{bottom:479.235000px;}
.y77{bottom:480.855000px;}
.y99{bottom:484.095000px;}
.y20{bottom:494.895000px;}
.y76{bottom:508.575000px;}
.y98{bottom:511.815000px;}
.y3f{bottom:515.415000px;}
.y1f{bottom:522.795000px;}
.y75{bottom:536.295000px;}
.y97{bottom:539.535000px;}
.y1e{bottom:550.515000px;}
.y3e{bottom:551.775000px;}
.y74{bottom:564.015000px;}
.y96{bottom:567.435000px;}
.y1d{bottom:586.695000px;}
.y3d{bottom:587.955000px;}
.y73{bottom:591.915000px;}
.y95{bottom:595.155000px;}
.y72{bottom:619.665000px;}
.y1c{bottom:622.905000px;}
.y3c{bottom:624.165000px;}
.y71{bottom:647.385000px;}
.y94{bottom:650.805000px;}
.y1b{bottom:659.085000px;}
.y3b{bottom:660.345000px;}
.y6c{bottom:667.725000px;}
.y93{bottom:678.525000px;}
.y6f{bottom:687.345000px;}
.y1a{bottom:695.445000px;}
.y3a{bottom:696.525000px;}
.y92{bottom:706.245000px;}
.y66{bottom:706.785000px;}
.y19{bottom:731.625000px;}
.y39{bottom:732.885000px;}
.y91{bottom:733.965000px;}
.y6a{bottom:742.065000px;}
.y90{bottom:761.865000px;}
.y5f{bottom:765.465000px;}
.y18{bottom:767.805000px;}
.y38{bottom:769.065000px;}
.y8f{bottom:789.585000px;}
.y63{bottom:800.565000px;}
.y17{bottom:803.985000px;}
.y37{bottom:805.245000px;}
.y8e{bottom:817.305000px;}
.y56{bottom:835.125000px;}
.y16{bottom:840.345000px;}
.y36{bottom:841.425000px;}
.y8d{bottom:845.025000px;}
.y35{bottom:869.325000px;}
.y5a{bottom:870.405000px;}
.y8c{bottom:872.970000px;}
.y15{bottom:876.570000px;}
.y4a{bottom:895.650000px;}
.y8b{bottom:900.690000px;}
.y14{bottom:904.290000px;}
.y34{bottom:905.550000px;}
.y8a{bottom:928.410000px;}
.y13{bottom:932.010000px;}
.y33{bottom:941.730000px;}
.y89{bottom:956.310000px;}
.y12{bottom:959.910000px;}
.y32{bottom:977.910000px;}
.y88{bottom:984.030000px;}
.y11{bottom:987.630000px;}
.y87{bottom:1011.750000px;}
.y31{bottom:1014.270000px;}
.y10{bottom:1015.350000px;}
.y86{bottom:1039.470000px;}
.yf{bottom:1043.250000px;}
.y30{bottom:1050.450000px;}
.y85{bottom:1067.370000px;}
.ye{bottom:1070.970000px;}
.y2f{bottom:1086.630000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h23{height:18.720000px;}
.h24{height:18.900000px;}
.h21{height:22.500000px;}
.h19{height:24.516000px;}
.h7{height:27.576000px;}
.h1e{height:33.840000px;}
.h1f{height:34.380000px;}
.h1b{height:34.560000px;}
.h22{height:38.340000px;}
.h2{height:41.400000px;}
.h1c{height:42.164648px;}
.h11{height:46.736719px;}
.h18{height:52.669336px;}
.h4{height:53.709961px;}
.h20{height:57.780000px;}
.h17{height:58.651172px;}
.hc{height:59.436914px;}
.h16{height:59.796000px;}
.h1a{height:60.226875px;}
.hf{height:65.010938px;}
.h15{height:66.757472px;}
.h13{height:66.757481px;}
.h12{height:66.757482px;}
.h10{height:66.757488px;}
.h14{height:66.757493px;}
.h6{height:66.757500px;}
.h1d{height:68.940000px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hd{height:74.244727px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.h25{height:87.695156px;}
.h9{height:96.508125px;}
.he{height:190.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:30.780000px;}
.w7{width:31.356000px;}
.wc{width:31.500000px;}
.we{width:52.200000px;}
.w9{width:52.380000px;}
.wa{width:52.416000px;}
.wb{width:52.596000px;}
.wf{width:63.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w8{width:94.860000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.560000px;}
.x6{left:8.640000px;}
.x8{left:17.460000px;}
.x18{left:19.800000px;}
.x19{left:23.436000px;}
.xa{left:25.740000px;}
.x1{left:31.860000px;}
.x1d{left:42.840000px;}
.x2{left:44.460000px;}
.x1b{left:53.274000px;}
.x5{left:59.970000px;}
.x7{left:84.959987px;}
.x12{left:95.435987px;}
.xc{left:109.295987px;}
.x1a{left:117.396000px;}
.x14{left:118.835987px;}
.xb{left:127.475987px;}
.x16{left:152.669987px;}
.x10{left:169.949987px;}
.x1c{left:212.970000px;}
.x1e{left:266.250000px;}
.xd{left:305.354987px;}
.x1f{left:319.395000px;}
.x13{left:328.214987px;}
.x15{left:346.034987px;}
.x11{left:368.894987px;}
.x20{left:372.495000px;}
.xf{left:374.834987px;}
.x17{left:389.234987px;}
.x21{left:425.595000px;}
.xe{left:446.474987px;}
.x2a{left:467.744987px;}
.x22{left:478.905000px;}
.x3{left:521.205000px;}
.x23{left:532.005000px;}
.x24{left:585.285000px;}
.x25{left:617.505000px;}
.x26{left:649.005000px;}
.x27{left:702.150000px;}
.x28{left:755.430000px;}
.x4{left:792.690000px;}
.x9{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.440000pt;}
.ls1f{letter-spacing:-1.296000pt;}
.ls18{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.613333pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.303467pt;}
.ls19{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.024960pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:-0.000001pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.071040pt;}
.ls13{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.184960pt;}
.ls15{letter-spacing:0.224640pt;}
.ls14{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.328320pt;}
.ls9{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.456320pt;}
.ls22{letter-spacing:0.464640pt;}
.ls11{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.488320pt;}
.ls10{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.760000pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls16{letter-spacing:105.242027pt;}
.wsd{word-spacing:-21.600000pt;}
.wsc{word-spacing:-19.680000pt;}
.ws5{word-spacing:-19.056533pt;}
.ws8{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.031467pt;}
.ws6{word-spacing:-19.023467pt;}
.ws15{word-spacing:-18.944640pt;}
.wsa{word-spacing:-18.753280pt;}
.ws14{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.ws4{word-spacing:-18.695040pt;}
.ws17{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.ws16{word-spacing:-17.424000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.744000pt;}
.wsf{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.280000pt;}
.wsb{word-spacing:0.000000pt;}
._1b{margin-left:-5.652693pt;}
._14{margin-left:-4.624213pt;}
._8{margin-left:-3.387947pt;}
._3{margin-left:-2.421333pt;}
._2{margin-left:-1.029973pt;}
._1{width:0.981333pt;}
._0{width:1.962667pt;}
._a{width:3.201493pt;}
._b{width:4.330027pt;}
._5{width:5.698347pt;}
._16{width:6.845653pt;}
._15{width:7.744640pt;}
._1d{width:8.755200pt;}
._18{width:9.884160pt;}
._19{width:11.189547pt;}
._17{width:12.504960pt;}
._20{width:13.777920pt;}
._4{width:14.974720pt;}
._d{width:16.548480pt;}
._e{width:17.508267pt;}
._1a{width:20.237653pt;}
._24{width:21.888000pt;}
._27{width:24.499627pt;}
._11{width:25.440853pt;}
._6{width:29.652480pt;}
._1f{width:30.542933pt;}
._21{width:31.787520pt;}
._12{width:32.872320pt;}
._22{width:33.844053pt;}
._13{width:34.877440pt;}
._1e{width:35.785600pt;}
._9{width:37.197013pt;}
._26{width:38.544853pt;}
._25{width:40.673067pt;}
._1c{width:42.520107pt;}
._f{width:43.658667pt;}
._10{width:45.373227pt;}
._23{width:51.367680pt;}
._c{width:71.417173pt;}
._7{width:72.803627pt;}
._29{width:90.368000pt;}
._2a{width:91.280640pt;}
._28{width:117.248000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.880000pt;}
.y3{bottom:3.520000pt;}
.y70{bottom:3.680000pt;}
.y51{bottom:3.840000pt;}
.y54{bottom:4.160000pt;}
.ya{bottom:4.640000pt;}
.y52{bottom:5.120000pt;}
.y6b{bottom:5.280000pt;}
.y5b{bottom:6.120000pt;}
.y9{bottom:6.560000pt;}
.y64{bottom:10.240000pt;}
.y62{bottom:10.400000pt;}
.y5e{bottom:10.560000pt;}
.y6d{bottom:12.320000pt;}
.y69{bottom:13.280000pt;}
.y59{bottom:14.080000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y65{bottom:18.080000pt;}
.y5c{bottom:18.240000pt;}
.y6e{bottom:20.000000pt;}
.y67{bottom:20.960000pt;}
.y57{bottom:21.760000pt;}
.y2{bottom:21.920000pt;}
.y55{bottom:22.400000pt;}
.y4d{bottom:23.200000pt;}
.y60{bottom:25.760000pt;}
.y68{bottom:28.640000pt;}
.y58{bottom:29.440000pt;}
.y50{bottom:32.480000pt;}
.y4f{bottom:36.480000pt;}
.y8{bottom:39.680000pt;}
.y61{bottom:41.120000pt;}
.y4e{bottom:44.800000pt;}
.y4c{bottom:51.200000pt;}
.y53{bottom:62.240000pt;}
.yb4{bottom:84.672000pt;}
.y4b{bottom:86.080000pt;}
.ya7{bottom:87.872000pt;}
.y2e{bottom:97.472000pt;}
.y49{bottom:104.032000pt;}
.y84{bottom:106.432000pt;}
.yb3{bottom:109.312000pt;}
.ya6{bottom:112.512000pt;}
.y2d{bottom:119.072000pt;}
.y83{bottom:131.072000pt;}
.yb2{bottom:134.106667pt;}
.y48{bottom:136.186667pt;}
.ya5{bottom:137.306667pt;}
.y2c{bottom:143.706667pt;}
.y82{bottom:155.866667pt;}
.yb1{bottom:158.746667pt;}
.ya4{bottom:161.946667pt;}
.y2b{bottom:168.346667pt;}
.y81{bottom:180.506667pt;}
.yb0{bottom:183.386667pt;}
.ya3{bottom:186.586667pt;}
.y2a{bottom:192.986667pt;}
.y47{bottom:200.506667pt;}
.y80{bottom:205.146667pt;}
.yaf{bottom:208.026667pt;}
.ya2{bottom:211.226667pt;}
.y29{bottom:217.786667pt;}
.y7f{bottom:229.786667pt;}
.y46{bottom:232.826667pt;}
.ya1{bottom:236.026667pt;}
.y28{bottom:242.426667pt;}
.y7e{bottom:254.586667pt;}
.yae{bottom:257.466667pt;}
.ya0{bottom:260.666667pt;}
.y45{bottom:264.986667pt;}
.y27{bottom:267.066667pt;}
.y7d{bottom:279.226667pt;}
.yad{bottom:282.106667pt;}
.y9f{bottom:285.306667pt;}
.y26{bottom:291.866667pt;}
.y44{bottom:297.146667pt;}
.y7c{bottom:303.906667pt;}
.yac{bottom:306.786667pt;}
.y9e{bottom:310.146667pt;}
.y25{bottom:316.546667pt;}
.y7b{bottom:328.546667pt;}
.y43{bottom:329.346667pt;}
.yab{bottom:331.586667pt;}
.y9d{bottom:334.786667pt;}
.y24{bottom:341.186667pt;}
.y7a{bottom:353.346667pt;}
.yaa{bottom:356.226667pt;}
.y9c{bottom:359.426667pt;}
.y42{bottom:361.666667pt;}
.y23{bottom:365.826667pt;}
.y79{bottom:377.986667pt;}
.ya9{bottom:380.866667pt;}
.y9b{bottom:384.066667pt;}
.y22{bottom:390.626667pt;}
.y41{bottom:393.826667pt;}
.y78{bottom:402.626667pt;}
.ya8{bottom:405.666667pt;}
.y9a{bottom:408.866667pt;}
.y21{bottom:415.266667pt;}
.y40{bottom:425.986667pt;}
.y77{bottom:427.426667pt;}
.y99{bottom:430.306667pt;}
.y20{bottom:439.906667pt;}
.y76{bottom:452.066667pt;}
.y98{bottom:454.946667pt;}
.y3f{bottom:458.146667pt;}
.y1f{bottom:464.706667pt;}
.y75{bottom:476.706667pt;}
.y97{bottom:479.586667pt;}
.y1e{bottom:489.346667pt;}
.y3e{bottom:490.466667pt;}
.y74{bottom:501.346667pt;}
.y96{bottom:504.386667pt;}
.y1d{bottom:521.506667pt;}
.y3d{bottom:522.626667pt;}
.y73{bottom:526.146667pt;}
.y95{bottom:529.026667pt;}
.y72{bottom:550.813333pt;}
.y1c{bottom:553.693333pt;}
.y3c{bottom:554.813333pt;}
.y71{bottom:575.453333pt;}
.y94{bottom:578.493333pt;}
.y1b{bottom:585.853333pt;}
.y3b{bottom:586.973333pt;}
.y6c{bottom:593.533333pt;}
.y93{bottom:603.133333pt;}
.y6f{bottom:610.973333pt;}
.y1a{bottom:618.173333pt;}
.y3a{bottom:619.133333pt;}
.y92{bottom:627.773333pt;}
.y66{bottom:628.253333pt;}
.y19{bottom:650.333333pt;}
.y39{bottom:651.453333pt;}
.y91{bottom:652.413333pt;}
.y6a{bottom:659.613333pt;}
.y90{bottom:677.213333pt;}
.y5f{bottom:680.413333pt;}
.y18{bottom:682.493333pt;}
.y38{bottom:683.613333pt;}
.y8f{bottom:701.853333pt;}
.y63{bottom:711.613333pt;}
.y17{bottom:714.653333pt;}
.y37{bottom:715.773333pt;}
.y8e{bottom:726.493333pt;}
.y56{bottom:742.333333pt;}
.y16{bottom:746.973333pt;}
.y36{bottom:747.933333pt;}
.y8d{bottom:751.133333pt;}
.y35{bottom:772.733333pt;}
.y5a{bottom:773.693333pt;}
.y8c{bottom:775.973333pt;}
.y15{bottom:779.173333pt;}
.y4a{bottom:796.133333pt;}
.y8b{bottom:800.613333pt;}
.y14{bottom:803.813333pt;}
.y34{bottom:804.933333pt;}
.y8a{bottom:825.253333pt;}
.y13{bottom:828.453333pt;}
.y33{bottom:837.093333pt;}
.y89{bottom:850.053333pt;}
.y12{bottom:853.253333pt;}
.y32{bottom:869.253333pt;}
.y88{bottom:874.693333pt;}
.y11{bottom:877.893333pt;}
.y87{bottom:899.333333pt;}
.y31{bottom:901.573333pt;}
.y10{bottom:902.533333pt;}
.y86{bottom:923.973333pt;}
.yf{bottom:927.333333pt;}
.y30{bottom:933.733333pt;}
.y85{bottom:948.773333pt;}
.ye{bottom:951.973333pt;}
.y2f{bottom:965.893333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h23{height:16.640000pt;}
.h24{height:16.800000pt;}
.h21{height:20.000000pt;}
.h19{height:21.792000pt;}
.h7{height:24.512000pt;}
.h1e{height:30.080000pt;}
.h1f{height:30.560000pt;}
.h1b{height:30.720000pt;}
.h22{height:34.080000pt;}
.h2{height:36.800000pt;}
.h1c{height:37.479688pt;}
.h11{height:41.543750pt;}
.h18{height:46.817187pt;}
.h4{height:47.742188pt;}
.h20{height:51.360000pt;}
.h17{height:52.134375pt;}
.hc{height:52.832812pt;}
.h16{height:53.152000pt;}
.h1a{height:53.535000pt;}
.hf{height:57.787500pt;}
.h15{height:59.339975pt;}
.h13{height:59.339983pt;}
.h12{height:59.339984pt;}
.h10{height:59.339990pt;}
.h14{height:59.339993pt;}
.h6{height:59.340000pt;}
.h1d{height:61.280000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hd{height:65.995312pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.h25{height:77.951250pt;}
.h9{height:85.785000pt;}
.he{height:169.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:27.360000pt;}
.w7{width:27.872000pt;}
.wc{width:28.000000pt;}
.we{width:46.400000pt;}
.w9{width:46.560000pt;}
.wa{width:46.592000pt;}
.wb{width:46.752000pt;}
.wf{width:56.000000pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w8{width:84.320000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.720000pt;}
.x6{left:7.680000pt;}
.x8{left:15.520000pt;}
.x18{left:17.600000pt;}
.x19{left:20.832000pt;}
.xa{left:22.880000pt;}
.x1{left:28.320000pt;}
.x1d{left:38.080000pt;}
.x2{left:39.520000pt;}
.x1b{left:47.354667pt;}
.x5{left:53.306667pt;}
.x7{left:75.519988pt;}
.x12{left:84.831988pt;}
.xc{left:97.151988pt;}
.x1a{left:104.352000pt;}
.x14{left:105.631988pt;}
.xb{left:113.311988pt;}
.x16{left:135.706655pt;}
.x10{left:151.066655pt;}
.x1c{left:189.306667pt;}
.x1e{left:236.666667pt;}
.xd{left:271.426655pt;}
.x1f{left:283.906667pt;}
.x13{left:291.746655pt;}
.x15{left:307.586655pt;}
.x11{left:327.906655pt;}
.x20{left:331.106667pt;}
.xf{left:333.186655pt;}
.x17{left:345.986655pt;}
.x21{left:378.306667pt;}
.xe{left:396.866655pt;}
.x2a{left:415.773322pt;}
.x22{left:425.693333pt;}
.x3{left:463.293333pt;}
.x23{left:472.893333pt;}
.x24{left:520.253333pt;}
.x25{left:548.893333pt;}
.x26{left:576.893333pt;}
.x27{left:624.133333pt;}
.x28{left:671.493333pt;}
.x4{left:704.613333pt;}
.x9{left:708.933333pt;}
}




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