
    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_0f1d61eb21989db1b88a188e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_5e139f386edfd5faf6514f0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_bb9cc520748e16e7889b04af.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2d570d941af9a74d3c35b4e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_5a32c917c54c5ab9f3e8e664.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_5cb752b81571efb798a40c6a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c1d575df900fc05bf39edc1b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_819e6e56878081c7ab0c0982.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_018ca3170fcf900f317c4ba7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_1692aa2abc751853c46f800b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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:ffb;src:url('chunks/assets/font_ad710a1355808745217e4be3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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:ffc;src:url('chunks/assets/font_1af031c3881cfefd91ca4208.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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:ffd;src:url('chunks/assets/font_01f2fd5762c241aa5aa891b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064941;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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.618000px;}
.ls4{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.414600px;}
.ls13{letter-spacing:-0.315600px;}
.ls5{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.227400px;}
.ls1a{letter-spacing:-0.150000px;}
.ls1c{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.103800px;}
.lsb{letter-spacing:-0.094800px;}
.ls18{letter-spacing:-0.069000px;}
.ls1b{letter-spacing:-0.043200px;}
.ls7{letter-spacing:-0.038880px;}
.ls9{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.023040px;}
.ls11{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.075000px;}
.lsc{letter-spacing:0.100800px;}
.lse{letter-spacing:0.122400px;}
.ls12{letter-spacing:0.148800px;}
.ls8{letter-spacing:0.172800px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.187200px;}
.ls1{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.262800px;}
.ls1d{letter-spacing:0.304320px;}
.ls1e{letter-spacing:0.328320px;}
.ls2{letter-spacing:0.357000px;}
.ls16{letter-spacing:0.540000px;}
.lsd{letter-spacing:1.987200px;}
.ls19{letter-spacing:34.387200px;}
.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;}
}
.wsf{word-spacing:-48.240000px;}
.wsd{word-spacing:-14.647800px;}
.ws19{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.ws16{word-spacing:-14.529600px;}
.ws14{word-spacing:-14.503800px;}
.ws17{word-spacing:-14.463600px;}
.ws15{word-spacing:-14.422800px;}
.ws18{word-spacing:-14.345400px;}
.ws12{word-spacing:-14.158200px;}
.ws13{word-spacing:-13.780800px;}
.ws6{word-spacing:-13.504200px;}
.ws4{word-spacing:-13.410000px;}
.ws7{word-spacing:-13.147200px;}
.ws5{word-spacing:-13.108320px;}
.wse{word-spacing:-12.105360px;}
.ws0{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.051040px;}
.ws8{word-spacing:-10.612800px;}
.ws11{word-spacing:-10.586640px;}
.ws1{word-spacing:-9.187200px;}
.wsc{word-spacing:-9.092400px;}
.ws3{word-spacing:-8.136000px;}
.wsa{word-spacing:-7.920000px;}
.ws9{word-spacing:-7.884000px;}
.wsb{word-spacing:0.000000px;}
._1a{margin-left:-4.343520px;}
._15{margin-left:-3.205920px;}
._10{margin-left:-2.188800px;}
._2{margin-left:-1.098000px;}
._1{width:1.488000px;}
._6{width:3.107520px;}
._5{width:4.302720px;}
._11{width:5.916240px;}
._e{width:7.051680px;}
._d{width:8.246880px;}
._f{width:9.830400px;}
._14{width:11.832480px;}
._1c{width:13.148400px;}
._c{width:14.228880px;}
._1f{width:16.264320px;}
._13{width:17.347440px;}
._12{width:18.406080px;}
._17{width:19.540800px;}
._b{width:20.922000px;}
._9{width:22.475760px;}
._a{width:23.664960px;}
._16{width:25.083840px;}
._1b{width:26.534160px;}
._25{width:27.838800px;}
._21{width:29.013120px;}
._22{width:30.075840px;}
._23{width:31.112400px;}
._7{width:32.330160px;}
._8{width:33.549360px;}
._24{width:34.577280px;}
._29{width:36.167040px;}
._1d{width:37.624320px;}
._1e{width:38.684160px;}
._26{width:39.942720px;}
._27{width:41.043840px;}
._18{width:47.040480px;}
._0{width:75.000000px;}
._28{width:88.297920px;}
._20{width:93.403200px;}
._3{width:181.080000px;}
._4{width:196.989840px;}
._2a{width:201.403200px;}
._19{width:1056.007200px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y52{bottom:-32.580000px;}
.y51{bottom:-11.880000px;}
.y0{bottom:0.000000px;}
.y50{bottom:6.870000px;}
.y4f{bottom:17.490000px;}
.y4e{bottom:27.930000px;}
.y4d{bottom:38.550000px;}
.y9{bottom:56.520000px;}
.y4c{bottom:60.150000px;}
.y8{bottom:70.416000px;}
.y4b{bottom:76.890000px;}
.y7{bottom:84.456000px;}
.y6{bottom:98.496000px;}
.y88{bottom:110.376000px;}
.y96{bottom:111.096000px;}
.y87{bottom:114.876000px;}
.y95{bottom:115.596000px;}
.y86{bottom:124.056000px;}
.y94{bottom:124.956000px;}
.y85{bottom:128.556000px;}
.y93{bottom:129.456000px;}
.y4a{bottom:131.070000px;}
.y84{bottom:137.916000px;}
.yb0{bottom:138.636000px;}
.y92{bottom:138.816000px;}
.yb1{bottom:139.356000px;}
.y9b{bottom:142.416000px;}
.yaf{bottom:143.136000px;}
.y49{bottom:150.510000px;}
.y83{bottom:151.770000px;}
.y91{bottom:152.490000px;}
.yae{bottom:153.930000px;}
.y82{bottom:156.270000px;}
.y90{bottom:156.990000px;}
.yad{bottom:160.050000px;}
.y48{bottom:164.550000px;}
.yaa{bottom:165.450000px;}
.y8f{bottom:166.350000px;}
.y81{bottom:166.890000px;}
.ya9{bottom:169.950000px;}
.y8e{bottom:170.850000px;}
.y3c{bottom:176.790000px;}
.y47{bottom:178.590000px;}
.ya8{bottom:179.310000px;}
.y8d{bottom:181.650000px;}
.yac{bottom:182.370000px;}
.ya7{bottom:183.810000px;}
.y46{bottom:192.630000px;}
.ya6{bottom:193.170000px;}
.ya5{bottom:197.670000px;}
.y3b{bottom:199.110000px;}
.yab{bottom:204.510000px;}
.y45{bottom:206.850000px;}
.ya4{bottom:211.350000px;}
.ya3{bottom:220.710000px;}
.y44{bottom:220.890000px;}
.y3a{bottom:221.250000px;}
.y80{bottom:226.830000px;}
.ya2{bottom:234.570000px;}
.y43{bottom:234.930000px;}
.ya1{bottom:239.070000px;}
.y39{bottom:243.570000px;}
.y42{bottom:248.970000px;}
.y7f{bottom:249.150000px;}
.ya0{bottom:249.690000px;}
.y41{bottom:263.010000px;}
.y38{bottom:265.710000px;}
.y7e{bottom:271.290000px;}
.y40{bottom:277.095000px;}
.y37{bottom:288.030000px;}
.y3f{bottom:291.135000px;}
.y7d{bottom:293.610000px;}
.y8c{bottom:297.390000px;}
.y3e{bottom:305.535000px;}
.y36{bottom:309.450000px;}
.y7c{bottom:315.750000px;}
.y35{bottom:327.090000px;}
.y7b{bottom:338.115000px;}
.y34{bottom:344.775000px;}
.y7a{bottom:360.255000px;}
.y33{bottom:362.415000px;}
.y32{bottom:379.875000px;}
.y79{bottom:382.575000px;}
.y9f{bottom:386.355000px;}
.y31{bottom:397.515000px;}
.y78{bottom:404.895000px;}
.y9a{bottom:408.675000px;}
.y30{bottom:415.155000px;}
.y77{bottom:427.035000px;}
.y2f{bottom:432.615000px;}
.y76{bottom:449.355000px;}
.y2e{bottom:450.255000px;}
.y8b{bottom:453.135000px;}
.y2d{bottom:467.895000px;}
.y75{bottom:471.495000px;}
.y2c{bottom:485.355000px;}
.y74{bottom:493.815000px;}
.y2b{bottom:502.995000px;}
.y73{bottom:516.135000px;}
.y2a{bottom:520.635000px;}
.y29{bottom:538.275000px;}
.y28{bottom:555.735000px;}
.y72{bottom:560.595000px;}
.y27{bottom:573.375000px;}
.y71{bottom:582.735000px;}
.y9e{bottom:586.515000px;}
.y26{bottom:591.015000px;}
.y3d{bottom:601.635000px;}
.y70{bottom:605.085000px;}
.y25{bottom:608.505000px;}
.y24{bottom:626.145000px;}
.y6f{bottom:627.405000px;}
.y23{bottom:643.785000px;}
.y6e{bottom:649.545000px;}
.y22{bottom:661.245000px;}
.y6d{bottom:671.865000px;}
.y21{bottom:678.885000px;}
.y6c{bottom:694.005000px;}
.y20{bottom:696.525000px;}
.y1f{bottom:714.165000px;}
.y6b{bottom:716.325000px;}
.y1e{bottom:731.625000px;}
.y6a{bottom:738.465000px;}
.y99{bottom:742.245000px;}
.y1d{bottom:749.265000px;}
.y69{bottom:760.785000px;}
.y1c{bottom:766.905000px;}
.y68{bottom:783.105000px;}
.y1b{bottom:784.365000px;}
.y1a{bottom:802.005000px;}
.y67{bottom:805.245000px;}
.y19{bottom:819.645000px;}
.y66{bottom:827.565000px;}
.y9d{bottom:831.345000px;}
.y18{bottom:837.105000px;}
.y65{bottom:849.705000px;}
.y98{bottom:853.485000px;}
.y17{bottom:854.745000px;}
.y63{bottom:872.070000px;}
.y16{bottom:872.430000px;}
.y64{bottom:875.850000px;}
.y15{bottom:889.890000px;}
.y62{bottom:894.390000px;}
.y8a{bottom:898.170000px;}
.y14{bottom:907.530000px;}
.y61{bottom:916.530000px;}
.y13{bottom:925.170000px;}
.y60{bottom:938.850000px;}
.y12{bottom:942.990000px;}
.y5f{bottom:960.990000px;}
.y11{bottom:964.770000px;}
.y10{bottom:978.090000px;}
.y5d{bottom:983.310000px;}
.y5e{bottom:987.090000px;}
.yf{bottom:997.530000px;}
.y5c{bottom:1005.450000px;}
.ye{bottom:1016.790000px;}
.y5b{bottom:1027.770000px;}
.y89{bottom:1031.550000px;}
.yd{bottom:1036.230000px;}
.y5a{bottom:1050.090000px;}
.y97{bottom:1053.870000px;}
.yc{bottom:1059.630000px;}
.y59{bottom:1072.230000px;}
.yb{bottom:1085.910000px;}
.y58{bottom:1094.550000px;}
.ya{bottom:1110.930000px;}
.y56{bottom:1116.690000px;}
.y57{bottom:1120.470000px;}
.y5{bottom:1133.250000px;}
.y55{bottom:1139.040000px;}
.y9c{bottom:1142.820000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y54{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y53{bottom:1197.540000px;}
.he{height:21.114844px;}
.hb{height:30.480469px;}
.h7{height:33.480703px;}
.h10{height:33.683203px;}
.h12{height:34.036523px;}
.hd{height:35.357344px;}
.h3{height:38.100586px;}
.hf{height:39.760312px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.h11{height:47.980898px;}
.ha{height:50.273438px;}
.h8{height:50.597578px;}
.h5{height:56.084062px;}
.hc{height:58.819922px;}
.h6{height:65.837812px;}
.h9{height:318.315000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x14{left:111.815987px;}
.xb{left:113.076000px;}
.x2{left:116.135987px;}
.x7{left:118.295987px;}
.x4{left:124.955987px;}
.xc{left:134.994000px;}
.x6{left:136.475987px;}
.x38{left:144.035987px;}
.xa{left:162.029987px;}
.x2c{left:237.449973px;}
.x2d{left:248.969987px;}
.x24{left:306.074973px;}
.x25{left:317.594987px;}
.x13{left:324.074987px;}
.x9{left:335.774987px;}
.x16{left:337.034973px;}
.x17{left:342.794987px;}
.x11{left:357.734973px;}
.x12{left:363.494987px;}
.x5{left:386.714987px;}
.x8{left:407.954987px;}
.x34{left:417.314973px;}
.x32{left:423.254973px;}
.x20{left:426.134973px;}
.x35{left:428.834987px;}
.x21{left:431.894987px;}
.x33{left:434.774987px;}
.xd{left:438.194973px;}
.xe{left:443.954987px;}
.x3{left:446.474987px;}
.x18{left:453.854973px;}
.x19{left:459.614987px;}
.x15{left:502.484987px;}
.x36{left:513.284973px;}
.x37{left:524.804987px;}
.x1a{left:556.304973px;}
.x1b{left:562.064987px;}
.x1c{left:576.284973px;}
.x1d{left:582.044987px;}
.x2a{left:636.944973px;}
.x28{left:638.024973px;}
.x2b{left:648.464987px;}
.x29{left:649.544987px;}
.x30{left:671.369973px;}
.x31{left:682.889987px;}
.x1e{left:707.729973px;}
.x1f{left:713.489987px;}
.xf{left:714.569973px;}
.x10{left:720.329987px;}
.x2e{left:721.769973px;}
.x2f{left:733.289987px;}
.x26{left:748.589973px;}
.x27{left:760.109987px;}
.x22{left:773.609973px;}
.x23{left:785.129987px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.549333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls13{letter-spacing:-0.280533pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.202133pt;}
.ls1a{letter-spacing:-0.133333pt;}
.ls1c{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.092267pt;}
.lsb{letter-spacing:-0.084267pt;}
.ls18{letter-spacing:-0.061333pt;}
.ls1b{letter-spacing:-0.038400pt;}
.ls7{letter-spacing:-0.034560pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.020480pt;}
.ls11{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.066667pt;}
.lsc{letter-spacing:0.089600pt;}
.lse{letter-spacing:0.108800pt;}
.ls12{letter-spacing:0.132267pt;}
.ls8{letter-spacing:0.153600pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls1{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.233600pt;}
.ls1d{letter-spacing:0.270507pt;}
.ls1e{letter-spacing:0.291840pt;}
.ls2{letter-spacing:0.317333pt;}
.ls16{letter-spacing:0.480000pt;}
.lsd{letter-spacing:1.766400pt;}
.ls19{letter-spacing:30.566400pt;}
.wsf{word-spacing:-42.880000pt;}
.wsd{word-spacing:-13.020267pt;}
.ws19{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.ws16{word-spacing:-12.915200pt;}
.ws14{word-spacing:-12.892267pt;}
.ws17{word-spacing:-12.856533pt;}
.ws15{word-spacing:-12.820267pt;}
.ws18{word-spacing:-12.751467pt;}
.ws12{word-spacing:-12.585067pt;}
.ws13{word-spacing:-12.249600pt;}
.ws6{word-spacing:-12.003733pt;}
.ws4{word-spacing:-11.920000pt;}
.ws7{word-spacing:-11.686400pt;}
.ws5{word-spacing:-11.651840pt;}
.wse{word-spacing:-10.760320pt;}
.ws0{word-spacing:-10.720000pt;}
.ws10{word-spacing:-9.823147pt;}
.ws8{word-spacing:-9.433600pt;}
.ws11{word-spacing:-9.410347pt;}
.ws1{word-spacing:-8.166400pt;}
.wsc{word-spacing:-8.082133pt;}
.ws3{word-spacing:-7.232000pt;}
.wsa{word-spacing:-7.040000pt;}
.ws9{word-spacing:-7.008000pt;}
.wsb{word-spacing:0.000000pt;}
._1a{margin-left:-3.860907pt;}
._15{margin-left:-2.849707pt;}
._10{margin-left:-1.945600pt;}
._2{margin-left:-0.976000pt;}
._1{width:1.322667pt;}
._6{width:2.762240pt;}
._5{width:3.824640pt;}
._11{width:5.258880pt;}
._e{width:6.268160pt;}
._d{width:7.330560pt;}
._f{width:8.738133pt;}
._14{width:10.517760pt;}
._1c{width:11.687467pt;}
._c{width:12.647893pt;}
._1f{width:14.457173pt;}
._13{width:15.419947pt;}
._12{width:16.360960pt;}
._17{width:17.369600pt;}
._b{width:18.597333pt;}
._9{width:19.978453pt;}
._a{width:21.035520pt;}
._16{width:22.296747pt;}
._1b{width:23.585920pt;}
._25{width:24.745600pt;}
._21{width:25.789440pt;}
._22{width:26.734080pt;}
._23{width:27.655467pt;}
._7{width:28.737920pt;}
._8{width:29.821653pt;}
._24{width:30.735360pt;}
._29{width:32.148480pt;}
._1d{width:33.443840pt;}
._1e{width:34.385920pt;}
._26{width:35.504640pt;}
._27{width:36.483413pt;}
._18{width:41.813760pt;}
._0{width:66.666667pt;}
._28{width:78.487040pt;}
._20{width:83.025067pt;}
._3{width:160.960000pt;}
._4{width:175.102080pt;}
._2a{width:179.025067pt;}
._19{width:938.673067pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y52{bottom:-28.960000pt;}
.y51{bottom:-10.560000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:6.106667pt;}
.y4f{bottom:15.546667pt;}
.y4e{bottom:24.826667pt;}
.y4d{bottom:34.266667pt;}
.y9{bottom:50.240000pt;}
.y4c{bottom:53.466667pt;}
.y8{bottom:62.592000pt;}
.y4b{bottom:68.346667pt;}
.y7{bottom:75.072000pt;}
.y6{bottom:87.552000pt;}
.y88{bottom:98.112000pt;}
.y96{bottom:98.752000pt;}
.y87{bottom:102.112000pt;}
.y95{bottom:102.752000pt;}
.y86{bottom:110.272000pt;}
.y94{bottom:111.072000pt;}
.y85{bottom:114.272000pt;}
.y93{bottom:115.072000pt;}
.y4a{bottom:116.506667pt;}
.y84{bottom:122.592000pt;}
.yb0{bottom:123.232000pt;}
.y92{bottom:123.392000pt;}
.yb1{bottom:123.872000pt;}
.y9b{bottom:126.592000pt;}
.yaf{bottom:127.232000pt;}
.y49{bottom:133.786667pt;}
.y83{bottom:134.906667pt;}
.y91{bottom:135.546667pt;}
.yae{bottom:136.826667pt;}
.y82{bottom:138.906667pt;}
.y90{bottom:139.546667pt;}
.yad{bottom:142.266667pt;}
.y48{bottom:146.266667pt;}
.yaa{bottom:147.066667pt;}
.y8f{bottom:147.866667pt;}
.y81{bottom:148.346667pt;}
.ya9{bottom:151.066667pt;}
.y8e{bottom:151.866667pt;}
.y3c{bottom:157.146667pt;}
.y47{bottom:158.746667pt;}
.ya8{bottom:159.386667pt;}
.y8d{bottom:161.466667pt;}
.yac{bottom:162.106667pt;}
.ya7{bottom:163.386667pt;}
.y46{bottom:171.226667pt;}
.ya6{bottom:171.706667pt;}
.ya5{bottom:175.706667pt;}
.y3b{bottom:176.986667pt;}
.yab{bottom:181.786667pt;}
.y45{bottom:183.866667pt;}
.ya4{bottom:187.866667pt;}
.ya3{bottom:196.186667pt;}
.y44{bottom:196.346667pt;}
.y3a{bottom:196.666667pt;}
.y80{bottom:201.626667pt;}
.ya2{bottom:208.506667pt;}
.y43{bottom:208.826667pt;}
.ya1{bottom:212.506667pt;}
.y39{bottom:216.506667pt;}
.y42{bottom:221.306667pt;}
.y7f{bottom:221.466667pt;}
.ya0{bottom:221.946667pt;}
.y41{bottom:233.786667pt;}
.y38{bottom:236.186667pt;}
.y7e{bottom:241.146667pt;}
.y40{bottom:246.306667pt;}
.y37{bottom:256.026667pt;}
.y3f{bottom:258.786667pt;}
.y7d{bottom:260.986667pt;}
.y8c{bottom:264.346667pt;}
.y3e{bottom:271.586667pt;}
.y36{bottom:275.066667pt;}
.y7c{bottom:280.666667pt;}
.y35{bottom:290.746667pt;}
.y7b{bottom:300.546667pt;}
.y34{bottom:306.466667pt;}
.y7a{bottom:320.226667pt;}
.y33{bottom:322.146667pt;}
.y32{bottom:337.666667pt;}
.y79{bottom:340.066667pt;}
.y9f{bottom:343.426667pt;}
.y31{bottom:353.346667pt;}
.y78{bottom:359.906667pt;}
.y9a{bottom:363.266667pt;}
.y30{bottom:369.026667pt;}
.y77{bottom:379.586667pt;}
.y2f{bottom:384.546667pt;}
.y76{bottom:399.426667pt;}
.y2e{bottom:400.226667pt;}
.y8b{bottom:402.786667pt;}
.y2d{bottom:415.906667pt;}
.y75{bottom:419.106667pt;}
.y2c{bottom:431.426667pt;}
.y74{bottom:438.946667pt;}
.y2b{bottom:447.106667pt;}
.y73{bottom:458.786667pt;}
.y2a{bottom:462.786667pt;}
.y29{bottom:478.466667pt;}
.y28{bottom:493.986667pt;}
.y72{bottom:498.306667pt;}
.y27{bottom:509.666667pt;}
.y71{bottom:517.986667pt;}
.y9e{bottom:521.346667pt;}
.y26{bottom:525.346667pt;}
.y3d{bottom:534.786667pt;}
.y70{bottom:537.853333pt;}
.y25{bottom:540.893333pt;}
.y24{bottom:556.573333pt;}
.y6f{bottom:557.693333pt;}
.y23{bottom:572.253333pt;}
.y6e{bottom:577.373333pt;}
.y22{bottom:587.773333pt;}
.y6d{bottom:597.213333pt;}
.y21{bottom:603.453333pt;}
.y6c{bottom:616.893333pt;}
.y20{bottom:619.133333pt;}
.y1f{bottom:634.813333pt;}
.y6b{bottom:636.733333pt;}
.y1e{bottom:650.333333pt;}
.y6a{bottom:656.413333pt;}
.y99{bottom:659.773333pt;}
.y1d{bottom:666.013333pt;}
.y69{bottom:676.253333pt;}
.y1c{bottom:681.693333pt;}
.y68{bottom:696.093333pt;}
.y1b{bottom:697.213333pt;}
.y1a{bottom:712.893333pt;}
.y67{bottom:715.773333pt;}
.y19{bottom:728.573333pt;}
.y66{bottom:735.613333pt;}
.y9d{bottom:738.973333pt;}
.y18{bottom:744.093333pt;}
.y65{bottom:755.293333pt;}
.y98{bottom:758.653333pt;}
.y17{bottom:759.773333pt;}
.y63{bottom:775.173333pt;}
.y16{bottom:775.493333pt;}
.y64{bottom:778.533333pt;}
.y15{bottom:791.013333pt;}
.y62{bottom:795.013333pt;}
.y8a{bottom:798.373333pt;}
.y14{bottom:806.693333pt;}
.y61{bottom:814.693333pt;}
.y13{bottom:822.373333pt;}
.y60{bottom:834.533333pt;}
.y12{bottom:838.213333pt;}
.y5f{bottom:854.213333pt;}
.y11{bottom:857.573333pt;}
.y10{bottom:869.413333pt;}
.y5d{bottom:874.053333pt;}
.y5e{bottom:877.413333pt;}
.yf{bottom:886.693333pt;}
.y5c{bottom:893.733333pt;}
.ye{bottom:903.813333pt;}
.y5b{bottom:913.573333pt;}
.y89{bottom:916.933333pt;}
.yd{bottom:921.093333pt;}
.y5a{bottom:933.413333pt;}
.y97{bottom:936.773333pt;}
.yc{bottom:941.893333pt;}
.y59{bottom:953.093333pt;}
.yb{bottom:965.253333pt;}
.y58{bottom:972.933333pt;}
.ya{bottom:987.493333pt;}
.y56{bottom:992.613333pt;}
.y57{bottom:995.973333pt;}
.y5{bottom:1007.333333pt;}
.y55{bottom:1012.480000pt;}
.y9c{bottom:1015.840000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y54{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y53{bottom:1064.480000pt;}
.he{height:18.768750pt;}
.hb{height:27.093750pt;}
.h7{height:29.760625pt;}
.h10{height:29.940625pt;}
.h12{height:30.254687pt;}
.hd{height:31.428750pt;}
.h3{height:33.867188pt;}
.hf{height:35.342500pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.h11{height:42.649687pt;}
.ha{height:44.687500pt;}
.h8{height:44.975625pt;}
.h5{height:49.852500pt;}
.hc{height:52.284375pt;}
.h6{height:58.522500pt;}
.h9{height:282.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x14{left:99.391988pt;}
.xb{left:100.512000pt;}
.x2{left:103.231988pt;}
.x7{left:105.151988pt;}
.x4{left:111.071988pt;}
.xc{left:119.994667pt;}
.x6{left:121.311988pt;}
.x38{left:128.031988pt;}
.xa{left:144.026655pt;}
.x2c{left:211.066643pt;}
.x2d{left:221.306655pt;}
.x24{left:272.066643pt;}
.x25{left:282.306655pt;}
.x13{left:288.066655pt;}
.x9{left:298.466655pt;}
.x16{left:299.586643pt;}
.x17{left:304.706655pt;}
.x11{left:317.986643pt;}
.x12{left:323.106655pt;}
.x5{left:343.746655pt;}
.x8{left:362.626655pt;}
.x34{left:370.946643pt;}
.x32{left:376.226643pt;}
.x20{left:378.786643pt;}
.x35{left:381.186655pt;}
.x21{left:383.906655pt;}
.x33{left:386.466655pt;}
.xd{left:389.506643pt;}
.xe{left:394.626655pt;}
.x3{left:396.866655pt;}
.x18{left:403.426643pt;}
.x19{left:408.546655pt;}
.x15{left:446.653322pt;}
.x36{left:456.253310pt;}
.x37{left:466.493322pt;}
.x1a{left:494.493310pt;}
.x1b{left:499.613322pt;}
.x1c{left:512.253310pt;}
.x1d{left:517.373322pt;}
.x2a{left:566.173310pt;}
.x28{left:567.133310pt;}
.x2b{left:576.413322pt;}
.x29{left:577.373322pt;}
.x30{left:596.773310pt;}
.x31{left:607.013322pt;}
.x1e{left:629.093310pt;}
.x1f{left:634.213322pt;}
.xf{left:635.173310pt;}
.x10{left:640.293322pt;}
.x2e{left:641.573310pt;}
.x2f{left:651.813322pt;}
.x26{left:665.413310pt;}
.x27{left:675.653322pt;}
.x22{left:687.653310pt;}
.x23{left:697.893322pt;}
}




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