
    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_e42b34843eaf9207530eb2ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_69dcb1f9f3580cc265bf0614.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_be73d37d17653fd45f81ded2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991699;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_7a51f4a5e945905792c84218.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.194824;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_cd620a7534e54ea791209a0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010742;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_a0ef9c231c442b67b8e81ad2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.194824;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_b4b866b785e659f5b14580f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.192383;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_a2db6323ca655d194e794058.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.192383;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_fb376a2b04bd66ab46318ec4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v3{vertical-align:18.000000px;}
.ls9{letter-spacing:-0.888000px;}
.ls12{letter-spacing:-0.672000px;}
.ls8{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.264000px;}
.ls6{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024000px;}
.lse{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.252000px;}
.ls4{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.792000px;}
.ls10{letter-spacing:2.340000px;}
.ls11{letter-spacing:3.600000px;}
.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;}
}
.ws2{word-spacing:-18.528000px;}
.ws3{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.952000px;}
.ws6{word-spacing:-17.736000px;}
.ws7{word-spacing:-17.568000px;}
.ws8{word-spacing:-17.328000px;}
.ws1{word-spacing:-12.000000px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-4.842000px;}
._15{margin-left:-3.816000px;}
._14{margin-left:-2.808000px;}
._0{margin-left:-1.296000px;}
._1{width:1.026000px;}
._6{width:2.214000px;}
._f{width:3.456000px;}
._11{width:4.500000px;}
._18{width:5.538000px;}
._10{width:6.570000px;}
._4{width:8.046000px;}
._5{width:9.090000px;}
._e{width:10.602000px;}
._b{width:12.012000px;}
._a{width:13.428000px;}
._d{width:15.222000px;}
._c{width:16.224000px;}
._13{width:20.016000px;}
._12{width:21.024000px;}
._16{width:22.104000px;}
._17{width:23.130000px;}
._3{width:24.174000px;}
._2{width:25.344000px;}
._1e{width:27.000000px;}
._1c{width:32.616000px;}
._1b{width:34.038000px;}
._19{width:37.866000px;}
._7{width:38.958000px;}
._1a{width:41.178000px;}
._9{width:48.726000px;}
._8{width:50.184000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:3.600000px;}
.fs4{font-size:39.600000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:9.000000px;}
.yb{bottom:13.500000px;}
.ya{bottom:17.400000px;}
.y4{bottom:31.500000px;}
.y2{bottom:57.637500px;}
.y9{bottom:58.245000px;}
.y1{bottom:78.337500px;}
.y8{bottom:95.430000px;}
.y4a{bottom:111.037500px;}
.yaf{bottom:113.137500px;}
.ye0{bottom:114.637500px;}
.y49{bottom:116.437500px;}
.ybf{bottom:123.037500px;}
.y82{bottom:125.737500px;}
.y48{bottom:128.737500px;}
.yc{bottom:129.345000px;}
.y28{bottom:132.337500px;}
.y7{bottom:132.630000px;}
.ydf{bottom:137.137500px;}
.ybe{bottom:145.237500px;}
.yae{bottom:146.437500px;}
.y81{bottom:159.345000px;}
.yde{bottom:159.630000px;}
.y27{bottom:165.030000px;}
.ybd{bottom:167.745000px;}
.y97{bottom:168.330000px;}
.yad{bottom:180.075000px;}
.ybc{bottom:190.275000px;}
.ydd{bottom:190.875000px;}
.y80{bottom:192.975000px;}
.y47{bottom:193.275000px;}
.y26{bottom:198.675000px;}
.y96{bottom:201.975000px;}
.y66{bottom:202.575000px;}
.ydc{bottom:213.375000px;}
.yac{bottom:213.675000px;}
.ybb{bottom:223.575000px;}
.y7f{bottom:226.575000px;}
.y46{bottom:226.875000px;}
.y25{bottom:232.275000px;}
.y95{bottom:235.275000px;}
.ydb{bottom:235.575000px;}
.y65{bottom:236.175000px;}
.yab{bottom:247.275000px;}
.y7e{bottom:249.075000px;}
.yba{bottom:257.175000px;}
.y45{bottom:260.475000px;}
.y24{bottom:265.875000px;}
.yda{bottom:267.075000px;}
.y94{bottom:268.875000px;}
.y64{bottom:269.775000px;}
.y7d{bottom:271.575000px;}
.yaa{bottom:280.875000px;}
.yd9{bottom:289.575000px;}
.yb9{bottom:290.775000px;}
.y7c{bottom:293.175000px;}
.y44{bottom:294.075000px;}
.y23{bottom:299.175000px;}
.y93{bottom:302.475000px;}
.y63{bottom:303.075000px;}
.ya9{bottom:303.375000px;}
.yd8{bottom:311.775000px;}
.yb8{bottom:324.375000px;}
.y7b{bottom:325.875000px;}
.y43{bottom:327.720000px;}
.y22{bottom:332.820000px;}
.y92{bottom:336.120000px;}
.y62{bottom:336.705000px;}
.yd7{bottom:343.005000px;}
.ya8{bottom:347.505000px;}
.yb7{bottom:357.705000px;}
.y7a{bottom:359.505000px;}
.y42{bottom:361.005000px;}
.yd6{bottom:365.505000px;}
.y21{bottom:366.420000px;}
.y91{bottom:369.720000px;}
.y61{bottom:370.320000px;}
.yd5{bottom:388.005000px;}
.yb6{bottom:391.320000px;}
.y79{bottom:393.120000px;}
.y41{bottom:394.620000px;}
.y20{bottom:400.005000px;}
.y90{bottom:403.320000px;}
.y60{bottom:403.920000px;}
.yd4{bottom:410.220000px;}
.yb5{bottom:424.905000px;}
.y78{bottom:426.720000px;}
.y40{bottom:428.220000px;}
.y1f{bottom:433.620000px;}
.y8f{bottom:436.905000px;}
.y5f{bottom:437.505000px;}
.yd3{bottom:441.420000px;}
.yb4{bottom:458.520000px;}
.y77{bottom:460.020000px;}
.y3f{bottom:461.820000px;}
.yd2{bottom:463.905000px;}
.y1e{bottom:467.220000px;}
.y8e{bottom:470.220000px;}
.y5e{bottom:471.105000px;}
.yb3{bottom:492.150000px;}
.y76{bottom:493.650000px;}
.y3e{bottom:495.450000px;}
.y1d{bottom:500.550000px;}
.y8d{bottom:503.850000px;}
.y5d{bottom:504.450000px;}
.yd1{bottom:517.950000px;}
.yb2{bottom:525.750000px;}
.y8c{bottom:526.350000px;}
.y75{bottom:527.250000px;}
.y3d{bottom:529.050000px;}
.y1c{bottom:534.150000px;}
.ya7{bottom:537.450000px;}
.y5c{bottom:538.050000px;}
.y8b{bottom:548.850000px;}
.yd0{bottom:549.150000px;}
.yb1{bottom:559.050000px;}
.y74{bottom:560.850000px;}
.y3c{bottom:562.650000px;}
.y1b{bottom:567.750000px;}
.y8a{bottom:570.450000px;}
.ya6{bottom:571.050000px;}
.y5b{bottom:571.650000px;}
.yb0{bottom:592.650000px;}
.y89{bottom:592.950000px;}
.ycf{bottom:593.850000px;}
.y73{bottom:594.450000px;}
.y3b{bottom:595.950000px;}
.y1a{bottom:601.350000px;}
.ya5{bottom:604.650000px;}
.y5a{bottom:605.250000px;}
.y19{bottom:623.850000px;}
.yce{bottom:625.050000px;}
.y88{bottom:626.250000px;}
.y72{bottom:628.050000px;}
.y3a{bottom:629.550000px;}
.ya4{bottom:638.250000px;}
.y59{bottom:638.850000px;}
.y18{bottom:646.380000px;}
.ycd{bottom:647.595000px;}
.y87{bottom:659.880000px;}
.y71{bottom:661.380000px;}
.y39{bottom:663.195000px;}
.y17{bottom:667.995000px;}
.ycc{bottom:670.095000px;}
.ya3{bottom:671.595000px;}
.y58{bottom:672.495000px;}
.y16{bottom:690.195000px;}
.y86{bottom:693.495000px;}
.y70{bottom:694.995000px;}
.y38{bottom:696.780000px;}
.ycb{bottom:701.295000px;}
.ya2{bottom:705.195000px;}
.y57{bottom:705.780000px;}
.y15{bottom:711.780000px;}
.yca{bottom:723.780000px;}
.y85{bottom:727.095000px;}
.y56{bottom:728.295000px;}
.y6f{bottom:728.595000px;}
.y37{bottom:730.395000px;}
.y14{bottom:733.395000px;}
.yed{bottom:735.780000px;}
.ya1{bottom:738.780000px;}
.yc9{bottom:746.280000px;}
.y55{bottom:750.780000px;}
.y13{bottom:755.295000px;}
.y84{bottom:760.395000px;}
.y6e{bottom:762.195000px;}
.y36{bottom:763.995000px;}
.yec{bottom:766.995000px;}
.yc8{bottom:768.480000px;}
.ya0{bottom:772.380000px;}
.y54{bottom:772.695000px;}
.y12{bottom:776.880000px;}
.yeb{bottom:789.495000px;}
.y83{bottom:793.995000px;}
.y53{bottom:794.295000px;}
.y6d{bottom:795.795000px;}
.y35{bottom:797.295000px;}
.y11{bottom:798.495000px;}
.yc7{bottom:799.725000px;}
.y9f{bottom:806.025000px;}
.yea{bottom:812.025000px;}
.y10{bottom:820.425000px;}
.yc6{bottom:822.525000px;}
.y52{bottom:827.625000px;}
.y6c{bottom:829.425000px;}
.y33{bottom:830.925000px;}
.ye9{bottom:834.225000px;}
.y34{bottom:835.425000px;}
.y9e{bottom:839.625000px;}
.yf{bottom:842.025000px;}
.yc5{bottom:844.125000px;}
.y51{bottom:861.225000px;}
.y6b{bottom:863.025000px;}
.ye{bottom:863.625000px;}
.y32{bottom:864.525000px;}
.ye8{bottom:865.725000px;}
.yc4{bottom:866.325000px;}
.y9d{bottom:872.925000px;}
.yd{bottom:885.525000px;}
.y31{bottom:887.025000px;}
.ye7{bottom:888.225000px;}
.y50{bottom:894.825000px;}
.y6a{bottom:896.025000px;}
.yc3{bottom:897.525000px;}
.y6{bottom:902.325000px;}
.y9c{bottom:906.525000px;}
.y30{bottom:909.525000px;}
.ye6{bottom:910.425000px;}
.y69{bottom:917.925000px;}
.yc2{bottom:920.025000px;}
.y4f{bottom:928.425000px;}
.y9b{bottom:929.025000px;}
.y2f{bottom:931.125000px;}
.y68{bottom:939.525000px;}
.ye5{bottom:941.625000px;}
.yc1{bottom:942.525000px;}
.y9a{bottom:951.525000px;}
.y2e{bottom:953.025000px;}
.y4e{bottom:961.755000px;}
.y67{bottom:962.070000px;}
.ye4{bottom:964.170000px;}
.y99{bottom:973.170000px;}
.yc0{bottom:973.755000px;}
.y2d{bottom:974.670000px;}
.ye3{bottom:986.670000px;}
.y4d{bottom:995.370000px;}
.y98{bottom:995.670000px;}
.y2c{bottom:996.255000px;}
.ye2{bottom:1017.870000px;}
.y2b{bottom:1018.755000px;}
.y4c{bottom:1028.955000px;}
.ye1{bottom:1040.370000px;}
.y2a{bottom:1040.955000px;}
.y3{bottom:1048.455000px;}
.y4b{bottom:1062.570000px;}
.y29{bottom:1063.455000px;}
.h4{height:2.620898px;}
.hb{height:27.650391px;}
.h2{height:31.500000px;}
.h6{height:41.291016px;}
.hc{height:41.894531px;}
.ha{height:43.804688px;}
.h1{height:50.273438px;}
.h7{height:52.312500px;}
.h3{height:52.417969px;}
.h9{height:52.558594px;}
.h8{height:65.707031px;}
.h5{height:146.137500px;}
.h0{height:1188.000000px;}
.w3{width:204.675000px;}
.w2{width:501.150000px;}
.w4{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:13.500000px;}
.x2{left:108.037486px;}
.x4{left:110.130000px;}
.x11{left:113.137486px;}
.x6{left:155.130000px;}
.x12{left:162.029986px;}
.x13{left:171.929986px;}
.xa{left:174.329986px;}
.xc{left:198.674986px;}
.xd{left:225.974986px;}
.x9{left:320.219986px;}
.x10{left:324.119986px;}
.x7{left:337.319986px;}
.xb{left:345.719986px;}
.x8{left:459.149986px;}
.x3{left:609.195000px;}
.xe{left:693.824973px;}
.xf{left:699.824986px;}
.x1{left:801.254986px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v3{vertical-align:16.000000pt;}
.ls9{letter-spacing:-0.789333pt;}
.ls12{letter-spacing:-0.597333pt;}
.ls8{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls6{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.224000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.704000pt;}
.ls10{letter-spacing:2.080000pt;}
.ls11{letter-spacing:3.200000pt;}
.ws2{word-spacing:-16.469333pt;}
.ws3{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.957333pt;}
.ws6{word-spacing:-15.765333pt;}
.ws7{word-spacing:-15.616000pt;}
.ws8{word-spacing:-15.402667pt;}
.ws1{word-spacing:-10.666667pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-4.304000pt;}
._15{margin-left:-3.392000pt;}
._14{margin-left:-2.496000pt;}
._0{margin-left:-1.152000pt;}
._1{width:0.912000pt;}
._6{width:1.968000pt;}
._f{width:3.072000pt;}
._11{width:4.000000pt;}
._18{width:4.922667pt;}
._10{width:5.840000pt;}
._4{width:7.152000pt;}
._5{width:8.080000pt;}
._e{width:9.424000pt;}
._b{width:10.677333pt;}
._a{width:11.936000pt;}
._d{width:13.530667pt;}
._c{width:14.421333pt;}
._13{width:17.792000pt;}
._12{width:18.688000pt;}
._16{width:19.648000pt;}
._17{width:20.560000pt;}
._3{width:21.488000pt;}
._2{width:22.528000pt;}
._1e{width:24.000000pt;}
._1c{width:28.992000pt;}
._1b{width:30.256000pt;}
._19{width:33.658667pt;}
._7{width:34.629333pt;}
._1a{width:36.602667pt;}
._9{width:43.312000pt;}
._8{width:44.608000pt;}
.fs1{font-size:3.200000pt;}
.fs4{font-size:35.200000pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:8.000000pt;}
.yb{bottom:12.000000pt;}
.ya{bottom:15.466667pt;}
.y4{bottom:28.000000pt;}
.y2{bottom:51.233333pt;}
.y9{bottom:51.773333pt;}
.y1{bottom:69.633333pt;}
.y8{bottom:84.826667pt;}
.y4a{bottom:98.700000pt;}
.yaf{bottom:100.566667pt;}
.ye0{bottom:101.900000pt;}
.y49{bottom:103.500000pt;}
.ybf{bottom:109.366667pt;}
.y82{bottom:111.766667pt;}
.y48{bottom:114.433333pt;}
.yc{bottom:114.973333pt;}
.y28{bottom:117.633333pt;}
.y7{bottom:117.893333pt;}
.ydf{bottom:121.900000pt;}
.ybe{bottom:129.100000pt;}
.yae{bottom:130.166667pt;}
.y81{bottom:141.640000pt;}
.yde{bottom:141.893333pt;}
.y27{bottom:146.693333pt;}
.ybd{bottom:149.106667pt;}
.y97{bottom:149.626667pt;}
.yad{bottom:160.066667pt;}
.ybc{bottom:169.133333pt;}
.ydd{bottom:169.666667pt;}
.y80{bottom:171.533333pt;}
.y47{bottom:171.800000pt;}
.y26{bottom:176.600000pt;}
.y96{bottom:179.533333pt;}
.y66{bottom:180.066667pt;}
.ydc{bottom:189.666667pt;}
.yac{bottom:189.933333pt;}
.ybb{bottom:198.733333pt;}
.y7f{bottom:201.400000pt;}
.y46{bottom:201.666667pt;}
.y25{bottom:206.466667pt;}
.y95{bottom:209.133333pt;}
.ydb{bottom:209.400000pt;}
.y65{bottom:209.933333pt;}
.yab{bottom:219.800000pt;}
.y7e{bottom:221.400000pt;}
.yba{bottom:228.600000pt;}
.y45{bottom:231.533333pt;}
.y24{bottom:236.333333pt;}
.yda{bottom:237.400000pt;}
.y94{bottom:239.000000pt;}
.y64{bottom:239.800000pt;}
.y7d{bottom:241.400000pt;}
.yaa{bottom:249.666667pt;}
.yd9{bottom:257.400000pt;}
.yb9{bottom:258.466667pt;}
.y7c{bottom:260.600000pt;}
.y44{bottom:261.400000pt;}
.y23{bottom:265.933333pt;}
.y93{bottom:268.866667pt;}
.y63{bottom:269.400000pt;}
.ya9{bottom:269.666667pt;}
.yd8{bottom:277.133333pt;}
.yb8{bottom:288.333333pt;}
.y7b{bottom:289.666667pt;}
.y43{bottom:291.306667pt;}
.y22{bottom:295.840000pt;}
.y92{bottom:298.773333pt;}
.y62{bottom:299.293333pt;}
.yd7{bottom:304.893333pt;}
.ya8{bottom:308.893333pt;}
.yb7{bottom:317.960000pt;}
.y7a{bottom:319.560000pt;}
.y42{bottom:320.893333pt;}
.yd6{bottom:324.893333pt;}
.y21{bottom:325.706667pt;}
.y91{bottom:328.640000pt;}
.y61{bottom:329.173333pt;}
.yd5{bottom:344.893333pt;}
.yb6{bottom:347.840000pt;}
.y79{bottom:349.440000pt;}
.y41{bottom:350.773333pt;}
.y20{bottom:355.560000pt;}
.y90{bottom:358.506667pt;}
.y60{bottom:359.040000pt;}
.yd4{bottom:364.640000pt;}
.yb5{bottom:377.693333pt;}
.y78{bottom:379.306667pt;}
.y40{bottom:380.640000pt;}
.y1f{bottom:385.440000pt;}
.y8f{bottom:388.360000pt;}
.y5f{bottom:388.893333pt;}
.yd3{bottom:392.373333pt;}
.yb4{bottom:407.573333pt;}
.y77{bottom:408.906667pt;}
.y3f{bottom:410.506667pt;}
.yd2{bottom:412.360000pt;}
.y1e{bottom:415.306667pt;}
.y8e{bottom:417.973333pt;}
.y5e{bottom:418.760000pt;}
.yb3{bottom:437.466667pt;}
.y76{bottom:438.800000pt;}
.y3e{bottom:440.400000pt;}
.y1d{bottom:444.933333pt;}
.y8d{bottom:447.866667pt;}
.y5d{bottom:448.400000pt;}
.yd1{bottom:460.400000pt;}
.yb2{bottom:467.333333pt;}
.y8c{bottom:467.866667pt;}
.y75{bottom:468.666667pt;}
.y3d{bottom:470.266667pt;}
.y1c{bottom:474.800000pt;}
.ya7{bottom:477.733333pt;}
.y5c{bottom:478.266667pt;}
.y8b{bottom:487.866667pt;}
.yd0{bottom:488.133333pt;}
.yb1{bottom:496.933333pt;}
.y74{bottom:498.533333pt;}
.y3c{bottom:500.133333pt;}
.y1b{bottom:504.666667pt;}
.y8a{bottom:507.066667pt;}
.ya6{bottom:507.600000pt;}
.y5b{bottom:508.133333pt;}
.yb0{bottom:526.800000pt;}
.y89{bottom:527.066667pt;}
.ycf{bottom:527.866667pt;}
.y73{bottom:528.400000pt;}
.y3b{bottom:529.733333pt;}
.y1a{bottom:534.533333pt;}
.ya5{bottom:537.466667pt;}
.y5a{bottom:538.000000pt;}
.y19{bottom:554.533333pt;}
.yce{bottom:555.600000pt;}
.y88{bottom:556.666667pt;}
.y72{bottom:558.266667pt;}
.y3a{bottom:559.600000pt;}
.ya4{bottom:567.333333pt;}
.y59{bottom:567.866667pt;}
.y18{bottom:574.560000pt;}
.ycd{bottom:575.640000pt;}
.y87{bottom:586.560000pt;}
.y71{bottom:587.893333pt;}
.y39{bottom:589.506667pt;}
.y17{bottom:593.773333pt;}
.ycc{bottom:595.640000pt;}
.ya3{bottom:596.973333pt;}
.y58{bottom:597.773333pt;}
.y16{bottom:613.506667pt;}
.y86{bottom:616.440000pt;}
.y70{bottom:617.773333pt;}
.y38{bottom:619.360000pt;}
.ycb{bottom:623.373333pt;}
.ya2{bottom:626.840000pt;}
.y57{bottom:627.360000pt;}
.y15{bottom:632.693333pt;}
.yca{bottom:643.360000pt;}
.y85{bottom:646.306667pt;}
.y56{bottom:647.373333pt;}
.y6f{bottom:647.640000pt;}
.y37{bottom:649.240000pt;}
.y14{bottom:651.906667pt;}
.yed{bottom:654.026667pt;}
.ya1{bottom:656.693333pt;}
.yc9{bottom:663.360000pt;}
.y55{bottom:667.360000pt;}
.y13{bottom:671.373333pt;}
.y84{bottom:675.906667pt;}
.y6e{bottom:677.506667pt;}
.y36{bottom:679.106667pt;}
.yec{bottom:681.773333pt;}
.yc8{bottom:683.093333pt;}
.ya0{bottom:686.560000pt;}
.y54{bottom:686.840000pt;}
.y12{bottom:690.560000pt;}
.yeb{bottom:701.773333pt;}
.y83{bottom:705.773333pt;}
.y53{bottom:706.040000pt;}
.y6d{bottom:707.373333pt;}
.y35{bottom:708.706667pt;}
.y11{bottom:709.773333pt;}
.yc7{bottom:710.866667pt;}
.y9f{bottom:716.466667pt;}
.yea{bottom:721.800000pt;}
.y10{bottom:729.266667pt;}
.yc6{bottom:731.133333pt;}
.y52{bottom:735.666667pt;}
.y6c{bottom:737.266667pt;}
.y33{bottom:738.600000pt;}
.ye9{bottom:741.533333pt;}
.y34{bottom:742.600000pt;}
.y9e{bottom:746.333333pt;}
.yf{bottom:748.466667pt;}
.yc5{bottom:750.333333pt;}
.y51{bottom:765.533333pt;}
.y6b{bottom:767.133333pt;}
.ye{bottom:767.666667pt;}
.y32{bottom:768.466667pt;}
.ye8{bottom:769.533333pt;}
.yc4{bottom:770.066667pt;}
.y9d{bottom:775.933333pt;}
.yd{bottom:787.133333pt;}
.y31{bottom:788.466667pt;}
.ye7{bottom:789.533333pt;}
.y50{bottom:795.400000pt;}
.y6a{bottom:796.466667pt;}
.yc3{bottom:797.800000pt;}
.y6{bottom:802.066667pt;}
.y9c{bottom:805.800000pt;}
.y30{bottom:808.466667pt;}
.ye6{bottom:809.266667pt;}
.y69{bottom:815.933333pt;}
.yc2{bottom:817.800000pt;}
.y4f{bottom:825.266667pt;}
.y9b{bottom:825.800000pt;}
.y2f{bottom:827.666667pt;}
.y68{bottom:835.133333pt;}
.ye5{bottom:837.000000pt;}
.yc1{bottom:837.800000pt;}
.y9a{bottom:845.800000pt;}
.y2e{bottom:847.133333pt;}
.y4e{bottom:854.893333pt;}
.y67{bottom:855.173333pt;}
.ye4{bottom:857.040000pt;}
.y99{bottom:865.040000pt;}
.yc0{bottom:865.560000pt;}
.y2d{bottom:866.373333pt;}
.ye3{bottom:877.040000pt;}
.y4d{bottom:884.773333pt;}
.y98{bottom:885.040000pt;}
.y2c{bottom:885.560000pt;}
.ye2{bottom:904.773333pt;}
.y2b{bottom:905.560000pt;}
.y4c{bottom:914.626667pt;}
.ye1{bottom:924.773333pt;}
.y2a{bottom:925.293333pt;}
.y3{bottom:931.960000pt;}
.y4b{bottom:944.506667pt;}
.y29{bottom:945.293333pt;}
.h4{height:2.329687pt;}
.hb{height:24.578125pt;}
.h2{height:28.000000pt;}
.h6{height:36.703125pt;}
.hc{height:37.239583pt;}
.ha{height:38.937500pt;}
.h1{height:44.687500pt;}
.h7{height:46.500000pt;}
.h3{height:46.593750pt;}
.h9{height:46.718750pt;}
.h8{height:58.406250pt;}
.h5{height:129.900000pt;}
.h0{height:1056.000000pt;}
.w3{width:181.933333pt;}
.w2{width:445.466667pt;}
.w4{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:12.000000pt;}
.x2{left:96.033321pt;}
.x4{left:97.893333pt;}
.x11{left:100.566655pt;}
.x6{left:137.893333pt;}
.x12{left:144.026655pt;}
.x13{left:152.826655pt;}
.xa{left:154.959988pt;}
.xc{left:176.599988pt;}
.xd{left:200.866655pt;}
.x9{left:284.639988pt;}
.x10{left:288.106655pt;}
.x7{left:299.839988pt;}
.xb{left:307.306655pt;}
.x8{left:408.133321pt;}
.x3{left:541.506667pt;}
.xe{left:616.733309pt;}
.xf{left:622.066655pt;}
.x1{left:712.226655pt;}
}




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