
    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_2b6cf2bc88d3bca5dce23d87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_717560ca02a080e6250fedb1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_f4fd85473eae813e4f9423df.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_06a2ce617c18fd449811f98b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_52f1eb41cf79b4878a3f2968.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1d2441c095f6dc81da729ff1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f477d14f6f85240de8d22fb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-2.448000px;}
.ls2{letter-spacing:-0.437400px;}
.ls17{letter-spacing:-0.365400px;}
.lsc{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.109200px;}
.ls13{letter-spacing:-0.075600px;}
.ls12{letter-spacing:-0.075000px;}
.ls8{letter-spacing:-0.035280px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.039936px;}
.lsa{letter-spacing:0.069000px;}
.ls1{letter-spacing:0.126600px;}
.ls9{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.276600px;}
.ls7{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.366000px;}
.ls1a{letter-spacing:14.976000px;}
.ls15{letter-spacing:32.664000px;}
.ls16{letter-spacing:40.800000px;}
.ls4{letter-spacing:40.851936px;}
.ls3{letter-spacing:40.896000px;}
.ls5{letter-spacing:41.016000px;}
.lsf{letter-spacing:84.909600px;}
.lse{letter-spacing:84.960000px;}
.ls11{letter-spacing:111.669600px;}
.ls10{letter-spacing:111.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-81.360000px;}
.ws3{word-spacing:-43.812240px;}
.ws4{word-spacing:-43.410960px;}
.wsd{word-spacing:-40.680000px;}
.ws5{word-spacing:-32.688000px;}
.ws6{word-spacing:-32.645544px;}
.ws8{word-spacing:-32.576544px;}
.ws2{word-spacing:-32.544000px;}
.wsa{word-spacing:-32.501544px;}
.ws9{word-spacing:-24.408000px;}
.ws11{word-spacing:-24.331344px;}
.ws14{word-spacing:-16.632000px;}
.ws17{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.272000px;}
.ws7{word-spacing:-1.548000px;}
.wsb{word-spacing:-1.084608px;}
.ws18{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.051120px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.149808px;}
.wse{word-spacing:0.192000px;}
.ws15{word-spacing:0.504000px;}
.wsf{word-spacing:0.612000px;}
.ws16{word-spacing:5.400000px;}
.ws1{word-spacing:290.748480px;}
._c{margin-left:-15.564000px;}
._7{margin-left:-13.197312px;}
._f{margin-left:-9.396000px;}
._10{margin-left:-7.488000px;}
._a{margin-left:-5.472000px;}
._8{margin-left:-4.320000px;}
._9{margin-left:-2.541312px;}
._2{margin-left:-1.346688px;}
._0{width:1.223520px;}
._e{width:2.735664px;}
._12{width:4.701312px;}
._11{width:5.940000px;}
._14{width:14.493312px;}
._3{width:16.235904px;}
._13{width:26.121312px;}
._5{width:31.008480px;}
._b{width:41.750880px;}
._1{width:55.891008px;}
._6{width:305.174880px;}
._d{width:2558.472576px;}
._4{width:2590.777344px;}
.fc5{color:rgb(90,105,115);}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(55,138,220);}
.fc2{color:rgb(10,10,10);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:63.360000px;}
.fse{font-size:72.000000px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs6{font-size:167.760000px;}
.fsc{font-size:180.000000px;}
.fsd{font-size:180.144000px;}
.fs4{font-size:192.240000px;}
.fs2{font-size:192.384000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs9{font-size:360.000000px;}
.fs7{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.yac{bottom:11.052000px;}
.ya6{bottom:13.788000px;}
.y4{bottom:32.508000px;}
.yab{bottom:32.652000px;}
.y66{bottom:37.584000px;}
.y10{bottom:42.660000px;}
.ya5{bottom:46.188000px;}
.yaa{bottom:54.252000px;}
.y3{bottom:63.468000px;}
.y65{bottom:69.984000px;}
.y34{bottom:73.152000px;}
.ya9{bottom:75.852000px;}
.ya4{bottom:78.588000px;}
.y91{bottom:81.288000px;}
.y9f{bottom:84.240000px;}
.y29{bottom:96.552000px;}
.y4f{bottom:96.840000px;}
.ya8{bottom:97.452000px;}
.y1e{bottom:98.172000px;}
.y64{bottom:102.384000px;}
.ya3{bottom:110.988000px;}
.y57{bottom:119.592000px;}
.y77{bottom:119.772000px;}
.y90{bottom:120.168000px;}
.yf{bottom:121.644000px;}
.ye{bottom:124.956000px;}
.y33{bottom:125.568000px;}
.y2{bottom:129.492000px;}
.y82{bottom:130.356000px;}
.y1d{bottom:141.372000px;}
.y28{bottom:148.932000px;}
.y56{bottom:149.112000px;}
.y3c{bottom:155.850000px;}
.y32{bottom:164.445000px;}
.y9e{bottom:170.640000px;}
.y76{bottom:172.005000px;}
.y8f{bottom:172.545000px;}
.y81{bottom:182.550000px;}
.y4e{bottom:183.240000px;}
.y1{bottom:187.095000px;}
.y1c{bottom:193.605000px;}
.y3b{bottom:199.050000px;}
.y27{bottom:201.345000px;}
.y8e{bottom:211.425000px;}
.y9d{bottom:213.870000px;}
.y75{bottom:224.205000px;}
.y31{bottom:226.365000px;}
.y4d{bottom:226.470000px;}
.y80{bottom:234.750000px;}
.y63{bottom:236.310000px;}
.y1b{bottom:236.805000px;}
.yd{bottom:239.835000px;}
.yc{bottom:243.150000px;}
.y6a{bottom:252.750000px;}
.y26{bottom:253.725000px;}
.y8d{bottom:263.850000px;}
.y62{bottom:268.710000px;}
.y74{bottom:276.405000px;}
.y69{bottom:285.150000px;}
.y30{bottom:285.990000px;}
.y7f{bottom:286.995000px;}
.y1a{bottom:289.005000px;}
.y9c{bottom:300.270000px;}
.y61{bottom:301.110000px;}
.y55{bottom:301.710000px;}
.y8c{bottom:302.730000px;}
.y25{bottom:306.105000px;}
.y3a{bottom:309.855000px;}
.y4c{bottom:312.870000px;}
.y68{bottom:317.550000px;}
.y73{bottom:319.650000px;}
.y12{bottom:320.970000px;}
.y94{bottom:324.510000px;}
.y7e{bottom:330.195000px;}
.y54{bottom:331.230000px;}
.y19{bottom:332.250000px;}
.y60{bottom:333.540000px;}
.ya2{bottom:334.260000px;}
.y42{bottom:341.610000px;}
.y9b{bottom:343.470000px;}
.y2f{bottom:345.750000px;}
.y67{bottom:349.995000px;}
.y39{bottom:353.055000px;}
.y8b{bottom:355.110000px;}
.y4b{bottom:356.115000px;}
.yb{bottom:357.990000px;}
.y24{bottom:358.530000px;}
.ya{bottom:361.290000px;}
.y5f{bottom:365.940000px;}
.y5a{bottom:371.235000px;}
.y72{bottom:371.850000px;}
.y93{bottom:373.110000px;}
.y18{bottom:375.450000px;}
.y41{bottom:380.520000px;}
.y7d{bottom:382.395000px;}
.y9a{bottom:386.715000px;}
.y2e{bottom:392.040000px;}
.y8a{bottom:394.020000px;}
.y38{bottom:396.255000px;}
.y5e{bottom:398.340000px;}
.y4a{bottom:399.315000px;}
.y45{bottom:400.605000px;}
.y11{bottom:407.415000px;}
.y23{bottom:410.910000px;}
.y59{bottom:414.435000px;}
.y87{bottom:416.370000px;}
.y17{bottom:418.650000px;}
.y40{bottom:419.400000px;}
.y71{bottom:424.050000px;}
.y99{bottom:429.915000px;}
.y89{bottom:432.900000px;}
.y7c{bottom:434.625000px;}
.y2d{bottom:438.300000px;}
.y37{bottom:439.485000px;}
.y49{bottom:442.515000px;}
.ya7{bottom:448.740000px;}
.y22{bottom:463.290000px;}
.y86{bottom:468.750000px;}
.y16{bottom:470.880000px;}
.y3f{bottom:471.780000px;}
.ya1{bottom:472.065000px;}
.y98{bottom:473.115000px;}
.y70{bottom:476.280000px;}
.y9{bottom:476.430000px;}
.y8{bottom:479.730000px;}
.y7b{bottom:486.825000px;}
.y50{bottom:487.050000px;}
.y2c{bottom:498.060000px;}
.y21{bottom:515.700000px;}
.y97{bottom:516.345000px;}
.y85{bottom:521.175000px;}
.y15{bottom:523.080000px;}
.y3e{bottom:524.190000px;}
.ya0{bottom:526.110000px;}
.y6f{bottom:528.480000px;}
.y48{bottom:528.945000px;}
.y92{bottom:537.690000px;}
.y7a{bottom:539.025000px;}
.y36{bottom:549.435000px;}
.y2b{bottom:557.670000px;}
.y53{bottom:559.260000px;}
.y88{bottom:563.070000px;}
.y14{bottom:566.280000px;}
.y20{bottom:568.080000px;}
.y47{bottom:572.145000px;}
.y84{bottom:573.555000px;}
.y3d{bottom:576.570000px;}
.y6e{bottom:580.680000px;}
.y5d{bottom:581.655000px;}
.y52{bottom:588.960000px;}
.y79{bottom:591.270000px;}
.y35{bottom:592.635000px;}
.y7{bottom:594.870000px;}
.y6c{bottom:597.930000px;}
.y6{bottom:598.170000px;}
.y96{bottom:602.745000px;}
.y58{bottom:611.100000px;}
.y5c{bottom:614.055000px;}
.y46{bottom:615.345000px;}
.y2a{bottom:615.450000px;}
.y51{bottom:618.480000px;}
.y13{bottom:618.510000px;}
.y1f{bottom:620.460000px;}
.y83{bottom:625.935000px;}
.y6b{bottom:630.330000px;}
.y6d{bottom:632.910000px;}
.y78{bottom:634.470000px;}
.y95{bottom:645.990000px;}
.y5b{bottom:646.455000px;}
.y44{bottom:694.260000px;}
.y5{bottom:717.300000px;}
.y43{bottom:740.340000px;}
.h4{height:63.019687px;}
.h13{height:71.613281px;}
.hf{height:107.419922px;}
.h10{height:107.563148px;}
.he{height:110.583984px;}
.h6{height:143.226562px;}
.ha{height:143.369789px;}
.hb{height:147.445312px;}
.h9{height:147.592758px;}
.h7{height:166.858945px;}
.h11{height:179.033203px;}
.h12{height:179.176430px;}
.h3{height:183.178125px;}
.h5{height:196.839492px;}
.hc{height:196.986938px;}
.h1{height:245.496445px;}
.h2{height:245.643891px;}
.hd{height:368.613281px;}
.h8{height:368.760727px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:41.939979px;}
.x7{left:43.055979px;}
.x36{left:52.415979px;}
.x43{left:58.031979px;}
.x1{left:59.507979px;}
.x4{left:62.891979px;}
.x5{left:69.119979px;}
.xb{left:76.067979px;}
.x2f{left:119.483979px;}
.x2e{left:121.283979px;}
.x3{left:126.683979px;}
.x2c{left:132.623979px;}
.x2d{left:142.343979px;}
.x30{left:167.189979px;}
.x31{left:190.229979px;}
.xa{left:305.384979px;}
.x32{left:321.089979px;}
.x33{left:354.929979px;}
.x1c{left:391.469979px;}
.x1d{left:395.249979px;}
.x3d{left:436.604979px;}
.x37{left:442.004979px;}
.x39{left:444.704979px;}
.x3b{left:455.504979px;}
.x3a{left:459.464979px;}
.x3f{left:462.344979px;}
.x3c{left:463.604979px;}
.x1e{left:468.869979px;}
.x42{left:479.309979px;}
.x44{left:501.809979px;}
.x1f{left:592.559979px;}
.x12{left:594.974979px;}
.x38{left:599.504979px;}
.x10{left:601.994979px;}
.x20{left:625.139979px;}
.x1b{left:645.194979px;}
.x6{left:648.614979px;}
.x1a{left:649.694979px;}
.xf{left:656.174979px;}
.xd{left:677.054979px;}
.xc{left:714.314979px;}
.x40{left:729.509979px;}
.x8{left:750.239979px;}
.x13{left:753.044979px;}
.x41{left:767.849979px;}
.x9{left:771.509979px;}
.x45{left:801.509979px;}
.x17{left:803.009979px;}
.x46{left:805.649979px;}
.x11{left:807.044979px;}
.x16{left:812.369979px;}
.xe{left:820.364979px;}
.x15{left:833.429979px;}
.x18{left:844.484979px;}
.x14{left:846.104979px;}
.x3e{left:851.009979px;}
.x29{left:864.539979px;}
.x2b{left:872.819979px;}
.x34{left:880.559979px;}
.x2a{left:888.299979px;}
.x19{left:896.009979px;}
.x35{left:921.089979px;}
.x23{left:985.139979px;}
.x22{left:986.579979px;}
.x21{left:1011.059979px;}
.x27{left:1065.209979px;}
.x26{left:1078.889979px;}
.x24{left:1085.369979px;}
.x25{left:1118.669979px;}
.x28{left:1184.579979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-2.176000pt;}
.ls2{letter-spacing:-0.388800pt;}
.ls17{letter-spacing:-0.324800pt;}
.lsc{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.097067pt;}
.ls13{letter-spacing:-0.067200pt;}
.ls12{letter-spacing:-0.066667pt;}
.ls8{letter-spacing:-0.031360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.035499pt;}
.lsa{letter-spacing:0.061333pt;}
.ls1{letter-spacing:0.112533pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.245867pt;}
.ls7{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.325333pt;}
.ls1a{letter-spacing:13.312000pt;}
.ls15{letter-spacing:29.034667pt;}
.ls16{letter-spacing:36.266667pt;}
.ls4{letter-spacing:36.312832pt;}
.ls3{letter-spacing:36.352000pt;}
.ls5{letter-spacing:36.458667pt;}
.lsf{letter-spacing:75.475200pt;}
.lse{letter-spacing:75.520000pt;}
.ls11{letter-spacing:99.261867pt;}
.ls10{letter-spacing:99.306667pt;}
.wsc{word-spacing:-72.320000pt;}
.ws3{word-spacing:-38.944213pt;}
.ws4{word-spacing:-38.587520pt;}
.wsd{word-spacing:-36.160000pt;}
.ws5{word-spacing:-29.056000pt;}
.ws6{word-spacing:-29.018261pt;}
.ws8{word-spacing:-28.956928pt;}
.ws2{word-spacing:-28.928000pt;}
.wsa{word-spacing:-28.890261pt;}
.ws9{word-spacing:-21.696000pt;}
.ws11{word-spacing:-21.627861pt;}
.ws14{word-spacing:-14.784000pt;}
.ws17{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.464000pt;}
.ws7{word-spacing:-1.376000pt;}
.wsb{word-spacing:-0.964096pt;}
.ws18{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.045440pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.133163pt;}
.wse{word-spacing:0.170667pt;}
.ws15{word-spacing:0.448000pt;}
.wsf{word-spacing:0.544000pt;}
.ws16{word-spacing:4.800000pt;}
.ws1{word-spacing:258.443093pt;}
._c{margin-left:-13.834667pt;}
._7{margin-left:-11.730944pt;}
._f{margin-left:-8.352000pt;}
._10{margin-left:-6.656000pt;}
._a{margin-left:-4.864000pt;}
._8{margin-left:-3.840000pt;}
._9{margin-left:-2.258944pt;}
._2{margin-left:-1.197056pt;}
._0{width:1.087573pt;}
._e{width:2.431701pt;}
._12{width:4.178944pt;}
._11{width:5.280000pt;}
._14{width:12.882944pt;}
._3{width:14.431915pt;}
._13{width:23.218944pt;}
._5{width:27.563093pt;}
._b{width:37.111893pt;}
._1{width:49.680896pt;}
._6{width:271.266560pt;}
._d{width:2274.197845pt;}
._4{width:2302.913195pt;}
.fs3{font-size:56.320000pt;}
.fse{font-size:64.000000pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs6{font-size:149.120000pt;}
.fsc{font-size:160.000000pt;}
.fsd{font-size:160.128000pt;}
.fs4{font-size:170.880000pt;}
.fs2{font-size:171.008000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs9{font-size:320.000000pt;}
.fs7{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:9.824000pt;}
.ya6{bottom:12.256000pt;}
.y4{bottom:28.896000pt;}
.yab{bottom:29.024000pt;}
.y66{bottom:33.408000pt;}
.y10{bottom:37.920000pt;}
.ya5{bottom:41.056000pt;}
.yaa{bottom:48.224000pt;}
.y3{bottom:56.416000pt;}
.y65{bottom:62.208000pt;}
.y34{bottom:65.024000pt;}
.ya9{bottom:67.424000pt;}
.ya4{bottom:69.856000pt;}
.y91{bottom:72.256000pt;}
.y9f{bottom:74.880000pt;}
.y29{bottom:85.824000pt;}
.y4f{bottom:86.080000pt;}
.ya8{bottom:86.624000pt;}
.y1e{bottom:87.264000pt;}
.y64{bottom:91.008000pt;}
.ya3{bottom:98.656000pt;}
.y57{bottom:106.304000pt;}
.y77{bottom:106.464000pt;}
.y90{bottom:106.816000pt;}
.yf{bottom:108.128000pt;}
.ye{bottom:111.072000pt;}
.y33{bottom:111.616000pt;}
.y2{bottom:115.104000pt;}
.y82{bottom:115.872000pt;}
.y1d{bottom:125.664000pt;}
.y28{bottom:132.384000pt;}
.y56{bottom:132.544000pt;}
.y3c{bottom:138.533333pt;}
.y32{bottom:146.173333pt;}
.y9e{bottom:151.680000pt;}
.y76{bottom:152.893333pt;}
.y8f{bottom:153.373333pt;}
.y81{bottom:162.266667pt;}
.y4e{bottom:162.880000pt;}
.y1{bottom:166.306667pt;}
.y1c{bottom:172.093333pt;}
.y3b{bottom:176.933333pt;}
.y27{bottom:178.973333pt;}
.y8e{bottom:187.933333pt;}
.y9d{bottom:190.106667pt;}
.y75{bottom:199.293333pt;}
.y31{bottom:201.213333pt;}
.y4d{bottom:201.306667pt;}
.y80{bottom:208.666667pt;}
.y63{bottom:210.053333pt;}
.y1b{bottom:210.493333pt;}
.yd{bottom:213.186667pt;}
.yc{bottom:216.133333pt;}
.y6a{bottom:224.666667pt;}
.y26{bottom:225.533333pt;}
.y8d{bottom:234.533333pt;}
.y62{bottom:238.853333pt;}
.y74{bottom:245.693333pt;}
.y69{bottom:253.466667pt;}
.y30{bottom:254.213333pt;}
.y7f{bottom:255.106667pt;}
.y1a{bottom:256.893333pt;}
.y9c{bottom:266.906667pt;}
.y61{bottom:267.653333pt;}
.y55{bottom:268.186667pt;}
.y8c{bottom:269.093333pt;}
.y25{bottom:272.093333pt;}
.y3a{bottom:275.426667pt;}
.y4c{bottom:278.106667pt;}
.y68{bottom:282.266667pt;}
.y73{bottom:284.133333pt;}
.y12{bottom:285.306667pt;}
.y94{bottom:288.453333pt;}
.y7e{bottom:293.506667pt;}
.y54{bottom:294.426667pt;}
.y19{bottom:295.333333pt;}
.y60{bottom:296.480000pt;}
.ya2{bottom:297.120000pt;}
.y42{bottom:303.653333pt;}
.y9b{bottom:305.306667pt;}
.y2f{bottom:307.333333pt;}
.y67{bottom:311.106667pt;}
.y39{bottom:313.826667pt;}
.y8b{bottom:315.653333pt;}
.y4b{bottom:316.546667pt;}
.yb{bottom:318.213333pt;}
.y24{bottom:318.693333pt;}
.ya{bottom:321.146667pt;}
.y5f{bottom:325.280000pt;}
.y5a{bottom:329.986667pt;}
.y72{bottom:330.533333pt;}
.y93{bottom:331.653333pt;}
.y18{bottom:333.733333pt;}
.y41{bottom:338.240000pt;}
.y7d{bottom:339.906667pt;}
.y9a{bottom:343.746667pt;}
.y2e{bottom:348.480000pt;}
.y8a{bottom:350.240000pt;}
.y38{bottom:352.226667pt;}
.y5e{bottom:354.080000pt;}
.y4a{bottom:354.946667pt;}
.y45{bottom:356.093333pt;}
.y11{bottom:362.146667pt;}
.y23{bottom:365.253333pt;}
.y59{bottom:368.386667pt;}
.y87{bottom:370.106667pt;}
.y17{bottom:372.133333pt;}
.y40{bottom:372.800000pt;}
.y71{bottom:376.933333pt;}
.y99{bottom:382.146667pt;}
.y89{bottom:384.800000pt;}
.y7c{bottom:386.333333pt;}
.y2d{bottom:389.600000pt;}
.y37{bottom:390.653333pt;}
.y49{bottom:393.346667pt;}
.ya7{bottom:398.880000pt;}
.y22{bottom:411.813333pt;}
.y86{bottom:416.666667pt;}
.y16{bottom:418.560000pt;}
.y3f{bottom:419.360000pt;}
.ya1{bottom:419.613333pt;}
.y98{bottom:420.546667pt;}
.y70{bottom:423.360000pt;}
.y9{bottom:423.493333pt;}
.y8{bottom:426.426667pt;}
.y7b{bottom:432.733333pt;}
.y50{bottom:432.933333pt;}
.y2c{bottom:442.720000pt;}
.y21{bottom:458.400000pt;}
.y97{bottom:458.973333pt;}
.y85{bottom:463.266667pt;}
.y15{bottom:464.960000pt;}
.y3e{bottom:465.946667pt;}
.ya0{bottom:467.653333pt;}
.y6f{bottom:469.760000pt;}
.y48{bottom:470.173333pt;}
.y92{bottom:477.946667pt;}
.y7a{bottom:479.133333pt;}
.y36{bottom:488.386667pt;}
.y2b{bottom:495.706667pt;}
.y53{bottom:497.120000pt;}
.y88{bottom:500.506667pt;}
.y14{bottom:503.360000pt;}
.y20{bottom:504.960000pt;}
.y47{bottom:508.573333pt;}
.y84{bottom:509.826667pt;}
.y3d{bottom:512.506667pt;}
.y6e{bottom:516.160000pt;}
.y5d{bottom:517.026667pt;}
.y52{bottom:523.520000pt;}
.y79{bottom:525.573333pt;}
.y35{bottom:526.786667pt;}
.y7{bottom:528.773333pt;}
.y6c{bottom:531.493333pt;}
.y6{bottom:531.706667pt;}
.y96{bottom:535.773333pt;}
.y58{bottom:543.200000pt;}
.y5c{bottom:545.826667pt;}
.y46{bottom:546.973333pt;}
.y2a{bottom:547.066667pt;}
.y51{bottom:549.760000pt;}
.y13{bottom:549.786667pt;}
.y1f{bottom:551.520000pt;}
.y83{bottom:556.386667pt;}
.y6b{bottom:560.293333pt;}
.y6d{bottom:562.586667pt;}
.y78{bottom:563.973333pt;}
.y95{bottom:574.213333pt;}
.y5b{bottom:574.626667pt;}
.y44{bottom:617.120000pt;}
.y5{bottom:637.600000pt;}
.y43{bottom:658.080000pt;}
.h4{height:56.017500pt;}
.h13{height:63.656250pt;}
.hf{height:95.484375pt;}
.h10{height:95.611688pt;}
.he{height:98.296875pt;}
.h6{height:127.312500pt;}
.ha{height:127.439813pt;}
.hb{height:131.062500pt;}
.h9{height:131.193562pt;}
.h7{height:148.319063pt;}
.h11{height:159.140625pt;}
.h12{height:159.267938pt;}
.h3{height:162.825000pt;}
.h5{height:174.968437pt;}
.hc{height:175.099500pt;}
.h1{height:218.219062pt;}
.h2{height:218.350125pt;}
.hd{height:327.656250pt;}
.h8{height:327.787312pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:37.279981pt;}
.x7{left:38.271981pt;}
.x36{left:46.591981pt;}
.x43{left:51.583981pt;}
.x1{left:52.895981pt;}
.x4{left:55.903981pt;}
.x5{left:61.439981pt;}
.xb{left:67.615981pt;}
.x2f{left:106.207981pt;}
.x2e{left:107.807981pt;}
.x3{left:112.607981pt;}
.x2c{left:117.887981pt;}
.x2d{left:126.527981pt;}
.x30{left:148.613314pt;}
.x31{left:169.093314pt;}
.xa{left:271.453314pt;}
.x32{left:285.413314pt;}
.x33{left:315.493314pt;}
.x1c{left:347.973314pt;}
.x1d{left:351.333314pt;}
.x3d{left:388.093314pt;}
.x37{left:392.893314pt;}
.x39{left:395.293314pt;}
.x3b{left:404.893314pt;}
.x3a{left:408.413314pt;}
.x3f{left:410.973314pt;}
.x3c{left:412.093314pt;}
.x1e{left:416.773314pt;}
.x42{left:426.053314pt;}
.x44{left:446.053314pt;}
.x1f{left:526.719981pt;}
.x12{left:528.866648pt;}
.x38{left:532.893314pt;}
.x10{left:535.106648pt;}
.x20{left:555.679981pt;}
.x1b{left:573.506648pt;}
.x6{left:576.546648pt;}
.x1a{left:577.506648pt;}
.xf{left:583.266648pt;}
.xd{left:601.826648pt;}
.xc{left:634.946648pt;}
.x40{left:648.453314pt;}
.x8{left:666.879981pt;}
.x13{left:669.373314pt;}
.x41{left:682.533314pt;}
.x9{left:685.786648pt;}
.x45{left:712.453314pt;}
.x17{left:713.786648pt;}
.x46{left:716.133314pt;}
.x11{left:717.373314pt;}
.x16{left:722.106648pt;}
.xe{left:729.213314pt;}
.x15{left:740.826648pt;}
.x18{left:750.653314pt;}
.x14{left:752.093314pt;}
.x3e{left:756.453314pt;}
.x29{left:768.479981pt;}
.x2b{left:775.839981pt;}
.x34{left:782.719981pt;}
.x2a{left:789.599981pt;}
.x19{left:796.453314pt;}
.x35{left:818.746648pt;}
.x23{left:875.679981pt;}
.x22{left:876.959981pt;}
.x21{left:898.719981pt;}
.x27{left:946.853314pt;}
.x26{left:959.013314pt;}
.x24{left:964.773314pt;}
.x25{left:994.373314pt;}
.x28{left:1052.959981pt;}
}




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