
    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_7ac0a9c4e52425ed0b1a054b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_ab9878e2b7f96eba07cf1848.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_68965eb4a9bba18b7493e678.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_737e0e48020759ef6c956d42.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_86f3f06b8617e1e0cec56a0a.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_fa81c1b02a3441700cc4cc30.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_7a715ffb867454d48230e94f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_c19d9794b6e821f036bf0feb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_49841e7548439c6e1771a0b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944824;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_323ba95a732c37bec736ef0a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_5c6b699bf9d0ecf0fb898455.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_300f60ad87e77930dbc0418b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.767578;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.272400px;}
.ls3{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.129600px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.479520px;}
.ls8{letter-spacing:0.504000px;}
.ls0{letter-spacing:9.180000px;}
.ls4{letter-spacing:21.420000px;}
.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;}
}
.ws1{word-spacing:-27.000000px;}
.ws7{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.447440px;}
.ws6{word-spacing:-8.786880px;}
.ws8{word-spacing:-8.514480px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-19.818720px;}
._10{margin-left:-5.728320px;}
._4{margin-left:-4.380480px;}
._3{margin-left:-3.285360px;}
._0{margin-left:-1.347840px;}
._1{width:1.753440px;}
._1a{width:3.046320px;}
._1c{width:4.065600px;}
._23{width:5.298480px;}
._e{width:6.570720px;}
._f{width:7.581600px;}
._1b{width:8.592480px;}
._a{width:9.687600px;}
._7{width:11.456640px;}
._8{width:12.551760px;}
._15{width:13.562640px;}
._14{width:14.994720px;}
._5{width:16.258320px;}
._6{width:17.806800px;}
._9{width:19.206720px;}
._16{width:22.776480px;}
._19{width:23.981520px;}
._21{width:25.551600px;}
._2{width:26.619840px;}
._28{width:27.714960px;}
._d{width:28.725840px;}
._1e{width:30.938880px;}
._1f{width:31.942800px;}
._13{width:33.022080px;}
._12{width:34.706880px;}
._11{width:36.307440px;}
._29{width:37.322400px;}
._20{width:38.497680px;}
._27{width:39.761280px;}
._26{width:40.940640px;}
._22{width:41.951520px;}
._17{width:42.962400px;}
._25{width:45.489600px;}
._2b{width:48.438000px;}
._1d{width:54.503280px;}
._b{width:70.003440px;}
._c{width:71.198400px;}
._2a{width:72.346560px;}
._24{width:631.294560px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:4.319850px;}
.y2{bottom:4.500000px;}
.ya{bottom:5.760000px;}
.y3{bottom:7.380000px;}
.y9{bottom:9.180000px;}
.y5{bottom:11.520000px;}
.y6{bottom:15.300000px;}
.y8{bottom:28.620000px;}
.y38{bottom:88.956000px;}
.yaf{bottom:90.756000px;}
.y37{bottom:107.136000px;}
.y80{bottom:107.676000px;}
.y36{bottom:112.356000px;}
.yae{bottom:118.476000px;}
.y35{bottom:125.496000px;}
.ya1{bottom:126.036000px;}
.y34{bottom:130.716000px;}
.y7f{bottom:137.196000px;}
.y33{bottom:143.856000px;}
.yac{bottom:144.396000px;}
.yad{bottom:146.376000px;}
.y32{bottom:149.076000px;}
.y9f{bottom:157.530000px;}
.y60{bottom:162.210000px;}
.y31{bottom:162.750000px;}
.ya0{bottom:165.090000px;}
.y7e{bottom:166.530000px;}
.yab{bottom:174.090000px;}
.y5f{bottom:180.390000px;}
.y9e{bottom:185.250000px;}
.y5e{bottom:185.610000px;}
.y2f{bottom:191.550000px;}
.y7d{bottom:194.250000px;}
.y5d{bottom:198.750000px;}
.y30{bottom:199.110000px;}
.yaa{bottom:201.810000px;}
.y9d{bottom:212.970000px;}
.y5c{bottom:217.110000px;}
.y2e{bottom:219.270000px;}
.y7c{bottom:221.970000px;}
.y5b{bottom:222.330000px;}
.ya9{bottom:229.530000px;}
.y5a{bottom:235.830000px;}
.y9c{bottom:240.870000px;}
.y2d{bottom:246.990000px;}
.y7b{bottom:249.870000px;}
.ya8{bottom:257.430000px;}
.y9b{bottom:268.590000px;}
.y2c{bottom:274.890000px;}
.y59{bottom:277.590000px;}
.ya7{bottom:285.150000px;}
.y9a{bottom:296.310000px;}
.y2a{bottom:302.610000px;}
.y58{bottom:305.310000px;}
.y2b{bottom:310.170000px;}
.ya6{bottom:312.870000px;}
.y99{bottom:324.030000px;}
.y29{bottom:330.330000px;}
.y7a{bottom:333.210000px;}
.y57{bottom:334.470000px;}
.ya5{bottom:340.635000px;}
.y98{bottom:353.415000px;}
.y28{bottom:358.275000px;}
.y79{bottom:360.975000px;}
.y56{bottom:363.855000px;}
.ya4{bottom:368.535000px;}
.y97{bottom:381.135000px;}
.y26{bottom:385.995000px;}
.y78{bottom:388.695000px;}
.y55{bottom:393.195000px;}
.y27{bottom:393.555000px;}
.ya3{bottom:396.255000px;}
.y96{bottom:410.295000px;}
.y25{bottom:413.715000px;}
.y77{bottom:416.415000px;}
.y54{bottom:422.355000px;}
.ya2{bottom:423.975000px;}
.y95{bottom:439.815000px;}
.y24{bottom:441.435000px;}
.y76{bottom:444.315000px;}
.y53{bottom:451.875000px;}
.y94{bottom:467.535000px;}
.y23{bottom:469.335000px;}
.y75{bottom:472.035000px;}
.y52{bottom:479.595000px;}
.y93{bottom:495.255000px;}
.y22{bottom:497.055000px;}
.y74{bottom:499.755000px;}
.y51{bottom:507.315000px;}
.y92{bottom:522.975000px;}
.y21{bottom:524.775000px;}
.y73{bottom:527.655000px;}
.y4f{bottom:535.035000px;}
.y50{bottom:542.595000px;}
.y91{bottom:550.875000px;}
.y20{bottom:552.675000px;}
.y72{bottom:555.375000px;}
.y4e{bottom:562.935000px;}
.y90{bottom:578.595000px;}
.y1f{bottom:580.395000px;}
.y71{bottom:583.095000px;}
.y4d{bottom:590.655000px;}
.y8f{bottom:606.345000px;}
.y1e{bottom:608.145000px;}
.y70{bottom:610.845000px;}
.y4c{bottom:618.405000px;}
.y8e{bottom:634.245000px;}
.y1d{bottom:635.865000px;}
.y6f{bottom:638.745000px;}
.y4b{bottom:646.305000px;}
.y8d{bottom:661.785000px;}
.y1c{bottom:663.765000px;}
.y6e{bottom:666.465000px;}
.y4a{bottom:674.025000px;}
.y8c{bottom:691.125000px;}
.y1b{bottom:691.485000px;}
.y6d{bottom:694.185000px;}
.y49{bottom:701.745000px;}
.y1a{bottom:719.205000px;}
.y8b{bottom:720.465000px;}
.y6c{bottom:722.085000px;}
.y48{bottom:729.465000px;}
.y19{bottom:746.925000px;}
.y6b{bottom:749.805000px;}
.y47{bottom:757.365000px;}
.y18{bottom:774.825000px;}
.y6a{bottom:777.525000px;}
.y46{bottom:785.085000px;}
.y17{bottom:802.545000px;}
.y69{bottom:805.245000px;}
.y45{bottom:812.805000px;}
.y16{bottom:830.265000px;}
.y8a{bottom:832.965000px;}
.y68{bottom:833.145000px;}
.y43{bottom:840.525000px;}
.y44{bottom:848.085000px;}
.y15{bottom:858.165000px;}
.y67{bottom:860.865000px;}
.y89{bottom:862.305000px;}
.y42{bottom:868.425000px;}
.y14{bottom:885.930000px;}
.y66{bottom:888.630000px;}
.y88{bottom:891.510000px;}
.y41{bottom:896.190000px;}
.y13{bottom:913.650000px;}
.y65{bottom:916.350000px;}
.y87{bottom:921.030000px;}
.y40{bottom:923.910000px;}
.y12{bottom:941.370000px;}
.y64{bottom:945.510000px;}
.y86{bottom:948.750000px;}
.y3f{bottom:951.810000px;}
.y11{bottom:969.270000px;}
.y63{bottom:974.850000px;}
.y85{bottom:976.470000px;}
.y3e{bottom:979.530000px;}
.y10{bottom:996.990000px;}
.y62{bottom:1004.190000px;}
.y3d{bottom:1007.250000px;}
.yf{bottom:1024.710000px;}
.y84{bottom:1032.090000px;}
.y61{bottom:1033.350000px;}
.y3b{bottom:1034.970000px;}
.y3c{bottom:1042.530000px;}
.ye{bottom:1052.610000px;}
.y83{bottom:1059.810000px;}
.y3a{bottom:1062.870000px;}
.y82{bottom:1087.530000px;}
.yd{bottom:1090.590000px;}
.y39{bottom:1098.150000px;}
.y81{bottom:1116.690000px;}
.yc{bottom:1118.310000px;}
.y7{bottom:1141.740000px;}
.y4{bottom:1157.040000px;}
.y1{bottom:1196.100000px;}
.h2{height:24.120000px;}
.h5{height:28.260000px;}
.h8{height:30.960000px;}
.h12{height:38.671172px;}
.h15{height:45.316055px;}
.h11{height:52.998047px;}
.h4{height:53.709961px;}
.h10{height:58.819922px;}
.hd{height:59.436914px;}
.h13{height:59.439023px;}
.hf{height:61.575820px;}
.hb{height:65.884219px;}
.h7{height:66.757500px;}
.h9{height:70.664062px;}
.h6{height:72.562500px;}
.he{height:82.635820px;}
.hc{height:82.676953px;}
.h3{height:84.898125px;}
.h14{height:86.585445px;}
.ha{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:44.100000px;}
.w6{width:63.756000px;}
.w5{width:755.070000px;}
.w2{width:840.240000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x6{left:8.640000px;}
.x9{left:10.620000px;}
.xb{left:18.360000px;}
.x4{left:35.640000px;}
.x8{left:42.480000px;}
.x7{left:84.959987px;}
.x1b{left:89.855987px;}
.x2{left:92.556000px;}
.x12{left:95.615987px;}
.x2b{left:106.235987px;}
.xd{left:108.215987px;}
.x11{left:110.015987px;}
.xc{left:127.475987px;}
.x26{left:168.329973px;}
.x27{left:175.169987px;}
.x22{left:178.949973px;}
.x23{left:186.869987px;}
.x2a{left:271.109987px;}
.x10{left:272.909987px;}
.xe{left:280.514987px;}
.x1a{left:301.034987px;}
.x28{left:334.694973px;}
.x29{left:356.834987px;}
.x13{left:373.574987px;}
.x16{left:381.314973px;}
.x17{left:388.154987px;}
.x20{left:440.894973px;}
.xf{left:446.474987px;}
.x21{left:449.714987px;}
.x24{left:544.784973px;}
.x25{left:551.624987px;}
.x18{left:589.064973px;}
.x19{left:595.904987px;}
.x5{left:609.405000px;}
.x1e{left:732.209973px;}
.x1c{left:738.149973px;}
.x1f{left:739.769987px;}
.x1d{left:747.509987px;}
.x14{left:790.889973px;}
.xa{left:797.550000px;}
.x15{left:802.769987px;}
.x3{left:844.560000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.242133pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.115200pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426240pt;}
.ls8{letter-spacing:0.448000pt;}
.ls0{letter-spacing:8.160000pt;}
.ls4{letter-spacing:19.040000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.953280pt;}
.ws6{word-spacing:-7.810560pt;}
.ws8{word-spacing:-7.568427pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-17.616640pt;}
._10{margin-left:-5.091840pt;}
._4{margin-left:-3.893760pt;}
._3{margin-left:-2.920320pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.558613pt;}
._1a{width:2.707840pt;}
._1c{width:3.613867pt;}
._23{width:4.709760pt;}
._e{width:5.840640pt;}
._f{width:6.739200pt;}
._1b{width:7.637760pt;}
._a{width:8.611200pt;}
._7{width:10.183680pt;}
._8{width:11.157120pt;}
._15{width:12.055680pt;}
._14{width:13.328640pt;}
._5{width:14.451840pt;}
._6{width:15.828267pt;}
._9{width:17.072640pt;}
._16{width:20.245760pt;}
._19{width:21.316907pt;}
._21{width:22.712533pt;}
._2{width:23.662080pt;}
._28{width:24.635520pt;}
._d{width:25.534080pt;}
._1e{width:27.501227pt;}
._1f{width:28.393600pt;}
._13{width:29.352960pt;}
._12{width:30.850560pt;}
._11{width:32.273280pt;}
._29{width:33.175467pt;}
._20{width:34.220160pt;}
._27{width:35.343360pt;}
._26{width:36.391680pt;}
._22{width:37.290240pt;}
._17{width:38.188800pt;}
._25{width:40.435200pt;}
._2b{width:43.056000pt;}
._1d{width:48.447360pt;}
._b{width:62.225280pt;}
._c{width:63.287467pt;}
._2a{width:64.308053pt;}
._24{width:561.150720pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.839867pt;}
.y2{bottom:4.000000pt;}
.ya{bottom:5.120000pt;}
.y3{bottom:6.560000pt;}
.y9{bottom:8.160000pt;}
.y5{bottom:10.240000pt;}
.y6{bottom:13.600000pt;}
.y8{bottom:25.440000pt;}
.y38{bottom:79.072000pt;}
.yaf{bottom:80.672000pt;}
.y37{bottom:95.232000pt;}
.y80{bottom:95.712000pt;}
.y36{bottom:99.872000pt;}
.yae{bottom:105.312000pt;}
.y35{bottom:111.552000pt;}
.ya1{bottom:112.032000pt;}
.y34{bottom:116.192000pt;}
.y7f{bottom:121.952000pt;}
.y33{bottom:127.872000pt;}
.yac{bottom:128.352000pt;}
.yad{bottom:130.112000pt;}
.y32{bottom:132.512000pt;}
.y9f{bottom:140.026667pt;}
.y60{bottom:144.186667pt;}
.y31{bottom:144.666667pt;}
.ya0{bottom:146.746667pt;}
.y7e{bottom:148.026667pt;}
.yab{bottom:154.746667pt;}
.y5f{bottom:160.346667pt;}
.y9e{bottom:164.666667pt;}
.y5e{bottom:164.986667pt;}
.y2f{bottom:170.266667pt;}
.y7d{bottom:172.666667pt;}
.y5d{bottom:176.666667pt;}
.y30{bottom:176.986667pt;}
.yaa{bottom:179.386667pt;}
.y9d{bottom:189.306667pt;}
.y5c{bottom:192.986667pt;}
.y2e{bottom:194.906667pt;}
.y7c{bottom:197.306667pt;}
.y5b{bottom:197.626667pt;}
.ya9{bottom:204.026667pt;}
.y5a{bottom:209.626667pt;}
.y9c{bottom:214.106667pt;}
.y2d{bottom:219.546667pt;}
.y7b{bottom:222.106667pt;}
.ya8{bottom:228.826667pt;}
.y9b{bottom:238.746667pt;}
.y2c{bottom:244.346667pt;}
.y59{bottom:246.746667pt;}
.ya7{bottom:253.466667pt;}
.y9a{bottom:263.386667pt;}
.y2a{bottom:268.986667pt;}
.y58{bottom:271.386667pt;}
.y2b{bottom:275.706667pt;}
.ya6{bottom:278.106667pt;}
.y99{bottom:288.026667pt;}
.y29{bottom:293.626667pt;}
.y7a{bottom:296.186667pt;}
.y57{bottom:297.306667pt;}
.ya5{bottom:302.786667pt;}
.y98{bottom:314.146667pt;}
.y28{bottom:318.466667pt;}
.y79{bottom:320.866667pt;}
.y56{bottom:323.426667pt;}
.ya4{bottom:327.586667pt;}
.y97{bottom:338.786667pt;}
.y26{bottom:343.106667pt;}
.y78{bottom:345.506667pt;}
.y55{bottom:349.506667pt;}
.y27{bottom:349.826667pt;}
.ya3{bottom:352.226667pt;}
.y96{bottom:364.706667pt;}
.y25{bottom:367.746667pt;}
.y77{bottom:370.146667pt;}
.y54{bottom:375.426667pt;}
.ya2{bottom:376.866667pt;}
.y95{bottom:390.946667pt;}
.y24{bottom:392.386667pt;}
.y76{bottom:394.946667pt;}
.y53{bottom:401.666667pt;}
.y94{bottom:415.586667pt;}
.y23{bottom:417.186667pt;}
.y75{bottom:419.586667pt;}
.y52{bottom:426.306667pt;}
.y93{bottom:440.226667pt;}
.y22{bottom:441.826667pt;}
.y74{bottom:444.226667pt;}
.y51{bottom:450.946667pt;}
.y92{bottom:464.866667pt;}
.y21{bottom:466.466667pt;}
.y73{bottom:469.026667pt;}
.y4f{bottom:475.586667pt;}
.y50{bottom:482.306667pt;}
.y91{bottom:489.666667pt;}
.y20{bottom:491.266667pt;}
.y72{bottom:493.666667pt;}
.y4e{bottom:500.386667pt;}
.y90{bottom:514.306667pt;}
.y1f{bottom:515.906667pt;}
.y71{bottom:518.306667pt;}
.y4d{bottom:525.026667pt;}
.y8f{bottom:538.973333pt;}
.y1e{bottom:540.573333pt;}
.y70{bottom:542.973333pt;}
.y4c{bottom:549.693333pt;}
.y8e{bottom:563.773333pt;}
.y1d{bottom:565.213333pt;}
.y6f{bottom:567.773333pt;}
.y4b{bottom:574.493333pt;}
.y8d{bottom:588.253333pt;}
.y1c{bottom:590.013333pt;}
.y6e{bottom:592.413333pt;}
.y4a{bottom:599.133333pt;}
.y8c{bottom:614.333333pt;}
.y1b{bottom:614.653333pt;}
.y6d{bottom:617.053333pt;}
.y49{bottom:623.773333pt;}
.y1a{bottom:639.293333pt;}
.y8b{bottom:640.413333pt;}
.y6c{bottom:641.853333pt;}
.y48{bottom:648.413333pt;}
.y19{bottom:663.933333pt;}
.y6b{bottom:666.493333pt;}
.y47{bottom:673.213333pt;}
.y18{bottom:688.733333pt;}
.y6a{bottom:691.133333pt;}
.y46{bottom:697.853333pt;}
.y17{bottom:713.373333pt;}
.y69{bottom:715.773333pt;}
.y45{bottom:722.493333pt;}
.y16{bottom:738.013333pt;}
.y8a{bottom:740.413333pt;}
.y68{bottom:740.573333pt;}
.y43{bottom:747.133333pt;}
.y44{bottom:753.853333pt;}
.y15{bottom:762.813333pt;}
.y67{bottom:765.213333pt;}
.y89{bottom:766.493333pt;}
.y42{bottom:771.933333pt;}
.y14{bottom:787.493333pt;}
.y66{bottom:789.893333pt;}
.y88{bottom:792.453333pt;}
.y41{bottom:796.613333pt;}
.y13{bottom:812.133333pt;}
.y65{bottom:814.533333pt;}
.y87{bottom:818.693333pt;}
.y40{bottom:821.253333pt;}
.y12{bottom:836.773333pt;}
.y64{bottom:840.453333pt;}
.y86{bottom:843.333333pt;}
.y3f{bottom:846.053333pt;}
.y11{bottom:861.573333pt;}
.y63{bottom:866.533333pt;}
.y85{bottom:867.973333pt;}
.y3e{bottom:870.693333pt;}
.y10{bottom:886.213333pt;}
.y62{bottom:892.613333pt;}
.y3d{bottom:895.333333pt;}
.yf{bottom:910.853333pt;}
.y84{bottom:917.413333pt;}
.y61{bottom:918.533333pt;}
.y3b{bottom:919.973333pt;}
.y3c{bottom:926.693333pt;}
.ye{bottom:935.653333pt;}
.y83{bottom:942.053333pt;}
.y3a{bottom:944.773333pt;}
.y82{bottom:966.693333pt;}
.yd{bottom:969.413333pt;}
.y39{bottom:976.133333pt;}
.y81{bottom:992.613333pt;}
.yc{bottom:994.053333pt;}
.y7{bottom:1014.880000pt;}
.y4{bottom:1028.480000pt;}
.y1{bottom:1063.200000pt;}
.h2{height:21.440000pt;}
.h5{height:25.120000pt;}
.h8{height:27.520000pt;}
.h12{height:34.374375pt;}
.h15{height:40.280938pt;}
.h11{height:47.109375pt;}
.h4{height:47.742188pt;}
.h10{height:52.284375pt;}
.hd{height:52.832812pt;}
.h13{height:52.834688pt;}
.hf{height:54.734062pt;}
.hb{height:58.563750pt;}
.h7{height:59.340000pt;}
.h9{height:62.812500pt;}
.h6{height:64.500000pt;}
.he{height:73.454062pt;}
.hc{height:73.490625pt;}
.h3{height:75.465000pt;}
.h14{height:76.964840pt;}
.ha{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.200000pt;}
.w6{width:56.672000pt;}
.w5{width:671.173333pt;}
.w2{width:746.880000pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x6{left:7.680000pt;}
.x9{left:9.440000pt;}
.xb{left:16.320000pt;}
.x4{left:31.680000pt;}
.x8{left:37.760000pt;}
.x7{left:75.519988pt;}
.x1b{left:79.871988pt;}
.x2{left:82.272000pt;}
.x12{left:84.991988pt;}
.x2b{left:94.431988pt;}
.xd{left:96.191988pt;}
.x11{left:97.791988pt;}
.xc{left:113.311988pt;}
.x26{left:149.626643pt;}
.x27{left:155.706655pt;}
.x22{left:159.066643pt;}
.x23{left:166.106655pt;}
.x2a{left:240.986655pt;}
.x10{left:242.586655pt;}
.xe{left:249.346655pt;}
.x1a{left:267.586655pt;}
.x28{left:297.506643pt;}
.x29{left:317.186655pt;}
.x13{left:332.066655pt;}
.x16{left:338.946643pt;}
.x17{left:345.026655pt;}
.x20{left:391.906643pt;}
.xf{left:396.866655pt;}
.x21{left:399.746655pt;}
.x24{left:484.253310pt;}
.x25{left:490.333322pt;}
.x18{left:523.613310pt;}
.x19{left:529.693322pt;}
.x5{left:541.693333pt;}
.x1e{left:650.853310pt;}
.x1c{left:656.133310pt;}
.x1f{left:657.573322pt;}
.x1d{left:664.453322pt;}
.x14{left:703.013310pt;}
.xa{left:708.933333pt;}
.x15{left:713.573322pt;}
.x3{left:750.720000pt;}
}




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