
    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_cbc673730d3fb864843619fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9cc72e1b3f0d7e49b25d72bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_b68257499d350fef9a157acc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_324ca6210bb8bc9412790bfc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_01422475befb699cf262f085.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.720000px;}
.lsd{letter-spacing:3.600000px;}
.ls5{letter-spacing:10.260000px;}
.ls3{letter-spacing:42.797280px;}
.lsb{letter-spacing:64.421280px;}
.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;}
}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.576000px;}
.ws1{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-14.424000px;}
._12{margin-left:-5.001600px;}
._e{margin-left:-4.001280px;}
._6{margin-left:-2.934720px;}
._0{margin-left:-1.457280px;}
._1{width:1.176000px;}
._c{width:3.096000px;}
._d{width:4.104000px;}
._1d{width:5.313120px;}
._3{width:6.320160px;}
._2{width:7.660800px;}
._10{width:8.761440px;}
._11{width:9.876960px;}
._4{width:10.920000px;}
._5{width:12.060000px;}
._f{width:13.205280px;}
._1f{width:14.450880px;}
._16{width:15.545280px;}
._7{width:16.608000px;}
._8{width:19.440000px;}
._17{width:20.664000px;}
._a{width:21.816000px;}
._b{width:22.860000px;}
._19{width:24.456000px;}
._1a{width:25.656000px;}
._14{width:28.080000px;}
._15{width:29.448000px;}
._13{width:32.904000px;}
._22{width:44.568000px;}
._23{width:46.008000px;}
._9{width:49.824000px;}
._25{width:64.008000px;}
._26{width:65.664000px;}
._21{width:102.941040px;}
._1e{width:165.060000px;}
._1c{width:194.400000px;}
._24{width:710.640000px;}
._20{width:712.956000px;}
._18{width:928.980000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:102.636000px;}
.y3{bottom:121.536000px;}
.y2{bottom:140.436000px;}
.y9d{bottom:167.430000px;}
.y77{bottom:168.330000px;}
.y5d{bottom:168.510000px;}
.y8e{bottom:173.190000px;}
.yb8{bottom:174.450000px;}
.y30{bottom:178.950000px;}
.y4c{bottom:181.470000px;}
.y69{bottom:184.170000px;}
.yd0{bottom:194.610000px;}
.y9c{bottom:198.390000px;}
.y76{bottom:199.290000px;}
.y2f{bottom:199.650000px;}
.y82{bottom:200.370000px;}
.y8d{bottom:204.150000px;}
.yb7{bottom:205.410000px;}
.ycf{bottom:215.310000px;}
.y2e{bottom:220.350000px;}
.y5c{bottom:220.530000px;}
.y9b{bottom:229.530000px;}
.y75{bottom:230.430000px;}
.y68{bottom:230.970000px;}
.y81{bottom:231.510000px;}
.y4b{bottom:233.490000px;}
.y8c{bottom:235.290000px;}
.yb6{bottom:236.550000px;}
.y2d{bottom:241.050000px;}
.yce{bottom:257.070000px;}
.y9a{bottom:260.490000px;}
.y74{bottom:261.390000px;}
.y2c{bottom:261.750000px;}
.y80{bottom:262.470000px;}
.yb5{bottom:267.510000px;}
.y5b{bottom:272.550000px;}
.ycd{bottom:277.770000px;}
.y67{bottom:277.950000px;}
.y2b{bottom:282.450000px;}
.y8b{bottom:283.350000px;}
.y4a{bottom:285.690000px;}
.y73{bottom:292.530000px;}
.yb4{bottom:298.650000px;}
.y2a{bottom:303.150000px;}
.y5a{bottom:303.510000px;}
.y7f{bottom:310.710000px;}
.y99{bottom:314.850000px;}
.y49{bottom:316.650000px;}
.ycc{bottom:319.350000px;}
.y66{bottom:323.310000px;}
.y72{bottom:323.490000px;}
.y29{bottom:323.850000px;}
.yb3{bottom:329.610000px;}
.y59{bottom:334.650000px;}
.ycb{bottom:340.095000px;}
.y28{bottom:344.595000px;}
.y48{bottom:347.835000px;}
.y71{bottom:354.675000px;}
.yb2{bottom:360.795000px;}
.y27{bottom:365.295000px;}
.y58{bottom:365.655000px;}
.y47{bottom:378.795000px;}
.yca{bottom:381.855000px;}
.y70{bottom:385.635000px;}
.y26{bottom:385.995000px;}
.yb1{bottom:391.755000px;}
.y57{bottom:396.795000px;}
.y98{bottom:399.495000px;}
.yc9{bottom:402.555000px;}
.y25{bottom:406.695000px;}
.y46{bottom:409.755000px;}
.yc8{bottom:423.255000px;}
.y24{bottom:427.395000px;}
.yb0{bottom:430.995000px;}
.y6f{bottom:437.655000px;}
.y45{bottom:440.895000px;}
.yc7{bottom:443.955000px;}
.y23{bottom:448.095000px;}
.y56{bottom:448.815000px;}
.y97{bottom:454.575000px;}
.yc6{bottom:464.655000px;}
.y22{bottom:468.795000px;}
.y44{bottom:471.855000px;}
.yc5{bottom:485.355000px;}
.yaf{bottom:486.075000px;}
.y21{bottom:489.495000px;}
.y55{bottom:496.875000px;}
.y43{bottom:502.995000px;}
.y96{bottom:506.595000px;}
.y20{bottom:510.195000px;}
.yae{bottom:517.035000px;}
.yc4{bottom:527.115000px;}
.y1f{bottom:530.895000px;}
.y42{bottom:533.955000px;}
.yc3{bottom:547.815000px;}
.yad{bottom:548.175000px;}
.y6e{bottom:549.435000px;}
.y1e{bottom:551.595000px;}
.y95{bottom:558.615000px;}
.y41{bottom:565.095000px;}
.y1d{bottom:572.295000px;}
.y6d{bottom:575.175000px;}
.yac{bottom:579.135000px;}
.y65{bottom:585.615000px;}
.yc2{bottom:589.395000px;}
.y1c{bottom:592.995000px;}
.y40{bottom:596.055000px;}
.yc1{bottom:610.125000px;}
.yab{bottom:610.305000px;}
.y94{bottom:610.845000px;}
.y1b{bottom:613.725000px;}
.y6c{bottom:624.705000px;}
.y3f{bottom:627.225000px;}
.yc0{bottom:630.825000px;}
.y1a{bottom:634.425000px;}
.y64{bottom:634.965000px;}
.yaa{bottom:641.265000px;}
.ybf{bottom:651.525000px;}
.y19{bottom:655.125000px;}
.y3e{bottom:658.185000px;}
.y93{bottom:660.345000px;}
.y63{bottom:666.105000px;}
.ya9{bottom:672.405000px;}
.y6b{bottom:674.205000px;}
.y18{bottom:675.825000px;}
.y8a{bottom:688.425000px;}
.y3d{bottom:689.325000px;}
.ybe{bottom:693.285000px;}
.y17{bottom:696.525000px;}
.y62{bottom:697.065000px;}
.ya8{bottom:703.365000px;}
.y92{bottom:707.145000px;}
.ybd{bottom:713.985000px;}
.y16{bottom:717.225000px;}
.y6a{bottom:719.565000px;}
.y3c{bottom:720.285000px;}
.y61{bottom:728.205000px;}
.ya7{bottom:734.505000px;}
.ybc{bottom:734.685000px;}
.y7e{bottom:735.045000px;}
.y89{bottom:737.745000px;}
.y15{bottom:737.925000px;}
.y3b{bottom:751.425000px;}
.ybb{bottom:755.385000px;}
.y14{bottom:758.625000px;}
.y60{bottom:759.165000px;}
.ya6{bottom:765.465000px;}
.y88{bottom:768.885000px;}
.y13{bottom:779.325000px;}
.y3a{bottom:782.385000px;}
.y7d{bottom:784.365000px;}
.ya5{bottom:796.605000px;}
.y12{bottom:800.025000px;}
.y5f{bottom:807.225000px;}
.yba{bottom:809.565000px;}
.y39{bottom:813.525000px;}
.y54{bottom:814.245000px;}
.y11{bottom:820.725000px;}
.y87{bottom:820.905000px;}
.ya4{bottom:827.565000px;}
.y7c{bottom:836.385000px;}
.y10{bottom:841.425000px;}
.y38{bottom:844.485000px;}
.yb9{bottom:852.585000px;}
.ya3{bottom:858.705000px;}
.yf{bottom:862.125000px;}
.y53{bottom:863.565000px;}
.y86{bottom:872.970000px;}
.y37{bottom:875.670000px;}
.ye{bottom:882.870000px;}
.y7b{bottom:888.450000px;}
.ya2{bottom:889.710000px;}
.y52{bottom:894.570000px;}
.yd{bottom:903.570000px;}
.y36{bottom:906.630000px;}
.ya1{bottom:920.850000px;}
.yc{bottom:924.270000px;}
.y85{bottom:924.990000px;}
.y51{bottom:925.710000px;}
.yd5{bottom:930.570000px;}
.y35{bottom:937.770000px;}
.y7a{bottom:938.130000px;}
.yb{bottom:944.970000px;}
.yd4{bottom:951.270000px;}
.ya0{bottom:951.810000px;}
.y50{bottom:956.670000px;}
.ya{bottom:966.930000px;}
.y34{bottom:968.730000px;}
.y84{bottom:977.010000px;}
.y9f{bottom:982.950000px;}
.y79{bottom:984.930000px;}
.y4f{bottom:987.810000px;}
.yd3{bottom:992.850000px;}
.y9{bottom:994.470000px;}
.y91{bottom:995.550000px;}
.y33{bottom:999.870000px;}
.yd2{bottom:1013.550000px;}
.y9e{bottom:1013.910000px;}
.y4e{bottom:1018.590000px;}
.y8{bottom:1020.750000px;}
.y83{bottom:1029.210000px;}
.y32{bottom:1030.830000px;}
.y78{bottom:1031.910000px;}
.y7{bottom:1042.890000px;}
.y90{bottom:1045.050000px;}
.yd1{bottom:1055.310000px;}
.y6{bottom:1070.430000px;}
.y4d{bottom:1072.950000px;}
.y31{bottom:1073.130000px;}
.y8f{bottom:1076.010000px;}
.y5e{bottom:1078.710000px;}
.y1{bottom:1233.900000px;}
.h7{height:43.681992px;}
.h5{height:52.628906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:106.415987px;}
.x8{left:133.415987px;}
.x5{left:135.935987px;}
.x7{left:138.815987px;}
.x2{left:148.895987px;}
.x9{left:159.509987px;}
.x16{left:166.169987px;}
.x12{left:175.709987px;}
.x6{left:251.489987px;}
.x11{left:255.089987px;}
.x17{left:265.889987px;}
.x15{left:281.414987px;}
.x13{left:314.354987px;}
.xd{left:316.514987px;}
.xb{left:386.534987px;}
.xa{left:402.554987px;}
.x10{left:421.634987px;}
.xf{left:464.834987px;}
.x1{left:467.744987px;}
.xc{left:592.844987px;}
.x14{left:723.749987px;}
.xe{left:743.549987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsd{letter-spacing:3.200000pt;}
.ls5{letter-spacing:9.120000pt;}
.ls3{letter-spacing:38.042027pt;}
.lsb{letter-spacing:57.263360pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.512000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-12.821333pt;}
._12{margin-left:-4.445867pt;}
._e{margin-left:-3.556693pt;}
._6{margin-left:-2.608640pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.045333pt;}
._c{width:2.752000pt;}
._d{width:3.648000pt;}
._1d{width:4.722773pt;}
._3{width:5.617920pt;}
._2{width:6.809600pt;}
._10{width:7.787947pt;}
._11{width:8.779520pt;}
._4{width:9.706667pt;}
._5{width:10.720000pt;}
._f{width:11.738027pt;}
._1f{width:12.845227pt;}
._16{width:13.818027pt;}
._7{width:14.762667pt;}
._8{width:17.280000pt;}
._17{width:18.368000pt;}
._a{width:19.392000pt;}
._b{width:20.320000pt;}
._19{width:21.738667pt;}
._1a{width:22.805333pt;}
._14{width:24.960000pt;}
._15{width:26.176000pt;}
._13{width:29.248000pt;}
._22{width:39.616000pt;}
._23{width:40.896000pt;}
._9{width:44.288000pt;}
._25{width:56.896000pt;}
._26{width:58.368000pt;}
._21{width:91.503147pt;}
._1e{width:146.720000pt;}
._1c{width:172.800000pt;}
._24{width:631.680000pt;}
._20{width:633.738667pt;}
._18{width:825.760000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:91.232000pt;}
.y3{bottom:108.032000pt;}
.y2{bottom:124.832000pt;}
.y9d{bottom:148.826667pt;}
.y77{bottom:149.626667pt;}
.y5d{bottom:149.786667pt;}
.y8e{bottom:153.946667pt;}
.yb8{bottom:155.066667pt;}
.y30{bottom:159.066667pt;}
.y4c{bottom:161.306667pt;}
.y69{bottom:163.706667pt;}
.yd0{bottom:172.986667pt;}
.y9c{bottom:176.346667pt;}
.y76{bottom:177.146667pt;}
.y2f{bottom:177.466667pt;}
.y82{bottom:178.106667pt;}
.y8d{bottom:181.466667pt;}
.yb7{bottom:182.586667pt;}
.ycf{bottom:191.386667pt;}
.y2e{bottom:195.866667pt;}
.y5c{bottom:196.026667pt;}
.y9b{bottom:204.026667pt;}
.y75{bottom:204.826667pt;}
.y68{bottom:205.306667pt;}
.y81{bottom:205.786667pt;}
.y4b{bottom:207.546667pt;}
.y8c{bottom:209.146667pt;}
.yb6{bottom:210.266667pt;}
.y2d{bottom:214.266667pt;}
.yce{bottom:228.506667pt;}
.y9a{bottom:231.546667pt;}
.y74{bottom:232.346667pt;}
.y2c{bottom:232.666667pt;}
.y80{bottom:233.306667pt;}
.yb5{bottom:237.786667pt;}
.y5b{bottom:242.266667pt;}
.ycd{bottom:246.906667pt;}
.y67{bottom:247.066667pt;}
.y2b{bottom:251.066667pt;}
.y8b{bottom:251.866667pt;}
.y4a{bottom:253.946667pt;}
.y73{bottom:260.026667pt;}
.yb4{bottom:265.466667pt;}
.y2a{bottom:269.466667pt;}
.y5a{bottom:269.786667pt;}
.y7f{bottom:276.186667pt;}
.y99{bottom:279.866667pt;}
.y49{bottom:281.466667pt;}
.ycc{bottom:283.866667pt;}
.y66{bottom:287.386667pt;}
.y72{bottom:287.546667pt;}
.y29{bottom:287.866667pt;}
.yb3{bottom:292.986667pt;}
.y59{bottom:297.466667pt;}
.ycb{bottom:302.306667pt;}
.y28{bottom:306.306667pt;}
.y48{bottom:309.186667pt;}
.y71{bottom:315.266667pt;}
.yb2{bottom:320.706667pt;}
.y27{bottom:324.706667pt;}
.y58{bottom:325.026667pt;}
.y47{bottom:336.706667pt;}
.yca{bottom:339.426667pt;}
.y70{bottom:342.786667pt;}
.y26{bottom:343.106667pt;}
.yb1{bottom:348.226667pt;}
.y57{bottom:352.706667pt;}
.y98{bottom:355.106667pt;}
.yc9{bottom:357.826667pt;}
.y25{bottom:361.506667pt;}
.y46{bottom:364.226667pt;}
.yc8{bottom:376.226667pt;}
.y24{bottom:379.906667pt;}
.yb0{bottom:383.106667pt;}
.y6f{bottom:389.026667pt;}
.y45{bottom:391.906667pt;}
.yc7{bottom:394.626667pt;}
.y23{bottom:398.306667pt;}
.y56{bottom:398.946667pt;}
.y97{bottom:404.066667pt;}
.yc6{bottom:413.026667pt;}
.y22{bottom:416.706667pt;}
.y44{bottom:419.426667pt;}
.yc5{bottom:431.426667pt;}
.yaf{bottom:432.066667pt;}
.y21{bottom:435.106667pt;}
.y55{bottom:441.666667pt;}
.y43{bottom:447.106667pt;}
.y96{bottom:450.306667pt;}
.y20{bottom:453.506667pt;}
.yae{bottom:459.586667pt;}
.yc4{bottom:468.546667pt;}
.y1f{bottom:471.906667pt;}
.y42{bottom:474.626667pt;}
.yc3{bottom:486.946667pt;}
.yad{bottom:487.266667pt;}
.y6e{bottom:488.386667pt;}
.y1e{bottom:490.306667pt;}
.y95{bottom:496.546667pt;}
.y41{bottom:502.306667pt;}
.y1d{bottom:508.706667pt;}
.y6d{bottom:511.266667pt;}
.yac{bottom:514.786667pt;}
.y65{bottom:520.546667pt;}
.yc2{bottom:523.906667pt;}
.y1c{bottom:527.106667pt;}
.y40{bottom:529.826667pt;}
.yc1{bottom:542.333333pt;}
.yab{bottom:542.493333pt;}
.y94{bottom:542.973333pt;}
.y1b{bottom:545.533333pt;}
.y6c{bottom:555.293333pt;}
.y3f{bottom:557.533333pt;}
.yc0{bottom:560.733333pt;}
.y1a{bottom:563.933333pt;}
.y64{bottom:564.413333pt;}
.yaa{bottom:570.013333pt;}
.ybf{bottom:579.133333pt;}
.y19{bottom:582.333333pt;}
.y3e{bottom:585.053333pt;}
.y93{bottom:586.973333pt;}
.y63{bottom:592.093333pt;}
.ya9{bottom:597.693333pt;}
.y6b{bottom:599.293333pt;}
.y18{bottom:600.733333pt;}
.y8a{bottom:611.933333pt;}
.y3d{bottom:612.733333pt;}
.ybe{bottom:616.253333pt;}
.y17{bottom:619.133333pt;}
.y62{bottom:619.613333pt;}
.ya8{bottom:625.213333pt;}
.y92{bottom:628.573333pt;}
.ybd{bottom:634.653333pt;}
.y16{bottom:637.533333pt;}
.y6a{bottom:639.613333pt;}
.y3c{bottom:640.253333pt;}
.y61{bottom:647.293333pt;}
.ya7{bottom:652.893333pt;}
.ybc{bottom:653.053333pt;}
.y7e{bottom:653.373333pt;}
.y89{bottom:655.773333pt;}
.y15{bottom:655.933333pt;}
.y3b{bottom:667.933333pt;}
.ybb{bottom:671.453333pt;}
.y14{bottom:674.333333pt;}
.y60{bottom:674.813333pt;}
.ya6{bottom:680.413333pt;}
.y88{bottom:683.453333pt;}
.y13{bottom:692.733333pt;}
.y3a{bottom:695.453333pt;}
.y7d{bottom:697.213333pt;}
.ya5{bottom:708.093333pt;}
.y12{bottom:711.133333pt;}
.y5f{bottom:717.533333pt;}
.yba{bottom:719.613333pt;}
.y39{bottom:723.133333pt;}
.y54{bottom:723.773333pt;}
.y11{bottom:729.533333pt;}
.y87{bottom:729.693333pt;}
.ya4{bottom:735.613333pt;}
.y7c{bottom:743.453333pt;}
.y10{bottom:747.933333pt;}
.y38{bottom:750.653333pt;}
.yb9{bottom:757.853333pt;}
.ya3{bottom:763.293333pt;}
.yf{bottom:766.333333pt;}
.y53{bottom:767.613333pt;}
.y86{bottom:775.973333pt;}
.y37{bottom:778.373333pt;}
.ye{bottom:784.773333pt;}
.y7b{bottom:789.733333pt;}
.ya2{bottom:790.853333pt;}
.y52{bottom:795.173333pt;}
.yd{bottom:803.173333pt;}
.y36{bottom:805.893333pt;}
.ya1{bottom:818.533333pt;}
.yc{bottom:821.573333pt;}
.y85{bottom:822.213333pt;}
.y51{bottom:822.853333pt;}
.yd5{bottom:827.173333pt;}
.y35{bottom:833.573333pt;}
.y7a{bottom:833.893333pt;}
.yb{bottom:839.973333pt;}
.yd4{bottom:845.573333pt;}
.ya0{bottom:846.053333pt;}
.y50{bottom:850.373333pt;}
.ya{bottom:859.493333pt;}
.y34{bottom:861.093333pt;}
.y84{bottom:868.453333pt;}
.y9f{bottom:873.733333pt;}
.y79{bottom:875.493333pt;}
.y4f{bottom:878.053333pt;}
.yd3{bottom:882.533333pt;}
.y9{bottom:883.973333pt;}
.y91{bottom:884.933333pt;}
.y33{bottom:888.773333pt;}
.yd2{bottom:900.933333pt;}
.y9e{bottom:901.253333pt;}
.y4e{bottom:905.413333pt;}
.y8{bottom:907.333333pt;}
.y83{bottom:914.853333pt;}
.y32{bottom:916.293333pt;}
.y78{bottom:917.253333pt;}
.y7{bottom:927.013333pt;}
.y90{bottom:928.933333pt;}
.yd1{bottom:938.053333pt;}
.y6{bottom:951.493333pt;}
.y4d{bottom:953.733333pt;}
.y31{bottom:953.893333pt;}
.y8f{bottom:956.453333pt;}
.y5e{bottom:958.853333pt;}
.y1{bottom:1096.800000pt;}
.h7{height:38.828437pt;}
.h5{height:46.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:94.591988pt;}
.x8{left:118.591988pt;}
.x5{left:120.831988pt;}
.x7{left:123.391988pt;}
.x2{left:132.351988pt;}
.x9{left:141.786655pt;}
.x16{left:147.706655pt;}
.x12{left:156.186655pt;}
.x6{left:223.546655pt;}
.x11{left:226.746655pt;}
.x17{left:236.346655pt;}
.x15{left:250.146655pt;}
.x13{left:279.426655pt;}
.xd{left:281.346655pt;}
.xb{left:343.586655pt;}
.xa{left:357.826655pt;}
.x10{left:374.786655pt;}
.xf{left:413.186655pt;}
.x1{left:415.773322pt;}
.xc{left:526.973322pt;}
.x14{left:643.333322pt;}
.xe{left:660.933322pt;}
.x3{left:699.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; }
  