
    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_bd420ab6f6b62adcad0d13c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4ed2abe59c2b5b7ed8b153c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_93baf0cacf094ff235f496f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_f6d434b46ef78c1eae7c6b01.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.783691;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_40c2a72c3f737b6c5b1cf2b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.772949;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_2c665cd450a8f9a646b4ced0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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);}
.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);}
.v3{vertical-align:-12.960000px;}
.v1{vertical-align:-9.960000px;}
.v4{vertical-align:-1.872000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.lsd{letter-spacing:-2.106000px;}
.ls15{letter-spacing:-0.334200px;}
.ls20{letter-spacing:-0.261600px;}
.ls7{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.186600px;}
.ls21{letter-spacing:-0.181200px;}
.ls1b{letter-spacing:-0.123000px;}
.ls12{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.136200px;}
.ls1d{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.226200px;}
.ls1f{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.306720px;}
.ls14{letter-spacing:2.268000px;}
.ls17{letter-spacing:6.912000px;}
.ls1e{letter-spacing:14.218560px;}
.ls4{letter-spacing:15.894720px;}
.lsf{letter-spacing:20.232000px;}
.ls11{letter-spacing:20.244000px;}
.ls19{letter-spacing:23.357664px;}
.ls18{letter-spacing:23.472000px;}
.ls3{letter-spacing:23.592000px;}
.ls10{letter-spacing:24.077664px;}
.lse{letter-spacing:24.192000px;}
.ls16{letter-spacing:24.768000px;}
.ls6{letter-spacing:34.920000px;}
.ls8{letter-spacing:36.826560px;}
.ls0{letter-spacing:37.546560px;}
.ls2{letter-spacing:56.280000px;}
.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;}
}
.wsa{word-spacing:-33.426720px;}
.ws2{word-spacing:-20.056032px;}
.ws1{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.800000px;}
.ws11{word-spacing:-17.614080px;}
.ws1e{word-spacing:-16.819680px;}
.ws10{word-spacing:-16.613280px;}
.ws14{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.012000px;}
.wsf{word-spacing:-14.507280px;}
.ws28{word-spacing:-13.450752px;}
.ws27{word-spacing:-13.410720px;}
.ws2d{word-spacing:-13.229520px;}
.ws29{word-spacing:-13.189152px;}
.ws24{word-spacing:-10.048032px;}
.ws26{word-spacing:-10.008000px;}
.wsb{word-spacing:-2.376000px;}
.wsd{word-spacing:-2.184000px;}
.ws22{word-spacing:-1.944000px;}
.ws1c{word-spacing:-1.728000px;}
.wsc{word-spacing:-1.536000px;}
.ws19{word-spacing:-1.368000px;}
.ws3{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.780000px;}
.ws5{word-spacing:-0.648000px;}
.ws2a{word-spacing:-0.377520px;}
.ws12{word-spacing:-0.305280px;}
.ws4{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.072144px;}
.ws18{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws2b{word-spacing:0.127440px;}
.ws6{word-spacing:0.168000px;}
.ws23{word-spacing:0.239328px;}
.ws25{word-spacing:0.324000px;}
.ws2c{word-spacing:0.900720px;}
.ws1b{word-spacing:17.712000px;}
.ws16{word-spacing:19.512000px;}
.ws21{word-spacing:90.786720px;}
.ws20{word-spacing:91.460160px;}
.ws1f{word-spacing:92.540160px;}
.wse{word-spacing:122.379600px;}
.ws13{word-spacing:139.291440px;}
.ws15{word-spacing:145.400160px;}
.ws1d{word-spacing:258.285240px;}
.ws9{word-spacing:1304.690712px;}
._f{margin-left:-7.272000px;}
._4{margin-left:-5.919840px;}
._3{margin-left:-4.328640px;}
._7{margin-left:-3.240000px;}
._0{margin-left:-1.350720px;}
._6{width:1.008000px;}
._1{width:2.044080px;}
._5{width:3.366720px;}
._b{width:5.008080px;}
._10{width:7.653360px;}
._11{width:14.583840px;}
._e{width:16.536960px;}
._8{width:17.658720px;}
._a{width:18.816000px;}
._2{width:37.842240px;}
._9{width:38.878320px;}
._c{width:852.439680px;}
._d{width:1169.722560px;}
.fc7{color:rgb(161,172,118);}
.fc5{color:rgb(125,157,153);}
.fc4{color:rgb(0,158,227);}
.fc3{color:rgb(189,155,164);}
.fc2{color:transparent;}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(70,70,70);}
.fc0{color:rgb(94,94,93);}
.fse{font-size:28.080000px;}
.fs9{font-size:31.680000px;}
.fs10{font-size:36.000000px;}
.fsf{font-size:36.144000px;}
.fsb{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs11{font-size:48.384000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs5{font-size:56.880000px;}
.fsa{font-size:59.760000px;}
.fs2{font-size:59.904000px;}
.fsc{font-size:63.360000px;}
.fsd{font-size:63.504000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fs6{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.fs12{font-size:120.384000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:9.792000px;}
.y3{bottom:10.260000px;}
.y6d{bottom:12.060000px;}
.y6f{bottom:12.600000px;}
.y1{bottom:19.584000px;}
.y62{bottom:34.740000px;}
.ya3{bottom:40.860000px;}
.y3d{bottom:49.932000px;}
.y7b{bottom:50.400000px;}
.y87{bottom:50.724000px;}
.ya2{bottom:53.460000px;}
.y86{bottom:53.928000px;}
.y69{bottom:58.500000px;}
.y6b{bottom:59.040000px;}
.y88{bottom:59.724000px;}
.y70{bottom:59.868000px;}
.y6c{bottom:59.904000px;}
.y5f{bottom:59.910000px;}
.y53{bottom:59.940000px;}
.y6e{bottom:60.300000px;}
.y61{bottom:60.330000px;}
.y6a{bottom:60.336000px;}
.y58{bottom:60.375000px;}
.y51{bottom:60.405000px;}
.y1e{bottom:62.568000px;}
.y10{bottom:68.436000px;}
.y44{bottom:74.376000px;}
.y9b{bottom:79.128000px;}
.y85{bottom:80.064000px;}
.ya1{bottom:88.344000px;}
.y82{bottom:89.064000px;}
.y9a{bottom:99.468000px;}
.y60{bottom:104.940000px;}
.y67{bottom:105.480000px;}
.yf{bottom:106.092000px;}
.y84{bottom:106.164000px;}
.y4e{bottom:110.124000px;}
.y99{bottom:113.868000px;}
.y2b{bottom:114.876000px;}
.y81{bottom:115.164000px;}
.y65{bottom:120.420000px;}
.y56{bottom:120.450000px;}
.ya0{bottom:122.004000px;}
.y37{bottom:126.612000px;}
.y59{bottom:127.620000px;}
.y98{bottom:128.268000px;}
.y2a{bottom:131.112000px;}
.y83{bottom:132.264000px;}
.yc{bottom:133.056000px;}
.y4d{bottom:134.064000px;}
.y7a{bottom:136.764000px;}
.y63{bottom:140.760000px;}
.y55{bottom:140.790000px;}
.y80{bottom:141.264000px;}
.y36{bottom:142.812000px;}
.ye{bottom:143.532000px;}
.y29{bottom:147.312000px;}
.y97{bottom:148.608000px;}
.y5d{bottom:151.380000px;}
.y5e{bottom:151.920000px;}
.y66{bottom:155.160000px;}
.y9f{bottom:155.670000px;}
.y1d{bottom:156.495000px;}
.yb{bottom:157.170000px;}
.y79{bottom:158.370000px;}
.y35{bottom:159.015000px;}
.y7f{bottom:162.870000px;}
.y28{bottom:163.515000px;}
.y18{bottom:164.700000px;}
.y68{bottom:165.390000px;}
.y96{bottom:169.125000px;}
.y4c{bottom:170.070000px;}
.y54{bottom:174.060000px;}
.y34{bottom:175.215000px;}
.y64{bottom:175.500000px;}
.y27{bottom:179.715000px;}
.y32{bottom:180.030000px;}
.ya{bottom:181.110000px;}
.y95{bottom:183.570000px;}
.y78{bottom:184.470000px;}
.y7e{bottom:188.970000px;}
.y9e{bottom:189.150000px;}
.y4b{bottom:194.190000px;}
.y26{bottom:195.915000px;}
.y31{bottom:196.230000px;}
.y17{bottom:197.670000px;}
.y57{bottom:197.820000px;}
.y5b{bottom:198.360000px;}
.y94{bottom:203.910000px;}
.y3b{bottom:205.410000px;}
.y77{bottom:210.600000px;}
.y25{bottom:212.115000px;}
.y30{bottom:212.430000px;}
.y9{bottom:217.110000px;}
.y93{bottom:218.310000px;}
.y9d{bottom:222.840000px;}
.y24{bottom:228.315000px;}
.y2f{bottom:228.675000px;}
.y4a{bottom:230.220000px;}
.y16{bottom:230.790000px;}
.y92{bottom:232.710000px;}
.y76{bottom:236.700000px;}
.y50{bottom:244.260000px;}
.y52{bottom:244.800000px;}
.y2e{bottom:244.875000px;}
.y3a{bottom:245.910000px;}
.y5a{bottom:248.070000px;}
.y91{bottom:253.050000px;}
.y8{bottom:253.155000px;}
.y49{bottom:254.160000px;}
.y43{bottom:254.415000px;}
.y5c{bottom:258.300000px;}
.y2d{bottom:261.075000px;}
.y75{bottom:262.800000px;}
.y15{bottom:263.730000px;}
.y90{bottom:267.450000px;}
.y23{bottom:275.790000px;}
.y7{bottom:277.095000px;}
.y2c{bottom:277.275000px;}
.y48{bottom:278.100000px;}
.y42{bottom:278.355000px;}
.y1c{bottom:280.335000px;}
.y74{bottom:284.400000px;}
.y39{bottom:286.410000px;}
.y8f{bottom:287.970000px;}
.y7d{bottom:288.900000px;}
.y22{bottom:291.990000px;}
.y14{bottom:296.670000px;}
.y6{bottom:301.215000px;}
.y8e{bottom:302.370000px;}
.y41{bottom:302.505000px;}
.y21{bottom:308.190000px;}
.y73{bottom:310.500000px;}
.y47{bottom:314.100000px;}
.y7c{bottom:315.000000px;}
.y8d{bottom:322.740000px;}
.y20{bottom:324.435000px;}
.y38{bottom:326.955000px;}
.y13{bottom:329.835000px;}
.y9c{bottom:333.510000px;}
.y72{bottom:336.600000px;}
.y8c{bottom:337.140000px;}
.y5{bottom:337.215000px;}
.y46{bottom:338.220000px;}
.y40{bottom:338.505000px;}
.y1f{bottom:340.635000px;}
.y4f{bottom:351.105000px;}
.y8b{bottom:356.040000px;}
.y2{bottom:360.645000px;}
.y4{bottom:361.155000px;}
.y11{bottom:361.545000px;}
.y45{bottom:362.190000px;}
.y3f{bottom:362.445000px;}
.y71{bottom:362.730000px;}
.y12{bottom:362.775000px;}
.y1b{bottom:367.125000px;}
.y8a{bottom:393.840000px;}
.y3c{bottom:403.665000px;}
.y33{bottom:410.400000px;}
.y89{bottom:412.740000px;}
.y19{bottom:456.150000px;}
.y1a{bottom:542.595000px;}
.yd{bottom:562.215000px;}
.h14{height:30.594375px;}
.hb{height:33.041250px;}
.h16{height:37.546875px;}
.h15{height:37.697062px;}
.hd{height:43.554375px;}
.h9{height:48.436523px;}
.h1{height:50.312812px;}
.h17{height:50.463000px;}
.h8{height:56.320312px;}
.ha{height:56.470500px;}
.h6{height:59.324063px;}
.hc{height:62.327813px;}
.h3{height:62.478000px;}
.he{height:66.082500px;}
.h10{height:66.232687px;}
.h4{height:75.093750px;}
.h5{height:75.243937px;}
.h7{height:99.874688px;}
.h2{height:125.406562px;}
.h18{height:125.556750px;}
.h13{height:131.400000px;}
.h11{height:131.580000px;}
.hf{height:132.480000px;}
.h12{height:273.060000px;}
.h0{height:607.500000px;}
.w2{width:192.600000px;}
.w4{width:376.560000px;}
.w3{width:382.680000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:8.280000px;}
.xf{left:53.567984px;}
.x6{left:62.531984px;}
.x1{left:63.755984px;}
.x8{left:64.979984px;}
.x26{left:66.815984px;}
.xc{left:71.423984px;}
.x7{left:75.167984px;}
.x20{left:79.775984px;}
.x16{left:84.095984px;}
.x22{left:95.795984px;}
.x21{left:99.935984px;}
.x12{left:101.159984px;}
.x17{left:124.595984px;}
.x14{left:149.111984px;}
.x19{left:257.220000px;}
.x1b{left:313.484984px;}
.x10{left:332.609984px;}
.x1d{left:399.704984px;}
.x1e{left:411.404984px;}
.xd{left:413.609984px;}
.x11{left:436.169984px;}
.x23{left:552.854984px;}
.x2{left:554.039984px;}
.x24{left:568.874984px;}
.x4{left:570.059984px;}
.x3{left:574.409984px;}
.x25{left:584.894984px;}
.x5{left:590.249984px;}
.x29{left:612.614984px;}
.x1a{left:639.720000px;}
.x1f{left:694.229984px;}
.x9{left:700.589984px;}
.x28{left:739.544984px;}
.x2b{left:743.684984px;}
.xa{left:755.309984px;}
.x15{left:761.294984px;}
.xe{left:764.894984px;}
.xb{left:782.849984px;}
.x1c{left:813.959984px;}
.x27{left:861.584984px;}
.x2a{left:885.344984px;}
.x13{left:943.229984px;}
@media print{
.v3{vertical-align:-11.520000pt;}
.v1{vertical-align:-8.853333pt;}
.v4{vertical-align:-1.664000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.lsd{letter-spacing:-1.872000pt;}
.ls15{letter-spacing:-0.297067pt;}
.ls20{letter-spacing:-0.232533pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls21{letter-spacing:-0.161067pt;}
.ls1b{letter-spacing:-0.109333pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.121067pt;}
.ls1d{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.201067pt;}
.ls1f{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.272640pt;}
.ls14{letter-spacing:2.016000pt;}
.ls17{letter-spacing:6.144000pt;}
.ls1e{letter-spacing:12.638720pt;}
.ls4{letter-spacing:14.128640pt;}
.lsf{letter-spacing:17.984000pt;}
.ls11{letter-spacing:17.994667pt;}
.ls19{letter-spacing:20.762368pt;}
.ls18{letter-spacing:20.864000pt;}
.ls3{letter-spacing:20.970667pt;}
.ls10{letter-spacing:21.402368pt;}
.lse{letter-spacing:21.504000pt;}
.ls16{letter-spacing:22.016000pt;}
.ls6{letter-spacing:31.040000pt;}
.ls8{letter-spacing:32.734720pt;}
.ls0{letter-spacing:33.374720pt;}
.ls2{letter-spacing:50.026667pt;}
.wsa{word-spacing:-29.712640pt;}
.ws2{word-spacing:-17.827584pt;}
.ws1{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.600000pt;}
.ws11{word-spacing:-15.656960pt;}
.ws1e{word-spacing:-14.950827pt;}
.ws10{word-spacing:-14.767360pt;}
.ws14{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.344000pt;}
.wsf{word-spacing:-12.895360pt;}
.ws28{word-spacing:-11.956224pt;}
.ws27{word-spacing:-11.920640pt;}
.ws2d{word-spacing:-11.759573pt;}
.ws29{word-spacing:-11.723691pt;}
.ws24{word-spacing:-8.931584pt;}
.ws26{word-spacing:-8.896000pt;}
.wsb{word-spacing:-2.112000pt;}
.wsd{word-spacing:-1.941333pt;}
.ws22{word-spacing:-1.728000pt;}
.ws1c{word-spacing:-1.536000pt;}
.wsc{word-spacing:-1.365333pt;}
.ws19{word-spacing:-1.216000pt;}
.ws3{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.693333pt;}
.ws5{word-spacing:-0.576000pt;}
.ws2a{word-spacing:-0.335573pt;}
.ws12{word-spacing:-0.271360pt;}
.ws4{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.064128pt;}
.ws18{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.113280pt;}
.ws6{word-spacing:0.149333pt;}
.ws23{word-spacing:0.212736pt;}
.ws25{word-spacing:0.288000pt;}
.ws2c{word-spacing:0.800640pt;}
.ws1b{word-spacing:15.744000pt;}
.ws16{word-spacing:17.344000pt;}
.ws21{word-spacing:80.699307pt;}
.ws20{word-spacing:81.297920pt;}
.ws1f{word-spacing:82.257920pt;}
.wse{word-spacing:108.781867pt;}
.ws13{word-spacing:123.814613pt;}
.ws15{word-spacing:129.244587pt;}
.ws1d{word-spacing:229.586880pt;}
.ws9{word-spacing:1159.725077pt;}
._f{margin-left:-6.464000pt;}
._4{margin-left:-5.262080pt;}
._3{margin-left:-3.847680pt;}
._7{margin-left:-2.880000pt;}
._0{margin-left:-1.200640pt;}
._6{width:0.896000pt;}
._1{width:1.816960pt;}
._5{width:2.992640pt;}
._b{width:4.451627pt;}
._10{width:6.802987pt;}
._11{width:12.963413pt;}
._e{width:14.699520pt;}
._8{width:15.696640pt;}
._a{width:16.725333pt;}
._2{width:33.637547pt;}
._9{width:34.558507pt;}
._c{width:757.724160pt;}
._d{width:1039.753387pt;}
.fse{font-size:24.960000pt;}
.fs9{font-size:28.160000pt;}
.fs10{font-size:32.000000pt;}
.fsf{font-size:32.128000pt;}
.fsb{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs11{font-size:43.008000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs5{font-size:50.560000pt;}
.fsa{font-size:53.120000pt;}
.fs2{font-size:53.248000pt;}
.fsc{font-size:56.320000pt;}
.fsd{font-size:56.448000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fs6{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.fs12{font-size:107.008000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:8.704000pt;}
.y3{bottom:9.120000pt;}
.y6d{bottom:10.720000pt;}
.y6f{bottom:11.200000pt;}
.y1{bottom:17.408000pt;}
.y62{bottom:30.880000pt;}
.ya3{bottom:36.320000pt;}
.y3d{bottom:44.384000pt;}
.y7b{bottom:44.800000pt;}
.y87{bottom:45.088000pt;}
.ya2{bottom:47.520000pt;}
.y86{bottom:47.936000pt;}
.y69{bottom:52.000000pt;}
.y6b{bottom:52.480000pt;}
.y88{bottom:53.088000pt;}
.y70{bottom:53.216000pt;}
.y6c{bottom:53.248000pt;}
.y5f{bottom:53.253333pt;}
.y53{bottom:53.280000pt;}
.y6e{bottom:53.600000pt;}
.y61{bottom:53.626667pt;}
.y6a{bottom:53.632000pt;}
.y58{bottom:53.666667pt;}
.y51{bottom:53.693333pt;}
.y1e{bottom:55.616000pt;}
.y10{bottom:60.832000pt;}
.y44{bottom:66.112000pt;}
.y9b{bottom:70.336000pt;}
.y85{bottom:71.168000pt;}
.ya1{bottom:78.528000pt;}
.y82{bottom:79.168000pt;}
.y9a{bottom:88.416000pt;}
.y60{bottom:93.280000pt;}
.y67{bottom:93.760000pt;}
.yf{bottom:94.304000pt;}
.y84{bottom:94.368000pt;}
.y4e{bottom:97.888000pt;}
.y99{bottom:101.216000pt;}
.y2b{bottom:102.112000pt;}
.y81{bottom:102.368000pt;}
.y65{bottom:107.040000pt;}
.y56{bottom:107.066667pt;}
.ya0{bottom:108.448000pt;}
.y37{bottom:112.544000pt;}
.y59{bottom:113.440000pt;}
.y98{bottom:114.016000pt;}
.y2a{bottom:116.544000pt;}
.y83{bottom:117.568000pt;}
.yc{bottom:118.272000pt;}
.y4d{bottom:119.168000pt;}
.y7a{bottom:121.568000pt;}
.y63{bottom:125.120000pt;}
.y55{bottom:125.146667pt;}
.y80{bottom:125.568000pt;}
.y36{bottom:126.944000pt;}
.ye{bottom:127.584000pt;}
.y29{bottom:130.944000pt;}
.y97{bottom:132.096000pt;}
.y5d{bottom:134.560000pt;}
.y5e{bottom:135.040000pt;}
.y66{bottom:137.920000pt;}
.y9f{bottom:138.373333pt;}
.y1d{bottom:139.106667pt;}
.yb{bottom:139.706667pt;}
.y79{bottom:140.773333pt;}
.y35{bottom:141.346667pt;}
.y7f{bottom:144.773333pt;}
.y28{bottom:145.346667pt;}
.y18{bottom:146.400000pt;}
.y68{bottom:147.013333pt;}
.y96{bottom:150.333333pt;}
.y4c{bottom:151.173333pt;}
.y54{bottom:154.720000pt;}
.y34{bottom:155.746667pt;}
.y64{bottom:156.000000pt;}
.y27{bottom:159.746667pt;}
.y32{bottom:160.026667pt;}
.ya{bottom:160.986667pt;}
.y95{bottom:163.173333pt;}
.y78{bottom:163.973333pt;}
.y7e{bottom:167.973333pt;}
.y9e{bottom:168.133333pt;}
.y4b{bottom:172.613333pt;}
.y26{bottom:174.146667pt;}
.y31{bottom:174.426667pt;}
.y17{bottom:175.706667pt;}
.y57{bottom:175.840000pt;}
.y5b{bottom:176.320000pt;}
.y94{bottom:181.253333pt;}
.y3b{bottom:182.586667pt;}
.y77{bottom:187.200000pt;}
.y25{bottom:188.546667pt;}
.y30{bottom:188.826667pt;}
.y9{bottom:192.986667pt;}
.y93{bottom:194.053333pt;}
.y9d{bottom:198.080000pt;}
.y24{bottom:202.946667pt;}
.y2f{bottom:203.266667pt;}
.y4a{bottom:204.640000pt;}
.y16{bottom:205.146667pt;}
.y92{bottom:206.853333pt;}
.y76{bottom:210.400000pt;}
.y50{bottom:217.120000pt;}
.y52{bottom:217.600000pt;}
.y2e{bottom:217.666667pt;}
.y3a{bottom:218.586667pt;}
.y5a{bottom:220.506667pt;}
.y91{bottom:224.933333pt;}
.y8{bottom:225.026667pt;}
.y49{bottom:225.920000pt;}
.y43{bottom:226.146667pt;}
.y5c{bottom:229.600000pt;}
.y2d{bottom:232.066667pt;}
.y75{bottom:233.600000pt;}
.y15{bottom:234.426667pt;}
.y90{bottom:237.733333pt;}
.y23{bottom:245.146667pt;}
.y7{bottom:246.306667pt;}
.y2c{bottom:246.466667pt;}
.y48{bottom:247.200000pt;}
.y42{bottom:247.426667pt;}
.y1c{bottom:249.186667pt;}
.y74{bottom:252.800000pt;}
.y39{bottom:254.586667pt;}
.y8f{bottom:255.973333pt;}
.y7d{bottom:256.800000pt;}
.y22{bottom:259.546667pt;}
.y14{bottom:263.706667pt;}
.y6{bottom:267.746667pt;}
.y8e{bottom:268.773333pt;}
.y41{bottom:268.893333pt;}
.y21{bottom:273.946667pt;}
.y73{bottom:276.000000pt;}
.y47{bottom:279.200000pt;}
.y7c{bottom:280.000000pt;}
.y8d{bottom:286.880000pt;}
.y20{bottom:288.386667pt;}
.y38{bottom:290.626667pt;}
.y13{bottom:293.186667pt;}
.y9c{bottom:296.453333pt;}
.y72{bottom:299.200000pt;}
.y8c{bottom:299.680000pt;}
.y5{bottom:299.746667pt;}
.y46{bottom:300.640000pt;}
.y40{bottom:300.893333pt;}
.y1f{bottom:302.786667pt;}
.y4f{bottom:312.093333pt;}
.y8b{bottom:316.480000pt;}
.y2{bottom:320.573333pt;}
.y4{bottom:321.026667pt;}
.y11{bottom:321.373333pt;}
.y45{bottom:321.946667pt;}
.y3f{bottom:322.173333pt;}
.y71{bottom:322.426667pt;}
.y12{bottom:322.466667pt;}
.y1b{bottom:326.333333pt;}
.y8a{bottom:350.080000pt;}
.y3c{bottom:358.813333pt;}
.y33{bottom:364.800000pt;}
.y89{bottom:366.880000pt;}
.y19{bottom:405.466667pt;}
.y1a{bottom:482.306667pt;}
.yd{bottom:499.746667pt;}
.h14{height:27.195000pt;}
.hb{height:29.370000pt;}
.h16{height:33.375000pt;}
.h15{height:33.508500pt;}
.hd{height:38.715000pt;}
.h9{height:43.054688pt;}
.h1{height:44.722500pt;}
.h17{height:44.856000pt;}
.h8{height:50.062500pt;}
.ha{height:50.196000pt;}
.h6{height:52.732500pt;}
.hc{height:55.402500pt;}
.h3{height:55.536000pt;}
.he{height:58.740000pt;}
.h10{height:58.873500pt;}
.h4{height:66.750000pt;}
.h5{height:66.883500pt;}
.h7{height:88.777500pt;}
.h2{height:111.472500pt;}
.h18{height:111.606000pt;}
.h13{height:116.800000pt;}
.h11{height:116.960000pt;}
.hf{height:117.760000pt;}
.h12{height:242.720000pt;}
.h0{height:540.000000pt;}
.w2{width:171.200000pt;}
.w4{width:334.720000pt;}
.w3{width:340.160000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.360000pt;}
.xf{left:47.615986pt;}
.x6{left:55.583986pt;}
.x1{left:56.671986pt;}
.x8{left:57.759986pt;}
.x26{left:59.391986pt;}
.xc{left:63.487986pt;}
.x7{left:66.815986pt;}
.x20{left:70.911986pt;}
.x16{left:74.751986pt;}
.x22{left:85.151986pt;}
.x21{left:88.831986pt;}
.x12{left:89.919986pt;}
.x17{left:110.751986pt;}
.x14{left:132.543986pt;}
.x19{left:228.640000pt;}
.x1b{left:278.653319pt;}
.x10{left:295.653319pt;}
.x1d{left:355.293319pt;}
.x1e{left:365.693319pt;}
.xd{left:367.653319pt;}
.x11{left:387.706652pt;}
.x23{left:491.426652pt;}
.x2{left:492.479986pt;}
.x24{left:505.666652pt;}
.x4{left:506.719986pt;}
.x3{left:510.586652pt;}
.x25{left:519.906652pt;}
.x5{left:524.666652pt;}
.x29{left:544.546652pt;}
.x1a{left:568.640000pt;}
.x1f{left:617.093319pt;}
.x9{left:622.746652pt;}
.x28{left:657.373319pt;}
.x2b{left:661.053319pt;}
.xa{left:671.386652pt;}
.x15{left:676.706652pt;}
.xe{left:679.906652pt;}
.xb{left:695.866652pt;}
.x1c{left:723.519986pt;}
.x27{left:765.853319pt;}
.x2a{left:786.973319pt;}
.x13{left:838.426652pt;}
}




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