
    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_6d89f5e7abf474a5a04f43bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_31019a6c1b2112dd32dca4f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_a89e66e9e60ba0160ca487cf.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_81f8ddf654404b534a6e0675.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_5209bd75d32dbfd21cc4dafe.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5099a70d51c1f1530494a22.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ffafd3d70ee239f0cfb477d2.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_a74e12a2117a0aa9518c77c5.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_62fdc76065cfb5be44c71fbf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_3b2edfa42ceb0ca6d0f3fc80.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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-0.996000px;}
.ls8{letter-spacing:-0.738000px;}
.lsd{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.253200px;}
.ls17{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.178800px;}
.ls5{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.020160px;}
.ls19{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.015120px;}
.ls18{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.180000px;}
.lse{letter-spacing:0.306600px;}
.ls14{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.349800px;}
.ls1{letter-spacing:0.349920px;}
.ls11{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.864000px;}
.ls15{letter-spacing:25.308000px;}
.ls10{letter-spacing:52.668000px;}
.lsc{letter-spacing:64.026720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws13{word-spacing:-54.000000px;}
.ws9{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.506480px;}
.wsd{word-spacing:-15.246600px;}
.wsa{word-spacing:-14.940000px;}
.wse{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.284000px;}
.ws10{word-spacing:-13.140000px;}
.ws0{word-spacing:-12.959880px;}
.ws2{word-spacing:-12.610080px;}
.ws3{word-spacing:-12.589920px;}
.ws14{word-spacing:-12.186000px;}
.ws4{word-spacing:-11.872080px;}
.ws6{word-spacing:-11.609280px;}
.ws5{word-spacing:-11.430480px;}
.ws8{word-spacing:-8.406720px;}
.ws7{word-spacing:-8.153520px;}
.wsb{word-spacing:0.000000px;}
._26{margin-left:-3.764880px;}
._c{margin-left:-2.748960px;}
._0{margin-left:-1.435440px;}
._1{width:1.265040px;}
._2{width:2.866560px;}
._3{width:3.885600px;}
._8{width:5.223840px;}
._12{width:7.220880px;}
._6{width:8.655120px;}
._5{width:10.089360px;}
._4{width:11.175120px;}
._b{width:12.191040px;}
._9{width:13.865520px;}
._2d{width:15.223440px;}
._7{width:16.792560px;}
._a{width:18.455760px;}
._1a{width:20.019600px;}
._d{width:21.623040px;}
._16{width:23.057280px;}
._17{width:24.501600px;}
._1b{width:25.577280px;}
._18{width:26.652960px;}
._28{width:28.625040px;}
._19{width:30.005280px;}
._10{width:31.664160px;}
._11{width:32.868000px;}
._e{width:34.351920px;}
._13{width:35.497440px;}
._25{width:36.632880px;}
._15{width:37.768320px;}
._2b{width:39.919680px;}
._2a{width:41.413680px;}
._21{width:43.086960px;}
._30{width:44.280000px;}
._2f{width:46.188000px;}
._2e{width:47.646000px;}
._2c{width:48.933360px;}
._29{width:55.337760px;}
._24{width:58.196160px;}
._1e{width:61.313760px;}
._14{width:64.023120px;}
._1d{width:65.855520px;}
._f{width:67.288080px;}
._1f{width:69.192000px;}
._20{width:70.309200px;}
._1c{width:80.785440px;}
._27{width:82.409040px;}
._23{width:103.793040px;}
._22{width:105.177600px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.780000px;}
.y3{bottom:77.796000px;}
.y4f{bottom:113.976000px;}
.ya3{bottom:122.976000px;}
.y39{bottom:123.876000px;}
.y4e{bottom:131.976000px;}
.y86{bottom:138.816000px;}
.ya2{bottom:140.976000px;}
.y38{bottom:141.876000px;}
.yc7{bottom:145.476000px;}
.y4d{bottom:149.976000px;}
.y85{bottom:156.810000px;}
.ya1{bottom:158.970000px;}
.y37{bottom:159.870000px;}
.yc6{bottom:163.470000px;}
.y4c{bottom:167.970000px;}
.y84{bottom:174.810000px;}
.ya0{bottom:176.970000px;}
.y36{bottom:177.870000px;}
.yc5{bottom:181.470000px;}
.y4b{bottom:185.970000px;}
.y83{bottom:192.810000px;}
.y35{bottom:195.870000px;}
.yc4{bottom:199.470000px;}
.y9f{bottom:203.610000px;}
.y4a{bottom:203.970000px;}
.y82{bottom:210.810000px;}
.y34{bottom:213.870000px;}
.yc3{bottom:217.470000px;}
.y49{bottom:221.970000px;}
.y81{bottom:228.810000px;}
.y33{bottom:231.870000px;}
.yc2{bottom:235.470000px;}
.y48{bottom:239.970000px;}
.y9e{bottom:242.310000px;}
.y80{bottom:246.810000px;}
.y32{bottom:249.870000px;}
.yc1{bottom:253.470000px;}
.y47{bottom:257.970000px;}
.y9d{bottom:260.310000px;}
.y7f{bottom:264.810000px;}
.y31{bottom:267.870000px;}
.yc0{bottom:271.470000px;}
.y46{bottom:275.970000px;}
.y9c{bottom:278.310000px;}
.y7e{bottom:282.810000px;}
.y30{bottom:285.870000px;}
.y45{bottom:293.970000px;}
.y9b{bottom:296.310000px;}
.ybf{bottom:298.110000px;}
.y7d{bottom:300.810000px;}
.y2f{bottom:303.870000px;}
.y44{bottom:311.970000px;}
.y9a{bottom:314.310000px;}
.y7c{bottom:318.810000px;}
.y2e{bottom:321.870000px;}
.y43{bottom:329.970000px;}
.y99{bottom:332.310000px;}
.y7b{bottom:336.855000px;}
.y2d{bottom:339.915000px;}
.y42{bottom:348.015000px;}
.y98{bottom:350.355000px;}
.y7a{bottom:354.855000px;}
.y2c{bottom:357.915000px;}
.y41{bottom:366.015000px;}
.y97{bottom:368.355000px;}
.y79{bottom:372.855000px;}
.y2b{bottom:375.915000px;}
.y40{bottom:384.015000px;}
.y96{bottom:386.355000px;}
.y78{bottom:390.855000px;}
.y2a{bottom:393.915000px;}
.y3f{bottom:402.015000px;}
.y95{bottom:404.355000px;}
.y77{bottom:408.855000px;}
.y29{bottom:411.915000px;}
.y3e{bottom:420.015000px;}
.y94{bottom:422.355000px;}
.y76{bottom:426.855000px;}
.y28{bottom:429.915000px;}
.y3d{bottom:438.015000px;}
.y93{bottom:440.355000px;}
.y75{bottom:444.855000px;}
.y27{bottom:447.915000px;}
.y3c{bottom:456.015000px;}
.y74{bottom:462.855000px;}
.y26{bottom:465.915000px;}
.y92{bottom:466.815000px;}
.y3b{bottom:474.015000px;}
.y73{bottom:480.855000px;}
.y3a{bottom:492.015000px;}
.y25{bottom:492.375000px;}
.y72{bottom:498.855000px;}
.y91{bottom:505.515000px;}
.ybe{bottom:510.015000px;}
.y71{bottom:516.855000px;}
.y90{bottom:523.515000px;}
.ybd{bottom:528.015000px;}
.y70{bottom:534.855000px;}
.y8f{bottom:541.515000px;}
.y24{bottom:543.315000px;}
.ybc{bottom:546.015000px;}
.y6f{bottom:552.855000px;}
.y8e{bottom:559.515000px;}
.y23{bottom:561.315000px;}
.ybb{bottom:564.015000px;}
.y6e{bottom:570.855000px;}
.y8d{bottom:577.515000px;}
.y22{bottom:579.315000px;}
.yba{bottom:582.015000px;}
.y6d{bottom:588.855000px;}
.y8c{bottom:595.515000px;}
.y21{bottom:597.315000px;}
.yb9{bottom:600.015000px;}
.y6c{bottom:606.885000px;}
.y8b{bottom:613.545000px;}
.y20{bottom:615.345000px;}
.yb8{bottom:618.045000px;}
.y6b{bottom:624.885000px;}
.y8a{bottom:631.545000px;}
.y1f{bottom:633.345000px;}
.yb7{bottom:636.045000px;}
.y6a{bottom:642.885000px;}
.y89{bottom:649.545000px;}
.y1e{bottom:651.345000px;}
.yb6{bottom:654.045000px;}
.y69{bottom:660.885000px;}
.y88{bottom:667.545000px;}
.y1d{bottom:669.345000px;}
.yb5{bottom:672.045000px;}
.y68{bottom:678.885000px;}
.y1c{bottom:687.345000px;}
.yb4{bottom:690.045000px;}
.y87{bottom:694.185000px;}
.y67{bottom:696.885000px;}
.y1b{bottom:705.345000px;}
.yb3{bottom:708.045000px;}
.y66{bottom:714.885000px;}
.y1a{bottom:723.345000px;}
.yb2{bottom:726.045000px;}
.y65{bottom:732.885000px;}
.y19{bottom:741.345000px;}
.yb1{bottom:744.045000px;}
.y64{bottom:750.885000px;}
.y18{bottom:759.345000px;}
.yb0{bottom:762.045000px;}
.y63{bottom:768.885000px;}
.y17{bottom:777.345000px;}
.yaf{bottom:780.045000px;}
.y62{bottom:786.885000px;}
.y16{bottom:795.345000px;}
.yae{bottom:798.045000px;}
.y61{bottom:804.885000px;}
.yad{bottom:816.045000px;}
.y60{bottom:822.885000px;}
.y15{bottom:830.985000px;}
.yac{bottom:834.045000px;}
.y5f{bottom:840.885000px;}
.y14{bottom:845.025000px;}
.yab{bottom:852.045000px;}
.y13{bottom:858.885000px;}
.yaa{bottom:870.045000px;}
.y5e{bottom:876.930000px;}
.y12{bottom:881.970000px;}
.ya9{bottom:888.090000px;}
.y5d{bottom:894.930000px;}
.y11{bottom:903.930000px;}
.ya8{bottom:906.090000px;}
.y5c{bottom:912.930000px;}
.ya7{bottom:924.090000px;}
.y10{bottom:929.670000px;}
.y5b{bottom:930.930000px;}
.ya6{bottom:942.090000px;}
.yf{bottom:942.630000px;}
.ye{bottom:955.410000px;}
.y5a{bottom:957.390000px;}
.ya5{bottom:960.090000px;}
.yd{bottom:968.370000px;}
.ya4{bottom:978.090000px;}
.yc{bottom:981.330000px;}
.y59{bottom:996.090000px;}
.yb{bottom:1000.590000px;}
.y58{bottom:1014.090000px;}
.ya{bottom:1019.670000px;}
.y57{bottom:1032.090000px;}
.y56{bottom:1050.090000px;}
.y9{bottom:1061.790000px;}
.y55{bottom:1068.090000px;}
.y54{bottom:1086.090000px;}
.y8{bottom:1092.930000px;}
.y53{bottom:1104.090000px;}
.y7{bottom:1120.470000px;}
.y52{bottom:1122.090000px;}
.y6{bottom:1133.430000px;}
.y51{bottom:1140.120000px;}
.y5{bottom:1146.420000px;}
.y50{bottom:1158.480000px;}
.y2{bottom:1179.180000px;}
.y1{bottom:1198.260000px;}
.h8{height:22.104141px;}
.h5{height:33.156211px;}
.h2{height:34.108594px;}
.h9{height:37.224141px;}
.h11{height:37.705078px;}
.h10{height:39.471680px;}
.hb{height:41.726953px;}
.h4{height:43.681992px;}
.h12{height:44.507812px;}
.ha{height:44.936719px;}
.he{height:46.251562px;}
.hc{height:49.255313px;}
.hd{height:49.809375px;}
.h3{height:50.273438px;}
.h13{height:53.709961px;}
.hf{height:54.140625px;}
.h7{height:55.161563px;}
.h6{height:81.210938px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:75.599987px;}
.x5{left:88.379987px;}
.xd{left:97.235987px;}
.x3{left:99.215987px;}
.x12{left:102.635987px;}
.x13{left:129.635987px;}
.x7{left:148.175987px;}
.x9{left:157.889987px;}
.x8{left:176.429987px;}
.x4{left:184.709987px;}
.xb{left:190.829987px;}
.xc{left:209.369987px;}
.xa{left:245.549987px;}
.x6{left:362.054987px;}
.x2{left:438.194987px;}
.xe{left:457.274987px;}
.xf{left:478.904987px;}
.x10{left:484.304987px;}
.x11{left:511.304987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.885333pt;}
.ls8{letter-spacing:-0.656000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.225067pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.158933pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.017920pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.013440pt;}
.ls18{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.272533pt;}
.ls14{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.310933pt;}
.ls1{letter-spacing:0.311040pt;}
.ls11{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls15{letter-spacing:22.496000pt;}
.ls10{letter-spacing:46.816000pt;}
.lsc{letter-spacing:56.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws13{word-spacing:-48.000000pt;}
.ws9{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.672427pt;}
.wsd{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.680000pt;}
.ws0{word-spacing:-11.519893pt;}
.ws2{word-spacing:-11.208960pt;}
.ws3{word-spacing:-11.191040pt;}
.ws14{word-spacing:-10.832000pt;}
.ws4{word-spacing:-10.552960pt;}
.ws6{word-spacing:-10.319360pt;}
.ws5{word-spacing:-10.160427pt;}
.ws8{word-spacing:-7.472640pt;}
.ws7{word-spacing:-7.247573pt;}
.wsb{word-spacing:0.000000pt;}
._26{margin-left:-3.346560pt;}
._c{margin-left:-2.443520pt;}
._0{margin-left:-1.275947pt;}
._1{width:1.124480pt;}
._2{width:2.548053pt;}
._3{width:3.453867pt;}
._8{width:4.643413pt;}
._12{width:6.418560pt;}
._6{width:7.693440pt;}
._5{width:8.968320pt;}
._4{width:9.933440pt;}
._b{width:10.836480pt;}
._9{width:12.324907pt;}
._2d{width:13.531947pt;}
._7{width:14.926720pt;}
._a{width:16.405120pt;}
._1a{width:17.795200pt;}
._d{width:19.220480pt;}
._16{width:20.495360pt;}
._17{width:21.779200pt;}
._1b{width:22.735360pt;}
._18{width:23.691520pt;}
._28{width:25.444480pt;}
._19{width:26.671360pt;}
._10{width:28.145920pt;}
._11{width:29.216000pt;}
._e{width:30.535040pt;}
._13{width:31.553280pt;}
._25{width:32.562560pt;}
._15{width:33.571840pt;}
._2b{width:35.484160pt;}
._2a{width:36.812160pt;}
._21{width:38.299520pt;}
._30{width:39.360000pt;}
._2f{width:41.056000pt;}
._2e{width:42.352000pt;}
._2c{width:43.496320pt;}
._29{width:49.189120pt;}
._24{width:51.729920pt;}
._1e{width:54.501120pt;}
._14{width:56.909440pt;}
._1d{width:58.538240pt;}
._f{width:59.811627pt;}
._1f{width:61.504000pt;}
._20{width:62.497067pt;}
._1c{width:71.809280pt;}
._27{width:73.252480pt;}
._23{width:92.260480pt;}
._22{width:93.491200pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.360000pt;}
.y3{bottom:69.152000pt;}
.y4f{bottom:101.312000pt;}
.ya3{bottom:109.312000pt;}
.y39{bottom:110.112000pt;}
.y4e{bottom:117.312000pt;}
.y86{bottom:123.392000pt;}
.ya2{bottom:125.312000pt;}
.y38{bottom:126.112000pt;}
.yc7{bottom:129.312000pt;}
.y4d{bottom:133.312000pt;}
.y85{bottom:139.386667pt;}
.ya1{bottom:141.306667pt;}
.y37{bottom:142.106667pt;}
.yc6{bottom:145.306667pt;}
.y4c{bottom:149.306667pt;}
.y84{bottom:155.386667pt;}
.ya0{bottom:157.306667pt;}
.y36{bottom:158.106667pt;}
.yc5{bottom:161.306667pt;}
.y4b{bottom:165.306667pt;}
.y83{bottom:171.386667pt;}
.y35{bottom:174.106667pt;}
.yc4{bottom:177.306667pt;}
.y9f{bottom:180.986667pt;}
.y4a{bottom:181.306667pt;}
.y82{bottom:187.386667pt;}
.y34{bottom:190.106667pt;}
.yc3{bottom:193.306667pt;}
.y49{bottom:197.306667pt;}
.y81{bottom:203.386667pt;}
.y33{bottom:206.106667pt;}
.yc2{bottom:209.306667pt;}
.y48{bottom:213.306667pt;}
.y9e{bottom:215.386667pt;}
.y80{bottom:219.386667pt;}
.y32{bottom:222.106667pt;}
.yc1{bottom:225.306667pt;}
.y47{bottom:229.306667pt;}
.y9d{bottom:231.386667pt;}
.y7f{bottom:235.386667pt;}
.y31{bottom:238.106667pt;}
.yc0{bottom:241.306667pt;}
.y46{bottom:245.306667pt;}
.y9c{bottom:247.386667pt;}
.y7e{bottom:251.386667pt;}
.y30{bottom:254.106667pt;}
.y45{bottom:261.306667pt;}
.y9b{bottom:263.386667pt;}
.ybf{bottom:264.986667pt;}
.y7d{bottom:267.386667pt;}
.y2f{bottom:270.106667pt;}
.y44{bottom:277.306667pt;}
.y9a{bottom:279.386667pt;}
.y7c{bottom:283.386667pt;}
.y2e{bottom:286.106667pt;}
.y43{bottom:293.306667pt;}
.y99{bottom:295.386667pt;}
.y7b{bottom:299.426667pt;}
.y2d{bottom:302.146667pt;}
.y42{bottom:309.346667pt;}
.y98{bottom:311.426667pt;}
.y7a{bottom:315.426667pt;}
.y2c{bottom:318.146667pt;}
.y41{bottom:325.346667pt;}
.y97{bottom:327.426667pt;}
.y79{bottom:331.426667pt;}
.y2b{bottom:334.146667pt;}
.y40{bottom:341.346667pt;}
.y96{bottom:343.426667pt;}
.y78{bottom:347.426667pt;}
.y2a{bottom:350.146667pt;}
.y3f{bottom:357.346667pt;}
.y95{bottom:359.426667pt;}
.y77{bottom:363.426667pt;}
.y29{bottom:366.146667pt;}
.y3e{bottom:373.346667pt;}
.y94{bottom:375.426667pt;}
.y76{bottom:379.426667pt;}
.y28{bottom:382.146667pt;}
.y3d{bottom:389.346667pt;}
.y93{bottom:391.426667pt;}
.y75{bottom:395.426667pt;}
.y27{bottom:398.146667pt;}
.y3c{bottom:405.346667pt;}
.y74{bottom:411.426667pt;}
.y26{bottom:414.146667pt;}
.y92{bottom:414.946667pt;}
.y3b{bottom:421.346667pt;}
.y73{bottom:427.426667pt;}
.y3a{bottom:437.346667pt;}
.y25{bottom:437.666667pt;}
.y72{bottom:443.426667pt;}
.y91{bottom:449.346667pt;}
.ybe{bottom:453.346667pt;}
.y71{bottom:459.426667pt;}
.y90{bottom:465.346667pt;}
.ybd{bottom:469.346667pt;}
.y70{bottom:475.426667pt;}
.y8f{bottom:481.346667pt;}
.y24{bottom:482.946667pt;}
.ybc{bottom:485.346667pt;}
.y6f{bottom:491.426667pt;}
.y8e{bottom:497.346667pt;}
.y23{bottom:498.946667pt;}
.ybb{bottom:501.346667pt;}
.y6e{bottom:507.426667pt;}
.y8d{bottom:513.346667pt;}
.y22{bottom:514.946667pt;}
.yba{bottom:517.346667pt;}
.y6d{bottom:523.426667pt;}
.y8c{bottom:529.346667pt;}
.y21{bottom:530.946667pt;}
.yb9{bottom:533.346667pt;}
.y6c{bottom:539.453333pt;}
.y8b{bottom:545.373333pt;}
.y20{bottom:546.973333pt;}
.yb8{bottom:549.373333pt;}
.y6b{bottom:555.453333pt;}
.y8a{bottom:561.373333pt;}
.y1f{bottom:562.973333pt;}
.yb7{bottom:565.373333pt;}
.y6a{bottom:571.453333pt;}
.y89{bottom:577.373333pt;}
.y1e{bottom:578.973333pt;}
.yb6{bottom:581.373333pt;}
.y69{bottom:587.453333pt;}
.y88{bottom:593.373333pt;}
.y1d{bottom:594.973333pt;}
.yb5{bottom:597.373333pt;}
.y68{bottom:603.453333pt;}
.y1c{bottom:610.973333pt;}
.yb4{bottom:613.373333pt;}
.y87{bottom:617.053333pt;}
.y67{bottom:619.453333pt;}
.y1b{bottom:626.973333pt;}
.yb3{bottom:629.373333pt;}
.y66{bottom:635.453333pt;}
.y1a{bottom:642.973333pt;}
.yb2{bottom:645.373333pt;}
.y65{bottom:651.453333pt;}
.y19{bottom:658.973333pt;}
.yb1{bottom:661.373333pt;}
.y64{bottom:667.453333pt;}
.y18{bottom:674.973333pt;}
.yb0{bottom:677.373333pt;}
.y63{bottom:683.453333pt;}
.y17{bottom:690.973333pt;}
.yaf{bottom:693.373333pt;}
.y62{bottom:699.453333pt;}
.y16{bottom:706.973333pt;}
.yae{bottom:709.373333pt;}
.y61{bottom:715.453333pt;}
.yad{bottom:725.373333pt;}
.y60{bottom:731.453333pt;}
.y15{bottom:738.653333pt;}
.yac{bottom:741.373333pt;}
.y5f{bottom:747.453333pt;}
.y14{bottom:751.133333pt;}
.yab{bottom:757.373333pt;}
.y13{bottom:763.453333pt;}
.yaa{bottom:773.373333pt;}
.y5e{bottom:779.493333pt;}
.y12{bottom:783.973333pt;}
.ya9{bottom:789.413333pt;}
.y5d{bottom:795.493333pt;}
.y11{bottom:803.493333pt;}
.ya8{bottom:805.413333pt;}
.y5c{bottom:811.493333pt;}
.ya7{bottom:821.413333pt;}
.y10{bottom:826.373333pt;}
.y5b{bottom:827.493333pt;}
.ya6{bottom:837.413333pt;}
.yf{bottom:837.893333pt;}
.ye{bottom:849.253333pt;}
.y5a{bottom:851.013333pt;}
.ya5{bottom:853.413333pt;}
.yd{bottom:860.773333pt;}
.ya4{bottom:869.413333pt;}
.yc{bottom:872.293333pt;}
.y59{bottom:885.413333pt;}
.yb{bottom:889.413333pt;}
.y58{bottom:901.413333pt;}
.ya{bottom:906.373333pt;}
.y57{bottom:917.413333pt;}
.y56{bottom:933.413333pt;}
.y9{bottom:943.813333pt;}
.y55{bottom:949.413333pt;}
.y54{bottom:965.413333pt;}
.y8{bottom:971.493333pt;}
.y53{bottom:981.413333pt;}
.y7{bottom:995.973333pt;}
.y52{bottom:997.413333pt;}
.y6{bottom:1007.493333pt;}
.y51{bottom:1013.440000pt;}
.y5{bottom:1019.040000pt;}
.y50{bottom:1029.760000pt;}
.y2{bottom:1048.160000pt;}
.y1{bottom:1065.120000pt;}
.h8{height:19.648125pt;}
.h5{height:29.472187pt;}
.h2{height:30.318750pt;}
.h9{height:33.088125pt;}
.h11{height:33.515625pt;}
.h10{height:35.085938pt;}
.hb{height:37.090625pt;}
.h4{height:38.828437pt;}
.h12{height:39.562500pt;}
.ha{height:39.943750pt;}
.he{height:41.112500pt;}
.hc{height:43.782500pt;}
.hd{height:44.275000pt;}
.h3{height:44.687500pt;}
.h13{height:47.742188pt;}
.hf{height:48.125000pt;}
.h7{height:49.032500pt;}
.h6{height:72.187500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:67.199988pt;}
.x5{left:78.559988pt;}
.xd{left:86.431988pt;}
.x3{left:88.191988pt;}
.x12{left:91.231988pt;}
.x13{left:115.231988pt;}
.x7{left:131.711988pt;}
.x9{left:140.346655pt;}
.x8{left:156.826655pt;}
.x4{left:164.186655pt;}
.xb{left:169.626655pt;}
.xc{left:186.106655pt;}
.xa{left:218.266655pt;}
.x6{left:321.826655pt;}
.x2{left:389.506655pt;}
.xe{left:406.466655pt;}
.xf{left:425.693322pt;}
.x10{left:430.493322pt;}
.x11{left:454.493322pt;}
}




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