
    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_7fe9ea1f7ae2553f4695680a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1ac285e1932fdf02931da831.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_d4e736d37aaa9c5aa0de9fec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f3136d56daaca1b903180adc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cb03572191a1e40c69cf577c.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_e533bc425dce393988c142bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.073242;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_9eac81310d86018bd563ddb9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f6f9aeba31f26ab80a5c7214.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.287400px;}
.ls9{letter-spacing:-0.218400px;}
.ls11{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.214800px;}
.ls10{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.262080px;}
.ls5{letter-spacing:0.291000px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:4.500000px;}
.ls2{letter-spacing:5.220000px;}
.lsc{letter-spacing:10.260000px;}
.ls7{letter-spacing:68.556000px;}
.ls3{letter-spacing:627.456000px;}
.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;}
}
.ws6{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.671000px;}
.ws5{word-spacing:-16.594800px;}
.ws2{word-spacing:-16.380000px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.733600px;}
.ws4{word-spacing:-0.065520px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-4.585680px;}
._7{margin-left:-3.504960px;}
._6{margin-left:-2.391120px;}
._0{margin-left:-1.015920px;}
._3{width:1.195200px;}
._8{width:3.144960px;}
._1b{width:4.227840px;}
._1{width:5.258880px;}
._2{width:6.513840px;}
._d{width:7.567920px;}
._10{width:8.583120px;}
._25{width:9.599040px;}
._f{width:10.614240px;}
._19{width:12.383280px;}
._c{width:13.595760px;}
._1a{width:14.676480px;}
._1c{width:18.214560px;}
._1d{width:19.754640px;}
._1e{width:20.861040px;}
._16{width:22.556880px;}
._15{width:23.652720px;}
._13{width:25.258320px;}
._14{width:26.404560px;}
._24{width:28.090560px;}
._18{width:29.550240px;}
._17{width:30.728880px;}
._26{width:32.268960px;}
._1f{width:33.309840px;}
._5{width:34.825200px;}
._4{width:35.861520px;}
._12{width:37.542960px;}
._11{width:38.618880px;}
._23{width:40.302960px;}
._22{width:41.334960px;}
._2c{width:42.522480px;}
._29{width:43.833600px;}
._28{width:44.946720px;}
._a{width:49.762080px;}
._9{width:50.876640px;}
._20{width:52.678080px;}
._27{width:59.427360px;}
._2a{width:61.786080px;}
._21{width:67.082160px;}
._b{width:68.556000px;}
._2b{width:70.598160px;}
._2f{width:87.418560px;}
._31{width:158.440800px;}
._30{width:191.200800px;}
._2e{width:207.580800px;}
._2d{width:666.173760px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:65.520000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:97.125005px;}
.y1c{bottom:139.264499px;}
.y1f{bottom:173.550000px;}
.y1e{bottom:191.190000px;}
.y13{bottom:196.933500px;}
.y10e{bottom:209.370000px;}
.y1b{bottom:209.518500px;}
.y12{bottom:209.533503px;}
.y83{bottom:209.550000px;}
.y50{bottom:212.430000px;}
.yc0{bottom:216.390000px;}
.ycc{bottom:219.630000px;}
.yaa{bottom:219.990000px;}
.y1a{bottom:222.118502px;}
.y11{bottom:222.133505px;}
.y10d{bottom:223.410000px;}
.y82{bottom:226.830000px;}
.yb0{bottom:227.190000px;}
.y4f{bottom:230.070000px;}
.ybf{bottom:234.390000px;}
.y19{bottom:234.718504px;}
.y10{bottom:234.733496px;}
.y10c{bottom:237.450000px;}
.ya9{bottom:237.630000px;}
.yc9{bottom:244.470000px;}
.y81{bottom:244.830000px;}
.y4e{bottom:247.710000px;}
.yaf{bottom:251.130000px;}
.yb9{bottom:254.910000px;}
.ya8{bottom:255.270000px;}
.ybe{bottom:258.330000px;}
.y18{bottom:259.918497px;}
.yf{bottom:259.933500px;}
.yc8{bottom:262.110000px;}
.y80{bottom:262.470000px;}
.y4d{bottom:265.350000px;}
.y10b{bottom:269.490000px;}
.y17{bottom:272.518500px;}
.ye{bottom:272.533503px;}
.ya7{bottom:272.550000px;}
.yae{bottom:272.955000px;}
.y7f{bottom:280.155000px;}
.y4c{bottom:283.035000px;}
.y10a{bottom:283.575000px;}
.y16{bottom:285.118502px;}
.yd{bottom:285.133499px;}
.ybd{bottom:286.455000px;}
.ya6{bottom:290.595000px;}
.y7e{bottom:297.795000px;}
.y4b{bottom:300.675000px;}
.ya5{bottom:308.235000px;}
.y15{bottom:310.318501px;}
.yc{bottom:310.333501px;}
.y7d{bottom:315.435000px;}
.y109{bottom:315.615000px;}
.y4a{bottom:317.955000px;}
.y14{bottom:322.918500px;}
.yb{bottom:322.933500px;}
.ya4{bottom:325.875000px;}
.y108{bottom:329.655000px;}
.y7c{bottom:333.075000px;}
.y49{bottom:335.955000px;}
.yb8{bottom:343.155000px;}
.ya3{bottom:343.515000px;}
.ya{bottom:348.133500px;}
.y7b{bottom:350.715000px;}
.y48{bottom:353.595000px;}
.yb7{bottom:360.795000px;}
.ya2{bottom:361.155000px;}
.y107{bottom:361.695000px;}
.y7a{bottom:368.355000px;}
.y47{bottom:371.235000px;}
.y106{bottom:375.735000px;}
.ybc{bottom:378.435000px;}
.ya1{bottom:378.795000px;}
.y79{bottom:385.995000px;}
.y9{bottom:386.785499px;}
.y46{bottom:388.875000px;}
.y105{bottom:389.775000px;}
.ybb{bottom:396.075000px;}
.ya0{bottom:396.435000px;}
.y78{bottom:403.635000px;}
.y45{bottom:406.155000px;}
.y8{bottom:408.044999px;}
.y9f{bottom:414.075000px;}
.y77{bottom:421.275000px;}
.y104{bottom:421.815000px;}
.y44{bottom:424.155000px;}
.y9e{bottom:431.715000px;}
.y103{bottom:435.855000px;}
.y76{bottom:438.915000px;}
.y43{bottom:441.795000px;}
.y9d{bottom:449.355000px;}
.y102{bottom:449.895000px;}
.y75{bottom:456.555000px;}
.y42{bottom:459.435000px;}
.y101{bottom:463.935000px;}
.y9c{bottom:466.995000px;}
.y74{bottom:474.195000px;}
.y41{bottom:477.075000px;}
.y100{bottom:477.975000px;}
.y9b{bottom:484.635000px;}
.y73{bottom:491.835000px;}
.yff{bottom:492.015000px;}
.y40{bottom:494.715000px;}
.ye0{bottom:501.375000px;}
.y9a{bottom:502.275000px;}
.yfe{bottom:506.055000px;}
.y72{bottom:509.475000px;}
.y3f{bottom:512.355000px;}
.ydf{bottom:515.415000px;}
.yc5{bottom:519.555000px;}
.y99{bottom:519.915000px;}
.y7{bottom:520.864502px;}
.y71{bottom:527.115000px;}
.yde{bottom:529.455000px;}
.y3e{bottom:529.635000px;}
.y98{bottom:537.555000px;}
.yfd{bottom:538.095000px;}
.y6{bottom:538.864499px;}
.ydd{bottom:543.495000px;}
.y70{bottom:544.755000px;}
.y3d{bottom:547.275000px;}
.yfc{bottom:552.135000px;}
.y97{bottom:555.195000px;}
.y5{bottom:556.864499px;}
.ydc{bottom:557.565000px;}
.y6f{bottom:562.425000px;}
.y3c{bottom:565.305000px;}
.ydb{bottom:571.605000px;}
.y96{bottom:572.865000px;}
.y6e{bottom:580.065000px;}
.y3b{bottom:582.945000px;}
.yfb{bottom:584.205000px;}
.yda{bottom:585.645000px;}
.yb6{bottom:590.145000px;}
.y95{bottom:590.505000px;}
.y6d{bottom:597.705000px;}
.yfa{bottom:598.245000px;}
.yd9{bottom:599.685000px;}
.y3a{bottom:600.225000px;}
.ycb{bottom:607.785000px;}
.y94{bottom:608.145000px;}
.yd8{bottom:613.725000px;}
.y6c{bottom:615.345000px;}
.y39{bottom:618.225000px;}
.y93{bottom:625.785000px;}
.yd7{bottom:627.765000px;}
.yf9{bottom:630.285000px;}
.y6b{bottom:632.985000px;}
.y38{bottom:635.865000px;}
.yd6{bottom:641.805000px;}
.yb5{bottom:643.065000px;}
.y92{bottom:643.425000px;}
.yf8{bottom:644.325000px;}
.yc7{bottom:650.265000px;}
.y6a{bottom:650.625000px;}
.y37{bottom:653.505000px;}
.y123{bottom:654.405000px;}
.yd5{bottom:655.845000px;}
.yf7{bottom:658.365000px;}
.yb4{bottom:660.705000px;}
.y91{bottom:661.065000px;}
.y69{bottom:668.265000px;}
.yd4{bottom:669.885000px;}
.y36{bottom:670.785000px;}
.yf6{bottom:672.405000px;}
.yb3{bottom:678.345000px;}
.y90{bottom:678.705000px;}
.yd3{bottom:683.925000px;}
.y68{bottom:685.905000px;}
.y122{bottom:686.445000px;}
.y35{bottom:688.785000px;}
.yc6{bottom:692.205000px;}
.y8f{bottom:696.345000px;}
.yd2{bottom:697.965000px;}
.y121{bottom:700.485000px;}
.y67{bottom:703.545000px;}
.yf5{bottom:704.445000px;}
.y34{bottom:706.425000px;}
.yd1{bottom:712.005000px;}
.y8e{bottom:713.985000px;}
.y120{bottom:714.525000px;}
.yf4{bottom:718.485000px;}
.y66{bottom:721.185000px;}
.y33{bottom:724.065000px;}
.yd0{bottom:726.045000px;}
.y11f{bottom:728.565000px;}
.y8d{bottom:731.625000px;}
.yf3{bottom:732.525000px;}
.y65{bottom:738.825000px;}
.ycf{bottom:740.085000px;}
.y32{bottom:741.705000px;}
.y8c{bottom:749.265000px;}
.y3{bottom:752.599495px;}
.yce{bottom:754.125000px;}
.y64{bottom:756.465000px;}
.y31{bottom:759.345000px;}
.y11e{bottom:760.605000px;}
.yf2{bottom:764.565000px;}
.y8b{bottom:766.545000px;}
.yad{bottom:766.905000px;}
.ycd{bottom:768.165000px;}
.y63{bottom:773.925000px;}
.y11d{bottom:774.645000px;}
.y30{bottom:776.985000px;}
.yf1{bottom:778.605000px;}
.yca{bottom:784.185000px;}
.y8a{bottom:784.545000px;}
.y11c{bottom:788.685000px;}
.y62{bottom:791.745000px;}
.yf0{bottom:792.645000px;}
.y2f{bottom:794.625000px;}
.y89{bottom:802.185000px;}
.y11b{bottom:802.725000px;}
.y61{bottom:809.025000px;}
.y2e{bottom:812.265000px;}
.y88{bottom:819.825000px;}
.yef{bottom:824.685000px;}
.y60{bottom:827.025000px;}
.y2d{bottom:829.905000px;}
.y11a{bottom:834.765000px;}
.yac{bottom:837.105000px;}
.y87{bottom:837.465000px;}
.yee{bottom:838.770000px;}
.y2c{bottom:847.590000px;}
.y5f{bottom:851.010000px;}
.yed{bottom:852.810000px;}
.y86{bottom:855.150000px;}
.y2b{bottom:865.230000px;}
.y119{bottom:866.850000px;}
.yc4{bottom:872.430000px;}
.y5e{bottom:872.790000px;}
.y2{bottom:879.369000px;}
.y118{bottom:880.890000px;}
.y2a{bottom:882.870000px;}
.yec{bottom:884.850000px;}
.yb2{bottom:890.070000px;}
.y5d{bottom:890.430000px;}
.yeb{bottom:898.890000px;}
.y29{bottom:900.150000px;}
.yab{bottom:907.710000px;}
.y5c{bottom:908.070000px;}
.yea{bottom:912.930000px;}
.y28{bottom:918.150000px;}
.yc1{bottom:925.350000px;}
.y5b{bottom:925.710000px;}
.y117{bottom:926.970000px;}
.y116{bottom:941.010000px;}
.y27{bottom:942.090000px;}
.y5a{bottom:943.350000px;}
.ye9{bottom:944.970000px;}
.ye8{bottom:959.010000px;}
.yba{bottom:960.630000px;}
.y59{bottom:960.990000px;}
.y26{bottom:965.130000px;}
.y1{bottom:966.726000px;}
.ye7{bottom:973.050000px;}
.y58{bottom:978.630000px;}
.y25{bottom:982.770000px;}
.y115{bottom:987.090000px;}
.y57{bottom:996.270000px;}
.y24{bottom:1000.410000px;}
.y114{bottom:1001.130000px;}
.ye6{bottom:1005.090000px;}
.y85{bottom:1013.550000px;}
.y56{bottom:1013.910000px;}
.y113{bottom:1015.170000px;}
.ye5{bottom:1019.130000px;}
.y23{bottom:1022.910000px;}
.y112{bottom:1029.210000px;}
.y55{bottom:1031.190000px;}
.y84{bottom:1031.550000px;}
.ye4{bottom:1033.170000px;}
.ye3{bottom:1047.210000px;}
.yc3{bottom:1048.830000px;}
.y54{bottom:1049.190000px;}
.y111{bottom:1061.250000px;}
.yc2{bottom:1066.470000px;}
.y53{bottom:1066.830000px;}
.y22{bottom:1068.090000px;}
.ye2{bottom:1069.890000px;}
.y110{bottom:1075.290000px;}
.y52{bottom:1084.470000px;}
.y21{bottom:1085.730000px;}
.y10f{bottom:1089.330000px;}
.ye1{bottom:1097.970000px;}
.yb1{bottom:1101.750000px;}
.y51{bottom:1102.110000px;}
.y20{bottom:1103.370000px;}
.y1d{bottom:1121.370000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.he{height:54.642656px;}
.h2{height:55.080000px;}
.h9{height:58.651172px;}
.hf{height:60.226875px;}
.hc{height:64.304297px;}
.hd{height:66.031875px;}
.h5{height:78.030000px;}
.hb{height:81.929531px;}
.h4{height:119.055004px;}
.ha{height:145.125000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:148.896000px;}
.x9{left:170.130000px;}
.x4{left:203.484001px;}
.x8{left:233.850000px;}
.x3{left:454.959000px;}
.x7{left:729.150000px;}
.x6{left:736.710000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.255467pt;}
.ls9{letter-spacing:-0.194133pt;}
.ls11{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.190933pt;}
.ls10{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.232960pt;}
.ls5{letter-spacing:0.258667pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:4.000000pt;}
.ls2{letter-spacing:4.640000pt;}
.lsc{letter-spacing:9.120000pt;}
.ls7{letter-spacing:60.938667pt;}
.ls3{letter-spacing:557.738667pt;}
.ws6{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.818667pt;}
.ws5{word-spacing:-14.750933pt;}
.ws2{word-spacing:-14.560000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.096533pt;}
.ws4{word-spacing:-0.058240pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-4.076160pt;}
._7{margin-left:-3.115520pt;}
._6{margin-left:-2.125440pt;}
._0{margin-left:-0.903040pt;}
._3{width:1.062400pt;}
._8{width:2.795520pt;}
._1b{width:3.758080pt;}
._1{width:4.674560pt;}
._2{width:5.790080pt;}
._d{width:6.727040pt;}
._10{width:7.629440pt;}
._25{width:8.532480pt;}
._f{width:9.434880pt;}
._19{width:11.007360pt;}
._c{width:12.085120pt;}
._1a{width:13.045760pt;}
._1c{width:16.190720pt;}
._1d{width:17.559680pt;}
._1e{width:18.543147pt;}
._16{width:20.050560pt;}
._15{width:21.024640pt;}
._13{width:22.451840pt;}
._14{width:23.470720pt;}
._24{width:24.969387pt;}
._18{width:26.266880pt;}
._17{width:27.314560pt;}
._26{width:28.683520pt;}
._1f{width:29.608747pt;}
._5{width:30.955733pt;}
._4{width:31.876907pt;}
._12{width:33.371520pt;}
._11{width:34.327893pt;}
._23{width:35.824853pt;}
._22{width:36.742187pt;}
._2c{width:37.797760pt;}
._29{width:38.963200pt;}
._28{width:39.952640pt;}
._a{width:44.232960pt;}
._9{width:45.223680pt;}
._20{width:46.824960pt;}
._27{width:52.824320pt;}
._2a{width:54.920960pt;}
._21{width:59.628587pt;}
._b{width:60.938667pt;}
._2b{width:62.753920pt;}
._2f{width:77.705387pt;}
._31{width:140.836267pt;}
._30{width:169.956267pt;}
._2e{width:184.516267pt;}
._2d{width:592.154453pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.240000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:86.333337pt;}
.y1c{bottom:123.790666pt;}
.y1f{bottom:154.266667pt;}
.y1e{bottom:169.946667pt;}
.y13{bottom:175.052000pt;}
.y10e{bottom:186.106667pt;}
.y1b{bottom:186.238666pt;}
.y12{bottom:186.252002pt;}
.y83{bottom:186.266667pt;}
.y50{bottom:188.826667pt;}
.yc0{bottom:192.346667pt;}
.ycc{bottom:195.226667pt;}
.yaa{bottom:195.546667pt;}
.y1a{bottom:197.438668pt;}
.y11{bottom:197.452004pt;}
.y10d{bottom:198.586667pt;}
.y82{bottom:201.626667pt;}
.yb0{bottom:201.946667pt;}
.y4f{bottom:204.506667pt;}
.ybf{bottom:208.346667pt;}
.y19{bottom:208.638670pt;}
.y10{bottom:208.651996pt;}
.y10c{bottom:211.066667pt;}
.ya9{bottom:211.226667pt;}
.yc9{bottom:217.306667pt;}
.y81{bottom:217.626667pt;}
.y4e{bottom:220.186667pt;}
.yaf{bottom:223.226667pt;}
.yb9{bottom:226.586667pt;}
.ya8{bottom:226.906667pt;}
.ybe{bottom:229.626667pt;}
.y18{bottom:231.038664pt;}
.yf{bottom:231.052000pt;}
.yc8{bottom:232.986667pt;}
.y80{bottom:233.306667pt;}
.y4d{bottom:235.866667pt;}
.y10b{bottom:239.546667pt;}
.y17{bottom:242.238666pt;}
.ye{bottom:242.252002pt;}
.ya7{bottom:242.266667pt;}
.yae{bottom:242.626667pt;}
.y7f{bottom:249.026667pt;}
.y4c{bottom:251.586667pt;}
.y10a{bottom:252.066667pt;}
.y16{bottom:253.438668pt;}
.yd{bottom:253.451999pt;}
.ybd{bottom:254.626667pt;}
.ya6{bottom:258.306667pt;}
.y7e{bottom:264.706667pt;}
.y4b{bottom:267.266667pt;}
.ya5{bottom:273.986667pt;}
.y15{bottom:275.838667pt;}
.yc{bottom:275.852001pt;}
.y7d{bottom:280.386667pt;}
.y109{bottom:280.546667pt;}
.y4a{bottom:282.626667pt;}
.y14{bottom:287.038667pt;}
.yb{bottom:287.052000pt;}
.ya4{bottom:289.666667pt;}
.y108{bottom:293.026667pt;}
.y7c{bottom:296.066667pt;}
.y49{bottom:298.626667pt;}
.yb8{bottom:305.026667pt;}
.ya3{bottom:305.346667pt;}
.ya{bottom:309.452000pt;}
.y7b{bottom:311.746667pt;}
.y48{bottom:314.306667pt;}
.yb7{bottom:320.706667pt;}
.ya2{bottom:321.026667pt;}
.y107{bottom:321.506667pt;}
.y7a{bottom:327.426667pt;}
.y47{bottom:329.986667pt;}
.y106{bottom:333.986667pt;}
.ybc{bottom:336.386667pt;}
.ya1{bottom:336.706667pt;}
.y79{bottom:343.106667pt;}
.y9{bottom:343.809333pt;}
.y46{bottom:345.666667pt;}
.y105{bottom:346.466667pt;}
.ybb{bottom:352.066667pt;}
.ya0{bottom:352.386667pt;}
.y78{bottom:358.786667pt;}
.y45{bottom:361.026667pt;}
.y8{bottom:362.706666pt;}
.y9f{bottom:368.066667pt;}
.y77{bottom:374.466667pt;}
.y104{bottom:374.946667pt;}
.y44{bottom:377.026667pt;}
.y9e{bottom:383.746667pt;}
.y103{bottom:387.426667pt;}
.y76{bottom:390.146667pt;}
.y43{bottom:392.706667pt;}
.y9d{bottom:399.426667pt;}
.y102{bottom:399.906667pt;}
.y75{bottom:405.826667pt;}
.y42{bottom:408.386667pt;}
.y101{bottom:412.386667pt;}
.y9c{bottom:415.106667pt;}
.y74{bottom:421.506667pt;}
.y41{bottom:424.066667pt;}
.y100{bottom:424.866667pt;}
.y9b{bottom:430.786667pt;}
.y73{bottom:437.186667pt;}
.yff{bottom:437.346667pt;}
.y40{bottom:439.746667pt;}
.ye0{bottom:445.666667pt;}
.y9a{bottom:446.466667pt;}
.yfe{bottom:449.826667pt;}
.y72{bottom:452.866667pt;}
.y3f{bottom:455.426667pt;}
.ydf{bottom:458.146667pt;}
.yc5{bottom:461.826667pt;}
.y99{bottom:462.146667pt;}
.y7{bottom:462.990669pt;}
.y71{bottom:468.546667pt;}
.yde{bottom:470.626667pt;}
.y3e{bottom:470.786667pt;}
.y98{bottom:477.826667pt;}
.yfd{bottom:478.306667pt;}
.y6{bottom:478.990666pt;}
.ydd{bottom:483.106667pt;}
.y70{bottom:484.226667pt;}
.y3d{bottom:486.466667pt;}
.yfc{bottom:490.786667pt;}
.y97{bottom:493.506667pt;}
.y5{bottom:494.990666pt;}
.ydc{bottom:495.613333pt;}
.y6f{bottom:499.933333pt;}
.y3c{bottom:502.493333pt;}
.ydb{bottom:508.093333pt;}
.y96{bottom:509.213333pt;}
.y6e{bottom:515.613333pt;}
.y3b{bottom:518.173333pt;}
.yfb{bottom:519.293333pt;}
.yda{bottom:520.573333pt;}
.yb6{bottom:524.573333pt;}
.y95{bottom:524.893333pt;}
.y6d{bottom:531.293333pt;}
.yfa{bottom:531.773333pt;}
.yd9{bottom:533.053333pt;}
.y3a{bottom:533.533333pt;}
.ycb{bottom:540.253333pt;}
.y94{bottom:540.573333pt;}
.yd8{bottom:545.533333pt;}
.y6c{bottom:546.973333pt;}
.y39{bottom:549.533333pt;}
.y93{bottom:556.253333pt;}
.yd7{bottom:558.013333pt;}
.yf9{bottom:560.253333pt;}
.y6b{bottom:562.653333pt;}
.y38{bottom:565.213333pt;}
.yd6{bottom:570.493333pt;}
.yb5{bottom:571.613333pt;}
.y92{bottom:571.933333pt;}
.yf8{bottom:572.733333pt;}
.yc7{bottom:578.013333pt;}
.y6a{bottom:578.333333pt;}
.y37{bottom:580.893333pt;}
.y123{bottom:581.693333pt;}
.yd5{bottom:582.973333pt;}
.yf7{bottom:585.213333pt;}
.yb4{bottom:587.293333pt;}
.y91{bottom:587.613333pt;}
.y69{bottom:594.013333pt;}
.yd4{bottom:595.453333pt;}
.y36{bottom:596.253333pt;}
.yf6{bottom:597.693333pt;}
.yb3{bottom:602.973333pt;}
.y90{bottom:603.293333pt;}
.yd3{bottom:607.933333pt;}
.y68{bottom:609.693333pt;}
.y122{bottom:610.173333pt;}
.y35{bottom:612.253333pt;}
.yc6{bottom:615.293333pt;}
.y8f{bottom:618.973333pt;}
.yd2{bottom:620.413333pt;}
.y121{bottom:622.653333pt;}
.y67{bottom:625.373333pt;}
.yf5{bottom:626.173333pt;}
.y34{bottom:627.933333pt;}
.yd1{bottom:632.893333pt;}
.y8e{bottom:634.653333pt;}
.y120{bottom:635.133333pt;}
.yf4{bottom:638.653333pt;}
.y66{bottom:641.053333pt;}
.y33{bottom:643.613333pt;}
.yd0{bottom:645.373333pt;}
.y11f{bottom:647.613333pt;}
.y8d{bottom:650.333333pt;}
.yf3{bottom:651.133333pt;}
.y65{bottom:656.733333pt;}
.ycf{bottom:657.853333pt;}
.y32{bottom:659.293333pt;}
.y8c{bottom:666.013333pt;}
.y3{bottom:668.977329pt;}
.yce{bottom:670.333333pt;}
.y64{bottom:672.413333pt;}
.y31{bottom:674.973333pt;}
.y11e{bottom:676.093333pt;}
.yf2{bottom:679.613333pt;}
.y8b{bottom:681.373333pt;}
.yad{bottom:681.693333pt;}
.ycd{bottom:682.813333pt;}
.y63{bottom:687.933333pt;}
.y11d{bottom:688.573333pt;}
.y30{bottom:690.653333pt;}
.yf1{bottom:692.093333pt;}
.yca{bottom:697.053333pt;}
.y8a{bottom:697.373333pt;}
.y11c{bottom:701.053333pt;}
.y62{bottom:703.773333pt;}
.yf0{bottom:704.573333pt;}
.y2f{bottom:706.333333pt;}
.y89{bottom:713.053333pt;}
.y11b{bottom:713.533333pt;}
.y61{bottom:719.133333pt;}
.y2e{bottom:722.013333pt;}
.y88{bottom:728.733333pt;}
.yef{bottom:733.053333pt;}
.y60{bottom:735.133333pt;}
.y2d{bottom:737.693333pt;}
.y11a{bottom:742.013333pt;}
.yac{bottom:744.093333pt;}
.y87{bottom:744.413333pt;}
.yee{bottom:745.573333pt;}
.y2c{bottom:753.413333pt;}
.y5f{bottom:756.453333pt;}
.yed{bottom:758.053333pt;}
.y86{bottom:760.133333pt;}
.y2b{bottom:769.093333pt;}
.y119{bottom:770.533333pt;}
.yc4{bottom:775.493333pt;}
.y5e{bottom:775.813333pt;}
.y2{bottom:781.661334pt;}
.y118{bottom:783.013333pt;}
.y2a{bottom:784.773333pt;}
.yec{bottom:786.533333pt;}
.yb2{bottom:791.173333pt;}
.y5d{bottom:791.493333pt;}
.yeb{bottom:799.013333pt;}
.y29{bottom:800.133333pt;}
.yab{bottom:806.853333pt;}
.y5c{bottom:807.173333pt;}
.yea{bottom:811.493333pt;}
.y28{bottom:816.133333pt;}
.yc1{bottom:822.533333pt;}
.y5b{bottom:822.853333pt;}
.y117{bottom:823.973333pt;}
.y116{bottom:836.453333pt;}
.y27{bottom:837.413333pt;}
.y5a{bottom:838.533333pt;}
.ye9{bottom:839.973333pt;}
.ye8{bottom:852.453333pt;}
.yba{bottom:853.893333pt;}
.y59{bottom:854.213333pt;}
.y26{bottom:857.893333pt;}
.y1{bottom:859.312000pt;}
.ye7{bottom:864.933333pt;}
.y58{bottom:869.893333pt;}
.y25{bottom:873.573333pt;}
.y115{bottom:877.413333pt;}
.y57{bottom:885.573333pt;}
.y24{bottom:889.253333pt;}
.y114{bottom:889.893333pt;}
.ye6{bottom:893.413333pt;}
.y85{bottom:900.933333pt;}
.y56{bottom:901.253333pt;}
.y113{bottom:902.373333pt;}
.ye5{bottom:905.893333pt;}
.y23{bottom:909.253333pt;}
.y112{bottom:914.853333pt;}
.y55{bottom:916.613333pt;}
.y84{bottom:916.933333pt;}
.ye4{bottom:918.373333pt;}
.ye3{bottom:930.853333pt;}
.yc3{bottom:932.293333pt;}
.y54{bottom:932.613333pt;}
.y111{bottom:943.333333pt;}
.yc2{bottom:947.973333pt;}
.y53{bottom:948.293333pt;}
.y22{bottom:949.413333pt;}
.ye2{bottom:951.013333pt;}
.y110{bottom:955.813333pt;}
.y52{bottom:963.973333pt;}
.y21{bottom:965.093333pt;}
.y10f{bottom:968.293333pt;}
.ye1{bottom:975.973333pt;}
.yb1{bottom:979.333333pt;}
.y51{bottom:979.653333pt;}
.y20{bottom:980.773333pt;}
.y1d{bottom:996.773333pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.he{height:48.571250pt;}
.h2{height:48.960000pt;}
.h9{height:52.134375pt;}
.hf{height:53.535000pt;}
.hc{height:57.159375pt;}
.hd{height:58.695000pt;}
.h5{height:69.360000pt;}
.hb{height:72.826250pt;}
.h4{height:105.826671pt;}
.ha{height:129.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:132.352000pt;}
.x9{left:151.226667pt;}
.x4{left:180.874667pt;}
.x8{left:207.866667pt;}
.x3{left:404.408000pt;}
.x7{left:648.133333pt;}
.x6{left:654.853333pt;}
}




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