
    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_80ac25680c5a0b1f7152af28.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fc4925d07a9fc0aca5c2eb07.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_f2eb4407498163090f041225.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_eaf08f50b95c2f6f2c90cc81.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_33c7965b7f78b39c353dcd49.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27b8129b473c3c1f8c8484c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4e1c74d74f96c4cc6c986e90.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.lsf{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.230400px;}
.ls5{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.lsc{letter-spacing:3.600000px;}
.ls1{letter-spacing:7.920000px;}
.ls6{letter-spacing:18.000000px;}
.ls2{letter-spacing:21.221280px;}
.lsb{letter-spacing:33.984000px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws6{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.560000px;}
.ws8{word-spacing:-12.236544px;}
.ws7{word-spacing:-12.204000px;}
.ws1{word-spacing:-10.440000px;}
.ws0{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-5.040000px;}
._d{margin-left:-3.384000px;}
._e{margin-left:-2.376000px;}
._2{margin-left:-1.126080px;}
._3{width:1.627920px;}
._5{width:2.648160px;}
._6{width:4.150080px;}
._14{width:5.175360px;}
._1d{width:6.545280px;}
._9{width:7.704000px;}
._b{width:8.856000px;}
._a{width:9.952080px;}
._11{width:10.971600px;}
._8{width:12.092160px;}
._7{width:13.176000px;}
._c{width:15.000000px;}
._4{width:16.061520px;}
._1{width:17.072640px;}
._0{width:18.074880px;}
._15{width:19.344000px;}
._1a{width:20.400000px;}
._f{width:21.456000px;}
._22{width:22.512000px;}
._19{width:23.616000px;}
._1c{width:24.631920px;}
._1b{width:25.966080px;}
._20{width:27.169920px;}
._21{width:28.272480px;}
._13{width:29.468160px;}
._12{width:30.600000px;}
._10{width:36.288000px;}
._23{width:71.712000px;}
._17{width:94.968000px;}
._18{width:96.048000px;}
._1f{width:147.600000px;}
._26{width:160.968000px;}
._25{width:186.433920px;}
._24{width:187.822080px;}
._1e{width:1825.476000px;}
.fc3{color:rgb(31,36,60);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:26.460000px;}
.y83{bottom:41.400000px;}
.y6{bottom:57.600000px;}
.y5{bottom:77.616000px;}
.y82{bottom:95.250000px;}
.y4{bottom:97.776000px;}
.y81{bottom:110.190000px;}
.y58{bottom:136.476000px;}
.y9d{bottom:155.910000px;}
.y23{bottom:158.430000px;}
.y41{bottom:161.130000px;}
.y59{bottom:162.210000px;}
.y6f{bottom:163.650000px;}
.y57{bottom:167.430000px;}
.y80{bottom:171.510000px;}
.y9a{bottom:183.990000px;}
.y7f{bottom:186.450000px;}
.y9c{bottom:186.870000px;}
.y77{bottom:189.390000px;}
.y22{bottom:189.570000px;}
.y40{bottom:192.090000px;}
.y6e{bottom:194.790000px;}
.y7a{bottom:198.465000px;}
.y56{bottom:198.570000px;}
.y79{bottom:213.405000px;}
.y99{bottom:218.010000px;}
.y76{bottom:220.530000px;}
.y21{bottom:222.870000px;}
.y3f{bottom:223.230000px;}
.y6d{bottom:225.750000px;}
.y55{bottom:229.530000px;}
.y7e{bottom:240.405000px;}
.y98{bottom:248.970000px;}
.y9b{bottom:251.310000px;}
.y75{bottom:251.490000px;}
.y3e{bottom:254.190000px;}
.y6c{bottom:256.890000px;}
.y20{bottom:259.050000px;}
.y54{bottom:260.670000px;}
.y97{bottom:280.110000px;}
.y74{bottom:282.450000px;}
.y3d{bottom:285.330000px;}
.y6b{bottom:290.190000px;}
.y53{bottom:291.630000px;}
.y1f{bottom:295.410000px;}
.y7d{bottom:301.680000px;}
.y96{bottom:311.070000px;}
.y73{bottom:313.590000px;}
.y3c{bottom:316.290000px;}
.y7c{bottom:316.620000px;}
.y52{bottom:322.770000px;}
.y6a{bottom:324.030000px;}
.y1e{bottom:329.250000px;}
.y95{bottom:342.255000px;}
.y72{bottom:344.595000px;}
.y3b{bottom:347.475000px;}
.y51{bottom:353.775000px;}
.y69{bottom:355.215000px;}
.y1d{bottom:360.435000px;}
.y94{bottom:373.215000px;}
.y71{bottom:375.735000px;}
.y7b{bottom:378.030000px;}
.y3a{bottom:378.435000px;}
.y50{bottom:384.915000px;}
.y68{bottom:386.175000px;}
.y1c{bottom:391.395000px;}
.y78{bottom:392.580000px;}
.y70{bottom:402.735000px;}
.y93{bottom:404.355000px;}
.y39{bottom:409.575000px;}
.y4f{bottom:415.875000px;}
.y67{bottom:417.315000px;}
.y1b{bottom:422.355000px;}
.y92{bottom:435.315000px;}
.y9e{bottom:437.655000px;}
.y38{bottom:440.535000px;}
.y4e{bottom:447.015000px;}
.y66{bottom:448.275000px;}
.y1a{bottom:453.495000px;}
.y91{bottom:466.455000px;}
.y37{bottom:471.675000px;}
.y4d{bottom:477.975000px;}
.y65{bottom:479.415000px;}
.y19{bottom:484.455000px;}
.y90{bottom:497.415000px;}
.y36{bottom:502.635000px;}
.y4c{bottom:509.115000px;}
.y64{bottom:510.375000px;}
.y18{bottom:515.595000px;}
.y8f{bottom:528.555000px;}
.y35{bottom:533.775000px;}
.y4b{bottom:540.075000px;}
.y63{bottom:541.515000px;}
.y17{bottom:546.555000px;}
.y8e{bottom:559.515000px;}
.y34{bottom:564.735000px;}
.y4a{bottom:571.215000px;}
.y62{bottom:572.475000px;}
.y16{bottom:577.695000px;}
.y8d{bottom:590.655000px;}
.y33{bottom:595.875000px;}
.y49{bottom:602.175000px;}
.y61{bottom:603.645000px;}
.y15{bottom:608.685000px;}
.y8c{bottom:621.645000px;}
.y32{bottom:626.865000px;}
.y48{bottom:633.345000px;}
.y60{bottom:634.605000px;}
.y14{bottom:639.825000px;}
.y8b{bottom:652.785000px;}
.y31{bottom:658.005000px;}
.y47{bottom:664.305000px;}
.y5f{bottom:665.745000px;}
.y13{bottom:670.785000px;}
.y8a{bottom:683.745000px;}
.y30{bottom:688.965000px;}
.y46{bottom:697.605000px;}
.y5e{bottom:699.045000px;}
.y12{bottom:701.925000px;}
.y89{bottom:714.885000px;}
.y2f{bottom:719.925000px;}
.y45{bottom:730.185000px;}
.y5d{bottom:731.625000px;}
.y11{bottom:732.885000px;}
.y88{bottom:745.845000px;}
.y2e{bottom:751.065000px;}
.y44{bottom:758.625000px;}
.y5c{bottom:760.065000px;}
.y10{bottom:764.025000px;}
.y87{bottom:776.985000px;}
.y2d{bottom:782.025000px;}
.y43{bottom:788.505000px;}
.yf{bottom:794.985000px;}
.y86{bottom:807.945000px;}
.y2c{bottom:813.165000px;}
.y42{bottom:814.605000px;}
.y5b{bottom:816.945000px;}
.ye{bottom:826.125000px;}
.y85{bottom:841.245000px;}
.y2b{bottom:844.125000px;}
.y5a{bottom:845.385000px;}
.yd{bottom:857.085000px;}
.y2a{bottom:875.310000px;}
.yc{bottom:886.830000px;}
.y29{bottom:906.270000px;}
.yb{bottom:915.450000px;}
.y28{bottom:937.410000px;}
.ya{bottom:950.730000px;}
.y27{bottom:968.370000px;}
.y9{bottom:975.930000px;}
.y26{bottom:999.510000px;}
.y8{bottom:1014.630000px;}
.y25{bottom:1030.470000px;}
.y7{bottom:1056.030000px;}
.y24{bottom:1061.610000px;}
.y3{bottom:1081.230000px;}
.y2{bottom:1095.630000px;}
.y1{bottom:1194.120000px;}
.h6{height:30.524766px;}
.h3{height:41.535703px;}
.hf{height:46.251562px;}
.he{height:46.736719px;}
.h7{height:48.418594px;}
.h8{height:50.273438px;}
.h9{height:50.800781px;}
.h13{height:52.628906px;}
.h11{height:53.709961px;}
.h12{height:53.853187px;}
.ha{height:54.246094px;}
.hc{height:59.436914px;}
.hd{height:61.329023px;}
.hb{height:63.467930px;}
.h2{height:65.884219px;}
.h4{height:67.565039px;}
.h5{height:68.340586px;}
.h10{height:406.260000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x1d{left:135.035987px;}
.x3{left:153.209987px;}
.x12{left:169.709987px;}
.x6{left:177.149987px;}
.x4{left:192.989987px;}
.x11{left:218.729987px;}
.x13{left:226.259987px;}
.x7{left:239.789987px;}
.xe{left:276.329987px;}
.x8{left:277.409987px;}
.xb{left:291.314987px;}
.xf{left:294.014987px;}
.x5{left:320.834987px;}
.xc{left:322.454987px;}
.x1c{left:386.609987px;}
.x9{left:446.474987px;}
.x14{left:552.704987px;}
.x19{left:554.504987px;}
.x15{left:558.644987px;}
.x17{left:560.624987px;}
.x18{left:566.564987px;}
.x1a{left:586.724987px;}
.x1b{left:592.484987px;}
.x16{left:600.404987px;}
.x2{left:694.589987px;}
.xa{left:700.889987px;}
.x10{left:765.149987px;}
.xd{left:785.129987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.204800pt;}
.ls5{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls1{letter-spacing:7.040000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls2{letter-spacing:18.863360pt;}
.lsb{letter-spacing:30.208000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws8{word-spacing:-10.876928pt;}
.ws7{word-spacing:-10.848000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-4.480000pt;}
._d{margin-left:-3.008000pt;}
._e{margin-left:-2.112000pt;}
._2{margin-left:-1.000960pt;}
._3{width:1.447040pt;}
._5{width:2.353920pt;}
._6{width:3.688960pt;}
._14{width:4.600320pt;}
._1d{width:5.818027pt;}
._9{width:6.848000pt;}
._b{width:7.872000pt;}
._a{width:8.846293pt;}
._11{width:9.752533pt;}
._8{width:10.748587pt;}
._7{width:11.712000pt;}
._c{width:13.333333pt;}
._4{width:14.276907pt;}
._1{width:15.175680pt;}
._0{width:16.066560pt;}
._15{width:17.194667pt;}
._1a{width:18.133333pt;}
._f{width:19.072000pt;}
._22{width:20.010667pt;}
._19{width:20.992000pt;}
._1c{width:21.895040pt;}
._1b{width:23.080960pt;}
._20{width:24.151040pt;}
._21{width:25.131093pt;}
._13{width:26.193920pt;}
._12{width:27.200000pt;}
._10{width:32.256000pt;}
._23{width:63.744000pt;}
._17{width:84.416000pt;}
._18{width:85.376000pt;}
._1f{width:131.200000pt;}
._26{width:143.082667pt;}
._25{width:165.719040pt;}
._24{width:166.952960pt;}
._1e{width:1622.645333pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:23.520000pt;}
.y83{bottom:36.800000pt;}
.y6{bottom:51.200000pt;}
.y5{bottom:68.992000pt;}
.y82{bottom:84.666667pt;}
.y4{bottom:86.912000pt;}
.y81{bottom:97.946667pt;}
.y58{bottom:121.312000pt;}
.y9d{bottom:138.586667pt;}
.y23{bottom:140.826667pt;}
.y41{bottom:143.226667pt;}
.y59{bottom:144.186667pt;}
.y6f{bottom:145.466667pt;}
.y57{bottom:148.826667pt;}
.y80{bottom:152.453333pt;}
.y9a{bottom:163.546667pt;}
.y7f{bottom:165.733333pt;}
.y9c{bottom:166.106667pt;}
.y77{bottom:168.346667pt;}
.y22{bottom:168.506667pt;}
.y40{bottom:170.746667pt;}
.y6e{bottom:173.146667pt;}
.y7a{bottom:176.413333pt;}
.y56{bottom:176.506667pt;}
.y79{bottom:189.693333pt;}
.y99{bottom:193.786667pt;}
.y76{bottom:196.026667pt;}
.y21{bottom:198.106667pt;}
.y3f{bottom:198.426667pt;}
.y6d{bottom:200.666667pt;}
.y55{bottom:204.026667pt;}
.y7e{bottom:213.693333pt;}
.y98{bottom:221.306667pt;}
.y9b{bottom:223.386667pt;}
.y75{bottom:223.546667pt;}
.y3e{bottom:225.946667pt;}
.y6c{bottom:228.346667pt;}
.y20{bottom:230.266667pt;}
.y54{bottom:231.706667pt;}
.y97{bottom:248.986667pt;}
.y74{bottom:251.066667pt;}
.y3d{bottom:253.626667pt;}
.y6b{bottom:257.946667pt;}
.y53{bottom:259.226667pt;}
.y1f{bottom:262.586667pt;}
.y7d{bottom:268.160000pt;}
.y96{bottom:276.506667pt;}
.y73{bottom:278.746667pt;}
.y3c{bottom:281.146667pt;}
.y7c{bottom:281.440000pt;}
.y52{bottom:286.906667pt;}
.y6a{bottom:288.026667pt;}
.y1e{bottom:292.666667pt;}
.y95{bottom:304.226667pt;}
.y72{bottom:306.306667pt;}
.y3b{bottom:308.866667pt;}
.y51{bottom:314.466667pt;}
.y69{bottom:315.746667pt;}
.y1d{bottom:320.386667pt;}
.y94{bottom:331.746667pt;}
.y71{bottom:333.986667pt;}
.y7b{bottom:336.026667pt;}
.y3a{bottom:336.386667pt;}
.y50{bottom:342.146667pt;}
.y68{bottom:343.266667pt;}
.y1c{bottom:347.906667pt;}
.y78{bottom:348.960000pt;}
.y70{bottom:357.986667pt;}
.y93{bottom:359.426667pt;}
.y39{bottom:364.066667pt;}
.y4f{bottom:369.666667pt;}
.y67{bottom:370.946667pt;}
.y1b{bottom:375.426667pt;}
.y92{bottom:386.946667pt;}
.y9e{bottom:389.026667pt;}
.y38{bottom:391.586667pt;}
.y4e{bottom:397.346667pt;}
.y66{bottom:398.466667pt;}
.y1a{bottom:403.106667pt;}
.y91{bottom:414.626667pt;}
.y37{bottom:419.266667pt;}
.y4d{bottom:424.866667pt;}
.y65{bottom:426.146667pt;}
.y19{bottom:430.626667pt;}
.y90{bottom:442.146667pt;}
.y36{bottom:446.786667pt;}
.y4c{bottom:452.546667pt;}
.y64{bottom:453.666667pt;}
.y18{bottom:458.306667pt;}
.y8f{bottom:469.826667pt;}
.y35{bottom:474.466667pt;}
.y4b{bottom:480.066667pt;}
.y63{bottom:481.346667pt;}
.y17{bottom:485.826667pt;}
.y8e{bottom:497.346667pt;}
.y34{bottom:501.986667pt;}
.y4a{bottom:507.746667pt;}
.y62{bottom:508.866667pt;}
.y16{bottom:513.506667pt;}
.y8d{bottom:525.026667pt;}
.y33{bottom:529.666667pt;}
.y49{bottom:535.266667pt;}
.y61{bottom:536.573333pt;}
.y15{bottom:541.053333pt;}
.y8c{bottom:552.573333pt;}
.y32{bottom:557.213333pt;}
.y48{bottom:562.973333pt;}
.y60{bottom:564.093333pt;}
.y14{bottom:568.733333pt;}
.y8b{bottom:580.253333pt;}
.y31{bottom:584.893333pt;}
.y47{bottom:590.493333pt;}
.y5f{bottom:591.773333pt;}
.y13{bottom:596.253333pt;}
.y8a{bottom:607.773333pt;}
.y30{bottom:612.413333pt;}
.y46{bottom:620.093333pt;}
.y5e{bottom:621.373333pt;}
.y12{bottom:623.933333pt;}
.y89{bottom:635.453333pt;}
.y2f{bottom:639.933333pt;}
.y45{bottom:649.053333pt;}
.y5d{bottom:650.333333pt;}
.y11{bottom:651.453333pt;}
.y88{bottom:662.973333pt;}
.y2e{bottom:667.613333pt;}
.y44{bottom:674.333333pt;}
.y5c{bottom:675.613333pt;}
.y10{bottom:679.133333pt;}
.y87{bottom:690.653333pt;}
.y2d{bottom:695.133333pt;}
.y43{bottom:700.893333pt;}
.yf{bottom:706.653333pt;}
.y86{bottom:718.173333pt;}
.y2c{bottom:722.813333pt;}
.y42{bottom:724.093333pt;}
.y5b{bottom:726.173333pt;}
.ye{bottom:734.333333pt;}
.y85{bottom:747.773333pt;}
.y2b{bottom:750.333333pt;}
.y5a{bottom:751.453333pt;}
.yd{bottom:761.853333pt;}
.y2a{bottom:778.053333pt;}
.yc{bottom:788.293333pt;}
.y29{bottom:805.573333pt;}
.yb{bottom:813.733333pt;}
.y28{bottom:833.253333pt;}
.ya{bottom:845.093333pt;}
.y27{bottom:860.773333pt;}
.y9{bottom:867.493333pt;}
.y26{bottom:888.453333pt;}
.y8{bottom:901.893333pt;}
.y25{bottom:915.973333pt;}
.y7{bottom:938.693333pt;}
.y24{bottom:943.653333pt;}
.y3{bottom:961.093333pt;}
.y2{bottom:973.893333pt;}
.y1{bottom:1061.440000pt;}
.h6{height:27.133125pt;}
.h3{height:36.920625pt;}
.hf{height:41.112500pt;}
.he{height:41.543750pt;}
.h7{height:43.038750pt;}
.h8{height:44.687500pt;}
.h9{height:45.156250pt;}
.h13{height:46.781250pt;}
.h11{height:47.742188pt;}
.h12{height:47.869500pt;}
.ha{height:48.218750pt;}
.hc{height:52.832812pt;}
.hd{height:54.514687pt;}
.hb{height:56.415937pt;}
.h2{height:58.563750pt;}
.h4{height:60.057813pt;}
.h5{height:60.747187pt;}
.h10{height:361.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x1d{left:120.031988pt;}
.x3{left:136.186655pt;}
.x12{left:150.853322pt;}
.x6{left:157.466655pt;}
.x4{left:171.546655pt;}
.x11{left:194.426655pt;}
.x13{left:201.119988pt;}
.x7{left:213.146655pt;}
.xe{left:245.626655pt;}
.x8{left:246.586655pt;}
.xb{left:258.946655pt;}
.xf{left:261.346655pt;}
.x5{left:285.186655pt;}
.xc{left:286.626655pt;}
.x1c{left:343.653322pt;}
.x9{left:396.866655pt;}
.x14{left:491.293322pt;}
.x19{left:492.893322pt;}
.x15{left:496.573322pt;}
.x17{left:498.333322pt;}
.x18{left:503.613322pt;}
.x1a{left:521.533322pt;}
.x1b{left:526.653322pt;}
.x16{left:533.693322pt;}
.x2{left:617.413322pt;}
.xa{left:623.013322pt;}
.x10{left:680.133322pt;}
.xd{left:697.893322pt;}
}




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