
    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_802e0d863ccd0b4efb693503.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_7b34cfb794126af1b2d0d956.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_bf8d468a045f1f067d4756e5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5cce2c6182890378ee79f372.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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;}
.lse{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.440000px;}
.lsd{letter-spacing:2.160000px;}
.ls4{letter-spacing:12.240000px;}
.ls7{letter-spacing:323.280000px;}
.lsb{letter-spacing:329.760000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-347.760000px;}
.ws7{word-spacing:-341.280000px;}
.ws4{word-spacing:-19.440000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.496000px;}
.wsa{word-spacing:-16.560000px;}
.ws0{word-spacing:-11.880000px;}
.ws2{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._1e{margin-left:-329.760000px;}
._1c{margin-left:-323.280000px;}
._1f{margin-left:-6.546240px;}
._c{margin-left:-3.453120px;}
._8{margin-left:-2.270880px;}
._0{margin-left:-1.092960px;}
._5{width:1.023840px;}
._1{width:2.090880px;}
._6{width:3.720960px;}
._7{width:4.753440px;}
._10{width:6.356160px;}
._9{width:7.842240px;}
._13{width:9.023040px;}
._a{width:10.024800px;}
._16{width:11.188800px;}
._12{width:12.309120px;}
._2{width:13.970880px;}
._4{width:15.206400px;}
._3{width:16.344480px;}
._11{width:19.124640px;}
._18{width:20.795040px;}
._17{width:22.430880px;}
._d{width:25.068960px;}
._f{width:26.102880px;}
._e{width:27.508320px;}
._15{width:28.766400px;}
._14{width:30.410400px;}
._25{width:31.798080px;}
._1a{width:33.310080px;}
._19{width:34.344000px;}
._1b{width:36.079200px;}
._b{width:46.107840px;}
._1d{width:47.520000px;}
._27{width:49.370880px;}
._26{width:50.400000px;}
._28{width:51.906720px;}
._23{width:89.064000px;}
._24{width:90.753120px;}
._22{width:117.948000px;}
._20{width:152.196000px;}
._21{width:535.532160px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:60.624000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:5.790000px;}
.y76{bottom:12.930000px;}
.y8c{bottom:13.215000px;}
.y60{bottom:14.760000px;}
.y5b{bottom:14.790000px;}
.y62{bottom:14.805000px;}
.y9e{bottom:17.310000px;}
.y5d{bottom:30.240000px;}
.y6e{bottom:34.095000px;}
.y86{bottom:34.380000px;}
.y9c{bottom:43.170000px;}
.y5f{bottom:45.720000px;}
.y66{bottom:45.750000px;}
.y64{bottom:46.080000px;}
.y2{bottom:46.440000px;}
.y77{bottom:49.605000px;}
.y5c{bottom:61.560000px;}
.y59{bottom:61.920000px;}
.y90{bottom:65.445000px;}
.y1{bottom:66.240000px;}
.y6f{bottom:72.105000px;}
.y5e{bottom:77.040000px;}
.y91{bottom:87.015000px;}
.y87{bottom:87.630000px;}
.yae{bottom:89.850000px;}
.y9d{bottom:99.465000px;}
.y92{bottom:108.570000px;}
.y70{bottom:110.160000px;}
.y8d{bottom:111.525000px;}
.yad{bottom:114.735000px;}
.y51{bottom:115.596000px;}
.y8e{bottom:119.445000px;}
.yaf{bottom:127.440000px;}
.y84{bottom:129.636000px;}
.y2f{bottom:129.996000px;}
.y93{bottom:130.140000px;}
.yac{bottom:134.895000px;}
.y78{bottom:138.525000px;}
.y88{bottom:140.865000px;}
.y50{bottom:146.556000px;}
.ya3{bottom:146.985000px;}
.y71{bottom:148.170000px;}
.y94{bottom:151.710000px;}
.yab{bottom:155.415000px;}
.y2e{bottom:160.950000px;}
.y95{bottom:173.265000px;}
.yaa{bottom:175.575000px;}
.yb4{bottom:177.150000px;}
.y4f{bottom:177.510000px;}
.y72{bottom:186.225000px;}
.y2d{bottom:191.910000px;}
.y89{bottom:194.115000px;}
.y96{bottom:194.835000px;}
.ya9{bottom:195.735000px;}
.y4e{bottom:208.515000px;}
.y6c{bottom:211.395000px;}
.y97{bottom:216.390000px;}
.ya8{bottom:217.695000px;}
.y83{bottom:222.915000px;}
.y2c{bottom:223.275000px;}
.y73{bottom:224.250000px;}
.ya7{bottom:237.885000px;}
.y98{bottom:237.990000px;}
.y57{bottom:239.475000px;}
.y4d{bottom:239.835000px;}
.y6b{bottom:242.355000px;}
.y8a{bottom:247.350000px;}
.y82{bottom:253.515000px;}
.y2b{bottom:254.235000px;}
.y99{bottom:259.560000px;}
.y7a{bottom:261.360000px;}
.y74{bottom:262.290000px;}
.ya6{bottom:262.725000px;}
.y4c{bottom:270.795000px;}
.y6a{bottom:273.315000px;}
.y9a{bottom:281.130000px;}
.ya5{bottom:282.885000px;}
.y2a{bottom:285.195000px;}
.ya2{bottom:291.030000px;}
.y75{bottom:300.315000px;}
.y8b{bottom:300.600000px;}
.yb3{bottom:301.395000px;}
.y4b{bottom:301.755000px;}
.y9b{bottom:302.685000px;}
.ya4{bottom:303.045000px;}
.y69{bottom:304.275000px;}
.y29{bottom:316.155000px;}
.y68{bottom:330.945000px;}
.y79{bottom:331.200000px;}
.y6d{bottom:331.560000px;}
.y4a{bottom:332.745000px;}
.y81{bottom:347.145000px;}
.y28{bottom:347.505000px;}
.y49{bottom:364.065000px;}
.ya1{bottom:373.680000px;}
.y80{bottom:373.785000px;}
.y8f{bottom:374.040000px;}
.y27{bottom:378.465000px;}
.yb2{bottom:394.665000px;}
.y48{bottom:395.025000px;}
.y26{bottom:409.425000px;}
.y47{bottom:425.985000px;}
.y25{bottom:440.385000px;}
.yb1{bottom:456.630000px;}
.y46{bottom:456.990000px;}
.y24{bottom:471.390000px;}
.y45{bottom:487.590000px;}
.y56{bottom:487.950000px;}
.y23{bottom:502.710000px;}
.yb0{bottom:518.910000px;}
.y44{bottom:519.270000px;}
.y22{bottom:533.310000px;}
.y43{bottom:550.230000px;}
.y21{bottom:564.630000px;}
.y42{bottom:581.220000px;}
.y20{bottom:595.260000px;}
.y9f{bottom:599.040000px;}
.y41{bottom:612.180000px;}
.y1f{bottom:626.580000px;}
.y40{bottom:643.500000px;}
.y1e{bottom:664.380000px;}
.y67{bottom:669.780000px;}
.y3f{bottom:674.460000px;}
.y65{bottom:687.060000px;}
.y1d{bottom:688.500000px;}
.y3e{bottom:705.450000px;}
.y7f{bottom:712.650000px;}
.y1c{bottom:719.490000px;}
.y3d{bottom:736.410000px;}
.y7e{bottom:743.610000px;}
.y63{bottom:749.730000px;}
.y1b{bottom:750.810000px;}
.y3c{bottom:767.730000px;}
.y7d{bottom:774.930000px;}
.y1a{bottom:781.770000px;}
.y3b{bottom:798.690000px;}
.y7c{bottom:805.890000px;}
.y61{bottom:812.730000px;}
.y19{bottom:813.090000px;}
.y3a{bottom:829.695000px;}
.y7b{bottom:832.575000px;}
.y85{bottom:832.680000px;}
.y18{bottom:844.095000px;}
.y58{bottom:844.455000px;}
.y39{bottom:860.655000px;}
.y17{bottom:875.415000px;}
.y38{bottom:891.975000px;}
.y16{bottom:906.375000px;}
.y37{bottom:922.575000px;}
.y55{bottom:922.935000px;}
.y15{bottom:925.455000px;}
.y14{bottom:936.615000px;}
.y5a{bottom:938.415000px;}
.y13{bottom:947.775000px;}
.y36{bottom:953.565000px;}
.y54{bottom:953.925000px;}
.y12{bottom:958.965000px;}
.y11{bottom:970.125000px;}
.y10{bottom:981.285000px;}
.y35{bottom:984.525000px;}
.y53{bottom:984.885000px;}
.yf{bottom:992.445000px;}
.ye{bottom:1003.605000px;}
.yd{bottom:1014.765000px;}
.y34{bottom:1016.205000px;}
.yc{bottom:1025.925000px;}
.yb{bottom:1037.085000px;}
.y33{bottom:1047.165000px;}
.ya{bottom:1048.245000px;}
.y9{bottom:1060.845000px;}
.y8{bottom:1075.605000px;}
.y52{bottom:1077.810000px;}
.y32{bottom:1078.170000px;}
.y7{bottom:1090.410000px;}
.y6{bottom:1104.090000px;}
.y31{bottom:1109.130000px;}
.y5{bottom:1117.770000px;}
.y4{bottom:1131.450000px;}
.y30{bottom:1140.450000px;}
.y3{bottom:1145.490000px;}
.h14{height:28.440000px;}
.hb{height:30.996000px;}
.h6{height:35.332031px;}
.h5{height:46.638281px;}
.h4{height:47.891250px;}
.h3{height:50.229844px;}
.h9{height:52.066406px;}
.h12{height:59.357813px;}
.h13{height:59.499141px;}
.he{height:61.956000px;}
.hd{height:62.280000px;}
.h2{height:65.010937px;}
.h7{height:70.664062px;}
.h10{height:70.805391px;}
.h8{height:72.562500px;}
.hc{height:93.240000px;}
.ha{height:124.956000px;}
.hf{height:323.640000px;}
.h11{height:324.000000px;}
.h15{height:324.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:63.360000px;}
.w8{width:105.516000px;}
.w6{width:127.116000px;}
.w7{width:137.592000px;}
.w9{width:147.996000px;}
.w3{width:156.315000px;}
.w5{width:254.595000px;}
.w4{width:265.425000px;}
.wc{width:571.320000px;}
.wa{width:572.400000px;}
.wb{width:572.760000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:7.560000px;}
.x18{left:10.080000px;}
.x20{left:11.520000px;}
.x1a{left:12.960000px;}
.x22{left:16.560000px;}
.x17{left:20.880000px;}
.x1f{left:23.040000px;}
.x1b{left:24.480000px;}
.x1e{left:27.000000px;}
.x15{left:28.440000px;}
.x12{left:30.240000px;}
.x11{left:32.040000px;}
.x21{left:37.440000px;}
.x1d{left:41.796000px;}
.x16{left:42.870000px;}
.x30{left:45.930000px;}
.x1c{left:48.240000px;}
.x2a{left:50.370000px;}
.xd{left:51.519000px;}
.x23{left:52.920000px;}
.x2b{left:60.765000px;}
.x29{left:64.800000px;}
.x10{left:72.000000px;}
.x28{left:73.800000px;}
.x27{left:82.830000px;}
.xe{left:90.405000px;}
.x31{left:101.700000px;}
.x2{left:106.235987px;}
.x2c{left:120.995987px;}
.x3{left:134.675987px;}
.x2f{left:139.470000px;}
.xa{left:146.591987px;}
.xb{left:150.194987px;}
.x9{left:159.554987px;}
.x2e{left:160.560000px;}
.x7{left:166.394987px;}
.x32{left:178.230000px;}
.x25{left:200.234987px;}
.x34{left:219.810000px;}
.xc{left:230.834987px;}
.x35{left:241.410000px;}
.x26{left:244.184987px;}
.x33{left:257.760000px;}
.x8{left:263.624987px;}
.x37{left:317.775000px;}
.x2d{left:333.149987px;}
.x36{left:336.570000px;}
.x6{left:388.589987px;}
.x13{left:391.470000px;}
.x4{left:413.069987px;}
.x1{left:442.259987px;}
.x5{left:446.579987px;}
.xf{left:529.770000px;}
.x19{left:636.015000px;}
.x24{left:732.884987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls4{letter-spacing:10.880000pt;}
.ls7{letter-spacing:287.360000pt;}
.lsb{letter-spacing:293.120000pt;}
.ws9{word-spacing:-309.120000pt;}
.ws7{word-spacing:-303.360000pt;}
.ws4{word-spacing:-17.280000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.552000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws0{word-spacing:-10.560000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._1e{margin-left:-293.120000pt;}
._1c{margin-left:-287.360000pt;}
._1f{margin-left:-5.818880pt;}
._c{margin-left:-3.069440pt;}
._8{margin-left:-2.018560pt;}
._0{margin-left:-0.971520pt;}
._5{width:0.910080pt;}
._1{width:1.858560pt;}
._6{width:3.307520pt;}
._7{width:4.225280pt;}
._10{width:5.649920pt;}
._9{width:6.970880pt;}
._13{width:8.020480pt;}
._a{width:8.910933pt;}
._16{width:9.945600pt;}
._12{width:10.941440pt;}
._2{width:12.418560pt;}
._4{width:13.516800pt;}
._3{width:14.528427pt;}
._11{width:16.999680pt;}
._18{width:18.484480pt;}
._17{width:19.938560pt;}
._d{width:22.283520pt;}
._f{width:23.202560pt;}
._e{width:24.451840pt;}
._15{width:25.570133pt;}
._14{width:27.031467pt;}
._25{width:28.264960pt;}
._1a{width:29.608960pt;}
._19{width:30.528000pt;}
._1b{width:32.070400pt;}
._b{width:40.984747pt;}
._1d{width:42.240000pt;}
._27{width:43.885227pt;}
._26{width:44.800000pt;}
._28{width:46.139307pt;}
._23{width:79.168000pt;}
._24{width:80.669440pt;}
._22{width:104.842667pt;}
._20{width:135.285333pt;}
._21{width:476.028587pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:53.888000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:5.146667pt;}
.y76{bottom:11.493333pt;}
.y8c{bottom:11.746667pt;}
.y60{bottom:13.120000pt;}
.y5b{bottom:13.146667pt;}
.y62{bottom:13.160000pt;}
.y9e{bottom:15.386667pt;}
.y5d{bottom:26.880000pt;}
.y6e{bottom:30.306667pt;}
.y86{bottom:30.560000pt;}
.y9c{bottom:38.373333pt;}
.y5f{bottom:40.640000pt;}
.y66{bottom:40.666667pt;}
.y64{bottom:40.960000pt;}
.y2{bottom:41.280000pt;}
.y77{bottom:44.093333pt;}
.y5c{bottom:54.720000pt;}
.y59{bottom:55.040000pt;}
.y90{bottom:58.173333pt;}
.y1{bottom:58.880000pt;}
.y6f{bottom:64.093333pt;}
.y5e{bottom:68.480000pt;}
.y91{bottom:77.346667pt;}
.y87{bottom:77.893333pt;}
.yae{bottom:79.866667pt;}
.y9d{bottom:88.413333pt;}
.y92{bottom:96.506667pt;}
.y70{bottom:97.920000pt;}
.y8d{bottom:99.133333pt;}
.yad{bottom:101.986667pt;}
.y51{bottom:102.752000pt;}
.y8e{bottom:106.173333pt;}
.yaf{bottom:113.280000pt;}
.y84{bottom:115.232000pt;}
.y2f{bottom:115.552000pt;}
.y93{bottom:115.680000pt;}
.yac{bottom:119.906667pt;}
.y78{bottom:123.133333pt;}
.y88{bottom:125.213333pt;}
.y50{bottom:130.272000pt;}
.ya3{bottom:130.653333pt;}
.y71{bottom:131.706667pt;}
.y94{bottom:134.853333pt;}
.yab{bottom:138.146667pt;}
.y2e{bottom:143.066667pt;}
.y95{bottom:154.013333pt;}
.yaa{bottom:156.066667pt;}
.yb4{bottom:157.466667pt;}
.y4f{bottom:157.786667pt;}
.y72{bottom:165.533333pt;}
.y2d{bottom:170.586667pt;}
.y89{bottom:172.546667pt;}
.y96{bottom:173.186667pt;}
.ya9{bottom:173.986667pt;}
.y4e{bottom:185.346667pt;}
.y6c{bottom:187.906667pt;}
.y97{bottom:192.346667pt;}
.ya8{bottom:193.506667pt;}
.y83{bottom:198.146667pt;}
.y2c{bottom:198.466667pt;}
.y73{bottom:199.333333pt;}
.ya7{bottom:211.453333pt;}
.y98{bottom:211.546667pt;}
.y57{bottom:212.866667pt;}
.y4d{bottom:213.186667pt;}
.y6b{bottom:215.426667pt;}
.y8a{bottom:219.866667pt;}
.y82{bottom:225.346667pt;}
.y2b{bottom:225.986667pt;}
.y99{bottom:230.720000pt;}
.y7a{bottom:232.320000pt;}
.y74{bottom:233.146667pt;}
.ya6{bottom:233.533333pt;}
.y4c{bottom:240.706667pt;}
.y6a{bottom:242.946667pt;}
.y9a{bottom:249.893333pt;}
.ya5{bottom:251.453333pt;}
.y2a{bottom:253.506667pt;}
.ya2{bottom:258.693333pt;}
.y75{bottom:266.946667pt;}
.y8b{bottom:267.200000pt;}
.yb3{bottom:267.906667pt;}
.y4b{bottom:268.226667pt;}
.y9b{bottom:269.053333pt;}
.ya4{bottom:269.373333pt;}
.y69{bottom:270.466667pt;}
.y29{bottom:281.026667pt;}
.y68{bottom:294.173333pt;}
.y79{bottom:294.400000pt;}
.y6d{bottom:294.720000pt;}
.y4a{bottom:295.773333pt;}
.y81{bottom:308.573333pt;}
.y28{bottom:308.893333pt;}
.y49{bottom:323.613333pt;}
.ya1{bottom:332.160000pt;}
.y80{bottom:332.253333pt;}
.y8f{bottom:332.480000pt;}
.y27{bottom:336.413333pt;}
.yb2{bottom:350.813333pt;}
.y48{bottom:351.133333pt;}
.y26{bottom:363.933333pt;}
.y47{bottom:378.653333pt;}
.y25{bottom:391.453333pt;}
.yb1{bottom:405.893333pt;}
.y46{bottom:406.213333pt;}
.y24{bottom:419.013333pt;}
.y45{bottom:433.413333pt;}
.y56{bottom:433.733333pt;}
.y23{bottom:446.853333pt;}
.yb0{bottom:461.253333pt;}
.y44{bottom:461.573333pt;}
.y22{bottom:474.053333pt;}
.y43{bottom:489.093333pt;}
.y21{bottom:501.893333pt;}
.y42{bottom:516.640000pt;}
.y20{bottom:529.120000pt;}
.y9f{bottom:532.480000pt;}
.y41{bottom:544.160000pt;}
.y1f{bottom:556.960000pt;}
.y40{bottom:572.000000pt;}
.y1e{bottom:590.560000pt;}
.y67{bottom:595.360000pt;}
.y3f{bottom:599.520000pt;}
.y65{bottom:610.720000pt;}
.y1d{bottom:612.000000pt;}
.y3e{bottom:627.066667pt;}
.y7f{bottom:633.466667pt;}
.y1c{bottom:639.546667pt;}
.y3d{bottom:654.586667pt;}
.y7e{bottom:660.986667pt;}
.y63{bottom:666.426667pt;}
.y1b{bottom:667.386667pt;}
.y3c{bottom:682.426667pt;}
.y7d{bottom:688.826667pt;}
.y1a{bottom:694.906667pt;}
.y3b{bottom:709.946667pt;}
.y7c{bottom:716.346667pt;}
.y61{bottom:722.426667pt;}
.y19{bottom:722.746667pt;}
.y3a{bottom:737.506667pt;}
.y7b{bottom:740.066667pt;}
.y85{bottom:740.160000pt;}
.y18{bottom:750.306667pt;}
.y58{bottom:750.626667pt;}
.y39{bottom:765.026667pt;}
.y17{bottom:778.146667pt;}
.y38{bottom:792.866667pt;}
.y16{bottom:805.666667pt;}
.y37{bottom:820.066667pt;}
.y55{bottom:820.386667pt;}
.y15{bottom:822.626667pt;}
.y14{bottom:832.546667pt;}
.y5a{bottom:834.146667pt;}
.y13{bottom:842.466667pt;}
.y36{bottom:847.613333pt;}
.y54{bottom:847.933333pt;}
.y12{bottom:852.413333pt;}
.y11{bottom:862.333333pt;}
.y10{bottom:872.253333pt;}
.y35{bottom:875.133333pt;}
.y53{bottom:875.453333pt;}
.yf{bottom:882.173333pt;}
.ye{bottom:892.093333pt;}
.yd{bottom:902.013333pt;}
.y34{bottom:903.293333pt;}
.yc{bottom:911.933333pt;}
.yb{bottom:921.853333pt;}
.y33{bottom:930.813333pt;}
.ya{bottom:931.773333pt;}
.y9{bottom:942.973333pt;}
.y8{bottom:956.093333pt;}
.y52{bottom:958.053333pt;}
.y32{bottom:958.373333pt;}
.y7{bottom:969.253333pt;}
.y6{bottom:981.413333pt;}
.y31{bottom:985.893333pt;}
.y5{bottom:993.573333pt;}
.y4{bottom:1005.733333pt;}
.y30{bottom:1013.733333pt;}
.y3{bottom:1018.213333pt;}
.h14{height:25.280000pt;}
.hb{height:27.552000pt;}
.h6{height:31.406250pt;}
.h5{height:41.456250pt;}
.h4{height:42.570000pt;}
.h3{height:44.648750pt;}
.h9{height:46.281250pt;}
.h12{height:52.762500pt;}
.h13{height:52.888125pt;}
.he{height:55.072000pt;}
.hd{height:55.360000pt;}
.h2{height:57.787500pt;}
.h7{height:62.812500pt;}
.h10{height:62.938125pt;}
.h8{height:64.500000pt;}
.hc{height:82.880000pt;}
.ha{height:111.072000pt;}
.hf{height:287.680000pt;}
.h11{height:288.000000pt;}
.h15{height:288.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:56.320000pt;}
.w8{width:93.792000pt;}
.w6{width:112.992000pt;}
.w7{width:122.304000pt;}
.w9{width:131.552000pt;}
.w3{width:138.946667pt;}
.w5{width:226.306667pt;}
.w4{width:235.933333pt;}
.wc{width:507.840000pt;}
.wa{width:508.800000pt;}
.wb{width:509.120000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:6.720000pt;}
.x18{left:8.960000pt;}
.x20{left:10.240000pt;}
.x1a{left:11.520000pt;}
.x22{left:14.720000pt;}
.x17{left:18.560000pt;}
.x1f{left:20.480000pt;}
.x1b{left:21.760000pt;}
.x1e{left:24.000000pt;}
.x15{left:25.280000pt;}
.x12{left:26.880000pt;}
.x11{left:28.480000pt;}
.x21{left:33.280000pt;}
.x1d{left:37.152000pt;}
.x16{left:38.106667pt;}
.x30{left:40.826667pt;}
.x1c{left:42.880000pt;}
.x2a{left:44.773333pt;}
.xd{left:45.794667pt;}
.x23{left:47.040000pt;}
.x2b{left:54.013333pt;}
.x29{left:57.600000pt;}
.x10{left:64.000000pt;}
.x28{left:65.600000pt;}
.x27{left:73.626667pt;}
.xe{left:80.360000pt;}
.x31{left:90.400000pt;}
.x2{left:94.431988pt;}
.x2c{left:107.551988pt;}
.x3{left:119.711988pt;}
.x2f{left:123.973333pt;}
.xa{left:130.303988pt;}
.xb{left:133.506655pt;}
.x9{left:141.826655pt;}
.x2e{left:142.720000pt;}
.x7{left:147.906655pt;}
.x32{left:158.426667pt;}
.x25{left:177.986655pt;}
.x34{left:195.386667pt;}
.xc{left:205.186655pt;}
.x35{left:214.586667pt;}
.x26{left:217.053322pt;}
.x33{left:229.120000pt;}
.x8{left:234.333322pt;}
.x37{left:282.466667pt;}
.x2d{left:296.133322pt;}
.x36{left:299.173333pt;}
.x6{left:345.413322pt;}
.x13{left:347.973333pt;}
.x4{left:367.173322pt;}
.x1{left:393.119988pt;}
.x5{left:396.959988pt;}
.xf{left:470.906667pt;}
.x19{left:565.346667pt;}
.x24{left:651.453322pt;}
}




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