
    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_0eae1e6f21d527bf582edd26.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_defa051266d0835c1514c945.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_f8291589c6465febda1da91d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_803a76c3b96889676a862199.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_b07201c37b3a66735473babe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_111a85012ead8dba251386dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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);}
.v1{vertical-align:-14.400000px;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls15{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.075000px;}
.ls12{letter-spacing:-0.042000px;}
.lsb{letter-spacing:-0.024000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls17{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.099000px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.168000px;}
.ls2{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.624000px;}
.lsd{letter-spacing:2.811000px;}
.lsc{letter-spacing:2.871000px;}
.lsf{letter-spacing:4.200000px;}
.ls11{letter-spacing:8.400000px;}
.lse{letter-spacing:11.928000px;}
.ls1a{letter-spacing:20.340000px;}
.ls19{letter-spacing:28.260000px;}
.ls10{letter-spacing:60.600000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws15{word-spacing:-71.712000px;}
.ws11{word-spacing:-51.099000px;}
.ws13{word-spacing:-51.000000px;}
.wsf{word-spacing:-50.925000px;}
.ws12{word-spacing:-31.227000px;}
.ws10{word-spacing:-31.095000px;}
.wse{word-spacing:-30.798000px;}
.ws16{word-spacing:-26.520000px;}
.wsd{word-spacing:-26.136000px;}
.ws14{word-spacing:-25.956000px;}
.ws18{word-spacing:-18.168000px;}
.wsb{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws17{word-spacing:-12.000000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
._26{margin-left:-6.333000px;}
._19{margin-left:-4.320000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._9{width:2.880000px;}
._25{width:4.332000px;}
._f{width:6.120000px;}
._10{width:7.224000px;}
._27{width:8.286000px;}
._a{width:9.324000px;}
._5{width:10.560000px;}
._4{width:12.030000px;}
._8{width:13.602000px;}
._15{width:15.120000px;}
._1b{width:16.488000px;}
._20{width:19.224000px;}
._b{width:20.304000px;}
._1e{width:21.384000px;}
._6{width:22.392000px;}
._7{width:23.688000px;}
._14{width:25.632000px;}
._e{width:27.024000px;}
._24{width:28.800000px;}
._18{width:30.456000px;}
._2b{width:31.800000px;}
._16{width:33.840000px;}
._17{width:35.568000px;}
._31{width:36.576000px;}
._30{width:38.046000px;}
._c{width:39.096000px;}
._d{width:40.248000px;}
._21{width:41.400000px;}
._22{width:42.408000px;}
._2f{width:43.848000px;}
._23{width:45.504000px;}
._35{width:48.024000px;}
._1d{width:49.392000px;}
._11{width:50.424000px;}
._1f{width:51.480000px;}
._1c{width:52.944000px;}
._1a{width:54.576000px;}
._34{width:57.024000px;}
._2a{width:58.800000px;}
._28{width:60.048000px;}
._12{width:61.344000px;}
._2d{width:63.432000px;}
._29{width:68.400000px;}
._13{width:75.528000px;}
._33{width:76.608000px;}
._37{width:82.728000px;}
._32{width:86.112000px;}
._36{width:105.552000px;}
._2c{width:115.560000px;}
._2e{width:155.880000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y1f{bottom:3.900000px;}
.y23{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y8e{bottom:7.050000px;}
.y99{bottom:7.065000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y1e{bottom:24.600000px;}
.y22{bottom:24.615000px;}
.y90{bottom:30.750000px;}
.y9b{bottom:30.795000px;}
.y94{bottom:30.900000px;}
.y98{bottom:30.915000px;}
.y8d{bottom:30.930000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y1d{bottom:45.300000px;}
.y93{bottom:54.600000px;}
.y97{bottom:54.615000px;}
.y3{bottom:57.637500px;}
.y1c{bottom:66.000000px;}
.y92{bottom:78.450000px;}
.y2{bottom:81.637500px;}
.y1b{bottom:86.700000px;}
.y1a{bottom:107.400000px;}
.yb4{bottom:121.387500px;}
.y3d{bottom:121.987500px;}
.y68{bottom:126.637500px;}
.y19{bottom:128.100000px;}
.yb3{bottom:145.237500px;}
.y3c{bottom:145.837500px;}
.y8b{bottom:150.045000px;}
.y67{bottom:150.495000px;}
.yb2{bottom:169.080000px;}
.y3b{bottom:169.695000px;}
.y8a{bottom:173.895000px;}
.y66{bottom:174.345000px;}
.yb1{bottom:192.945000px;}
.y3a{bottom:193.395000px;}
.y89{bottom:197.745000px;}
.y65{bottom:198.195000px;}
.yb0{bottom:216.645000px;}
.y39{bottom:217.245000px;}
.y88{bottom:221.445000px;}
.y64{bottom:221.895000px;}
.yaf{bottom:240.495000px;}
.y38{bottom:241.095000px;}
.y87{bottom:245.295000px;}
.y63{bottom:245.745000px;}
.yae{bottom:264.345000px;}
.y37{bottom:264.795000px;}
.y86{bottom:269.145000px;}
.y62{bottom:269.595000px;}
.yad{bottom:288.045000px;}
.y36{bottom:288.645000px;}
.y85{bottom:292.845000px;}
.y61{bottom:293.295000px;}
.yac{bottom:311.895000px;}
.y35{bottom:312.495000px;}
.y84{bottom:316.695000px;}
.y60{bottom:317.130000px;}
.yab{bottom:335.745000px;}
.y34{bottom:336.195000px;}
.y83{bottom:340.545000px;}
.y5f{bottom:340.995000px;}
.yaa{bottom:359.445000px;}
.y33{bottom:360.045000px;}
.y82{bottom:364.380000px;}
.y5e{bottom:364.695000px;}
.ya9{bottom:383.325000px;}
.y32{bottom:383.925000px;}
.y81{bottom:388.125000px;}
.y5d{bottom:388.575000px;}
.ya8{bottom:407.175000px;}
.y31{bottom:407.775000px;}
.y80{bottom:411.975000px;}
.y5c{bottom:412.425000px;}
.ya7{bottom:430.875000px;}
.y30{bottom:431.475000px;}
.y7f{bottom:435.825000px;}
.y5b{bottom:436.125000px;}
.ya6{bottom:454.725000px;}
.y2f{bottom:455.325000px;}
.y7e{bottom:459.525000px;}
.y5a{bottom:459.975000px;}
.ya5{bottom:478.575000px;}
.y2e{bottom:479.175000px;}
.y7d{bottom:483.375000px;}
.y59{bottom:483.825000px;}
.ya4{bottom:502.275000px;}
.y2d{bottom:502.875000px;}
.y7c{bottom:507.225000px;}
.y58{bottom:507.525000px;}
.ya3{bottom:526.125000px;}
.y2c{bottom:526.725000px;}
.y7b{bottom:530.925000px;}
.y57{bottom:531.375000px;}
.ya2{bottom:549.975000px;}
.y2b{bottom:550.575000px;}
.y7a{bottom:554.775000px;}
.y56{bottom:555.225000px;}
.ya1{bottom:573.825000px;}
.y2a{bottom:574.275000px;}
.y79{bottom:578.625000px;}
.y55{bottom:579.075000px;}
.ya0{bottom:597.525000px;}
.y29{bottom:598.125000px;}
.y78{bottom:602.325000px;}
.y54{bottom:602.775000px;}
.y9f{bottom:621.375000px;}
.y28{bottom:621.975000px;}
.y77{bottom:626.175000px;}
.y53{bottom:626.625000px;}
.y9e{bottom:645.225000px;}
.y27{bottom:645.675000px;}
.y76{bottom:650.025000px;}
.y52{bottom:650.475000px;}
.y9d{bottom:668.925000px;}
.y26{bottom:669.525000px;}
.y75{bottom:673.725000px;}
.y51{bottom:674.175000px;}
.y9c{bottom:692.775000px;}
.y25{bottom:693.375000px;}
.y74{bottom:697.575000px;}
.y50{bottom:698.025000px;}
.y9a{bottom:710.325000px;}
.y73{bottom:721.425000px;}
.y4f{bottom:721.875000px;}
.y24{bottom:726.075000px;}
.y21{bottom:742.905000px;}
.y72{bottom:745.320000px;}
.y4e{bottom:745.620000px;}
.y96{bottom:758.655000px;}
.y71{bottom:769.020000px;}
.y4d{bottom:769.470000px;}
.y20{bottom:784.320000px;}
.y70{bottom:792.870000px;}
.y4c{bottom:793.320000px;}
.y18{bottom:805.020000px;}
.y6f{bottom:816.720000px;}
.y4b{bottom:817.020000px;}
.y95{bottom:830.820000px;}
.y6e{bottom:840.420000px;}
.y4a{bottom:840.870000px;}
.y49{bottom:864.720000px;}
.y6d{bottom:872.220000px;}
.y48{bottom:888.420000px;}
.y6c{bottom:906.720000px;}
.y47{bottom:912.270000px;}
.y91{bottom:926.820000px;}
.y6b{bottom:930.870000px;}
.y46{bottom:936.120000px;}
.y17{bottom:953.520000px;}
.y6a{bottom:956.970000px;}
.y45{bottom:959.970000px;}
.y16{bottom:972.720000px;}
.y69{bottom:983.370000px;}
.y44{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.y43{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y8f{bottom:1022.820000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y8c{bottom:1071.120000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.700000px;}
.h11{height:41.400000px;}
.h6{height:45.300000px;}
.h15{height:47.550000px;}
.h18{height:47.587500px;}
.h14{height:47.737500px;}
.h3{height:48.600000px;}
.hf{height:50.484375px;}
.ha{height:50.800781px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.hc{height:70.664062px;}
.h17{height:71.400000px;}
.hb{height:72.562500px;}
.h2{height:82.441406px;}
.h12{height:89.296875px;}
.h13{height:89.896875px;}
.h16{height:95.250000px;}
.he{height:144.900000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wb{width:84.750000px;}
.wc{width:91.537500px;}
.wa{width:97.335000px;}
.w9{width:115.987500px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1c{left:95.699987px;}
.x1a{left:100.200000px;}
.x19{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x23{left:160.095000px;}
.x10{left:182.729987px;}
.x26{left:239.294987px;}
.x24{left:258.195000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x11{left:312.194987px;}
.x25{left:343.695000px;}
.x1d{left:457.274987px;}
.x1f{left:482.024987px;}
.x1e{left:510.374987px;}
.x13{left:535.724987px;}
.x17{left:577.574987px;}
.x12{left:579.974987px;}
.x21{left:582.674987px;}
.x20{left:590.024987px;}
.x14{left:592.574987px;}
.x18{left:596.924987px;}
.x15{left:603.524987px;}
.xc{left:625.425000px;}
.x27{left:633.974987px;}
.xf{left:713.655000px;}
.x22{left:819.119987px;}
.x2{left:829.619987px;}
.x16{left:850.619987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.066667pt;}
.ls12{letter-spacing:-0.037333pt;}
.lsb{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls17{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.088000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.149333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.554667pt;}
.lsd{letter-spacing:2.498667pt;}
.lsc{letter-spacing:2.552000pt;}
.lsf{letter-spacing:3.733333pt;}
.ls11{letter-spacing:7.466667pt;}
.lse{letter-spacing:10.602667pt;}
.ls1a{letter-spacing:18.080000pt;}
.ls19{letter-spacing:25.120000pt;}
.ls10{letter-spacing:53.866667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws15{word-spacing:-63.744000pt;}
.ws11{word-spacing:-45.421333pt;}
.ws13{word-spacing:-45.333333pt;}
.wsf{word-spacing:-45.266667pt;}
.ws12{word-spacing:-27.757333pt;}
.ws10{word-spacing:-27.640000pt;}
.wse{word-spacing:-27.376000pt;}
.ws16{word-spacing:-23.573333pt;}
.wsd{word-spacing:-23.232000pt;}
.ws14{word-spacing:-23.072000pt;}
.ws18{word-spacing:-16.149333pt;}
.wsb{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws17{word-spacing:-10.666667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
._26{margin-left:-5.629333pt;}
._19{margin-left:-3.840000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._9{width:2.560000pt;}
._25{width:3.850667pt;}
._f{width:5.440000pt;}
._10{width:6.421333pt;}
._27{width:7.365333pt;}
._a{width:8.288000pt;}
._5{width:9.386667pt;}
._4{width:10.693333pt;}
._8{width:12.090667pt;}
._15{width:13.440000pt;}
._1b{width:14.656000pt;}
._20{width:17.088000pt;}
._b{width:18.048000pt;}
._1e{width:19.008000pt;}
._6{width:19.904000pt;}
._7{width:21.056000pt;}
._14{width:22.784000pt;}
._e{width:24.021333pt;}
._24{width:25.600000pt;}
._18{width:27.072000pt;}
._2b{width:28.266667pt;}
._16{width:30.080000pt;}
._17{width:31.616000pt;}
._31{width:32.512000pt;}
._30{width:33.818667pt;}
._c{width:34.752000pt;}
._d{width:35.776000pt;}
._21{width:36.800000pt;}
._22{width:37.696000pt;}
._2f{width:38.976000pt;}
._23{width:40.448000pt;}
._35{width:42.688000pt;}
._1d{width:43.904000pt;}
._11{width:44.821333pt;}
._1f{width:45.760000pt;}
._1c{width:47.061333pt;}
._1a{width:48.512000pt;}
._34{width:50.688000pt;}
._2a{width:52.266667pt;}
._28{width:53.376000pt;}
._12{width:54.528000pt;}
._2d{width:56.384000pt;}
._29{width:60.800000pt;}
._13{width:67.136000pt;}
._33{width:68.096000pt;}
._37{width:73.536000pt;}
._32{width:76.544000pt;}
._36{width:93.824000pt;}
._2c{width:102.720000pt;}
._2e{width:138.560000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y1f{bottom:3.466667pt;}
.y23{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y8e{bottom:6.266667pt;}
.y99{bottom:6.280000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y1e{bottom:21.866667pt;}
.y22{bottom:21.880000pt;}
.y90{bottom:27.333333pt;}
.y9b{bottom:27.373333pt;}
.y94{bottom:27.466667pt;}
.y98{bottom:27.480000pt;}
.y8d{bottom:27.493333pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y1d{bottom:40.266667pt;}
.y93{bottom:48.533333pt;}
.y97{bottom:48.546667pt;}
.y3{bottom:51.233333pt;}
.y1c{bottom:58.666667pt;}
.y92{bottom:69.733333pt;}
.y2{bottom:72.566667pt;}
.y1b{bottom:77.066667pt;}
.y1a{bottom:95.466667pt;}
.yb4{bottom:107.900000pt;}
.y3d{bottom:108.433333pt;}
.y68{bottom:112.566667pt;}
.y19{bottom:113.866667pt;}
.yb3{bottom:129.100000pt;}
.y3c{bottom:129.633333pt;}
.y8b{bottom:133.373333pt;}
.y67{bottom:133.773333pt;}
.yb2{bottom:150.293333pt;}
.y3b{bottom:150.840000pt;}
.y8a{bottom:154.573333pt;}
.y66{bottom:154.973333pt;}
.yb1{bottom:171.506667pt;}
.y3a{bottom:171.906667pt;}
.y89{bottom:175.773333pt;}
.y65{bottom:176.173333pt;}
.yb0{bottom:192.573333pt;}
.y39{bottom:193.106667pt;}
.y88{bottom:196.840000pt;}
.y64{bottom:197.240000pt;}
.yaf{bottom:213.773333pt;}
.y38{bottom:214.306667pt;}
.y87{bottom:218.040000pt;}
.y63{bottom:218.440000pt;}
.yae{bottom:234.973333pt;}
.y37{bottom:235.373333pt;}
.y86{bottom:239.240000pt;}
.y62{bottom:239.640000pt;}
.yad{bottom:256.040000pt;}
.y36{bottom:256.573333pt;}
.y85{bottom:260.306667pt;}
.y61{bottom:260.706667pt;}
.yac{bottom:277.240000pt;}
.y35{bottom:277.773333pt;}
.y84{bottom:281.506667pt;}
.y60{bottom:281.893333pt;}
.yab{bottom:298.440000pt;}
.y34{bottom:298.840000pt;}
.y83{bottom:302.706667pt;}
.y5f{bottom:303.106667pt;}
.yaa{bottom:319.506667pt;}
.y33{bottom:320.040000pt;}
.y82{bottom:323.893333pt;}
.y5e{bottom:324.173333pt;}
.ya9{bottom:340.733333pt;}
.y32{bottom:341.266667pt;}
.y81{bottom:345.000000pt;}
.y5d{bottom:345.400000pt;}
.ya8{bottom:361.933333pt;}
.y31{bottom:362.466667pt;}
.y80{bottom:366.200000pt;}
.y5c{bottom:366.600000pt;}
.ya7{bottom:383.000000pt;}
.y30{bottom:383.533333pt;}
.y7f{bottom:387.400000pt;}
.y5b{bottom:387.666667pt;}
.ya6{bottom:404.200000pt;}
.y2f{bottom:404.733333pt;}
.y7e{bottom:408.466667pt;}
.y5a{bottom:408.866667pt;}
.ya5{bottom:425.400000pt;}
.y2e{bottom:425.933333pt;}
.y7d{bottom:429.666667pt;}
.y59{bottom:430.066667pt;}
.ya4{bottom:446.466667pt;}
.y2d{bottom:447.000000pt;}
.y7c{bottom:450.866667pt;}
.y58{bottom:451.133333pt;}
.ya3{bottom:467.666667pt;}
.y2c{bottom:468.200000pt;}
.y7b{bottom:471.933333pt;}
.y57{bottom:472.333333pt;}
.ya2{bottom:488.866667pt;}
.y2b{bottom:489.400000pt;}
.y7a{bottom:493.133333pt;}
.y56{bottom:493.533333pt;}
.ya1{bottom:510.066667pt;}
.y2a{bottom:510.466667pt;}
.y79{bottom:514.333333pt;}
.y55{bottom:514.733333pt;}
.ya0{bottom:531.133333pt;}
.y29{bottom:531.666667pt;}
.y78{bottom:535.400000pt;}
.y54{bottom:535.800000pt;}
.y9f{bottom:552.333333pt;}
.y28{bottom:552.866667pt;}
.y77{bottom:556.600000pt;}
.y53{bottom:557.000000pt;}
.y9e{bottom:573.533333pt;}
.y27{bottom:573.933333pt;}
.y76{bottom:577.800000pt;}
.y52{bottom:578.200000pt;}
.y9d{bottom:594.600000pt;}
.y26{bottom:595.133333pt;}
.y75{bottom:598.866667pt;}
.y51{bottom:599.266667pt;}
.y9c{bottom:615.800000pt;}
.y25{bottom:616.333333pt;}
.y74{bottom:620.066667pt;}
.y50{bottom:620.466667pt;}
.y9a{bottom:631.400000pt;}
.y73{bottom:641.266667pt;}
.y4f{bottom:641.666667pt;}
.y24{bottom:645.400000pt;}
.y21{bottom:660.360000pt;}
.y72{bottom:662.506667pt;}
.y4e{bottom:662.773333pt;}
.y96{bottom:674.360000pt;}
.y71{bottom:683.573333pt;}
.y4d{bottom:683.973333pt;}
.y20{bottom:697.173333pt;}
.y70{bottom:704.773333pt;}
.y4c{bottom:705.173333pt;}
.y18{bottom:715.573333pt;}
.y6f{bottom:725.973333pt;}
.y4b{bottom:726.240000pt;}
.y95{bottom:738.506667pt;}
.y6e{bottom:747.040000pt;}
.y4a{bottom:747.440000pt;}
.y49{bottom:768.640000pt;}
.y6d{bottom:775.306667pt;}
.y48{bottom:789.706667pt;}
.y6c{bottom:805.973333pt;}
.y47{bottom:810.906667pt;}
.y91{bottom:823.840000pt;}
.y6b{bottom:827.440000pt;}
.y46{bottom:832.106667pt;}
.y17{bottom:847.573333pt;}
.y6a{bottom:850.640000pt;}
.y45{bottom:853.306667pt;}
.y16{bottom:864.640000pt;}
.y69{bottom:874.106667pt;}
.y44{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.y43{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y8f{bottom:909.173333pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y8c{bottom:952.106667pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.400000pt;}
.h11{height:36.800000pt;}
.h6{height:40.266667pt;}
.h15{height:42.266667pt;}
.h18{height:42.300000pt;}
.h14{height:42.433333pt;}
.h3{height:43.200000pt;}
.hf{height:44.875000pt;}
.ha{height:45.156250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.hc{height:62.812500pt;}
.h17{height:63.466667pt;}
.hb{height:64.500000pt;}
.h2{height:73.281250pt;}
.h12{height:79.375000pt;}
.h13{height:79.908333pt;}
.h16{height:84.666667pt;}
.he{height:128.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wb{width:75.333333pt;}
.wc{width:81.366667pt;}
.wa{width:86.520000pt;}
.w9{width:103.100000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1c{left:85.066655pt;}
.x1a{left:89.066667pt;}
.x19{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x23{left:142.306667pt;}
.x10{left:162.426655pt;}
.x26{left:212.706655pt;}
.x24{left:229.506667pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x11{left:277.506655pt;}
.x25{left:305.506667pt;}
.x1d{left:406.466655pt;}
.x1f{left:428.466655pt;}
.x1e{left:453.666655pt;}
.x13{left:476.199988pt;}
.x17{left:513.399988pt;}
.x12{left:515.533322pt;}
.x21{left:517.933322pt;}
.x20{left:524.466655pt;}
.x14{left:526.733322pt;}
.x18{left:530.599988pt;}
.x15{left:536.466655pt;}
.xc{left:555.933333pt;}
.x27{left:563.533322pt;}
.xf{left:634.360000pt;}
.x22{left:728.106655pt;}
.x2{left:737.439988pt;}
.x16{left:756.106655pt;}
}




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