
    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_a205860a3f82a3b137e60321.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_90e1298c2587d25a634816ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_ea65330907bb05b36080aa7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006000px;}
.ls9{letter-spacing:1.488000px;}
.ls2{letter-spacing:1.494000px;}
.ls3{letter-spacing:1.500000px;}
.ls7{letter-spacing:1.506000px;}
.ls5{letter-spacing:1.512000px;}
.ls1{letter-spacing:1.518000px;}
.ls4{letter-spacing:13.500000px;}
.ls8{letter-spacing:16.266000px;}
.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;}
}
.ws4a{word-spacing:-18.300000px;}
.ws1e{word-spacing:-18.072000px;}
.ws32{word-spacing:-17.976000px;}
.ws8{word-spacing:-17.856000px;}
.ws2f{word-spacing:-17.826000px;}
.ws39{word-spacing:-17.772000px;}
.ws5e{word-spacing:-17.718000px;}
.ws60{word-spacing:-17.658000px;}
.ws49{word-spacing:-17.550000px;}
.wsb{word-spacing:-17.496000px;}
.ws18{word-spacing:-17.448000px;}
.ws4e{word-spacing:-17.382000px;}
.ws26{word-spacing:-17.292000px;}
.ws46{word-spacing:-17.178000px;}
.ws3f{word-spacing:-17.142000px;}
.wsc{word-spacing:-17.088000px;}
.ws53{word-spacing:-17.058000px;}
.ws22{word-spacing:-17.046000px;}
.ws5c{word-spacing:-17.022000px;}
.ws2e{word-spacing:-17.010000px;}
.ws3e{word-spacing:-16.962000px;}
.ws29{word-spacing:-16.956000px;}
.ws16{word-spacing:-16.878000px;}
.ws1c{word-spacing:-16.872000px;}
.ws40{word-spacing:-16.860000px;}
.ws4d{word-spacing:-16.848000px;}
.wsd{word-spacing:-16.842000px;}
.ws1f{word-spacing:-16.830000px;}
.ws35{word-spacing:-16.824000px;}
.ws42{word-spacing:-16.818000px;}
.ws38{word-spacing:-16.740000px;}
.ws3d{word-spacing:-16.728000px;}
.ws48{word-spacing:-16.668000px;}
.ws15{word-spacing:-16.650000px;}
.ws5b{word-spacing:-16.578000px;}
.ws21{word-spacing:-16.566000px;}
.ws1d{word-spacing:-16.554000px;}
.ws17{word-spacing:-16.536000px;}
.ws9{word-spacing:-16.530000px;}
.ws2d{word-spacing:-16.506000px;}
.ws1b{word-spacing:-16.500000px;}
.ws61{word-spacing:-16.464000px;}
.ws58{word-spacing:-16.446000px;}
.ws33{word-spacing:-16.422000px;}
.ws47{word-spacing:-16.398000px;}
.ws56{word-spacing:-16.374000px;}
.ws50{word-spacing:-16.302000px;}
.ws3c{word-spacing:-16.284000px;}
.ws13{word-spacing:-16.266000px;}
.ws25{word-spacing:-16.248000px;}
.ws3b{word-spacing:-16.230000px;}
.ws45{word-spacing:-16.224000px;}
.ws27{word-spacing:-16.212000px;}
.wsa{word-spacing:-16.194000px;}
.ws20{word-spacing:-16.170000px;}
.ws23{word-spacing:-16.146000px;}
.ws5f{word-spacing:-16.092000px;}
.ws4f{word-spacing:-16.074000px;}
.ws34{word-spacing:-16.056000px;}
.ws67{word-spacing:-15.852000px;}
.ws3a{word-spacing:-15.840000px;}
.ws44{word-spacing:-15.804000px;}
.ws14{word-spacing:-15.780000px;}
.wse{word-spacing:-15.726000px;}
.ws28{word-spacing:-15.720000px;}
.ws51{word-spacing:-15.642000px;}
.ws2a{word-spacing:-15.576000px;}
.ws5d{word-spacing:-15.570000px;}
.ws36{word-spacing:-15.510000px;}
.ws31{word-spacing:-15.402000px;}
.ws2c{word-spacing:-15.168000px;}
.ws30{word-spacing:-15.066000px;}
.ws37{word-spacing:-15.036000px;}
.ws59{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws68{word-spacing:-12.748500px;}
.ws6f{word-spacing:-12.645000px;}
.ws76{word-spacing:-12.541500px;}
.ws72{word-spacing:-12.492000px;}
.ws66{word-spacing:-12.100500px;}
.ws62{word-spacing:-11.911500px;}
.ws78{word-spacing:-11.835000px;}
.ws6b{word-spacing:-11.799000px;}
.ws70{word-spacing:-11.763000px;}
.ws7b{word-spacing:-11.655000px;}
.ws69{word-spacing:-11.439000px;}
.ws65{word-spacing:-11.344500px;}
.ws71{word-spacing:-11.317500px;}
.ws5a{word-spacing:-11.250000px;}
.ws74{word-spacing:-11.214000px;}
.ws73{word-spacing:-11.164500px;}
.ws77{word-spacing:-11.160000px;}
.ws63{word-spacing:-11.155500px;}
.ws6a{word-spacing:-11.088000px;}
.ws6e{word-spacing:-10.966500px;}
.ws75{word-spacing:-10.930500px;}
.ws6c{word-spacing:-10.894500px;}
.ws6d{word-spacing:-10.836000px;}
.ws7a{word-spacing:-10.795500px;}
.ws79{word-spacing:-10.705500px;}
.ws7c{word-spacing:-10.489500px;}
.ws64{word-spacing:-10.215000px;}
.ws2{word-spacing:-10.125000px;}
.ws12{word-spacing:-1.056000px;}
.ws4b{word-spacing:-0.978000px;}
.ws11{word-spacing:-0.840000px;}
.ws4c{word-spacing:-0.834000px;}
.wsf{word-spacing:-0.822000px;}
.ws1a{word-spacing:-0.768000px;}
.ws57{word-spacing:-0.762000px;}
.ws54{word-spacing:-0.642000px;}
.ws19{word-spacing:-0.618000px;}
.ws5{word-spacing:-0.600000px;}
.ws2b{word-spacing:-0.576000px;}
.ws3{word-spacing:0.000000px;}
.ws52{word-spacing:0.510000px;}
.ws4{word-spacing:0.570000px;}
.ws24{word-spacing:0.618000px;}
.ws7{word-spacing:0.648000px;}
.ws43{word-spacing:0.708000px;}
.ws41{word-spacing:0.822000px;}
.ws10{word-spacing:1.068000px;}
.ws55{word-spacing:1.248000px;}
.ws0{word-spacing:3.159000px;}
.ws6{word-spacing:35.706000px;}
._e{margin-left:-9.156000px;}
._d{margin-left:-7.395000px;}
._a{margin-left:-6.042000px;}
._7{margin-left:-4.566000px;}
._3{margin-left:-3.021000px;}
._1{margin-left:-1.482000px;}
._0{width:1.482000px;}
._2{width:3.021000px;}
._f{width:6.108000px;}
._11{width:11.061000px;}
._10{width:13.398000px;}
._9{width:16.536000px;}
._4{width:17.736000px;}
._13{width:21.256500px;}
._12{width:23.070000px;}
._c{width:46.380000px;}
._6{width:47.880000px;}
._5{width:69.012000px;}
._b{width:539.496000px;}
._8{width:1294.380000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:40.500000px;}
.fs8{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:47.911425px;}
.y4b{bottom:49.786425px;}
.y75{bottom:50.536425px;}
.ybd{bottom:53.536425px;}
.y91{bottom:66.286425px;}
.y4a{bottom:67.036425px;}
.y74{bottom:67.786425px;}
.ybc{bottom:69.286425px;}
.y90{bottom:82.036425px;}
.y49{bottom:84.286425px;}
.y73{bottom:85.036425px;}
.y1d{bottom:87.661425px;}
.y8f{bottom:97.786425px;}
.ybb{bottom:100.786425px;}
.y48{bottom:101.536425px;}
.y72{bottom:102.286425px;}
.y1c{bottom:102.661425px;}
.y8e{bottom:113.536425px;}
.yba{bottom:116.536425px;}
.y1b{bottom:117.661425px;}
.y47{bottom:118.786425px;}
.y71{bottom:119.536425px;}
.y8d{bottom:129.286425px;}
.yb9{bottom:132.286425px;}
.y1a{bottom:132.661425px;}
.y46{bottom:136.036425px;}
.y70{bottom:136.786425px;}
.y8c{bottom:145.036425px;}
.y19{bottom:147.661425px;}
.yb8{bottom:148.036425px;}
.y45{bottom:153.286425px;}
.y6f{bottom:154.036425px;}
.y8b{bottom:160.786425px;}
.y18{bottom:162.661425px;}
.yb7{bottom:163.786425px;}
.y44{bottom:170.536425px;}
.y6e{bottom:171.286425px;}
.y8a{bottom:176.536425px;}
.y17{bottom:177.661425px;}
.yb6{bottom:179.536425px;}
.y43{bottom:187.786425px;}
.y6d{bottom:188.536425px;}
.y89{bottom:192.286425px;}
.y16{bottom:192.661425px;}
.yb5{bottom:195.286425px;}
.y42{bottom:205.036425px;}
.y6c{bottom:205.786425px;}
.y15{bottom:207.661425px;}
.y88{bottom:208.036425px;}
.yb4{bottom:211.036425px;}
.y41{bottom:222.286425px;}
.y14{bottom:222.661425px;}
.y6b{bottom:223.036425px;}
.y87{bottom:223.786425px;}
.yb3{bottom:226.786425px;}
.y13{bottom:237.661425px;}
.y40{bottom:239.536425px;}
.y6a{bottom:240.286425px;}
.yb2{bottom:242.536425px;}
.y12{bottom:252.661425px;}
.y86{bottom:255.286425px;}
.y3f{bottom:256.786425px;}
.y69{bottom:257.536425px;}
.yb1{bottom:258.286425px;}
.y11{bottom:267.661425px;}
.y85{bottom:271.036425px;}
.y3e{bottom:274.036425px;}
.y68{bottom:274.786425px;}
.y84{bottom:286.786425px;}
.yb0{bottom:289.786425px;}
.y3d{bottom:291.286425px;}
.y67{bottom:292.036425px;}
.y10{bottom:297.661425px;}
.y83{bottom:302.536425px;}
.yaf{bottom:305.536425px;}
.y3c{bottom:308.536425px;}
.y66{bottom:309.286425px;}
.y79{bottom:317.911425px;}
.y82{bottom:318.286425px;}
.yae{bottom:321.286425px;}
.y3b{bottom:325.786425px;}
.y65{bottom:326.536425px;}
.yf{bottom:333.661425px;}
.y81{bottom:334.036425px;}
.yad{bottom:337.036425px;}
.y64{bottom:343.786425px;}
.ye{bottom:348.661425px;}
.y80{bottom:349.786425px;}
.y3a{bottom:351.661425px;}
.yac{bottom:352.786425px;}
.y63{bottom:361.036425px;}
.y7f{bottom:365.536425px;}
.yab{bottom:368.536425px;}
.yd{bottom:369.661425px;}
.y62{bottom:378.286425px;}
.y7e{bottom:381.286425px;}
.yaa{bottom:384.286425px;}
.yc{bottom:384.661425px;}
.y39{bottom:394.786425px;}
.y61{bottom:395.536425px;}
.y7d{bottom:397.036425px;}
.yb{bottom:399.661425px;}
.ya9{bottom:400.036425px;}
.y38{bottom:412.036425px;}
.y60{bottom:412.786425px;}
.ya{bottom:414.661425px;}
.ya8{bottom:415.786425px;}
.y7c{bottom:421.411425px;}
.y37{bottom:429.286425px;}
.y9{bottom:429.661425px;}
.y5f{bottom:430.036425px;}
.ya7{bottom:431.536425px;}
.y8{bottom:444.661425px;}
.y36{bottom:446.536425px;}
.y5e{bottom:447.286425px;}
.y7b{bottom:455.911425px;}
.y7{bottom:459.661425px;}
.ya6{bottom:463.036425px;}
.y35{bottom:463.786425px;}
.y5d{bottom:464.536425px;}
.y6{bottom:474.661425px;}
.ya5{bottom:478.786425px;}
.y5c{bottom:481.786425px;}
.y5{bottom:489.661425px;}
.ya4{bottom:494.536425px;}
.y5b{bottom:499.036425px;}
.y4{bottom:504.661425px;}
.ya3{bottom:510.286425px;}
.y5a{bottom:516.286425px;}
.y3{bottom:519.661425px;}
.ya2{bottom:526.036425px;}
.y34{bottom:527.536425px;}
.y59{bottom:533.536425px;}
.y2{bottom:534.661425px;}
.ya1{bottom:541.786425px;}
.y33{bottom:542.536425px;}
.y58{bottom:550.786425px;}
.ya0{bottom:557.536425px;}
.y32{bottom:563.536425px;}
.y1{bottom:564.661425px;}
.y57{bottom:568.036425px;}
.y9f{bottom:573.286425px;}
.y31{bottom:578.536425px;}
.y56{bottom:585.286425px;}
.y9e{bottom:589.036425px;}
.y30{bottom:593.536425px;}
.y55{bottom:602.536425px;}
.y9d{bottom:604.786425px;}
.y2f{bottom:608.536425px;}
.y54{bottom:619.786425px;}
.y9c{bottom:620.536425px;}
.y2e{bottom:623.536425px;}
.y9b{bottom:636.286425px;}
.y53{bottom:637.036425px;}
.y2d{bottom:638.536425px;}
.y9a{bottom:652.036425px;}
.y2c{bottom:653.536425px;}
.y52{bottom:654.286425px;}
.y99{bottom:667.786425px;}
.y2b{bottom:668.536425px;}
.y78{bottom:671.536425px;}
.y51{bottom:680.161425px;}
.y2a{bottom:683.536425px;}
.y77{bottom:688.786425px;}
.y7a{bottom:697.411425px;}
.y29{bottom:698.536425px;}
.y98{bottom:699.286425px;}
.y76{bottom:706.036425px;}
.y28{bottom:713.536425px;}
.y97{bottom:715.036425px;}
.y23{bottom:720.286425px;}
.y50{bottom:723.286425px;}
.y27{bottom:728.536425px;}
.y96{bottom:730.786425px;}
.y22{bottom:738.286425px;}
.y4f{bottom:740.536425px;}
.y95{bottom:746.536425px;}
.y4e{bottom:757.786425px;}
.y26{bottom:758.536425px;}
.y94{bottom:762.286425px;}
.y4d{bottom:775.036425px;}
.y93{bottom:778.036425px;}
.y21{bottom:783.286425px;}
.y4c{bottom:792.286425px;}
.y92{bottom:793.786425px;}
.y25{bottom:794.536425px;}
.y20{bottom:807.286425px;}
.y24{bottom:809.536425px;}
.y1f{bottom:858.286425px;}
.h5{height:51.216000px;}
.h4{height:57.618000px;}
.h2{height:60.819000px;}
.h3{height:61.788000px;}
.hb{height:64.020000px;}
.ha{height:65.040000px;}
.h8{height:70.422000px;}
.h9{height:71.544000px;}
.h7{height:76.824000px;}
.h6{height:102.432000px;}
.h1{height:909.750000px;}
.h0{height:910.086615px;}
.w1{width:594.750000px;}
.w0{width:594.862200px;}
.x0{left:0.000000px;}
.x1{left:50.868600px;}
.x4{left:65.493600px;}
.x3{left:73.044600px;}
.x2{left:410.868600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005333pt;}
.ls9{letter-spacing:1.322667pt;}
.ls2{letter-spacing:1.328000pt;}
.ls3{letter-spacing:1.333333pt;}
.ls7{letter-spacing:1.338667pt;}
.ls5{letter-spacing:1.344000pt;}
.ls1{letter-spacing:1.349333pt;}
.ls4{letter-spacing:12.000000pt;}
.ls8{letter-spacing:14.458667pt;}
.ws4a{word-spacing:-16.266667pt;}
.ws1e{word-spacing:-16.064000pt;}
.ws32{word-spacing:-15.978667pt;}
.ws8{word-spacing:-15.872000pt;}
.ws2f{word-spacing:-15.845333pt;}
.ws39{word-spacing:-15.797333pt;}
.ws5e{word-spacing:-15.749333pt;}
.ws60{word-spacing:-15.696000pt;}
.ws49{word-spacing:-15.600000pt;}
.wsb{word-spacing:-15.552000pt;}
.ws18{word-spacing:-15.509333pt;}
.ws4e{word-spacing:-15.450667pt;}
.ws26{word-spacing:-15.370667pt;}
.ws46{word-spacing:-15.269333pt;}
.ws3f{word-spacing:-15.237333pt;}
.wsc{word-spacing:-15.189333pt;}
.ws53{word-spacing:-15.162667pt;}
.ws22{word-spacing:-15.152000pt;}
.ws5c{word-spacing:-15.130667pt;}
.ws2e{word-spacing:-15.120000pt;}
.ws3e{word-spacing:-15.077333pt;}
.ws29{word-spacing:-15.072000pt;}
.ws16{word-spacing:-15.002667pt;}
.ws1c{word-spacing:-14.997333pt;}
.ws40{word-spacing:-14.986667pt;}
.ws4d{word-spacing:-14.976000pt;}
.wsd{word-spacing:-14.970667pt;}
.ws1f{word-spacing:-14.960000pt;}
.ws35{word-spacing:-14.954667pt;}
.ws42{word-spacing:-14.949333pt;}
.ws38{word-spacing:-14.880000pt;}
.ws3d{word-spacing:-14.869333pt;}
.ws48{word-spacing:-14.816000pt;}
.ws15{word-spacing:-14.800000pt;}
.ws5b{word-spacing:-14.736000pt;}
.ws21{word-spacing:-14.725333pt;}
.ws1d{word-spacing:-14.714667pt;}
.ws17{word-spacing:-14.698667pt;}
.ws9{word-spacing:-14.693333pt;}
.ws2d{word-spacing:-14.672000pt;}
.ws1b{word-spacing:-14.666667pt;}
.ws61{word-spacing:-14.634667pt;}
.ws58{word-spacing:-14.618667pt;}
.ws33{word-spacing:-14.597333pt;}
.ws47{word-spacing:-14.576000pt;}
.ws56{word-spacing:-14.554667pt;}
.ws50{word-spacing:-14.490667pt;}
.ws3c{word-spacing:-14.474667pt;}
.ws13{word-spacing:-14.458667pt;}
.ws25{word-spacing:-14.442667pt;}
.ws3b{word-spacing:-14.426667pt;}
.ws45{word-spacing:-14.421333pt;}
.ws27{word-spacing:-14.410667pt;}
.wsa{word-spacing:-14.394667pt;}
.ws20{word-spacing:-14.373333pt;}
.ws23{word-spacing:-14.352000pt;}
.ws5f{word-spacing:-14.304000pt;}
.ws4f{word-spacing:-14.288000pt;}
.ws34{word-spacing:-14.272000pt;}
.ws67{word-spacing:-14.090667pt;}
.ws3a{word-spacing:-14.080000pt;}
.ws44{word-spacing:-14.048000pt;}
.ws14{word-spacing:-14.026667pt;}
.wse{word-spacing:-13.978667pt;}
.ws28{word-spacing:-13.973333pt;}
.ws51{word-spacing:-13.904000pt;}
.ws2a{word-spacing:-13.845333pt;}
.ws5d{word-spacing:-13.840000pt;}
.ws36{word-spacing:-13.786667pt;}
.ws31{word-spacing:-13.690667pt;}
.ws2c{word-spacing:-13.482667pt;}
.ws30{word-spacing:-13.392000pt;}
.ws37{word-spacing:-13.365333pt;}
.ws59{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws68{word-spacing:-11.332000pt;}
.ws6f{word-spacing:-11.240000pt;}
.ws76{word-spacing:-11.148000pt;}
.ws72{word-spacing:-11.104000pt;}
.ws66{word-spacing:-10.756000pt;}
.ws62{word-spacing:-10.588000pt;}
.ws78{word-spacing:-10.520000pt;}
.ws6b{word-spacing:-10.488000pt;}
.ws70{word-spacing:-10.456000pt;}
.ws7b{word-spacing:-10.360000pt;}
.ws69{word-spacing:-10.168000pt;}
.ws65{word-spacing:-10.084000pt;}
.ws71{word-spacing:-10.060000pt;}
.ws5a{word-spacing:-10.000000pt;}
.ws74{word-spacing:-9.968000pt;}
.ws73{word-spacing:-9.924000pt;}
.ws77{word-spacing:-9.920000pt;}
.ws63{word-spacing:-9.916000pt;}
.ws6a{word-spacing:-9.856000pt;}
.ws6e{word-spacing:-9.748000pt;}
.ws75{word-spacing:-9.716000pt;}
.ws6c{word-spacing:-9.684000pt;}
.ws6d{word-spacing:-9.632000pt;}
.ws7a{word-spacing:-9.596000pt;}
.ws79{word-spacing:-9.516000pt;}
.ws7c{word-spacing:-9.324000pt;}
.ws64{word-spacing:-9.080000pt;}
.ws2{word-spacing:-9.000000pt;}
.ws12{word-spacing:-0.938667pt;}
.ws4b{word-spacing:-0.869333pt;}
.ws11{word-spacing:-0.746667pt;}
.ws4c{word-spacing:-0.741333pt;}
.wsf{word-spacing:-0.730667pt;}
.ws1a{word-spacing:-0.682667pt;}
.ws57{word-spacing:-0.677333pt;}
.ws54{word-spacing:-0.570667pt;}
.ws19{word-spacing:-0.549333pt;}
.ws5{word-spacing:-0.533333pt;}
.ws2b{word-spacing:-0.512000pt;}
.ws3{word-spacing:0.000000pt;}
.ws52{word-spacing:0.453333pt;}
.ws4{word-spacing:0.506667pt;}
.ws24{word-spacing:0.549333pt;}
.ws7{word-spacing:0.576000pt;}
.ws43{word-spacing:0.629333pt;}
.ws41{word-spacing:0.730667pt;}
.ws10{word-spacing:0.949333pt;}
.ws55{word-spacing:1.109333pt;}
.ws0{word-spacing:2.808000pt;}
.ws6{word-spacing:31.738667pt;}
._e{margin-left:-8.138667pt;}
._d{margin-left:-6.573333pt;}
._a{margin-left:-5.370667pt;}
._7{margin-left:-4.058667pt;}
._3{margin-left:-2.685333pt;}
._1{margin-left:-1.317333pt;}
._0{width:1.317333pt;}
._2{width:2.685333pt;}
._f{width:5.429333pt;}
._11{width:9.832000pt;}
._10{width:11.909333pt;}
._9{width:14.698667pt;}
._4{width:15.765333pt;}
._13{width:18.894667pt;}
._12{width:20.506667pt;}
._c{width:41.226667pt;}
._6{width:42.560000pt;}
._5{width:61.344000pt;}
._b{width:479.552000pt;}
._8{width:1150.560000pt;}
.fs2{font-size:36.000000pt;}
.fs8{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:42.587933pt;}
.y4b{bottom:44.254600pt;}
.y75{bottom:44.921267pt;}
.ybd{bottom:47.587933pt;}
.y91{bottom:58.921267pt;}
.y4a{bottom:59.587933pt;}
.y74{bottom:60.254600pt;}
.ybc{bottom:61.587933pt;}
.y90{bottom:72.921267pt;}
.y49{bottom:74.921267pt;}
.y73{bottom:75.587933pt;}
.y1d{bottom:77.921267pt;}
.y8f{bottom:86.921267pt;}
.ybb{bottom:89.587933pt;}
.y48{bottom:90.254600pt;}
.y72{bottom:90.921267pt;}
.y1c{bottom:91.254600pt;}
.y8e{bottom:100.921267pt;}
.yba{bottom:103.587933pt;}
.y1b{bottom:104.587933pt;}
.y47{bottom:105.587933pt;}
.y71{bottom:106.254600pt;}
.y8d{bottom:114.921267pt;}
.yb9{bottom:117.587933pt;}
.y1a{bottom:117.921267pt;}
.y46{bottom:120.921267pt;}
.y70{bottom:121.587933pt;}
.y8c{bottom:128.921267pt;}
.y19{bottom:131.254600pt;}
.yb8{bottom:131.587933pt;}
.y45{bottom:136.254600pt;}
.y6f{bottom:136.921267pt;}
.y8b{bottom:142.921267pt;}
.y18{bottom:144.587933pt;}
.yb7{bottom:145.587933pt;}
.y44{bottom:151.587933pt;}
.y6e{bottom:152.254600pt;}
.y8a{bottom:156.921267pt;}
.y17{bottom:157.921267pt;}
.yb6{bottom:159.587933pt;}
.y43{bottom:166.921267pt;}
.y6d{bottom:167.587933pt;}
.y89{bottom:170.921267pt;}
.y16{bottom:171.254600pt;}
.yb5{bottom:173.587933pt;}
.y42{bottom:182.254600pt;}
.y6c{bottom:182.921267pt;}
.y15{bottom:184.587933pt;}
.y88{bottom:184.921267pt;}
.yb4{bottom:187.587933pt;}
.y41{bottom:197.587933pt;}
.y14{bottom:197.921267pt;}
.y6b{bottom:198.254600pt;}
.y87{bottom:198.921267pt;}
.yb3{bottom:201.587933pt;}
.y13{bottom:211.254600pt;}
.y40{bottom:212.921267pt;}
.y6a{bottom:213.587933pt;}
.yb2{bottom:215.587933pt;}
.y12{bottom:224.587933pt;}
.y86{bottom:226.921267pt;}
.y3f{bottom:228.254600pt;}
.y69{bottom:228.921267pt;}
.yb1{bottom:229.587933pt;}
.y11{bottom:237.921267pt;}
.y85{bottom:240.921267pt;}
.y3e{bottom:243.587933pt;}
.y68{bottom:244.254600pt;}
.y84{bottom:254.921267pt;}
.yb0{bottom:257.587933pt;}
.y3d{bottom:258.921267pt;}
.y67{bottom:259.587933pt;}
.y10{bottom:264.587933pt;}
.y83{bottom:268.921267pt;}
.yaf{bottom:271.587933pt;}
.y3c{bottom:274.254600pt;}
.y66{bottom:274.921267pt;}
.y79{bottom:282.587933pt;}
.y82{bottom:282.921267pt;}
.yae{bottom:285.587933pt;}
.y3b{bottom:289.587933pt;}
.y65{bottom:290.254600pt;}
.yf{bottom:296.587933pt;}
.y81{bottom:296.921267pt;}
.yad{bottom:299.587933pt;}
.y64{bottom:305.587933pt;}
.ye{bottom:309.921267pt;}
.y80{bottom:310.921267pt;}
.y3a{bottom:312.587933pt;}
.yac{bottom:313.587933pt;}
.y63{bottom:320.921267pt;}
.y7f{bottom:324.921267pt;}
.yab{bottom:327.587933pt;}
.yd{bottom:328.587933pt;}
.y62{bottom:336.254600pt;}
.y7e{bottom:338.921267pt;}
.yaa{bottom:341.587933pt;}
.yc{bottom:341.921267pt;}
.y39{bottom:350.921267pt;}
.y61{bottom:351.587933pt;}
.y7d{bottom:352.921267pt;}
.yb{bottom:355.254600pt;}
.ya9{bottom:355.587933pt;}
.y38{bottom:366.254600pt;}
.y60{bottom:366.921267pt;}
.ya{bottom:368.587933pt;}
.ya8{bottom:369.587933pt;}
.y7c{bottom:374.587933pt;}
.y37{bottom:381.587933pt;}
.y9{bottom:381.921267pt;}
.y5f{bottom:382.254600pt;}
.ya7{bottom:383.587933pt;}
.y8{bottom:395.254600pt;}
.y36{bottom:396.921267pt;}
.y5e{bottom:397.587933pt;}
.y7b{bottom:405.254600pt;}
.y7{bottom:408.587933pt;}
.ya6{bottom:411.587933pt;}
.y35{bottom:412.254600pt;}
.y5d{bottom:412.921267pt;}
.y6{bottom:421.921267pt;}
.ya5{bottom:425.587933pt;}
.y5c{bottom:428.254600pt;}
.y5{bottom:435.254600pt;}
.ya4{bottom:439.587933pt;}
.y5b{bottom:443.587933pt;}
.y4{bottom:448.587933pt;}
.ya3{bottom:453.587933pt;}
.y5a{bottom:458.921267pt;}
.y3{bottom:461.921267pt;}
.ya2{bottom:467.587933pt;}
.y34{bottom:468.921267pt;}
.y59{bottom:474.254600pt;}
.y2{bottom:475.254600pt;}
.ya1{bottom:481.587933pt;}
.y33{bottom:482.254600pt;}
.y58{bottom:489.587933pt;}
.ya0{bottom:495.587933pt;}
.y32{bottom:500.921267pt;}
.y1{bottom:501.921267pt;}
.y57{bottom:504.921267pt;}
.y9f{bottom:509.587933pt;}
.y31{bottom:514.254600pt;}
.y56{bottom:520.254600pt;}
.y9e{bottom:523.587933pt;}
.y30{bottom:527.587933pt;}
.y55{bottom:535.587933pt;}
.y9d{bottom:537.587933pt;}
.y2f{bottom:540.921267pt;}
.y54{bottom:550.921267pt;}
.y9c{bottom:551.587933pt;}
.y2e{bottom:554.254600pt;}
.y9b{bottom:565.587933pt;}
.y53{bottom:566.254600pt;}
.y2d{bottom:567.587933pt;}
.y9a{bottom:579.587933pt;}
.y2c{bottom:580.921267pt;}
.y52{bottom:581.587933pt;}
.y99{bottom:593.587933pt;}
.y2b{bottom:594.254600pt;}
.y78{bottom:596.921267pt;}
.y51{bottom:604.587933pt;}
.y2a{bottom:607.587933pt;}
.y77{bottom:612.254600pt;}
.y7a{bottom:619.921267pt;}
.y29{bottom:620.921267pt;}
.y98{bottom:621.587933pt;}
.y76{bottom:627.587933pt;}
.y28{bottom:634.254600pt;}
.y97{bottom:635.587933pt;}
.y23{bottom:640.254600pt;}
.y50{bottom:642.921267pt;}
.y27{bottom:647.587933pt;}
.y96{bottom:649.587933pt;}
.y22{bottom:656.254600pt;}
.y4f{bottom:658.254600pt;}
.y95{bottom:663.587933pt;}
.y4e{bottom:673.587933pt;}
.y26{bottom:674.254600pt;}
.y94{bottom:677.587933pt;}
.y4d{bottom:688.921267pt;}
.y93{bottom:691.587933pt;}
.y21{bottom:696.254600pt;}
.y4c{bottom:704.254600pt;}
.y92{bottom:705.587933pt;}
.y25{bottom:706.254600pt;}
.y20{bottom:717.587933pt;}
.y24{bottom:719.587933pt;}
.y1f{bottom:762.921267pt;}
.h5{height:45.525333pt;}
.h4{height:51.216000pt;}
.h2{height:54.061333pt;}
.h3{height:54.922667pt;}
.hb{height:56.906667pt;}
.ha{height:57.813333pt;}
.h8{height:62.597333pt;}
.h9{height:63.594667pt;}
.h7{height:68.288000pt;}
.h6{height:91.050667pt;}
.h1{height:808.666667pt;}
.h0{height:808.965880pt;}
.w1{width:528.666667pt;}
.w0{width:528.766400pt;}
.x0{left:0.000000pt;}
.x1{left:45.216533pt;}
.x4{left:58.216533pt;}
.x3{left:64.928533pt;}
.x2{left:365.216533pt;}
}




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