
    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_5c613bb0696547d56d330414.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_405b790fd18f14b3f5448162.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_bc1d5f48af3c0f087bc314a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766000;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_772e115edd296d31c684da08.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_7eacf4105e102dc862bb8172.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_f72ace93246fdac46485d77d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893000;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_7eba3be09629f998ef0216b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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);}
.v3{vertical-align:-34.188000px;}
.v4{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.542000px;}
.v1{vertical-align:28.212000px;}
.v2{vertical-align:34.188000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001500px;}
.ls2{letter-spacing:2.985797px;}
.ls4{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.991797px;}
.ls8{letter-spacing:8.367600px;}
.ls7{letter-spacing:10.955674px;}
.ls6{letter-spacing:10.957200px;}
.ls5{letter-spacing:10.961674px;}
.lsa{letter-spacing:18.773400px;}
.ls9{letter-spacing:46.328600px;}
.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;}
}
.ws10{word-spacing:-13.449600px;}
.ws5{word-spacing:-11.955150px;}
.ws7{word-spacing:-5.487426px;}
.wsf{word-spacing:-5.057050px;}
.ws11{word-spacing:-3.586545px;}
.ws3a{word-spacing:-0.836858px;}
.ws3b{word-spacing:-0.119551px;}
.ws3{word-spacing:-0.095641px;}
.ws51{word-spacing:-0.059776px;}
.ws8{word-spacing:-0.059058px;}
.ws2{word-spacing:-0.053200px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.717307px;}
.ws16{word-spacing:0.836858px;}
.ws19{word-spacing:1.016185px;}
.ws26{word-spacing:1.255288px;}
.ws1e{word-spacing:1.340063px;}
.ws29{word-spacing:1.374839px;}
.ws42{word-spacing:1.613941px;}
.ws6{word-spacing:2.008474px;}
.ws48{word-spacing:2.092146px;}
.ws40{word-spacing:2.510575px;}
.ws4c{word-spacing:2.570351px;}
.ws4b{word-spacing:2.917057px;}
.ws41{word-spacing:2.929004px;}
.ws49{word-spacing:3.407209px;}
.ws14{word-spacing:3.526760px;}
.ws4d{word-spacing:3.646312px;}
.ws30{word-spacing:3.765863px;}
.ws3d{word-spacing:3.825638px;}
.ws1b{word-spacing:3.945190px;}
.wsd{word-spacing:3.981082px;}
.ws1a{word-spacing:4.004965px;}
.ws15{word-spacing:4.064741px;}
.ws38{word-spacing:4.423394px;}
.ws45{word-spacing:4.722272px;}
.ws2a{word-spacing:4.901599px;}
.ws23{word-spacing:4.961375px;}
.ws44{word-spacing:5.021150px;}
.ws50{word-spacing:5.200477px;}
.ws2f{word-spacing:5.379804px;}
.ws46{word-spacing:5.439580px;}
.ws31{word-spacing:5.499355px;}
.ws47{word-spacing:5.618906px;}
.ws3c{word-spacing:5.977560px;}
.ws2e{word-spacing:6.216662px;}
.wse{word-spacing:6.455808px;}
.ws55{word-spacing:6.503602px;}
.ws32{word-spacing:6.515540px;}
.wsc{word-spacing:6.563405px;}
.ws3f{word-spacing:6.635092px;}
.ws1f{word-spacing:6.838346px;}
.ws54{word-spacing:6.886166px;}
.ws4f{word-spacing:7.173072px;}
.ws22{word-spacing:7.352399px;}
.ws24{word-spacing:7.412174px;}
.ws1c{word-spacing:7.460014px;}
.ws20{word-spacing:7.699117px;}
.ws4e{word-spacing:7.711052px;}
.ws33{word-spacing:7.770828px;}
.ws56{word-spacing:7.890399px;}
.ws4{word-spacing:7.986040px;}
.ws39{word-spacing:8.069706px;}
.ws2c{word-spacing:8.189257px;}
.ws58{word-spacing:8.272964px;}
.ws36{word-spacing:8.667462px;}
.ws35{word-spacing:9.026116px;}
.wsb{word-spacing:9.091930px;}
.ws2b{word-spacing:9.384769px;}
.wsa{word-spacing:9.576115px;}
.ws2d{word-spacing:9.683647px;}
.ws27{word-spacing:9.803198px;}
.ws43{word-spacing:9.982525px;}
.ws59{word-spacing:10.137967px;}
.ws3e{word-spacing:10.460730px;}
.ws52{word-spacing:11.536691px;}
.ws12{word-spacing:11.907221px;}
.ws9{word-spacing:11.907329px;}
.ws25{word-spacing:12.313774px;}
.ws5a{word-spacing:12.433356px;}
.ws34{word-spacing:12.612652px;}
.ws4a{word-spacing:14.824386px;}
.ws18{word-spacing:17.334924px;}
.ws53{word-spacing:17.932725px;}
.ws57{word-spacing:19.080419px;}
.ws1d{word-spacing:19.367343px;}
.ws28{word-spacing:19.845499px;}
.ws21{word-spacing:19.893370px;}
.ws1{word-spacing:19.896875px;}
.ws13{word-spacing:29.828024px;}
.ws37{word-spacing:612.121950px;}
._4{margin-left:-7.919888px;}
._5{margin-left:-6.220199px;}
._6{margin-left:-4.877701px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.099891px;}
._8{width:1.966613px;}
._3{width:3.634366px;}
._d{width:19.411523px;}
._7{width:20.933520px;}
._c{width:23.177396px;}
._b{width:29.887800px;}
._9{width:39.223025px;}
._e{width:40.249294px;}
._a{width:624.380830px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs10{font-size:40.647600px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.200200px;}
.fse{font-size:53.798400px;}
.fsc{font-size:59.058000px;}
.fsf{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.708400px;}
.fs6{font-size:95.641200px;}
.fs9{font-size:101.619000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:53.050500px;}
.y5{bottom:66.525004px;}
.y49{bottom:67.995000px;}
.y48{bottom:87.421500px;}
.y6c{bottom:88.170000px;}
.y97{bottom:90.757500px;}
.y9a{bottom:93.046500px;}
.y4{bottom:97.125005px;}
.y47{bottom:102.366000px;}
.y86{bottom:107.151000px;}
.y6b{bottom:107.547000px;}
.y46{bottom:117.310500px;}
.y85{bottom:126.132000px;}
.y6a{bottom:126.924000px;}
.y21{bottom:139.264499px;}
.y45{bottom:144.957000px;}
.y84{bottom:145.113000px;}
.y69{bottom:146.302500px;}
.y44{bottom:163.717500px;}
.y83{bottom:164.095500px;}
.yb8{bottom:164.463000px;}
.y68{bottom:165.679500px;}
.yb7{bottom:179.407500px;}
.y82{bottom:183.076500px;}
.y67{bottom:185.058000px;}
.yb6{bottom:194.350500px;}
.y18{bottom:196.933500px;}
.y43{bottom:196.965000px;}
.y81{bottom:202.057500px;}
.y66{bottom:204.435000px;}
.yb5{bottom:209.295000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y42{bottom:215.695500px;}
.y80{bottom:221.040000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y65{bottom:223.813500px;}
.yb4{bottom:224.239500px;}
.y41{bottom:234.426000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yb3{bottom:239.182500px;}
.y7f{bottom:240.021000px;}
.y64{bottom:243.190500px;}
.y40{bottom:253.156500px;}
.yb2{bottom:254.127000px;}
.y7e{bottom:259.002000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y63{bottom:262.567500px;}
.yb1{bottom:269.071500px;}
.y3f{bottom:271.885500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y7d{bottom:277.983000px;}
.y62{bottom:281.946000px;}
.yb0{bottom:284.014500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y3e{bottom:290.616000px;}
.y7c{bottom:296.965500px;}
.yaf{bottom:298.959000px;}
.y61{bottom:301.323000px;}
.y3d{bottom:309.346500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yae{bottom:313.903500px;}
.y7b{bottom:315.946500px;}
.y96{bottom:316.627500px;}
.y60{bottom:320.701500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y3c{bottom:328.077000px;}
.yad{bottom:328.846500px;}
.y95{bottom:335.643000px;}
.yac{bottom:343.791000px;}
.yf{bottom:348.133500px;}
.y94{bottom:354.658500px;}
.yab{bottom:358.734000px;}
.y7a{bottom:359.152500px;}
.y3b{bottom:360.559500px;}
.y99{bottom:367.323000px;}
.y5f{bottom:372.307500px;}
.y93{bottom:373.674000px;}
.yaa{bottom:373.678500px;}
.y98{bottom:382.266000px;}
.ye{bottom:386.785499px;}
.ya9{bottom:388.623000px;}
.y92{bottom:392.688000px;}
.ya8{bottom:403.566000px;}
.y79{bottom:407.602500px;}
.yd{bottom:408.044999px;}
.y91{bottom:411.703500px;}
.y78{bottom:426.583500px;}
.ya7{bottom:427.477500px;}
.y3a{bottom:429.640500px;}
.y90{bottom:430.719000px;}
.y77{bottom:445.564500px;}
.y8f{bottom:449.734500px;}
.y39{bottom:457.021500px;}
.ya6{bottom:463.342500px;}
.y76{bottom:464.545500px;}
.y8e{bottom:468.750000px;}
.y38{bottom:473.460000px;}
.ya5{bottom:481.275000px;}
.y8d{bottom:487.765500px;}
.y37{bottom:498.864000px;}
.yc{bottom:502.864502px;}
.y8c{bottom:506.779500px;}
.ya4{bottom:508.174500px;}
.y75{bottom:512.769000px;}
.y36{bottom:515.302500px;}
.y35{bottom:515.736000px;}
.yb{bottom:520.864502px;}
.y8b{bottom:525.795000px;}
.y34{bottom:531.741000px;}
.ya{bottom:538.864499px;}
.ya3{bottom:544.039500px;}
.y33{bottom:548.179500px;}
.y9{bottom:556.864499px;}
.y8a{bottom:560.272500px;}
.ya2{bottom:561.972000px;}
.y32{bottom:564.618000px;}
.ya1{bottom:579.906000px;}
.y31{bottom:581.056500px;}
.y30{bottom:597.493500px;}
.ya0{bottom:597.838500px;}
.y5e{bottom:604.665000px;}
.y9f{bottom:615.771000px;}
.y89{bottom:620.436000px;}
.y2f{bottom:622.899000px;}
.y5d{bottom:624.043500px;}
.y9e{bottom:633.703500px;}
.y5c{bottom:643.420500px;}
.y8{bottom:645.510000px;}
.y9d{bottom:651.636000px;}
.y5b{bottom:662.797500px;}
.y7{bottom:666.771000px;}
.y9c{bottom:678.535500px;}
.y5a{bottom:682.176000px;}
.y2e{bottom:689.628000px;}
.y59{bottom:701.553000px;}
.y2d{bottom:716.484000px;}
.y58{bottom:720.931500px;}
.y6{bottom:726.298500px;}
.y9b{bottom:729.345000px;}
.y2c{bottom:733.023000px;}
.y57{bottom:740.308500px;}
.y2b{bottom:749.562000px;}
.y3{bottom:752.599495px;}
.y56{bottom:759.687000px;}
.y2a{bottom:772.521000px;}
.y55{bottom:779.064000px;}
.y54{bottom:798.441000px;}
.y29{bottom:811.048500px;}
.y74{bottom:814.639500px;}
.y73{bottom:833.620500px;}
.y53{bottom:835.455000px;}
.y28{bottom:840.936000px;}
.y72{bottom:852.601500px;}
.y71{bottom:871.584000px;}
.y27{bottom:878.581500px;}
.y2{bottom:879.369000px;}
.y52{bottom:888.658500px;}
.y70{bottom:890.565000px;}
.y26{bottom:896.514000px;}
.y51{bottom:908.037000px;}
.y6f{bottom:909.546000px;}
.y50{bottom:927.414000px;}
.y6e{bottom:928.527000px;}
.y25{bottom:941.653500px;}
.y88{bottom:942.466500px;}
.y4f{bottom:946.792500px;}
.y24{bottom:956.596500px;}
.y87{bottom:961.482000px;}
.y4e{bottom:966.169500px;}
.y1{bottom:966.726000px;}
.y6d{bottom:971.734500px;}
.y4d{bottom:985.546500px;}
.y4c{bottom:1004.925000px;}
.y23{bottom:1009.275000px;}
.y22{bottom:1035.292500px;}
.y4b{bottom:1037.802000px;}
.h10{height:24.675533px;}
.h15{height:27.599720px;}
.h7{height:32.130000px;}
.hc{height:32.900573px;}
.h17{height:33.091855px;}
.h16{height:34.442573px;}
.h12{height:37.013299px;}
.h11{height:37.228493px;}
.ha{height:38.782946px;}
.h18{height:41.006062px;}
.h14{height:41.125613px;}
.h13{height:41.364715px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hd{height:49.351066px;}
.h2{height:55.080000px;}
.he{height:69.913872px;}
.hb{height:72.113465px;}
.hf{height:74.288382px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1113.750000px;}
.h8{height:1114.015500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:816.378000px;}
.w4{width:816.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:55.666500px;}
.x20{left:57.651000px;}
.x11{left:61.644000px;}
.x1e{left:63.628500px;}
.x13{left:65.383500px;}
.x14{left:72.040500px;}
.x9{left:74.130000px;}
.x12{left:79.576500px;}
.xb{left:83.287500px;}
.x1f{left:85.039500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x15{left:116.769000px;}
.xd{left:119.490000px;}
.x1a{left:133.452000px;}
.x1d{left:136.158000px;}
.x1c{left:147.865500px;}
.x19{left:183.648000px;}
.x4{left:203.484001px;}
.x16{left:229.618500px;}
.xf{left:238.234500px;}
.x5{left:260.890500px;}
.xa{left:265.474500px;}
.xe{left:270.591000px;}
.x10{left:279.444000px;}
.x18{left:288.277500px;}
.x7{left:301.570500px;}
.x1b{left:305.104500px;}
.x6{left:317.613000px;}
.xc{left:339.066000px;}
.x3{left:454.959000px;}
.x8{left:618.787500px;}
@media print{
.v3{vertical-align:-30.389333pt;}
.v4{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.370667pt;}
.v1{vertical-align:25.077333pt;}
.v2{vertical-align:30.389333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001333pt;}
.ls2{letter-spacing:2.654042pt;}
.ls4{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.659375pt;}
.ls8{letter-spacing:7.437867pt;}
.ls7{letter-spacing:9.738377pt;}
.ls6{letter-spacing:9.739733pt;}
.ls5{letter-spacing:9.743710pt;}
.lsa{letter-spacing:16.687467pt;}
.ls9{letter-spacing:41.180978pt;}
.ws10{word-spacing:-11.955200pt;}
.ws5{word-spacing:-10.626800pt;}
.ws7{word-spacing:-4.877712pt;}
.wsf{word-spacing:-4.495155pt;}
.ws11{word-spacing:-3.188040pt;}
.ws3a{word-spacing:-0.743874pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws3{word-spacing:-0.085014pt;}
.ws51{word-spacing:-0.053134pt;}
.ws8{word-spacing:-0.052496pt;}
.ws2{word-spacing:-0.047289pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.637606pt;}
.ws16{word-spacing:0.743874pt;}
.ws19{word-spacing:0.903276pt;}
.ws26{word-spacing:1.115811pt;}
.ws1e{word-spacing:1.191167pt;}
.ws29{word-spacing:1.222079pt;}
.ws42{word-spacing:1.434614pt;}
.ws6{word-spacing:1.785310pt;}
.ws48{word-spacing:1.859685pt;}
.ws40{word-spacing:2.231622pt;}
.ws4c{word-spacing:2.284756pt;}
.ws4b{word-spacing:2.592939pt;}
.ws41{word-spacing:2.603559pt;}
.ws49{word-spacing:3.028630pt;}
.ws14{word-spacing:3.134898pt;}
.ws4d{word-spacing:3.241166pt;}
.ws30{word-spacing:3.347434pt;}
.ws3d{word-spacing:3.400567pt;}
.ws1b{word-spacing:3.506835pt;}
.wsd{word-spacing:3.538739pt;}
.ws1a{word-spacing:3.559969pt;}
.ws15{word-spacing:3.613103pt;}
.ws38{word-spacing:3.931906pt;}
.ws45{word-spacing:4.197575pt;}
.ws2a{word-spacing:4.356977pt;}
.ws23{word-spacing:4.410111pt;}
.ws44{word-spacing:4.463245pt;}
.ws50{word-spacing:4.622646pt;}
.ws2f{word-spacing:4.782048pt;}
.ws46{word-spacing:4.835182pt;}
.ws31{word-spacing:4.888316pt;}
.ws47{word-spacing:4.994583pt;}
.ws3c{word-spacing:5.313387pt;}
.ws2e{word-spacing:5.525922pt;}
.wse{word-spacing:5.738496pt;}
.ws55{word-spacing:5.780979pt;}
.ws32{word-spacing:5.791591pt;}
.wsc{word-spacing:5.834138pt;}
.ws3f{word-spacing:5.897859pt;}
.ws1f{word-spacing:6.078530pt;}
.ws54{word-spacing:6.121037pt;}
.ws4f{word-spacing:6.376064pt;}
.ws22{word-spacing:6.535466pt;}
.ws24{word-spacing:6.588599pt;}
.ws1c{word-spacing:6.631123pt;}
.ws20{word-spacing:6.843659pt;}
.ws4e{word-spacing:6.854269pt;}
.ws33{word-spacing:6.907403pt;}
.ws56{word-spacing:7.013688pt;}
.ws4{word-spacing:7.098702pt;}
.ws39{word-spacing:7.173072pt;}
.ws2c{word-spacing:7.279340pt;}
.ws58{word-spacing:7.353746pt;}
.ws36{word-spacing:7.704411pt;}
.ws35{word-spacing:8.023214pt;}
.wsb{word-spacing:8.081715pt;}
.ws2b{word-spacing:8.342017pt;}
.wsa{word-spacing:8.512102pt;}
.ws2d{word-spacing:8.607686pt;}
.ws27{word-spacing:8.713954pt;}
.ws43{word-spacing:8.873356pt;}
.ws59{word-spacing:9.011526pt;}
.ws3e{word-spacing:9.298427pt;}
.ws52{word-spacing:10.254836pt;}
.ws12{word-spacing:10.584196pt;}
.ws9{word-spacing:10.584293pt;}
.ws25{word-spacing:10.945577pt;}
.ws5a{word-spacing:11.051872pt;}
.ws34{word-spacing:11.211246pt;}
.ws4a{word-spacing:13.177232pt;}
.ws18{word-spacing:15.408821pt;}
.ws53{word-spacing:15.940200pt;}
.ws57{word-spacing:16.960373pt;}
.ws1d{word-spacing:17.215416pt;}
.ws28{word-spacing:17.640444pt;}
.ws21{word-spacing:17.682995pt;}
.ws1{word-spacing:17.686111pt;}
.ws13{word-spacing:26.513799pt;}
.ws37{word-spacing:544.108400pt;}
._4{margin-left:-7.039901pt;}
._5{margin-left:-5.529066pt;}
._6{margin-left:-4.335734pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.977681pt;}
._8{width:1.748100pt;}
._3{width:3.230547pt;}
._d{width:17.254687pt;}
._7{width:18.607573pt;}
._c{width:20.602130pt;}
._b{width:26.566933pt;}
._9{width:34.864911pt;}
._e{width:35.777150pt;}
._a{width:555.005182pt;}
.fsd{font-size:31.880533pt;}
.fs10{font-size:36.131200pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.289067pt;}
.fse{font-size:47.820800pt;}
.fsc{font-size:52.496000pt;}
.fsf{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.074133pt;}
.fs6{font-size:85.014400pt;}
.fs9{font-size:90.328000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:47.156000pt;}
.y5{bottom:59.133337pt;}
.y49{bottom:60.440000pt;}
.y48{bottom:77.708000pt;}
.y6c{bottom:78.373333pt;}
.y97{bottom:80.673333pt;}
.y9a{bottom:82.708000pt;}
.y4{bottom:86.333337pt;}
.y47{bottom:90.992000pt;}
.y86{bottom:95.245333pt;}
.y6b{bottom:95.597333pt;}
.y46{bottom:104.276000pt;}
.y85{bottom:112.117333pt;}
.y6a{bottom:112.821333pt;}
.y21{bottom:123.790666pt;}
.y45{bottom:128.850667pt;}
.y84{bottom:128.989333pt;}
.y69{bottom:130.046667pt;}
.y44{bottom:145.526667pt;}
.y83{bottom:145.862667pt;}
.yb8{bottom:146.189333pt;}
.y68{bottom:147.270667pt;}
.yb7{bottom:159.473333pt;}
.y82{bottom:162.734667pt;}
.y67{bottom:164.496000pt;}
.yb6{bottom:172.756000pt;}
.y18{bottom:175.052000pt;}
.y43{bottom:175.080000pt;}
.y81{bottom:179.606667pt;}
.y66{bottom:181.720000pt;}
.yb5{bottom:186.040000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y42{bottom:191.729333pt;}
.y80{bottom:196.480000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y65{bottom:198.945333pt;}
.yb4{bottom:199.324000pt;}
.y41{bottom:208.378667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yb3{bottom:212.606667pt;}
.y7f{bottom:213.352000pt;}
.y64{bottom:216.169333pt;}
.y40{bottom:225.028000pt;}
.yb2{bottom:225.890667pt;}
.y7e{bottom:230.224000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y63{bottom:233.393333pt;}
.yb1{bottom:239.174667pt;}
.y3f{bottom:241.676000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y7d{bottom:247.096000pt;}
.y62{bottom:250.618667pt;}
.yb0{bottom:252.457333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y3e{bottom:258.325333pt;}
.y7c{bottom:263.969333pt;}
.yaf{bottom:265.741333pt;}
.y61{bottom:267.842667pt;}
.y3d{bottom:274.974667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yae{bottom:279.025333pt;}
.y7b{bottom:280.841333pt;}
.y96{bottom:281.446667pt;}
.y60{bottom:285.068000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y3c{bottom:291.624000pt;}
.yad{bottom:292.308000pt;}
.y95{bottom:298.349333pt;}
.yac{bottom:305.592000pt;}
.yf{bottom:309.452000pt;}
.y94{bottom:315.252000pt;}
.yab{bottom:318.874667pt;}
.y7a{bottom:319.246667pt;}
.y3b{bottom:320.497333pt;}
.y99{bottom:326.509333pt;}
.y5f{bottom:330.940000pt;}
.y93{bottom:332.154667pt;}
.yaa{bottom:332.158667pt;}
.y98{bottom:339.792000pt;}
.ye{bottom:343.809333pt;}
.ya9{bottom:345.442667pt;}
.y92{bottom:349.056000pt;}
.ya8{bottom:358.725333pt;}
.y79{bottom:362.313333pt;}
.yd{bottom:362.706666pt;}
.y91{bottom:365.958667pt;}
.y78{bottom:379.185333pt;}
.ya7{bottom:379.980000pt;}
.y3a{bottom:381.902667pt;}
.y90{bottom:382.861333pt;}
.y77{bottom:396.057333pt;}
.y8f{bottom:399.764000pt;}
.y39{bottom:406.241333pt;}
.ya6{bottom:411.860000pt;}
.y76{bottom:412.929333pt;}
.y8e{bottom:416.666667pt;}
.y38{bottom:420.853333pt;}
.ya5{bottom:427.800000pt;}
.y8d{bottom:433.569333pt;}
.y37{bottom:443.434667pt;}
.yc{bottom:446.990669pt;}
.y8c{bottom:450.470667pt;}
.ya4{bottom:451.710667pt;}
.y75{bottom:455.794667pt;}
.y36{bottom:458.046667pt;}
.y35{bottom:458.432000pt;}
.yb{bottom:462.990669pt;}
.y8b{bottom:467.373333pt;}
.y34{bottom:472.658667pt;}
.ya{bottom:478.990666pt;}
.ya3{bottom:483.590667pt;}
.y33{bottom:487.270667pt;}
.y9{bottom:494.990666pt;}
.y8a{bottom:498.020000pt;}
.ya2{bottom:499.530667pt;}
.y32{bottom:501.882667pt;}
.ya1{bottom:515.472000pt;}
.y31{bottom:516.494667pt;}
.y30{bottom:531.105333pt;}
.ya0{bottom:531.412000pt;}
.y5e{bottom:537.480000pt;}
.y9f{bottom:547.352000pt;}
.y89{bottom:551.498667pt;}
.y2f{bottom:553.688000pt;}
.y5d{bottom:554.705333pt;}
.y9e{bottom:563.292000pt;}
.y5c{bottom:571.929333pt;}
.y8{bottom:573.786667pt;}
.y9d{bottom:579.232000pt;}
.y5b{bottom:589.153333pt;}
.y7{bottom:592.685334pt;}
.y9c{bottom:603.142667pt;}
.y5a{bottom:606.378667pt;}
.y2e{bottom:613.002667pt;}
.y59{bottom:623.602667pt;}
.y2d{bottom:636.874667pt;}
.y58{bottom:640.828000pt;}
.y6{bottom:645.598667pt;}
.y9b{bottom:648.306667pt;}
.y2c{bottom:651.576000pt;}
.y57{bottom:658.052000pt;}
.y2b{bottom:666.277333pt;}
.y3{bottom:668.977329pt;}
.y56{bottom:675.277333pt;}
.y2a{bottom:686.685333pt;}
.y55{bottom:692.501333pt;}
.y54{bottom:709.725333pt;}
.y29{bottom:720.932000pt;}
.y74{bottom:724.124000pt;}
.y73{bottom:740.996000pt;}
.y53{bottom:742.626667pt;}
.y28{bottom:747.498667pt;}
.y72{bottom:757.868000pt;}
.y71{bottom:774.741333pt;}
.y27{bottom:780.961333pt;}
.y2{bottom:781.661334pt;}
.y52{bottom:789.918667pt;}
.y70{bottom:791.613333pt;}
.y26{bottom:796.901333pt;}
.y51{bottom:807.144000pt;}
.y6f{bottom:808.485333pt;}
.y50{bottom:824.368000pt;}
.y6e{bottom:825.357333pt;}
.y25{bottom:837.025333pt;}
.y88{bottom:837.748000pt;}
.y4f{bottom:841.593333pt;}
.y24{bottom:850.308000pt;}
.y87{bottom:854.650667pt;}
.y4e{bottom:858.817333pt;}
.y1{bottom:859.312000pt;}
.y6d{bottom:863.764000pt;}
.y4d{bottom:876.041333pt;}
.y4c{bottom:893.266667pt;}
.y23{bottom:897.133333pt;}
.y22{bottom:920.260000pt;}
.y4b{bottom:922.490667pt;}
.h10{height:21.933807pt;}
.h15{height:24.533085pt;}
.h7{height:28.560000pt;}
.hc{height:29.244954pt;}
.h17{height:29.414982pt;}
.h16{height:30.615620pt;}
.h12{height:32.900710pt;}
.h11{height:33.091994pt;}
.ha{height:34.473730pt;}
.h18{height:36.449833pt;}
.h14{height:36.556100pt;}
.h13{height:36.768636pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hd{height:43.867614pt;}
.h2{height:48.960000pt;}
.he{height:62.145664pt;}
.hb{height:64.100858pt;}
.hf{height:66.034117pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:990.000000pt;}
.h8{height:990.236000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:725.669333pt;}
.w4{width:726.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:49.481333pt;}
.x20{left:51.245333pt;}
.x11{left:54.794667pt;}
.x1e{left:56.558667pt;}
.x13{left:58.118667pt;}
.x14{left:64.036000pt;}
.x9{left:65.893333pt;}
.x12{left:70.734667pt;}
.xb{left:74.033333pt;}
.x1f{left:75.590667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x15{left:103.794667pt;}
.xd{left:106.213333pt;}
.x1a{left:118.624000pt;}
.x1d{left:121.029333pt;}
.x1c{left:131.436000pt;}
.x19{left:163.242667pt;}
.x4{left:180.874667pt;}
.x16{left:204.105333pt;}
.xf{left:211.764000pt;}
.x5{left:231.902667pt;}
.xa{left:235.977333pt;}
.xe{left:240.525333pt;}
.x10{left:248.394667pt;}
.x18{left:256.246667pt;}
.x7{left:268.062667pt;}
.x1b{left:271.204000pt;}
.x6{left:282.322667pt;}
.xc{left:301.392000pt;}
.x3{left:404.408000pt;}
.x8{left:550.033333pt;}
}




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