
    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_50775eea75191504581f35b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079102;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_ce6957fcb1e4e4d91a48f7bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_01c4aa13656cadb1acf5ef47.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.726074;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.ls4{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005760px;}
.ls3{letter-spacing:0.181440px;}
.ls5{letter-spacing:0.342600px;}
.ls2{letter-spacing:198.181440px;}
.ls0{letter-spacing:845.741280px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws3{word-spacing:-32.344560px;}
.ws4{word-spacing:-18.782224px;}
.ws5{word-spacing:-18.161160px;}
.ws6{word-spacing:-17.824320px;}
.ws7{word-spacing:-17.818560px;}
.ws8{word-spacing:-17.709360px;}
.ws2{word-spacing:-17.098560px;}
.ws9{word-spacing:-14.202000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-73.415040px;}
._0{margin-left:-7.992000px;}
._a{margin-left:-6.768000px;}
._3{margin-left:-5.616000px;}
._b{margin-left:-4.536000px;}
._1{margin-left:-3.240000px;}
._2{margin-left:-2.160000px;}
._d{margin-left:-1.157760px;}
._7{width:1.188000px;}
._8{width:2.340000px;}
._4{width:3.967920px;}
._5{width:5.290560px;}
._e{width:6.452880px;}
._6{width:7.556160px;}
._14{width:8.556720px;}
._12{width:9.570240px;}
._13{width:10.944000px;}
._11{width:12.297600px;}
._c{width:13.645440px;}
._1c{width:14.909760px;}
._20{width:15.912000px;}
._1b{width:18.843840px;}
._17{width:20.733120px;}
._15{width:21.792960px;}
._16{width:23.158080px;}
._1f{width:24.433920px;}
._22{width:25.799040px;}
._21{width:27.066240px;}
._2c{width:28.521120px;}
._19{width:29.609280px;}
._18{width:30.709440px;}
._1d{width:32.722560px;}
._1e{width:33.755040px;}
._26{width:34.794720px;}
._2b{width:35.835840px;}
._2a{width:36.986400px;}
._35{width:38.430720px;}
._23{width:41.002560px;}
._24{width:42.062400px;}
._27{width:43.692480px;}
._29{width:45.740160px;}
._28{width:47.102400px;}
._33{width:48.712320px;}
._31{width:54.555840px;}
._34{width:58.158720px;}
._2f{width:59.502240px;}
._30{width:60.607680px;}
._25{width:65.543040px;}
._1a{width:68.696640px;}
._2e{width:70.810560px;}
._2d{width:71.976960px;}
._32{width:73.566720px;}
._f{width:90.118080px;}
._10{width:91.134720px;}
.fc4{color:transparent;}
.fc3{color:rgb(15,26,23);}
.fc2{color:rgb(75,129,114);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fsc{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:69.822393px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.fs1{font-size:167.760000px;}
.fs3{font-size:216.000000px;}
.fs4{font-size:432.000000px;}
.y18{bottom:-79.920000px;}
.y17{bottom:-47.520000px;}
.y16{bottom:-28.980000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.539985px;}
.y15{bottom:3.420000px;}
.y19{bottom:7.740000px;}
.y14{bottom:20.880000px;}
.y1a{bottom:43.200000px;}
.y2{bottom:46.260015px;}
.y13{bottom:46.440000px;}
.y4{bottom:109.620000px;}
.y1b{bottom:129.420000px;}
.y65{bottom:148.320000px;}
.y64{bottom:163.260000px;}
.y63{bottom:168.480000px;}
.y80{bottom:169.200000px;}
.y95{bottom:170.460000px;}
.yb3{bottom:180.390000px;}
.y3b{bottom:180.570000px;}
.y62{bottom:181.650000px;}
.y7f{bottom:190.470000px;}
.y94{bottom:191.730000px;}
.yb2{bottom:198.030000px;}
.y3a{bottom:201.810000px;}
.y61{bottom:203.430000px;}
.y7e{bottom:211.890000px;}
.y93{bottom:213.150000px;}
.y39{bottom:223.230000px;}
.y60{bottom:224.850000px;}
.yb1{bottom:225.030000px;}
.y7d{bottom:233.310000px;}
.y92{bottom:234.570000px;}
.y38{bottom:244.650000px;}
.y5f{bottom:246.090000px;}
.y7c{bottom:254.550000px;}
.y91{bottom:255.810000px;}
.y5e{bottom:267.510000px;}
.y7b{bottom:275.970000px;}
.yb0{bottom:276.510000px;}
.y90{bottom:277.230000px;}
.y37{bottom:281.910000px;}
.y5d{bottom:288.930000px;}
.y7a{bottom:297.390000px;}
.y8f{bottom:298.650000px;}
.yaf{bottom:309.990000px;}
.y5c{bottom:310.350000px;}
.y79{bottom:318.810000px;}
.y8e{bottom:320.070000px;}
.y36{bottom:320.790000px;}
.y12{bottom:331.230000px;}
.y5b{bottom:331.590000px;}
.y78{bottom:340.050000px;}
.y8d{bottom:341.310000px;}
.yae{bottom:343.290000px;}
.y5a{bottom:353.010000px;}
.y77{bottom:361.470000px;}
.y8c{bottom:362.730000px;}
.y35{bottom:371.730000px;}
.y59{bottom:374.430000px;}
.yad{bottom:376.770000px;}
.y76{bottom:382.890000px;}
.y8b{bottom:384.150000px;}
.y58{bottom:395.850000px;}
.yac{bottom:398.010000px;}
.y75{bottom:404.310000px;}
.y8a{bottom:405.570000px;}
.y57{bottom:417.090000px;}
.y34{bottom:418.530000px;}
.yab{bottom:419.430000px;}
.y74{bottom:425.595000px;}
.y89{bottom:426.855000px;}
.y11{bottom:429.375000px;}
.y56{bottom:438.555000px;}
.y33{bottom:439.995000px;}
.yaa{bottom:440.895000px;}
.y73{bottom:447.015000px;}
.y88{bottom:448.275000px;}
.y55{bottom:459.975000px;}
.y32{bottom:461.415000px;}
.ya9{bottom:462.135000px;}
.y10{bottom:462.675000px;}
.y72{bottom:468.435000px;}
.y54{bottom:481.215000px;}
.y31{bottom:482.655000px;}
.ya8{bottom:483.555000px;}
.y87{bottom:485.715000px;}
.y71{bottom:489.675000px;}
.yf{bottom:496.155000px;}
.y30{bottom:504.075000px;}
.ya7{bottom:504.975000px;}
.y53{bottom:515.955000px;}
.y70{bottom:523.155000px;}
.y2f{bottom:525.495000px;}
.ya6{bottom:526.395000px;}
.ye{bottom:529.455000px;}
.y86{bottom:532.515000px;}
.y6f{bottom:544.575000px;}
.y2e{bottom:546.735000px;}
.ya5{bottom:547.635000px;}
.y52{bottom:553.935000px;}
.y6e{bottom:565.815000px;}
.yd{bottom:566.895000px;}
.y2d{bottom:568.155000px;}
.ya4{bottom:569.055000px;}
.y51{bottom:587.235000px;}
.y2c{bottom:589.575000px;}
.ya3{bottom:590.475000px;}
.yc{bottom:605.595000px;}
.y50{bottom:608.655000px;}
.y2b{bottom:610.995000px;}
.ya2{bottom:611.895000px;}
.y4f{bottom:630.075000px;}
.y2a{bottom:632.235000px;}
.ya1{bottom:633.135000px;}
.y4e{bottom:651.315000px;}
.yb{bottom:652.755000px;}
.y29{bottom:653.655000px;}
.ya0{bottom:654.555000px;}
.y4d{bottom:672.765000px;}
.y28{bottom:675.105000px;}
.y9f{bottom:676.005000px;}
.y4c{bottom:694.185000px;}
.y9e{bottom:697.245000px;}
.y27{bottom:712.365000px;}
.y4b{bottom:715.425000px;}
.ya{bottom:717.585000px;}
.y9d{bottom:718.665000px;}
.y4a{bottom:736.845000px;}
.y9c{bottom:740.085000px;}
.y49{bottom:758.265000px;}
.y26{bottom:759.345000px;}
.y9b{bottom:761.505000px;}
.y48{bottom:779.685000px;}
.y9{bottom:782.385000px;}
.y25{bottom:792.645000px;}
.y9a{bottom:794.805000px;}
.y47{bottom:800.925000px;}
.y24{bottom:814.065000px;}
.y46{bottom:822.345000px;}
.y99{bottom:828.105000px;}
.y23{bottom:835.485000px;}
.y45{bottom:843.765000px;}
.y8{bottom:847.185000px;}
.y22{bottom:856.725000px;}
.y98{bottom:861.585000px;}
.y44{bottom:865.185000px;}
.y21{bottom:878.145000px;}
.y6d{bottom:878.505000px;}
.y85{bottom:886.425000px;}
.y97{bottom:894.885000px;}
.y42{bottom:898.485000px;}
.y20{bottom:899.565000px;}
.y43{bottom:904.425000px;}
.y84{bottom:907.890000px;}
.y7{bottom:912.030000px;}
.y6c{bottom:916.350000px;}
.y41{bottom:919.950000px;}
.y1f{bottom:921.030000px;}
.y96{bottom:928.410000px;}
.y83{bottom:929.310000px;}
.y40{bottom:941.190000px;}
.y6b{bottom:949.650000px;}
.y1e{bottom:950.730000px;}
.y82{bottom:963.870000px;}
.y6a{bottom:971.070000px;}
.y3f{bottom:974.670000px;}
.y6{bottom:986.730000px;}
.y69{bottom:992.490000px;}
.y1d{bottom:993.930000px;}
.y3e{bottom:995.910000px;}
.y81{bottom:1001.850000px;}
.y68{bottom:1013.910000px;}
.y3d{bottom:1017.330000px;}
.y5{bottom:1031.190000px;}
.y67{bottom:1035.150000px;}
.y1c{bottom:1037.130000px;}
.y3c{bottom:1052.070000px;}
.y66{bottom:1056.570000px;}
.y3{bottom:1076.370000px;}
.hf{height:31.236328px;}
.he{height:33.735234px;}
.h9{height:46.854492px;}
.h10{height:51.852305px;}
.h3{height:57.474844px;}
.hc{height:60.583199px;}
.hd{height:73.093008px;}
.h8{height:76.320000px;}
.ha{height:85.860000px;}
.h2{height:91.980000px;}
.h5{height:104.329336px;}
.hb{height:124.945312px;}
.h4{height:145.561289px;}
.h6{height:187.417969px;}
.h7{height:374.835938px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:661.425000px;}
.w2{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:10.259973px;}
.x2{left:108.035987px;}
.x1e{left:111.095987px;}
.xe{left:117.755973px;}
.x5{left:127.655987px;}
.x8{left:128.916000px;}
.x1c{left:159.149987px;}
.x26{left:162.029987px;}
.xf{left:163.289987px;}
.x7{left:202.529987px;}
.xd{left:205.959000px;}
.x27{left:207.029987px;}
.xb{left:215.139000px;}
.x9{left:221.439000px;}
.x14{left:225.929987px;}
.x10{left:236.369987px;}
.x20{left:250.409987px;}
.xa{left:259.599000px;}
.x1d{left:324.074987px;}
.xc{left:330.699000px;}
.x6{left:340.094987px;}
.x4{left:341.174987px;}
.x11{left:356.294987px;}
.x24{left:402.194987px;}
.x21{left:420.914987px;}
.x3{left:446.474987px;}
.x12{left:508.964987px;}
.x25{left:543.704987px;}
.x1f{left:547.304987px;}
.x17{left:549.464987px;}
.x22{left:586.004987px;}
.x18{left:611.384987px;}
.x1b{left:613.904987px;}
.x15{left:620.024973px;}
.x16{left:623.264987px;}
.x19{left:677.489987px;}
.x1a{left:749.849987px;}
.x13{left:751.649987px;}
.x23{left:759.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005120pt;}
.ls3{letter-spacing:0.161280pt;}
.ls5{letter-spacing:0.304533pt;}
.ls2{letter-spacing:176.161280pt;}
.ls0{letter-spacing:751.770027pt;}
.ws1{word-spacing:-58.880000pt;}
.ws3{word-spacing:-28.750720pt;}
.ws4{word-spacing:-16.695310pt;}
.ws5{word-spacing:-16.143253pt;}
.ws6{word-spacing:-15.843840pt;}
.ws7{word-spacing:-15.838720pt;}
.ws8{word-spacing:-15.741653pt;}
.ws2{word-spacing:-15.198720pt;}
.ws9{word-spacing:-12.624000pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-65.257813pt;}
._0{margin-left:-7.104000pt;}
._a{margin-left:-6.016000pt;}
._3{margin-left:-4.992000pt;}
._b{margin-left:-4.032000pt;}
._1{margin-left:-2.880000pt;}
._2{margin-left:-1.920000pt;}
._d{margin-left:-1.029120pt;}
._7{width:1.056000pt;}
._8{width:2.080000pt;}
._4{width:3.527040pt;}
._5{width:4.702720pt;}
._e{width:5.735893pt;}
._6{width:6.716587pt;}
._14{width:7.605973pt;}
._12{width:8.506880pt;}
._13{width:9.728000pt;}
._11{width:10.931200pt;}
._c{width:12.129280pt;}
._1c{width:13.253120pt;}
._20{width:14.144000pt;}
._1b{width:16.750080pt;}
._17{width:18.429440pt;}
._15{width:19.371520pt;}
._16{width:20.584960pt;}
._1f{width:21.719040pt;}
._22{width:22.932480pt;}
._21{width:24.058880pt;}
._2c{width:25.352107pt;}
._19{width:26.319360pt;}
._18{width:27.297280pt;}
._1d{width:29.086720pt;}
._1e{width:30.004480pt;}
._26{width:30.928640pt;}
._2b{width:31.854080pt;}
._2a{width:32.876800pt;}
._35{width:34.160640pt;}
._23{width:36.446720pt;}
._24{width:37.388800pt;}
._27{width:38.837760pt;}
._29{width:40.657920pt;}
._28{width:41.868800pt;}
._33{width:43.299840pt;}
._31{width:48.494080pt;}
._34{width:51.696640pt;}
._2f{width:52.890880pt;}
._30{width:53.873493pt;}
._25{width:58.260480pt;}
._1a{width:61.063680pt;}
._2e{width:62.942720pt;}
._2d{width:63.979520pt;}
._32{width:65.392640pt;}
._f{width:80.104960pt;}
._10{width:81.008640pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fsc{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:62.064349pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.fs1{font-size:149.120000pt;}
.fs3{font-size:192.000000pt;}
.fs4{font-size:384.000000pt;}
.y18{bottom:-71.040000pt;}
.y17{bottom:-42.240000pt;}
.y16{bottom:-25.760000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.479987pt;}
.y15{bottom:3.040000pt;}
.y19{bottom:6.880000pt;}
.y14{bottom:18.560000pt;}
.y1a{bottom:38.400000pt;}
.y2{bottom:41.120013pt;}
.y13{bottom:41.280000pt;}
.y4{bottom:97.440000pt;}
.y1b{bottom:115.040000pt;}
.y65{bottom:131.840000pt;}
.y64{bottom:145.120000pt;}
.y63{bottom:149.760000pt;}
.y80{bottom:150.400000pt;}
.y95{bottom:151.520000pt;}
.yb3{bottom:160.346667pt;}
.y3b{bottom:160.506667pt;}
.y62{bottom:161.466667pt;}
.y7f{bottom:169.306667pt;}
.y94{bottom:170.426667pt;}
.yb2{bottom:176.026667pt;}
.y3a{bottom:179.386667pt;}
.y61{bottom:180.826667pt;}
.y7e{bottom:188.346667pt;}
.y93{bottom:189.466667pt;}
.y39{bottom:198.426667pt;}
.y60{bottom:199.866667pt;}
.yb1{bottom:200.026667pt;}
.y7d{bottom:207.386667pt;}
.y92{bottom:208.506667pt;}
.y38{bottom:217.466667pt;}
.y5f{bottom:218.746667pt;}
.y7c{bottom:226.266667pt;}
.y91{bottom:227.386667pt;}
.y5e{bottom:237.786667pt;}
.y7b{bottom:245.306667pt;}
.yb0{bottom:245.786667pt;}
.y90{bottom:246.426667pt;}
.y37{bottom:250.586667pt;}
.y5d{bottom:256.826667pt;}
.y7a{bottom:264.346667pt;}
.y8f{bottom:265.466667pt;}
.yaf{bottom:275.546667pt;}
.y5c{bottom:275.866667pt;}
.y79{bottom:283.386667pt;}
.y8e{bottom:284.506667pt;}
.y36{bottom:285.146667pt;}
.y12{bottom:294.426667pt;}
.y5b{bottom:294.746667pt;}
.y78{bottom:302.266667pt;}
.y8d{bottom:303.386667pt;}
.yae{bottom:305.146667pt;}
.y5a{bottom:313.786667pt;}
.y77{bottom:321.306667pt;}
.y8c{bottom:322.426667pt;}
.y35{bottom:330.426667pt;}
.y59{bottom:332.826667pt;}
.yad{bottom:334.906667pt;}
.y76{bottom:340.346667pt;}
.y8b{bottom:341.466667pt;}
.y58{bottom:351.866667pt;}
.yac{bottom:353.786667pt;}
.y75{bottom:359.386667pt;}
.y8a{bottom:360.506667pt;}
.y57{bottom:370.746667pt;}
.y34{bottom:372.026667pt;}
.yab{bottom:372.826667pt;}
.y74{bottom:378.306667pt;}
.y89{bottom:379.426667pt;}
.y11{bottom:381.666667pt;}
.y56{bottom:389.826667pt;}
.y33{bottom:391.106667pt;}
.yaa{bottom:391.906667pt;}
.y73{bottom:397.346667pt;}
.y88{bottom:398.466667pt;}
.y55{bottom:408.866667pt;}
.y32{bottom:410.146667pt;}
.ya9{bottom:410.786667pt;}
.y10{bottom:411.266667pt;}
.y72{bottom:416.386667pt;}
.y54{bottom:427.746667pt;}
.y31{bottom:429.026667pt;}
.ya8{bottom:429.826667pt;}
.y87{bottom:431.746667pt;}
.y71{bottom:435.266667pt;}
.yf{bottom:441.026667pt;}
.y30{bottom:448.066667pt;}
.ya7{bottom:448.866667pt;}
.y53{bottom:458.626667pt;}
.y70{bottom:465.026667pt;}
.y2f{bottom:467.106667pt;}
.ya6{bottom:467.906667pt;}
.ye{bottom:470.626667pt;}
.y86{bottom:473.346667pt;}
.y6f{bottom:484.066667pt;}
.y2e{bottom:485.986667pt;}
.ya5{bottom:486.786667pt;}
.y52{bottom:492.386667pt;}
.y6e{bottom:502.946667pt;}
.yd{bottom:503.906667pt;}
.y2d{bottom:505.026667pt;}
.ya4{bottom:505.826667pt;}
.y51{bottom:521.986667pt;}
.y2c{bottom:524.066667pt;}
.ya3{bottom:524.866667pt;}
.yc{bottom:538.306667pt;}
.y50{bottom:541.026667pt;}
.y2b{bottom:543.106667pt;}
.ya2{bottom:543.906667pt;}
.y4f{bottom:560.066667pt;}
.y2a{bottom:561.986667pt;}
.ya1{bottom:562.786667pt;}
.y4e{bottom:578.946667pt;}
.yb{bottom:580.226667pt;}
.y29{bottom:581.026667pt;}
.ya0{bottom:581.826667pt;}
.y4d{bottom:598.013333pt;}
.y28{bottom:600.093333pt;}
.y9f{bottom:600.893333pt;}
.y4c{bottom:617.053333pt;}
.y9e{bottom:619.773333pt;}
.y27{bottom:633.213333pt;}
.y4b{bottom:635.933333pt;}
.ya{bottom:637.853333pt;}
.y9d{bottom:638.813333pt;}
.y4a{bottom:654.973333pt;}
.y9c{bottom:657.853333pt;}
.y49{bottom:674.013333pt;}
.y26{bottom:674.973333pt;}
.y9b{bottom:676.893333pt;}
.y48{bottom:693.053333pt;}
.y9{bottom:695.453333pt;}
.y25{bottom:704.573333pt;}
.y9a{bottom:706.493333pt;}
.y47{bottom:711.933333pt;}
.y24{bottom:723.613333pt;}
.y46{bottom:730.973333pt;}
.y99{bottom:736.093333pt;}
.y23{bottom:742.653333pt;}
.y45{bottom:750.013333pt;}
.y8{bottom:753.053333pt;}
.y22{bottom:761.533333pt;}
.y98{bottom:765.853333pt;}
.y44{bottom:769.053333pt;}
.y21{bottom:780.573333pt;}
.y6d{bottom:780.893333pt;}
.y85{bottom:787.933333pt;}
.y97{bottom:795.453333pt;}
.y42{bottom:798.653333pt;}
.y20{bottom:799.613333pt;}
.y43{bottom:803.933333pt;}
.y84{bottom:807.013333pt;}
.y7{bottom:810.693333pt;}
.y6c{bottom:814.533333pt;}
.y41{bottom:817.733333pt;}
.y1f{bottom:818.693333pt;}
.y96{bottom:825.253333pt;}
.y83{bottom:826.053333pt;}
.y40{bottom:836.613333pt;}
.y6b{bottom:844.133333pt;}
.y1e{bottom:845.093333pt;}
.y82{bottom:856.773333pt;}
.y6a{bottom:863.173333pt;}
.y3f{bottom:866.373333pt;}
.y6{bottom:877.093333pt;}
.y69{bottom:882.213333pt;}
.y1d{bottom:883.493333pt;}
.y3e{bottom:885.253333pt;}
.y81{bottom:890.533333pt;}
.y68{bottom:901.253333pt;}
.y3d{bottom:904.293333pt;}
.y5{bottom:916.613333pt;}
.y67{bottom:920.133333pt;}
.y1c{bottom:921.893333pt;}
.y3c{bottom:935.173333pt;}
.y66{bottom:939.173333pt;}
.y3{bottom:956.773333pt;}
.hf{height:27.765625pt;}
.he{height:29.986875pt;}
.h9{height:41.648438pt;}
.h10{height:46.090938pt;}
.h3{height:51.088750pt;}
.hc{height:53.851732pt;}
.hd{height:64.971562pt;}
.h8{height:67.840000pt;}
.ha{height:76.320000pt;}
.h2{height:81.760000pt;}
.h5{height:92.737187pt;}
.hb{height:111.062500pt;}
.h4{height:129.387812pt;}
.h6{height:166.593750pt;}
.h7{height:333.187500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:587.933333pt;}
.w2{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.119976pt;}
.x2{left:96.031988pt;}
.x1e{left:98.751988pt;}
.xe{left:104.671976pt;}
.x5{left:113.471988pt;}
.x8{left:114.592000pt;}
.x1c{left:141.466655pt;}
.x26{left:144.026655pt;}
.xf{left:145.146655pt;}
.x7{left:180.026655pt;}
.xd{left:183.074667pt;}
.x27{left:184.026655pt;}
.xb{left:191.234667pt;}
.x9{left:196.834667pt;}
.x14{left:200.826655pt;}
.x10{left:210.106655pt;}
.x20{left:222.586655pt;}
.xa{left:230.754667pt;}
.x1d{left:288.066655pt;}
.xc{left:293.954667pt;}
.x6{left:302.306655pt;}
.x4{left:303.266655pt;}
.x11{left:316.706655pt;}
.x24{left:357.506655pt;}
.x21{left:374.146655pt;}
.x3{left:396.866655pt;}
.x12{left:452.413322pt;}
.x25{left:483.293322pt;}
.x1f{left:486.493322pt;}
.x17{left:488.413322pt;}
.x22{left:520.893322pt;}
.x18{left:543.453322pt;}
.x1b{left:545.693322pt;}
.x15{left:551.133310pt;}
.x16{left:554.013322pt;}
.x19{left:602.213322pt;}
.x1a{left:666.533322pt;}
.x13{left:668.133322pt;}
.x23{left:675.333322pt;}
}




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