
    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_81e7288359aa17ade850ffcf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c9eaf89cae8ef403fc127ff9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_5101c3383ab648a67070c3c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d21bb9b0b39d1b7b19987721.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4c89e605059f48a61d072923.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.864000px;}
.ls0{letter-spacing:4.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-5.310720px;}
._d{margin-left:-4.248000px;}
._10{margin-left:-2.538720px;}
._0{margin-left:-1.457280px;}
._1{width:1.583520px;}
._3{width:2.664000px;}
._2{width:3.672480px;}
._15{width:4.823040px;}
._e{width:5.904000px;}
._f{width:7.236960px;}
._14{width:8.315040px;}
._8{width:9.720000px;}
._9{width:10.944000px;}
._13{width:12.689760px;}
._18{width:14.112000px;}
._c{width:15.624000px;}
._16{width:16.721280px;}
._12{width:19.368480px;}
._11{width:20.952000px;}
._4{width:22.608000px;}
._5{width:23.772000px;}
._1b{width:25.091520px;}
._1a{width:26.172480px;}
._b{width:27.252000px;}
._a{width:28.512000px;}
._1c{width:30.096000px;}
._19{width:33.155040px;}
._6{width:34.344000px;}
._7{width:35.400000px;}
._24{width:47.880000px;}
._1d{width:54.936000px;}
._1e{width:70.272000px;}
._1f{width:71.292000px;}
._20{width:161.208000px;}
._21{width:204.408000px;}
._23{width:243.000000px;}
._22{width:304.416000px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y33{bottom:173.190000px;}
.yb3{bottom:174.450000px;}
.ye2{bottom:176.970000px;}
.yff{bottom:177.510000px;}
.y77{bottom:182.370000px;}
.y83{bottom:187.770000px;}
.ycc{bottom:188.130000px;}
.y52{bottom:190.110000px;}
.y32{bottom:193.890000px;}
.yfe{bottom:198.210000px;}
.yb2{bottom:205.410000px;}
.y99{bottom:210.630000px;}
.y70{bottom:213.330000px;}
.ye1{bottom:214.230000px;}
.y31{bottom:214.590000px;}
.y82{bottom:218.730000px;}
.yfd{bottom:218.910000px;}
.ycb{bottom:219.090000px;}
.y51{bottom:221.250000px;}
.y30{bottom:235.290000px;}
.yb1{bottom:236.550000px;}
.yfc{bottom:239.610000px;}
.y98{bottom:241.590000px;}
.y6f{bottom:244.470000px;}
.y81{bottom:245.370000px;}
.y50{bottom:248.430000px;}
.y2f{bottom:255.990000px;}
.yca{bottom:256.170000px;}
.yb0{bottom:263.730000px;}
.yfb{bottom:270.750000px;}
.y97{bottom:272.730000px;}
.y6e{bottom:275.430000px;}
.ye0{bottom:276.330000px;}
.y2e{bottom:276.690000px;}
.y4f{bottom:281.010000px;}
.y80{bottom:285.510000px;}
.yc9{bottom:287.130000px;}
.yfa{bottom:291.450000px;}
.y2d{bottom:297.390000px;}
.y96{bottom:303.690000px;}
.y6d{bottom:306.570000px;}
.yaf{bottom:306.750000px;}
.ydf{bottom:307.470000px;}
.y4e{bottom:312.150000px;}
.y2c{bottom:318.090000px;}
.yc8{bottom:318.270000px;}
.y7f{bottom:322.590000px;}
.y95{bottom:330.330000px;}
.yf9{bottom:332.850000px;}
.y6c{bottom:337.575000px;}
.yde{bottom:338.475000px;}
.y2b{bottom:338.835000px;}
.y4d{bottom:343.155000px;}
.yae{bottom:343.695000px;}
.yc7{bottom:349.275000px;}
.y7e{bottom:353.595000px;}
.y2a{bottom:359.535000px;}
.y6b{bottom:368.715000px;}
.ydd{bottom:369.615000px;}
.y94{bottom:370.515000px;}
.y4c{bottom:374.295000px;}
.yad{bottom:374.835000px;}
.y29{bottom:380.235000px;}
.yc6{bottom:380.415000px;}
.yf8{bottom:384.555000px;}
.y7d{bottom:384.735000px;}
.y6a{bottom:399.675000px;}
.ydc{bottom:400.575000px;}
.y28{bottom:400.935000px;}
.y4b{bottom:405.255000px;}
.yac{bottom:405.795000px;}
.y93{bottom:407.595000px;}
.yc5{bottom:411.375000px;}
.y7c{bottom:415.695000px;}
.y27{bottom:421.635000px;}
.yf7{bottom:425.955000px;}
.y76{bottom:426.315000px;}
.y69{bottom:430.815000px;}
.ydb{bottom:431.715000px;}
.y4a{bottom:436.395000px;}
.yab{bottom:436.935000px;}
.y92{bottom:438.555000px;}
.y26{bottom:442.335000px;}
.yc4{bottom:442.515000px;}
.yf6{bottom:446.655000px;}
.y7b{bottom:452.775000px;}
.y68{bottom:461.775000px;}
.yda{bottom:462.675000px;}
.y25{bottom:463.035000px;}
.y75{bottom:466.455000px;}
.y49{bottom:467.355000px;}
.yaa{bottom:467.895000px;}
.y91{bottom:469.695000px;}
.yc3{bottom:473.475000px;}
.y24{bottom:483.735000px;}
.yf5{bottom:488.055000px;}
.y7a{bottom:489.855000px;}
.y67{bottom:492.915000px;}
.yd9{bottom:493.815000px;}
.y74{bottom:497.595000px;}
.y48{bottom:498.495000px;}
.y90{bottom:500.655000px;}
.y23{bottom:504.435000px;}
.yc2{bottom:504.615000px;}
.ya9{bottom:504.975000px;}
.yf4{bottom:519.195000px;}
.y66{bottom:523.875000px;}
.yd8{bottom:524.775000px;}
.y22{bottom:525.135000px;}
.y73{bottom:528.555000px;}
.y47{bottom:529.455000px;}
.y8f{bottom:531.795000px;}
.yf3{bottom:539.895000px;}
.yc1{bottom:541.695000px;}
.ya8{bottom:542.055000px;}
.y21{bottom:545.835000px;}
.y65{bottom:555.015000px;}
.yd7{bottom:555.915000px;}
.y72{bottom:559.695000px;}
.y46{bottom:560.595000px;}
.y20{bottom:566.535000px;}
.y8e{bottom:568.875000px;}
.yc0{bottom:572.655000px;}
.ya7{bottom:579.135000px;}
.yf2{bottom:581.295000px;}
.y64{bottom:581.655000px;}
.yd6{bottom:586.875000px;}
.y1f{bottom:587.235000px;}
.y71{bottom:590.655000px;}
.y45{bottom:591.555000px;}
.y8d{bottom:599.835000px;}
.ybf{bottom:603.645000px;}
.y1e{bottom:607.965000px;}
.yf1{bottom:612.285000px;}
.ya6{bottom:616.245000px;}
.yd5{bottom:618.045000px;}
.y63{bottom:621.645000px;}
.y44{bottom:622.545000px;}
.y1d{bottom:628.665000px;}
.y8c{bottom:631.005000px;}
.yf0{bottom:632.985000px;}
.ybe{bottom:634.785000px;}
.yd4{bottom:649.005000px;}
.y1c{bottom:649.365000px;}
.y62{bottom:652.785000px;}
.ya5{bottom:653.145000px;}
.y43{bottom:653.685000px;}
.y8b{bottom:661.965000px;}
.ybd{bottom:665.745000px;}
.y1b{bottom:670.065000px;}
.yef{bottom:674.385000px;}
.yd3{bottom:680.145000px;}
.y61{bottom:683.745000px;}
.y42{bottom:684.645000px;}
.ya4{bottom:690.225000px;}
.y1a{bottom:690.765000px;}
.y8a{bottom:693.105000px;}
.ybc{bottom:696.885000px;}
.yee{bottom:705.345000px;}
.yd2{bottom:711.105000px;}
.y19{bottom:711.465000px;}
.y60{bottom:714.885000px;}
.y41{bottom:715.785000px;}
.y89{bottom:719.745000px;}
.yed{bottom:726.045000px;}
.ya3{bottom:727.305000px;}
.ybb{bottom:727.845000px;}
.y10c{bottom:729.645000px;}
.y18{bottom:732.165000px;}
.yd1{bottom:742.245000px;}
.y5f{bottom:745.845000px;}
.y40{bottom:746.745000px;}
.y10b{bottom:750.345000px;}
.y17{bottom:752.865000px;}
.yba{bottom:758.985000px;}
.y88{bottom:761.865000px;}
.ya2{bottom:764.385000px;}
.yec{bottom:767.445000px;}
.y10a{bottom:771.045000px;}
.yd0{bottom:773.205000px;}
.y16{bottom:773.565000px;}
.y5e{bottom:776.985000px;}
.y3f{bottom:777.885000px;}
.y109{bottom:791.745000px;}
.y15{bottom:794.265000px;}
.yb9{bottom:796.065000px;}
.yeb{bottom:798.585000px;}
.ya1{bottom:801.465000px;}
.y87{bottom:802.005000px;}
.ycf{bottom:804.345000px;}
.y5d{bottom:807.945000px;}
.y3e{bottom:808.845000px;}
.y108{bottom:812.445000px;}
.y14{bottom:814.965000px;}
.yea{bottom:819.285000px;}
.yb8{bottom:827.025000px;}
.y86{bottom:833.145000px;}
.yce{bottom:835.305000px;}
.y13{bottom:835.665000px;}
.ya0{bottom:838.545000px;}
.y5c{bottom:839.085000px;}
.y3d{bottom:839.985000px;}
.y107{bottom:843.405000px;}
.y12{bottom:856.365000px;}
.yb7{bottom:858.165000px;}
.ye9{bottom:860.685000px;}
.y85{bottom:864.105000px;}
.ycd{bottom:865.545000px;}
.y5b{bottom:870.045000px;}
.y3c{bottom:870.990000px;}
.y9f{bottom:875.490000px;}
.y11{bottom:877.110000px;}
.y79{bottom:889.170000px;}
.y106{bottom:890.790000px;}
.ye8{bottom:891.690000px;}
.y84{bottom:895.290000px;}
.y10{bottom:897.810000px;}
.y5a{bottom:901.230000px;}
.y3b{bottom:902.130000px;}
.y105{bottom:911.490000px;}
.ye7{bottom:912.390000px;}
.y9e{bottom:912.570000px;}
.yf{bottom:918.510000px;}
.y78{bottom:926.250000px;}
.y59{bottom:932.190000px;}
.y3a{bottom:933.090000px;}
.ye{bottom:939.210000px;}
.y9d{bottom:949.650000px;}
.y104{bottom:952.890000px;}
.ye6{bottom:953.790000px;}
.yb6{bottom:957.210000px;}
.yd{bottom:959.910000px;}
.y58{bottom:963.330000px;}
.y39{bottom:964.230000px;}
.ye5{bottom:974.490000px;}
.yc{bottom:980.610000px;}
.y103{bottom:984.030000px;}
.y9c{bottom:986.730000px;}
.yb5{bottom:988.350000px;}
.y57{bottom:994.290000px;}
.y38{bottom:995.190000px;}
.yb{bottom:1001.310000px;}
.y102{bottom:1004.730000px;}
.yb4{bottom:1019.310000px;}
.ya{bottom:1022.010000px;}
.y9b{bottom:1023.810000px;}
.y56{bottom:1025.430000px;}
.y37{bottom:1026.330000px;}
.y9{bottom:1042.710000px;}
.y101{bottom:1046.130000px;}
.ye4{bottom:1047.030000px;}
.y9a{bottom:1050.450000px;}
.y55{bottom:1056.390000px;}
.y36{bottom:1057.290000px;}
.y8{bottom:1064.670000px;}
.y100{bottom:1066.830000px;}
.ye3{bottom:1067.730000px;}
.y54{bottom:1087.530000px;}
.y35{bottom:1088.430000px;}
.y7{bottom:1090.950000px;}
.y6{bottom:1112.910000px;}
.y34{bottom:1115.610000px;}
.y53{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h9{height:53.573906px;}
.h5{height:54.878906px;}
.h3{height:59.383125px;}
.h6{height:63.949219px;}
.h2{height:64.546875px;}
.h7{height:74.820586px;}
.h8{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x7{left:170.129987px;}
.xd{left:198.029987px;}
.xa{left:213.509987px;}
.x9{left:259.049987px;}
.x6{left:269.489987px;}
.x4{left:274.349987px;}
.xb{left:301.574987px;}
.xc{left:311.654987px;}
.x8{left:332.174987px;}
.xe{left:384.554987px;}
.x5{left:467.924987px;}
.x1{left:489.164987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls0{letter-spacing:3.840000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-4.720640pt;}
._d{margin-left:-3.776000pt;}
._10{margin-left:-2.256640pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.407573pt;}
._3{width:2.368000pt;}
._2{width:3.264427pt;}
._15{width:4.287147pt;}
._e{width:5.248000pt;}
._f{width:6.432853pt;}
._14{width:7.391147pt;}
._8{width:8.640000pt;}
._9{width:9.728000pt;}
._13{width:11.279787pt;}
._18{width:12.544000pt;}
._c{width:13.888000pt;}
._16{width:14.863360pt;}
._12{width:17.216427pt;}
._11{width:18.624000pt;}
._4{width:20.096000pt;}
._5{width:21.130667pt;}
._1b{width:22.303573pt;}
._1a{width:23.264427pt;}
._b{width:24.224000pt;}
._a{width:25.344000pt;}
._1c{width:26.752000pt;}
._19{width:29.471147pt;}
._6{width:30.528000pt;}
._7{width:31.466667pt;}
._24{width:42.560000pt;}
._1d{width:48.832000pt;}
._1e{width:62.464000pt;}
._1f{width:63.370667pt;}
._20{width:143.296000pt;}
._21{width:181.696000pt;}
._23{width:216.000000pt;}
._22{width:270.592000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y33{bottom:153.946667pt;}
.yb3{bottom:155.066667pt;}
.ye2{bottom:157.306667pt;}
.yff{bottom:157.786667pt;}
.y77{bottom:162.106667pt;}
.y83{bottom:166.906667pt;}
.ycc{bottom:167.226667pt;}
.y52{bottom:168.986667pt;}
.y32{bottom:172.346667pt;}
.yfe{bottom:176.186667pt;}
.yb2{bottom:182.586667pt;}
.y99{bottom:187.226667pt;}
.y70{bottom:189.626667pt;}
.ye1{bottom:190.426667pt;}
.y31{bottom:190.746667pt;}
.y82{bottom:194.426667pt;}
.yfd{bottom:194.586667pt;}
.ycb{bottom:194.746667pt;}
.y51{bottom:196.666667pt;}
.y30{bottom:209.146667pt;}
.yb1{bottom:210.266667pt;}
.yfc{bottom:212.986667pt;}
.y98{bottom:214.746667pt;}
.y6f{bottom:217.306667pt;}
.y81{bottom:218.106667pt;}
.y50{bottom:220.826667pt;}
.y2f{bottom:227.546667pt;}
.yca{bottom:227.706667pt;}
.yb0{bottom:234.426667pt;}
.yfb{bottom:240.666667pt;}
.y97{bottom:242.426667pt;}
.y6e{bottom:244.826667pt;}
.ye0{bottom:245.626667pt;}
.y2e{bottom:245.946667pt;}
.y4f{bottom:249.786667pt;}
.y80{bottom:253.786667pt;}
.yc9{bottom:255.226667pt;}
.yfa{bottom:259.066667pt;}
.y2d{bottom:264.346667pt;}
.y96{bottom:269.946667pt;}
.y6d{bottom:272.506667pt;}
.yaf{bottom:272.666667pt;}
.ydf{bottom:273.306667pt;}
.y4e{bottom:277.466667pt;}
.y2c{bottom:282.746667pt;}
.yc8{bottom:282.906667pt;}
.y7f{bottom:286.746667pt;}
.y95{bottom:293.626667pt;}
.yf9{bottom:295.866667pt;}
.y6c{bottom:300.066667pt;}
.yde{bottom:300.866667pt;}
.y2b{bottom:301.186667pt;}
.y4d{bottom:305.026667pt;}
.yae{bottom:305.506667pt;}
.yc7{bottom:310.466667pt;}
.y7e{bottom:314.306667pt;}
.y2a{bottom:319.586667pt;}
.y6b{bottom:327.746667pt;}
.ydd{bottom:328.546667pt;}
.y94{bottom:329.346667pt;}
.y4c{bottom:332.706667pt;}
.yad{bottom:333.186667pt;}
.y29{bottom:337.986667pt;}
.yc6{bottom:338.146667pt;}
.yf8{bottom:341.826667pt;}
.y7d{bottom:341.986667pt;}
.y6a{bottom:355.266667pt;}
.ydc{bottom:356.066667pt;}
.y28{bottom:356.386667pt;}
.y4b{bottom:360.226667pt;}
.yac{bottom:360.706667pt;}
.y93{bottom:362.306667pt;}
.yc5{bottom:365.666667pt;}
.y7c{bottom:369.506667pt;}
.y27{bottom:374.786667pt;}
.yf7{bottom:378.626667pt;}
.y76{bottom:378.946667pt;}
.y69{bottom:382.946667pt;}
.ydb{bottom:383.746667pt;}
.y4a{bottom:387.906667pt;}
.yab{bottom:388.386667pt;}
.y92{bottom:389.826667pt;}
.y26{bottom:393.186667pt;}
.yc4{bottom:393.346667pt;}
.yf6{bottom:397.026667pt;}
.y7b{bottom:402.466667pt;}
.y68{bottom:410.466667pt;}
.yda{bottom:411.266667pt;}
.y25{bottom:411.586667pt;}
.y75{bottom:414.626667pt;}
.y49{bottom:415.426667pt;}
.yaa{bottom:415.906667pt;}
.y91{bottom:417.506667pt;}
.yc3{bottom:420.866667pt;}
.y24{bottom:429.986667pt;}
.yf5{bottom:433.826667pt;}
.y7a{bottom:435.426667pt;}
.y67{bottom:438.146667pt;}
.yd9{bottom:438.946667pt;}
.y74{bottom:442.306667pt;}
.y48{bottom:443.106667pt;}
.y90{bottom:445.026667pt;}
.y23{bottom:448.386667pt;}
.yc2{bottom:448.546667pt;}
.ya9{bottom:448.866667pt;}
.yf4{bottom:461.506667pt;}
.y66{bottom:465.666667pt;}
.yd8{bottom:466.466667pt;}
.y22{bottom:466.786667pt;}
.y73{bottom:469.826667pt;}
.y47{bottom:470.626667pt;}
.y8f{bottom:472.706667pt;}
.yf3{bottom:479.906667pt;}
.yc1{bottom:481.506667pt;}
.ya8{bottom:481.826667pt;}
.y21{bottom:485.186667pt;}
.y65{bottom:493.346667pt;}
.yd7{bottom:494.146667pt;}
.y72{bottom:497.506667pt;}
.y46{bottom:498.306667pt;}
.y20{bottom:503.586667pt;}
.y8e{bottom:505.666667pt;}
.yc0{bottom:509.026667pt;}
.ya7{bottom:514.786667pt;}
.yf2{bottom:516.706667pt;}
.y64{bottom:517.026667pt;}
.yd6{bottom:521.666667pt;}
.y1f{bottom:521.986667pt;}
.y71{bottom:525.026667pt;}
.y45{bottom:525.826667pt;}
.y8d{bottom:533.186667pt;}
.ybf{bottom:536.573333pt;}
.y1e{bottom:540.413333pt;}
.yf1{bottom:544.253333pt;}
.ya6{bottom:547.773333pt;}
.yd5{bottom:549.373333pt;}
.y63{bottom:552.573333pt;}
.y44{bottom:553.373333pt;}
.y1d{bottom:558.813333pt;}
.y8c{bottom:560.893333pt;}
.yf0{bottom:562.653333pt;}
.ybe{bottom:564.253333pt;}
.yd4{bottom:576.893333pt;}
.y1c{bottom:577.213333pt;}
.y62{bottom:580.253333pt;}
.ya5{bottom:580.573333pt;}
.y43{bottom:581.053333pt;}
.y8b{bottom:588.413333pt;}
.ybd{bottom:591.773333pt;}
.y1b{bottom:595.613333pt;}
.yef{bottom:599.453333pt;}
.yd3{bottom:604.573333pt;}
.y61{bottom:607.773333pt;}
.y42{bottom:608.573333pt;}
.ya4{bottom:613.533333pt;}
.y1a{bottom:614.013333pt;}
.y8a{bottom:616.093333pt;}
.ybc{bottom:619.453333pt;}
.yee{bottom:626.973333pt;}
.yd2{bottom:632.093333pt;}
.y19{bottom:632.413333pt;}
.y60{bottom:635.453333pt;}
.y41{bottom:636.253333pt;}
.y89{bottom:639.773333pt;}
.yed{bottom:645.373333pt;}
.ya3{bottom:646.493333pt;}
.ybb{bottom:646.973333pt;}
.y10c{bottom:648.573333pt;}
.y18{bottom:650.813333pt;}
.yd1{bottom:659.773333pt;}
.y5f{bottom:662.973333pt;}
.y40{bottom:663.773333pt;}
.y10b{bottom:666.973333pt;}
.y17{bottom:669.213333pt;}
.yba{bottom:674.653333pt;}
.y88{bottom:677.213333pt;}
.ya2{bottom:679.453333pt;}
.yec{bottom:682.173333pt;}
.y10a{bottom:685.373333pt;}
.yd0{bottom:687.293333pt;}
.y16{bottom:687.613333pt;}
.y5e{bottom:690.653333pt;}
.y3f{bottom:691.453333pt;}
.y109{bottom:703.773333pt;}
.y15{bottom:706.013333pt;}
.yb9{bottom:707.613333pt;}
.yeb{bottom:709.853333pt;}
.ya1{bottom:712.413333pt;}
.y87{bottom:712.893333pt;}
.ycf{bottom:714.973333pt;}
.y5d{bottom:718.173333pt;}
.y3e{bottom:718.973333pt;}
.y108{bottom:722.173333pt;}
.y14{bottom:724.413333pt;}
.yea{bottom:728.253333pt;}
.yb8{bottom:735.133333pt;}
.y86{bottom:740.573333pt;}
.yce{bottom:742.493333pt;}
.y13{bottom:742.813333pt;}
.ya0{bottom:745.373333pt;}
.y5c{bottom:745.853333pt;}
.y3d{bottom:746.653333pt;}
.y107{bottom:749.693333pt;}
.y12{bottom:761.213333pt;}
.yb7{bottom:762.813333pt;}
.ye9{bottom:765.053333pt;}
.y85{bottom:768.093333pt;}
.ycd{bottom:769.373333pt;}
.y5b{bottom:773.373333pt;}
.y3c{bottom:774.213333pt;}
.y9f{bottom:778.213333pt;}
.y11{bottom:779.653333pt;}
.y79{bottom:790.373333pt;}
.y106{bottom:791.813333pt;}
.ye8{bottom:792.613333pt;}
.y84{bottom:795.813333pt;}
.y10{bottom:798.053333pt;}
.y5a{bottom:801.093333pt;}
.y3b{bottom:801.893333pt;}
.y105{bottom:810.213333pt;}
.ye7{bottom:811.013333pt;}
.y9e{bottom:811.173333pt;}
.yf{bottom:816.453333pt;}
.y78{bottom:823.333333pt;}
.y59{bottom:828.613333pt;}
.y3a{bottom:829.413333pt;}
.ye{bottom:834.853333pt;}
.y9d{bottom:844.133333pt;}
.y104{bottom:847.013333pt;}
.ye6{bottom:847.813333pt;}
.yb6{bottom:850.853333pt;}
.yd{bottom:853.253333pt;}
.y58{bottom:856.293333pt;}
.y39{bottom:857.093333pt;}
.ye5{bottom:866.213333pt;}
.yc{bottom:871.653333pt;}
.y103{bottom:874.693333pt;}
.y9c{bottom:877.093333pt;}
.yb5{bottom:878.533333pt;}
.y57{bottom:883.813333pt;}
.y38{bottom:884.613333pt;}
.yb{bottom:890.053333pt;}
.y102{bottom:893.093333pt;}
.yb4{bottom:906.053333pt;}
.ya{bottom:908.453333pt;}
.y9b{bottom:910.053333pt;}
.y56{bottom:911.493333pt;}
.y37{bottom:912.293333pt;}
.y9{bottom:926.853333pt;}
.y101{bottom:929.893333pt;}
.ye4{bottom:930.693333pt;}
.y9a{bottom:933.733333pt;}
.y55{bottom:939.013333pt;}
.y36{bottom:939.813333pt;}
.y8{bottom:946.373333pt;}
.y100{bottom:948.293333pt;}
.ye3{bottom:949.093333pt;}
.y54{bottom:966.693333pt;}
.y35{bottom:967.493333pt;}
.y7{bottom:969.733333pt;}
.y6{bottom:989.253333pt;}
.y34{bottom:991.653333pt;}
.y53{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h9{height:47.621250pt;}
.h5{height:48.781250pt;}
.h3{height:52.785000pt;}
.h6{height:56.843750pt;}
.h2{height:57.375000pt;}
.h7{height:66.507188pt;}
.h8{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x7{left:151.226655pt;}
.xd{left:176.026655pt;}
.xa{left:189.786655pt;}
.x9{left:230.266655pt;}
.x6{left:239.546655pt;}
.x4{left:243.866655pt;}
.xb{left:268.066655pt;}
.xc{left:277.026655pt;}
.x8{left:295.266655pt;}
.xe{left:341.826655pt;}
.x5{left:415.933322pt;}
.x1{left:434.813322pt;}
.x3{left:718.373322pt;}
}




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