
    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_6197b51b9f55de063467c845.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_5fa92fb32e5977a6c1876f06.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_69ab60e1b68feed0468c8ab4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_f9c8072d843a2512932ae121.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5bf9b946a4b535e1adf7be37.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fee2685fd828c8f3928c86c3.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_cf5b54b838ee9f69dcdff9c4.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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.378000px;}
.lsf{letter-spacing:18.144000px;}
.lsc{letter-spacing:30.240000px;}
.lsd{letter-spacing:33.984000px;}
.lse{letter-spacing:54.144000px;}
.lsb{letter-spacing:54.840000px;}
.ls0{letter-spacing:57.029760px;}
.ls1{letter-spacing:201.209760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws7{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.204000px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-1.158000px;}
._0{width:1.340640px;}
._2{width:2.538000px;}
._e{width:4.320000px;}
._f{width:5.571360px;}
._18{width:6.630000px;}
._13{width:7.632000px;}
._17{width:8.667360px;}
._1e{width:10.052640px;}
._10{width:11.064000px;}
._4{width:12.528000px;}
._5{width:13.896000px;}
._6{width:15.120000px;}
._a{width:16.563360px;}
._1c{width:19.422000px;}
._1f{width:20.682000px;}
._b{width:22.542000px;}
._19{width:24.336000px;}
._7{width:25.416000px;}
._8{width:26.988720px;}
._9{width:28.883280px;}
._1d{width:30.096000px;}
._14{width:31.752000px;}
._c{width:33.312000px;}
._d{width:34.419360px;}
._21{width:35.718000px;}
._11{width:37.008000px;}
._12{width:38.088000px;}
._16{width:40.029360px;}
._15{width:41.412000px;}
._20{width:43.134000px;}
._25{width:44.430000px;}
._1a{width:45.504000px;}
._1b{width:46.512000px;}
._28{width:50.256000px;}
._24{width:54.000000px;}
._26{width:62.496000px;}
._27{width:63.720000px;}
._3{width:66.276000px;}
._22{width:79.848000px;}
._23{width:81.504000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y8{bottom:11.160000px;}
.y7{bottom:30.810000px;}
.y4{bottom:37.650000px;}
.yd{bottom:47.700000px;}
.y6{bottom:50.610000px;}
.y3{bottom:61.950000px;}
.yc{bottom:64.260000px;}
.y5{bottom:70.410000px;}
.yb{bottom:79.740000px;}
.ya{bottom:95.256000px;}
.y110{bottom:121.536000px;}
.ye7{bottom:122.436000px;}
.yab{bottom:124.416000px;}
.y36{bottom:128.016000px;}
.y78{bottom:129.456000px;}
.y8b{bottom:131.256000px;}
.yc7{bottom:138.276000px;}
.y10f{bottom:142.236000px;}
.ye6{bottom:144.936000px;}
.yaa{bottom:146.736000px;}
.y35{bottom:150.330000px;}
.y77{bottom:151.950000px;}
.y5c{bottom:153.570000px;}
.yc6{bottom:160.590000px;}
.y10e{bottom:162.930000px;}
.ye5{bottom:167.250000px;}
.ya9{bottom:169.050000px;}
.y34{bottom:172.650000px;}
.y76{bottom:174.270000px;}
.y5b{bottom:175.890000px;}
.yc5{bottom:182.910000px;}
.y10d{bottom:183.630000px;}
.ye4{bottom:189.570000px;}
.y75{bottom:196.590000px;}
.y5a{bottom:198.210000px;}
.ya8{bottom:203.430000px;}
.y10c{bottom:204.330000px;}
.yc4{bottom:205.230000px;}
.y33{bottom:207.030000px;}
.y8a{bottom:210.270000px;}
.ye3{bottom:211.890000px;}
.y59{bottom:220.530000px;}
.y10b{bottom:225.030000px;}
.ya7{bottom:225.750000px;}
.y32{bottom:229.350000px;}
.y74{bottom:230.790000px;}
.ye2{bottom:234.210000px;}
.yc3{bottom:239.610000px;}
.y58{bottom:242.850000px;}
.y89{bottom:244.470000px;}
.y10a{bottom:245.730000px;}
.ya6{bottom:248.070000px;}
.y31{bottom:251.670000px;}
.yef{bottom:256.530000px;}
.yc2{bottom:261.930000px;}
.y73{bottom:265.170000px;}
.y109{bottom:266.430000px;}
.y88{bottom:266.790000px;}
.ye1{bottom:268.590000px;}
.y30{bottom:273.990000px;}
.y57{bottom:277.230000px;}
.yf1{bottom:278.850000px;}
.ya5{bottom:282.450000px;}
.y108{bottom:287.130000px;}
.y72{bottom:287.490000px;}
.y87{bottom:289.290000px;}
.ye0{bottom:290.910000px;}
.yc1{bottom:296.310000px;}
.y2f{bottom:296.490000px;}
.ya4{bottom:304.770000px;}
.y107{bottom:307.830000px;}
.y71{bottom:309.810000px;}
.y56{bottom:311.610000px;}
.ydf{bottom:313.230000px;}
.yc0{bottom:318.630000px;}
.y2e{bottom:318.810000px;}
.ya3{bottom:327.090000px;}
.y106{bottom:328.530000px;}
.y70{bottom:332.310000px;}
.y55{bottom:333.930000px;}
.yde{bottom:335.550000px;}
.y2d{bottom:341.130000px;}
.y105{bottom:349.230000px;}
.ya2{bottom:349.410000px;}
.ybf{bottom:352.830000px;}
.y6f{bottom:354.675000px;}
.y54{bottom:356.295000px;}
.ydd{bottom:357.915000px;}
.y2c{bottom:363.495000px;}
.y104{bottom:369.975000px;}
.ya1{bottom:371.775000px;}
.ybe{bottom:375.195000px;}
.y6e{bottom:376.995000px;}
.y53{bottom:378.615000px;}
.ydc{bottom:380.235000px;}
.y2b{bottom:385.815000px;}
.y86{bottom:390.675000px;}
.y6d{bottom:399.315000px;}
.y52{bottom:400.935000px;}
.ydb{bottom:402.555000px;}
.ya0{bottom:406.155000px;}
.ybd{bottom:409.575000px;}
.y103{bottom:411.375000px;}
.y2a{bottom:420.195000px;}
.y51{bottom:423.255000px;}
.y85{bottom:424.875000px;}
.y9f{bottom:428.475000px;}
.ybc{bottom:431.895000px;}
.y102{bottom:432.075000px;}
.y6c{bottom:433.695000px;}
.yda{bottom:436.935000px;}
.y29{bottom:442.515000px;}
.y50{bottom:445.575000px;}
.y84{bottom:447.195000px;}
.y101{bottom:452.775000px;}
.yd9{bottom:459.255000px;}
.y9e{bottom:462.855000px;}
.y28{bottom:464.835000px;}
.ybb{bottom:466.275000px;}
.y4f{bottom:467.895000px;}
.y83{bottom:469.695000px;}
.y100{bottom:473.475000px;}
.yd8{bottom:481.575000px;}
.y27{bottom:487.155000px;}
.y6b{bottom:490.215000px;}
.y82{bottom:492.015000px;}
.yff{bottom:494.175000px;}
.y9d{bottom:497.055000px;}
.yba{bottom:500.655000px;}
.y4e{bottom:502.275000px;}
.yee{bottom:503.895000px;}
.y26{bottom:509.475000px;}
.y6a{bottom:512.715000px;}
.y81{bottom:514.335000px;}
.yfe{bottom:514.875000px;}
.yd7{bottom:515.955000px;}
.y9c{bottom:519.375000px;}
.yb9{bottom:522.975000px;}
.yed{bottom:526.215000px;}
.y25{bottom:531.795000px;}
.y69{bottom:535.035000px;}
.yfd{bottom:535.575000px;}
.y4d{bottom:536.655000px;}
.yd6{bottom:538.275000px;}
.yb8{bottom:545.295000px;}
.yec{bottom:548.715000px;}
.y9b{bottom:553.755000px;}
.yfc{bottom:556.275000px;}
.y68{bottom:557.355000px;}
.y4c{bottom:558.975000px;}
.yd5{bottom:560.595000px;}
.y24{bottom:566.175000px;}
.yeb{bottom:571.035000px;}
.y9a{bottom:576.075000px;}
.yfb{bottom:576.975000px;}
.y67{bottom:579.675000px;}
.y4b{bottom:581.295000px;}
.yd4{bottom:582.915000px;}
.y80{bottom:593.355000px;}
.yfa{bottom:597.675000px;}
.y23{bottom:600.555000px;}
.y66{bottom:601.995000px;}
.y4a{bottom:603.615000px;}
.yd3{bottom:605.235000px;}
.y99{bottom:610.275000px;}
.y7f{bottom:615.705000px;}
.yf9{bottom:618.405000px;}
.y22{bottom:622.905000px;}
.yb7{bottom:624.345000px;}
.y49{bottom:625.965000px;}
.yd2{bottom:627.585000px;}
.y98{bottom:634.065000px;}
.y65{bottom:636.405000px;}
.y7e{bottom:638.025000px;}
.yf8{bottom:639.105000px;}
.yb6{bottom:646.665000px;}
.y48{bottom:648.285000px;}
.yd1{bottom:650.085000px;}
.y21{bottom:657.285000px;}
.y97{bottom:657.645000px;}
.yf7{bottom:659.805000px;}
.y7d{bottom:660.345000px;}
.yb5{bottom:668.985000px;}
.y47{bottom:670.605000px;}
.yea{bottom:672.405000px;}
.y20{bottom:679.605000px;}
.yf6{bottom:680.505000px;}
.y96{bottom:681.225000px;}
.y7c{bottom:682.665000px;}
.yd0{bottom:684.285000px;}
.yb4{bottom:691.305000px;}
.y46{bottom:693.105000px;}
.ye9{bottom:694.725000px;}
.yf5{bottom:701.205000px;}
.y1f{bottom:701.925000px;}
.y7b{bottom:704.985000px;}
.ycf{bottom:706.605000px;}
.y95{bottom:717.045000px;}
.yf4{bottom:721.905000px;}
.y1e{bottom:724.245000px;}
.yb3{bottom:725.685000px;}
.y45{bottom:727.305000px;}
.yce{bottom:729.105000px;}
.y94{bottom:739.365000px;}
.yf3{bottom:742.605000px;}
.y1d{bottom:746.565000px;}
.yb2{bottom:748.005000px;}
.y64{bottom:749.625000px;}
.ycd{bottom:751.425000px;}
.y44{bottom:761.685000px;}
.yf2{bottom:763.305000px;}
.y1c{bottom:768.885000px;}
.y63{bottom:771.945000px;}
.ycc{bottom:773.745000px;}
.yb1{bottom:782.385000px;}
.y43{bottom:784.005000px;}
.y1b{bottom:791.205000px;}
.y62{bottom:794.445000px;}
.ycb{bottom:796.065000px;}
.yb0{bottom:804.705000px;}
.y42{bottom:806.325000px;}
.y1a{bottom:813.525000px;}
.y61{bottom:816.765000px;}
.yca{bottom:818.385000px;}
.y41{bottom:828.645000px;}
.y19{bottom:835.845000px;}
.yaf{bottom:839.085000px;}
.y93{bottom:840.705000px;}
.y40{bottom:850.965000px;}
.yf0{bottom:852.765000px;}
.y18{bottom:858.165000px;}
.y11b{bottom:860.325000px;}
.yae{bottom:861.405000px;}
.y7a{bottom:863.025000px;}
.y3f{bottom:873.465000px;}
.ye8{bottom:875.085000px;}
.y17{bottom:880.530000px;}
.y11a{bottom:881.070000px;}
.yad{bottom:883.770000px;}
.y60{bottom:885.390000px;}
.y3e{bottom:895.830000px;}
.y92{bottom:897.450000px;}
.y16{bottom:901.230000px;}
.y119{bottom:901.770000px;}
.y5f{bottom:907.710000px;}
.y3d{bottom:918.150000px;}
.y91{bottom:919.770000px;}
.y15{bottom:921.930000px;}
.y118{bottom:922.470000px;}
.y5e{bottom:930.030000px;}
.y3c{bottom:940.470000px;}
.y90{bottom:942.090000px;}
.y14{bottom:942.630000px;}
.y117{bottom:943.170000px;}
.y5d{bottom:952.350000px;}
.y13{bottom:963.330000px;}
.y116{bottom:963.870000px;}
.y8f{bottom:964.410000px;}
.y3b{bottom:974.850000px;}
.yc9{bottom:976.470000px;}
.y12{bottom:984.030000px;}
.y115{bottom:984.570000px;}
.y8e{bottom:986.730000px;}
.y3a{bottom:997.170000px;}
.yc8{bottom:998.790000px;}
.y11{bottom:1004.730000px;}
.y114{bottom:1005.270000px;}
.y79{bottom:1009.050000px;}
.y8d{bottom:1021.110000px;}
.y113{bottom:1025.970000px;}
.y10{bottom:1029.750000px;}
.y39{bottom:1031.370000px;}
.y8c{bottom:1043.430000px;}
.y112{bottom:1046.670000px;}
.yac{bottom:1053.870000px;}
.yf{bottom:1057.470000px;}
.y38{bottom:1065.750000px;}
.y111{bottom:1067.370000px;}
.ye{bottom:1085.190000px;}
.y37{bottom:1088.070000px;}
.y9{bottom:1109.310000px;}
.y1{bottom:1124.970000px;}
.h7{height:40.579102px;}
.h8{height:50.273438px;}
.hb{height:50.800781px;}
.hc{height:52.417969px;}
.h9{height:53.709961px;}
.ha{height:59.436914px;}
.h6{height:59.439023px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h2{height:84.816000px;}
.h4{height:95.245664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:124.200000px;}
.w4{width:159.690000px;}
.w3{width:386.025000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x6{left:39.420000px;}
.x8{left:54.720000px;}
.x7{left:56.520000px;}
.x2{left:98.094000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.xa{left:111.095987px;}
.x12{left:113.075987px;}
.x11{left:135.035987px;}
.x13{left:140.075987px;}
.xf{left:190.289987px;}
.x3{left:224.130000px;}
.xe{left:295.454987px;}
.x10{left:333.254987px;}
.xd{left:357.734987px;}
.xb{left:407.954987px;}
.xc{left:446.504987px;}
.x5{left:610.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.336000pt;}
.lsf{letter-spacing:16.128000pt;}
.lsc{letter-spacing:26.880000pt;}
.lsd{letter-spacing:30.208000pt;}
.lse{letter-spacing:48.128000pt;}
.lsb{letter-spacing:48.746667pt;}
.ls0{letter-spacing:50.693120pt;}
.ls1{letter-spacing:178.853120pt;}
.ws9{word-spacing:-64.000000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-1.029333pt;}
._0{width:1.191680pt;}
._2{width:2.256000pt;}
._e{width:3.840000pt;}
._f{width:4.952320pt;}
._18{width:5.893333pt;}
._13{width:6.784000pt;}
._17{width:7.704320pt;}
._1e{width:8.935680pt;}
._10{width:9.834667pt;}
._4{width:11.136000pt;}
._5{width:12.352000pt;}
._6{width:13.440000pt;}
._a{width:14.722987pt;}
._1c{width:17.264000pt;}
._1f{width:18.384000pt;}
._b{width:20.037333pt;}
._19{width:21.632000pt;}
._7{width:22.592000pt;}
._8{width:23.989973pt;}
._9{width:25.674027pt;}
._1d{width:26.752000pt;}
._14{width:28.224000pt;}
._c{width:29.610667pt;}
._d{width:30.594987pt;}
._21{width:31.749333pt;}
._11{width:32.896000pt;}
._12{width:33.856000pt;}
._16{width:35.581653pt;}
._15{width:36.810667pt;}
._20{width:38.341333pt;}
._25{width:39.493333pt;}
._1a{width:40.448000pt;}
._1b{width:41.344000pt;}
._28{width:44.672000pt;}
._24{width:48.000000pt;}
._26{width:55.552000pt;}
._27{width:56.640000pt;}
._3{width:58.912000pt;}
._22{width:70.976000pt;}
._23{width:72.448000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y8{bottom:9.920000pt;}
.y7{bottom:27.386667pt;}
.y4{bottom:33.466667pt;}
.yd{bottom:42.400000pt;}
.y6{bottom:44.986667pt;}
.y3{bottom:55.066667pt;}
.yc{bottom:57.120000pt;}
.y5{bottom:62.586667pt;}
.yb{bottom:70.880000pt;}
.ya{bottom:84.672000pt;}
.y110{bottom:108.032000pt;}
.ye7{bottom:108.832000pt;}
.yab{bottom:110.592000pt;}
.y36{bottom:113.792000pt;}
.y78{bottom:115.072000pt;}
.y8b{bottom:116.672000pt;}
.yc7{bottom:122.912000pt;}
.y10f{bottom:126.432000pt;}
.ye6{bottom:128.832000pt;}
.yaa{bottom:130.432000pt;}
.y35{bottom:133.626667pt;}
.y77{bottom:135.066667pt;}
.y5c{bottom:136.506667pt;}
.yc6{bottom:142.746667pt;}
.y10e{bottom:144.826667pt;}
.ye5{bottom:148.666667pt;}
.ya9{bottom:150.266667pt;}
.y34{bottom:153.466667pt;}
.y76{bottom:154.906667pt;}
.y5b{bottom:156.346667pt;}
.yc5{bottom:162.586667pt;}
.y10d{bottom:163.226667pt;}
.ye4{bottom:168.506667pt;}
.y75{bottom:174.746667pt;}
.y5a{bottom:176.186667pt;}
.ya8{bottom:180.826667pt;}
.y10c{bottom:181.626667pt;}
.yc4{bottom:182.426667pt;}
.y33{bottom:184.026667pt;}
.y8a{bottom:186.906667pt;}
.ye3{bottom:188.346667pt;}
.y59{bottom:196.026667pt;}
.y10b{bottom:200.026667pt;}
.ya7{bottom:200.666667pt;}
.y32{bottom:203.866667pt;}
.y74{bottom:205.146667pt;}
.ye2{bottom:208.186667pt;}
.yc3{bottom:212.986667pt;}
.y58{bottom:215.866667pt;}
.y89{bottom:217.306667pt;}
.y10a{bottom:218.426667pt;}
.ya6{bottom:220.506667pt;}
.y31{bottom:223.706667pt;}
.yef{bottom:228.026667pt;}
.yc2{bottom:232.826667pt;}
.y73{bottom:235.706667pt;}
.y109{bottom:236.826667pt;}
.y88{bottom:237.146667pt;}
.ye1{bottom:238.746667pt;}
.y30{bottom:243.546667pt;}
.y57{bottom:246.426667pt;}
.yf1{bottom:247.866667pt;}
.ya5{bottom:251.066667pt;}
.y108{bottom:255.226667pt;}
.y72{bottom:255.546667pt;}
.y87{bottom:257.146667pt;}
.ye0{bottom:258.586667pt;}
.yc1{bottom:263.386667pt;}
.y2f{bottom:263.546667pt;}
.ya4{bottom:270.906667pt;}
.y107{bottom:273.626667pt;}
.y71{bottom:275.386667pt;}
.y56{bottom:276.986667pt;}
.ydf{bottom:278.426667pt;}
.yc0{bottom:283.226667pt;}
.y2e{bottom:283.386667pt;}
.ya3{bottom:290.746667pt;}
.y106{bottom:292.026667pt;}
.y70{bottom:295.386667pt;}
.y55{bottom:296.826667pt;}
.yde{bottom:298.266667pt;}
.y2d{bottom:303.226667pt;}
.y105{bottom:310.426667pt;}
.ya2{bottom:310.586667pt;}
.ybf{bottom:313.626667pt;}
.y6f{bottom:315.266667pt;}
.y54{bottom:316.706667pt;}
.ydd{bottom:318.146667pt;}
.y2c{bottom:323.106667pt;}
.y104{bottom:328.866667pt;}
.ya1{bottom:330.466667pt;}
.ybe{bottom:333.506667pt;}
.y6e{bottom:335.106667pt;}
.y53{bottom:336.546667pt;}
.ydc{bottom:337.986667pt;}
.y2b{bottom:342.946667pt;}
.y86{bottom:347.266667pt;}
.y6d{bottom:354.946667pt;}
.y52{bottom:356.386667pt;}
.ydb{bottom:357.826667pt;}
.ya0{bottom:361.026667pt;}
.ybd{bottom:364.066667pt;}
.y103{bottom:365.666667pt;}
.y2a{bottom:373.506667pt;}
.y51{bottom:376.226667pt;}
.y85{bottom:377.666667pt;}
.y9f{bottom:380.866667pt;}
.ybc{bottom:383.906667pt;}
.y102{bottom:384.066667pt;}
.y6c{bottom:385.506667pt;}
.yda{bottom:388.386667pt;}
.y29{bottom:393.346667pt;}
.y50{bottom:396.066667pt;}
.y84{bottom:397.506667pt;}
.y101{bottom:402.466667pt;}
.yd9{bottom:408.226667pt;}
.y9e{bottom:411.426667pt;}
.y28{bottom:413.186667pt;}
.ybb{bottom:414.466667pt;}
.y4f{bottom:415.906667pt;}
.y83{bottom:417.506667pt;}
.y100{bottom:420.866667pt;}
.yd8{bottom:428.066667pt;}
.y27{bottom:433.026667pt;}
.y6b{bottom:435.746667pt;}
.y82{bottom:437.346667pt;}
.yff{bottom:439.266667pt;}
.y9d{bottom:441.826667pt;}
.yba{bottom:445.026667pt;}
.y4e{bottom:446.466667pt;}
.yee{bottom:447.906667pt;}
.y26{bottom:452.866667pt;}
.y6a{bottom:455.746667pt;}
.y81{bottom:457.186667pt;}
.yfe{bottom:457.666667pt;}
.yd7{bottom:458.626667pt;}
.y9c{bottom:461.666667pt;}
.yb9{bottom:464.866667pt;}
.yed{bottom:467.746667pt;}
.y25{bottom:472.706667pt;}
.y69{bottom:475.586667pt;}
.yfd{bottom:476.066667pt;}
.y4d{bottom:477.026667pt;}
.yd6{bottom:478.466667pt;}
.yb8{bottom:484.706667pt;}
.yec{bottom:487.746667pt;}
.y9b{bottom:492.226667pt;}
.yfc{bottom:494.466667pt;}
.y68{bottom:495.426667pt;}
.y4c{bottom:496.866667pt;}
.yd5{bottom:498.306667pt;}
.y24{bottom:503.266667pt;}
.yeb{bottom:507.586667pt;}
.y9a{bottom:512.066667pt;}
.yfb{bottom:512.866667pt;}
.y67{bottom:515.266667pt;}
.y4b{bottom:516.706667pt;}
.yd4{bottom:518.146667pt;}
.y80{bottom:527.426667pt;}
.yfa{bottom:531.266667pt;}
.y23{bottom:533.826667pt;}
.y66{bottom:535.106667pt;}
.y4a{bottom:536.546667pt;}
.yd3{bottom:537.986667pt;}
.y99{bottom:542.466667pt;}
.y7f{bottom:547.293333pt;}
.yf9{bottom:549.693333pt;}
.y22{bottom:553.693333pt;}
.yb7{bottom:554.973333pt;}
.y49{bottom:556.413333pt;}
.yd2{bottom:557.853333pt;}
.y98{bottom:563.613333pt;}
.y65{bottom:565.693333pt;}
.y7e{bottom:567.133333pt;}
.yf8{bottom:568.093333pt;}
.yb6{bottom:574.813333pt;}
.y48{bottom:576.253333pt;}
.yd1{bottom:577.853333pt;}
.y21{bottom:584.253333pt;}
.y97{bottom:584.573333pt;}
.yf7{bottom:586.493333pt;}
.y7d{bottom:586.973333pt;}
.yb5{bottom:594.653333pt;}
.y47{bottom:596.093333pt;}
.yea{bottom:597.693333pt;}
.y20{bottom:604.093333pt;}
.yf6{bottom:604.893333pt;}
.y96{bottom:605.533333pt;}
.y7c{bottom:606.813333pt;}
.yd0{bottom:608.253333pt;}
.yb4{bottom:614.493333pt;}
.y46{bottom:616.093333pt;}
.ye9{bottom:617.533333pt;}
.yf5{bottom:623.293333pt;}
.y1f{bottom:623.933333pt;}
.y7b{bottom:626.653333pt;}
.ycf{bottom:628.093333pt;}
.y95{bottom:637.373333pt;}
.yf4{bottom:641.693333pt;}
.y1e{bottom:643.773333pt;}
.yb3{bottom:645.053333pt;}
.y45{bottom:646.493333pt;}
.yce{bottom:648.093333pt;}
.y94{bottom:657.213333pt;}
.yf3{bottom:660.093333pt;}
.y1d{bottom:663.613333pt;}
.yb2{bottom:664.893333pt;}
.y64{bottom:666.333333pt;}
.ycd{bottom:667.933333pt;}
.y44{bottom:677.053333pt;}
.yf2{bottom:678.493333pt;}
.y1c{bottom:683.453333pt;}
.y63{bottom:686.173333pt;}
.ycc{bottom:687.773333pt;}
.yb1{bottom:695.453333pt;}
.y43{bottom:696.893333pt;}
.y1b{bottom:703.293333pt;}
.y62{bottom:706.173333pt;}
.ycb{bottom:707.613333pt;}
.yb0{bottom:715.293333pt;}
.y42{bottom:716.733333pt;}
.y1a{bottom:723.133333pt;}
.y61{bottom:726.013333pt;}
.yca{bottom:727.453333pt;}
.y41{bottom:736.573333pt;}
.y19{bottom:742.973333pt;}
.yaf{bottom:745.853333pt;}
.y93{bottom:747.293333pt;}
.y40{bottom:756.413333pt;}
.yf0{bottom:758.013333pt;}
.y18{bottom:762.813333pt;}
.y11b{bottom:764.733333pt;}
.yae{bottom:765.693333pt;}
.y7a{bottom:767.133333pt;}
.y3f{bottom:776.413333pt;}
.ye8{bottom:777.853333pt;}
.y17{bottom:782.693333pt;}
.y11a{bottom:783.173333pt;}
.yad{bottom:785.573333pt;}
.y60{bottom:787.013333pt;}
.y3e{bottom:796.293333pt;}
.y92{bottom:797.733333pt;}
.y16{bottom:801.093333pt;}
.y119{bottom:801.573333pt;}
.y5f{bottom:806.853333pt;}
.y3d{bottom:816.133333pt;}
.y91{bottom:817.573333pt;}
.y15{bottom:819.493333pt;}
.y118{bottom:819.973333pt;}
.y5e{bottom:826.693333pt;}
.y3c{bottom:835.973333pt;}
.y90{bottom:837.413333pt;}
.y14{bottom:837.893333pt;}
.y117{bottom:838.373333pt;}
.y5d{bottom:846.533333pt;}
.y13{bottom:856.293333pt;}
.y116{bottom:856.773333pt;}
.y8f{bottom:857.253333pt;}
.y3b{bottom:866.533333pt;}
.yc9{bottom:867.973333pt;}
.y12{bottom:874.693333pt;}
.y115{bottom:875.173333pt;}
.y8e{bottom:877.093333pt;}
.y3a{bottom:886.373333pt;}
.yc8{bottom:887.813333pt;}
.y11{bottom:893.093333pt;}
.y114{bottom:893.573333pt;}
.y79{bottom:896.933333pt;}
.y8d{bottom:907.653333pt;}
.y113{bottom:911.973333pt;}
.y10{bottom:915.333333pt;}
.y39{bottom:916.773333pt;}
.y8c{bottom:927.493333pt;}
.y112{bottom:930.373333pt;}
.yac{bottom:936.773333pt;}
.yf{bottom:939.973333pt;}
.y38{bottom:947.333333pt;}
.y111{bottom:948.773333pt;}
.ye{bottom:964.613333pt;}
.y37{bottom:967.173333pt;}
.y9{bottom:986.053333pt;}
.y1{bottom:999.973333pt;}
.h7{height:36.070312pt;}
.h8{height:44.687500pt;}
.hb{height:45.156250pt;}
.hc{height:46.593750pt;}
.h9{height:47.742188pt;}
.ha{height:52.832812pt;}
.h6{height:52.834688pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h2{height:75.392000pt;}
.h4{height:84.662813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:110.400000pt;}
.w4{width:141.946667pt;}
.w3{width:343.133333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x6{left:35.040000pt;}
.x8{left:48.640000pt;}
.x7{left:50.240000pt;}
.x2{left:87.194667pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.xa{left:98.751988pt;}
.x12{left:100.511988pt;}
.x11{left:120.031988pt;}
.x13{left:124.511988pt;}
.xf{left:169.146655pt;}
.x3{left:199.226667pt;}
.xe{left:262.626655pt;}
.x10{left:296.226655pt;}
.xd{left:317.986655pt;}
.xb{left:362.626655pt;}
.xc{left:396.893322pt;}
.x5{left:542.373333pt;}
}




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