
    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_2bb3d1b680bea22d50db1cda.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_c67d7fac4a151258bd0969f7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_389eb631e8016e29dbac27b6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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;}
.ls3{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.181200px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.241200px;}
.ls5{letter-spacing:0.288000px;}
.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;}
}
.ws6{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.016000px;}
.ws4{word-spacing:-18.109320px;}
.ws2{word-spacing:-16.613280px;}
.ws0{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.229520px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.350720px;}
._0{width:1.614000px;}
._8{width:2.747280px;}
._2{width:4.206240px;}
._3{width:5.856480px;}
._4{width:7.086480px;}
._9{width:8.130240px;}
._a{width:9.283920px;}
._b{width:10.876320px;}
._13{width:11.911920px;}
._7{width:13.386240px;}
._d{width:14.581440px;}
._14{width:15.898080px;}
._1c{width:17.208000px;}
._10{width:18.216000px;}
._e{width:21.009360px;}
._c{width:22.051440px;}
._6{width:23.066400px;}
._5{width:24.083280px;}
._15{width:25.632000px;}
._16{width:26.856000px;}
._24{width:27.930720px;}
._18{width:29.675520px;}
._20{width:31.386240px;}
._17{width:32.722560px;}
._1d{width:34.378560px;}
._1f{width:35.605440px;}
._1e{width:37.512720px;}
._11{width:38.736000px;}
._21{width:40.404000px;}
._23{width:41.688000px;}
._22{width:43.128000px;}
._19{width:44.579520px;}
._12{width:46.080000px;}
._2a{width:47.880000px;}
._29{width:49.608000px;}
._28{width:55.045440px;}
._27{width:56.160000px;}
._26{width:66.528000px;}
._25{width:67.680000px;}
._1a{width:162.269040px;}
._1b{width:197.585280px;}
._f{width:849.288000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y44{bottom:-19.260000px;}
.y4{bottom:-19.080000px;}
.y0{bottom:0.000000px;}
.y43{bottom:2.520000px;}
.y3{bottom:2.700000px;}
.y7{bottom:5.220000px;}
.y6{bottom:19.080000px;}
.y42{bottom:20.340000px;}
.y2{bottom:20.520000px;}
.y41{bottom:47.520000px;}
.y47{bottom:53.100000px;}
.ya{bottom:55.080000px;}
.y1{bottom:55.440000px;}
.y40{bottom:130.680000px;}
.y3f{bottom:135.180000px;}
.yb4{bottom:136.080000px;}
.ye3{bottom:144.720000px;}
.yb3{bottom:145.620000px;}
.y3e{bottom:147.960000px;}
.y6b{bottom:152.280000px;}
.y3d{bottom:152.460000px;}
.y8f{bottom:155.160000px;}
.yb9{bottom:158.220000px;}
.y3c{bottom:165.240000px;}
.ye2{bottom:165.420000px;}
.ya7{bottom:167.220000px;}
.y3b{bottom:169.740000px;}
.y6a{bottom:171.360000px;}
.yb2{bottom:176.760000px;}
.yb8{bottom:178.920000px;}
.y9d{bottom:180.180000px;}
.ye1{bottom:186.120000px;}
.y8e{bottom:186.300000px;}
.y3a{bottom:188.100000px;}
.y69{bottom:190.290000px;}
.ya6{bottom:198.210000px;}
.ye0{bottom:206.850000px;}
.yb1{bottom:207.750000px;}
.yb7{bottom:208.650000px;}
.y68{bottom:209.190000px;}
.y9c{bottom:211.350000px;}
.y8d{bottom:215.670000px;}
.y67{bottom:228.270000px;}
.ya5{bottom:229.350000px;}
.y8c{bottom:234.750000px;}
.ydf{bottom:236.550000px;}
.yb0{bottom:238.890000px;}
.y9b{bottom:242.310000px;}
.y66{bottom:247.170000px;}
.yb6{bottom:250.050000px;}
.y8b{bottom:253.650000px;}
.y39{bottom:255.450000px;}
.yde{bottom:257.250000px;}
.ya4{bottom:260.310000px;}
.y65{bottom:266.250000px;}
.yaf{bottom:269.850000px;}
.yb5{bottom:270.750000px;}
.y8a{bottom:272.550000px;}
.y9a{bottom:273.450000px;}
.y38{bottom:273.810000px;}
.ydd{bottom:277.950000px;}
.y64{bottom:285.150000px;}
.ya3{bottom:291.450000px;}
.y89{bottom:291.630000px;}
.y37{bottom:293.790000px;}
.ydc{bottom:298.650000px;}
.yae{bottom:300.990000px;}
.y63{bottom:304.050000px;}
.y99{bottom:304.410000px;}
.y36{bottom:313.590000px;}
.ya2{bottom:322.410000px;}
.ydb{bottom:328.350000px;}
.y88{bottom:331.950000px;}
.y35{bottom:333.390000px;}
.y98{bottom:335.550000px;}
.y62{bottom:342.750000px;}
.yda{bottom:349.050000px;}
.y34{bottom:353.190000px;}
.ya1{bottom:353.550000px;}
.y87{bottom:363.090000px;}
.y33{bottom:372.990000px;}
.y61{bottom:373.710000px;}
.yad{bottom:373.890000px;}
.yd9{bottom:378.750000px;}
.y97{bottom:384.510000px;}
.y32{bottom:392.970000px;}
.y86{bottom:394.050000px;}
.yd8{bottom:399.450000px;}
.y60{bottom:404.850000px;}
.y31{bottom:412.770000px;}
.y96{bottom:415.650000px;}
.yd7{bottom:420.150000px;}
.y85{bottom:425.190000px;}
.y30{bottom:432.615000px;}
.y5f{bottom:435.855000px;}
.yac{bottom:436.035000px;}
.y95{bottom:446.655000px;}
.yd6{bottom:449.895000px;}
.y2f{bottom:452.415000px;}
.y84{bottom:456.195000px;}
.yab{bottom:465.375000px;}
.y5e{bottom:466.995000px;}
.y2e{bottom:472.215000px;}
.y94{bottom:477.795000px;}
.yd5{bottom:479.595000px;}
.yaa{bottom:484.455000px;}
.y83{bottom:487.335000px;}
.y2d{bottom:492.195000px;}
.y5d{bottom:497.955000px;}
.ya9{bottom:503.355000px;}
.y93{bottom:508.755000px;}
.yd4{bottom:509.295000px;}
.y2c{bottom:511.995000px;}
.y82{bottom:518.475000px;}
.ya8{bottom:522.255000px;}
.y5c{bottom:529.095000px;}
.yd3{bottom:529.995000px;}
.y81{bottom:537.555000px;}
.y92{bottom:539.895000px;}
.y2b{bottom:541.335000px;}
.y80{bottom:556.455000px;}
.yd2{bottom:559.695000px;}
.y5b{bottom:560.055000px;}
.y2a{bottom:562.575000px;}
.y91{bottom:570.855000px;}
.y7f{bottom:575.355000px;}
.yd1{bottom:580.395000px;}
.y29{bottom:582.375000px;}
.y5a{bottom:591.195000px;}
.y7e{bottom:594.435000px;}
.yd0{bottom:601.095000px;}
.y90{bottom:601.995000px;}
.y28{bottom:604.155000px;}
.ycf{bottom:621.795000px;}
.y59{bottom:622.155000px;}
.y27{bottom:625.935000px;}
.y7d{bottom:632.955000px;}
.y26{bottom:647.715000px;}
.yce{bottom:651.495000px;}
.y58{bottom:653.295000px;}
.y7c{bottom:664.095000px;}
.y25{bottom:664.995000px;}
.ycd{bottom:672.225000px;}
.y24{bottom:682.305000px;}
.y57{bottom:684.285000px;}
.ycc{bottom:692.925000px;}
.y7b{bottom:695.085000px;}
.y23{bottom:699.585000px;}
.y56{bottom:715.425000px;}
.y22{bottom:716.685000px;}
.ycb{bottom:722.625000px;}
.y7a{bottom:726.225000px;}
.y21{bottom:733.965000px;}
.yca{bottom:743.325000px;}
.y55{bottom:746.385000px;}
.y20{bottom:751.245000px;}
.y79{bottom:757.185000px;}
.y1f{bottom:768.525000px;}
.yc9{bottom:773.025000px;}
.y54{bottom:777.525000px;}
.y1e{bottom:785.805000px;}
.y78{bottom:788.325000px;}
.yc8{bottom:793.725000px;}
.y1d{bottom:802.905000px;}
.y53{bottom:808.485000px;}
.yc7{bottom:814.425000px;}
.y77{bottom:819.285000px;}
.y1c{bottom:820.185000px;}
.ya0{bottom:825.225000px;}
.y1b{bottom:837.465000px;}
.y52{bottom:839.625000px;}
.yc6{bottom:844.125000px;}
.y76{bottom:850.425000px;}
.y1a{bottom:854.745000px;}
.yc5{bottom:864.825000px;}
.y51{bottom:870.585000px;}
.y19{bottom:876.705000px;}
.y75{bottom:881.385000px;}
.yc4{bottom:885.525000px;}
.y18{bottom:899.925000px;}
.y50{bottom:901.725000px;}
.y74{bottom:912.570000px;}
.yc3{bottom:915.270000px;}
.y17{bottom:921.750000px;}
.y4f{bottom:932.730000px;}
.yc2{bottom:935.970000px;}
.y73{bottom:943.530000px;}
.ye9{bottom:947.670000px;}
.y15{bottom:948.210000px;}
.y16{bottom:954.150000px;}
.yc1{bottom:956.670000px;}
.y4e{bottom:963.870000px;}
.ye8{bottom:968.370000px;}
.y13{bottom:973.050000px;}
.y72{bottom:974.670000px;}
.yc0{bottom:977.370000px;}
.y14{bottom:978.990000px;}
.ye7{bottom:989.070000px;}
.y4d{bottom:994.830000px;}
.y11{bottom:997.890000px;}
.y12{bottom:1003.830000px;}
.y71{bottom:1005.630000px;}
.ybf{bottom:1007.070000px;}
.ye6{bottom:1018.770000px;}
.y10{bottom:1021.650000px;}
.y4c{bottom:1025.970000px;}
.ybe{bottom:1027.770000px;}
.y70{bottom:1036.770000px;}
.ye5{bottom:1039.470000px;}
.ybd{bottom:1048.470000px;}
.yf{bottom:1052.790000px;}
.y4b{bottom:1056.930000px;}
.y6f{bottom:1067.730000px;}
.ybc{bottom:1069.170000px;}
.y9f{bottom:1073.670000px;}
.ye{bottom:1083.750000px;}
.y4a{bottom:1088.070000px;}
.ye4{bottom:1089.870000px;}
.y6e{bottom:1098.870000px;}
.yd{bottom:1106.430000px;}
.y49{bottom:1119.030000px;}
.ybb{bottom:1119.570000px;}
.y6d{bottom:1129.830000px;}
.yc{bottom:1133.970000px;}
.yba{bottom:1140.270000px;}
.yb{bottom:1158.300000px;}
.y48{bottom:1160.820000px;}
.y6c{bottom:1161.000000px;}
.y9e{bottom:1166.940000px;}
.y46{bottom:1187.640000px;}
.y9{bottom:1194.660000px;}
.y45{bottom:1202.760000px;}
.y8{bottom:1208.340000px;}
.y5{bottom:1209.960000px;}
.h5{height:30.420000px;}
.hc{height:32.273438px;}
.he{height:32.940000px;}
.h2{height:33.120000px;}
.hd{height:34.855313px;}
.h6{height:43.246406px;}
.h3{height:48.410156px;}
.hb{height:53.573906px;}
.h8{height:54.069961px;}
.hf{height:59.383125px;}
.ha{height:59.932969px;}
.h4{height:64.546875px;}
.h9{height:65.144531px;}
.h7{height:76.219102px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:111.780000px;}
.w6{width:544.245000px;}
.w2{width:544.425000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.800000px;}
.x6{left:64.619987px;}
.x4{left:68.940000px;}
.x7{left:84.959987px;}
.x5{left:91.620000px;}
.x10{left:125.676000px;}
.x1{left:127.476000px;}
.xd{left:138.095987px;}
.xf{left:143.495987px;}
.x13{left:146.015973px;}
.x14{left:152.669987px;}
.x19{left:165.989987px;}
.x1a{left:192.989987px;}
.x12{left:255.089987px;}
.x17{left:269.129973px;}
.x18{left:275.789987px;}
.x15{left:293.294973px;}
.x16{left:299.954987px;}
.xe{left:354.134987px;}
.xc{left:581.144987px;}
.xb{left:582.224987px;}
.x8{left:623.264987px;}
.x3{left:742.110000px;}
.x1b{left:788.009987px;}
.x11{left:797.909987px;}
.x9{left:801.329973px;}
.xa{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.161067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.214400pt;}
.ls5{letter-spacing:0.256000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws4{word-spacing:-16.097173pt;}
.ws2{word-spacing:-14.767360pt;}
.ws0{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.759573pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.200640pt;}
._0{width:1.434667pt;}
._8{width:2.442027pt;}
._2{width:3.738880pt;}
._3{width:5.205760pt;}
._4{width:6.299093pt;}
._9{width:7.226880pt;}
._a{width:8.252373pt;}
._b{width:9.667840pt;}
._13{width:10.588373pt;}
._7{width:11.898880pt;}
._d{width:12.961280pt;}
._14{width:14.131627pt;}
._1c{width:15.296000pt;}
._10{width:16.192000pt;}
._e{width:18.674987pt;}
._c{width:19.601280pt;}
._6{width:20.503467pt;}
._5{width:21.407360pt;}
._15{width:22.784000pt;}
._16{width:23.872000pt;}
._24{width:24.827307pt;}
._18{width:26.378240pt;}
._20{width:27.898880pt;}
._17{width:29.086720pt;}
._1d{width:30.558720pt;}
._1f{width:31.649280pt;}
._1e{width:33.344640pt;}
._11{width:34.432000pt;}
._21{width:35.914667pt;}
._23{width:37.056000pt;}
._22{width:38.336000pt;}
._19{width:39.626240pt;}
._12{width:40.960000pt;}
._2a{width:42.560000pt;}
._29{width:44.096000pt;}
._28{width:48.929280pt;}
._27{width:49.920000pt;}
._26{width:59.136000pt;}
._25{width:60.160000pt;}
._1a{width:144.239147pt;}
._1b{width:175.631360pt;}
._f{width:754.922667pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y44{bottom:-17.120000pt;}
.y4{bottom:-16.960000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.240000pt;}
.y3{bottom:2.400000pt;}
.y7{bottom:4.640000pt;}
.y6{bottom:16.960000pt;}
.y42{bottom:18.080000pt;}
.y2{bottom:18.240000pt;}
.y41{bottom:42.240000pt;}
.y47{bottom:47.200000pt;}
.ya{bottom:48.960000pt;}
.y1{bottom:49.280000pt;}
.y40{bottom:116.160000pt;}
.y3f{bottom:120.160000pt;}
.yb4{bottom:120.960000pt;}
.ye3{bottom:128.640000pt;}
.yb3{bottom:129.440000pt;}
.y3e{bottom:131.520000pt;}
.y6b{bottom:135.360000pt;}
.y3d{bottom:135.520000pt;}
.y8f{bottom:137.920000pt;}
.yb9{bottom:140.640000pt;}
.y3c{bottom:146.880000pt;}
.ye2{bottom:147.040000pt;}
.ya7{bottom:148.640000pt;}
.y3b{bottom:150.880000pt;}
.y6a{bottom:152.320000pt;}
.yb2{bottom:157.120000pt;}
.yb8{bottom:159.040000pt;}
.y9d{bottom:160.160000pt;}
.ye1{bottom:165.440000pt;}
.y8e{bottom:165.600000pt;}
.y3a{bottom:167.200000pt;}
.y69{bottom:169.146667pt;}
.ya6{bottom:176.186667pt;}
.ye0{bottom:183.866667pt;}
.yb1{bottom:184.666667pt;}
.yb7{bottom:185.466667pt;}
.y68{bottom:185.946667pt;}
.y9c{bottom:187.866667pt;}
.y8d{bottom:191.706667pt;}
.y67{bottom:202.906667pt;}
.ya5{bottom:203.866667pt;}
.y8c{bottom:208.666667pt;}
.ydf{bottom:210.266667pt;}
.yb0{bottom:212.346667pt;}
.y9b{bottom:215.386667pt;}
.y66{bottom:219.706667pt;}
.yb6{bottom:222.266667pt;}
.y8b{bottom:225.466667pt;}
.y39{bottom:227.066667pt;}
.yde{bottom:228.666667pt;}
.ya4{bottom:231.386667pt;}
.y65{bottom:236.666667pt;}
.yaf{bottom:239.866667pt;}
.yb5{bottom:240.666667pt;}
.y8a{bottom:242.266667pt;}
.y9a{bottom:243.066667pt;}
.y38{bottom:243.386667pt;}
.ydd{bottom:247.066667pt;}
.y64{bottom:253.466667pt;}
.ya3{bottom:259.066667pt;}
.y89{bottom:259.226667pt;}
.y37{bottom:261.146667pt;}
.ydc{bottom:265.466667pt;}
.yae{bottom:267.546667pt;}
.y63{bottom:270.266667pt;}
.y99{bottom:270.586667pt;}
.y36{bottom:278.746667pt;}
.ya2{bottom:286.586667pt;}
.ydb{bottom:291.866667pt;}
.y88{bottom:295.066667pt;}
.y35{bottom:296.346667pt;}
.y98{bottom:298.266667pt;}
.y62{bottom:304.666667pt;}
.yda{bottom:310.266667pt;}
.y34{bottom:313.946667pt;}
.ya1{bottom:314.266667pt;}
.y87{bottom:322.746667pt;}
.y33{bottom:331.546667pt;}
.y61{bottom:332.186667pt;}
.yad{bottom:332.346667pt;}
.yd9{bottom:336.666667pt;}
.y97{bottom:341.786667pt;}
.y32{bottom:349.306667pt;}
.y86{bottom:350.266667pt;}
.yd8{bottom:355.066667pt;}
.y60{bottom:359.866667pt;}
.y31{bottom:366.906667pt;}
.y96{bottom:369.466667pt;}
.yd7{bottom:373.466667pt;}
.y85{bottom:377.946667pt;}
.y30{bottom:384.546667pt;}
.y5f{bottom:387.426667pt;}
.yac{bottom:387.586667pt;}
.y95{bottom:397.026667pt;}
.yd6{bottom:399.906667pt;}
.y2f{bottom:402.146667pt;}
.y84{bottom:405.506667pt;}
.yab{bottom:413.666667pt;}
.y5e{bottom:415.106667pt;}
.y2e{bottom:419.746667pt;}
.y94{bottom:424.706667pt;}
.yd5{bottom:426.306667pt;}
.yaa{bottom:430.626667pt;}
.y83{bottom:433.186667pt;}
.y2d{bottom:437.506667pt;}
.y5d{bottom:442.626667pt;}
.ya9{bottom:447.426667pt;}
.y93{bottom:452.226667pt;}
.yd4{bottom:452.706667pt;}
.y2c{bottom:455.106667pt;}
.y82{bottom:460.866667pt;}
.ya8{bottom:464.226667pt;}
.y5c{bottom:470.306667pt;}
.yd3{bottom:471.106667pt;}
.y81{bottom:477.826667pt;}
.y92{bottom:479.906667pt;}
.y2b{bottom:481.186667pt;}
.y80{bottom:494.626667pt;}
.yd2{bottom:497.506667pt;}
.y5b{bottom:497.826667pt;}
.y2a{bottom:500.066667pt;}
.y91{bottom:507.426667pt;}
.y7f{bottom:511.426667pt;}
.yd1{bottom:515.906667pt;}
.y29{bottom:517.666667pt;}
.y5a{bottom:525.506667pt;}
.y7e{bottom:528.386667pt;}
.yd0{bottom:534.306667pt;}
.y90{bottom:535.106667pt;}
.y28{bottom:537.026667pt;}
.ycf{bottom:552.706667pt;}
.y59{bottom:553.026667pt;}
.y27{bottom:556.386667pt;}
.y7d{bottom:562.626667pt;}
.y26{bottom:575.746667pt;}
.yce{bottom:579.106667pt;}
.y58{bottom:580.706667pt;}
.y7c{bottom:590.306667pt;}
.y25{bottom:591.106667pt;}
.ycd{bottom:597.533333pt;}
.y24{bottom:606.493333pt;}
.y57{bottom:608.253333pt;}
.ycc{bottom:615.933333pt;}
.y7b{bottom:617.853333pt;}
.y23{bottom:621.853333pt;}
.y56{bottom:635.933333pt;}
.y22{bottom:637.053333pt;}
.ycb{bottom:642.333333pt;}
.y7a{bottom:645.533333pt;}
.y21{bottom:652.413333pt;}
.yca{bottom:660.733333pt;}
.y55{bottom:663.453333pt;}
.y20{bottom:667.773333pt;}
.y79{bottom:673.053333pt;}
.y1f{bottom:683.133333pt;}
.yc9{bottom:687.133333pt;}
.y54{bottom:691.133333pt;}
.y1e{bottom:698.493333pt;}
.y78{bottom:700.733333pt;}
.yc8{bottom:705.533333pt;}
.y1d{bottom:713.693333pt;}
.y53{bottom:718.653333pt;}
.yc7{bottom:723.933333pt;}
.y77{bottom:728.253333pt;}
.y1c{bottom:729.053333pt;}
.ya0{bottom:733.533333pt;}
.y1b{bottom:744.413333pt;}
.y52{bottom:746.333333pt;}
.yc6{bottom:750.333333pt;}
.y76{bottom:755.933333pt;}
.y1a{bottom:759.773333pt;}
.yc5{bottom:768.733333pt;}
.y51{bottom:773.853333pt;}
.y19{bottom:779.293333pt;}
.y75{bottom:783.453333pt;}
.yc4{bottom:787.133333pt;}
.y18{bottom:799.933333pt;}
.y50{bottom:801.533333pt;}
.y74{bottom:811.173333pt;}
.yc3{bottom:813.573333pt;}
.y17{bottom:819.333333pt;}
.y4f{bottom:829.093333pt;}
.yc2{bottom:831.973333pt;}
.y73{bottom:838.693333pt;}
.ye9{bottom:842.373333pt;}
.y15{bottom:842.853333pt;}
.y16{bottom:848.133333pt;}
.yc1{bottom:850.373333pt;}
.y4e{bottom:856.773333pt;}
.ye8{bottom:860.773333pt;}
.y13{bottom:864.933333pt;}
.y72{bottom:866.373333pt;}
.yc0{bottom:868.773333pt;}
.y14{bottom:870.213333pt;}
.ye7{bottom:879.173333pt;}
.y4d{bottom:884.293333pt;}
.y11{bottom:887.013333pt;}
.y12{bottom:892.293333pt;}
.y71{bottom:893.893333pt;}
.ybf{bottom:895.173333pt;}
.ye6{bottom:905.573333pt;}
.y10{bottom:908.133333pt;}
.y4c{bottom:911.973333pt;}
.ybe{bottom:913.573333pt;}
.y70{bottom:921.573333pt;}
.ye5{bottom:923.973333pt;}
.ybd{bottom:931.973333pt;}
.yf{bottom:935.813333pt;}
.y4b{bottom:939.493333pt;}
.y6f{bottom:949.093333pt;}
.ybc{bottom:950.373333pt;}
.y9f{bottom:954.373333pt;}
.ye{bottom:963.333333pt;}
.y4a{bottom:967.173333pt;}
.ye4{bottom:968.773333pt;}
.y6e{bottom:976.773333pt;}
.yd{bottom:983.493333pt;}
.y49{bottom:994.693333pt;}
.ybb{bottom:995.173333pt;}
.y6d{bottom:1004.293333pt;}
.yc{bottom:1007.973333pt;}
.yba{bottom:1013.573333pt;}
.yb{bottom:1029.600000pt;}
.y48{bottom:1031.840000pt;}
.y6c{bottom:1032.000000pt;}
.y9e{bottom:1037.280000pt;}
.y46{bottom:1055.680000pt;}
.y9{bottom:1061.920000pt;}
.y45{bottom:1069.120000pt;}
.y8{bottom:1074.080000pt;}
.y5{bottom:1075.520000pt;}
.h5{height:27.040000pt;}
.hc{height:28.687500pt;}
.he{height:29.280000pt;}
.h2{height:29.440000pt;}
.hd{height:30.982500pt;}
.h6{height:38.441250pt;}
.h3{height:43.031250pt;}
.hb{height:47.621250pt;}
.h8{height:48.062188pt;}
.hf{height:52.785000pt;}
.ha{height:53.273750pt;}
.h4{height:57.375000pt;}
.h9{height:57.906250pt;}
.h7{height:67.750312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:99.360000pt;}
.w6{width:483.773333pt;}
.w2{width:483.933333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.600000pt;}
.x6{left:57.439988pt;}
.x4{left:61.280000pt;}
.x7{left:75.519988pt;}
.x5{left:81.440000pt;}
.x10{left:111.712000pt;}
.x1{left:113.312000pt;}
.xd{left:122.751988pt;}
.xf{left:127.551988pt;}
.x13{left:129.791976pt;}
.x14{left:135.706655pt;}
.x19{left:147.546655pt;}
.x1a{left:171.546655pt;}
.x12{left:226.746655pt;}
.x17{left:239.226643pt;}
.x18{left:245.146655pt;}
.x15{left:260.706643pt;}
.x16{left:266.626655pt;}
.xe{left:314.786655pt;}
.xc{left:516.573322pt;}
.xb{left:517.533322pt;}
.x8{left:554.013322pt;}
.x3{left:659.653333pt;}
.x1b{left:700.453322pt;}
.x11{left:709.253322pt;}
.x9{left:712.293310pt;}
.xa{left:718.213322pt;}
}




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