
    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_c357c680f5744910079ca4e8.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_a9b773400b54cdbab5a2ea9f.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_59561f22b6be6d31841f4be1.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_8b66bc052d2306b494031965.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_b86e402914f2780b9929ab8d.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_8ac9426dd4f1aa820d37c496.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_1898299d50d9b7e4ef30b9f1.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_46fa4611d0dbb80700e13c9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v5{vertical-align:40.200000px;}
.v6{vertical-align:48.000000px;}
.v3{vertical-align:54.600000px;}
.v7{vertical-align:60.000000px;}
.v4{vertical-align:62.400000px;}
.lsb{letter-spacing:-3.000000px;}
.lsd{letter-spacing:-2.994000px;}
.lsa{letter-spacing:-2.988000px;}
.lsc{letter-spacing:-2.700000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.099000px;}
.ls1a{letter-spacing:-0.039000px;}
.ls9{letter-spacing:-0.012000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.186000px;}
.ls14{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls18{letter-spacing:13.044000px;}
.ls10{letter-spacing:16.392000px;}
.lsf{letter-spacing:19.956000px;}
.ls16{letter-spacing:20.016000px;}
.ls13{letter-spacing:20.076000px;}
.ls12{letter-spacing:23.700000px;}
.ls15{letter-spacing:24.621000px;}
.lse{letter-spacing:24.975000px;}
.ls5{letter-spacing:28.740000px;}
.ls6{letter-spacing:31.260000px;}
.ls19{letter-spacing:104.328000px;}
.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;}
}
.ws9{word-spacing:-18.000000px;}
.ws1b{word-spacing:-15.936000px;}
.wsb{word-spacing:-15.840000px;}
.wse{word-spacing:-15.552000px;}
.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;}
.wsf{word-spacing:-11.181000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
.ws11{word-spacing:3.705000px;}
.ws19{word-spacing:6.288000px;}
.ws13{word-spacing:6.360000px;}
.wsc{word-spacing:9.045000px;}
.ws17{word-spacing:9.705000px;}
.ws14{word-spacing:9.897000px;}
.ws16{word-spacing:13.317000px;}
.ws10{word-spacing:13.467000px;}
.ws12{word-spacing:14.055000px;}
.ws1a{word-spacing:67.251000px;}
.ws15{word-spacing:120.045000px;}
.wsd{word-spacing:128.505000px;}
.ws18{word-spacing:128.565000px;}
._58{margin-left:-16.308000px;}
._55{margin-left:-9.288000px;}
._56{margin-left:-8.040000px;}
._3e{margin-left:-4.968000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._26{width:2.118000px;}
._27{width:3.270000px;}
._2e{width:5.184000px;}
._1f{width:6.264000px;}
._32{width:7.560000px;}
._4{width:8.568000px;}
._5{width:9.720000px;}
._1d{width:11.178000px;}
._e{width:12.192000px;}
._8{width:13.320000px;}
._9{width:14.904000px;}
._54{width:15.912000px;}
._2d{width:16.920000px;}
._48{width:19.212000px;}
._a{width:20.232000px;}
._b{width:21.414000px;}
._f{width:22.506000px;}
._6{width:24.336000px;}
._7{width:25.560000px;}
._38{width:26.640000px;}
._17{width:27.720000px;}
._18{width:28.758000px;}
._1e{width:30.012000px;}
._19{width:31.608000px;}
._1a{width:32.976000px;}
._15{width:34.776000px;}
._16{width:35.856000px;}
._3a{width:37.008000px;}
._4a{width:39.312000px;}
._24{width:40.392000px;}
._23{width:41.688000px;}
._3c{width:43.272000px;}
._3d{width:44.424000px;}
._49{width:45.462000px;}
._10{width:46.728000px;}
._2f{width:47.880000px;}
._33{width:49.896000px;}
._2c{width:51.048000px;}
._35{width:52.158000px;}
._36{width:53.208000px;}
._20{width:55.008000px;}
._21{width:56.592000px;}
._25{width:57.672000px;}
._c{width:58.680000px;}
._d{width:59.814000px;}
._4d{width:61.176000px;}
._2a{width:63.432000px;}
._4e{width:64.800000px;}
._4f{width:66.192000px;}
._22{width:67.320000px;}
._3b{width:68.976000px;}
._43{width:70.200000px;}
._4b{width:77.688000px;}
._11{width:80.280000px;}
._12{width:81.576000px;}
._46{width:84.240000px;}
._47{width:85.494000px;}
._5b{width:88.416000px;}
._30{width:89.640000px;}
._31{width:90.678000px;}
._1c{width:91.872000px;}
._50{width:94.104000px;}
._41{width:95.904000px;}
._42{width:97.128000px;}
._2b{width:98.136000px;}
._4c{width:99.288000px;}
._1b{width:106.704000px;}
._13{width:111.168000px;}
._14{width:112.752000px;}
._53{width:116.928000px;}
._34{width:118.512000px;}
._51{width:126.432000px;}
._52{width:127.800000px;}
._59{width:130.320000px;}
._3f{width:138.312000px;}
._39{width:141.552000px;}
._5a{width:150.336000px;}
._37{width:154.686000px;}
._57{width:160.878000px;}
._40{width:170.136000px;}
._28{width:185.328000px;}
._29{width:194.400000px;}
._45{width:202.536000px;}
._44{width:269.568000px;}
._5c{width:1033.272000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.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;}
.y23{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y26{bottom:24.600000px;}
.y22{bottom:24.645000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y21{bottom:45.345000px;}
.y3{bottom:57.637500px;}
.y20{bottom:66.045000px;}
.y2{bottom:81.637500px;}
.y1f{bottom:86.745000px;}
.y1e{bottom:107.445000px;}
.y3d{bottom:110.587500px;}
.y68{bottom:126.637500px;}
.ya4{bottom:126.787500px;}
.y1d{bottom:128.145000px;}
.y3c{bottom:134.437500px;}
.y78{bottom:140.287500px;}
.y86{bottom:149.437500px;}
.y67{bottom:150.495000px;}
.ya3{bottom:150.645000px;}
.y3b{bottom:158.295000px;}
.y77{bottom:164.145000px;}
.y85{bottom:173.145000px;}
.y66{bottom:174.345000px;}
.y3a{bottom:181.995000px;}
.y76{bottom:187.995000px;}
.y84{bottom:197.145000px;}
.y65{bottom:198.195000px;}
.y39{bottom:205.830000px;}
.y75{bottom:211.695000px;}
.y83{bottom:221.445000px;}
.y64{bottom:221.895000px;}
.ya2{bottom:222.045000px;}
.y38{bottom:229.695000px;}
.y74{bottom:235.545000px;}
.y82{bottom:245.445000px;}
.y63{bottom:245.745000px;}
.y37{bottom:253.380000px;}
.y73{bottom:259.380000px;}
.y81{bottom:269.295000px;}
.y62{bottom:269.595000px;}
.y36{bottom:277.245000px;}
.y80{bottom:281.295000px;}
.y72{bottom:283.095000px;}
.y61{bottom:293.295000px;}
.ya1{bottom:293.445000px;}
.y35{bottom:301.080000px;}
.y71{bottom:306.945000px;}
.y7f{bottom:316.545000px;}
.y60{bottom:317.130000px;}
.y34{bottom:324.945000px;}
.y70{bottom:330.795000px;}
.y7e{bottom:340.380000px;}
.y5f{bottom:340.995000px;}
.y33{bottom:348.645000px;}
.y6f{bottom:354.495000px;}
.ya0{bottom:360.795000px;}
.y7d{bottom:364.380000px;}
.y5e{bottom:364.695000px;}
.y32{bottom:372.495000px;}
.y6e{bottom:378.330000px;}
.y7c{bottom:388.425000px;}
.y5d{bottom:388.575000px;}
.y31{bottom:396.375000px;}
.y6d{bottom:402.225000px;}
.y5c{bottom:412.425000px;}
.y30{bottom:420.075000px;}
.y6c{bottom:426.075000px;}
.y5b{bottom:436.125000px;}
.y7b{bottom:436.575000px;}
.y2f{bottom:443.925000px;}
.y6b{bottom:449.775000px;}
.y5a{bottom:459.975000px;}
.y7a{bottom:460.425000px;}
.y2e{bottom:467.775000px;}
.y79{bottom:472.425000px;}
.y6a{bottom:473.625000px;}
.y59{bottom:483.825000px;}
.y2d{bottom:491.475000px;}
.y69{bottom:493.575000px;}
.y58{bottom:507.525000px;}
.y2c{bottom:515.325000px;}
.y57{bottom:531.375000px;}
.y2b{bottom:539.175000px;}
.y56{bottom:555.225000px;}
.y2a{bottom:562.875000px;}
.y55{bottom:579.075000px;}
.y29{bottom:586.725000px;}
.y9f{bottom:599.775000px;}
.y54{bottom:602.775000px;}
.y28{bottom:610.575000px;}
.y9e{bottom:623.625000px;}
.y53{bottom:626.625000px;}
.y27{bottom:643.275000px;}
.y9d{bottom:647.325000px;}
.y52{bottom:650.475000px;}
.y25{bottom:660.075000px;}
.y9c{bottom:671.175000px;}
.y51{bottom:674.175000px;}
.y9b{bottom:695.025000px;}
.y50{bottom:698.025000px;}
.y24{bottom:701.475000px;}
.y9a{bottom:718.725000px;}
.y4f{bottom:721.875000px;}
.y1c{bottom:722.175000px;}
.y99{bottom:742.620000px;}
.y4e{bottom:745.620000px;}
.y98{bottom:766.620000px;}
.y4d{bottom:769.470000px;}
.y97{bottom:790.620000px;}
.y4c{bottom:793.320000px;}
.y96{bottom:812.955000px;}
.y94{bottom:815.955000px;}
.y4b{bottom:817.020000px;}
.y93{bottom:827.955000px;}
.y4a{bottom:840.870000px;}
.y95{bottom:846.120000px;}
.y92{bottom:863.370000px;}
.y49{bottom:864.720000px;}
.y1b{bottom:870.720000px;}
.y91{bottom:887.220000px;}
.y48{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.y19{bottom:910.620000px;}
.y90{bottom:911.070000px;}
.y47{bottom:912.270000px;}
.y18{bottom:931.320000px;}
.y8f{bottom:934.920000px;}
.y46{bottom:936.120000px;}
.y17{bottom:952.020000px;}
.y8e{bottom:959.220000px;}
.y45{bottom:959.970000px;}
.y16{bottom:972.720000px;}
.y8d{bottom:983.370000px;}
.y44{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.y8c{bottom:1007.220000px;}
.y43{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y8b{bottom:1019.220000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y8a{bottom:1054.770000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.y89{bottom:1103.100000px;}
.y3e{bottom:1126.500000px;}
.y88{bottom:1126.950000px;}
.yf{bottom:1129.650000px;}
.y87{bottom:1138.950000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h10{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.he{height:50.484375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h17{height:63.251953px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h11{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h2{height:82.441406px;}
.h14{height:89.296875px;}
.h15{height:118.664062px;}
.h18{height:130.664062px;}
.h13{height:137.296875px;}
.h12{height:143.896875px;}
.h16{height:143.956875px;}
.hd{height:144.937500px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.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;}
.x1f{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x20{left:95.699987px;}
.x1e{left:100.200000px;}
.x1d{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x24{left:138.037487px;}
.x10{left:182.279987px;}
.x26{left:202.394987px;}
.x25{left:211.244987px;}
.x27{left:243.644987px;}
.x11{left:288.029987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x18{left:454.424987px;}
.x22{left:457.274987px;}
.x15{left:494.024987px;}
.x21{left:510.374987px;}
.x12{left:513.674987px;}
.x2e{left:533.924987px;}
.x2a{left:552.974987px;}
.x28{left:554.924987px;}
.x14{left:574.124987px;}
.x19{left:585.224987px;}
.x13{left:589.874987px;}
.x2b{left:593.474987px;}
.x17{left:609.074987px;}
.x1c{left:623.024987px;}
.xc{left:625.425000px;}
.x29{left:628.424987px;}
.x2c{left:629.624987px;}
.x1a{left:633.074987px;}
.x1b{left:666.569987px;}
.x2d{left:671.819987px;}
.xf{left:713.655000px;}
.x2{left:819.119987px;}
.x23{left:846.704987px;}
.x16{left:850.619987px;}
.x2f{left:853.319987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v5{vertical-align:35.733333pt;}
.v6{vertical-align:42.666667pt;}
.v3{vertical-align:48.533333pt;}
.v7{vertical-align:53.333333pt;}
.v4{vertical-align:55.466667pt;}
.lsb{letter-spacing:-2.666667pt;}
.lsd{letter-spacing:-2.661333pt;}
.lsa{letter-spacing:-2.656000pt;}
.lsc{letter-spacing:-2.400000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.088000pt;}
.ls1a{letter-spacing:-0.034667pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.165333pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls18{letter-spacing:11.594667pt;}
.ls10{letter-spacing:14.570667pt;}
.lsf{letter-spacing:17.738667pt;}
.ls16{letter-spacing:17.792000pt;}
.ls13{letter-spacing:17.845333pt;}
.ls12{letter-spacing:21.066667pt;}
.ls15{letter-spacing:21.885333pt;}
.lse{letter-spacing:22.200000pt;}
.ls5{letter-spacing:25.546667pt;}
.ls6{letter-spacing:27.786667pt;}
.ls19{letter-spacing:92.736000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-14.165333pt;}
.wsb{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.824000pt;}
.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;}
.wsf{word-spacing:-9.938667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
.ws11{word-spacing:3.293333pt;}
.ws19{word-spacing:5.589333pt;}
.ws13{word-spacing:5.653333pt;}
.wsc{word-spacing:8.040000pt;}
.ws17{word-spacing:8.626667pt;}
.ws14{word-spacing:8.797333pt;}
.ws16{word-spacing:11.837333pt;}
.ws10{word-spacing:11.970667pt;}
.ws12{word-spacing:12.493333pt;}
.ws1a{word-spacing:59.778667pt;}
.ws15{word-spacing:106.706667pt;}
.wsd{word-spacing:114.226667pt;}
.ws18{word-spacing:114.280000pt;}
._58{margin-left:-14.496000pt;}
._55{margin-left:-8.256000pt;}
._56{margin-left:-7.146667pt;}
._3e{margin-left:-4.416000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._26{width:1.882667pt;}
._27{width:2.906667pt;}
._2e{width:4.608000pt;}
._1f{width:5.568000pt;}
._32{width:6.720000pt;}
._4{width:7.616000pt;}
._5{width:8.640000pt;}
._1d{width:9.936000pt;}
._e{width:10.837333pt;}
._8{width:11.840000pt;}
._9{width:13.248000pt;}
._54{width:14.144000pt;}
._2d{width:15.040000pt;}
._48{width:17.077333pt;}
._a{width:17.984000pt;}
._b{width:19.034667pt;}
._f{width:20.005333pt;}
._6{width:21.632000pt;}
._7{width:22.720000pt;}
._38{width:23.680000pt;}
._17{width:24.640000pt;}
._18{width:25.562667pt;}
._1e{width:26.677333pt;}
._19{width:28.096000pt;}
._1a{width:29.312000pt;}
._15{width:30.912000pt;}
._16{width:31.872000pt;}
._3a{width:32.896000pt;}
._4a{width:34.944000pt;}
._24{width:35.904000pt;}
._23{width:37.056000pt;}
._3c{width:38.464000pt;}
._3d{width:39.488000pt;}
._49{width:40.410667pt;}
._10{width:41.536000pt;}
._2f{width:42.560000pt;}
._33{width:44.352000pt;}
._2c{width:45.376000pt;}
._35{width:46.362667pt;}
._36{width:47.296000pt;}
._20{width:48.896000pt;}
._21{width:50.304000pt;}
._25{width:51.264000pt;}
._c{width:52.160000pt;}
._d{width:53.168000pt;}
._4d{width:54.378667pt;}
._2a{width:56.384000pt;}
._4e{width:57.600000pt;}
._4f{width:58.837333pt;}
._22{width:59.840000pt;}
._3b{width:61.312000pt;}
._43{width:62.400000pt;}
._4b{width:69.056000pt;}
._11{width:71.360000pt;}
._12{width:72.512000pt;}
._46{width:74.880000pt;}
._47{width:75.994667pt;}
._5b{width:78.592000pt;}
._30{width:79.680000pt;}
._31{width:80.602667pt;}
._1c{width:81.664000pt;}
._50{width:83.648000pt;}
._41{width:85.248000pt;}
._42{width:86.336000pt;}
._2b{width:87.232000pt;}
._4c{width:88.256000pt;}
._1b{width:94.848000pt;}
._13{width:98.816000pt;}
._14{width:100.224000pt;}
._53{width:103.936000pt;}
._34{width:105.344000pt;}
._51{width:112.384000pt;}
._52{width:113.600000pt;}
._59{width:115.840000pt;}
._3f{width:122.944000pt;}
._39{width:125.824000pt;}
._5a{width:133.632000pt;}
._37{width:137.498667pt;}
._57{width:143.002667pt;}
._40{width:151.232000pt;}
._28{width:164.736000pt;}
._29{width:172.800000pt;}
._45{width:180.032000pt;}
._44{width:239.616000pt;}
._5c{width:918.464000pt;}
.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;}
.y23{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y26{bottom:21.866667pt;}
.y22{bottom:21.906667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y21{bottom:40.306667pt;}
.y3{bottom:51.233333pt;}
.y20{bottom:58.706667pt;}
.y2{bottom:72.566667pt;}
.y1f{bottom:77.106667pt;}
.y1e{bottom:95.506667pt;}
.y3d{bottom:98.300000pt;}
.y68{bottom:112.566667pt;}
.ya4{bottom:112.700000pt;}
.y1d{bottom:113.906667pt;}
.y3c{bottom:119.500000pt;}
.y78{bottom:124.700000pt;}
.y86{bottom:132.833333pt;}
.y67{bottom:133.773333pt;}
.ya3{bottom:133.906667pt;}
.y3b{bottom:140.706667pt;}
.y77{bottom:145.906667pt;}
.y85{bottom:153.906667pt;}
.y66{bottom:154.973333pt;}
.y3a{bottom:161.773333pt;}
.y76{bottom:167.106667pt;}
.y84{bottom:175.240000pt;}
.y65{bottom:176.173333pt;}
.y39{bottom:182.960000pt;}
.y75{bottom:188.173333pt;}
.y83{bottom:196.840000pt;}
.y64{bottom:197.240000pt;}
.ya2{bottom:197.373333pt;}
.y38{bottom:204.173333pt;}
.y74{bottom:209.373333pt;}
.y82{bottom:218.173333pt;}
.y63{bottom:218.440000pt;}
.y37{bottom:225.226667pt;}
.y73{bottom:230.560000pt;}
.y81{bottom:239.373333pt;}
.y62{bottom:239.640000pt;}
.y36{bottom:246.440000pt;}
.y80{bottom:250.040000pt;}
.y72{bottom:251.640000pt;}
.y61{bottom:260.706667pt;}
.ya1{bottom:260.840000pt;}
.y35{bottom:267.626667pt;}
.y71{bottom:272.840000pt;}
.y7f{bottom:281.373333pt;}
.y60{bottom:281.893333pt;}
.y34{bottom:288.840000pt;}
.y70{bottom:294.040000pt;}
.y7e{bottom:302.560000pt;}
.y5f{bottom:303.106667pt;}
.y33{bottom:309.906667pt;}
.y6f{bottom:315.106667pt;}
.ya0{bottom:320.706667pt;}
.y7d{bottom:323.893333pt;}
.y5e{bottom:324.173333pt;}
.y32{bottom:331.106667pt;}
.y6e{bottom:336.293333pt;}
.y7c{bottom:345.266667pt;}
.y5d{bottom:345.400000pt;}
.y31{bottom:352.333333pt;}
.y6d{bottom:357.533333pt;}
.y5c{bottom:366.600000pt;}
.y30{bottom:373.400000pt;}
.y6c{bottom:378.733333pt;}
.y5b{bottom:387.666667pt;}
.y7b{bottom:388.066667pt;}
.y2f{bottom:394.600000pt;}
.y6b{bottom:399.800000pt;}
.y5a{bottom:408.866667pt;}
.y7a{bottom:409.266667pt;}
.y2e{bottom:415.800000pt;}
.y79{bottom:419.933333pt;}
.y6a{bottom:421.000000pt;}
.y59{bottom:430.066667pt;}
.y2d{bottom:436.866667pt;}
.y69{bottom:438.733333pt;}
.y58{bottom:451.133333pt;}
.y2c{bottom:458.066667pt;}
.y57{bottom:472.333333pt;}
.y2b{bottom:479.266667pt;}
.y56{bottom:493.533333pt;}
.y2a{bottom:500.333333pt;}
.y55{bottom:514.733333pt;}
.y29{bottom:521.533333pt;}
.y9f{bottom:533.133333pt;}
.y54{bottom:535.800000pt;}
.y28{bottom:542.733333pt;}
.y9e{bottom:554.333333pt;}
.y53{bottom:557.000000pt;}
.y27{bottom:571.800000pt;}
.y9d{bottom:575.400000pt;}
.y52{bottom:578.200000pt;}
.y25{bottom:586.733333pt;}
.y9c{bottom:596.600000pt;}
.y51{bottom:599.266667pt;}
.y9b{bottom:617.800000pt;}
.y50{bottom:620.466667pt;}
.y24{bottom:623.533333pt;}
.y9a{bottom:638.866667pt;}
.y4f{bottom:641.666667pt;}
.y1c{bottom:641.933333pt;}
.y99{bottom:660.106667pt;}
.y4e{bottom:662.773333pt;}
.y98{bottom:681.440000pt;}
.y4d{bottom:683.973333pt;}
.y97{bottom:702.773333pt;}
.y4c{bottom:705.173333pt;}
.y96{bottom:722.626667pt;}
.y94{bottom:725.293333pt;}
.y4b{bottom:726.240000pt;}
.y93{bottom:735.960000pt;}
.y4a{bottom:747.440000pt;}
.y95{bottom:752.106667pt;}
.y92{bottom:767.440000pt;}
.y49{bottom:768.640000pt;}
.y1b{bottom:773.973333pt;}
.y91{bottom:788.640000pt;}
.y48{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.y19{bottom:809.440000pt;}
.y90{bottom:809.840000pt;}
.y47{bottom:810.906667pt;}
.y18{bottom:827.840000pt;}
.y8f{bottom:831.040000pt;}
.y46{bottom:832.106667pt;}
.y17{bottom:846.240000pt;}
.y8e{bottom:852.640000pt;}
.y45{bottom:853.306667pt;}
.y16{bottom:864.640000pt;}
.y8d{bottom:874.106667pt;}
.y44{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.y8c{bottom:895.306667pt;}
.y43{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y8b{bottom:905.973333pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y8a{bottom:937.573333pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.y89{bottom:980.533333pt;}
.y3e{bottom:1001.333333pt;}
.y88{bottom:1001.733333pt;}
.yf{bottom:1004.133333pt;}
.y87{bottom:1012.400000pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h10{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.he{height:44.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h17{height:56.223958pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h11{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h2{height:73.281250pt;}
.h14{height:79.375000pt;}
.h15{height:105.479167pt;}
.h18{height:116.145833pt;}
.h13{height:122.041667pt;}
.h12{height:127.908333pt;}
.h16{height:127.961667pt;}
.hd{height:128.833333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.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;}
.x1f{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x20{left:85.066655pt;}
.x1e{left:89.066667pt;}
.x1d{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x24{left:122.699988pt;}
.x10{left:162.026655pt;}
.x26{left:179.906655pt;}
.x25{left:187.773322pt;}
.x27{left:216.573322pt;}
.x11{left:256.026655pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x18{left:403.933322pt;}
.x22{left:406.466655pt;}
.x15{left:439.133322pt;}
.x21{left:453.666655pt;}
.x12{left:456.599988pt;}
.x2e{left:474.599988pt;}
.x2a{left:491.533322pt;}
.x28{left:493.266655pt;}
.x14{left:510.333322pt;}
.x19{left:520.199988pt;}
.x13{left:524.333322pt;}
.x2b{left:527.533322pt;}
.x17{left:541.399988pt;}
.x1c{left:553.799988pt;}
.xc{left:555.933333pt;}
.x29{left:558.599988pt;}
.x2c{left:559.666655pt;}
.x1a{left:562.733322pt;}
.x1b{left:592.506655pt;}
.x2d{left:597.173322pt;}
.xf{left:634.360000pt;}
.x2{left:728.106655pt;}
.x23{left:752.626655pt;}
.x16{left:756.106655pt;}
.x2f{left:758.506655pt;}
}




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