
    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_862b57054c3d8f6b0f2a29c6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d459cec1613bcdfc49232280.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_76fbf303edc98659a6e038f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_ad026b9bc54f3de9d1d6b510.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d91117f5cbad6cd00f2a0257.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_0572f8c948be9cd9457906d8.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_29d716445a9714b51ec2cc66.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_5d9a6973c292f85111301f8d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-67.680000px;}
.v3{vertical-align:-66.240000px;}
.v4{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.ls39{letter-spacing:-1.998000px;}
.ls3c{letter-spacing:-1.914000px;}
.ls35{letter-spacing:-1.908000px;}
.ls20{letter-spacing:-1.536000px;}
.ls14{letter-spacing:-1.458000px;}
.ls3a{letter-spacing:-1.440000px;}
.ls40{letter-spacing:-1.254000px;}
.ls9{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.936000px;}
.ls38{letter-spacing:-0.924000px;}
.ls3f{letter-spacing:-0.810000px;}
.ls8{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.507000px;}
.ls3b{letter-spacing:-0.492600px;}
.ls3e{letter-spacing:-0.475200px;}
.ls7{letter-spacing:-0.466800px;}
.ls1f{letter-spacing:-0.276600px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.020160px;}
.ls1e{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.140160px;}
.ls2d{letter-spacing:0.159840px;}
.ls12{letter-spacing:0.200160px;}
.ls5{letter-spacing:0.316800px;}
.ls25{letter-spacing:0.466560px;}
.lsa{letter-spacing:0.466800px;}
.ls36{letter-spacing:0.486600px;}
.ls2e{letter-spacing:0.486720px;}
.ls13{letter-spacing:0.590400px;}
.ls3d{letter-spacing:0.630000px;}
.ls21{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.900000px;}
.ls2f{letter-spacing:1.133280px;}
.ls10{letter-spacing:1.460160px;}
.ls17{letter-spacing:2.160000px;}
.ls11{letter-spacing:3.600000px;}
.ls2{letter-spacing:5.040000px;}
.ls22{letter-spacing:5.220000px;}
.ls1{letter-spacing:6.480000px;}
.ls19{letter-spacing:9.360000px;}
.ls1b{letter-spacing:10.800000px;}
.ls23{letter-spacing:12.240000px;}
.ls24{letter-spacing:12.360000px;}
.ls16{letter-spacing:15.120000px;}
.lsf{letter-spacing:16.560000px;}
.ls3{letter-spacing:18.000000px;}
.lsc{letter-spacing:22.320000px;}
.ls1d{letter-spacing:23.506560px;}
.ls33{letter-spacing:25.200000px;}
.ls2a{letter-spacing:26.640000px;}
.ls30{letter-spacing:29.520000px;}
.ls31{letter-spacing:29.640000px;}
.ls32{letter-spacing:29.700000px;}
.ls2b{letter-spacing:30.960000px;}
.ls2c{letter-spacing:31.080000px;}
.lsd{letter-spacing:38.160000px;}
.ls29{letter-spacing:66.960000px;}
.ls27{letter-spacing:68.400000px;}
.ls26{letter-spacing:68.412000px;}
.ls28{letter-spacing:68.580000px;}
.ls4{letter-spacing:154.800000px;}
.lsb{letter-spacing:154.944000px;}
.ls1c{letter-spacing:193.558560px;}
.ls34{letter-spacing:1151.976000px;}
.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;}
}
.ws9{word-spacing:-15.606600px;}
.ws8{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.843400px;}
.ws0{word-spacing:-14.653200px;}
.wsa{word-spacing:-14.613000px;}
.wsb{word-spacing:-14.400000px;}
.ws10{word-spacing:-14.310000px;}
.ws5{word-spacing:-14.184000px;}
.wsc{word-spacing:-14.148000px;}
.ws2{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.662000px;}
.ws7{word-spacing:-13.212000px;}
.ws11{word-spacing:-13.204800px;}
.wse{word-spacing:-13.187400px;}
.ws12{word-spacing:-12.870000px;}
.ws13{word-spacing:-12.426000px;}
.wsd{word-spacing:-12.240000px;}
.wsf{word-spacing:-11.766000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-10.309680px;}
._6{margin-left:-8.830080px;}
._3{margin-left:-7.166640px;}
._5{margin-left:-5.806080px;}
._4{margin-left:-4.724640px;}
._2{margin-left:-2.712240px;}
._0{margin-left:-1.440000px;}
._1{width:1.016640px;}
._7{width:2.184480px;}
._c{width:3.988320px;}
._d{width:5.382720px;}
._e{width:6.399360px;}
._12{width:7.948080px;}
._a{width:9.241920px;}
._13{width:10.305360px;}
._9{width:11.372880px;}
._8{width:12.481680px;}
._b{width:13.537920px;}
._14{width:16.319520px;}
._11{width:17.769600px;}
._10{width:18.989760px;}
._f{width:20.294880px;}
._16{width:21.296400px;}
._15{width:22.319280px;}
._29{width:23.641200px;}
._24{width:24.715440px;}
._1f{width:26.418240px;}
._20{width:28.280640px;}
._28{width:30.710160px;}
._21{width:31.840560px;}
._22{width:32.946000px;}
._23{width:34.994880px;}
._2a{width:36.461760px;}
._1c{width:37.578960px;}
._1e{width:38.693760px;}
._26{width:43.112880px;}
._25{width:44.270880px;}
._27{width:50.854320px;}
._1b{width:54.855120px;}
._1a{width:57.130560px;}
._2b{width:68.451840px;}
._19{width:73.241280px;}
._17{width:74.257920px;}
._18{width:75.697920px;}
.fc4{color:rgb(16,0,12);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:3.240000px;}
.y74{bottom:3.600000px;}
.y6f{bottom:20.520000px;}
.y73{bottom:20.910000px;}
.y2{bottom:24.480000px;}
.y6e{bottom:37.800000px;}
.y72{bottom:38.190000px;}
.y71{bottom:55.470000px;}
.y1{bottom:65.520000px;}
.yb3{bottom:102.600000px;}
.y39{bottom:104.400000px;}
.y9d{bottom:106.200000px;}
.y62{bottom:113.436000px;}
.y38{bottom:119.916000px;}
.y9c{bottom:123.516000px;}
.y61{bottom:130.716000px;}
.y37{bottom:135.756000px;}
.yb2{bottom:137.196000px;}
.y9b{bottom:140.796000px;}
.y60{bottom:147.996000px;}
.y36{bottom:153.030000px;}
.y9a{bottom:158.070000px;}
.y5f{bottom:165.270000px;}
.yb1{bottom:168.510000px;}
.y99{bottom:174.990000px;}
.y5e{bottom:182.190000px;}
.yb0{bottom:185.790000px;}
.y35{bottom:187.590000px;}
.y98{bottom:192.270000px;}
.y5d{bottom:199.470000px;}
.yaf{bottom:203.070000px;}
.y34{bottom:204.870000px;}
.y97{bottom:209.550000px;}
.y5c{bottom:216.750000px;}
.yae{bottom:220.035000px;}
.y33{bottom:222.195000px;}
.y96{bottom:226.875000px;}
.y5b{bottom:234.075000px;}
.yad{bottom:237.675000px;}
.y32{bottom:239.475000px;}
.y95{bottom:244.155000px;}
.y5a{bottom:251.355000px;}
.yac{bottom:254.955000px;}
.y31{bottom:256.395000px;}
.y94{bottom:261.435000px;}
.y59{bottom:268.635000px;}
.yab{bottom:272.235000px;}
.y30{bottom:273.675000px;}
.y93{bottom:278.715000px;}
.y58{bottom:285.555000px;}
.y68{bottom:285.915000px;}
.yaa{bottom:289.515000px;}
.y2f{bottom:290.955000px;}
.y92{bottom:295.635000px;}
.y57{bottom:302.835000px;}
.y67{bottom:303.195000px;}
.ya9{bottom:306.435000px;}
.y2e{bottom:308.235000px;}
.y91{bottom:313.275000px;}
.y56{bottom:320.475000px;}
.ya8{bottom:323.745000px;}
.y2d{bottom:325.545000px;}
.y90{bottom:330.585000px;}
.y55{bottom:337.785000px;}
.ya7{bottom:341.025000px;}
.y2c{bottom:342.825000px;}
.y8f{bottom:347.865000px;}
.y54{bottom:355.065000px;}
.ya6{bottom:357.945000px;}
.y2b{bottom:360.105000px;}
.y8e{bottom:364.785000px;}
.y53{bottom:371.985000px;}
.ya5{bottom:375.585000px;}
.y2a{bottom:377.385000px;}
.y8d{bottom:382.065000px;}
.y52{bottom:389.265000px;}
.ya4{bottom:392.865000px;}
.y29{bottom:394.665000px;}
.y8c{bottom:399.345000px;}
.y51{bottom:406.545000px;}
.ya3{bottom:410.145000px;}
.y28{bottom:411.945000px;}
.y8b{bottom:416.625000px;}
.y50{bottom:423.825000px;}
.ya2{bottom:427.470000px;}
.y27{bottom:429.270000px;}
.y8a{bottom:433.950000px;}
.y4f{bottom:441.150000px;}
.ya1{bottom:444.750000px;}
.y26{bottom:446.550000px;}
.y89{bottom:451.230000px;}
.y4e{bottom:458.430000px;}
.ya0{bottom:462.030000px;}
.y25{bottom:463.470000px;}
.y88{bottom:468.510000px;}
.y4d{bottom:475.710000px;}
.y9f{bottom:479.310000px;}
.y24{bottom:480.750000px;}
.y87{bottom:485.790000px;}
.y4c{bottom:492.990000px;}
.y9e{bottom:495.870000px;}
.y23{bottom:498.030000px;}
.y86{bottom:503.070000px;}
.y4b{bottom:510.270000px;}
.y22{bottom:515.310000px;}
.y85{bottom:520.350000px;}
.y66{bottom:527.190000px;}
.y4a{bottom:527.550000px;}
.y21{bottom:532.620000px;}
.y84{bottom:537.660000px;}
.y49{bottom:544.860000px;}
.y20{bottom:549.900000px;}
.y83{bottom:554.940000px;}
.y48{bottom:562.140000px;}
.y1f{bottom:567.180000px;}
.y82{bottom:571.860000px;}
.y47{bottom:579.060000px;}
.y1e{bottom:584.460000px;}
.y81{bottom:589.140000px;}
.y46{bottom:596.340000px;}
.y1d{bottom:601.740000px;}
.y80{bottom:606.420000px;}
.y45{bottom:613.620000px;}
.y1c{bottom:619.020000px;}
.y7f{bottom:623.700000px;}
.y44{bottom:630.900000px;}
.y1b{bottom:636.300000px;}
.y7e{bottom:641.010000px;}
.y43{bottom:648.210000px;}
.y1a{bottom:653.250000px;}
.y42{bottom:665.490000px;}
.y19{bottom:670.530000px;}
.y7d{bottom:675.570000px;}
.y41{bottom:682.770000px;}
.y18{bottom:687.810000px;}
.y7c{bottom:692.850000px;}
.y40{bottom:700.050000px;}
.y17{bottom:705.090000px;}
.y7b{bottom:710.130000px;}
.y3f{bottom:717.330000px;}
.y16{bottom:722.010000px;}
.y7a{bottom:727.410000px;}
.y3e{bottom:734.610000px;}
.y15{bottom:739.650000px;}
.y79{bottom:744.735000px;}
.y3d{bottom:751.935000px;}
.y14{bottom:756.975000px;}
.y78{bottom:760.935000px;}
.y3c{bottom:768.855000px;}
.y13{bottom:773.895000px;}
.y77{bottom:775.335000px;}
.y3b{bottom:786.135000px;}
.y12{bottom:789.375000px;}
.y76{bottom:791.895000px;}
.y3a{bottom:803.415000px;}
.y11{bottom:804.495000px;}
.y10{bottom:820.695000px;}
.y75{bottom:823.215000px;}
.y70{bottom:834.735000px;}
.yf{bottom:837.975000px;}
.ye{bottom:855.285000px;}
.yd{bottom:872.565000px;}
.yc{bottom:889.845000px;}
.y6d{bottom:904.605000px;}
.yb{bottom:907.125000px;}
.ya{bottom:924.045000px;}
.y65{bottom:924.405000px;}
.y9{bottom:941.325000px;}
.y64{bottom:941.685000px;}
.y6c{bottom:957.210000px;}
.y8{bottom:958.650000px;}
.y63{bottom:959.010000px;}
.y6a{bottom:975.210000px;}
.y7{bottom:975.930000px;}
.y6{bottom:993.210000px;}
.y69{bottom:996.090000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.hb{height:17.280000px;}
.ha{height:46.638281px;}
.he{height:47.891250px;}
.hc{height:51.876000px;}
.h5{height:52.299844px;}
.h8{height:53.704687px;}
.h9{height:54.219375px;}
.h7{height:55.147500px;}
.h4{height:59.328281px;}
.h2{height:59.357813px;}
.h6{height:60.952500px;}
.hf{height:62.163910px;}
.hd{height:69.156000px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w7{width:72.756000px;}
.w8{width:72.792000px;}
.w5{width:146.232000px;}
.w6{width:146.268000px;}
.w4{width:293.190000px;}
.w3{width:293.220000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:9.720000px;}
.x1f{left:11.160000px;}
.x1a{left:14.070000px;}
.x13{left:15.120000px;}
.x1e{left:18.756000px;}
.x18{left:20.916000px;}
.x15{left:23.085000px;}
.x20{left:28.830000px;}
.x21{left:36.390000px;}
.x10{left:49.716000px;}
.x3{left:51.155989px;}
.xd{left:76.715989px;}
.xf{left:84.636000px;}
.x2{left:93.635989px;}
.x12{left:100.845000px;}
.x6{left:107.711989px;}
.x9{left:109.151989px;}
.xc{left:119.231989px;}
.xe{left:130.031989px;}
.x4{left:135.431989px;}
.x19{left:158.115000px;}
.x8{left:164.234989px;}
.x7{left:181.184989px;}
.x24{left:209.624989px;}
.x14{left:231.585000px;}
.x23{left:271.949989px;}
.x1b{left:305.070000px;}
.xa{left:323.459989px;}
.x1{left:337.859989px;}
.x5{left:349.019989px;}
.xb{left:363.419989px;}
.x22{left:374.609989px;}
.x11{left:378.570000px;}
.x1c{left:452.055000px;}
.x16{left:525.525000px;}
.x1d{left:599.010000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-60.160000pt;}
.v3{vertical-align:-58.880000pt;}
.v4{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls39{letter-spacing:-1.776000pt;}
.ls3c{letter-spacing:-1.701333pt;}
.ls35{letter-spacing:-1.696000pt;}
.ls20{letter-spacing:-1.365333pt;}
.ls14{letter-spacing:-1.296000pt;}
.ls3a{letter-spacing:-1.280000pt;}
.ls40{letter-spacing:-1.114667pt;}
.ls9{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls38{letter-spacing:-0.821333pt;}
.ls3f{letter-spacing:-0.720000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.450667pt;}
.ls3b{letter-spacing:-0.437867pt;}
.ls3e{letter-spacing:-0.422400pt;}
.ls7{letter-spacing:-0.414933pt;}
.ls1f{letter-spacing:-0.245867pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.017920pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.124587pt;}
.ls2d{letter-spacing:0.142080pt;}
.ls12{letter-spacing:0.177920pt;}
.ls5{letter-spacing:0.281600pt;}
.ls25{letter-spacing:0.414720pt;}
.lsa{letter-spacing:0.414933pt;}
.ls36{letter-spacing:0.432533pt;}
.ls2e{letter-spacing:0.432640pt;}
.ls13{letter-spacing:0.524800pt;}
.ls3d{letter-spacing:0.560000pt;}
.ls21{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls2f{letter-spacing:1.007360pt;}
.ls10{letter-spacing:1.297920pt;}
.ls17{letter-spacing:1.920000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls2{letter-spacing:4.480000pt;}
.ls22{letter-spacing:4.640000pt;}
.ls1{letter-spacing:5.760000pt;}
.ls19{letter-spacing:8.320000pt;}
.ls1b{letter-spacing:9.600000pt;}
.ls23{letter-spacing:10.880000pt;}
.ls24{letter-spacing:10.986667pt;}
.ls16{letter-spacing:13.440000pt;}
.lsf{letter-spacing:14.720000pt;}
.ls3{letter-spacing:16.000000pt;}
.lsc{letter-spacing:19.840000pt;}
.ls1d{letter-spacing:20.894720pt;}
.ls33{letter-spacing:22.400000pt;}
.ls2a{letter-spacing:23.680000pt;}
.ls30{letter-spacing:26.240000pt;}
.ls31{letter-spacing:26.346667pt;}
.ls32{letter-spacing:26.400000pt;}
.ls2b{letter-spacing:27.520000pt;}
.ls2c{letter-spacing:27.626667pt;}
.lsd{letter-spacing:33.920000pt;}
.ls29{letter-spacing:59.520000pt;}
.ls27{letter-spacing:60.800000pt;}
.ls26{letter-spacing:60.810667pt;}
.ls28{letter-spacing:60.960000pt;}
.ls4{letter-spacing:137.600000pt;}
.lsb{letter-spacing:137.728000pt;}
.ls1c{letter-spacing:172.052053pt;}
.ls34{letter-spacing:1023.978667pt;}
.ws9{word-spacing:-13.872533pt;}
.ws8{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.194133pt;}
.ws0{word-spacing:-13.025067pt;}
.wsa{word-spacing:-12.989333pt;}
.wsb{word-spacing:-12.800000pt;}
.ws10{word-spacing:-12.720000pt;}
.ws5{word-spacing:-12.608000pt;}
.wsc{word-spacing:-12.576000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws4{word-spacing:-12.144000pt;}
.ws7{word-spacing:-11.744000pt;}
.ws11{word-spacing:-11.737600pt;}
.wse{word-spacing:-11.722133pt;}
.ws12{word-spacing:-11.440000pt;}
.ws13{word-spacing:-11.045333pt;}
.wsd{word-spacing:-10.880000pt;}
.wsf{word-spacing:-10.458667pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-9.164160pt;}
._6{margin-left:-7.848960pt;}
._3{margin-left:-6.370347pt;}
._5{margin-left:-5.160960pt;}
._4{margin-left:-4.199680pt;}
._2{margin-left:-2.410880pt;}
._0{margin-left:-1.280000pt;}
._1{width:0.903680pt;}
._7{width:1.941760pt;}
._c{width:3.545173pt;}
._d{width:4.784640pt;}
._e{width:5.688320pt;}
._12{width:7.064960pt;}
._a{width:8.215040pt;}
._13{width:9.160320pt;}
._9{width:10.109227pt;}
._8{width:11.094827pt;}
._b{width:12.033707pt;}
._14{width:14.506240pt;}
._11{width:15.795200pt;}
._10{width:16.879787pt;}
._f{width:18.039893pt;}
._16{width:18.930133pt;}
._15{width:19.839360pt;}
._29{width:21.014400pt;}
._24{width:21.969280pt;}
._1f{width:23.482880pt;}
._20{width:25.138347pt;}
._28{width:27.297920pt;}
._21{width:28.302720pt;}
._22{width:29.285333pt;}
._23{width:31.106560pt;}
._2a{width:32.410453pt;}
._1c{width:33.403520pt;}
._1e{width:34.394453pt;}
._26{width:38.322560pt;}
._25{width:39.351893pt;}
._27{width:45.203840pt;}
._1b{width:48.760107pt;}
._1a{width:50.782720pt;}
._2b{width:60.846080pt;}
._19{width:65.103360pt;}
._17{width:66.007040pt;}
._18{width:67.287040pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:2.880000pt;}
.y74{bottom:3.200000pt;}
.y6f{bottom:18.240000pt;}
.y73{bottom:18.586667pt;}
.y2{bottom:21.760000pt;}
.y6e{bottom:33.600000pt;}
.y72{bottom:33.946667pt;}
.y71{bottom:49.306667pt;}
.y1{bottom:58.240000pt;}
.yb3{bottom:91.200000pt;}
.y39{bottom:92.800000pt;}
.y9d{bottom:94.400000pt;}
.y62{bottom:100.832000pt;}
.y38{bottom:106.592000pt;}
.y9c{bottom:109.792000pt;}
.y61{bottom:116.192000pt;}
.y37{bottom:120.672000pt;}
.yb2{bottom:121.952000pt;}
.y9b{bottom:125.152000pt;}
.y60{bottom:131.552000pt;}
.y36{bottom:136.026667pt;}
.y9a{bottom:140.506667pt;}
.y5f{bottom:146.906667pt;}
.yb1{bottom:149.786667pt;}
.y99{bottom:155.546667pt;}
.y5e{bottom:161.946667pt;}
.yb0{bottom:165.146667pt;}
.y35{bottom:166.746667pt;}
.y98{bottom:170.906667pt;}
.y5d{bottom:177.306667pt;}
.yaf{bottom:180.506667pt;}
.y34{bottom:182.106667pt;}
.y97{bottom:186.266667pt;}
.y5c{bottom:192.666667pt;}
.yae{bottom:195.586667pt;}
.y33{bottom:197.506667pt;}
.y96{bottom:201.666667pt;}
.y5b{bottom:208.066667pt;}
.yad{bottom:211.266667pt;}
.y32{bottom:212.866667pt;}
.y95{bottom:217.026667pt;}
.y5a{bottom:223.426667pt;}
.yac{bottom:226.626667pt;}
.y31{bottom:227.906667pt;}
.y94{bottom:232.386667pt;}
.y59{bottom:238.786667pt;}
.yab{bottom:241.986667pt;}
.y30{bottom:243.266667pt;}
.y93{bottom:247.746667pt;}
.y58{bottom:253.826667pt;}
.y68{bottom:254.146667pt;}
.yaa{bottom:257.346667pt;}
.y2f{bottom:258.626667pt;}
.y92{bottom:262.786667pt;}
.y57{bottom:269.186667pt;}
.y67{bottom:269.506667pt;}
.ya9{bottom:272.386667pt;}
.y2e{bottom:273.986667pt;}
.y91{bottom:278.466667pt;}
.y56{bottom:284.866667pt;}
.ya8{bottom:287.773333pt;}
.y2d{bottom:289.373333pt;}
.y90{bottom:293.853333pt;}
.y55{bottom:300.253333pt;}
.ya7{bottom:303.133333pt;}
.y2c{bottom:304.733333pt;}
.y8f{bottom:309.213333pt;}
.y54{bottom:315.613333pt;}
.ya6{bottom:318.173333pt;}
.y2b{bottom:320.093333pt;}
.y8e{bottom:324.253333pt;}
.y53{bottom:330.653333pt;}
.ya5{bottom:333.853333pt;}
.y2a{bottom:335.453333pt;}
.y8d{bottom:339.613333pt;}
.y52{bottom:346.013333pt;}
.ya4{bottom:349.213333pt;}
.y29{bottom:350.813333pt;}
.y8c{bottom:354.973333pt;}
.y51{bottom:361.373333pt;}
.ya3{bottom:364.573333pt;}
.y28{bottom:366.173333pt;}
.y8b{bottom:370.333333pt;}
.y50{bottom:376.733333pt;}
.ya2{bottom:379.973333pt;}
.y27{bottom:381.573333pt;}
.y8a{bottom:385.733333pt;}
.y4f{bottom:392.133333pt;}
.ya1{bottom:395.333333pt;}
.y26{bottom:396.933333pt;}
.y89{bottom:401.093333pt;}
.y4e{bottom:407.493333pt;}
.ya0{bottom:410.693333pt;}
.y25{bottom:411.973333pt;}
.y88{bottom:416.453333pt;}
.y4d{bottom:422.853333pt;}
.y9f{bottom:426.053333pt;}
.y24{bottom:427.333333pt;}
.y87{bottom:431.813333pt;}
.y4c{bottom:438.213333pt;}
.y9e{bottom:440.773333pt;}
.y23{bottom:442.693333pt;}
.y86{bottom:447.173333pt;}
.y4b{bottom:453.573333pt;}
.y22{bottom:458.053333pt;}
.y85{bottom:462.533333pt;}
.y66{bottom:468.613333pt;}
.y4a{bottom:468.933333pt;}
.y21{bottom:473.440000pt;}
.y84{bottom:477.920000pt;}
.y49{bottom:484.320000pt;}
.y20{bottom:488.800000pt;}
.y83{bottom:493.280000pt;}
.y48{bottom:499.680000pt;}
.y1f{bottom:504.160000pt;}
.y82{bottom:508.320000pt;}
.y47{bottom:514.720000pt;}
.y1e{bottom:519.520000pt;}
.y81{bottom:523.680000pt;}
.y46{bottom:530.080000pt;}
.y1d{bottom:534.880000pt;}
.y80{bottom:539.040000pt;}
.y45{bottom:545.440000pt;}
.y1c{bottom:550.240000pt;}
.y7f{bottom:554.400000pt;}
.y44{bottom:560.800000pt;}
.y1b{bottom:565.600000pt;}
.y7e{bottom:569.786667pt;}
.y43{bottom:576.186667pt;}
.y1a{bottom:580.666667pt;}
.y42{bottom:591.546667pt;}
.y19{bottom:596.026667pt;}
.y7d{bottom:600.506667pt;}
.y41{bottom:606.906667pt;}
.y18{bottom:611.386667pt;}
.y7c{bottom:615.866667pt;}
.y40{bottom:622.266667pt;}
.y17{bottom:626.746667pt;}
.y7b{bottom:631.226667pt;}
.y3f{bottom:637.626667pt;}
.y16{bottom:641.786667pt;}
.y7a{bottom:646.586667pt;}
.y3e{bottom:652.986667pt;}
.y15{bottom:657.466667pt;}
.y79{bottom:661.986667pt;}
.y3d{bottom:668.386667pt;}
.y14{bottom:672.866667pt;}
.y78{bottom:676.386667pt;}
.y3c{bottom:683.426667pt;}
.y13{bottom:687.906667pt;}
.y77{bottom:689.186667pt;}
.y3b{bottom:698.786667pt;}
.y12{bottom:701.666667pt;}
.y76{bottom:703.906667pt;}
.y3a{bottom:714.146667pt;}
.y11{bottom:715.106667pt;}
.y10{bottom:729.506667pt;}
.y75{bottom:731.746667pt;}
.y70{bottom:741.986667pt;}
.yf{bottom:744.866667pt;}
.ye{bottom:760.253333pt;}
.yd{bottom:775.613333pt;}
.yc{bottom:790.973333pt;}
.y6d{bottom:804.093333pt;}
.yb{bottom:806.333333pt;}
.ya{bottom:821.373333pt;}
.y65{bottom:821.693333pt;}
.y9{bottom:836.733333pt;}
.y64{bottom:837.053333pt;}
.y6c{bottom:850.853333pt;}
.y8{bottom:852.133333pt;}
.y63{bottom:852.453333pt;}
.y6a{bottom:866.853333pt;}
.y7{bottom:867.493333pt;}
.y6{bottom:882.853333pt;}
.y69{bottom:885.413333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.hb{height:15.360000pt;}
.ha{height:41.456250pt;}
.he{height:42.570000pt;}
.hc{height:46.112000pt;}
.h5{height:46.488750pt;}
.h8{height:47.737500pt;}
.h9{height:48.195000pt;}
.h7{height:49.020000pt;}
.h4{height:52.736250pt;}
.h2{height:52.762500pt;}
.h6{height:54.180000pt;}
.hf{height:55.256809pt;}
.hd{height:61.472000pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w7{width:64.672000pt;}
.w8{width:64.704000pt;}
.w5{width:129.984000pt;}
.w6{width:130.016000pt;}
.w4{width:260.613333pt;}
.w3{width:260.640000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:8.640000pt;}
.x1f{left:9.920000pt;}
.x1a{left:12.506667pt;}
.x13{left:13.440000pt;}
.x1e{left:16.672000pt;}
.x18{left:18.592000pt;}
.x15{left:20.520000pt;}
.x20{left:25.626667pt;}
.x21{left:32.346667pt;}
.x10{left:44.192000pt;}
.x3{left:45.471990pt;}
.xd{left:68.191990pt;}
.xf{left:75.232000pt;}
.x2{left:83.231990pt;}
.x12{left:89.640000pt;}
.x6{left:95.743990pt;}
.x9{left:97.023990pt;}
.xc{left:105.983990pt;}
.xe{left:115.583990pt;}
.x4{left:120.383990pt;}
.x19{left:140.546667pt;}
.x8{left:145.986657pt;}
.x7{left:161.053324pt;}
.x24{left:186.333324pt;}
.x14{left:205.853333pt;}
.x23{left:241.733324pt;}
.x1b{left:271.173333pt;}
.xa{left:287.519990pt;}
.x1{left:300.319990pt;}
.x5{left:310.239990pt;}
.xb{left:323.039990pt;}
.x22{left:332.986657pt;}
.x11{left:336.506667pt;}
.x1c{left:401.826667pt;}
.x16{left:467.133333pt;}
.x1d{left:532.453333pt;}
}




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