
    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_7012ee4946aae40bcb9079c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_e19655971689429e4c5f059c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_fd3d3503e55fd3fcb616f414.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9c5cec7c3fdca9a15b4e030b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008789;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_a0b9583adca66205ece08fdb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.019531;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_a0fb4d5854f63c9750656fba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_de1d18b2a966fb57c92a0c65.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8bb5af70615c474b6de6d731.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.000000px;}
.v1{vertical-align:48.000000px;}
.ls7{letter-spacing:-1.116000px;}
.ls8{letter-spacing:-0.984000px;}
.lsc{letter-spacing:-0.570000px;}
.ls5{letter-spacing:-0.516000px;}
.ls6{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.012000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.165000px;}
.ls1{letter-spacing:0.372000px;}
.ls2{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.456000px;}
.ls0{letter-spacing:0.516000px;}
.lsb{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.930000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws2{word-spacing:-31.464000px;}
.ws6{word-spacing:-19.860000px;}
.ws5{word-spacing:-16.902000px;}
.ws4{word-spacing:-15.918000px;}
.ws3{word-spacing:-15.822000px;}
.wsa{word-spacing:-15.816000px;}
.ws1{word-spacing:-15.024000px;}
.wsd{word-spacing:-15.015000px;}
.ws0{word-spacing:-14.508000px;}
.wsb{word-spacing:-14.085000px;}
.wsc{word-spacing:-13.515000px;}
.ws8{word-spacing:-12.207000px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-2.400000px;}
._0{margin-left:-1.260000px;}
._1{width:1.212000px;}
._9{width:2.712000px;}
._a{width:3.756000px;}
._12{width:4.818000px;}
._15{width:6.480000px;}
._14{width:7.506000px;}
._3{width:8.748000px;}
._d{width:10.602000px;}
._c{width:11.772000px;}
._b{width:12.852000px;}
._13{width:13.932000px;}
._16{width:15.228000px;}
._1f{width:16.800000px;}
._18{width:18.762000px;}
._17{width:19.764000px;}
._20{width:20.808000px;}
._21{width:22.080000px;}
._27{width:23.760000px;}
._28{width:25.380000px;}
._26{width:30.180000px;}
._24{width:31.440000px;}
._25{width:32.460000px;}
._e{width:33.750000px;}
._f{width:34.968000px;}
._19{width:36.738000px;}
._1a{width:38.502000px;}
._1b{width:43.410000px;}
._11{width:72.252000px;}
._10{width:73.296000px;}
._8{width:75.468000px;}
._5{width:84.360000px;}
._4{width:89.160000px;}
._7{width:98.400000px;}
._6{width:99.600000px;}
._2{width:107.160000px;}
._1c{width:115.674000px;}
._1d{width:116.778000px;}
._23{width:186.888000px;}
._22{width:188.538000px;}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:3.000000px;}
.fs6{font-size:6.000000px;}
.fs3{font-size:12.000000px;}
.fs12{font-size:24.000000px;}
.fsb{font-size:36.000000px;}
.fsf{font-size:39.000000px;}
.fs11{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs10{font-size:63.244921px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:84.000000px;}
.fs5{font-size:87.000000px;}
.fse{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:120.000000px;}
.fs4{font-size:144.000000px;}
.fs7{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y76{bottom:2.250000px;}
.yb5{bottom:2.610000px;}
.ya{bottom:2.625000px;}
.y36{bottom:3.000000px;}
.y1d{bottom:3.375000px;}
.y4d{bottom:3.750000px;}
.y43{bottom:4.125000px;}
.y4{bottom:4.500000px;}
.yba{bottom:4.530000px;}
.y72{bottom:4.875000px;}
.y1b{bottom:7.125000px;}
.yb{bottom:8.625000px;}
.ye{bottom:9.375000px;}
.y5{bottom:10.125000px;}
.y7{bottom:14.662500px;}
.y74{bottom:15.000000px;}
.yb4{bottom:16.110000px;}
.y41{bottom:19.125000px;}
.y34{bottom:19.155000px;}
.y50{bottom:19.500000px;}
.y4c{bottom:20.250000px;}
.y8{bottom:20.625000px;}
.yc{bottom:21.000000px;}
.y6d{bottom:21.375000px;}
.y85{bottom:21.382500px;}
.y3{bottom:22.500000px;}
.yaa{bottom:23.625000px;}
.y77{bottom:24.375000px;}
.yb3{bottom:29.610000px;}
.y40{bottom:35.250000px;}
.y33{bottom:35.280000px;}
.y4b{bottom:36.375000px;}
.y6c{bottom:39.382500px;}
.y1a{bottom:39.750000px;}
.y51{bottom:40.155000px;}
.y71{bottom:41.250000px;}
.yb2{bottom:43.110000px;}
.ya9{bottom:47.250000px;}
.yb0{bottom:51.000000px;}
.y32{bottom:51.405000px;}
.y3f{bottom:51.750000px;}
.y4a{bottom:52.875000px;}
.yb1{bottom:56.625000px;}
.y6b{bottom:57.367500px;}
.y5f{bottom:60.367500px;}
.y9{bottom:60.750000px;}
.ya8{bottom:65.625000px;}
.y3e{bottom:67.875000px;}
.y31{bottom:67.905000px;}
.y49{bottom:69.000000px;}
.y6{bottom:70.875000px;}
.y19{bottom:72.420000px;}
.y6a{bottom:75.382500px;}
.y84{bottom:75.787500px;}
.y75{bottom:79.875000px;}
.y5e{bottom:79.882500px;}
.ya7{bottom:83.670000px;}
.y30{bottom:84.030000px;}
.y3d{bottom:84.375000px;}
.y48{bottom:85.500000px;}
.y73{bottom:89.662500px;}
.y69{bottom:93.787500px;}
.y10{bottom:97.545000px;}
.y5d{bottom:99.412500px;}
.y2f{bottom:100.530000px;}
.y3c{bottom:100.545000px;}
.y47{bottom:101.670000px;}
.ya6{bottom:104.295000px;}
.y18{bottom:105.045000px;}
.y68{bottom:111.787500px;}
.y2e{bottom:116.655000px;}
.y54{bottom:116.662500px;}
.y3b{bottom:116.670000px;}
.y1f{bottom:117.030000px;}
.y46{bottom:117.795000px;}
.y5c{bottom:118.912500px;}
.y28{bottom:127.530000px;}
.ya5{bottom:128.670000px;}
.y67{bottom:129.787500px;}
.y78{bottom:133.162500px;}
.y3a{bottom:133.170000px;}
.y2d{bottom:133.200000px;}
.y45{bottom:134.295000px;}
.y17{bottom:137.670000px;}
.y27{bottom:138.405000px;}
.y5b{bottom:138.787500px;}
.y66{bottom:147.787500px;}
.y83{bottom:148.162500px;}
.ya4{bottom:148.545000px;}
.y26{bottom:149.280000px;}
.y39{bottom:149.295000px;}
.y2c{bottom:149.310000px;}
.y44{bottom:150.420000px;}
.y5a{bottom:158.287500px;}
.y25{bottom:160.155000px;}
.y82{bottom:165.787500px;}
.y38{bottom:165.795000px;}
.y2b{bottom:165.810000px;}
.y65{bottom:166.162500px;}
.ya3{bottom:166.545000px;}
.y16{bottom:170.325000px;}
.y24{bottom:171.060000px;}
.y59{bottom:177.787500px;}
.y81{bottom:180.037500px;}
.y37{bottom:181.920000px;}
.y23{bottom:181.935000px;}
.y64{bottom:184.162500px;}
.ya2{bottom:184.920000px;}
.y22{bottom:192.810000px;}
.y80{bottom:194.662500px;}
.y58{bottom:197.287500px;}
.y63{bottom:202.162500px;}
.ya1{bottom:202.920000px;}
.y15{bottom:202.950000px;}
.y21{bottom:203.685000px;}
.y7f{bottom:206.692500px;}
.y20{bottom:214.935000px;}
.y57{bottom:217.207500px;}
.y62{bottom:220.582500px;}
.ya0{bottom:220.950000px;}
.y14{bottom:235.950000px;}
.y56{bottom:236.692500px;}
.y61{bottom:238.582500px;}
.y9f{bottom:239.325000px;}
.y55{bottom:256.192500px;}
.y60{bottom:256.567500px;}
.y9e{bottom:257.325000px;}
.y13{bottom:268.575000px;}
.y12{bottom:271.200000px;}
.y9d{bottom:275.325000px;}
.ybc{bottom:289.950000px;}
.ybb{bottom:291.450000px;}
.y9c{bottom:293.325000px;}
.y9b{bottom:311.700000px;}
.yb9{bottom:328.200000px;}
.y9a{bottom:329.700000px;}
.yb8{bottom:342.855000px;}
.yb7{bottom:344.745000px;}
.yb6{bottom:347.370000px;}
.y99{bottom:347.730000px;}
.yaf{bottom:353.370000px;}
.y98{bottom:366.120000px;}
.y97{bottom:384.105000px;}
.y53{bottom:393.105000px;}
.y29{bottom:395.355000px;}
.y96{bottom:402.105000px;}
.y52{bottom:417.495000px;}
.y4f{bottom:418.995000px;}
.y95{bottom:420.105000px;}
.yae{bottom:421.245000px;}
.yad{bottom:434.370000px;}
.y94{bottom:438.480000px;}
.y93{bottom:456.525000px;}
.y4e{bottom:468.900000px;}
.yac{bottom:472.275000px;}
.y92{bottom:474.525000px;}
.yf{bottom:485.025000px;}
.y91{bottom:492.525000px;}
.yab{bottom:496.650000px;}
.y86{bottom:497.775000px;}
.y90{bottom:510.900000px;}
.y8f{bottom:528.900000px;}
.y8e{bottom:546.900000px;}
.y8d{bottom:565.275000px;}
.yd{bottom:582.570000px;}
.y8c{bottom:583.305000px;}
.y8b{bottom:601.305000px;}
.y8a{bottom:619.305000px;}
.y89{bottom:637.680000px;}
.y42{bottom:648.945000px;}
.y88{bottom:655.680000px;}
.y1e{bottom:665.445000px;}
.y87{bottom:673.680000px;}
.y35{bottom:680.445000px;}
.y2a{bottom:696.945000px;}
.y1c{bottom:892.380000px;}
.y11{bottom:908.880000px;}
.y7e{bottom:947.917500px;}
.y7d{bottom:965.917500px;}
.y7c{bottom:983.917500px;}
.y7b{bottom:1002.292500px;}
.y7a{bottom:1020.292500px;}
.y79{bottom:1038.292500px;}
.y70{bottom:1190.205000px;}
.y2{bottom:1206.750000px;}
.y6f{bottom:1209.000000px;}
.y1{bottom:1227.000000px;}
.y6e{bottom:1227.750000px;}
.h11{height:2.490234px;}
.hd{height:3.999023px;}
.h32{height:4.166016px;}
.h25{height:4.910156px;}
.h2f{height:5.287500px;}
.h9{height:5.625000px;}
.ha{height:9.820312px;}
.h38{height:13.125000px;}
.h3d{height:14.287500px;}
.h1f{height:16.125000px;}
.h15{height:16.500000px;}
.h3c{height:19.640625px;}
.h18{height:29.460938px;}
.h6{height:31.537500px;}
.h2d{height:31.875000px;}
.h36{height:32.662500px;}
.h23{height:36.000000px;}
.h3e{height:36.750000px;}
.h3b{height:36.826172px;}
.h1d{height:37.494141px;}
.hb{height:38.250000px;}
.h30{height:38.625000px;}
.h8{height:39.281250px;}
.h39{height:39.351562px;}
.h24{height:40.500000px;}
.h7{height:43.875000px;}
.h2e{height:43.912500px;}
.h1b{height:44.191406px;}
.h20{height:45.000000px;}
.h29{height:49.101562px;}
.h16{height:49.189453px;}
.h2{height:49.804688px;}
.h21{height:49.912500px;}
.h3{height:49.992188px;}
.h34{height:51.757074px;}
.h2a{height:52.916016px;}
.h28{height:54.000000px;}
.h5{height:58.921875px;}
.h22{height:63.000000px;}
.h3a{height:67.875000px;}
.h2b{height:68.742188px;}
.h26{height:78.562500px;}
.h35{height:78.703125px;}
.h4{height:79.912500px;}
.h2c{height:80.287500px;}
.h13{height:89.648438px;}
.h37{height:98.378906px;}
.h14{height:99.609375px;}
.hc{height:113.250000px;}
.hf{height:134.472656px;}
.h1e{height:163.920000px;}
.h1c{height:195.420000px;}
.h1a{height:195.450000px;}
.h17{height:226.935000px;}
.h27{height:271.575000px;}
.h12{height:294.120000px;}
.h19{height:407.370000px;}
.he{height:620.445000px;}
.h33{height:688.680000px;}
.h10{height:717.975000px;}
.h31{height:1053.300000px;}
.h0{height:1261.125000px;}
.h1{height:1261.500000px;}
.w8{width:17.662500px;}
.wc{width:21.375000px;}
.w19{width:50.625000px;}
.w6{width:56.250000px;}
.w5{width:59.250000px;}
.w7{width:72.375000px;}
.w2{width:97.537500px;}
.w15{width:101.287500px;}
.w11{width:105.787500px;}
.w13{width:106.162500px;}
.w10{width:114.787500px;}
.wa{width:116.700000px;}
.w12{width:117.412500px;}
.w14{width:138.450000px;}
.w16{width:157.155000px;}
.w3{width:182.700000px;}
.wb{width:201.825000px;}
.we{width:318.525000px;}
.wd{width:389.025000px;}
.w4{width:461.820000px;}
.w17{width:644.145000px;}
.w9{width:711.270000px;}
.wf{width:728.925000px;}
.w1a{width:750.675000px;}
.w18{width:801.300000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:8.250000px;}
.x8{left:13.875000px;}
.x1a{left:15.750000px;}
.x15{left:18.375000px;}
.x12{left:36.000000px;}
.x22{left:38.295000px;}
.xb{left:42.750000px;}
.x2{left:45.787500px;}
.xa{left:51.000000px;}
.x1{left:54.037487px;}
.x25{left:75.795000px;}
.x3{left:89.287500px;}
.x20{left:95.287487px;}
.x27{left:96.412500px;}
.xe{left:99.037500px;}
.x1c{left:109.530000px;}
.xc{left:118.162500px;}
.xd{left:135.825000px;}
.x4{left:143.325000px;}
.x14{left:160.575000px;}
.x24{left:163.199987px;}
.x26{left:164.325000px;}
.x5{left:174.825000px;}
.x1e{left:202.950000px;}
.xf{left:234.870000px;}
.x16{left:266.370000px;}
.x23{left:287.370000px;}
.x6{left:326.025000px;}
.x28{left:350.362500px;}
.x13{left:364.282500px;}
.x17{left:383.775000px;}
.x10{left:436.695000px;}
.x1d{left:446.444987px;}
.x29{left:451.312500px;}
.x11{left:458.070000px;}
.x18{left:489.945000px;}
.x21{left:626.505000px;}
.x19{left:628.395000px;}
.x1f{left:671.174987px;}
.x1b{left:729.675000px;}
.x9{left:787.845000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.666667pt;}
.v1{vertical-align:42.666667pt;}
.ls7{letter-spacing:-0.992000pt;}
.ls8{letter-spacing:-0.874667pt;}
.lsc{letter-spacing:-0.506667pt;}
.ls5{letter-spacing:-0.458667pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.146667pt;}
.ls1{letter-spacing:0.330667pt;}
.ls2{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.405333pt;}
.ls0{letter-spacing:0.458667pt;}
.lsb{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.826667pt;}
.ws7{word-spacing:-64.000000pt;}
.ws2{word-spacing:-27.968000pt;}
.ws6{word-spacing:-17.653333pt;}
.ws5{word-spacing:-15.024000pt;}
.ws4{word-spacing:-14.149333pt;}
.ws3{word-spacing:-14.064000pt;}
.wsa{word-spacing:-14.058667pt;}
.ws1{word-spacing:-13.354667pt;}
.wsd{word-spacing:-13.346667pt;}
.ws0{word-spacing:-12.896000pt;}
.wsb{word-spacing:-12.520000pt;}
.wsc{word-spacing:-12.013333pt;}
.ws8{word-spacing:-10.850667pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-2.133333pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.077333pt;}
._9{width:2.410667pt;}
._a{width:3.338667pt;}
._12{width:4.282667pt;}
._15{width:5.760000pt;}
._14{width:6.672000pt;}
._3{width:7.776000pt;}
._d{width:9.424000pt;}
._c{width:10.464000pt;}
._b{width:11.424000pt;}
._13{width:12.384000pt;}
._16{width:13.536000pt;}
._1f{width:14.933333pt;}
._18{width:16.677333pt;}
._17{width:17.568000pt;}
._20{width:18.496000pt;}
._21{width:19.626667pt;}
._27{width:21.120000pt;}
._28{width:22.560000pt;}
._26{width:26.826667pt;}
._24{width:27.946667pt;}
._25{width:28.853333pt;}
._e{width:30.000000pt;}
._f{width:31.082667pt;}
._19{width:32.656000pt;}
._1a{width:34.224000pt;}
._1b{width:38.586667pt;}
._11{width:64.224000pt;}
._10{width:65.152000pt;}
._8{width:67.082667pt;}
._5{width:74.986667pt;}
._4{width:79.253333pt;}
._7{width:87.466667pt;}
._6{width:88.533333pt;}
._2{width:95.253333pt;}
._1c{width:102.821333pt;}
._1d{width:103.802667pt;}
._23{width:166.122667pt;}
._22{width:167.589333pt;}
.fs8{font-size:2.666667pt;}
.fs6{font-size:5.333333pt;}
.fs3{font-size:10.666667pt;}
.fs12{font-size:21.333333pt;}
.fsb{font-size:32.000000pt;}
.fsf{font-size:34.666667pt;}
.fs11{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs10{font-size:56.217707pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:74.666667pt;}
.fs5{font-size:77.333333pt;}
.fse{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:106.666667pt;}
.fs4{font-size:128.000000pt;}
.fs7{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:2.000000pt;}
.yb5{bottom:2.320000pt;}
.ya{bottom:2.333333pt;}
.y36{bottom:2.666667pt;}
.y1d{bottom:3.000000pt;}
.y4d{bottom:3.333333pt;}
.y43{bottom:3.666667pt;}
.y4{bottom:4.000000pt;}
.yba{bottom:4.026667pt;}
.y72{bottom:4.333333pt;}
.y1b{bottom:6.333333pt;}
.yb{bottom:7.666667pt;}
.ye{bottom:8.333333pt;}
.y5{bottom:9.000000pt;}
.y7{bottom:13.033333pt;}
.y74{bottom:13.333333pt;}
.yb4{bottom:14.320000pt;}
.y41{bottom:17.000000pt;}
.y34{bottom:17.026667pt;}
.y50{bottom:17.333333pt;}
.y4c{bottom:18.000000pt;}
.y8{bottom:18.333333pt;}
.yc{bottom:18.666667pt;}
.y6d{bottom:19.000000pt;}
.y85{bottom:19.006667pt;}
.y3{bottom:20.000000pt;}
.yaa{bottom:21.000000pt;}
.y77{bottom:21.666667pt;}
.yb3{bottom:26.320000pt;}
.y40{bottom:31.333333pt;}
.y33{bottom:31.360000pt;}
.y4b{bottom:32.333333pt;}
.y6c{bottom:35.006667pt;}
.y1a{bottom:35.333333pt;}
.y51{bottom:35.693333pt;}
.y71{bottom:36.666667pt;}
.yb2{bottom:38.320000pt;}
.ya9{bottom:42.000000pt;}
.yb0{bottom:45.333333pt;}
.y32{bottom:45.693333pt;}
.y3f{bottom:46.000000pt;}
.y4a{bottom:47.000000pt;}
.yb1{bottom:50.333333pt;}
.y6b{bottom:50.993333pt;}
.y5f{bottom:53.660000pt;}
.y9{bottom:54.000000pt;}
.ya8{bottom:58.333333pt;}
.y3e{bottom:60.333333pt;}
.y31{bottom:60.360000pt;}
.y49{bottom:61.333333pt;}
.y6{bottom:63.000000pt;}
.y19{bottom:64.373333pt;}
.y6a{bottom:67.006667pt;}
.y84{bottom:67.366667pt;}
.y75{bottom:71.000000pt;}
.y5e{bottom:71.006667pt;}
.ya7{bottom:74.373333pt;}
.y30{bottom:74.693333pt;}
.y3d{bottom:75.000000pt;}
.y48{bottom:76.000000pt;}
.y73{bottom:79.700000pt;}
.y69{bottom:83.366667pt;}
.y10{bottom:86.706667pt;}
.y5d{bottom:88.366667pt;}
.y2f{bottom:89.360000pt;}
.y3c{bottom:89.373333pt;}
.y47{bottom:90.373333pt;}
.ya6{bottom:92.706667pt;}
.y18{bottom:93.373333pt;}
.y68{bottom:99.366667pt;}
.y2e{bottom:103.693333pt;}
.y54{bottom:103.700000pt;}
.y3b{bottom:103.706667pt;}
.y1f{bottom:104.026667pt;}
.y46{bottom:104.706667pt;}
.y5c{bottom:105.700000pt;}
.y28{bottom:113.360000pt;}
.ya5{bottom:114.373333pt;}
.y67{bottom:115.366667pt;}
.y78{bottom:118.366667pt;}
.y3a{bottom:118.373333pt;}
.y2d{bottom:118.400000pt;}
.y45{bottom:119.373333pt;}
.y17{bottom:122.373333pt;}
.y27{bottom:123.026667pt;}
.y5b{bottom:123.366667pt;}
.y66{bottom:131.366667pt;}
.y83{bottom:131.700000pt;}
.ya4{bottom:132.040000pt;}
.y26{bottom:132.693333pt;}
.y39{bottom:132.706667pt;}
.y2c{bottom:132.720000pt;}
.y44{bottom:133.706667pt;}
.y5a{bottom:140.700000pt;}
.y25{bottom:142.360000pt;}
.y82{bottom:147.366667pt;}
.y38{bottom:147.373333pt;}
.y2b{bottom:147.386667pt;}
.y65{bottom:147.700000pt;}
.ya3{bottom:148.040000pt;}
.y16{bottom:151.400000pt;}
.y24{bottom:152.053333pt;}
.y59{bottom:158.033333pt;}
.y81{bottom:160.033333pt;}
.y37{bottom:161.706667pt;}
.y23{bottom:161.720000pt;}
.y64{bottom:163.700000pt;}
.ya2{bottom:164.373333pt;}
.y22{bottom:171.386667pt;}
.y80{bottom:173.033333pt;}
.y58{bottom:175.366667pt;}
.y63{bottom:179.700000pt;}
.ya1{bottom:180.373333pt;}
.y15{bottom:180.400000pt;}
.y21{bottom:181.053333pt;}
.y7f{bottom:183.726667pt;}
.y20{bottom:191.053333pt;}
.y57{bottom:193.073333pt;}
.y62{bottom:196.073333pt;}
.ya0{bottom:196.400000pt;}
.y14{bottom:209.733333pt;}
.y56{bottom:210.393333pt;}
.y61{bottom:212.073333pt;}
.y9f{bottom:212.733333pt;}
.y55{bottom:227.726667pt;}
.y60{bottom:228.060000pt;}
.y9e{bottom:228.733333pt;}
.y13{bottom:238.733333pt;}
.y12{bottom:241.066667pt;}
.y9d{bottom:244.733333pt;}
.ybc{bottom:257.733333pt;}
.ybb{bottom:259.066667pt;}
.y9c{bottom:260.733333pt;}
.y9b{bottom:277.066667pt;}
.yb9{bottom:291.733333pt;}
.y9a{bottom:293.066667pt;}
.yb8{bottom:304.760000pt;}
.yb7{bottom:306.440000pt;}
.yb6{bottom:308.773333pt;}
.y99{bottom:309.093333pt;}
.yaf{bottom:314.106667pt;}
.y98{bottom:325.440000pt;}
.y97{bottom:341.426667pt;}
.y53{bottom:349.426667pt;}
.y29{bottom:351.426667pt;}
.y96{bottom:357.426667pt;}
.y52{bottom:371.106667pt;}
.y4f{bottom:372.440000pt;}
.y95{bottom:373.426667pt;}
.yae{bottom:374.440000pt;}
.yad{bottom:386.106667pt;}
.y94{bottom:389.760000pt;}
.y93{bottom:405.800000pt;}
.y4e{bottom:416.800000pt;}
.yac{bottom:419.800000pt;}
.y92{bottom:421.800000pt;}
.yf{bottom:431.133333pt;}
.y91{bottom:437.800000pt;}
.yab{bottom:441.466667pt;}
.y86{bottom:442.466667pt;}
.y90{bottom:454.133333pt;}
.y8f{bottom:470.133333pt;}
.y8e{bottom:486.133333pt;}
.y8d{bottom:502.466667pt;}
.yd{bottom:517.840000pt;}
.y8c{bottom:518.493333pt;}
.y8b{bottom:534.493333pt;}
.y8a{bottom:550.493333pt;}
.y89{bottom:566.826667pt;}
.y42{bottom:576.840000pt;}
.y88{bottom:582.826667pt;}
.y1e{bottom:591.506667pt;}
.y87{bottom:598.826667pt;}
.y35{bottom:604.840000pt;}
.y2a{bottom:619.506667pt;}
.y1c{bottom:793.226667pt;}
.y11{bottom:807.893333pt;}
.y7e{bottom:842.593333pt;}
.y7d{bottom:858.593333pt;}
.y7c{bottom:874.593333pt;}
.y7b{bottom:890.926667pt;}
.y7a{bottom:906.926667pt;}
.y79{bottom:922.926667pt;}
.y70{bottom:1057.960000pt;}
.y2{bottom:1072.666667pt;}
.y6f{bottom:1074.666667pt;}
.y1{bottom:1090.666667pt;}
.y6e{bottom:1091.333333pt;}
.h11{height:2.213542pt;}
.hd{height:3.554688pt;}
.h32{height:3.703125pt;}
.h25{height:4.364583pt;}
.h2f{height:4.700000pt;}
.h9{height:5.000000pt;}
.ha{height:8.729167pt;}
.h38{height:11.666667pt;}
.h3d{height:12.700000pt;}
.h1f{height:14.333333pt;}
.h15{height:14.666667pt;}
.h3c{height:17.458333pt;}
.h18{height:26.187500pt;}
.h6{height:28.033333pt;}
.h2d{height:28.333333pt;}
.h36{height:29.033333pt;}
.h23{height:32.000000pt;}
.h3e{height:32.666667pt;}
.h3b{height:32.734375pt;}
.h1d{height:33.328125pt;}
.hb{height:34.000000pt;}
.h30{height:34.333333pt;}
.h8{height:34.916667pt;}
.h39{height:34.979167pt;}
.h24{height:36.000000pt;}
.h7{height:39.000000pt;}
.h2e{height:39.033333pt;}
.h1b{height:39.281250pt;}
.h20{height:40.000000pt;}
.h29{height:43.645833pt;}
.h16{height:43.723958pt;}
.h2{height:44.270833pt;}
.h21{height:44.366667pt;}
.h3{height:44.437500pt;}
.h34{height:46.006288pt;}
.h2a{height:47.036458pt;}
.h28{height:48.000000pt;}
.h5{height:52.375000pt;}
.h22{height:56.000000pt;}
.h3a{height:60.333333pt;}
.h2b{height:61.104167pt;}
.h26{height:69.833333pt;}
.h35{height:69.958333pt;}
.h4{height:71.033333pt;}
.h2c{height:71.366667pt;}
.h13{height:79.687500pt;}
.h37{height:87.447917pt;}
.h14{height:88.541667pt;}
.hc{height:100.666667pt;}
.hf{height:119.531250pt;}
.h1e{height:145.706667pt;}
.h1c{height:173.706667pt;}
.h1a{height:173.733333pt;}
.h17{height:201.720000pt;}
.h27{height:241.400000pt;}
.h12{height:261.440000pt;}
.h19{height:362.106667pt;}
.he{height:551.506667pt;}
.h33{height:612.160000pt;}
.h10{height:638.200000pt;}
.h31{height:936.266667pt;}
.h0{height:1121.000000pt;}
.h1{height:1121.333333pt;}
.w8{width:15.700000pt;}
.wc{width:19.000000pt;}
.w19{width:45.000000pt;}
.w6{width:50.000000pt;}
.w5{width:52.666667pt;}
.w7{width:64.333333pt;}
.w2{width:86.700000pt;}
.w15{width:90.033333pt;}
.w11{width:94.033333pt;}
.w13{width:94.366667pt;}
.w10{width:102.033333pt;}
.wa{width:103.733333pt;}
.w12{width:104.366667pt;}
.w14{width:123.066667pt;}
.w16{width:139.693333pt;}
.w3{width:162.400000pt;}
.wb{width:179.400000pt;}
.we{width:283.133333pt;}
.wd{width:345.800000pt;}
.w4{width:410.506667pt;}
.w17{width:572.573333pt;}
.w9{width:632.240000pt;}
.wf{width:647.933333pt;}
.w1a{width:667.266667pt;}
.w18{width:712.266667pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:7.333333pt;}
.x8{left:12.333333pt;}
.x1a{left:14.000000pt;}
.x15{left:16.333333pt;}
.x12{left:32.000000pt;}
.x22{left:34.040000pt;}
.xb{left:38.000000pt;}
.x2{left:40.700000pt;}
.xa{left:45.333333pt;}
.x1{left:48.033322pt;}
.x25{left:67.373333pt;}
.x3{left:79.366667pt;}
.x20{left:84.699988pt;}
.x27{left:85.700000pt;}
.xe{left:88.033333pt;}
.x1c{left:97.360000pt;}
.xc{left:105.033333pt;}
.xd{left:120.733333pt;}
.x4{left:127.400000pt;}
.x14{left:142.733333pt;}
.x24{left:145.066655pt;}
.x26{left:146.066667pt;}
.x5{left:155.400000pt;}
.x1e{left:180.400000pt;}
.xf{left:208.773333pt;}
.x16{left:236.773333pt;}
.x23{left:255.440000pt;}
.x6{left:289.800000pt;}
.x28{left:311.433333pt;}
.x13{left:323.806667pt;}
.x17{left:341.133333pt;}
.x10{left:388.173333pt;}
.x1d{left:396.839988pt;}
.x29{left:401.166667pt;}
.x11{left:407.173333pt;}
.x18{left:435.506667pt;}
.x21{left:556.893333pt;}
.x19{left:558.573333pt;}
.x1f{left:596.599988pt;}
.x1b{left:648.600000pt;}
.x9{left:700.306667pt;}
}




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