
    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_7bdc33488207c3dbeb9fb942.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_22a055be5fe6f670a1182898.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960938;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_d499d30dffc532872a5ba911.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_459b39268ea9f6e017fe9ae2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974121;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_b54a4b8267898c42de4aa3a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974121;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_88d5daa4fc4b1f5b41e22567.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960938;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_f6456833f239098fdaabe63b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_7c8dbb85aee76b52db857528.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-69.000000px;}
.v2{vertical-align:-55.500004px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.708000px;}
.lsd{letter-spacing:-0.552000px;}
.ls10{letter-spacing:-0.396000px;}
.ls11{letter-spacing:-0.348000px;}
.ls17{letter-spacing:-0.024000px;}
.ls15{letter-spacing:-0.012000px;}
.ls16{letter-spacing:-0.006000px;}
.lse{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.006000px;}
.ls7{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.168000px;}
.lsf{letter-spacing:0.282000px;}
.ls5{letter-spacing:0.312000px;}
.ls12{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.366000px;}
.ls14{letter-spacing:0.450000px;}
.ls18{letter-spacing:0.462000px;}
.ls1{letter-spacing:0.468000px;}
.ls0{letter-spacing:0.552000px;}
.lsc{letter-spacing:0.684000px;}
.ls19{letter-spacing:0.828000px;}
.ls4{letter-spacing:43.776000px;}
.lsb{letter-spacing:615.330000px;}
.ls2{letter-spacing:1556.130000px;}
.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;}
}
.ws8{word-spacing:-48.000000px;}
.ws0{word-spacing:-39.684000px;}
.ws1{word-spacing:-38.448000px;}
.ws3{word-spacing:-33.114000px;}
.ws4{word-spacing:-32.832000px;}
.ws2{word-spacing:-24.468000px;}
.ws13{word-spacing:-19.374000px;}
.ws6{word-spacing:-17.952000px;}
.ws7{word-spacing:-16.948800px;}
.ws5{word-spacing:-16.896000px;}
.ws11{word-spacing:-13.524000px;}
.ws14{word-spacing:-13.512000px;}
.ws16{word-spacing:-13.494000px;}
.ws17{word-spacing:-13.488000px;}
.ws15{word-spacing:-13.476000px;}
.ws10{word-spacing:-13.338000px;}
.wse{word-spacing:-12.724800px;}
.ws9{word-spacing:-12.672000px;}
.ws18{word-spacing:-12.462000px;}
.wsf{word-spacing:-2.988000px;}
.ws12{word-spacing:-0.048000px;}
.ws19{word-spacing:0.000000px;}
.wsd{word-spacing:101.244000px;}
.wsc{word-spacing:111.108000px;}
.wsa{word-spacing:115.548000px;}
.wsb{word-spacing:117.924000px;}
._3{margin-left:-2.568000px;}
._0{margin-left:-1.062000px;}
._1{width:1.056000px;}
._2{width:2.304000px;}
._5{width:11.256000px;}
._6{width:18.456000px;}
._9{width:30.648000px;}
._7{width:40.500000px;}
._8{width:51.360000px;}
._a{width:83.237998px;}
._4{width:126.732000px;}
.fc3{color:transparent;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(152,72,6);}
.fs5{font-size:36.000000px;}
.fs8{font-size:36.150000px;}
.fs9{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:48.150000px;}
.fs6{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:156.000000px;}
.y62{bottom:-9.825000px;}
.yb2{bottom:-9.000000px;}
.y5c{bottom:-2.250000px;}
.y6b{bottom:-0.450000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:0.300000px;}
.y6f{bottom:0.675000px;}
.y58{bottom:1.455000px;}
.y82{bottom:1.500000px;}
.y61{bottom:2.175000px;}
.y88{bottom:2.475000px;}
.y4e{bottom:3.300000px;}
.y71{bottom:4.050000px;}
.y8d{bottom:4.500000px;}
.yb1{bottom:4.875000px;}
.yb5{bottom:5.295000px;}
.y85{bottom:5.505000px;}
.y92{bottom:5.625000px;}
.y65{bottom:8.175000px;}
.yad{bottom:8.670000px;}
.yaf{bottom:10.995000px;}
.y6a{bottom:11.175000px;}
.y5b{bottom:11.625000px;}
.y81{bottom:15.000000px;}
.yb4{bottom:17.295000px;}
.y56{bottom:17.625000px;}
.y87{bottom:18.600000px;}
.y4c{bottom:19.455000px;}
.y8c{bottom:20.250000px;}
.y64{bottom:20.925000px;}
.y91{bottom:21.375000px;}
.y84{bottom:22.005000px;}
.yac{bottom:24.795000px;}
.y80{bottom:28.875000px;}
.y2e{bottom:29.370000px;}
.y57{bottom:31.950000px;}
.y4d{bottom:33.795000px;}
.y8b{bottom:36.000000px;}
.y90{bottom:36.750000px;}
.y67{bottom:37.425000px;}
.y5e{bottom:37.800000px;}
.y9f{bottom:37.920000px;}
.yab{bottom:40.170000px;}
.y2d{bottom:42.495000px;}
.y7f{bottom:42.750000px;}
.y8f{bottom:52.500000px;}
.y9e{bottom:54.045000px;}
.yaa{bottom:55.545000px;}
.y2c{bottom:55.620000px;}
.y7e{bottom:56.670000px;}
.y6{bottom:57.037500px;}
.y44{bottom:61.155000px;}
.y50{bottom:66.645000px;}
.y46{bottom:68.445000px;}
.y9d{bottom:69.420000px;}
.y7d{bottom:70.545000px;}
.y5{bottom:70.912500px;}
.ya9{bottom:71.295000px;}
.y43{bottom:74.280000px;}
.y4f{bottom:77.850000px;}
.y59{bottom:78.495000px;}
.y51{bottom:83.895000px;}
.y7c{bottom:84.045000px;}
.y47{bottom:85.080000px;}
.y9c{bottom:85.170000px;}
.ya8{bottom:86.670000px;}
.y2b{bottom:95.280000px;}
.y7b{bottom:97.920000px;}
.y9b{bottom:100.545000px;}
.y52{bottom:101.145000px;}
.y48{bottom:101.745000px;}
.ya7{bottom:102.420000px;}
.y2a{bottom:108.450000px;}
.y7a{bottom:111.795000px;}
.y42{bottom:114.420000px;}
.y9a{bottom:115.920000px;}
.ya6{bottom:117.795000px;}
.y49{bottom:118.380000px;}
.y53{bottom:118.425000px;}
.y79{bottom:125.670000px;}
.y41{bottom:127.530000px;}
.y4{bottom:129.412500px;}
.y99{bottom:131.700000px;}
.ya5{bottom:133.215000px;}
.y4a{bottom:135.045000px;}
.y54{bottom:135.675000px;}
.y78{bottom:139.545000px;}
.y39{bottom:141.750000px;}
.y3{bottom:143.287500px;}
.y98{bottom:147.090000px;}
.y29{bottom:148.530000px;}
.ya4{bottom:148.965000px;}
.y4b{bottom:151.695000px;}
.y55{bottom:152.925000px;}
.y77{bottom:153.045000px;}
.y38{bottom:154.875000px;}
.y28{bottom:161.670000px;}
.y97{bottom:162.840000px;}
.ya3{bottom:164.340000px;}
.y76{bottom:166.920000px;}
.y37{bottom:168.000000px;}
.y40{bottom:168.780000px;}
.yb3{bottom:175.530000px;}
.y93{bottom:175.905000px;}
.y96{bottom:178.200000px;}
.ya2{bottom:180.090000px;}
.y75{bottom:180.825000px;}
.y3f{bottom:181.920000px;}
.yb0{bottom:187.200000px;}
.y95{bottom:193.590000px;}
.y74{bottom:194.700000px;}
.y3e{bottom:195.030000px;}
.y27{bottom:195.195000px;}
.ya1{bottom:195.450000px;}
.y1f{bottom:196.470000px;}
.y17{bottom:197.700000px;}
.y36{bottom:201.525000px;}
.y32{bottom:201.570000px;}
.y26{bottom:208.350000px;}
.y73{bottom:208.950000px;}
.y94{bottom:209.325000px;}
.y1e{bottom:209.595000px;}
.ya0{bottom:210.465000px;}
.y31{bottom:214.695000px;}
.y16{bottom:215.700000px;}
.y45{bottom:217.125000px;}
.y25{bottom:221.475000px;}
.y3d{bottom:232.425000px;}
.y34{bottom:242.550000px;}
.y3c{bottom:245.550000px;}
.y30{bottom:254.775000px;}
.y24{bottom:255.000000px;}
.y33{bottom:255.675000px;}
.y1d{bottom:255.705000px;}
.y3b{bottom:258.675000px;}
.y2f{bottom:267.900000px;}
.y23{bottom:268.125000px;}
.y1c{bottom:268.845000px;}
.y3a{bottom:271.800000px;}
.y22{bottom:343.575000px;}
.y1b{bottom:353.445000px;}
.y21{bottom:357.450000px;}
.y35{bottom:360.330000px;}
.y1a{bottom:367.320000px;}
.y20{bottom:371.325000px;}
.y15{bottom:390.120000px;}
.y14{bottom:407.370000px;}
.y89{bottom:423.120000px;}
.y13{bottom:424.620000px;}
.y19{bottom:427.800000px;}
.y12{bottom:438.525000px;}
.y18{bottom:438.750000px;}
.y8e{bottom:474.150000px;}
.yae{bottom:514.125000px;}
.y86{bottom:729.000000px;}
.y83{bottom:867.750000px;}
.y72{bottom:902.880000px;}
.y5a{bottom:912.255000px;}
.y11{bottom:932.505000px;}
.y10{bottom:949.800000px;}
.y6c{bottom:957.375000px;}
.yf{bottom:967.050000px;}
.ye{bottom:984.300000px;}
.y66{bottom:987.750000px;}
.y5d{bottom:988.500000px;}
.y63{bottom:998.250000px;}
.yd{bottom:1001.550000px;}
.y60{bottom:1002.300000px;}
.y69{bottom:1004.625000px;}
.y68{bottom:1013.175000px;}
.y5f{bottom:1014.300000px;}
.yc{bottom:1018.800000px;}
.yb{bottom:1036.050000px;}
.y70{bottom:1048.500000px;}
.y6e{bottom:1051.875000px;}
.ya{bottom:1053.300000px;}
.y9{bottom:1070.550000px;}
.y8a{bottom:1075.080000px;}
.y8{bottom:1105.080000px;}
.y7{bottom:1122.330000px;}
.y2{bottom:1141.455000px;}
.y1{bottom:1171.830000px;}
.h1a{height:10.500000px;}
.h19{height:11.250000px;}
.h22{height:12.787500px;}
.h1b{height:13.875000px;}
.h27{height:15.750000px;}
.h18{height:21.750000px;}
.h10{height:22.500000px;}
.hf{height:27.351563px;}
.hd{height:27.465527px;}
.h6{height:27.527344px;}
.he{height:27.642041px;}
.h28{height:28.537500px;}
.h14{height:29.630859px;}
.h13{height:29.821289px;}
.h15{height:31.875000px;}
.h16{height:32.115234px;}
.h21{height:32.250000px;}
.ha{height:36.703125px;}
.hb{height:36.817822px;}
.h1f{height:38.250000px;}
.h9{height:38.997070px;}
.h20{height:41.291016px;}
.h4{height:47.109375px;}
.h12{height:47.625000px;}
.h17{height:48.000000px;}
.h11{height:48.375000px;}
.h1e{height:49.336436px;}
.h23{height:52.998047px;}
.h1d{height:54.421875px;}
.h5{height:58.886719px;}
.h24{height:64.875000px;}
.h8{height:72.937500px;}
.h3{height:96.750000px;}
.h2{height:157.218750px;}
.hc{height:169.875000px;}
.h1c{height:221.325000px;}
.h25{height:221.700000px;}
.h26{height:299.625000px;}
.h7{height:490.500000px;}
.h0{height:1262.625000px;}
.h1{height:1263.000000px;}
.w14{width:31.500000px;}
.wa{width:75.000000px;}
.w8{width:76.500000px;}
.wb{width:91.875000px;}
.we{width:96.375000px;}
.w13{width:100.912500px;}
.w12{width:101.287500px;}
.w6{width:102.000000px;}
.wd{width:108.000000px;}
.w7{width:108.375000px;}
.w5{width:115.500000px;}
.w9{width:134.250000px;}
.w4{width:220.575000px;}
.w11{width:246.870000px;}
.w2{width:329.250000px;}
.wc{width:333.525000px;}
.w15{width:335.775000px;}
.w3{width:336.375000px;}
.w16{width:345.525000px;}
.w10{width:484.695000px;}
.wf{width:882.750000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x55{left:6.000000px;}
.x41{left:10.875000px;}
.x2d{left:12.412500px;}
.x31{left:16.725000px;}
.x20{left:17.737500px;}
.x47{left:19.125000px;}
.x48{left:20.250000px;}
.x30{left:22.455000px;}
.x1f{left:23.475000px;}
.x46{left:24.495000px;}
.x4e{left:25.950000px;}
.x2f{left:28.155000px;}
.x1e{left:29.175000px;}
.x58{left:30.375000px;}
.x4f{left:31.950000px;}
.x53{left:33.412500px;}
.x4a{left:38.820000px;}
.x43{left:39.870000px;}
.x56{left:42.412500px;}
.x40{left:44.025000px;}
.x7{left:54.037487px;}
.x21{left:58.275000px;}
.x32{left:69.255000px;}
.x22{left:80.925000px;}
.x33{left:84.825000px;}
.x34{left:100.350000px;}
.x23{left:103.575000px;}
.x42{left:110.295000px;}
.x1d{left:112.500000px;}
.x2{left:113.662487px;}
.xc{left:116.137487px;}
.x24{left:126.225000px;}
.x52{left:128.700000px;}
.x35{left:131.475000px;}
.xd{left:138.562487px;}
.xb{left:139.762487px;}
.x4d{left:141.375000px;}
.x36{left:147.030000px;}
.x25{left:148.875000px;}
.x37{left:162.600000px;}
.x26{left:171.525000px;}
.x38{left:178.155000px;}
.x27{left:194.175000px;}
.x39{left:209.250000px;}
.x28{left:216.825000px;}
.x4{left:221.369987px;}
.x3a{left:224.820000px;}
.x29{left:239.475000px;}
.xf{left:241.394987px;}
.xe{left:242.504987px;}
.x11{left:246.344987px;}
.x10{left:253.769987px;}
.x3b{left:255.945000px;}
.x2a{left:262.125000px;}
.x3c{left:271.500000px;}
.x2b{left:284.775000px;}
.x3d{left:287.025000px;}
.x44{left:289.619987px;}
.x50{left:291.375000px;}
.x45{left:294.119987px;}
.x3e{left:302.580000px;}
.x2c{left:307.425000px;}
.x3f{left:318.150000px;}
.x3{left:327.899987px;}
.x13{left:329.474987px;}
.x12{left:342.974987px;}
.x14{left:347.594987px;}
.x57{left:360.900000px;}
.x1{left:376.274987px;}
.xa{left:384.029987px;}
.x49{left:413.625000px;}
.x4b{left:425.819987px;}
.x4c{left:433.319987px;}
.x15{left:440.594987px;}
.x2e{left:442.500000px;}
.x6{left:446.819987px;}
.x17{left:456.029987px;}
.x16{left:463.079987px;}
.x51{left:546.975000px;}
.x18{left:558.824987px;}
.x19{left:568.694987px;}
.x1a{left:665.399987px;}
.x1c{left:678.074987px;}
.x1b{left:686.819987px;}
.x9{left:780.704987px;}
.x8{left:785.204987px;}
.x54{left:792.000000px;}
.x5{left:838.454987px;}
@media print{
.v1{vertical-align:-61.333333pt;}
.v2{vertical-align:-49.333337pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.629333pt;}
.lsd{letter-spacing:-0.490667pt;}
.ls10{letter-spacing:-0.352000pt;}
.ls11{letter-spacing:-0.309333pt;}
.ls17{letter-spacing:-0.021333pt;}
.ls15{letter-spacing:-0.010667pt;}
.ls16{letter-spacing:-0.005333pt;}
.lse{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.005333pt;}
.ls7{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.149333pt;}
.lsf{letter-spacing:0.250667pt;}
.ls5{letter-spacing:0.277333pt;}
.ls12{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.325333pt;}
.ls14{letter-spacing:0.400000pt;}
.ls18{letter-spacing:0.410667pt;}
.ls1{letter-spacing:0.416000pt;}
.ls0{letter-spacing:0.490667pt;}
.lsc{letter-spacing:0.608000pt;}
.ls19{letter-spacing:0.736000pt;}
.ls4{letter-spacing:38.912000pt;}
.lsb{letter-spacing:546.960000pt;}
.ls2{letter-spacing:1383.226667pt;}
.ws8{word-spacing:-42.666667pt;}
.ws0{word-spacing:-35.274667pt;}
.ws1{word-spacing:-34.176000pt;}
.ws3{word-spacing:-29.434667pt;}
.ws4{word-spacing:-29.184000pt;}
.ws2{word-spacing:-21.749333pt;}
.ws13{word-spacing:-17.221333pt;}
.ws6{word-spacing:-15.957333pt;}
.ws7{word-spacing:-15.065600pt;}
.ws5{word-spacing:-15.018667pt;}
.ws11{word-spacing:-12.021333pt;}
.ws14{word-spacing:-12.010667pt;}
.ws16{word-spacing:-11.994667pt;}
.ws17{word-spacing:-11.989333pt;}
.ws15{word-spacing:-11.978667pt;}
.ws10{word-spacing:-11.856000pt;}
.wse{word-spacing:-11.310933pt;}
.ws9{word-spacing:-11.264000pt;}
.ws18{word-spacing:-11.077333pt;}
.wsf{word-spacing:-2.656000pt;}
.ws12{word-spacing:-0.042667pt;}
.ws19{word-spacing:0.000000pt;}
.wsd{word-spacing:89.994667pt;}
.wsc{word-spacing:98.762667pt;}
.wsa{word-spacing:102.709333pt;}
.wsb{word-spacing:104.821333pt;}
._3{margin-left:-2.282667pt;}
._0{margin-left:-0.944000pt;}
._1{width:0.938667pt;}
._2{width:2.048000pt;}
._5{width:10.005333pt;}
._6{width:16.405333pt;}
._9{width:27.242667pt;}
._7{width:36.000000pt;}
._8{width:45.653333pt;}
._a{width:73.989331pt;}
._4{width:112.650667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:32.133333pt;}
.fs9{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:42.800000pt;}
.fs6{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:138.666667pt;}
.y62{bottom:-8.733333pt;}
.yb2{bottom:-8.000000pt;}
.y5c{bottom:-2.000000pt;}
.y6b{bottom:-0.400000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:0.266667pt;}
.y6f{bottom:0.600000pt;}
.y58{bottom:1.293333pt;}
.y82{bottom:1.333333pt;}
.y61{bottom:1.933333pt;}
.y88{bottom:2.200000pt;}
.y4e{bottom:2.933333pt;}
.y71{bottom:3.600000pt;}
.y8d{bottom:4.000000pt;}
.yb1{bottom:4.333333pt;}
.yb5{bottom:4.706667pt;}
.y85{bottom:4.893333pt;}
.y92{bottom:5.000000pt;}
.y65{bottom:7.266667pt;}
.yad{bottom:7.706667pt;}
.yaf{bottom:9.773333pt;}
.y6a{bottom:9.933333pt;}
.y5b{bottom:10.333333pt;}
.y81{bottom:13.333333pt;}
.yb4{bottom:15.373333pt;}
.y56{bottom:15.666667pt;}
.y87{bottom:16.533333pt;}
.y4c{bottom:17.293333pt;}
.y8c{bottom:18.000000pt;}
.y64{bottom:18.600000pt;}
.y91{bottom:19.000000pt;}
.y84{bottom:19.560000pt;}
.yac{bottom:22.040000pt;}
.y80{bottom:25.666667pt;}
.y2e{bottom:26.106667pt;}
.y57{bottom:28.400000pt;}
.y4d{bottom:30.040000pt;}
.y8b{bottom:32.000000pt;}
.y90{bottom:32.666667pt;}
.y67{bottom:33.266667pt;}
.y5e{bottom:33.600000pt;}
.y9f{bottom:33.706667pt;}
.yab{bottom:35.706667pt;}
.y2d{bottom:37.773333pt;}
.y7f{bottom:38.000000pt;}
.y8f{bottom:46.666667pt;}
.y9e{bottom:48.040000pt;}
.yaa{bottom:49.373333pt;}
.y2c{bottom:49.440000pt;}
.y7e{bottom:50.373333pt;}
.y6{bottom:50.700000pt;}
.y44{bottom:54.360000pt;}
.y50{bottom:59.240000pt;}
.y46{bottom:60.840000pt;}
.y9d{bottom:61.706667pt;}
.y7d{bottom:62.706667pt;}
.y5{bottom:63.033333pt;}
.ya9{bottom:63.373333pt;}
.y43{bottom:66.026667pt;}
.y4f{bottom:69.200000pt;}
.y59{bottom:69.773333pt;}
.y51{bottom:74.573333pt;}
.y7c{bottom:74.706667pt;}
.y47{bottom:75.626667pt;}
.y9c{bottom:75.706667pt;}
.ya8{bottom:77.040000pt;}
.y2b{bottom:84.693333pt;}
.y7b{bottom:87.040000pt;}
.y9b{bottom:89.373333pt;}
.y52{bottom:89.906667pt;}
.y48{bottom:90.440000pt;}
.ya7{bottom:91.040000pt;}
.y2a{bottom:96.400000pt;}
.y7a{bottom:99.373333pt;}
.y42{bottom:101.706667pt;}
.y9a{bottom:103.040000pt;}
.ya6{bottom:104.706667pt;}
.y49{bottom:105.226667pt;}
.y53{bottom:105.266667pt;}
.y79{bottom:111.706667pt;}
.y41{bottom:113.360000pt;}
.y4{bottom:115.033333pt;}
.y99{bottom:117.066667pt;}
.ya5{bottom:118.413333pt;}
.y4a{bottom:120.040000pt;}
.y54{bottom:120.600000pt;}
.y78{bottom:124.040000pt;}
.y39{bottom:126.000000pt;}
.y3{bottom:127.366667pt;}
.y98{bottom:130.746667pt;}
.y29{bottom:132.026667pt;}
.ya4{bottom:132.413333pt;}
.y4b{bottom:134.840000pt;}
.y55{bottom:135.933333pt;}
.y77{bottom:136.040000pt;}
.y38{bottom:137.666667pt;}
.y28{bottom:143.706667pt;}
.y97{bottom:144.746667pt;}
.ya3{bottom:146.080000pt;}
.y76{bottom:148.373333pt;}
.y37{bottom:149.333333pt;}
.y40{bottom:150.026667pt;}
.yb3{bottom:156.026667pt;}
.y93{bottom:156.360000pt;}
.y96{bottom:158.400000pt;}
.ya2{bottom:160.080000pt;}
.y75{bottom:160.733333pt;}
.y3f{bottom:161.706667pt;}
.yb0{bottom:166.400000pt;}
.y95{bottom:172.080000pt;}
.y74{bottom:173.066667pt;}
.y3e{bottom:173.360000pt;}
.y27{bottom:173.506667pt;}
.ya1{bottom:173.733333pt;}
.y1f{bottom:174.640000pt;}
.y17{bottom:175.733333pt;}
.y36{bottom:179.133333pt;}
.y32{bottom:179.173333pt;}
.y26{bottom:185.200000pt;}
.y73{bottom:185.733333pt;}
.y94{bottom:186.066667pt;}
.y1e{bottom:186.306667pt;}
.ya0{bottom:187.080000pt;}
.y31{bottom:190.840000pt;}
.y16{bottom:191.733333pt;}
.y45{bottom:193.000000pt;}
.y25{bottom:196.866667pt;}
.y3d{bottom:206.600000pt;}
.y34{bottom:215.600000pt;}
.y3c{bottom:218.266667pt;}
.y30{bottom:226.466667pt;}
.y24{bottom:226.666667pt;}
.y33{bottom:227.266667pt;}
.y1d{bottom:227.293333pt;}
.y3b{bottom:229.933333pt;}
.y2f{bottom:238.133333pt;}
.y23{bottom:238.333333pt;}
.y1c{bottom:238.973333pt;}
.y3a{bottom:241.600000pt;}
.y22{bottom:305.400000pt;}
.y1b{bottom:314.173333pt;}
.y21{bottom:317.733333pt;}
.y35{bottom:320.293333pt;}
.y1a{bottom:326.506667pt;}
.y20{bottom:330.066667pt;}
.y15{bottom:346.773333pt;}
.y14{bottom:362.106667pt;}
.y89{bottom:376.106667pt;}
.y13{bottom:377.440000pt;}
.y19{bottom:380.266667pt;}
.y12{bottom:389.800000pt;}
.y18{bottom:390.000000pt;}
.y8e{bottom:421.466667pt;}
.yae{bottom:457.000000pt;}
.y86{bottom:648.000000pt;}
.y83{bottom:771.333333pt;}
.y72{bottom:802.560000pt;}
.y5a{bottom:810.893333pt;}
.y11{bottom:828.893333pt;}
.y10{bottom:844.266667pt;}
.y6c{bottom:851.000000pt;}
.yf{bottom:859.600000pt;}
.ye{bottom:874.933333pt;}
.y66{bottom:878.000000pt;}
.y5d{bottom:878.666667pt;}
.y63{bottom:887.333333pt;}
.yd{bottom:890.266667pt;}
.y60{bottom:890.933333pt;}
.y69{bottom:893.000000pt;}
.y68{bottom:900.600000pt;}
.y5f{bottom:901.600000pt;}
.yc{bottom:905.600000pt;}
.yb{bottom:920.933333pt;}
.y70{bottom:932.000000pt;}
.y6e{bottom:935.000000pt;}
.ya{bottom:936.266667pt;}
.y9{bottom:951.600000pt;}
.y8a{bottom:955.626667pt;}
.y8{bottom:982.293333pt;}
.y7{bottom:997.626667pt;}
.y2{bottom:1014.626667pt;}
.y1{bottom:1041.626667pt;}
.h1a{height:9.333333pt;}
.h19{height:10.000000pt;}
.h22{height:11.366667pt;}
.h1b{height:12.333333pt;}
.h27{height:14.000000pt;}
.h18{height:19.333333pt;}
.h10{height:20.000000pt;}
.hf{height:24.312500pt;}
.hd{height:24.413802pt;}
.h6{height:24.468750pt;}
.he{height:24.570703pt;}
.h28{height:25.366667pt;}
.h14{height:26.338542pt;}
.h13{height:26.507812pt;}
.h15{height:28.333333pt;}
.h16{height:28.546875pt;}
.h21{height:28.666667pt;}
.ha{height:32.625000pt;}
.hb{height:32.726953pt;}
.h1f{height:34.000000pt;}
.h9{height:34.664062pt;}
.h20{height:36.703125pt;}
.h4{height:41.875000pt;}
.h12{height:42.333333pt;}
.h17{height:42.666667pt;}
.h11{height:43.000000pt;}
.h1e{height:43.854610pt;}
.h23{height:47.109375pt;}
.h1d{height:48.375000pt;}
.h5{height:52.343750pt;}
.h24{height:57.666667pt;}
.h8{height:64.833333pt;}
.h3{height:86.000000pt;}
.h2{height:139.750000pt;}
.hc{height:151.000000pt;}
.h1c{height:196.733333pt;}
.h25{height:197.066667pt;}
.h26{height:266.333333pt;}
.h7{height:436.000000pt;}
.h0{height:1122.333333pt;}
.h1{height:1122.666667pt;}
.w14{width:28.000000pt;}
.wa{width:66.666667pt;}
.w8{width:68.000000pt;}
.wb{width:81.666667pt;}
.we{width:85.666667pt;}
.w13{width:89.700000pt;}
.w12{width:90.033333pt;}
.w6{width:90.666667pt;}
.wd{width:96.000000pt;}
.w7{width:96.333333pt;}
.w5{width:102.666667pt;}
.w9{width:119.333333pt;}
.w4{width:196.066667pt;}
.w11{width:219.440000pt;}
.w2{width:292.666667pt;}
.wc{width:296.466667pt;}
.w15{width:298.466667pt;}
.w3{width:299.000000pt;}
.w16{width:307.133333pt;}
.w10{width:430.840000pt;}
.wf{width:784.666667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x55{left:5.333333pt;}
.x41{left:9.666667pt;}
.x2d{left:11.033333pt;}
.x31{left:14.866667pt;}
.x20{left:15.766667pt;}
.x47{left:17.000000pt;}
.x48{left:18.000000pt;}
.x30{left:19.960000pt;}
.x1f{left:20.866667pt;}
.x46{left:21.773333pt;}
.x4e{left:23.066667pt;}
.x2f{left:25.026667pt;}
.x1e{left:25.933333pt;}
.x58{left:27.000000pt;}
.x4f{left:28.400000pt;}
.x53{left:29.700000pt;}
.x4a{left:34.506667pt;}
.x43{left:35.440000pt;}
.x56{left:37.700000pt;}
.x40{left:39.133333pt;}
.x7{left:48.033322pt;}
.x21{left:51.800000pt;}
.x32{left:61.560000pt;}
.x22{left:71.933333pt;}
.x33{left:75.400000pt;}
.x34{left:89.200000pt;}
.x23{left:92.066667pt;}
.x42{left:98.040000pt;}
.x1d{left:100.000000pt;}
.x2{left:101.033322pt;}
.xc{left:103.233322pt;}
.x24{left:112.200000pt;}
.x52{left:114.400000pt;}
.x35{left:116.866667pt;}
.xd{left:123.166655pt;}
.xb{left:124.233322pt;}
.x4d{left:125.666667pt;}
.x36{left:130.693333pt;}
.x25{left:132.333333pt;}
.x37{left:144.533333pt;}
.x26{left:152.466667pt;}
.x38{left:158.360000pt;}
.x27{left:172.600000pt;}
.x39{left:186.000000pt;}
.x28{left:192.733333pt;}
.x4{left:196.773322pt;}
.x3a{left:199.840000pt;}
.x29{left:212.866667pt;}
.xf{left:214.573322pt;}
.xe{left:215.559988pt;}
.x11{left:218.973322pt;}
.x10{left:225.573322pt;}
.x3b{left:227.506667pt;}
.x2a{left:233.000000pt;}
.x3c{left:241.333333pt;}
.x2b{left:253.133333pt;}
.x3d{left:255.133333pt;}
.x44{left:257.439988pt;}
.x50{left:259.000000pt;}
.x45{left:261.439988pt;}
.x3e{left:268.960000pt;}
.x2c{left:273.266667pt;}
.x3f{left:282.800000pt;}
.x3{left:291.466655pt;}
.x13{left:292.866655pt;}
.x12{left:304.866655pt;}
.x14{left:308.973322pt;}
.x57{left:320.800000pt;}
.x1{left:334.466655pt;}
.xa{left:341.359988pt;}
.x49{left:367.666667pt;}
.x4b{left:378.506655pt;}
.x4c{left:385.173322pt;}
.x15{left:391.639988pt;}
.x2e{left:393.333333pt;}
.x6{left:397.173322pt;}
.x17{left:405.359988pt;}
.x16{left:411.626655pt;}
.x51{left:486.200000pt;}
.x18{left:496.733322pt;}
.x19{left:505.506655pt;}
.x1a{left:591.466655pt;}
.x1c{left:602.733322pt;}
.x1b{left:610.506655pt;}
.x9{left:693.959988pt;}
.x8{left:697.959988pt;}
.x54{left:704.000000pt;}
.x5{left:745.293322pt;}
}




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