
    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_496a475e2ebc87ef88c798fa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7314448e599b6c37032a1297.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_d46b3285d8cf3abf22e64cf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_13420dcd70240a25daccbfbb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_12b5dc1a19fda030154e06f6.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.024000px;}
.ls6{letter-spacing:-0.018000px;}
.ls7{letter-spacing:-0.012000px;}
.ls8{letter-spacing:-0.006000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.198000px;}
.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:-13.524000px;}
.ws3{word-spacing:-13.518000px;}
.ws5{word-spacing:-13.512000px;}
.ws0{word-spacing:-13.506000px;}
.ws9{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.494000px;}
.ws2{word-spacing:-13.488000px;}
.ws7{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.476000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-5.520000px;}
._4{margin-left:-2.670000px;}
._2{margin-left:-1.320000px;}
._1{width:1.200000px;}
._3{width:3.150000px;}
._5{width:14.820000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:3.000000px;}
.y120{bottom:3.375000px;}
.y48{bottom:11.610000px;}
.y7{bottom:11.625000px;}
.y1f{bottom:11.640000px;}
.y10{bottom:11.655000px;}
.yb4{bottom:11.662500px;}
.y78{bottom:11.670000px;}
.ya{bottom:11.985000px;}
.y12{bottom:12.000000px;}
.y57{bottom:12.015000px;}
.ya8{bottom:12.030000px;}
.y8b{bottom:12.037500px;}
.ya5{bottom:12.045000px;}
.y100{bottom:12.375000px;}
.y119{bottom:18.000000px;}
.y11a{bottom:18.375000px;}
.y11f{bottom:18.750000px;}
.y12a{bottom:18.787500px;}
.yc{bottom:27.000000px;}
.yde{bottom:27.015000px;}
.y72{bottom:27.030000px;}
.y39{bottom:27.045000px;}
.y46{bottom:27.360000px;}
.y8{bottom:27.375000px;}
.y21{bottom:27.390000px;}
.ye{bottom:27.405000px;}
.y25{bottom:27.412500px;}
.y3a{bottom:27.420000px;}
.y47{bottom:27.735000px;}
.y6{bottom:27.750000px;}
.y1e{bottom:27.765000px;}
.yf{bottom:27.780000px;}
.y26{bottom:27.787500px;}
.y1a{bottom:27.795000px;}
.y123{bottom:33.787500px;}
.y121{bottom:34.162500px;}
.y11e{bottom:34.537500px;}
.yf1{bottom:42.735000px;}
.y4{bottom:42.750000px;}
.y3c{bottom:42.765000px;}
.y31{bottom:42.780000px;}
.y41{bottom:42.787500px;}
.y18{bottom:42.795000px;}
.y60{bottom:43.110000px;}
.y5{bottom:43.125000px;}
.y3d{bottom:43.140000px;}
.y32{bottom:43.155000px;}
.y42{bottom:43.162500px;}
.y19{bottom:43.170000px;}
.yac{bottom:43.485000px;}
.y2a{bottom:43.500000px;}
.y8e{bottom:43.530000px;}
.y6c{bottom:43.537500px;}
.y53{bottom:43.545000px;}
.y11c{bottom:49.537500px;}
.y11d{bottom:49.912500px;}
.y5e{bottom:58.110000px;}
.y82{bottom:58.125000px;}
.y64{bottom:58.155000px;}
.yc0{bottom:58.162500px;}
.y16{bottom:58.170000px;}
.y5f{bottom:58.485000px;}
.y36{bottom:58.500000px;}
.ye5{bottom:58.515000px;}
.y28{bottom:58.530000px;}
.yc1{bottom:58.537500px;}
.y17{bottom:58.545000px;}
.yf0{bottom:58.860000px;}
.y37{bottom:58.875000px;}
.y29{bottom:58.905000px;}
.yeb{bottom:58.912500px;}
.yb8{bottom:58.920000px;}
.y128{bottom:64.912500px;}
.y129{bottom:65.287500px;}
.yc9{bottom:73.545000px;}
.y5c{bottom:73.860000px;}
.ya1{bottom:73.875000px;}
.y62{bottom:73.905000px;}
.yed{bottom:73.912500px;}
.y67{bottom:73.920000px;}
.y5d{bottom:74.235000px;}
.y50{bottom:74.250000px;}
.y63{bottom:74.280000px;}
.yea{bottom:74.287500px;}
.y68{bottom:74.295000px;}
.y127{bottom:80.662500px;}
.y4e{bottom:89.280000px;}
.yec{bottom:89.287500px;}
.yc6{bottom:89.295000px;}
.yfb{bottom:89.625000px;}
.y4f{bottom:89.655000px;}
.ye9{bottom:89.662500px;}
.yc7{bottom:89.670000px;}
.yfa{bottom:90.000000px;}
.y8d{bottom:90.030000px;}
.ycd{bottom:90.045000px;}
.y125{bottom:96.037500px;}
.y126{bottom:96.412500px;}
.y51{bottom:104.655000px;}
.ye3{bottom:104.670000px;}
.y4d{bottom:105.030000px;}
.ye7{bottom:105.037500px;}
.ye4{bottom:105.045000px;}
.ya0{bottom:105.405000px;}
.ye8{bottom:105.412500px;}
.yf5{bottom:109.162500px;}
.ydb{bottom:111.787500px;}
.y40{bottom:115.912500px;}
.y24{bottom:116.287500px;}
.y6b{bottom:118.162500px;}
.y4b{bottom:120.405000px;}
.y4c{bottom:120.780000px;}
.ye6{bottom:120.787500px;}
.yd4{bottom:122.287500px;}
.ybc{bottom:124.912500px;}
.yaa{bottom:127.162500px;}
.y8a{bottom:131.287500px;}
.yb3{bottom:133.912500px;}
.yff{bottom:136.200000px;}
.y9a{bottom:140.325000px;}
.y59{bottom:142.950000px;}
.y7f{bottom:144.450000px;}
.yd3{bottom:147.075000px;}
.ybb{bottom:149.325000px;}
.y10f{bottom:156.075000px;}
.y23{bottom:156.450000px;}
.ycf{bottom:158.325000px;}
.y10d{bottom:162.450000px;}
.yda{bottom:167.325000px;}
.y3f{bottom:171.450000px;}
.y6a{bottom:174.075000px;}
.y118{bottom:177.825000px;}
.y99{bottom:180.450000px;}
.y22{bottom:181.200000px;}
.ya9{bottom:183.075000px;}
.yd2{bottom:186.825000px;}
.yb2{bottom:189.450000px;}
.yd9{bottom:192.075000px;}
.ybf{bottom:195.825000px;}
.y58{bottom:198.450000px;}
.y7e{bottom:199.950000px;}
.yba{bottom:204.825000px;}
.y3e{bottom:211.575000px;}
.y69{bottom:213.825000px;}
.y10c{bottom:217.950000px;}
.yf4{bottom:220.575000px;}
.ya7{bottom:222.825000px;}
.y7d{bottom:224.700000px;}
.y106{bottom:226.950000px;}
.yb9{bottom:229.605000px;}
.y117{bottom:233.730000px;}
.y98{bottom:235.980000px;}
.ye2{bottom:238.605000px;}
.yc4{bottom:242.730000px;}
.yb1{bottom:244.980000px;}
.yfe{bottom:247.605000px;}
.y3b{bottom:251.730000px;}
.y20{bottom:252.105000px;}
.y56{bottom:253.980000px;}
.y10b{bottom:258.105000px;}
.ya6{bottom:262.980000px;}
.y7c{bottom:264.480000px;}
.yc3{bottom:267.105000px;}
.ydd{bottom:269.730000px;}
.y116{bottom:273.480000px;}
.y97{bottom:276.105000px;}
.yc8{bottom:278.730000px;}
.y89{bottom:282.480000px;}
.yb0{bottom:285.105000px;}
.yd1{bottom:291.480000px;}
.y1d{bottom:292.230000px;}
.y55{bottom:294.105000px;}
.y10a{bottom:298.230000px;}
.yce{bottom:300.480000px;}
.yf8{bottom:303.105000px;}
.y7b{bottom:304.605000px;}
.y38{bottom:307.230000px;}
.yb7{bottom:309.480000px;}
.y115{bottom:313.605000px;}
.y96{bottom:316.230000px;}
.ya4{bottom:318.480000px;}
.y109{bottom:322.650000px;}
.yaf{bottom:325.275000px;}
.y105{bottom:331.650000px;}
.y1c{bottom:332.400000px;}
.y54{bottom:334.275000px;}
.y88{bottom:338.025000px;}
.ybe{bottom:340.650000px;}
.ya3{bottom:343.275000px;}
.y7a{bottom:344.775000px;}
.y35{bottom:347.025000px;}
.yd8{bottom:349.650000px;}
.y114{bottom:353.775000px;}
.y95{bottom:356.025000px;}
.y1b{bottom:356.775000px;}
.yc2{bottom:362.775000px;}
.y12b{bottom:365.025000px;}
.y79{bottom:369.150000px;}
.ydf{bottom:371.775000px;}
.y52{bottom:374.025000px;}
.y87{bottom:378.150000px;}
.y66{bottom:380.775000px;}
.ya2{bottom:383.025000px;}
.y10e{bottom:387.150000px;}
.yd7{bottom:389.775000px;}
.y94{bottom:396.150000px;}
.y15{bottom:396.900000px;}
.yf3{bottom:398.775000px;}
.y86{bottom:402.900000px;}
.y103{bottom:405.150000px;}
.y77{bottom:409.275000px;}
.ye1{bottom:411.900000px;}
.y34{bottom:418.320000px;}
.y65{bottom:420.945000px;}
.y9f{bottom:423.195000px;}
.ybd{bottom:427.320000px;}
.y4a{bottom:429.945000px;}
.y113{bottom:433.695000px;}
.y93{bottom:436.320000px;}
.y85{bottom:442.695000px;}
.y122{bottom:445.320000px;}
.yb6{bottom:451.695000px;}
.y33{bottom:458.445000px;}
.yae{bottom:460.695000px;}
.y76{bottom:464.820000px;}
.y84{bottom:467.445000px;}
.y14{bottom:467.820000px;}
.yf2{bottom:469.695000px;}
.y112{bottom:473.820000px;}
.y61{bottom:476.445000px;}
.y12c{bottom:479.070000px;}
.y30{bottom:482.820000px;}
.yf7{bottom:485.445000px;}
.y75{bottom:489.570000px;}
.y92{bottom:491.820000px;}
.ye0{bottom:498.570000px;}
.y124{bottom:500.820000px;}
.ydc{bottom:507.600000px;}
.y13{bottom:507.975000px;}
.y74{bottom:513.975000px;}
.y91{bottom:516.600000px;}
.y83{bottom:522.975000px;}
.yf6{bottom:525.600000px;}
.yd0{bottom:531.975000px;}
.y2f{bottom:538.350000px;}
.y9e{bottom:540.975000px;}
.y111{bottom:545.100000px;}
.yb5{bottom:547.350000px;}
.y73{bottom:554.100000px;}
.y102{bottom:556.350000px;}
.y49{bottom:563.100000px;}
.y11{bottom:563.475000px;}
.yfd{bottom:565.350000px;}
.ycc{bottom:569.475000px;}
.y90{bottom:572.100000px;}
.y2e{bottom:578.475000px;}
.y104{bottom:581.100000px;}
.yad{bottom:587.475000px;}
.yd{bottom:588.225000px;}
.y71{bottom:594.225000px;}
.y81{bottom:603.255000px;}
.y5b{bottom:603.270000px;}
.yfc{bottom:605.520000px;}
.ycb{bottom:609.630000px;}
.y9d{bottom:612.255000px;}
.y101{bottom:612.270000px;}
.y2d{bottom:618.630000px;}
.y110{bottom:625.005000px;}
.y8f{bottom:627.630000px;}
.yef{bottom:627.645000px;}
.yb{bottom:628.380000px;}
.y108{bottom:634.020000px;}
.yd6{bottom:643.005000px;}
.yab{bottom:643.020000px;}
.yca{bottom:649.755000px;}
.yc5{bottom:649.770000px;}
.y8c{bottom:652.020000px;}
.yee{bottom:658.755000px;}
.y45{bottom:658.770000px;}
.y70{bottom:665.145000px;}
.y9c{bottom:667.770000px;}
.y9{bottom:668.145000px;}
.y2c{bottom:674.145000px;}
.yd5{bottom:683.145000px;}
.y5a{bottom:689.925000px;}
.yf9{bottom:692.175000px;}
.y3{bottom:693.675000px;}
.y44{bottom:698.925000px;}
.y6f{bottom:705.300000px;}
.y2b{bottom:714.300000px;}
.y9b{bottom:723.300000px;}
.y80{bottom:729.675000px;}
.y27{bottom:738.675000px;}
.y6e{bottom:745.425000px;}
.y43{bottom:754.425000px;}
.y6d{bottom:769.800000px;}
.y2{bottom:770.175000px;}
.y107{bottom:785.580000px;}
.y1{bottom:796.080000px;}
.hb{height:24.375000px;}
.h14{height:24.412500px;}
.h8{height:24.750000px;}
.h4{height:24.772500px;}
.h18{height:24.787500px;}
.h22{height:30.750000px;}
.h3{height:38.100586px;}
.h6{height:39.750000px;}
.he{height:39.787500px;}
.ha{height:40.125000px;}
.h13{height:40.147500px;}
.h7{height:40.162500px;}
.h24{height:46.537500px;}
.h5{height:48.410156px;}
.h1{height:53.789062px;}
.h2{height:55.500000px;}
.h15{height:55.522500px;}
.hd{height:55.537500px;}
.h1b{height:55.875000px;}
.h1a{height:55.897500px;}
.h10{height:55.912500px;}
.h23{height:62.287500px;}
.h16{height:70.875000px;}
.h26{height:70.897500px;}
.h9{height:70.912500px;}
.h21{height:71.250000px;}
.h20{height:71.272500px;}
.hc{height:71.287500px;}
.h11{height:86.647500px;}
.h12{height:86.662500px;}
.h1c{height:102.037500px;}
.h17{height:102.397500px;}
.h1d{height:102.412500px;}
.h25{height:108.825000px;}
.h1e{height:117.412500px;}
.h19{height:117.787500px;}
.h1f{height:117.825000px;}
.hf{height:133.162500px;}
.h0{height:918.000000px;}
.w6{width:61.875000px;}
.w7{width:75.787500px;}
.wa{width:78.037500px;}
.w9{width:78.375000px;}
.wb{width:91.162500px;}
.w5{width:95.287500px;}
.w4{width:97.537500px;}
.w8{width:97.912500px;}
.w2{width:137.287500px;}
.w3{width:260.700000px;}
.w1{width:1187.999982px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.x1{left:65.662482px;}
.x3{left:202.950000px;}
.x4{left:463.650000px;}
.x5{left:561.195000px;}
.x6{left:656.475000px;}
.x7{left:718.350000px;}
.x8{left:794.130000px;}
.x9{left:892.050000px;}
.xa{left:970.425000px;}
.xb{left:1048.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.176000pt;}
.ws4{word-spacing:-12.021333pt;}
.ws3{word-spacing:-12.016000pt;}
.ws5{word-spacing:-12.010667pt;}
.ws0{word-spacing:-12.005333pt;}
.ws9{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.994667pt;}
.ws2{word-spacing:-11.989333pt;}
.ws7{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.978667pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-4.906667pt;}
._4{margin-left:-2.373333pt;}
._2{margin-left:-1.173333pt;}
._1{width:1.066667pt;}
._3{width:2.800000pt;}
._5{width:13.173333pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:2.666667pt;}
.y120{bottom:3.000000pt;}
.y48{bottom:10.320000pt;}
.y7{bottom:10.333333pt;}
.y1f{bottom:10.346667pt;}
.y10{bottom:10.360000pt;}
.yb4{bottom:10.366667pt;}
.y78{bottom:10.373333pt;}
.ya{bottom:10.653333pt;}
.y12{bottom:10.666667pt;}
.y57{bottom:10.680000pt;}
.ya8{bottom:10.693333pt;}
.y8b{bottom:10.700000pt;}
.ya5{bottom:10.706667pt;}
.y100{bottom:11.000000pt;}
.y119{bottom:16.000000pt;}
.y11a{bottom:16.333333pt;}
.y11f{bottom:16.666667pt;}
.y12a{bottom:16.700000pt;}
.yc{bottom:24.000000pt;}
.yde{bottom:24.013333pt;}
.y72{bottom:24.026667pt;}
.y39{bottom:24.040000pt;}
.y46{bottom:24.320000pt;}
.y8{bottom:24.333333pt;}
.y21{bottom:24.346667pt;}
.ye{bottom:24.360000pt;}
.y25{bottom:24.366667pt;}
.y3a{bottom:24.373333pt;}
.y47{bottom:24.653333pt;}
.y6{bottom:24.666667pt;}
.y1e{bottom:24.680000pt;}
.yf{bottom:24.693333pt;}
.y26{bottom:24.700000pt;}
.y1a{bottom:24.706667pt;}
.y123{bottom:30.033333pt;}
.y121{bottom:30.366667pt;}
.y11e{bottom:30.700000pt;}
.yf1{bottom:37.986667pt;}
.y4{bottom:38.000000pt;}
.y3c{bottom:38.013333pt;}
.y31{bottom:38.026667pt;}
.y41{bottom:38.033333pt;}
.y18{bottom:38.040000pt;}
.y60{bottom:38.320000pt;}
.y5{bottom:38.333333pt;}
.y3d{bottom:38.346667pt;}
.y32{bottom:38.360000pt;}
.y42{bottom:38.366667pt;}
.y19{bottom:38.373333pt;}
.yac{bottom:38.653333pt;}
.y2a{bottom:38.666667pt;}
.y8e{bottom:38.693333pt;}
.y6c{bottom:38.700000pt;}
.y53{bottom:38.706667pt;}
.y11c{bottom:44.033333pt;}
.y11d{bottom:44.366667pt;}
.y5e{bottom:51.653333pt;}
.y82{bottom:51.666667pt;}
.y64{bottom:51.693333pt;}
.yc0{bottom:51.700000pt;}
.y16{bottom:51.706667pt;}
.y5f{bottom:51.986667pt;}
.y36{bottom:52.000000pt;}
.ye5{bottom:52.013333pt;}
.y28{bottom:52.026667pt;}
.yc1{bottom:52.033333pt;}
.y17{bottom:52.040000pt;}
.yf0{bottom:52.320000pt;}
.y37{bottom:52.333333pt;}
.y29{bottom:52.360000pt;}
.yeb{bottom:52.366667pt;}
.yb8{bottom:52.373333pt;}
.y128{bottom:57.700000pt;}
.y129{bottom:58.033333pt;}
.yc9{bottom:65.373333pt;}
.y5c{bottom:65.653333pt;}
.ya1{bottom:65.666667pt;}
.y62{bottom:65.693333pt;}
.yed{bottom:65.700000pt;}
.y67{bottom:65.706667pt;}
.y5d{bottom:65.986667pt;}
.y50{bottom:66.000000pt;}
.y63{bottom:66.026667pt;}
.yea{bottom:66.033333pt;}
.y68{bottom:66.040000pt;}
.y127{bottom:71.700000pt;}
.y4e{bottom:79.360000pt;}
.yec{bottom:79.366667pt;}
.yc6{bottom:79.373333pt;}
.yfb{bottom:79.666667pt;}
.y4f{bottom:79.693333pt;}
.ye9{bottom:79.700000pt;}
.yc7{bottom:79.706667pt;}
.yfa{bottom:80.000000pt;}
.y8d{bottom:80.026667pt;}
.ycd{bottom:80.040000pt;}
.y125{bottom:85.366667pt;}
.y126{bottom:85.700000pt;}
.y51{bottom:93.026667pt;}
.ye3{bottom:93.040000pt;}
.y4d{bottom:93.360000pt;}
.ye7{bottom:93.366667pt;}
.ye4{bottom:93.373333pt;}
.ya0{bottom:93.693333pt;}
.ye8{bottom:93.700000pt;}
.yf5{bottom:97.033333pt;}
.ydb{bottom:99.366667pt;}
.y40{bottom:103.033333pt;}
.y24{bottom:103.366667pt;}
.y6b{bottom:105.033333pt;}
.y4b{bottom:107.026667pt;}
.y4c{bottom:107.360000pt;}
.ye6{bottom:107.366667pt;}
.yd4{bottom:108.700000pt;}
.ybc{bottom:111.033333pt;}
.yaa{bottom:113.033333pt;}
.y8a{bottom:116.700000pt;}
.yb3{bottom:119.033333pt;}
.yff{bottom:121.066667pt;}
.y9a{bottom:124.733333pt;}
.y59{bottom:127.066667pt;}
.y7f{bottom:128.400000pt;}
.yd3{bottom:130.733333pt;}
.ybb{bottom:132.733333pt;}
.y10f{bottom:138.733333pt;}
.y23{bottom:139.066667pt;}
.ycf{bottom:140.733333pt;}
.y10d{bottom:144.400000pt;}
.yda{bottom:148.733333pt;}
.y3f{bottom:152.400000pt;}
.y6a{bottom:154.733333pt;}
.y118{bottom:158.066667pt;}
.y99{bottom:160.400000pt;}
.y22{bottom:161.066667pt;}
.ya9{bottom:162.733333pt;}
.yd2{bottom:166.066667pt;}
.yb2{bottom:168.400000pt;}
.yd9{bottom:170.733333pt;}
.ybf{bottom:174.066667pt;}
.y58{bottom:176.400000pt;}
.y7e{bottom:177.733333pt;}
.yba{bottom:182.066667pt;}
.y3e{bottom:188.066667pt;}
.y69{bottom:190.066667pt;}
.y10c{bottom:193.733333pt;}
.yf4{bottom:196.066667pt;}
.ya7{bottom:198.066667pt;}
.y7d{bottom:199.733333pt;}
.y106{bottom:201.733333pt;}
.yb9{bottom:204.093333pt;}
.y117{bottom:207.760000pt;}
.y98{bottom:209.760000pt;}
.ye2{bottom:212.093333pt;}
.yc4{bottom:215.760000pt;}
.yb1{bottom:217.760000pt;}
.yfe{bottom:220.093333pt;}
.y3b{bottom:223.760000pt;}
.y20{bottom:224.093333pt;}
.y56{bottom:225.760000pt;}
.y10b{bottom:229.426667pt;}
.ya6{bottom:233.760000pt;}
.y7c{bottom:235.093333pt;}
.yc3{bottom:237.426667pt;}
.ydd{bottom:239.760000pt;}
.y116{bottom:243.093333pt;}
.y97{bottom:245.426667pt;}
.yc8{bottom:247.760000pt;}
.y89{bottom:251.093333pt;}
.yb0{bottom:253.426667pt;}
.yd1{bottom:259.093333pt;}
.y1d{bottom:259.760000pt;}
.y55{bottom:261.426667pt;}
.y10a{bottom:265.093333pt;}
.yce{bottom:267.093333pt;}
.yf8{bottom:269.426667pt;}
.y7b{bottom:270.760000pt;}
.y38{bottom:273.093333pt;}
.yb7{bottom:275.093333pt;}
.y115{bottom:278.760000pt;}
.y96{bottom:281.093333pt;}
.ya4{bottom:283.093333pt;}
.y109{bottom:286.800000pt;}
.yaf{bottom:289.133333pt;}
.y105{bottom:294.800000pt;}
.y1c{bottom:295.466667pt;}
.y54{bottom:297.133333pt;}
.y88{bottom:300.466667pt;}
.ybe{bottom:302.800000pt;}
.ya3{bottom:305.133333pt;}
.y7a{bottom:306.466667pt;}
.y35{bottom:308.466667pt;}
.yd8{bottom:310.800000pt;}
.y114{bottom:314.466667pt;}
.y95{bottom:316.466667pt;}
.y1b{bottom:317.133333pt;}
.yc2{bottom:322.466667pt;}
.y12b{bottom:324.466667pt;}
.y79{bottom:328.133333pt;}
.ydf{bottom:330.466667pt;}
.y52{bottom:332.466667pt;}
.y87{bottom:336.133333pt;}
.y66{bottom:338.466667pt;}
.ya2{bottom:340.466667pt;}
.y10e{bottom:344.133333pt;}
.yd7{bottom:346.466667pt;}
.y94{bottom:352.133333pt;}
.y15{bottom:352.800000pt;}
.yf3{bottom:354.466667pt;}
.y86{bottom:358.133333pt;}
.y103{bottom:360.133333pt;}
.y77{bottom:363.800000pt;}
.ye1{bottom:366.133333pt;}
.y34{bottom:371.840000pt;}
.y65{bottom:374.173333pt;}
.y9f{bottom:376.173333pt;}
.ybd{bottom:379.840000pt;}
.y4a{bottom:382.173333pt;}
.y113{bottom:385.506667pt;}
.y93{bottom:387.840000pt;}
.y85{bottom:393.506667pt;}
.y122{bottom:395.840000pt;}
.yb6{bottom:401.506667pt;}
.y33{bottom:407.506667pt;}
.yae{bottom:409.506667pt;}
.y76{bottom:413.173333pt;}
.y84{bottom:415.506667pt;}
.y14{bottom:415.840000pt;}
.yf2{bottom:417.506667pt;}
.y112{bottom:421.173333pt;}
.y61{bottom:423.506667pt;}
.y12c{bottom:425.840000pt;}
.y30{bottom:429.173333pt;}
.yf7{bottom:431.506667pt;}
.y75{bottom:435.173333pt;}
.y92{bottom:437.173333pt;}
.ye0{bottom:443.173333pt;}
.y124{bottom:445.173333pt;}
.ydc{bottom:451.200000pt;}
.y13{bottom:451.533333pt;}
.y74{bottom:456.866667pt;}
.y91{bottom:459.200000pt;}
.y83{bottom:464.866667pt;}
.yf6{bottom:467.200000pt;}
.yd0{bottom:472.866667pt;}
.y2f{bottom:478.533333pt;}
.y9e{bottom:480.866667pt;}
.y111{bottom:484.533333pt;}
.yb5{bottom:486.533333pt;}
.y73{bottom:492.533333pt;}
.y102{bottom:494.533333pt;}
.y49{bottom:500.533333pt;}
.y11{bottom:500.866667pt;}
.yfd{bottom:502.533333pt;}
.ycc{bottom:506.200000pt;}
.y90{bottom:508.533333pt;}
.y2e{bottom:514.200000pt;}
.y104{bottom:516.533333pt;}
.yad{bottom:522.200000pt;}
.yd{bottom:522.866667pt;}
.y71{bottom:528.200000pt;}
.y81{bottom:536.226667pt;}
.y5b{bottom:536.240000pt;}
.yfc{bottom:538.240000pt;}
.ycb{bottom:541.893333pt;}
.y9d{bottom:544.226667pt;}
.y101{bottom:544.240000pt;}
.y2d{bottom:549.893333pt;}
.y110{bottom:555.560000pt;}
.y8f{bottom:557.893333pt;}
.yef{bottom:557.906667pt;}
.yb{bottom:558.560000pt;}
.y108{bottom:563.573333pt;}
.yd6{bottom:571.560000pt;}
.yab{bottom:571.573333pt;}
.yca{bottom:577.560000pt;}
.yc5{bottom:577.573333pt;}
.y8c{bottom:579.573333pt;}
.yee{bottom:585.560000pt;}
.y45{bottom:585.573333pt;}
.y70{bottom:591.240000pt;}
.y9c{bottom:593.573333pt;}
.y9{bottom:593.906667pt;}
.y2c{bottom:599.240000pt;}
.yd5{bottom:607.240000pt;}
.y5a{bottom:613.266667pt;}
.yf9{bottom:615.266667pt;}
.y3{bottom:616.600000pt;}
.y44{bottom:621.266667pt;}
.y6f{bottom:626.933333pt;}
.y2b{bottom:634.933333pt;}
.y9b{bottom:642.933333pt;}
.y80{bottom:648.600000pt;}
.y27{bottom:656.600000pt;}
.y6e{bottom:662.600000pt;}
.y43{bottom:670.600000pt;}
.y6d{bottom:684.266667pt;}
.y2{bottom:684.600000pt;}
.y107{bottom:698.293333pt;}
.y1{bottom:707.626667pt;}
.hb{height:21.666667pt;}
.h14{height:21.700000pt;}
.h8{height:22.000000pt;}
.h4{height:22.020000pt;}
.h18{height:22.033333pt;}
.h22{height:27.333333pt;}
.h3{height:33.867188pt;}
.h6{height:35.333333pt;}
.he{height:35.366667pt;}
.ha{height:35.666667pt;}
.h13{height:35.686667pt;}
.h7{height:35.700000pt;}
.h24{height:41.366667pt;}
.h5{height:43.031250pt;}
.h1{height:47.812500pt;}
.h2{height:49.333333pt;}
.h15{height:49.353333pt;}
.hd{height:49.366667pt;}
.h1b{height:49.666667pt;}
.h1a{height:49.686667pt;}
.h10{height:49.700000pt;}
.h23{height:55.366667pt;}
.h16{height:63.000000pt;}
.h26{height:63.020000pt;}
.h9{height:63.033333pt;}
.h21{height:63.333333pt;}
.h20{height:63.353333pt;}
.hc{height:63.366667pt;}
.h11{height:77.020000pt;}
.h12{height:77.033333pt;}
.h1c{height:90.700000pt;}
.h17{height:91.020000pt;}
.h1d{height:91.033333pt;}
.h25{height:96.733333pt;}
.h1e{height:104.366667pt;}
.h19{height:104.700000pt;}
.h1f{height:104.733333pt;}
.hf{height:118.366667pt;}
.h0{height:816.000000pt;}
.w6{width:55.000000pt;}
.w7{width:67.366667pt;}
.wa{width:69.366667pt;}
.w9{width:69.666667pt;}
.wb{width:81.033333pt;}
.w5{width:84.700000pt;}
.w4{width:86.700000pt;}
.w8{width:87.033333pt;}
.w2{width:122.033333pt;}
.w3{width:231.733333pt;}
.w1{width:1055.999984pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.x1{left:58.366651pt;}
.x3{left:180.400000pt;}
.x4{left:412.133333pt;}
.x5{left:498.840000pt;}
.x6{left:583.533333pt;}
.x7{left:638.533333pt;}
.x8{left:705.893333pt;}
.x9{left:792.933333pt;}
.xa{left:862.600000pt;}
.xb{left:931.973333pt;}
}




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