
    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_e963537e44779a992873a200.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_e86ccac6ee90422f43c577b3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_549629842b548cf8c0f46cb1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e10fe6790dfad925e5e988ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_62c6bfc93c3465b2fa4f0006.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.114746;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_77d4ebee55be5b50be04ad3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_5720cce1360bb57b93502b7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_5c4b7e29a090a7205e1d55c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.114746;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_88edc971ff752aeabab8d8f7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-22.620000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.lsf{letter-spacing:-5.244000px;}
.ls9{letter-spacing:-1.512000px;}
.ls8{letter-spacing:-1.128000px;}
.lsa{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.022500px;}
.ls6{letter-spacing:0.138000px;}
.ls10{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.675000px;}
.ls17{letter-spacing:0.744000px;}
.ls13{letter-spacing:0.762000px;}
.lsc{letter-spacing:1.065000px;}
.ls1{letter-spacing:1.089000px;}
.ls3{letter-spacing:1.125000px;}
.ls14{letter-spacing:1.128000px;}
.ls4{letter-spacing:1.296000px;}
.lse{letter-spacing:1.305000px;}
.ls18{letter-spacing:1.518000px;}
.ls2{letter-spacing:1.902000px;}
.ls12{letter-spacing:2.160000px;}
.ls16{letter-spacing:2.178000px;}
.ls0{letter-spacing:2.250000px;}
.ls5{letter-spacing:13.500000px;}
.ls15{letter-spacing:39.735000px;}
.ls11{letter-spacing:64.707000px;}
.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;}
}
.wsb{word-spacing:-19.125000px;}
.wsc{word-spacing:-17.637000px;}
.wse{word-spacing:-17.619000px;}
.ws9{word-spacing:-17.550000px;}
.ws1{word-spacing:-16.875000px;}
.ws0{word-spacing:-14.625000px;}
.wsf{word-spacing:-13.893000px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.482000px;}
.ws2{word-spacing:-13.089000px;}
.wsd{word-spacing:-12.375000px;}
.ws6{word-spacing:-11.988000px;}
.wsa{word-spacing:-11.631000px;}
.ws3{word-spacing:-11.187000px;}
.ws4{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._a{margin-left:-10.846500px;}
._21{margin-left:-8.776500px;}
._1e{margin-left:-7.690500px;}
._6{margin-left:-6.451500px;}
._8{margin-left:-5.116500px;}
._7{margin-left:-4.111500px;}
._0{margin-left:-2.376000px;}
._3{margin-left:-1.032000px;}
._2{width:1.224000px;}
._4{width:2.614500px;}
._1{width:4.464000px;}
._12{width:5.487000px;}
._26{width:6.496500px;}
._5{width:7.525500px;}
._b{width:9.295500px;}
._1f{width:10.341000px;}
._11{width:11.458500px;}
._9{width:12.493500px;}
._d{width:13.620000px;}
._20{width:15.498000px;}
._10{width:16.683000px;}
._c{width:18.262500px;}
._23{width:19.323000px;}
._17{width:20.361000px;}
._f{width:21.504000px;}
._13{width:22.624500px;}
._22{width:24.012000px;}
._1b{width:25.342500px;}
._e{width:26.472000px;}
._29{width:27.843000px;}
._25{width:29.073000px;}
._1c{width:31.108500px;}
._24{width:32.805000px;}
._18{width:34.564500px;}
._1a{width:35.751000px;}
._28{width:36.982500px;}
._19{width:39.568500px;}
._27{width:41.512500px;}
._15{width:44.194500px;}
._16{width:47.862000px;}
._14{width:52.744500px;}
._1d{width:261.318000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.500000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:67.500000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:76.500000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:4.500000px;}
.y9{bottom:5.625000px;}
.y2{bottom:6.750000px;}
.y4a{bottom:10.155000px;}
.y4b{bottom:11.280000px;}
.y3c{bottom:21.375000px;}
.y5{bottom:25.920000px;}
.y8{bottom:28.170000px;}
.y3b{bottom:38.250000px;}
.y4{bottom:42.795000px;}
.y7{bottom:46.170000px;}
.y3a{bottom:56.295000px;}
.yc{bottom:57.450000px;}
.y3{bottom:60.795000px;}
.y6{bottom:64.170000px;}
.y39{bottom:73.170000px;}
.yb{bottom:76.575000px;}
.y38{bottom:90.090000px;}
.y37{bottom:108.075000px;}
.y80{bottom:110.362500px;}
.y7f{bottom:115.987500px;}
.y4f{bottom:120.487500px;}
.y7e{bottom:123.900000px;}
.y36{bottom:124.950000px;}
.y8b{bottom:129.525000px;}
.y7d{bottom:137.400000px;}
.ya7{bottom:139.650000px;}
.y35{bottom:141.870000px;}
.y4e{bottom:141.900000px;}
.y7c{bottom:143.025000px;}
.y8a{bottom:152.025000px;}
.y7b{bottom:153.150000px;}
.y89{bottom:157.650000px;}
.y34{bottom:159.870000px;}
.y4d{bottom:164.400000px;}
.y88{bottom:165.555000px;}
.ya5{bottom:167.805000px;}
.ya6{bottom:174.555000px;}
.y33{bottom:176.790000px;}
.y87{bottom:179.055000px;}
.y4c{bottom:180.180000px;}
.y9d{bottom:184.680000px;}
.y86{bottom:192.570000px;}
.y32{bottom:193.665000px;}
.y8e{bottom:197.070000px;}
.y85{bottom:198.195000px;}
.y49{bottom:202.695000px;}
.y9c{bottom:207.195000px;}
.y84{bottom:208.320000px;}
.y31{bottom:211.665000px;}
.ya3{bottom:212.850000px;}
.y7a{bottom:218.475000px;}
.y9b{bottom:220.725000px;}
.y8d{bottom:224.100000px;}
.y9a{bottom:226.350000px;}
.y30{bottom:228.570000px;}
.y99{bottom:234.225000px;}
.y48{bottom:237.600000px;}
.ya2{bottom:239.850000px;}
.y79{bottom:240.975000px;}
.y2f{bottom:245.445000px;}
.y98{bottom:247.725000px;}
.ya1{bottom:249.975000px;}
.y15{bottom:252.255000px;}
.y97{bottom:253.380000px;}
.y78{bottom:262.380000px;}
.y2e{bottom:263.490000px;}
.y96{bottom:263.505000px;}
.y2d{bottom:280.365000px;}
.y77{bottom:283.755000px;}
.y83{bottom:289.380000px;}
.y2c{bottom:297.240000px;}
.y76{bottom:306.300000px;}
.y2b{bottom:315.270000px;}
.y47{bottom:323.145000px;}
.y75{bottom:327.675000px;}
.y2a{bottom:332.145000px;}
.y95{bottom:333.300000px;}
.y46{bottom:342.270000px;}
.y29{bottom:349.065000px;}
.y74{bottom:350.205000px;}
.y45{bottom:360.315000px;}
.y28{bottom:367.065000px;}
.y73{bottom:371.580000px;}
.y44{bottom:378.315000px;}
.y27{bottom:383.940000px;}
.y72{bottom:393.000000px;}
.y43{bottom:394.095000px;}
.ya0{bottom:398.625000px;}
.y26{bottom:400.845000px;}
.y42{bottom:409.845000px;}
.y71{bottom:415.500000px;}
.y25{bottom:418.845000px;}
.y41{bottom:425.595000px;}
.y24{bottom:435.750000px;}
.y6f{bottom:436.920000px;}
.y40{bottom:440.265000px;}
.y70{bottom:442.545000px;}
.y23{bottom:452.625000px;}
.y3f{bottom:456.000000px;}
.y6e{bottom:459.420000px;}
.y22{bottom:470.640000px;}
.y3e{bottom:471.750000px;}
.y6d{bottom:480.825000px;}
.y94{bottom:486.450000px;}
.y21{bottom:487.545000px;}
.y6c{bottom:502.200000px;}
.y20{bottom:504.420000px;}
.y1f{bottom:522.450000px;}
.y6b{bottom:524.730000px;}
.y8c{bottom:530.370000px;}
.y1e{bottom:539.325000px;}
.y6a{bottom:546.120000px;}
.y1d{bottom:556.200000px;}
.y69{bottom:568.650000px;}
.y1c{bottom:574.245000px;}
.y93{bottom:574.275000px;}
.y68{bottom:590.025000px;}
.y1b{bottom:591.120000px;}
.y82{bottom:595.650000px;}
.y1a{bottom:608.040000px;}
.y67{bottom:611.445000px;}
.y19{bottom:626.040000px;}
.y66{bottom:633.945000px;}
.y18{bottom:642.915000px;}
.y65{bottom:655.350000px;}
.y17{bottom:659.820000px;}
.y92{bottom:660.975000px;}
.y16{bottom:677.820000px;}
.y64{bottom:677.850000px;}
.y63{bottom:699.270000px;}
.ya4{bottom:704.880000px;}
.y62{bottom:720.630000px;}
.y61{bottom:743.175000px;}
.y60{bottom:764.550000px;}
.y91{bottom:770.205000px;}
.y5f{bottom:785.955000px;}
.y5e{bottom:808.455000px;}
.y5d{bottom:829.875000px;}
.y5c{bottom:852.375000px;}
.y5b{bottom:873.795000px;}
.y5a{bottom:895.170000px;}
.y59{bottom:917.700000px;}
.y57{bottom:939.075000px;}
.y58{bottom:944.745000px;}
.y14{bottom:949.245000px;}
.y56{bottom:961.620000px;}
.y13{bottom:966.120000px;}
.y9f{bottom:967.245000px;}
.y55{bottom:982.995000px;}
.y12{bottom:989.775000px;}
.y11{bottom:1003.275000px;}
.y54{bottom:1004.400000px;}
.y10{bottom:1023.525000px;}
.y53{bottom:1026.900000px;}
.y90{bottom:1032.570000px;}
.yf{bottom:1040.445000px;}
.y52{bottom:1048.320000px;}
.y9e{bottom:1053.945000px;}
.ye{bottom:1064.070000px;}
.y51{bottom:1070.850000px;}
.y8f{bottom:1076.475000px;}
.yd{bottom:1089.975000px;}
.y50{bottom:1092.225000px;}
.y81{bottom:1097.850000px;}
.ya{bottom:1112.475000px;}
.y1{bottom:1132.755000px;}
.h18{height:21.994629px;}
.hd{height:25.136719px;}
.h17{height:28.278809px;}
.h14{height:31.537500px;}
.h19{height:34.562988px;}
.hf{height:37.705078px;}
.h11{height:38.100586px;}
.hb{height:40.798828px;}
.h3{height:40.847168px;}
.h5{height:41.275635px;}
.h12{height:44.507812px;}
.h13{height:47.131348px;}
.h16{height:47.625732px;}
.he{height:47.636719px;}
.h6{height:48.216797px;}
.h1a{height:49.141846px;}
.h8{height:49.234131px;}
.h4{height:50.800781px;}
.hc{height:51.075439px;}
.h15{height:53.709961px;}
.h9{height:53.975830px;}
.ha{height:55.634766px;}
.h7{height:67.137451px;}
.h2{height:77.700000px;}
.h10{height:691.350000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:72.112500px;}
.w3{width:209.505000px;}
.w6{width:224.145000px;}
.w7{width:283.845000px;}
.w8{width:391.995000px;}
.w2{width:428.025000px;}
.w5{width:459.570000px;}
.w9{width:893.249973px;}
.w4{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x16{left:10.125000px;}
.x6{left:20.250000px;}
.x14{left:29.287500px;}
.x2{left:58.567500px;}
.x7{left:83.325000px;}
.x4d{left:97.987487px;}
.x1{left:100.237500px;}
.x9{left:104.745000px;}
.xa{left:108.149987px;}
.x1f{left:112.649987px;}
.x32{left:117.149987px;}
.x48{left:118.274987px;}
.x8{left:130.650000px;}
.x22{left:135.149987px;}
.xc{left:136.312487px;}
.x4e{left:139.687487px;}
.x42{left:141.937473px;}
.xe{left:149.812487px;}
.x1d{left:150.929987px;}
.x43{left:153.179987px;}
.x1a{left:161.054987px;}
.x17{left:162.179987px;}
.x11{left:163.304987px;}
.x3{left:172.350000px;}
.x30{left:181.349973px;}
.x2f{left:189.224987px;}
.x1b{left:190.349973px;}
.x31{left:192.599987px;}
.x3e{left:193.724973px;}
.x1c{left:195.974987px;}
.x3f{left:205.019987px;}
.x34{left:216.254973px;}
.x35{left:227.549987px;}
.x18{left:256.799973px;}
.x12{left:257.969987px;}
.x19{left:262.469987px;}
.x10{left:279.344987px;}
.x49{left:319.904973px;}
.x1e{left:324.404987px;}
.x36{left:325.544973px;}
.x4a{left:331.154987px;}
.x37{left:336.779987px;}
.x40{left:340.154973px;}
.x27{left:341.279973px;}
.x28{left:346.904987px;}
.x41{left:351.449987px;}
.x38{left:358.199973px;}
.x2d{left:361.574973px;}
.x2e{left:367.199987px;}
.x39{left:369.449987px;}
.xd{left:377.324987px;}
.x15{left:391.995000px;}
.x4b{left:399.854973px;}
.x20{left:404.369973px;}
.x21{left:409.979987px;}
.x4c{left:411.149987px;}
.xf{left:447.194987px;}
.x33{left:467.444973px;}
.xb{left:478.724987px;}
.x44{left:494.474973px;}
.x45{left:505.769987px;}
.x3a{left:520.379973px;}
.x3b{left:531.629987px;}
.x46{left:542.924973px;}
.x47{left:554.174987px;}
.x13{left:567.720000px;}
.x5{left:600.375000px;}
.x29{left:664.574973px;}
.x3c{left:669.074973px;}
.x2a{left:670.199987px;}
.x3d{left:680.324987px;}
.x25{left:752.444973px;}
.x26{left:758.069987px;}
.x23{left:777.224973px;}
.x2b{left:780.599973px;}
.x24{left:782.849987px;}
.x2c{left:786.224987px;}
@media print{
.v2{vertical-align:-20.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.lsf{letter-spacing:-4.661333pt;}
.ls9{letter-spacing:-1.344000pt;}
.ls8{letter-spacing:-1.002667pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.020000pt;}
.ls6{letter-spacing:0.122667pt;}
.ls10{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.600000pt;}
.ls17{letter-spacing:0.661333pt;}
.ls13{letter-spacing:0.677333pt;}
.lsc{letter-spacing:0.946667pt;}
.ls1{letter-spacing:0.968000pt;}
.ls3{letter-spacing:1.000000pt;}
.ls14{letter-spacing:1.002667pt;}
.ls4{letter-spacing:1.152000pt;}
.lse{letter-spacing:1.160000pt;}
.ls18{letter-spacing:1.349333pt;}
.ls2{letter-spacing:1.690667pt;}
.ls12{letter-spacing:1.920000pt;}
.ls16{letter-spacing:1.936000pt;}
.ls0{letter-spacing:2.000000pt;}
.ls5{letter-spacing:12.000000pt;}
.ls15{letter-spacing:35.320000pt;}
.ls11{letter-spacing:57.517333pt;}
.wsb{word-spacing:-17.000000pt;}
.wsc{word-spacing:-15.677333pt;}
.wse{word-spacing:-15.661333pt;}
.ws9{word-spacing:-15.600000pt;}
.ws1{word-spacing:-15.000000pt;}
.ws0{word-spacing:-13.000000pt;}
.wsf{word-spacing:-12.349333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.984000pt;}
.ws2{word-spacing:-11.634667pt;}
.wsd{word-spacing:-11.000000pt;}
.ws6{word-spacing:-10.656000pt;}
.wsa{word-spacing:-10.338667pt;}
.ws3{word-spacing:-9.944000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._a{margin-left:-9.641333pt;}
._21{margin-left:-7.801333pt;}
._1e{margin-left:-6.836000pt;}
._6{margin-left:-5.734667pt;}
._8{margin-left:-4.548000pt;}
._7{margin-left:-3.654667pt;}
._0{margin-left:-2.112000pt;}
._3{margin-left:-0.917333pt;}
._2{width:1.088000pt;}
._4{width:2.324000pt;}
._1{width:3.968000pt;}
._12{width:4.877333pt;}
._26{width:5.774667pt;}
._5{width:6.689333pt;}
._b{width:8.262667pt;}
._1f{width:9.192000pt;}
._11{width:10.185333pt;}
._9{width:11.105333pt;}
._d{width:12.106667pt;}
._20{width:13.776000pt;}
._10{width:14.829333pt;}
._c{width:16.233333pt;}
._23{width:17.176000pt;}
._17{width:18.098667pt;}
._f{width:19.114667pt;}
._13{width:20.110667pt;}
._22{width:21.344000pt;}
._1b{width:22.526667pt;}
._e{width:23.530667pt;}
._29{width:24.749333pt;}
._25{width:25.842667pt;}
._1c{width:27.652000pt;}
._24{width:29.160000pt;}
._18{width:30.724000pt;}
._1a{width:31.778667pt;}
._28{width:32.873333pt;}
._19{width:35.172000pt;}
._27{width:36.900000pt;}
._15{width:39.284000pt;}
._16{width:42.544000pt;}
._14{width:46.884000pt;}
._1d{width:232.282667pt;}
.fs8{font-size:28.000000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:60.000000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:68.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:4.000000pt;}
.y9{bottom:5.000000pt;}
.y2{bottom:6.000000pt;}
.y4a{bottom:9.026667pt;}
.y4b{bottom:10.026667pt;}
.y3c{bottom:19.000000pt;}
.y5{bottom:23.040000pt;}
.y8{bottom:25.040000pt;}
.y3b{bottom:34.000000pt;}
.y4{bottom:38.040000pt;}
.y7{bottom:41.040000pt;}
.y3a{bottom:50.040000pt;}
.yc{bottom:51.066667pt;}
.y3{bottom:54.040000pt;}
.y6{bottom:57.040000pt;}
.y39{bottom:65.040000pt;}
.yb{bottom:68.066667pt;}
.y38{bottom:80.080000pt;}
.y37{bottom:96.066667pt;}
.y80{bottom:98.100000pt;}
.y7f{bottom:103.100000pt;}
.y4f{bottom:107.100000pt;}
.y7e{bottom:110.133333pt;}
.y36{bottom:111.066667pt;}
.y8b{bottom:115.133333pt;}
.y7d{bottom:122.133333pt;}
.ya7{bottom:124.133333pt;}
.y35{bottom:126.106667pt;}
.y4e{bottom:126.133333pt;}
.y7c{bottom:127.133333pt;}
.y8a{bottom:135.133333pt;}
.y7b{bottom:136.133333pt;}
.y89{bottom:140.133333pt;}
.y34{bottom:142.106667pt;}
.y4d{bottom:146.133333pt;}
.y88{bottom:147.160000pt;}
.ya5{bottom:149.160000pt;}
.ya6{bottom:155.160000pt;}
.y33{bottom:157.146667pt;}
.y87{bottom:159.160000pt;}
.y4c{bottom:160.160000pt;}
.y9d{bottom:164.160000pt;}
.y86{bottom:171.173333pt;}
.y32{bottom:172.146667pt;}
.y8e{bottom:175.173333pt;}
.y85{bottom:176.173333pt;}
.y49{bottom:180.173333pt;}
.y9c{bottom:184.173333pt;}
.y84{bottom:185.173333pt;}
.y31{bottom:188.146667pt;}
.ya3{bottom:189.200000pt;}
.y7a{bottom:194.200000pt;}
.y9b{bottom:196.200000pt;}
.y8d{bottom:199.200000pt;}
.y9a{bottom:201.200000pt;}
.y30{bottom:203.173333pt;}
.y99{bottom:208.200000pt;}
.y48{bottom:211.200000pt;}
.ya2{bottom:213.200000pt;}
.y79{bottom:214.200000pt;}
.y2f{bottom:218.173333pt;}
.y98{bottom:220.200000pt;}
.ya1{bottom:222.200000pt;}
.y15{bottom:224.226667pt;}
.y97{bottom:225.226667pt;}
.y78{bottom:233.226667pt;}
.y2e{bottom:234.213333pt;}
.y96{bottom:234.226667pt;}
.y2d{bottom:249.213333pt;}
.y77{bottom:252.226667pt;}
.y83{bottom:257.226667pt;}
.y2c{bottom:264.213333pt;}
.y76{bottom:272.266667pt;}
.y2b{bottom:280.240000pt;}
.y47{bottom:287.240000pt;}
.y75{bottom:291.266667pt;}
.y2a{bottom:295.240000pt;}
.y95{bottom:296.266667pt;}
.y46{bottom:304.240000pt;}
.y29{bottom:310.280000pt;}
.y74{bottom:311.293333pt;}
.y45{bottom:320.280000pt;}
.y28{bottom:326.280000pt;}
.y73{bottom:330.293333pt;}
.y44{bottom:336.280000pt;}
.y27{bottom:341.280000pt;}
.y72{bottom:349.333333pt;}
.y43{bottom:350.306667pt;}
.ya0{bottom:354.333333pt;}
.y26{bottom:356.306667pt;}
.y42{bottom:364.306667pt;}
.y71{bottom:369.333333pt;}
.y25{bottom:372.306667pt;}
.y41{bottom:378.306667pt;}
.y24{bottom:387.333333pt;}
.y6f{bottom:388.373333pt;}
.y40{bottom:391.346667pt;}
.y70{bottom:393.373333pt;}
.y23{bottom:402.333333pt;}
.y3f{bottom:405.333333pt;}
.y6e{bottom:408.373333pt;}
.y22{bottom:418.346667pt;}
.y3e{bottom:419.333333pt;}
.y6d{bottom:427.400000pt;}
.y94{bottom:432.400000pt;}
.y21{bottom:433.373333pt;}
.y6c{bottom:446.400000pt;}
.y20{bottom:448.373333pt;}
.y1f{bottom:464.400000pt;}
.y6b{bottom:466.426667pt;}
.y8c{bottom:471.440000pt;}
.y1e{bottom:479.400000pt;}
.y6a{bottom:485.440000pt;}
.y1d{bottom:494.400000pt;}
.y69{bottom:505.466667pt;}
.y1c{bottom:510.440000pt;}
.y93{bottom:510.466667pt;}
.y68{bottom:524.466667pt;}
.y1b{bottom:525.440000pt;}
.y82{bottom:529.466667pt;}
.y1a{bottom:540.480000pt;}
.y67{bottom:543.506667pt;}
.y19{bottom:556.480000pt;}
.y66{bottom:563.506667pt;}
.y18{bottom:571.480000pt;}
.y65{bottom:582.533333pt;}
.y17{bottom:586.506667pt;}
.y92{bottom:587.533333pt;}
.y16{bottom:602.506667pt;}
.y64{bottom:602.533333pt;}
.y63{bottom:621.573333pt;}
.ya4{bottom:626.560000pt;}
.y62{bottom:640.560000pt;}
.y61{bottom:660.600000pt;}
.y60{bottom:679.600000pt;}
.y91{bottom:684.626667pt;}
.y5f{bottom:698.626667pt;}
.y5e{bottom:718.626667pt;}
.y5d{bottom:737.666667pt;}
.y5c{bottom:757.666667pt;}
.y5b{bottom:776.706667pt;}
.y5a{bottom:795.706667pt;}
.y59{bottom:815.733333pt;}
.y57{bottom:834.733333pt;}
.y58{bottom:839.773333pt;}
.y14{bottom:843.773333pt;}
.y56{bottom:854.773333pt;}
.y13{bottom:858.773333pt;}
.y9f{bottom:859.773333pt;}
.y55{bottom:873.773333pt;}
.y12{bottom:879.800000pt;}
.y11{bottom:891.800000pt;}
.y54{bottom:892.800000pt;}
.y10{bottom:909.800000pt;}
.y53{bottom:912.800000pt;}
.y90{bottom:917.840000pt;}
.yf{bottom:924.840000pt;}
.y52{bottom:931.840000pt;}
.y9e{bottom:936.840000pt;}
.ye{bottom:945.840000pt;}
.y51{bottom:951.866667pt;}
.y8f{bottom:956.866667pt;}
.yd{bottom:968.866667pt;}
.y50{bottom:970.866667pt;}
.y81{bottom:975.866667pt;}
.ya{bottom:988.866667pt;}
.y1{bottom:1006.893333pt;}
.h18{height:19.550781pt;}
.hd{height:22.343750pt;}
.h17{height:25.136719pt;}
.h14{height:28.033333pt;}
.h19{height:30.722656pt;}
.hf{height:33.515625pt;}
.h11{height:33.867188pt;}
.hb{height:36.265625pt;}
.h3{height:36.308594pt;}
.h5{height:36.689453pt;}
.h12{height:39.562500pt;}
.h13{height:41.894531pt;}
.h16{height:42.333984pt;}
.he{height:42.343750pt;}
.h6{height:42.859375pt;}
.h1a{height:43.681641pt;}
.h8{height:43.763672pt;}
.h4{height:45.156250pt;}
.hc{height:45.400391pt;}
.h15{height:47.742188pt;}
.h9{height:47.978516pt;}
.ha{height:49.453125pt;}
.h7{height:59.677734pt;}
.h2{height:69.066667pt;}
.h10{height:614.533333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:64.100000pt;}
.w3{width:186.226667pt;}
.w6{width:199.240000pt;}
.w7{width:252.306667pt;}
.w8{width:348.440000pt;}
.w2{width:380.466667pt;}
.w5{width:408.506667pt;}
.w9{width:793.999976pt;}
.w4{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x16{left:9.000000pt;}
.x6{left:18.000000pt;}
.x14{left:26.033333pt;}
.x2{left:52.060000pt;}
.x7{left:74.066667pt;}
.x4d{left:87.099988pt;}
.x1{left:89.100000pt;}
.x9{left:93.106667pt;}
.xa{left:96.133322pt;}
.x1f{left:100.133322pt;}
.x32{left:104.133322pt;}
.x48{left:105.133322pt;}
.x8{left:116.133333pt;}
.x22{left:120.133322pt;}
.xc{left:121.166655pt;}
.x4e{left:124.166655pt;}
.x42{left:126.166643pt;}
.xe{left:133.166655pt;}
.x1d{left:134.159988pt;}
.x43{left:136.159988pt;}
.x1a{left:143.159988pt;}
.x17{left:144.159988pt;}
.x11{left:145.159988pt;}
.x3{left:153.200000pt;}
.x30{left:161.199976pt;}
.x2f{left:168.199988pt;}
.x1b{left:169.199976pt;}
.x31{left:171.199988pt;}
.x3e{left:172.199976pt;}
.x1c{left:174.199988pt;}
.x3f{left:182.239988pt;}
.x34{left:192.226643pt;}
.x35{left:202.266655pt;}
.x18{left:228.266643pt;}
.x12{left:229.306655pt;}
.x19{left:233.306655pt;}
.x10{left:248.306655pt;}
.x49{left:284.359976pt;}
.x1e{left:288.359988pt;}
.x36{left:289.373310pt;}
.x4a{left:294.359988pt;}
.x37{left:299.359988pt;}
.x40{left:302.359976pt;}
.x27{left:303.359976pt;}
.x28{left:308.359988pt;}
.x41{left:312.399988pt;}
.x38{left:318.399976pt;}
.x2d{left:321.399976pt;}
.x2e{left:326.399988pt;}
.x39{left:328.399988pt;}
.xd{left:335.399988pt;}
.x15{left:348.440000pt;}
.x4b{left:355.426643pt;}
.x20{left:359.439976pt;}
.x21{left:364.426655pt;}
.x4c{left:365.466655pt;}
.xf{left:397.506655pt;}
.x33{left:415.506643pt;}
.xb{left:425.533322pt;}
.x44{left:439.533310pt;}
.x45{left:449.573322pt;}
.x3a{left:462.559976pt;}
.x3b{left:472.559988pt;}
.x46{left:482.599976pt;}
.x47{left:492.599988pt;}
.x13{left:504.640000pt;}
.x5{left:533.666667pt;}
.x29{left:590.733310pt;}
.x3c{left:594.733310pt;}
.x2a{left:595.733322pt;}
.x3d{left:604.733322pt;}
.x25{left:668.839976pt;}
.x26{left:673.839988pt;}
.x23{left:690.866643pt;}
.x2b{left:693.866643pt;}
.x24{left:695.866655pt;}
.x2c{left:698.866655pt;}
}




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