
    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_9f7be569d03c7aed154a976c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_283f6d7127922446b3092485.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_58ef5492214191cca5454886.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_be3d3a8a279d36e927fa88cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970703;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_1434ee1689b5a81eb552914b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_22cc42d19fa1609fea924261.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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;}
.ls5{letter-spacing:-0.259800px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:30.906720px;}
.ls4{letter-spacing:46.002720px;}
.ls6{letter-spacing:61.146720px;}
.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;}
}
.ws2{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.680200px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.608000px;}
._2{width:1.126800px;}
._4{width:2.232000px;}
._1{width:3.403440px;}
._7{width:4.500000px;}
._a{width:5.617440px;}
._13{width:6.630240px;}
._b{width:8.070720px;}
._9{width:9.382320px;}
._8{width:10.697040px;}
._12{width:12.036240px;}
._11{width:13.215600px;}
._f{width:16.920720px;}
._d{width:18.106560px;}
._c{width:19.251360px;}
._10{width:20.435520px;}
._1b{width:21.644160px;}
._e{width:23.366160px;}
._17{width:24.390720px;}
._16{width:25.816320px;}
._19{width:27.079920px;}
._18{width:28.445760px;}
._1a{width:29.538720px;}
._1c{width:31.203360px;}
._15{width:35.531040px;}
._14{width:36.752400px;}
._6{width:136.056000px;}
._5{width:636.906000px;}
._3{width:748.956000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.240000px;}
.yb8{bottom:3.270000px;}
.y8e{bottom:3.285000px;}
.y6d{bottom:11.700000px;}
.y5f{bottom:11.880000px;}
.y90{bottom:11.925000px;}
.y67{bottom:20.340000px;}
.y8c{bottom:20.385000px;}
.y60{bottom:20.520000px;}
.yb6{bottom:20.550000px;}
.y65{bottom:20.565000px;}
.y96{bottom:28.980000px;}
.y8f{bottom:29.025000px;}
.y88{bottom:29.160000px;}
.yb{bottom:35.640000px;}
.y97{bottom:37.620000px;}
.yb7{bottom:37.650000px;}
.y8d{bottom:37.665000px;}
.y89{bottom:37.800000px;}
.ya{bottom:53.820000px;}
.y9{bottom:71.316000px;}
.y34{bottom:111.276000px;}
.yb0{bottom:114.156000px;}
.y5b{bottom:115.776000px;}
.y83{bottom:124.056000px;}
.y33{bottom:134.676000px;}
.yaf{bottom:137.556000px;}
.y5a{bottom:139.176000px;}
.y82{bottom:147.456000px;}
.y32{bottom:158.070000px;}
.yae{bottom:160.950000px;}
.y59{bottom:162.570000px;}
.y81{bottom:170.850000px;}
.y31{bottom:181.470000px;}
.yad{bottom:184.350000px;}
.y58{bottom:185.970000px;}
.y80{bottom:194.250000px;}
.y30{bottom:204.870000px;}
.yac{bottom:207.750000px;}
.y57{bottom:209.370000px;}
.y7f{bottom:217.650000px;}
.y2f{bottom:230.430000px;}
.yab{bottom:231.150000px;}
.y56{bottom:232.770000px;}
.y7e{bottom:241.050000px;}
.y2e{bottom:253.830000px;}
.yaa{bottom:254.550000px;}
.y55{bottom:256.170000px;}
.y7d{bottom:264.450000px;}
.y2d{bottom:277.230000px;}
.ya9{bottom:277.950000px;}
.y54{bottom:279.570000px;}
.y7c{bottom:287.850000px;}
.y2c{bottom:300.630000px;}
.ya8{bottom:301.350000px;}
.y53{bottom:302.970000px;}
.y7b{bottom:311.250000px;}
.y2b{bottom:324.030000px;}
.ya7{bottom:324.750000px;}
.y52{bottom:326.370000px;}
.y7a{bottom:334.650000px;}
.y2a{bottom:347.475000px;}
.ya6{bottom:348.195000px;}
.y51{bottom:349.815000px;}
.y79{bottom:358.095000px;}
.y29{bottom:370.875000px;}
.ya5{bottom:371.595000px;}
.y50{bottom:373.215000px;}
.y78{bottom:381.495000px;}
.y28{bottom:394.275000px;}
.ya4{bottom:394.995000px;}
.y4f{bottom:396.615000px;}
.y77{bottom:404.895000px;}
.y27{bottom:417.675000px;}
.ya3{bottom:418.395000px;}
.y4e{bottom:420.015000px;}
.y76{bottom:428.295000px;}
.y26{bottom:441.075000px;}
.ya2{bottom:441.795000px;}
.y4d{bottom:443.415000px;}
.y75{bottom:451.695000px;}
.ybb{bottom:462.675000px;}
.y25{bottom:464.475000px;}
.ya1{bottom:465.195000px;}
.y4c{bottom:466.815000px;}
.y86{bottom:472.215000px;}
.y74{bottom:475.095000px;}
.y24{bottom:487.875000px;}
.ya0{bottom:488.595000px;}
.y4b{bottom:490.215000px;}
.y73{bottom:498.495000px;}
.y23{bottom:511.275000px;}
.y9f{bottom:511.995000px;}
.y4a{bottom:513.615000px;}
.y72{bottom:521.895000px;}
.yba{bottom:530.355000px;}
.y85{bottom:532.335000px;}
.y22{bottom:534.675000px;}
.y9e{bottom:535.395000px;}
.y49{bottom:537.015000px;}
.y84{bottom:541.515000px;}
.y71{bottom:545.295000px;}
.yb9{bottom:548.175000px;}
.y21{bottom:558.075000px;}
.y9d{bottom:558.795000px;}
.y48{bottom:560.415000px;}
.y70{bottom:568.695000px;}
.y20{bottom:581.475000px;}
.y9c{bottom:582.195000px;}
.y47{bottom:583.815000px;}
.y6f{bottom:586.515000px;}
.yb5{bottom:600.735000px;}
.y6e{bottom:604.545000px;}
.y1f{bottom:604.905000px;}
.y9b{bottom:605.625000px;}
.y46{bottom:607.245000px;}
.y1e{bottom:628.305000px;}
.y9a{bottom:629.025000px;}
.y45{bottom:630.645000px;}
.y6c{bottom:639.825000px;}
.y1d{bottom:651.705000px;}
.y99{bottom:652.425000px;}
.yb4{bottom:653.145000px;}
.y44{bottom:654.045000px;}
.y6b{bottom:674.925000px;}
.y1c{bottom:675.105000px;}
.y98{bottom:675.825000px;}
.y43{bottom:677.445000px;}
.yb3{bottom:688.425000px;}
.y95{bottom:693.825000px;}
.y1b{bottom:698.505000px;}
.y42{bottom:700.845000px;}
.y6a{bottom:710.205000px;}
.y1a{bottom:721.905000px;}
.y41{bottom:724.245000px;}
.yb2{bottom:740.985000px;}
.y19{bottom:745.305000px;}
.y69{bottom:745.485000px;}
.y94{bottom:746.205000px;}
.y40{bottom:747.645000px;}
.y18{bottom:768.705000px;}
.y3f{bottom:771.045000px;}
.y68{bottom:780.765000px;}
.y93{bottom:781.485000px;}
.y17{bottom:792.105000px;}
.yb1{bottom:793.545000px;}
.y3e{bottom:794.445000px;}
.y16{bottom:815.505000px;}
.y66{bottom:816.045000px;}
.y92{bottom:816.765000px;}
.y3d{bottom:817.845000px;}
.y91{bottom:834.765000px;}
.y15{bottom:838.905000px;}
.y3c{bottom:841.245000px;}
.y64{bottom:851.145000px;}
.y14{bottom:862.305000px;}
.y3b{bottom:864.645000px;}
.y8b{bottom:870.045000px;}
.y13{bottom:885.750000px;}
.y63{bottom:886.470000px;}
.y3a{bottom:888.090000px;}
.y12{bottom:911.490000px;}
.y62{bottom:921.750000px;}
.y8a{bottom:922.470000px;}
.y11{bottom:934.350000px;}
.y39{bottom:934.890000px;}
.y61{bottom:957.030000px;}
.y10{bottom:957.750000px;}
.y38{bottom:958.290000px;}
.yf{bottom:981.150000px;}
.y37{bottom:981.690000px;}
.y5e{bottom:992.310000px;}
.ye{bottom:1005.090000px;}
.y87{bottom:1010.310000px;}
.yd{bottom:1027.410000px;}
.y5c{bottom:1027.590000px;}
.y36{bottom:1028.490000px;}
.yc{bottom:1050.810000px;}
.y35{bottom:1051.890000px;}
.y8{bottom:1072.410000px;}
.y7{bottom:1089.870000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1123.710000px;}
.y4{bottom:1140.660000px;}
.y3{bottom:1181.340000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hb{height:17.100000px;}
.h12{height:17.280000px;}
.hf{height:17.316000px;}
.hc{height:34.380000px;}
.hd{height:34.560000px;}
.he{height:34.596000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h14{height:42.281367px;}
.ha{height:43.302656px;}
.h9{height:43.506914px;}
.h3{height:44.240625px;}
.h8{height:46.251562px;}
.h7{height:46.736719px;}
.h4{height:50.800781px;}
.h13{height:51.660000px;}
.h11{height:51.696000px;}
.h10{height:51.840000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:155.190000px;}
.w6{width:155.520000px;}
.wa{width:160.740000px;}
.w3{width:161.820000px;}
.w9{width:169.230000px;}
.w4{width:181.110000px;}
.w7{width:185.250000px;}
.wb{width:243.435000px;}
.wc{width:247.350000px;}
.w5{width:331.995000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:5.940000px;}
.x21{left:11.880000px;}
.x1d{left:19.665000px;}
.x22{left:28.980000px;}
.x25{left:42.834000px;}
.x12{left:48.465000px;}
.x10{left:51.294000px;}
.x29{left:77.220000px;}
.x27{left:84.465000px;}
.x1{left:108.035987px;}
.x14{left:128.910000px;}
.x2{left:130.535987px;}
.x7{left:132.875987px;}
.xd{left:135.035987px;}
.x2d{left:139.895987px;}
.x4{left:157.169987px;}
.x2b{left:166.709987px;}
.x19{left:230.609987px;}
.x8{left:239.069987px;}
.x15{left:257.429987px;}
.x1c{left:263.910000px;}
.x26{left:269.130000px;}
.x11{left:270.210000px;}
.x1b{left:274.349987px;}
.x24{left:277.994987px;}
.xf{left:283.934987px;}
.x23{left:300.674987px;}
.x17{left:317.414987px;}
.xe{left:319.754987px;}
.xc{left:335.234987px;}
.xa{left:362.594987px;}
.xb{left:378.074987px;}
.x2c{left:388.154987px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x1e{left:449.895000px;}
.x13{left:452.055000px;}
.x28{left:513.285000px;}
.x3{left:518.324987px;}
.x20{left:605.805000px;}
.x18{left:666.329987px;}
.x1a{left:676.949987px;}
.x2a{left:700.889987px;}
.x16{left:707.189987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.230933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:27.472640pt;}
.ls4{letter-spacing:40.891307pt;}
.ls6{letter-spacing:54.352640pt;}
.ws2{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.429333pt;}
._2{width:1.001600pt;}
._4{width:1.984000pt;}
._1{width:3.025280pt;}
._7{width:4.000000pt;}
._a{width:4.993280pt;}
._13{width:5.893547pt;}
._b{width:7.173973pt;}
._9{width:8.339840pt;}
._8{width:9.508480pt;}
._12{width:10.698880pt;}
._11{width:11.747200pt;}
._f{width:15.040640pt;}
._d{width:16.094720pt;}
._c{width:17.112320pt;}
._10{width:18.164907pt;}
._1b{width:19.239253pt;}
._e{width:20.769920pt;}
._17{width:21.680640pt;}
._16{width:22.947840pt;}
._19{width:24.071040pt;}
._18{width:25.285120pt;}
._1a{width:26.256640pt;}
._1c{width:27.736320pt;}
._15{width:31.583147pt;}
._14{width:32.668800pt;}
._6{width:120.938667pt;}
._5{width:566.138667pt;}
._3{width:665.738667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.880000pt;}
.yb8{bottom:2.906667pt;}
.y8e{bottom:2.920000pt;}
.y6d{bottom:10.400000pt;}
.y5f{bottom:10.560000pt;}
.y90{bottom:10.600000pt;}
.y67{bottom:18.080000pt;}
.y8c{bottom:18.120000pt;}
.y60{bottom:18.240000pt;}
.yb6{bottom:18.266667pt;}
.y65{bottom:18.280000pt;}
.y96{bottom:25.760000pt;}
.y8f{bottom:25.800000pt;}
.y88{bottom:25.920000pt;}
.yb{bottom:31.680000pt;}
.y97{bottom:33.440000pt;}
.yb7{bottom:33.466667pt;}
.y8d{bottom:33.480000pt;}
.y89{bottom:33.600000pt;}
.ya{bottom:47.840000pt;}
.y9{bottom:63.392000pt;}
.y34{bottom:98.912000pt;}
.yb0{bottom:101.472000pt;}
.y5b{bottom:102.912000pt;}
.y83{bottom:110.272000pt;}
.y33{bottom:119.712000pt;}
.yaf{bottom:122.272000pt;}
.y5a{bottom:123.712000pt;}
.y82{bottom:131.072000pt;}
.y32{bottom:140.506667pt;}
.yae{bottom:143.066667pt;}
.y59{bottom:144.506667pt;}
.y81{bottom:151.866667pt;}
.y31{bottom:161.306667pt;}
.yad{bottom:163.866667pt;}
.y58{bottom:165.306667pt;}
.y80{bottom:172.666667pt;}
.y30{bottom:182.106667pt;}
.yac{bottom:184.666667pt;}
.y57{bottom:186.106667pt;}
.y7f{bottom:193.466667pt;}
.y2f{bottom:204.826667pt;}
.yab{bottom:205.466667pt;}
.y56{bottom:206.906667pt;}
.y7e{bottom:214.266667pt;}
.y2e{bottom:225.626667pt;}
.yaa{bottom:226.266667pt;}
.y55{bottom:227.706667pt;}
.y7d{bottom:235.066667pt;}
.y2d{bottom:246.426667pt;}
.ya9{bottom:247.066667pt;}
.y54{bottom:248.506667pt;}
.y7c{bottom:255.866667pt;}
.y2c{bottom:267.226667pt;}
.ya8{bottom:267.866667pt;}
.y53{bottom:269.306667pt;}
.y7b{bottom:276.666667pt;}
.y2b{bottom:288.026667pt;}
.ya7{bottom:288.666667pt;}
.y52{bottom:290.106667pt;}
.y7a{bottom:297.466667pt;}
.y2a{bottom:308.866667pt;}
.ya6{bottom:309.506667pt;}
.y51{bottom:310.946667pt;}
.y79{bottom:318.306667pt;}
.y29{bottom:329.666667pt;}
.ya5{bottom:330.306667pt;}
.y50{bottom:331.746667pt;}
.y78{bottom:339.106667pt;}
.y28{bottom:350.466667pt;}
.ya4{bottom:351.106667pt;}
.y4f{bottom:352.546667pt;}
.y77{bottom:359.906667pt;}
.y27{bottom:371.266667pt;}
.ya3{bottom:371.906667pt;}
.y4e{bottom:373.346667pt;}
.y76{bottom:380.706667pt;}
.y26{bottom:392.066667pt;}
.ya2{bottom:392.706667pt;}
.y4d{bottom:394.146667pt;}
.y75{bottom:401.506667pt;}
.ybb{bottom:411.266667pt;}
.y25{bottom:412.866667pt;}
.ya1{bottom:413.506667pt;}
.y4c{bottom:414.946667pt;}
.y86{bottom:419.746667pt;}
.y74{bottom:422.306667pt;}
.y24{bottom:433.666667pt;}
.ya0{bottom:434.306667pt;}
.y4b{bottom:435.746667pt;}
.y73{bottom:443.106667pt;}
.y23{bottom:454.466667pt;}
.y9f{bottom:455.106667pt;}
.y4a{bottom:456.546667pt;}
.y72{bottom:463.906667pt;}
.yba{bottom:471.426667pt;}
.y85{bottom:473.186667pt;}
.y22{bottom:475.266667pt;}
.y9e{bottom:475.906667pt;}
.y49{bottom:477.346667pt;}
.y84{bottom:481.346667pt;}
.y71{bottom:484.706667pt;}
.yb9{bottom:487.266667pt;}
.y21{bottom:496.066667pt;}
.y9d{bottom:496.706667pt;}
.y48{bottom:498.146667pt;}
.y70{bottom:505.506667pt;}
.y20{bottom:516.866667pt;}
.y9c{bottom:517.506667pt;}
.y47{bottom:518.946667pt;}
.y6f{bottom:521.346667pt;}
.yb5{bottom:533.986667pt;}
.y6e{bottom:537.373333pt;}
.y1f{bottom:537.693333pt;}
.y9b{bottom:538.333333pt;}
.y46{bottom:539.773333pt;}
.y1e{bottom:558.493333pt;}
.y9a{bottom:559.133333pt;}
.y45{bottom:560.573333pt;}
.y6c{bottom:568.733333pt;}
.y1d{bottom:579.293333pt;}
.y99{bottom:579.933333pt;}
.yb4{bottom:580.573333pt;}
.y44{bottom:581.373333pt;}
.y6b{bottom:599.933333pt;}
.y1c{bottom:600.093333pt;}
.y98{bottom:600.733333pt;}
.y43{bottom:602.173333pt;}
.yb3{bottom:611.933333pt;}
.y95{bottom:616.733333pt;}
.y1b{bottom:620.893333pt;}
.y42{bottom:622.973333pt;}
.y6a{bottom:631.293333pt;}
.y1a{bottom:641.693333pt;}
.y41{bottom:643.773333pt;}
.yb2{bottom:658.653333pt;}
.y19{bottom:662.493333pt;}
.y69{bottom:662.653333pt;}
.y94{bottom:663.293333pt;}
.y40{bottom:664.573333pt;}
.y18{bottom:683.293333pt;}
.y3f{bottom:685.373333pt;}
.y68{bottom:694.013333pt;}
.y93{bottom:694.653333pt;}
.y17{bottom:704.093333pt;}
.yb1{bottom:705.373333pt;}
.y3e{bottom:706.173333pt;}
.y16{bottom:724.893333pt;}
.y66{bottom:725.373333pt;}
.y92{bottom:726.013333pt;}
.y3d{bottom:726.973333pt;}
.y91{bottom:742.013333pt;}
.y15{bottom:745.693333pt;}
.y3c{bottom:747.773333pt;}
.y64{bottom:756.573333pt;}
.y14{bottom:766.493333pt;}
.y3b{bottom:768.573333pt;}
.y8b{bottom:773.373333pt;}
.y13{bottom:787.333333pt;}
.y63{bottom:787.973333pt;}
.y3a{bottom:789.413333pt;}
.y12{bottom:810.213333pt;}
.y62{bottom:819.333333pt;}
.y8a{bottom:819.973333pt;}
.y11{bottom:830.533333pt;}
.y39{bottom:831.013333pt;}
.y61{bottom:850.693333pt;}
.y10{bottom:851.333333pt;}
.y38{bottom:851.813333pt;}
.yf{bottom:872.133333pt;}
.y37{bottom:872.613333pt;}
.y5e{bottom:882.053333pt;}
.ye{bottom:893.413333pt;}
.y87{bottom:898.053333pt;}
.yd{bottom:913.253333pt;}
.y5c{bottom:913.413333pt;}
.y36{bottom:914.213333pt;}
.yc{bottom:934.053333pt;}
.y35{bottom:935.013333pt;}
.y8{bottom:953.253333pt;}
.y7{bottom:968.773333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:998.853333pt;}
.y4{bottom:1013.920000pt;}
.y3{bottom:1050.080000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hb{height:15.200000pt;}
.h12{height:15.360000pt;}
.hf{height:15.392000pt;}
.hc{height:30.560000pt;}
.hd{height:30.720000pt;}
.he{height:30.752000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h14{height:37.583438pt;}
.ha{height:38.491250pt;}
.h9{height:38.672812pt;}
.h3{height:39.325000pt;}
.h8{height:41.112500pt;}
.h7{height:41.543750pt;}
.h4{height:45.156250pt;}
.h13{height:45.920000pt;}
.h11{height:45.952000pt;}
.h10{height:46.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:137.946667pt;}
.w6{width:138.240000pt;}
.wa{width:142.880000pt;}
.w3{width:143.840000pt;}
.w9{width:150.426667pt;}
.w4{width:160.986667pt;}
.w7{width:164.666667pt;}
.wb{width:216.386667pt;}
.wc{width:219.866667pt;}
.w5{width:295.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:5.280000pt;}
.x21{left:10.560000pt;}
.x1d{left:17.480000pt;}
.x22{left:25.760000pt;}
.x25{left:38.074667pt;}
.x12{left:43.080000pt;}
.x10{left:45.594667pt;}
.x29{left:68.640000pt;}
.x27{left:75.080000pt;}
.x1{left:96.031988pt;}
.x14{left:114.586667pt;}
.x2{left:116.031988pt;}
.x7{left:118.111988pt;}
.xd{left:120.031988pt;}
.x2d{left:124.351988pt;}
.x4{left:139.706655pt;}
.x2b{left:148.186655pt;}
.x19{left:204.986655pt;}
.x8{left:212.506655pt;}
.x15{left:228.826655pt;}
.x1c{left:234.586667pt;}
.x26{left:239.226667pt;}
.x11{left:240.186667pt;}
.x1b{left:243.866655pt;}
.x24{left:247.106655pt;}
.xf{left:252.386655pt;}
.x23{left:267.266655pt;}
.x17{left:282.146655pt;}
.xe{left:284.226655pt;}
.xc{left:297.986655pt;}
.xa{left:322.306655pt;}
.xb{left:336.066655pt;}
.x2c{left:345.026655pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x1e{left:399.906667pt;}
.x13{left:401.826667pt;}
.x28{left:456.253333pt;}
.x3{left:460.733322pt;}
.x20{left:538.493333pt;}
.x18{left:592.293322pt;}
.x1a{left:601.733322pt;}
.x2a{left:623.013322pt;}
.x16{left:628.613322pt;}
}




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