
    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_428e9fde04a7bf6f147ba985.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_e745c44d3992cbe3dea19333.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_ad428fa68e19f6cea9e0baf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_429d2132b61ac3fa6f5f7956.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_07cab4da45f135cd54032174.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.882324;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_3d7361c2c86a3c51757279e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.717285;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_b1a7d61cf9ec136f15a6d225.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.811035;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);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:24.480000px;}
.ls20{letter-spacing:-1.944000px;}
.ls13{letter-spacing:-1.584000px;}
.ls14{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.296000px;}
.ls12{letter-spacing:-1.152000px;}
.lsd{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.634752px;}
.lsf{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.498960px;}
.lsa{letter-spacing:-0.359136px;}
.ls1f{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.251856px;}
.ls30{letter-spacing:-0.232848px;}
.ls9{letter-spacing:-0.175392px;}
.lsc{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.175392px;}
.ls2e{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.987840px;}
.ls5{letter-spacing:1.584000px;}
.ls2c{letter-spacing:2.160000px;}
.ls17{letter-spacing:3.024000px;}
.ls2{letter-spacing:4.069440px;}
.ls1d{letter-spacing:4.464000px;}
.ls1b{letter-spacing:5.904000px;}
.ls27{letter-spacing:7.344000px;}
.ls29{letter-spacing:8.784000px;}
.ls23{letter-spacing:10.224000px;}
.ls18{letter-spacing:11.664000px;}
.ls24{letter-spacing:13.104000px;}
.ls1e{letter-spacing:14.544000px;}
.ls2f{letter-spacing:15.984000px;}
.ls16{letter-spacing:17.424000px;}
.ls1c{letter-spacing:18.864000px;}
.ls25{letter-spacing:20.304000px;}
.ls15{letter-spacing:21.744000px;}
.ls22{letter-spacing:24.624000px;}
.ls28{letter-spacing:26.064000px;}
.ls26{letter-spacing:28.944000px;}
.ls32{letter-spacing:30.384000px;}
.ls2d{letter-spacing:31.824000px;}
.ls2a{letter-spacing:39.024000px;}
.ls2b{letter-spacing:843.984000px;}
.ls31{letter-spacing:846.000000px;}
.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;}
}
.wsf{word-spacing:-20.664000px;}
.ws8{word-spacing:-20.520000px;}
.ws6{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws9{word-spacing:-19.872000px;}
.ws14{word-spacing:-19.728000px;}
.ws3{word-spacing:-19.512000px;}
.ws15{word-spacing:-19.368000px;}
.ws11{word-spacing:-19.224000px;}
.ws1{word-spacing:-19.080000px;}
.wsa{word-spacing:-18.864000px;}
.wse{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.576000px;}
.ws12{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.072000px;}
.ws0{word-spacing:-13.210560px;}
.ws13{word-spacing:-12.977712px;}
.ws7{word-spacing:-12.958704px;}
.ws2{word-spacing:-12.711600px;}
.wsd{word-spacing:-0.072000px;}
.wsb{word-spacing:0.000000px;}
._2b{margin-left:-10.967040px;}
._22{margin-left:-6.013440px;}
._15{margin-left:-4.564800px;}
._c{margin-left:-3.559680px;}
._6{margin-left:-2.468160px;}
._0{margin-left:-1.440000px;}
._1{width:1.105920px;}
._2{width:2.400192px;}
._5{width:4.055040px;}
._3{width:5.662080px;}
._4{width:6.675840px;}
._1b{width:7.920000px;}
._b{width:9.072000px;}
._a{width:10.368000px;}
._7{width:11.609280px;}
._1a{width:13.026240px;}
._16{width:14.400000px;}
._17{width:15.468480px;}
._20{width:16.623360px;}
._1f{width:17.948160px;}
._25{width:18.987840px;}
._26{width:20.199168px;}
._1c{width:21.430080px;}
._13{width:22.654080px;}
._14{width:24.001920px;}
._9{width:25.416000px;}
._8{width:26.496000px;}
._27{width:27.982080px;}
._28{width:29.376000px;}
._29{width:30.620160px;}
._2a{width:32.086080px;}
._19{width:33.186240px;}
._12{width:34.966080px;}
._10{width:36.648000px;}
._11{width:38.252160px;}
._1e{width:39.882240px;}
._1d{width:40.896000px;}
._2d{width:42.042240px;}
._f{width:44.608320px;}
._d{width:45.838080px;}
._e{width:47.016000px;}
._21{width:48.548160px;}
._2c{width:50.446080px;}
._2e{width:51.707520px;}
._24{width:52.724160px;}
._23{width:54.046080px;}
._18{width:843.984000px;}
.fc9{color:rgb(46,151,211);}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(33,30,30);}
.fc5{color:rgb(77,81,86);}
.fc4{color:transparent;}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(32,33,36);}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(53,53,53);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.580200px;}
.y1{bottom:23.380200px;}
.y2{bottom:24.460200px;}
.yd9{bottom:63.340200px;}
.y87{bottom:70.180200px;}
.y38{bottom:71.980200px;}
.yd8{bottom:81.700200px;}
.ybf{bottom:82.420200px;}
.y9d{bottom:92.500200px;}
.ye2{bottom:100.780200px;}
.y99{bottom:105.100200px;}
.y6f{bottom:107.980200px;}
.yf1{bottom:109.420200px;}
.y86{bottom:111.580200px;}
.yd7{bottom:112.660200px;}
.y37{bottom:113.380200px;}
.yad{bottom:123.820200px;}
.ye1{bottom:131.740200px;}
.y36{bottom:133.900200px;}
.yf0{bottom:140.740200px;}
.yd6{bottom:143.980200px;}
.ybe{bottom:144.340200px;}
.y98{bottom:146.500200px;}
.y6e{bottom:149.380200px;}
.y85{bottom:152.980200px;}
.y35{bottom:154.780200px;}
.ye0{bottom:163.060200px;}
.yef{bottom:171.700200px;}
.yd5{bottom:174.940200px;}
.y34{bottom:175.300200px;}
.yac{bottom:185.740200px;}
.y97{bottom:187.900200px;}
.y6d{bottom:190.780200px;}
.ydf{bottom:194.020200px;}
.y84{bottom:194.380200px;}
.y33{bottom:196.180200px;}
.yee{bottom:202.660200px;}
.yd4{bottom:205.900200px;}
.ybd{bottom:206.620200px;}
.y32{bottom:216.700200px;}
.yde{bottom:224.980200px;}
.yed{bottom:226.420200px;}
.y96{bottom:229.300200px;}
.y6c{bottom:232.180200px;}
.y83{bottom:235.780200px;}
.yd3{bottom:236.860200px;}
.y31{bottom:237.580200px;}
.yab{bottom:248.020200px;}
.yec{bottom:250.180200px;}
.ydd{bottom:255.940200px;}
.y30{bottom:258.100200px;}
.yd2{bottom:267.820200px;}
.ybc{bottom:268.540200px;}
.y95{bottom:270.700200px;}
.y6b{bottom:273.580200px;}
.yeb{bottom:273.940200px;}
.y82{bottom:277.180200px;}
.y2f{bottom:278.980200px;}
.y2e{bottom:285.100200px;}
.ydc{bottom:287.260200px;}
.yea{bottom:298.060200px;}
.y2d{bottom:299.140200px;}
.y9c{bottom:299.500200px;}
.y2c{bottom:304.540200px;}
.yaa{bottom:309.940200px;}
.y94{bottom:312.100200px;}
.y6a{bottom:314.980200px;}
.y2b{bottom:316.420200px;}
.ye9{bottom:317.860200px;}
.y81{bottom:318.580200px;}
.y5b{bottom:320.380200px;}
.y2a{bottom:321.820200px;}
.ydb{bottom:328.660200px;}
.yd1{bottom:330.100200px;}
.ybb{bottom:330.820200px;}
.y29{bottom:334.060200px;}
.y9b{bottom:340.900200px;}
.y93{bottom:353.500200px;}
.y28{bottom:354.940200px;}
.yda{bottom:356.020200px;}
.y69{bottom:356.380200px;}
.y80{bottom:359.980200px;}
.yd0{bottom:361.060200px;}
.y5a{bottom:361.780200px;}
.y9a{bottom:362.140200px;}
.ya9{bottom:372.220200px;}
.y27{bottom:375.460200px;}
.ycf{bottom:392.020200px;}
.yba{bottom:392.740200px;}
.y92{bottom:394.900200px;}
.y26{bottom:396.340200px;}
.y68{bottom:397.780200px;}
.y7f{bottom:401.380200px;}
.y59{bottom:403.180200px;}
.y25{bottom:416.860200px;}
.yce{bottom:423.340200px;}
.yb9{bottom:423.700200px;}
.ya8{bottom:434.140200px;}
.y91{bottom:436.300200px;}
.y24{bottom:437.740200px;}
.y67{bottom:439.180200px;}
.y7e{bottom:442.780200px;}
.y58{bottom:444.580200px;}
.y101{bottom:453.580200px;}
.ycd{bottom:454.300200px;}
.yb8{bottom:455.020200px;}
.y23{bottom:458.260200px;}
.ya7{bottom:465.100200px;}
.y90{bottom:477.700200px;}
.y22{bottom:479.140200px;}
.y66{bottom:480.580200px;}
.y7d{bottom:484.180200px;}
.y100{bottom:484.540200px;}
.ycc{bottom:485.260200px;}
.y57{bottom:485.980200px;}
.ya6{bottom:496.420200px;}
.y21{bottom:499.660200px;}
.y48{bottom:506.500200px;}
.yff{bottom:515.860200px;}
.ycb{bottom:516.220200px;}
.yb7{bottom:516.940200px;}
.y8f{bottom:519.100200px;}
.y20{bottom:520.540200px;}
.y65{bottom:521.980200px;}
.y7c{bottom:525.580200px;}
.y56{bottom:527.380200px;}
.y1f{bottom:541.060200px;}
.ye8{bottom:542.860200px;}
.yfe{bottom:546.820200px;}
.yca{bottom:547.540200px;}
.y47{bottom:547.900200px;}
.ya5{bottom:558.340200px;}
.y8e{bottom:560.500200px;}
.y1e{bottom:561.940200px;}
.y64{bottom:563.380200px;}
.ye7{bottom:566.620200px;}
.y7b{bottom:566.980200px;}
.y55{bottom:568.780200px;}
.yfd{bottom:577.780200px;}
.yc9{bottom:578.500200px;}
.yb6{bottom:579.220200px;}
.y1d{bottom:582.460200px;}
.y46{bottom:589.300200px;}
.ye6{bottom:590.380200px;}
.y8d{bottom:601.900200px;}
.y1c{bottom:603.340200px;}
.y63{bottom:604.780200px;}
.y7a{bottom:608.380200px;}
.yfc{bottom:608.740200px;}
.yc8{bottom:609.460200px;}
.y54{bottom:610.180200px;}
.ye5{bottom:614.140200px;}
.ya4{bottom:620.620200px;}
.y1b{bottom:623.860200px;}
.y45{bottom:630.700200px;}
.ye4{bottom:637.900200px;}
.yfb{bottom:640.060200px;}
.yc7{bottom:640.420200px;}
.yb5{bottom:641.140200px;}
.y8c{bottom:643.300200px;}
.y1a{bottom:644.740200px;}
.y62{bottom:646.180200px;}
.y79{bottom:649.780200px;}
.y53{bottom:651.580200px;}
.ye3{bottom:662.020200px;}
.y19{bottom:665.260200px;}
.yfa{bottom:671.020200px;}
.yc6{bottom:671.740200px;}
.y44{bottom:672.100200px;}
.ya3{bottom:682.540200px;}
.y18{bottom:686.140200px;}
.y61{bottom:687.580200px;}
.y78{bottom:691.180200px;}
.y52{bottom:692.980200px;}
.yf9{bottom:701.980200px;}
.yc5{bottom:702.700200px;}
.yb4{bottom:703.420200px;}
.y17{bottom:706.660200px;}
.y43{bottom:713.500200px;}
.y16{bottom:727.540200px;}
.y60{bottom:728.980200px;}
.y77{bottom:732.580200px;}
.yf8{bottom:732.940200px;}
.yc4{bottom:733.660200px;}
.y51{bottom:734.380200px;}
.ya2{bottom:744.820200px;}
.y15{bottom:748.060200px;}
.y42{bottom:754.900200px;}
.yf7{bottom:764.260200px;}
.yc3{bottom:764.620200px;}
.yb3{bottom:765.340200px;}
.y14{bottom:768.940200px;}
.y5f{bottom:770.380200px;}
.y76{bottom:773.980200px;}
.y50{bottom:775.780200px;}
.y13{bottom:789.460200px;}
.yf6{bottom:795.580200px;}
.yc2{bottom:795.940200px;}
.y41{bottom:796.300200px;}
.ya1{bottom:806.740200px;}
.y12{bottom:810.340200px;}
.y5e{bottom:812.860200px;}
.y75{bottom:815.380200px;}
.y4f{bottom:817.180200px;}
.yc1{bottom:826.900200px;}
.yb2{bottom:827.620200px;}
.y11{bottom:830.860200px;}
.y40{bottom:837.700200px;}
.y10{bottom:851.740200px;}
.y5d{bottom:855.700200px;}
.y74{bottom:856.780200px;}
.yf5{bottom:857.860200px;}
.yc0{bottom:858.220200px;}
.y4e{bottom:858.580200px;}
.ya0{bottom:869.020200px;}
.yf{bottom:872.260200px;}
.y3f{bottom:879.100200px;}
.yf4{bottom:888.820200px;}
.yb1{bottom:889.540200px;}
.ye{bottom:893.140200px;}
.y8b{bottom:897.100200px;}
.y73{bottom:898.180200px;}
.y5c{bottom:898.540200px;}
.y4d{bottom:899.980200px;}
.yd{bottom:913.660200px;}
.yf3{bottom:920.140200px;}
.y3e{bottom:920.500200px;}
.y9f{bottom:930.940200px;}
.yc{bottom:934.540200px;}
.y8a{bottom:938.500200px;}
.y72{bottom:939.580200px;}
.y4c{bottom:941.380200px;}
.yf2{bottom:951.100200px;}
.yb0{bottom:951.460200px;}
.yb{bottom:955.060200px;}
.y3d{bottom:961.900200px;}
.ya{bottom:975.940200px;}
.y89{bottom:979.900200px;}
.y71{bottom:980.980200px;}
.y4b{bottom:982.780200px;}
.y9e{bottom:992.860200px;}
.y9{bottom:996.460200px;}
.y3c{bottom:1003.300200px;}
.yaf{bottom:1013.740200px;}
.y8{bottom:1017.340200px;}
.y88{bottom:1022.740200px;}
.y70{bottom:1023.460200px;}
.y4a{bottom:1024.180200px;}
.y7{bottom:1037.860200px;}
.y3b{bottom:1044.700200px;}
.y6{bottom:1058.740200px;}
.y49{bottom:1065.580200px;}
.yae{bottom:1075.660200px;}
.y5{bottom:1079.980200px;}
.y3a{bottom:1086.100200px;}
.y4{bottom:1104.100200px;}
.y39{bottom:1106.980200px;}
.h8{height:28.343672px;}
.h9{height:34.642266px;}
.h2{height:42.000000px;}
.h1{height:48.656250px;}
.ha{height:51.644531px;}
.h5{height:52.417969px;}
.h7{height:52.488281px;}
.h6{height:59.122266px;}
.h3{height:60.804844px;}
.h4{height:1167.000000px;}
.h0{height:1188.000000px;}
.w1{width:792.000000px;}
.w2{width:891.000000px;}
.w0{width:918.000000px;}
.xc{left:-26.067450px;}
.x8{left:-17.067450px;}
.x7{left:-8.067450px;}
.x0{left:0.000000px;}
.x3{left:27.000000px;}
.x4{left:36.932550px;}
.x1{left:63.932550px;}
.x2{left:74.732550px;}
.x5{left:272.732550px;}
.x6{left:458.852550px;}
.xa{left:835.412550px;}
.xd{left:840.452550px;}
.x9{left:843.692550px;}
.xb{left:854.132550px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:21.760000pt;}
.ls20{letter-spacing:-1.728000pt;}
.ls13{letter-spacing:-1.408000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.152000pt;}
.ls12{letter-spacing:-1.024000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.564224pt;}
.lsf{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.443520pt;}
.lsa{letter-spacing:-0.319232pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.223872pt;}
.ls30{letter-spacing:-0.206976pt;}
.ls9{letter-spacing:-0.155904pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.155904pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.878080pt;}
.ls5{letter-spacing:1.408000pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.688000pt;}
.ls2{letter-spacing:3.617280pt;}
.ls1d{letter-spacing:3.968000pt;}
.ls1b{letter-spacing:5.248000pt;}
.ls27{letter-spacing:6.528000pt;}
.ls29{letter-spacing:7.808000pt;}
.ls23{letter-spacing:9.088000pt;}
.ls18{letter-spacing:10.368000pt;}
.ls24{letter-spacing:11.648000pt;}
.ls1e{letter-spacing:12.928000pt;}
.ls2f{letter-spacing:14.208000pt;}
.ls16{letter-spacing:15.488000pt;}
.ls1c{letter-spacing:16.768000pt;}
.ls25{letter-spacing:18.048000pt;}
.ls15{letter-spacing:19.328000pt;}
.ls22{letter-spacing:21.888000pt;}
.ls28{letter-spacing:23.168000pt;}
.ls26{letter-spacing:25.728000pt;}
.ls32{letter-spacing:27.008000pt;}
.ls2d{letter-spacing:28.288000pt;}
.ls2a{letter-spacing:34.688000pt;}
.ls2b{letter-spacing:750.208000pt;}
.ls31{letter-spacing:752.000000pt;}
.wsf{word-spacing:-18.368000pt;}
.ws8{word-spacing:-18.240000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.664000pt;}
.ws14{word-spacing:-17.536000pt;}
.ws3{word-spacing:-17.344000pt;}
.ws15{word-spacing:-17.216000pt;}
.ws11{word-spacing:-17.088000pt;}
.ws1{word-spacing:-16.960000pt;}
.wsa{word-spacing:-16.768000pt;}
.wse{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.512000pt;}
.ws12{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws0{word-spacing:-11.742720pt;}
.ws13{word-spacing:-11.535744pt;}
.ws7{word-spacing:-11.518848pt;}
.ws2{word-spacing:-11.299200pt;}
.wsd{word-spacing:-0.064000pt;}
.wsb{word-spacing:0.000000pt;}
._2b{margin-left:-9.748480pt;}
._22{margin-left:-5.345280pt;}
._15{margin-left:-4.057600pt;}
._c{margin-left:-3.164160pt;}
._6{margin-left:-2.193920pt;}
._0{margin-left:-1.280000pt;}
._1{width:0.983040pt;}
._2{width:2.133504pt;}
._5{width:3.604480pt;}
._3{width:5.032960pt;}
._4{width:5.934080pt;}
._1b{width:7.040000pt;}
._b{width:8.064000pt;}
._a{width:9.216000pt;}
._7{width:10.319360pt;}
._1a{width:11.578880pt;}
._16{width:12.800000pt;}
._17{width:13.749760pt;}
._20{width:14.776320pt;}
._1f{width:15.953920pt;}
._25{width:16.878080pt;}
._26{width:17.954816pt;}
._1c{width:19.048960pt;}
._13{width:20.136960pt;}
._14{width:21.335040pt;}
._9{width:22.592000pt;}
._8{width:23.552000pt;}
._27{width:24.872960pt;}
._28{width:26.112000pt;}
._29{width:27.217920pt;}
._2a{width:28.520960pt;}
._19{width:29.498880pt;}
._12{width:31.080960pt;}
._10{width:32.576000pt;}
._11{width:34.001920pt;}
._1e{width:35.450880pt;}
._1d{width:36.352000pt;}
._2d{width:37.370880pt;}
._f{width:39.651840pt;}
._d{width:40.744960pt;}
._e{width:41.792000pt;}
._21{width:43.153920pt;}
._2c{width:44.840960pt;}
._2e{width:45.962240pt;}
._24{width:46.865920pt;}
._23{width:48.040960pt;}
._18{width:750.208000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.182400pt;}
.y1{bottom:20.782400pt;}
.y2{bottom:21.742400pt;}
.yd9{bottom:56.302400pt;}
.y87{bottom:62.382400pt;}
.y38{bottom:63.982400pt;}
.yd8{bottom:72.622400pt;}
.ybf{bottom:73.262400pt;}
.y9d{bottom:82.222400pt;}
.ye2{bottom:89.582400pt;}
.y99{bottom:93.422400pt;}
.y6f{bottom:95.982400pt;}
.yf1{bottom:97.262400pt;}
.y86{bottom:99.182400pt;}
.yd7{bottom:100.142400pt;}
.y37{bottom:100.782400pt;}
.yad{bottom:110.062400pt;}
.ye1{bottom:117.102400pt;}
.y36{bottom:119.022400pt;}
.yf0{bottom:125.102400pt;}
.yd6{bottom:127.982400pt;}
.ybe{bottom:128.302400pt;}
.y98{bottom:130.222400pt;}
.y6e{bottom:132.782400pt;}
.y85{bottom:135.982400pt;}
.y35{bottom:137.582400pt;}
.ye0{bottom:144.942400pt;}
.yef{bottom:152.622400pt;}
.yd5{bottom:155.502400pt;}
.y34{bottom:155.822400pt;}
.yac{bottom:165.102400pt;}
.y97{bottom:167.022400pt;}
.y6d{bottom:169.582400pt;}
.ydf{bottom:172.462400pt;}
.y84{bottom:172.782400pt;}
.y33{bottom:174.382400pt;}
.yee{bottom:180.142400pt;}
.yd4{bottom:183.022400pt;}
.ybd{bottom:183.662400pt;}
.y32{bottom:192.622400pt;}
.yde{bottom:199.982400pt;}
.yed{bottom:201.262400pt;}
.y96{bottom:203.822400pt;}
.y6c{bottom:206.382400pt;}
.y83{bottom:209.582400pt;}
.yd3{bottom:210.542400pt;}
.y31{bottom:211.182400pt;}
.yab{bottom:220.462400pt;}
.yec{bottom:222.382400pt;}
.ydd{bottom:227.502400pt;}
.y30{bottom:229.422400pt;}
.yd2{bottom:238.062400pt;}
.ybc{bottom:238.702400pt;}
.y95{bottom:240.622400pt;}
.y6b{bottom:243.182400pt;}
.yeb{bottom:243.502400pt;}
.y82{bottom:246.382400pt;}
.y2f{bottom:247.982400pt;}
.y2e{bottom:253.422400pt;}
.ydc{bottom:255.342400pt;}
.yea{bottom:264.942400pt;}
.y2d{bottom:265.902400pt;}
.y9c{bottom:266.222400pt;}
.y2c{bottom:270.702400pt;}
.yaa{bottom:275.502400pt;}
.y94{bottom:277.422400pt;}
.y6a{bottom:279.982400pt;}
.y2b{bottom:281.262400pt;}
.ye9{bottom:282.542400pt;}
.y81{bottom:283.182400pt;}
.y5b{bottom:284.782400pt;}
.y2a{bottom:286.062400pt;}
.ydb{bottom:292.142400pt;}
.yd1{bottom:293.422400pt;}
.ybb{bottom:294.062400pt;}
.y29{bottom:296.942400pt;}
.y9b{bottom:303.022400pt;}
.y93{bottom:314.222400pt;}
.y28{bottom:315.502400pt;}
.yda{bottom:316.462400pt;}
.y69{bottom:316.782400pt;}
.y80{bottom:319.982400pt;}
.yd0{bottom:320.942400pt;}
.y5a{bottom:321.582400pt;}
.y9a{bottom:321.902400pt;}
.ya9{bottom:330.862400pt;}
.y27{bottom:333.742400pt;}
.ycf{bottom:348.462400pt;}
.yba{bottom:349.102400pt;}
.y92{bottom:351.022400pt;}
.y26{bottom:352.302400pt;}
.y68{bottom:353.582400pt;}
.y7f{bottom:356.782400pt;}
.y59{bottom:358.382400pt;}
.y25{bottom:370.542400pt;}
.yce{bottom:376.302400pt;}
.yb9{bottom:376.622400pt;}
.ya8{bottom:385.902400pt;}
.y91{bottom:387.822400pt;}
.y24{bottom:389.102400pt;}
.y67{bottom:390.382400pt;}
.y7e{bottom:393.582400pt;}
.y58{bottom:395.182400pt;}
.y101{bottom:403.182400pt;}
.ycd{bottom:403.822400pt;}
.yb8{bottom:404.462400pt;}
.y23{bottom:407.342400pt;}
.ya7{bottom:413.422400pt;}
.y90{bottom:424.622400pt;}
.y22{bottom:425.902400pt;}
.y66{bottom:427.182400pt;}
.y7d{bottom:430.382400pt;}
.y100{bottom:430.702400pt;}
.ycc{bottom:431.342400pt;}
.y57{bottom:431.982400pt;}
.ya6{bottom:441.262400pt;}
.y21{bottom:444.142400pt;}
.y48{bottom:450.222400pt;}
.yff{bottom:458.542400pt;}
.ycb{bottom:458.862400pt;}
.yb7{bottom:459.502400pt;}
.y8f{bottom:461.422400pt;}
.y20{bottom:462.702400pt;}
.y65{bottom:463.982400pt;}
.y7c{bottom:467.182400pt;}
.y56{bottom:468.782400pt;}
.y1f{bottom:480.942400pt;}
.ye8{bottom:482.542400pt;}
.yfe{bottom:486.062400pt;}
.yca{bottom:486.702400pt;}
.y47{bottom:487.022400pt;}
.ya5{bottom:496.302400pt;}
.y8e{bottom:498.222400pt;}
.y1e{bottom:499.502400pt;}
.y64{bottom:500.782400pt;}
.ye7{bottom:503.662400pt;}
.y7b{bottom:503.982400pt;}
.y55{bottom:505.582400pt;}
.yfd{bottom:513.582400pt;}
.yc9{bottom:514.222400pt;}
.yb6{bottom:514.862400pt;}
.y1d{bottom:517.742400pt;}
.y46{bottom:523.822400pt;}
.ye6{bottom:524.782400pt;}
.y8d{bottom:535.022400pt;}
.y1c{bottom:536.302400pt;}
.y63{bottom:537.582400pt;}
.y7a{bottom:540.782400pt;}
.yfc{bottom:541.102400pt;}
.yc8{bottom:541.742400pt;}
.y54{bottom:542.382400pt;}
.ye5{bottom:545.902400pt;}
.ya4{bottom:551.662400pt;}
.y1b{bottom:554.542400pt;}
.y45{bottom:560.622400pt;}
.ye4{bottom:567.022400pt;}
.yfb{bottom:568.942400pt;}
.yc7{bottom:569.262400pt;}
.yb5{bottom:569.902400pt;}
.y8c{bottom:571.822400pt;}
.y1a{bottom:573.102400pt;}
.y62{bottom:574.382400pt;}
.y79{bottom:577.582400pt;}
.y53{bottom:579.182400pt;}
.ye3{bottom:588.462400pt;}
.y19{bottom:591.342400pt;}
.yfa{bottom:596.462400pt;}
.yc6{bottom:597.102400pt;}
.y44{bottom:597.422400pt;}
.ya3{bottom:606.702400pt;}
.y18{bottom:609.902400pt;}
.y61{bottom:611.182400pt;}
.y78{bottom:614.382400pt;}
.y52{bottom:615.982400pt;}
.yf9{bottom:623.982400pt;}
.yc5{bottom:624.622400pt;}
.yb4{bottom:625.262400pt;}
.y17{bottom:628.142400pt;}
.y43{bottom:634.222400pt;}
.y16{bottom:646.702400pt;}
.y60{bottom:647.982400pt;}
.y77{bottom:651.182400pt;}
.yf8{bottom:651.502400pt;}
.yc4{bottom:652.142400pt;}
.y51{bottom:652.782400pt;}
.ya2{bottom:662.062400pt;}
.y15{bottom:664.942400pt;}
.y42{bottom:671.022400pt;}
.yf7{bottom:679.342400pt;}
.yc3{bottom:679.662400pt;}
.yb3{bottom:680.302400pt;}
.y14{bottom:683.502400pt;}
.y5f{bottom:684.782400pt;}
.y76{bottom:687.982400pt;}
.y50{bottom:689.582400pt;}
.y13{bottom:701.742400pt;}
.yf6{bottom:707.182400pt;}
.yc2{bottom:707.502400pt;}
.y41{bottom:707.822400pt;}
.ya1{bottom:717.102400pt;}
.y12{bottom:720.302400pt;}
.y5e{bottom:722.542400pt;}
.y75{bottom:724.782400pt;}
.y4f{bottom:726.382400pt;}
.yc1{bottom:735.022400pt;}
.yb2{bottom:735.662400pt;}
.y11{bottom:738.542400pt;}
.y40{bottom:744.622400pt;}
.y10{bottom:757.102400pt;}
.y5d{bottom:760.622400pt;}
.y74{bottom:761.582400pt;}
.yf5{bottom:762.542400pt;}
.yc0{bottom:762.862400pt;}
.y4e{bottom:763.182400pt;}
.ya0{bottom:772.462400pt;}
.yf{bottom:775.342400pt;}
.y3f{bottom:781.422400pt;}
.yf4{bottom:790.062400pt;}
.yb1{bottom:790.702400pt;}
.ye{bottom:793.902400pt;}
.y8b{bottom:797.422400pt;}
.y73{bottom:798.382400pt;}
.y5c{bottom:798.702400pt;}
.y4d{bottom:799.982400pt;}
.yd{bottom:812.142400pt;}
.yf3{bottom:817.902400pt;}
.y3e{bottom:818.222400pt;}
.y9f{bottom:827.502400pt;}
.yc{bottom:830.702400pt;}
.y8a{bottom:834.222400pt;}
.y72{bottom:835.182400pt;}
.y4c{bottom:836.782400pt;}
.yf2{bottom:845.422400pt;}
.yb0{bottom:845.742400pt;}
.yb{bottom:848.942400pt;}
.y3d{bottom:855.022400pt;}
.ya{bottom:867.502400pt;}
.y89{bottom:871.022400pt;}
.y71{bottom:871.982400pt;}
.y4b{bottom:873.582400pt;}
.y9e{bottom:882.542400pt;}
.y9{bottom:885.742400pt;}
.y3c{bottom:891.822400pt;}
.yaf{bottom:901.102400pt;}
.y8{bottom:904.302400pt;}
.y88{bottom:909.102400pt;}
.y70{bottom:909.742400pt;}
.y4a{bottom:910.382400pt;}
.y7{bottom:922.542400pt;}
.y3b{bottom:928.622400pt;}
.y6{bottom:941.102400pt;}
.y49{bottom:947.182400pt;}
.yae{bottom:956.142400pt;}
.y5{bottom:959.982400pt;}
.y3a{bottom:965.422400pt;}
.y4{bottom:981.422400pt;}
.y39{bottom:983.982400pt;}
.h8{height:25.194375pt;}
.h9{height:30.793125pt;}
.h2{height:37.333333pt;}
.h1{height:43.250000pt;}
.ha{height:45.906250pt;}
.h5{height:46.593750pt;}
.h7{height:46.656250pt;}
.h6{height:52.553125pt;}
.h3{height:54.048750pt;}
.h4{height:1037.333333pt;}
.h0{height:1056.000000pt;}
.w1{width:704.000000pt;}
.w2{width:792.000000pt;}
.w0{width:816.000000pt;}
.xc{left:-23.171067pt;}
.x8{left:-15.171067pt;}
.x7{left:-7.171067pt;}
.x0{left:0.000000pt;}
.x3{left:24.000000pt;}
.x4{left:32.828933pt;}
.x1{left:56.828933pt;}
.x2{left:66.428933pt;}
.x5{left:242.428933pt;}
.x6{left:407.868933pt;}
.xa{left:742.588933pt;}
.xd{left:747.068933pt;}
.x9{left:749.948933pt;}
.xb{left:759.228933pt;}
}




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