
    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_0e849f4be70a6782b10f6510.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_fbac1f9c9702d1ef3e216cd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_7a18640aeb838db81a5ecc37.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_c227668d96963e6ba667ea2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_b1e9531accc837380520b0b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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;}
.v1{vertical-align:23.766000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.212400px;}
.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;}
}
.ws0{word-spacing:-63.071100px;}
.ws58{word-spacing:-56.156400px;}
.ws9{word-spacing:-55.944000px;}
.ws15{word-spacing:-38.853300px;}
.ws8{word-spacing:-38.668200px;}
.ws34{word-spacing:-38.439900px;}
.ws6{word-spacing:-38.433600px;}
.ws2d{word-spacing:-38.433000px;}
.ws39{word-spacing:-38.426700px;}
.ws3e{word-spacing:-38.371500px;}
.ws49{word-spacing:-38.368800px;}
.ws9c{word-spacing:-38.288700px;}
.wsa{word-spacing:-38.160000px;}
.wse{word-spacing:-38.154600px;}
.ws94{word-spacing:-38.154000px;}
.ws73{word-spacing:-38.148600px;}
.ws8a{word-spacing:-38.145900px;}
.ws78{word-spacing:-38.145600px;}
.ws1d{word-spacing:-38.145000px;}
.ws7{word-spacing:-38.143800px;}
.ws24{word-spacing:-38.136900px;}
.ws5{word-spacing:-37.947300px;}
.ws18{word-spacing:-37.944000px;}
.ws23{word-spacing:-37.936800px;}
.ws5a{word-spacing:-37.935600px;}
.ws95{word-spacing:-37.932300px;}
.ws57{word-spacing:-37.931400px;}
.ws9a{word-spacing:-37.930800px;}
.ws3a{word-spacing:-37.929600px;}
.ws3{word-spacing:-37.927800px;}
.ws74{word-spacing:-37.925400px;}
.ws11{word-spacing:-37.907400px;}
.ws65{word-spacing:-37.727700px;}
.ws2a{word-spacing:-37.722600px;}
.ws50{word-spacing:-37.715700px;}
.ws4{word-spacing:-37.711800px;}
.ws37{word-spacing:-37.704600px;}
.ws16{word-spacing:-37.440000px;}
.ws33{word-spacing:-37.436400px;}
.ws7a{word-spacing:-37.434600px;}
.ws17{word-spacing:-37.224000px;}
.ws8e{word-spacing:-37.215000px;}
.ws8c{word-spacing:-36.714600px;}
.ws7d{word-spacing:-36.499200px;}
.ws2e{word-spacing:-36.482400px;}
.ws28{word-spacing:-36.363600px;}
.ws83{word-spacing:-36.000000px;}
.ws7e{word-spacing:-35.994600px;}
.ws80{word-spacing:-35.991900px;}
.ws98{word-spacing:-35.986500px;}
.ws29{word-spacing:-35.784000px;}
.ws81{word-spacing:-35.767200px;}
.ws96{word-spacing:-35.423700px;}
.ws27{word-spacing:-35.060400px;}
.ws22{word-spacing:-34.554600px;}
.ws75{word-spacing:-34.328700px;}
.ws1a{word-spacing:-34.264800px;}
.ws7c{word-spacing:-33.834000px;}
.ws19{word-spacing:-33.815100px;}
.ws2c{word-spacing:-33.611400px;}
.ws2{word-spacing:-33.547800px;}
.ws8b{word-spacing:-33.120000px;}
.ws79{word-spacing:-32.400000px;}
.ws88{word-spacing:-32.175000px;}
.ws52{word-spacing:-31.464000px;}
.ws91{word-spacing:-30.240000px;}
.ws1c{word-spacing:-30.233400px;}
.ws99{word-spacing:-29.078400px;}
.ws7f{word-spacing:-28.800000px;}
.ws21{word-spacing:-28.571400px;}
.ws86{word-spacing:-28.074600px;}
.ws26{word-spacing:-27.860100px;}
.ws13{word-spacing:-27.857700px;}
.ws85{word-spacing:-27.854400px;}
.ws7b{word-spacing:-27.354600px;}
.ws12{word-spacing:-27.341100px;}
.ws93{word-spacing:-26.634600px;}
.ws10{word-spacing:-25.691400px;}
.wsf{word-spacing:-25.185900px;}
.ws1b{word-spacing:-24.982200px;}
.ws36{word-spacing:-24.256800px;}
.ws82{word-spacing:-24.248100px;}
.ws92{word-spacing:-23.034600px;}
.ws89{word-spacing:-21.591900px;}
.ws8f{word-spacing:-20.880000px;}
.ws1f{word-spacing:-20.659200px;}
.ws77{word-spacing:-20.150400px;}
.ws35{word-spacing:-19.944000px;}
.ws2f{word-spacing:-19.721700px;}
.ws87{word-spacing:-19.434000px;}
.ws30{word-spacing:-19.213200px;}
.ws20{word-spacing:-18.992700px;}
.ws32{word-spacing:-17.773200px;}
.ws97{word-spacing:-17.061300px;}
.ws61{word-spacing:-16.841700px;}
.ws45{word-spacing:-16.835700px;}
.ws25{word-spacing:-16.554600px;}
.ws90{word-spacing:-16.115400px;}
.wsc{word-spacing:-15.614400px;}
.wsb{word-spacing:-15.095100px;}
.ws6e{word-spacing:-14.900100px;}
.ws2b{word-spacing:-14.882400px;}
.ws51{word-spacing:-13.470000px;}
.ws6a{word-spacing:-12.744000px;}
.wsd{word-spacing:-12.730500px;}
.ws5c{word-spacing:-12.024000px;}
.ws56{word-spacing:-12.014100px;}
.ws4b{word-spacing:-11.304000px;}
.ws3c{word-spacing:-11.298000px;}
.ws84{word-spacing:-7.200000px;}
.ws71{word-spacing:-5.253300px;}
.ws8d{word-spacing:-4.822200px;}
.ws4e{word-spacing:-4.533300px;}
.ws41{word-spacing:-4.527300px;}
.ws4d{word-spacing:-4.094100px;}
.ws55{word-spacing:-3.813300px;}
.ws68{word-spacing:-3.807300px;}
.ws67{word-spacing:-3.374100px;}
.ws76{word-spacing:-2.640000px;}
.ws38{word-spacing:-2.152800px;}
.ws59{word-spacing:0.000000px;}
.ws9b{word-spacing:0.074700px;}
.ws72{word-spacing:0.951900px;}
.ws14{word-spacing:4.337700px;}
.ws31{word-spacing:7.272000px;}
.ws1e{word-spacing:12.268500px;}
.ws5d{word-spacing:23.976000px;}
.ws4c{word-spacing:24.696000px;}
.ws3f{word-spacing:24.702000px;}
.ws43{word-spacing:30.456000px;}
.ws6f{word-spacing:38.667900px;}
.ws40{word-spacing:39.393900px;}
.ws53{word-spacing:40.107900px;}
.ws5e{word-spacing:40.111200px;}
.ws66{word-spacing:40.119900px;}
.ws70{word-spacing:51.342300px;}
.ws54{word-spacing:52.782300px;}
.ws69{word-spacing:59.259600px;}
.ws5b{word-spacing:59.973600px;}
.ws4a{word-spacing:59.979600px;}
.ws3b{word-spacing:59.985600px;}
.ws4f{word-spacing:60.699600px;}
.ws46{word-spacing:66.456000px;}
.ws63{word-spacing:74.598300px;}
.ws48{word-spacing:74.604300px;}
.ws6c{word-spacing:75.388500px;}
.ws62{word-spacing:81.867900px;}
.ws47{word-spacing:81.879900px;}
.ws6d{word-spacing:98.859600px;}
.ws5f{word-spacing:102.459600px;}
.ws42{word-spacing:102.465600px;}
.ws6b{word-spacing:110.602800px;}
.ws3d{word-spacing:112.042800px;}
.ws64{word-spacing:112.768800px;}
.ws60{word-spacing:153.802800px;}
.ws44{word-spacing:154.528800px;}
.ws1{word-spacing:1807.277400px;}
._2{margin-left:-1.443600px;}
._0{width:1.148400px;}
._13{width:17.502000px;}
._1{width:18.936000px;}
._16{width:20.161800px;}
._e{width:21.166800px;}
._9{width:23.093100px;}
._12{width:24.774000px;}
._14{width:27.502800px;}
._6{width:29.363100px;}
._5{width:31.619400px;}
._10{width:33.248400px;}
._b{width:36.294000px;}
._c{width:38.199300px;}
._d{width:40.662000px;}
._3{width:41.935500px;}
._4{width:44.214000px;}
._15{width:50.406000px;}
._11{width:54.414000px;}
._17{width:57.793200px;}
._7{width:61.416000px;}
._8{width:62.542200px;}
._a{width:69.461100px;}
._f{width:110.815200px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs3{font-size:46.800000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.780000px;}
.y87{bottom:3.796500px;}
.y5b{bottom:3.825000px;}
.y63{bottom:3.855000px;}
.y39{bottom:3.886500px;}
.y44{bottom:3.915000px;}
.y55{bottom:3.945000px;}
.y6a{bottom:3.946500px;}
.y58{bottom:3.975000px;}
.y4{bottom:4.471500px;}
.y93{bottom:4.711500px;}
.y73{bottom:4.815000px;}
.y67{bottom:14.175000px;}
.y8c{bottom:14.205000px;}
.y59{bottom:14.236500px;}
.y5c{bottom:14.265000px;}
.y70{bottom:14.296500px;}
.y66{bottom:14.325000px;}
.y4e{bottom:14.355000px;}
.y74{bottom:15.075000px;}
.y91{bottom:15.150000px;}
.y69{bottom:24.465000px;}
.y57{bottom:24.495000px;}
.y6c{bottom:24.496500px;}
.y5a{bottom:24.525000px;}
.y62{bottom:24.555000px;}
.y65{bottom:24.586500px;}
.y43{bottom:24.615000px;}
.y85{bottom:24.645000px;}
.y54{bottom:24.646500px;}
.y72{bottom:25.336500px;}
.y92{bottom:25.411500px;}
.y6f{bottom:34.996500px;}
.y4d{bottom:35.055000px;}
.y53{bottom:45.165000px;}
.y61{bottom:45.255000px;}
.y40{bottom:45.315000px;}
.y4c{bottom:55.755000px;}
.y83{bottom:56.386500px;}
.y5f{bottom:56.475000px;}
.y51{bottom:56.565000px;}
.y3f{bottom:66.015000px;}
.y3{bottom:72.825000px;}
.y4b{bottom:76.455000px;}
.y50{bottom:77.086500px;}
.y5e{bottom:77.175000px;}
.y3e{bottom:86.715000px;}
.y4a{bottom:97.155000px;}
.y77{bottom:105.015000px;}
.y3d{bottom:107.415000px;}
.y37{bottom:107.775000px;}
.y33{bottom:115.455000px;}
.y49{bottom:117.855000px;}
.y7a{bottom:118.290000px;}
.y76{bottom:125.715000px;}
.y3c{bottom:128.115000px;}
.y36{bottom:128.475000px;}
.y32{bottom:136.155000px;}
.y48{bottom:138.555000px;}
.y79{bottom:138.811500px;}
.y75{bottom:146.415000px;}
.y3b{bottom:148.815000px;}
.y31{bottom:156.855000px;}
.y47{bottom:159.255000px;}
.y71{bottom:163.200000px;}
.y9e{bottom:167.115000px;}
.y3a{bottom:169.515000px;}
.y30{bottom:177.555000px;}
.y7e{bottom:179.775000px;}
.y46{bottom:179.955000px;}
.y9d{bottom:187.815000px;}
.y42{bottom:190.215000px;}
.y2f{bottom:198.255000px;}
.y45{bottom:200.475000px;}
.y80{bottom:200.655000px;}
.y6e{bottom:206.100000px;}
.y9c{bottom:208.515000px;}
.y41{bottom:210.915000px;}
.y2e{bottom:218.955000px;}
.y7f{bottom:221.175000px;}
.y9b{bottom:229.215000px;}
.y81{bottom:231.615000px;}
.y2d{bottom:239.655000px;}
.y9a{bottom:249.915000px;}
.y2c{bottom:260.355000px;}
.y6d{bottom:268.950000px;}
.y99{bottom:270.615000px;}
.y2b{bottom:281.055000px;}
.y98{bottom:291.315000px;}
.y2a{bottom:301.755000px;}
.y6b{bottom:311.100000px;}
.y97{bottom:312.015000px;}
.y29{bottom:322.455000px;}
.y96{bottom:332.715000px;}
.y28{bottom:343.155000px;}
.y68{bottom:353.250000px;}
.y95{bottom:353.415000px;}
.y27{bottom:363.855000px;}
.y94{bottom:374.115000px;}
.y26{bottom:384.555000px;}
.y5d{bottom:395.400000px;}
.y25{bottom:405.255000px;}
.y90{bottom:411.525000px;}
.y24{bottom:425.955000px;}
.y64{bottom:437.550000px;}
.y23{bottom:446.655000px;}
.y8f{bottom:454.500000px;}
.y22{bottom:467.355000px;}
.y60{bottom:479.700000px;}
.y21{bottom:488.055000px;}
.y20{bottom:508.755000px;}
.y8e{bottom:517.350000px;}
.y1f{bottom:529.455000px;}
.y4f{bottom:542.550000px;}
.ya0{bottom:550.155000px;}
.y8d{bottom:559.500000px;}
.y1e{bottom:570.855000px;}
.y8b{bottom:580.950000px;}
.y56{bottom:584.700000px;}
.y1d{bottom:591.555000px;}
.y1c{bottom:612.255000px;}
.y88{bottom:623.100000px;}
.y52{bottom:626.850000px;}
.y1b{bottom:632.955000px;}
.y1a{bottom:653.655000px;}
.y8a{bottom:665.250000px;}
.y19{bottom:674.355000px;}
.y89{bottom:686.700000px;}
.y35{bottom:689.700000px;}
.y18{bottom:695.055000px;}
.y17{bottom:715.755000px;}
.y16{bottom:736.455000px;}
.y82{bottom:749.550000px;}
.y15{bottom:757.155000px;}
.y14{bottom:777.855000px;}
.y86{bottom:791.700000px;}
.y13{bottom:798.555000px;}
.y84{bottom:813.150000px;}
.y12{bottom:819.255000px;}
.y11{bottom:839.955000px;}
.y10{bottom:860.655000px;}
.y78{bottom:875.925000px;}
.y7d{bottom:876.000000px;}
.y9f{bottom:881.355000px;}
.yf{bottom:902.055000px;}
.y38{bottom:918.150000px;}
.ye{bottom:922.755000px;}
.yd{bottom:943.455000px;}
.yc{bottom:964.155000px;}
.yb{bottom:984.855000px;}
.ya{bottom:1005.555000px;}
.y9{bottom:1026.255000px;}
.y8{bottom:1046.955000px;}
.y7{bottom:1067.655000px;}
.y34{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y7b{bottom:1125.075000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.ha{height:21.375000px;}
.he{height:42.075000px;}
.hf{height:42.900000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.h8{height:56.283773px;}
.hd{height:62.775000px;}
.h2{height:97.101563px;}
.h12{height:126.375000px;}
.hc{height:147.075000px;}
.hb{height:228.375000px;}
.h11{height:249.075000px;}
.h9{height:249.825000px;}
.h10{height:270.525000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w3{width:29.625000px;}
.w9{width:30.675000px;}
.wc{width:74.325000px;}
.w6{width:78.525000px;}
.we{width:115.050000px;}
.w7{width:115.350000px;}
.wd{width:115.500000px;}
.w4{width:119.775000px;}
.wa{width:123.075000px;}
.w8{width:125.850000px;}
.wb{width:545.775000px;}
.w5{width:550.125000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.113500px;}
.xf{left:130.125000px;}
.xe{left:138.238500px;}
.x1{left:153.000000px;}
.x2{left:154.080000px;}
.x11{left:159.675000px;}
.x4{left:161.460000px;}
.x12{left:279.375000px;}
.x17{left:283.725000px;}
.x13{left:357.825000px;}
.x5{left:376.380000px;}
.x14{left:473.100000px;}
.x3{left:475.350000px;}
.xb{left:479.700000px;}
.x15{left:598.875000px;}
.x8{left:639.180000px;}
.x6{left:689.760000px;}
.x7{left:696.780000px;}
.xc{left:698.760000px;}
.x16{left:714.150000px;}
.x9{left:730.800000px;}
.xa{left:762.300000px;}
.xd{left:777.238500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.125333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.188800pt;}
.ws0{word-spacing:-56.063200pt;}
.ws58{word-spacing:-49.916800pt;}
.ws9{word-spacing:-49.728000pt;}
.ws15{word-spacing:-34.536267pt;}
.ws8{word-spacing:-34.371733pt;}
.ws34{word-spacing:-34.168800pt;}
.ws6{word-spacing:-34.163200pt;}
.ws2d{word-spacing:-34.162667pt;}
.ws39{word-spacing:-34.157067pt;}
.ws3e{word-spacing:-34.108000pt;}
.ws49{word-spacing:-34.105600pt;}
.ws9c{word-spacing:-34.034400pt;}
.wsa{word-spacing:-33.920000pt;}
.wse{word-spacing:-33.915200pt;}
.ws94{word-spacing:-33.914667pt;}
.ws73{word-spacing:-33.909867pt;}
.ws8a{word-spacing:-33.907467pt;}
.ws78{word-spacing:-33.907200pt;}
.ws1d{word-spacing:-33.906667pt;}
.ws7{word-spacing:-33.905600pt;}
.ws24{word-spacing:-33.899467pt;}
.ws5{word-spacing:-33.730933pt;}
.ws18{word-spacing:-33.728000pt;}
.ws23{word-spacing:-33.721600pt;}
.ws5a{word-spacing:-33.720533pt;}
.ws95{word-spacing:-33.717600pt;}
.ws57{word-spacing:-33.716800pt;}
.ws9a{word-spacing:-33.716267pt;}
.ws3a{word-spacing:-33.715200pt;}
.ws3{word-spacing:-33.713600pt;}
.ws74{word-spacing:-33.711467pt;}
.ws11{word-spacing:-33.695467pt;}
.ws65{word-spacing:-33.535733pt;}
.ws2a{word-spacing:-33.531200pt;}
.ws50{word-spacing:-33.525067pt;}
.ws4{word-spacing:-33.521600pt;}
.ws37{word-spacing:-33.515200pt;}
.ws16{word-spacing:-33.280000pt;}
.ws33{word-spacing:-33.276800pt;}
.ws7a{word-spacing:-33.275200pt;}
.ws17{word-spacing:-33.088000pt;}
.ws8e{word-spacing:-33.080000pt;}
.ws8c{word-spacing:-32.635200pt;}
.ws7d{word-spacing:-32.443733pt;}
.ws2e{word-spacing:-32.428800pt;}
.ws28{word-spacing:-32.323200pt;}
.ws83{word-spacing:-32.000000pt;}
.ws7e{word-spacing:-31.995200pt;}
.ws80{word-spacing:-31.992800pt;}
.ws98{word-spacing:-31.988000pt;}
.ws29{word-spacing:-31.808000pt;}
.ws81{word-spacing:-31.793067pt;}
.ws96{word-spacing:-31.487733pt;}
.ws27{word-spacing:-31.164800pt;}
.ws22{word-spacing:-30.715200pt;}
.ws75{word-spacing:-30.514400pt;}
.ws1a{word-spacing:-30.457600pt;}
.ws7c{word-spacing:-30.074667pt;}
.ws19{word-spacing:-30.057867pt;}
.ws2c{word-spacing:-29.876800pt;}
.ws2{word-spacing:-29.820267pt;}
.ws8b{word-spacing:-29.440000pt;}
.ws79{word-spacing:-28.800000pt;}
.ws88{word-spacing:-28.600000pt;}
.ws52{word-spacing:-27.968000pt;}
.ws91{word-spacing:-26.880000pt;}
.ws1c{word-spacing:-26.874133pt;}
.ws99{word-spacing:-25.847467pt;}
.ws7f{word-spacing:-25.600000pt;}
.ws21{word-spacing:-25.396800pt;}
.ws86{word-spacing:-24.955200pt;}
.ws26{word-spacing:-24.764533pt;}
.ws13{word-spacing:-24.762400pt;}
.ws85{word-spacing:-24.759467pt;}
.ws7b{word-spacing:-24.315200pt;}
.ws12{word-spacing:-24.303200pt;}
.ws93{word-spacing:-23.675200pt;}
.ws10{word-spacing:-22.836800pt;}
.wsf{word-spacing:-22.387467pt;}
.ws1b{word-spacing:-22.206400pt;}
.ws36{word-spacing:-21.561600pt;}
.ws82{word-spacing:-21.553867pt;}
.ws92{word-spacing:-20.475200pt;}
.ws89{word-spacing:-19.192800pt;}
.ws8f{word-spacing:-18.560000pt;}
.ws1f{word-spacing:-18.363733pt;}
.ws77{word-spacing:-17.911467pt;}
.ws35{word-spacing:-17.728000pt;}
.ws2f{word-spacing:-17.530400pt;}
.ws87{word-spacing:-17.274667pt;}
.ws30{word-spacing:-17.078400pt;}
.ws20{word-spacing:-16.882400pt;}
.ws32{word-spacing:-15.798400pt;}
.ws97{word-spacing:-15.165600pt;}
.ws61{word-spacing:-14.970400pt;}
.ws45{word-spacing:-14.965067pt;}
.ws25{word-spacing:-14.715200pt;}
.ws90{word-spacing:-14.324800pt;}
.wsc{word-spacing:-13.879467pt;}
.wsb{word-spacing:-13.417867pt;}
.ws6e{word-spacing:-13.244533pt;}
.ws2b{word-spacing:-13.228800pt;}
.ws51{word-spacing:-11.973333pt;}
.ws6a{word-spacing:-11.328000pt;}
.wsd{word-spacing:-11.316000pt;}
.ws5c{word-spacing:-10.688000pt;}
.ws56{word-spacing:-10.679200pt;}
.ws4b{word-spacing:-10.048000pt;}
.ws3c{word-spacing:-10.042667pt;}
.ws84{word-spacing:-6.400000pt;}
.ws71{word-spacing:-4.669600pt;}
.ws8d{word-spacing:-4.286400pt;}
.ws4e{word-spacing:-4.029600pt;}
.ws41{word-spacing:-4.024267pt;}
.ws4d{word-spacing:-3.639200pt;}
.ws55{word-spacing:-3.389600pt;}
.ws68{word-spacing:-3.384267pt;}
.ws67{word-spacing:-2.999200pt;}
.ws76{word-spacing:-2.346667pt;}
.ws38{word-spacing:-1.913600pt;}
.ws59{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.066400pt;}
.ws72{word-spacing:0.846133pt;}
.ws14{word-spacing:3.855733pt;}
.ws31{word-spacing:6.464000pt;}
.ws1e{word-spacing:10.905333pt;}
.ws5d{word-spacing:21.312000pt;}
.ws4c{word-spacing:21.952000pt;}
.ws3f{word-spacing:21.957333pt;}
.ws43{word-spacing:27.072000pt;}
.ws6f{word-spacing:34.371467pt;}
.ws40{word-spacing:35.016800pt;}
.ws53{word-spacing:35.651467pt;}
.ws5e{word-spacing:35.654400pt;}
.ws66{word-spacing:35.662133pt;}
.ws70{word-spacing:45.637600pt;}
.ws54{word-spacing:46.917600pt;}
.ws69{word-spacing:52.675200pt;}
.ws5b{word-spacing:53.309867pt;}
.ws4a{word-spacing:53.315200pt;}
.ws3b{word-spacing:53.320533pt;}
.ws4f{word-spacing:53.955200pt;}
.ws46{word-spacing:59.072000pt;}
.ws63{word-spacing:66.309600pt;}
.ws48{word-spacing:66.314933pt;}
.ws6c{word-spacing:67.012000pt;}
.ws62{word-spacing:72.771467pt;}
.ws47{word-spacing:72.782133pt;}
.ws6d{word-spacing:87.875200pt;}
.ws5f{word-spacing:91.075200pt;}
.ws42{word-spacing:91.080533pt;}
.ws6b{word-spacing:98.313600pt;}
.ws3d{word-spacing:99.593600pt;}
.ws64{word-spacing:100.238933pt;}
.ws60{word-spacing:136.713600pt;}
.ws44{word-spacing:137.358933pt;}
.ws1{word-spacing:1606.468800pt;}
._2{margin-left:-1.283200pt;}
._0{width:1.020800pt;}
._13{width:15.557333pt;}
._1{width:16.832000pt;}
._16{width:17.921600pt;}
._e{width:18.814933pt;}
._9{width:20.527200pt;}
._12{width:22.021333pt;}
._14{width:24.446933pt;}
._6{width:26.100533pt;}
._5{width:28.106133pt;}
._10{width:29.554133pt;}
._b{width:32.261333pt;}
._c{width:33.954933pt;}
._d{width:36.144000pt;}
._3{width:37.276000pt;}
._4{width:39.301333pt;}
._15{width:44.805333pt;}
._11{width:48.368000pt;}
._17{width:51.371733pt;}
._7{width:54.592000pt;}
._8{width:55.593067pt;}
._a{width:61.743200pt;}
._f{width:98.502400pt;}
.fs3{font-size:41.600000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.360000pt;}
.y87{bottom:3.374667pt;}
.y5b{bottom:3.400000pt;}
.y63{bottom:3.426667pt;}
.y39{bottom:3.454667pt;}
.y44{bottom:3.480000pt;}
.y55{bottom:3.506667pt;}
.y6a{bottom:3.508000pt;}
.y58{bottom:3.533333pt;}
.y4{bottom:3.974667pt;}
.y93{bottom:4.188000pt;}
.y73{bottom:4.280000pt;}
.y67{bottom:12.600000pt;}
.y8c{bottom:12.626667pt;}
.y59{bottom:12.654667pt;}
.y5c{bottom:12.680000pt;}
.y70{bottom:12.708000pt;}
.y66{bottom:12.733333pt;}
.y4e{bottom:12.760000pt;}
.y74{bottom:13.400000pt;}
.y91{bottom:13.466667pt;}
.y69{bottom:21.746667pt;}
.y57{bottom:21.773333pt;}
.y6c{bottom:21.774667pt;}
.y5a{bottom:21.800000pt;}
.y62{bottom:21.826667pt;}
.y65{bottom:21.854667pt;}
.y43{bottom:21.880000pt;}
.y85{bottom:21.906667pt;}
.y54{bottom:21.908000pt;}
.y72{bottom:22.521333pt;}
.y92{bottom:22.588000pt;}
.y6f{bottom:31.108000pt;}
.y4d{bottom:31.160000pt;}
.y53{bottom:40.146667pt;}
.y61{bottom:40.226667pt;}
.y40{bottom:40.280000pt;}
.y4c{bottom:49.560000pt;}
.y83{bottom:50.121333pt;}
.y5f{bottom:50.200000pt;}
.y51{bottom:50.280000pt;}
.y3f{bottom:58.680000pt;}
.y3{bottom:64.733333pt;}
.y4b{bottom:67.960000pt;}
.y50{bottom:68.521333pt;}
.y5e{bottom:68.600000pt;}
.y3e{bottom:77.080000pt;}
.y4a{bottom:86.360000pt;}
.y77{bottom:93.346667pt;}
.y3d{bottom:95.480000pt;}
.y37{bottom:95.800000pt;}
.y33{bottom:102.626667pt;}
.y49{bottom:104.760000pt;}
.y7a{bottom:105.146667pt;}
.y76{bottom:111.746667pt;}
.y3c{bottom:113.880000pt;}
.y36{bottom:114.200000pt;}
.y32{bottom:121.026667pt;}
.y48{bottom:123.160000pt;}
.y79{bottom:123.388000pt;}
.y75{bottom:130.146667pt;}
.y3b{bottom:132.280000pt;}
.y31{bottom:139.426667pt;}
.y47{bottom:141.560000pt;}
.y71{bottom:145.066667pt;}
.y9e{bottom:148.546667pt;}
.y3a{bottom:150.680000pt;}
.y30{bottom:157.826667pt;}
.y7e{bottom:159.800000pt;}
.y46{bottom:159.960000pt;}
.y9d{bottom:166.946667pt;}
.y42{bottom:169.080000pt;}
.y2f{bottom:176.226667pt;}
.y45{bottom:178.200000pt;}
.y80{bottom:178.360000pt;}
.y6e{bottom:183.200000pt;}
.y9c{bottom:185.346667pt;}
.y41{bottom:187.480000pt;}
.y2e{bottom:194.626667pt;}
.y7f{bottom:196.600000pt;}
.y9b{bottom:203.746667pt;}
.y81{bottom:205.880000pt;}
.y2d{bottom:213.026667pt;}
.y9a{bottom:222.146667pt;}
.y2c{bottom:231.426667pt;}
.y6d{bottom:239.066667pt;}
.y99{bottom:240.546667pt;}
.y2b{bottom:249.826667pt;}
.y98{bottom:258.946667pt;}
.y2a{bottom:268.226667pt;}
.y6b{bottom:276.533333pt;}
.y97{bottom:277.346667pt;}
.y29{bottom:286.626667pt;}
.y96{bottom:295.746667pt;}
.y28{bottom:305.026667pt;}
.y68{bottom:314.000000pt;}
.y95{bottom:314.146667pt;}
.y27{bottom:323.426667pt;}
.y94{bottom:332.546667pt;}
.y26{bottom:341.826667pt;}
.y5d{bottom:351.466667pt;}
.y25{bottom:360.226667pt;}
.y90{bottom:365.800000pt;}
.y24{bottom:378.626667pt;}
.y64{bottom:388.933333pt;}
.y23{bottom:397.026667pt;}
.y8f{bottom:404.000000pt;}
.y22{bottom:415.426667pt;}
.y60{bottom:426.400000pt;}
.y21{bottom:433.826667pt;}
.y20{bottom:452.226667pt;}
.y8e{bottom:459.866667pt;}
.y1f{bottom:470.626667pt;}
.y4f{bottom:482.266667pt;}
.ya0{bottom:489.026667pt;}
.y8d{bottom:497.333333pt;}
.y1e{bottom:507.426667pt;}
.y8b{bottom:516.400000pt;}
.y56{bottom:519.733333pt;}
.y1d{bottom:525.826667pt;}
.y1c{bottom:544.226667pt;}
.y88{bottom:553.866667pt;}
.y52{bottom:557.200000pt;}
.y1b{bottom:562.626667pt;}
.y1a{bottom:581.026667pt;}
.y8a{bottom:591.333333pt;}
.y19{bottom:599.426667pt;}
.y89{bottom:610.400000pt;}
.y35{bottom:613.066667pt;}
.y18{bottom:617.826667pt;}
.y17{bottom:636.226667pt;}
.y16{bottom:654.626667pt;}
.y82{bottom:666.266667pt;}
.y15{bottom:673.026667pt;}
.y14{bottom:691.426667pt;}
.y86{bottom:703.733333pt;}
.y13{bottom:709.826667pt;}
.y84{bottom:722.800000pt;}
.y12{bottom:728.226667pt;}
.y11{bottom:746.626667pt;}
.y10{bottom:765.026667pt;}
.y78{bottom:778.600000pt;}
.y7d{bottom:778.666667pt;}
.y9f{bottom:783.426667pt;}
.yf{bottom:801.826667pt;}
.y38{bottom:816.133333pt;}
.ye{bottom:820.226667pt;}
.yd{bottom:838.626667pt;}
.yc{bottom:857.026667pt;}
.yb{bottom:875.426667pt;}
.ya{bottom:893.826667pt;}
.y9{bottom:912.226667pt;}
.y8{bottom:930.626667pt;}
.y7{bottom:949.026667pt;}
.y34{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y7b{bottom:1000.066667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.ha{height:19.000000pt;}
.he{height:37.400000pt;}
.hf{height:38.133333pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.h8{height:50.030021pt;}
.hd{height:55.800000pt;}
.h2{height:86.312500pt;}
.h12{height:112.333333pt;}
.hc{height:130.733333pt;}
.hb{height:203.000000pt;}
.h11{height:221.400000pt;}
.h9{height:222.066667pt;}
.h10{height:240.466667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w3{width:26.333333pt;}
.w9{width:27.266667pt;}
.wc{width:66.066667pt;}
.w6{width:69.800000pt;}
.we{width:102.266667pt;}
.w7{width:102.533333pt;}
.wd{width:102.666667pt;}
.w4{width:106.466667pt;}
.wa{width:109.400000pt;}
.w8{width:111.866667pt;}
.wb{width:485.133333pt;}
.w5{width:489.000000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.212000pt;}
.xf{left:115.666667pt;}
.xe{left:122.878667pt;}
.x1{left:136.000000pt;}
.x2{left:136.960000pt;}
.x11{left:141.933333pt;}
.x4{left:143.520000pt;}
.x12{left:248.333333pt;}
.x17{left:252.200000pt;}
.x13{left:318.066667pt;}
.x5{left:334.560000pt;}
.x14{left:420.533333pt;}
.x3{left:422.533333pt;}
.xb{left:426.400000pt;}
.x15{left:532.333333pt;}
.x8{left:568.160000pt;}
.x6{left:613.120000pt;}
.x7{left:619.360000pt;}
.xc{left:621.120000pt;}
.x16{left:634.800000pt;}
.x9{left:649.600000pt;}
.xa{left:677.600000pt;}
.xd{left:690.878667pt;}
}




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