
    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_f9cb965178eeec186ea3b149.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_70f09edb46ddbd0119d9f8cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_7077885fed0867845c72936c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_3e913da1d0290504aec84a38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_8dc2ae6b25af0d4491622356.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_2c0eb4233f4089bbb0d8bacb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916016;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_56afd79395cf3251751328ac.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.584000px;}
.lse{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.189600px;}
.ls9{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls15{letter-spacing:2.160000px;}
.ls1{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.600000px;}
.ls14{letter-spacing:6.480000px;}
.ls16{letter-spacing:10.080000px;}
.ls0{letter-spacing:14.400000px;}
.lsd{letter-spacing:44.784000px;}
.ls6{letter-spacing:65.117280px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws0{word-spacing:-24.129600px;}
.ws1{word-spacing:-23.921280px;}
.ws5{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.280000px;}
.wse{word-spacing:-16.416000px;}
.wsb{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
._22{margin-left:-5.433840px;}
._21{margin-left:-4.201440px;}
._6{margin-left:-2.848080px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._8{width:2.212800px;}
._11{width:3.564000px;}
._18{width:4.680000px;}
._17{width:6.012000px;}
._12{width:7.416000px;}
._13{width:8.640000px;}
._24{width:9.650400px;}
._16{width:10.656000px;}
._c{width:12.024000px;}
._a{width:13.320000px;}
._b{width:14.366400px;}
._1c{width:15.729600px;}
._9{width:16.793280px;}
._d{width:19.584000px;}
._23{width:21.240000px;}
._f{width:22.824000px;}
._14{width:24.048000px;}
._15{width:25.272000px;}
._1b{width:26.289120px;}
._1a{width:27.737280px;}
._20{width:29.196960px;}
._19{width:30.252000px;}
._4{width:31.600800px;}
._3{width:32.845680px;}
._25{width:35.340960px;}
._1d{width:36.504000px;}
._1e{width:37.512000px;}
._1f{width:38.736000px;}
._e{width:43.632000px;}
._27{width:48.384000px;}
._28{width:49.392000px;}
._2{width:56.617680px;}
._26{width:58.150320px;}
._10{width:84.996000px;}
._5{width:97.698720px;}
._7{width:128.150400px;}
.fc1{color:rgb(0,0,9);}
.fc3{color:rgb(27,27,27);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:20.880000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:82.980000px;}
.y3{bottom:101.916000px;}
.y2{bottom:120.996000px;}
.y1{bottom:139.896000px;}
.y6d{bottom:160.410000px;}
.y2e{bottom:160.950000px;}
.ybc{bottom:181.110000px;}
.y2d{bottom:181.650000px;}
.ya2{bottom:183.450000px;}
.y99{bottom:185.250000px;}
.y81{bottom:187.410000px;}
.y7a{bottom:187.770000px;}
.y6c{bottom:191.550000px;}
.y4c{bottom:193.710000px;}
.ybb{bottom:201.810000px;}
.y2c{bottom:202.170000px;}
.y79{bottom:207.930000px;}
.ya1{bottom:214.410000px;}
.y98{bottom:216.210000px;}
.y80{bottom:218.370000px;}
.y6b{bottom:222.510000px;}
.y2b{bottom:222.870000px;}
.y4b{bottom:224.850000px;}
.y78{bottom:231.330000px;}
.yba{bottom:243.210000px;}
.y2a{bottom:243.570000px;}
.y7f{bottom:244.470000px;}
.ya0{bottom:245.370000px;}
.y97{bottom:247.170000px;}
.y77{bottom:248.610000px;}
.y6a{bottom:253.650000px;}
.y4a{bottom:255.810000px;}
.y7e{bottom:261.750000px;}
.yb9{bottom:263.910000px;}
.y29{bottom:264.270000px;}
.y9f{bottom:271.830000px;}
.y96{bottom:284.430000px;}
.y69{bottom:284.610000px;}
.y28{bottom:284.970000px;}
.y49{bottom:286.950000px;}
.y9e{bottom:290.910000px;}
.yb8{bottom:305.310000px;}
.y27{bottom:305.670000px;}
.y9d{bottom:309.450000px;}
.y95{bottom:315.390000px;}
.y68{bottom:315.750000px;}
.y48{bottom:317.910000px;}
.yb7{bottom:326.010000px;}
.y26{bottom:326.370000px;}
.y94{bottom:346.530000px;}
.y67{bottom:346.710000px;}
.y25{bottom:347.070000px;}
.y47{bottom:349.050000px;}
.yb6{bottom:367.455000px;}
.y24{bottom:367.815000px;}
.y93{bottom:377.535000px;}
.y66{bottom:377.895000px;}
.y46{bottom:380.055000px;}
.yb5{bottom:388.155000px;}
.y23{bottom:388.515000px;}
.y65{bottom:408.135000px;}
.y92{bottom:408.675000px;}
.yb4{bottom:408.855000px;}
.y22{bottom:409.215000px;}
.y45{bottom:411.195000px;}
.ydb{bottom:414.435000px;}
.yb3{bottom:429.555000px;}
.y21{bottom:429.915000px;}
.y64{bottom:431.715000px;}
.yda{bottom:435.135000px;}
.y91{bottom:439.635000px;}
.y44{bottom:442.155000px;}
.yb2{bottom:450.255000px;}
.y20{bottom:450.615000px;}
.yd9{bottom:455.835000px;}
.y63{bottom:457.095000px;}
.y90{bottom:470.775000px;}
.y1f{bottom:471.315000px;}
.yb1{bottom:471.495000px;}
.y43{bottom:473.295000px;}
.yd8{bottom:476.535000px;}
.y62{bottom:488.055000px;}
.y1e{bottom:492.015000px;}
.yd7{bottom:497.235000px;}
.y8f{bottom:501.735000px;}
.y42{bottom:504.255000px;}
.y1d{bottom:512.715000px;}
.y61{bottom:519.195000px;}
.yb0{bottom:527.835000px;}
.yd6{bottom:529.815000px;}
.y8e{bottom:532.875000px;}
.y1c{bottom:533.415000px;}
.y41{bottom:535.395000px;}
.y60{bottom:550.155000px;}
.yd5{bottom:550.515000px;}
.y76{bottom:551.955000px;}
.y1b{bottom:554.115000px;}
.y75{bottom:561.315000px;}
.y8d{bottom:563.835000px;}
.y40{bottom:566.355000px;}
.yd4{bottom:571.215000px;}
.yaf{bottom:573.915000px;}
.y1a{bottom:574.815000px;}
.y5f{bottom:581.295000px;}
.yd3{bottom:591.915000px;}
.y8c{bottom:594.975000px;}
.y19{bottom:595.515000px;}
.y3f{bottom:597.495000px;}
.y74{bottom:598.395000px;}
.yae{bottom:604.875000px;}
.y7d{bottom:606.135000px;}
.y5e{bottom:612.255000px;}
.yd2{bottom:612.615000px;}
.y7c{bottom:614.955000px;}
.y18{bottom:616.215000px;}
.y8b{bottom:625.965000px;}
.y3e{bottom:628.485000px;}
.y73{bottom:629.385000px;}
.y7b{bottom:632.085000px;}
.yd1{bottom:633.345000px;}
.yad{bottom:636.045000px;}
.y17{bottom:636.945000px;}
.y5d{bottom:643.425000px;}
.y8a{bottom:657.105000px;}
.y16{bottom:657.645000px;}
.y3d{bottom:659.625000px;}
.y72{bottom:660.525000px;}
.yd0{bottom:666.105000px;}
.yac{bottom:667.005000px;}
.y5c{bottom:674.385000px;}
.y15{bottom:678.345000px;}
.ycf{bottom:686.805000px;}
.y89{bottom:687.885000px;}
.y3c{bottom:690.585000px;}
.y71{bottom:691.485000px;}
.yab{bottom:698.145000px;}
.y14{bottom:699.045000px;}
.y5b{bottom:705.525000px;}
.yce{bottom:707.505000px;}
.y13{bottom:719.745000px;}
.y3b{bottom:721.725000px;}
.y70{bottom:722.625000px;}
.y88{bottom:725.145000px;}
.ycd{bottom:728.205000px;}
.yaa{bottom:729.105000px;}
.y5a{bottom:736.485000px;}
.y12{bottom:740.445000px;}
.y87{bottom:745.845000px;}
.ycc{bottom:748.905000px;}
.y3a{bottom:752.685000px;}
.y6f{bottom:753.585000px;}
.ya9{bottom:760.245000px;}
.y11{bottom:761.145000px;}
.y59{bottom:766.725000px;}
.ycb{bottom:769.605000px;}
.y86{bottom:778.605000px;}
.y10{bottom:781.845000px;}
.y39{bottom:783.645000px;}
.y6e{bottom:784.725000px;}
.y58{bottom:790.305000px;}
.ya8{bottom:791.205000px;}
.yf{bottom:802.545000px;}
.y85{bottom:809.745000px;}
.yca{bottom:811.005000px;}
.y38{bottom:814.785000px;}
.y57{bottom:815.685000px;}
.ya7{bottom:822.345000px;}
.ye{bottom:823.245000px;}
.yc9{bottom:831.705000px;}
.y84{bottom:840.705000px;}
.yd{bottom:843.945000px;}
.y37{bottom:845.745000px;}
.y56{bottom:846.825000px;}
.yc8{bottom:852.405000px;}
.ya6{bottom:853.305000px;}
.yc{bottom:864.645000px;}
.y83{bottom:871.845000px;}
.yc7{bottom:873.105000px;}
.ya5{bottom:874.725000px;}
.y36{bottom:876.885000px;}
.y55{bottom:877.785000px;}
.yc6{bottom:893.850000px;}
.ya4{bottom:901.410000px;}
.y82{bottom:902.850000px;}
.yb{bottom:907.350000px;}
.y54{bottom:908.970000px;}
.y35{bottom:909.330000px;}
.yc5{bottom:914.550000px;}
.ya3{bottom:924.990000px;}
.ya{bottom:935.070000px;}
.yc4{bottom:935.250000px;}
.y53{bottom:939.930000px;}
.y34{bottom:941.730000px;}
.yc3{bottom:955.950000px;}
.y9{bottom:962.610000px;}
.y52{bottom:971.070000px;}
.y33{bottom:974.130000px;}
.yc2{bottom:976.650000px;}
.yc1{bottom:997.350000px;}
.y51{bottom:1002.030000px;}
.y32{bottom:1006.710000px;}
.y8{bottom:1010.850000px;}
.yc0{bottom:1018.050000px;}
.y50{bottom:1033.170000px;}
.y7{bottom:1038.570000px;}
.ybf{bottom:1038.750000px;}
.y31{bottom:1039.110000px;}
.y9c{bottom:1054.770000px;}
.y4f{bottom:1064.130000px;}
.y6{bottom:1066.110000px;}
.y30{bottom:1071.510000px;}
.y9b{bottom:1072.050000px;}
.ybe{bottom:1084.830000px;}
.y5{bottom:1093.650000px;}
.y4e{bottom:1095.270000px;}
.y9a{bottom:1097.970000px;}
.y2f{bottom:1100.850000px;}
.ybd{bottom:1105.530000px;}
.y4d{bottom:1126.230000px;}
.h6{height:17.209687px;}
.h7{height:49.255313px;}
.h8{height:54.596250px;}
.h4{height:59.343750px;}
.h1{height:59.383125px;}
.h3{height:64.546875px;}
.h5{height:74.820586px;}
.h2{height:85.052461px;}
.h0{height:1264.500000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x1{left:117.035987px;}
.x2{left:127.655987px;}
.x17{left:142.235987px;}
.x1a{left:154.649987px;}
.x6{left:158.609987px;}
.x5{left:170.309987px;}
.x3{left:186.329987px;}
.x7{left:201.629987px;}
.x8{left:212.969987px;}
.x9{left:234.929987px;}
.xa{left:246.269987px;}
.x19{left:263.234987px;}
.x16{left:276.374987px;}
.x1b{left:280.154987px;}
.xb{left:286.094987px;}
.x4{left:290.414987px;}
.xc{left:297.434987px;}
.x15{left:305.174987px;}
.xd{left:384.734987px;}
.xe{left:396.074987px;}
.x18{left:412.274987px;}
.xf{left:482.144987px;}
.x10{left:493.484987px;}
.x11{left:501.404987px;}
.x12{left:512.744987px;}
.x13{left:615.029987px;}
.x14{left:626.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.408000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.168533pt;}
.ls9{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls1{letter-spacing:2.560000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls16{letter-spacing:8.960000pt;}
.ls0{letter-spacing:12.800000pt;}
.lsd{letter-spacing:39.808000pt;}
.ls6{letter-spacing:57.882027pt;}
.ws3{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.448533pt;}
.ws1{word-spacing:-21.263360pt;}
.ws5{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.360000pt;}
.wse{word-spacing:-14.592000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws9{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
._22{margin-left:-4.830080pt;}
._21{margin-left:-3.734613pt;}
._6{margin-left:-2.531627pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._8{width:1.966933pt;}
._11{width:3.168000pt;}
._18{width:4.160000pt;}
._17{width:5.344000pt;}
._12{width:6.592000pt;}
._13{width:7.680000pt;}
._24{width:8.578133pt;}
._16{width:9.472000pt;}
._c{width:10.688000pt;}
._a{width:11.840000pt;}
._b{width:12.770133pt;}
._1c{width:13.981867pt;}
._9{width:14.927360pt;}
._d{width:17.408000pt;}
._23{width:18.880000pt;}
._f{width:20.288000pt;}
._14{width:21.376000pt;}
._15{width:22.464000pt;}
._1b{width:23.368107pt;}
._1a{width:24.655360pt;}
._20{width:25.952853pt;}
._19{width:26.890667pt;}
._4{width:28.089600pt;}
._3{width:29.196160pt;}
._25{width:31.414187pt;}
._1d{width:32.448000pt;}
._1e{width:33.344000pt;}
._1f{width:34.432000pt;}
._e{width:38.784000pt;}
._27{width:43.008000pt;}
._28{width:43.904000pt;}
._2{width:50.326827pt;}
._26{width:51.689173pt;}
._10{width:75.552000pt;}
._5{width:86.843307pt;}
._7{width:113.911467pt;}
.fs4{font-size:18.560000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:73.760000pt;}
.y3{bottom:90.592000pt;}
.y2{bottom:107.552000pt;}
.y1{bottom:124.352000pt;}
.y6d{bottom:142.586667pt;}
.y2e{bottom:143.066667pt;}
.ybc{bottom:160.986667pt;}
.y2d{bottom:161.466667pt;}
.ya2{bottom:163.066667pt;}
.y99{bottom:164.666667pt;}
.y81{bottom:166.586667pt;}
.y7a{bottom:166.906667pt;}
.y6c{bottom:170.266667pt;}
.y4c{bottom:172.186667pt;}
.ybb{bottom:179.386667pt;}
.y2c{bottom:179.706667pt;}
.y79{bottom:184.826667pt;}
.ya1{bottom:190.586667pt;}
.y98{bottom:192.186667pt;}
.y80{bottom:194.106667pt;}
.y6b{bottom:197.786667pt;}
.y2b{bottom:198.106667pt;}
.y4b{bottom:199.866667pt;}
.y78{bottom:205.626667pt;}
.yba{bottom:216.186667pt;}
.y2a{bottom:216.506667pt;}
.y7f{bottom:217.306667pt;}
.ya0{bottom:218.106667pt;}
.y97{bottom:219.706667pt;}
.y77{bottom:220.986667pt;}
.y6a{bottom:225.466667pt;}
.y4a{bottom:227.386667pt;}
.y7e{bottom:232.666667pt;}
.yb9{bottom:234.586667pt;}
.y29{bottom:234.906667pt;}
.y9f{bottom:241.626667pt;}
.y96{bottom:252.826667pt;}
.y69{bottom:252.986667pt;}
.y28{bottom:253.306667pt;}
.y49{bottom:255.066667pt;}
.y9e{bottom:258.586667pt;}
.yb8{bottom:271.386667pt;}
.y27{bottom:271.706667pt;}
.y9d{bottom:275.066667pt;}
.y95{bottom:280.346667pt;}
.y68{bottom:280.666667pt;}
.y48{bottom:282.586667pt;}
.yb7{bottom:289.786667pt;}
.y26{bottom:290.106667pt;}
.y94{bottom:308.026667pt;}
.y67{bottom:308.186667pt;}
.y25{bottom:308.506667pt;}
.y47{bottom:310.266667pt;}
.yb6{bottom:326.626667pt;}
.y24{bottom:326.946667pt;}
.y93{bottom:335.586667pt;}
.y66{bottom:335.906667pt;}
.y46{bottom:337.826667pt;}
.yb5{bottom:345.026667pt;}
.y23{bottom:345.346667pt;}
.y65{bottom:362.786667pt;}
.y92{bottom:363.266667pt;}
.yb4{bottom:363.426667pt;}
.y22{bottom:363.746667pt;}
.y45{bottom:365.506667pt;}
.ydb{bottom:368.386667pt;}
.yb3{bottom:381.826667pt;}
.y21{bottom:382.146667pt;}
.y64{bottom:383.746667pt;}
.yda{bottom:386.786667pt;}
.y91{bottom:390.786667pt;}
.y44{bottom:393.026667pt;}
.yb2{bottom:400.226667pt;}
.y20{bottom:400.546667pt;}
.yd9{bottom:405.186667pt;}
.y63{bottom:406.306667pt;}
.y90{bottom:418.466667pt;}
.y1f{bottom:418.946667pt;}
.yb1{bottom:419.106667pt;}
.y43{bottom:420.706667pt;}
.yd8{bottom:423.586667pt;}
.y62{bottom:433.826667pt;}
.y1e{bottom:437.346667pt;}
.yd7{bottom:441.986667pt;}
.y8f{bottom:445.986667pt;}
.y42{bottom:448.226667pt;}
.y1d{bottom:455.746667pt;}
.y61{bottom:461.506667pt;}
.yb0{bottom:469.186667pt;}
.yd6{bottom:470.946667pt;}
.y8e{bottom:473.666667pt;}
.y1c{bottom:474.146667pt;}
.y41{bottom:475.906667pt;}
.y60{bottom:489.026667pt;}
.yd5{bottom:489.346667pt;}
.y76{bottom:490.626667pt;}
.y1b{bottom:492.546667pt;}
.y75{bottom:498.946667pt;}
.y8d{bottom:501.186667pt;}
.y40{bottom:503.426667pt;}
.yd4{bottom:507.746667pt;}
.yaf{bottom:510.146667pt;}
.y1a{bottom:510.946667pt;}
.y5f{bottom:516.706667pt;}
.yd3{bottom:526.146667pt;}
.y8c{bottom:528.866667pt;}
.y19{bottom:529.346667pt;}
.y3f{bottom:531.106667pt;}
.y74{bottom:531.906667pt;}
.yae{bottom:537.666667pt;}
.y7d{bottom:538.786667pt;}
.y5e{bottom:544.226667pt;}
.yd2{bottom:544.546667pt;}
.y7c{bottom:546.626667pt;}
.y18{bottom:547.746667pt;}
.y8b{bottom:556.413333pt;}
.y3e{bottom:558.653333pt;}
.y73{bottom:559.453333pt;}
.y7b{bottom:561.853333pt;}
.yd1{bottom:562.973333pt;}
.yad{bottom:565.373333pt;}
.y17{bottom:566.173333pt;}
.y5d{bottom:571.933333pt;}
.y8a{bottom:584.093333pt;}
.y16{bottom:584.573333pt;}
.y3d{bottom:586.333333pt;}
.y72{bottom:587.133333pt;}
.yd0{bottom:592.093333pt;}
.yac{bottom:592.893333pt;}
.y5c{bottom:599.453333pt;}
.y15{bottom:602.973333pt;}
.ycf{bottom:610.493333pt;}
.y89{bottom:611.453333pt;}
.y3c{bottom:613.853333pt;}
.y71{bottom:614.653333pt;}
.yab{bottom:620.573333pt;}
.y14{bottom:621.373333pt;}
.y5b{bottom:627.133333pt;}
.yce{bottom:628.893333pt;}
.y13{bottom:639.773333pt;}
.y3b{bottom:641.533333pt;}
.y70{bottom:642.333333pt;}
.y88{bottom:644.573333pt;}
.ycd{bottom:647.293333pt;}
.yaa{bottom:648.093333pt;}
.y5a{bottom:654.653333pt;}
.y12{bottom:658.173333pt;}
.y87{bottom:662.973333pt;}
.ycc{bottom:665.693333pt;}
.y3a{bottom:669.053333pt;}
.y6f{bottom:669.853333pt;}
.ya9{bottom:675.773333pt;}
.y11{bottom:676.573333pt;}
.y59{bottom:681.533333pt;}
.ycb{bottom:684.093333pt;}
.y86{bottom:692.093333pt;}
.y10{bottom:694.973333pt;}
.y39{bottom:696.573333pt;}
.y6e{bottom:697.533333pt;}
.y58{bottom:702.493333pt;}
.ya8{bottom:703.293333pt;}
.yf{bottom:713.373333pt;}
.y85{bottom:719.773333pt;}
.yca{bottom:720.893333pt;}
.y38{bottom:724.253333pt;}
.y57{bottom:725.053333pt;}
.ya7{bottom:730.973333pt;}
.ye{bottom:731.773333pt;}
.yc9{bottom:739.293333pt;}
.y84{bottom:747.293333pt;}
.yd{bottom:750.173333pt;}
.y37{bottom:751.773333pt;}
.y56{bottom:752.733333pt;}
.yc8{bottom:757.693333pt;}
.ya6{bottom:758.493333pt;}
.yc{bottom:768.573333pt;}
.y83{bottom:774.973333pt;}
.yc7{bottom:776.093333pt;}
.ya5{bottom:777.533333pt;}
.y36{bottom:779.453333pt;}
.y55{bottom:780.253333pt;}
.yc6{bottom:794.533333pt;}
.ya4{bottom:801.253333pt;}
.y82{bottom:802.533333pt;}
.yb{bottom:806.533333pt;}
.y54{bottom:807.973333pt;}
.y35{bottom:808.293333pt;}
.yc5{bottom:812.933333pt;}
.ya3{bottom:822.213333pt;}
.ya{bottom:831.173333pt;}
.yc4{bottom:831.333333pt;}
.y53{bottom:835.493333pt;}
.y34{bottom:837.093333pt;}
.yc3{bottom:849.733333pt;}
.y9{bottom:855.653333pt;}
.y52{bottom:863.173333pt;}
.y33{bottom:865.893333pt;}
.yc2{bottom:868.133333pt;}
.yc1{bottom:886.533333pt;}
.y51{bottom:890.693333pt;}
.y32{bottom:894.853333pt;}
.y8{bottom:898.533333pt;}
.yc0{bottom:904.933333pt;}
.y50{bottom:918.373333pt;}
.y7{bottom:923.173333pt;}
.ybf{bottom:923.333333pt;}
.y31{bottom:923.653333pt;}
.y9c{bottom:937.573333pt;}
.y4f{bottom:945.893333pt;}
.y6{bottom:947.653333pt;}
.y30{bottom:952.453333pt;}
.y9b{bottom:952.933333pt;}
.ybe{bottom:964.293333pt;}
.y5{bottom:972.133333pt;}
.y4e{bottom:973.573333pt;}
.y9a{bottom:975.973333pt;}
.y2f{bottom:978.533333pt;}
.ybd{bottom:982.693333pt;}
.y4d{bottom:1001.093333pt;}
.h6{height:15.297500pt;}
.h7{height:43.782500pt;}
.h8{height:48.530000pt;}
.h4{height:52.750000pt;}
.h1{height:52.785000pt;}
.h3{height:57.375000pt;}
.h5{height:66.507188pt;}
.h2{height:75.602187pt;}
.h0{height:1124.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x1{left:104.031988pt;}
.x2{left:113.471988pt;}
.x17{left:126.431988pt;}
.x1a{left:137.466655pt;}
.x6{left:140.986655pt;}
.x5{left:151.386655pt;}
.x3{left:165.626655pt;}
.x7{left:179.226655pt;}
.x8{left:189.306655pt;}
.x9{left:208.826655pt;}
.xa{left:218.906655pt;}
.x19{left:233.986655pt;}
.x16{left:245.666655pt;}
.x1b{left:249.026655pt;}
.xb{left:254.306655pt;}
.x4{left:258.146655pt;}
.xc{left:264.386655pt;}
.x15{left:271.266655pt;}
.xd{left:341.986655pt;}
.xe{left:352.066655pt;}
.x18{left:366.466655pt;}
.xf{left:428.573321pt;}
.x10{left:438.653321pt;}
.x11{left:445.693321pt;}
.x12{left:455.773321pt;}
.x13{left:546.693321pt;}
.x14{left:556.773321pt;}
}




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