
    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_46b598ddc5fd4496150c78ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.758789;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_2e338884131034c6f6415d11.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_c266ee360bd6c3e7ca76b915.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.912109;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_2959ede5334a2379a37a0172.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891113;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_6a9eb6cc3fa47c1c43c90501.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_df3bc70d2ab77a6b843e3ab5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.887695;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_27a5cca51064fda8683f2fa4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_db223ed72358c0b4c3d56d21.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f60f09af2a1a0c581b0543ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_631726bc4385553e3415ed70.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8b521a44e763d8ca2b326d0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.780273;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);}
.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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls10{letter-spacing:-2.910000px;}
.ls2{letter-spacing:-0.762000px;}
.ls5{letter-spacing:-0.375600px;}
.ls6{letter-spacing:-0.023760px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.011760px;}
.lsa{letter-spacing:0.023760px;}
.ls14{letter-spacing:0.828000px;}
.ls0{letter-spacing:0.941760px;}
.ls7{letter-spacing:1.218240px;}
.ls9{letter-spacing:1.410000px;}
.ls4{letter-spacing:1.782000px;}
.ls13{letter-spacing:1.784160px;}
.lse{letter-spacing:2.183760px;}
.ls3{letter-spacing:5.400000px;}
.ls11{letter-spacing:6.120000px;}
.lsd{letter-spacing:8.264160px;}
.lsc{letter-spacing:21.224160px;}
.lsb{letter-spacing:23.384160px;}
.ls8{letter-spacing:27.704160px;}
.ls12{letter-spacing:51.464160px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(59,133,242),0 0.015em rgb(59,133,242),0.015em 0 rgb(59,133,242),0 -0.015em  rgb(59,133,242);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(59,133,242);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-19.839600px;}
.ws1{word-spacing:-19.815840px;}
.ws2{word-spacing:-19.792080px;}
.ws0{word-spacing:-11.409120px;}
.ws3{word-spacing:0.000000px;}
._28{margin-left:-4.836240px;}
._4{margin-left:-3.453840px;}
._3{margin-left:-2.269920px;}
._1{margin-left:-1.235520px;}
._0{width:1.805760px;}
._2{width:3.150240px;}
._c{width:4.625760px;}
._a{width:6.084720px;}
._19{width:7.230480px;}
._b{width:8.316000px;}
._26{width:9.380640px;}
._1a{width:10.415520px;}
._f{width:12.245040px;}
._10{width:13.251600px;}
._12{width:14.439120px;}
._11{width:15.486240px;}
._16{width:16.709520px;}
._d{width:18.247680px;}
._27{width:20.083200px;}
._e{width:21.250080px;}
._18{width:22.524480px;}
._17{width:24.277440px;}
._1b{width:25.717440px;}
._9{width:27.656640px;}
._8{width:29.668560px;}
._15{width:31.656480px;}
._13{width:32.706480px;}
._14{width:34.128000px;}
._6{width:36.111600px;}
._5{width:37.635840px;}
._7{width:39.301920px;}
._1f{width:41.018400px;}
._21{width:42.197760px;}
._20{width:43.308240px;}
._22{width:45.082560px;}
._29{width:46.835280px;}
._2a{width:48.003600px;}
._1e{width:49.413120px;}
._1c{width:50.664960px;}
._1d{width:52.293360px;}
._24{width:55.538640px;}
._25{width:56.617200px;}
._23{width:58.096320px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(59,133,242);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:41.040000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.960000px;}
.fs1{font-size:71.280000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y2{bottom:15.120000px;}
.y3{bottom:40.500000px;}
.y7{bottom:57.240000px;}
.y6{bottom:78.876000px;}
.y5{bottom:110.196000px;}
.y9c{bottom:143.136000px;}
.y36{bottom:154.515000px;}
.y6d{bottom:155.055000px;}
.y65{bottom:156.135000px;}
.y9b{bottom:163.695000px;}
.y35{bottom:175.575000px;}
.y64{bottom:177.195000px;}
.yae{bottom:183.675000px;}
.y9a{bottom:184.215000px;}
.y34{bottom:196.095000px;}
.y63{bottom:197.715000px;}
.yad{bottom:203.115000px;}
.y99{bottom:205.275000px;}
.y33{bottom:216.615000px;}
.y62{bottom:218.235000px;}
.yac{bottom:222.015000px;}
.y98{bottom:225.795000px;}
.y32{bottom:237.705000px;}
.y61{bottom:239.325000px;}
.yab{bottom:240.945000px;}
.y97{bottom:246.345000px;}
.y31{bottom:258.225000px;}
.y60{bottom:259.845000px;}
.y96{bottom:267.405000px;}
.y30{bottom:278.745000px;}
.y5f{bottom:280.365000px;}
.y6c{bottom:280.905000px;}
.y95{bottom:287.925000px;}
.yaa{bottom:297.645000px;}
.y2f{bottom:299.805000px;}
.y5e{bottom:301.425000px;}
.y6b{bottom:301.965000px;}
.y94{bottom:308.445000px;}
.ya9{bottom:316.545000px;}
.y2e{bottom:320.370000px;}
.y5d{bottom:321.990000px;}
.y93{bottom:329.550000px;}
.ya8{bottom:335.490000px;}
.y2d{bottom:340.890000px;}
.y5c{bottom:342.510000px;}
.y92{bottom:350.070000px;}
.ya7{bottom:354.930000px;}
.y2c{bottom:361.950000px;}
.y5b{bottom:363.570000px;}
.y91{bottom:370.590000px;}
.ya6{bottom:373.830000px;}
.y2b{bottom:382.470000px;}
.y5a{bottom:384.090000px;}
.y90{bottom:391.650000px;}
.ya5{bottom:392.730000px;}
.y2a{bottom:403.020000px;}
.y59{bottom:404.640000px;}
.ya4{bottom:411.660000px;}
.y8f{bottom:412.200000px;}
.y29{bottom:424.080000px;}
.y58{bottom:425.700000px;}
.ya3{bottom:430.560000px;}
.y8e{bottom:434.340000px;}
.y28{bottom:444.600000px;}
.y57{bottom:446.220000px;}
.ya2{bottom:449.460000px;}
.y8d{bottom:455.940000px;}
.y27{bottom:465.120000px;}
.y56{bottom:466.740000px;}
.ya1{bottom:468.360000px;}
.y8c{bottom:478.080000px;}
.y26{bottom:486.210000px;}
.y55{bottom:487.830000px;}
.y8b{bottom:499.710000px;}
.y25{bottom:506.730000px;}
.y54{bottom:508.350000px;}
.y8a{bottom:520.770000px;}
.y24{bottom:527.250000px;}
.y53{bottom:528.870000px;}
.yc8{bottom:541.290000px;}
.y89{bottom:542.370000px;}
.y23{bottom:548.310000px;}
.y52{bottom:549.930000px;}
.yc7{bottom:560.190000px;}
.y88{bottom:563.430000px;}
.y22{bottom:568.875000px;}
.y51{bottom:570.495000px;}
.yc6{bottom:579.135000px;}
.y87{bottom:585.075000px;}
.y21{bottom:589.395000px;}
.y50{bottom:591.015000px;}
.yc5{bottom:598.035000px;}
.y86{bottom:607.215000px;}
.y20{bottom:610.455000px;}
.y4f{bottom:612.075000px;}
.yc4{bottom:616.935000px;}
.y85{bottom:627.735000px;}
.y1f{bottom:630.975000px;}
.y4e{bottom:632.595000px;}
.ya0{bottom:633.135000px;}
.yc3{bottom:635.835000px;}
.y84{bottom:648.285000px;}
.y1e{bottom:651.525000px;}
.y4d{bottom:653.145000px;}
.yc2{bottom:654.765000px;}
.y83{bottom:669.345000px;}
.y1d{bottom:672.585000px;}
.y4c{bottom:674.205000px;}
.y6a{bottom:674.745000px;}
.y82{bottom:689.865000px;}
.y1c{bottom:693.105000px;}
.y69{bottom:694.725000px;}
.y4b{bottom:695.265000px;}
.y81{bottom:710.925000px;}
.yc1{bottom:712.005000px;}
.y1b{bottom:713.625000px;}
.y4a{bottom:715.245000px;}
.yc0{bottom:730.950000px;}
.y80{bottom:731.490000px;}
.y1a{bottom:734.730000px;}
.y49{bottom:736.350000px;}
.ybf{bottom:749.850000px;}
.y7f{bottom:752.010000px;}
.y19{bottom:755.250000px;}
.y48{bottom:756.870000px;}
.y9d{bottom:757.410000px;}
.ybe{bottom:768.750000px;}
.y7e{bottom:772.530000px;}
.y18{bottom:775.770000px;}
.y47{bottom:777.390000px;}
.y9f{bottom:777.930000px;}
.ybd{bottom:787.650000px;}
.y7d{bottom:793.590000px;}
.y17{bottom:796.290000px;}
.y46{bottom:798.450000px;}
.ybc{bottom:806.550000px;}
.y7c{bottom:814.140000px;}
.y16{bottom:817.380000px;}
.y45{bottom:819.000000px;}
.ybb{bottom:826.020000px;}
.y7b{bottom:834.660000px;}
.y15{bottom:837.900000px;}
.y68{bottom:839.520000px;}
.y44{bottom:840.060000px;}
.yba{bottom:844.920000px;}
.y7a{bottom:855.720000px;}
.y14{bottom:858.420000px;}
.y43{bottom:860.580000px;}
.yb9{bottom:863.820000px;}
.y79{bottom:876.240000px;}
.y13{bottom:879.480000px;}
.y42{bottom:881.100000px;}
.yb8{bottom:882.720000px;}
.y78{bottom:897.330000px;}
.y12{bottom:900.030000px;}
.y41{bottom:901.650000px;}
.y77{bottom:917.850000px;}
.y11{bottom:920.550000px;}
.y40{bottom:922.710000px;}
.y76{bottom:938.370000px;}
.yb7{bottom:939.450000px;}
.y10{bottom:941.610000px;}
.y3f{bottom:943.230000px;}
.y75{bottom:958.890000px;}
.yf{bottom:962.130000px;}
.y3e{bottom:963.750000px;}
.yb6{bottom:977.835000px;}
.y74{bottom:979.995000px;}
.y3d{bottom:984.855000px;}
.ye{bottom:990.255000px;}
.yb5{bottom:996.735000px;}
.y73{bottom:1000.515000px;}
.yd{bottom:1003.755000px;}
.y3c{bottom:1005.375000px;}
.yb4{bottom:1015.635000px;}
.y72{bottom:1021.035000px;}
.yc{bottom:1022.655000px;}
.y3b{bottom:1025.895000px;}
.yb3{bottom:1034.535000px;}
.yb{bottom:1041.555000px;}
.y71{bottom:1042.095000px;}
.y3a{bottom:1046.955000px;}
.yb2{bottom:1053.435000px;}
.ya{bottom:1060.485000px;}
.y70{bottom:1063.725000px;}
.y39{bottom:1067.505000px;}
.y9e{bottom:1068.045000px;}
.yb1{bottom:1072.365000px;}
.y9{bottom:1082.625000px;}
.y6f{bottom:1085.865000px;}
.y38{bottom:1088.025000px;}
.y67{bottom:1088.565000px;}
.yb0{bottom:1091.805000px;}
.y8{bottom:1106.925000px;}
.y6e{bottom:1108.005000px;}
.y37{bottom:1109.085000px;}
.y66{bottom:1109.625000px;}
.yaf{bottom:1110.705000px;}
.y4{bottom:1130.145000px;}
.y1{bottom:1146.390000px;}
.hc{height:36.791719px;}
.h4{height:48.274102px;}
.hb{height:48.748711px;}
.hd{height:51.928594px;}
.h6{height:53.460000px;}
.h7{height:54.603281px;}
.hf{height:60.028594px;}
.ha{height:60.118242px;}
.h2{height:63.720000px;}
.he{height:63.901406px;}
.h5{height:64.145039px;}
.h9{height:64.353867px;}
.h3{height:70.398281px;}
.h8{height:76.054570px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:229.650000px;}
.w2{width:403.095000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:54.570000px;}
.x1{left:141.012000px;}
.x5{left:149.148000px;}
.xf{left:176.145000px;}
.x11{left:184.245000px;}
.x10{left:203.145000px;}
.x9{left:235.050000px;}
.xc{left:264.240000px;}
.xa{left:309.600000px;}
.xd{left:325.290000px;}
.xe{left:366.330000px;}
.x6{left:383.655000px;}
.x2{left:394.998000px;}
.xb{left:457.665000px;}
.x3{left:544.110000px;}
.x7{left:603.000000px;}
.x8{left:715.395000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls10{letter-spacing:-2.586667pt;}
.ls2{letter-spacing:-0.677333pt;}
.ls5{letter-spacing:-0.333867pt;}
.ls6{letter-spacing:-0.021120pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.010453pt;}
.lsa{letter-spacing:0.021120pt;}
.ls14{letter-spacing:0.736000pt;}
.ls0{letter-spacing:0.837120pt;}
.ls7{letter-spacing:1.082880pt;}
.ls9{letter-spacing:1.253333pt;}
.ls4{letter-spacing:1.584000pt;}
.ls13{letter-spacing:1.585920pt;}
.lse{letter-spacing:1.941120pt;}
.ls3{letter-spacing:4.800000pt;}
.ls11{letter-spacing:5.440000pt;}
.lsd{letter-spacing:7.345920pt;}
.lsc{letter-spacing:18.865920pt;}
.lsb{letter-spacing:20.785920pt;}
.ls8{letter-spacing:24.625920pt;}
.ls12{letter-spacing:45.745920pt;}
.ws4{word-spacing:-17.635200pt;}
.ws1{word-spacing:-17.614080pt;}
.ws2{word-spacing:-17.592960pt;}
.ws0{word-spacing:-10.141440pt;}
.ws3{word-spacing:0.000000pt;}
._28{margin-left:-4.298880pt;}
._4{margin-left:-3.070080pt;}
._3{margin-left:-2.017707pt;}
._1{margin-left:-1.098240pt;}
._0{width:1.605120pt;}
._2{width:2.800213pt;}
._c{width:4.111787pt;}
._a{width:5.408640pt;}
._19{width:6.427093pt;}
._b{width:7.392000pt;}
._26{width:8.338347pt;}
._1a{width:9.258240pt;}
._f{width:10.884480pt;}
._10{width:11.779200pt;}
._12{width:12.834773pt;}
._11{width:13.765547pt;}
._16{width:14.852907pt;}
._d{width:16.220160pt;}
._27{width:17.851733pt;}
._e{width:18.888960pt;}
._18{width:20.021760pt;}
._17{width:21.579947pt;}
._1b{width:22.859947pt;}
._9{width:24.583680pt;}
._8{width:26.372053pt;}
._15{width:28.139093pt;}
._13{width:29.072427pt;}
._14{width:30.336000pt;}
._6{width:32.099200pt;}
._5{width:33.454080pt;}
._7{width:34.935040pt;}
._1f{width:36.460800pt;}
._21{width:37.509120pt;}
._20{width:38.496213pt;}
._22{width:40.073387pt;}
._29{width:41.631360pt;}
._2a{width:42.669867pt;}
._1e{width:43.922773pt;}
._1c{width:45.035520pt;}
._1d{width:46.482987pt;}
._24{width:49.367680pt;}
._25{width:50.326400pt;}
._23{width:51.641173pt;}
.fs5{font-size:36.480000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:59.520000pt;}
.fs1{font-size:63.360000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:13.440000pt;}
.y3{bottom:36.000000pt;}
.y7{bottom:50.880000pt;}
.y6{bottom:70.112000pt;}
.y5{bottom:97.952000pt;}
.y9c{bottom:127.232000pt;}
.y36{bottom:137.346667pt;}
.y6d{bottom:137.826667pt;}
.y65{bottom:138.786667pt;}
.y9b{bottom:145.506667pt;}
.y35{bottom:156.066667pt;}
.y64{bottom:157.506667pt;}
.yae{bottom:163.266667pt;}
.y9a{bottom:163.746667pt;}
.y34{bottom:174.306667pt;}
.y63{bottom:175.746667pt;}
.yad{bottom:180.546667pt;}
.y99{bottom:182.466667pt;}
.y33{bottom:192.546667pt;}
.y62{bottom:193.986667pt;}
.yac{bottom:197.346667pt;}
.y98{bottom:200.706667pt;}
.y32{bottom:211.293333pt;}
.y61{bottom:212.733333pt;}
.yab{bottom:214.173333pt;}
.y97{bottom:218.973333pt;}
.y31{bottom:229.533333pt;}
.y60{bottom:230.973333pt;}
.y96{bottom:237.693333pt;}
.y30{bottom:247.773333pt;}
.y5f{bottom:249.213333pt;}
.y6c{bottom:249.693333pt;}
.y95{bottom:255.933333pt;}
.yaa{bottom:264.573333pt;}
.y2f{bottom:266.493333pt;}
.y5e{bottom:267.933333pt;}
.y6b{bottom:268.413333pt;}
.y94{bottom:274.173333pt;}
.ya9{bottom:281.373333pt;}
.y2e{bottom:284.773333pt;}
.y5d{bottom:286.213333pt;}
.y93{bottom:292.933333pt;}
.ya8{bottom:298.213333pt;}
.y2d{bottom:303.013333pt;}
.y5c{bottom:304.453333pt;}
.y92{bottom:311.173333pt;}
.ya7{bottom:315.493333pt;}
.y2c{bottom:321.733333pt;}
.y5b{bottom:323.173333pt;}
.y91{bottom:329.413333pt;}
.ya6{bottom:332.293333pt;}
.y2b{bottom:339.973333pt;}
.y5a{bottom:341.413333pt;}
.y90{bottom:348.133333pt;}
.ya5{bottom:349.093333pt;}
.y2a{bottom:358.240000pt;}
.y59{bottom:359.680000pt;}
.ya4{bottom:365.920000pt;}
.y8f{bottom:366.400000pt;}
.y29{bottom:376.960000pt;}
.y58{bottom:378.400000pt;}
.ya3{bottom:382.720000pt;}
.y8e{bottom:386.080000pt;}
.y28{bottom:395.200000pt;}
.y57{bottom:396.640000pt;}
.ya2{bottom:399.520000pt;}
.y8d{bottom:405.280000pt;}
.y27{bottom:413.440000pt;}
.y56{bottom:414.880000pt;}
.ya1{bottom:416.320000pt;}
.y8c{bottom:424.960000pt;}
.y26{bottom:432.186667pt;}
.y55{bottom:433.626667pt;}
.y8b{bottom:444.186667pt;}
.y25{bottom:450.426667pt;}
.y54{bottom:451.866667pt;}
.y8a{bottom:462.906667pt;}
.y24{bottom:468.666667pt;}
.y53{bottom:470.106667pt;}
.yc8{bottom:481.146667pt;}
.y89{bottom:482.106667pt;}
.y23{bottom:487.386667pt;}
.y52{bottom:488.826667pt;}
.yc7{bottom:497.946667pt;}
.y88{bottom:500.826667pt;}
.y22{bottom:505.666667pt;}
.y51{bottom:507.106667pt;}
.yc6{bottom:514.786667pt;}
.y87{bottom:520.066667pt;}
.y21{bottom:523.906667pt;}
.y50{bottom:525.346667pt;}
.yc5{bottom:531.586667pt;}
.y86{bottom:539.746667pt;}
.y20{bottom:542.626667pt;}
.y4f{bottom:544.066667pt;}
.yc4{bottom:548.386667pt;}
.y85{bottom:557.986667pt;}
.y1f{bottom:560.866667pt;}
.y4e{bottom:562.306667pt;}
.ya0{bottom:562.786667pt;}
.yc3{bottom:565.186667pt;}
.y84{bottom:576.253333pt;}
.y1e{bottom:579.133333pt;}
.y4d{bottom:580.573333pt;}
.yc2{bottom:582.013333pt;}
.y83{bottom:594.973333pt;}
.y1d{bottom:597.853333pt;}
.y4c{bottom:599.293333pt;}
.y6a{bottom:599.773333pt;}
.y82{bottom:613.213333pt;}
.y1c{bottom:616.093333pt;}
.y69{bottom:617.533333pt;}
.y4b{bottom:618.013333pt;}
.y81{bottom:631.933333pt;}
.yc1{bottom:632.893333pt;}
.y1b{bottom:634.333333pt;}
.y4a{bottom:635.773333pt;}
.yc0{bottom:649.733333pt;}
.y80{bottom:650.213333pt;}
.y1a{bottom:653.093333pt;}
.y49{bottom:654.533333pt;}
.ybf{bottom:666.533333pt;}
.y7f{bottom:668.453333pt;}
.y19{bottom:671.333333pt;}
.y48{bottom:672.773333pt;}
.y9d{bottom:673.253333pt;}
.ybe{bottom:683.333333pt;}
.y7e{bottom:686.693333pt;}
.y18{bottom:689.573333pt;}
.y47{bottom:691.013333pt;}
.y9f{bottom:691.493333pt;}
.ybd{bottom:700.133333pt;}
.y7d{bottom:705.413333pt;}
.y17{bottom:707.813333pt;}
.y46{bottom:709.733333pt;}
.ybc{bottom:716.933333pt;}
.y7c{bottom:723.680000pt;}
.y16{bottom:726.560000pt;}
.y45{bottom:728.000000pt;}
.ybb{bottom:734.240000pt;}
.y7b{bottom:741.920000pt;}
.y15{bottom:744.800000pt;}
.y68{bottom:746.240000pt;}
.y44{bottom:746.720000pt;}
.yba{bottom:751.040000pt;}
.y7a{bottom:760.640000pt;}
.y14{bottom:763.040000pt;}
.y43{bottom:764.960000pt;}
.yb9{bottom:767.840000pt;}
.y79{bottom:778.880000pt;}
.y13{bottom:781.760000pt;}
.y42{bottom:783.200000pt;}
.yb8{bottom:784.640000pt;}
.y78{bottom:797.626667pt;}
.y12{bottom:800.026667pt;}
.y41{bottom:801.466667pt;}
.y77{bottom:815.866667pt;}
.y11{bottom:818.266667pt;}
.y40{bottom:820.186667pt;}
.y76{bottom:834.106667pt;}
.yb7{bottom:835.066667pt;}
.y10{bottom:836.986667pt;}
.y3f{bottom:838.426667pt;}
.y75{bottom:852.346667pt;}
.yf{bottom:855.226667pt;}
.y3e{bottom:856.666667pt;}
.yb6{bottom:869.186667pt;}
.y74{bottom:871.106667pt;}
.y3d{bottom:875.426667pt;}
.ye{bottom:880.226667pt;}
.yb5{bottom:885.986667pt;}
.y73{bottom:889.346667pt;}
.yd{bottom:892.226667pt;}
.y3c{bottom:893.666667pt;}
.yb4{bottom:902.786667pt;}
.y72{bottom:907.586667pt;}
.yc{bottom:909.026667pt;}
.y3b{bottom:911.906667pt;}
.yb3{bottom:919.586667pt;}
.yb{bottom:925.826667pt;}
.y71{bottom:926.306667pt;}
.y3a{bottom:930.626667pt;}
.yb2{bottom:936.386667pt;}
.ya{bottom:942.653333pt;}
.y70{bottom:945.533333pt;}
.y39{bottom:948.893333pt;}
.y9e{bottom:949.373333pt;}
.yb1{bottom:953.213333pt;}
.y9{bottom:962.333333pt;}
.y6f{bottom:965.213333pt;}
.y38{bottom:967.133333pt;}
.y67{bottom:967.613333pt;}
.yb0{bottom:970.493333pt;}
.y8{bottom:983.933333pt;}
.y6e{bottom:984.893333pt;}
.y37{bottom:985.853333pt;}
.y66{bottom:986.333333pt;}
.yaf{bottom:987.293333pt;}
.y4{bottom:1004.573333pt;}
.y1{bottom:1019.013333pt;}
.hc{height:32.703750pt;}
.h4{height:42.910312pt;}
.hb{height:43.332188pt;}
.hd{height:46.158750pt;}
.h6{height:47.520000pt;}
.h7{height:48.536250pt;}
.hf{height:53.358750pt;}
.ha{height:53.438437pt;}
.h2{height:56.640000pt;}
.he{height:56.801250pt;}
.h5{height:57.017812pt;}
.h9{height:57.203437pt;}
.h3{height:62.576250pt;}
.h8{height:67.604062pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:204.133333pt;}
.w2{width:358.306667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:48.506667pt;}
.x1{left:125.344000pt;}
.x5{left:132.576000pt;}
.xf{left:156.573333pt;}
.x11{left:163.773333pt;}
.x10{left:180.573333pt;}
.x9{left:208.933333pt;}
.xc{left:234.880000pt;}
.xa{left:275.200000pt;}
.xd{left:289.146667pt;}
.xe{left:325.626667pt;}
.x6{left:341.026667pt;}
.x2{left:351.109333pt;}
.xb{left:406.813333pt;}
.x3{left:483.653333pt;}
.x7{left:536.000000pt;}
.x8{left:635.906667pt;}
}




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