
    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_a7d2a903aa75e69f5972c4ab.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_52945f7043e864a48fd47350.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_b1d1f7efb071e9321d225593.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_963cee9c6a1418aa1939af36.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3d31fcc6b64e89cabae1f7fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.lsa{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.103800px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.432000px;}
.ls1{letter-spacing:62.910000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.640000px;}
.wsc{word-spacing:-17.424000px;}
.ws7{word-spacing:-16.470000px;}
.ws9{word-spacing:-15.210000px;}
.ws5{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.970000px;}
.ws3{word-spacing:-11.866200px;}
.wsd{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.022040px;}
._1{width:1.006560px;}
._2{width:2.123880px;}
._a{width:4.068120px;}
._e{width:5.880000px;}
._7{width:7.632000px;}
._b{width:9.360000px;}
._c{width:10.441440px;}
._5{width:11.592000px;}
._6{width:13.056000px;}
._f{width:14.544000px;}
._10{width:15.888000px;}
._11{width:16.992000px;}
._d{width:19.153440px;}
._16{width:20.548080px;}
._15{width:21.744000px;}
._14{width:22.869720px;}
._13{width:23.918040px;}
._12{width:24.984000px;}
._9{width:27.552000px;}
._8{width:28.992000px;}
._19{width:30.528000px;}
._23{width:32.544000px;}
._24{width:34.296000px;}
._1a{width:35.784000px;}
._4{width:37.368000px;}
._21{width:42.408000px;}
._18{width:51.408000px;}
._17{width:52.608000px;}
._3{width:63.138000px;}
._1f{width:78.768000px;}
._20{width:79.776000px;}
._1e{width:83.894040px;}
._1d{width:84.960000px;}
._1c{width:86.040000px;}
._1b{width:295.704000px;}
._22{width:896.880000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.420000px;}
.ya{bottom:5.670000px;}
.y7{bottom:7.920000px;}
.y9{bottom:22.950000px;}
.y5{bottom:25.110000px;}
.y6{bottom:33.030000px;}
.y8{bottom:40.140000px;}
.y4{bottom:42.390000px;}
.yd{bottom:59.220000px;}
.yc{bottom:96.300000px;}
.y79{bottom:138.420000px;}
.y2a{bottom:143.550000px;}
.y92{bottom:145.440000px;}
.y71{bottom:145.710000px;}
.y56{bottom:148.770000px;}
.y47{bottom:159.150000px;}
.y80{bottom:159.780000px;}
.y78{bottom:169.410000px;}
.y70{bottom:171.480000px;}
.y29{bottom:174.630000px;}
.y91{bottom:176.520000px;}
.y55{bottom:179.760000px;}
.y97{bottom:189.930000px;}
.y46{bottom:190.110000px;}
.y7f{bottom:190.830000px;}
.y77{bottom:200.460000px;}
.y94{bottom:205.050000px;}
.y28{bottom:205.680000px;}
.y90{bottom:207.570000px;}
.y54{bottom:210.810000px;}
.y45{bottom:221.160000px;}
.y7e{bottom:221.880000px;}
.y76{bottom:231.510000px;}
.y27{bottom:236.730000px;}
.y8f{bottom:238.620000px;}
.y53{bottom:241.860000px;}
.y44{bottom:252.210000px;}
.y7d{bottom:252.930000px;}
.y75{bottom:262.560000px;}
.y26{bottom:267.780000px;}
.y8e{bottom:269.670000px;}
.y52{bottom:272.910000px;}
.y7c{bottom:282.630000px;}
.y43{bottom:283.260000px;}
.y74{bottom:293.610000px;}
.y25{bottom:298.830000px;}
.y51{bottom:303.960000px;}
.y8d{bottom:305.310000px;}
.y7b{bottom:311.070000px;}
.y42{bottom:314.310000px;}
.y6d{bottom:318.900000px;}
.y73{bottom:324.660000px;}
.y24{bottom:329.880000px;}
.y50{bottom:335.010000px;}
.y7a{bottom:336.810000px;}
.y8c{bottom:342.120000px;}
.y41{bottom:345.360000px;}
.y6c{bottom:355.710000px;}
.y72{bottom:360.300000px;}
.y23{bottom:360.930000px;}
.y4f{bottom:366.060000px;}
.y8b{bottom:373.170000px;}
.y40{bottom:376.410000px;}
.y6b{bottom:386.760000px;}
.y22{bottom:391.800000px;}
.y4e{bottom:397.110000px;}
.y8a{bottom:404.220000px;}
.y3f{bottom:407.460000px;}
.y6a{bottom:417.810000px;}
.y21{bottom:423.030000px;}
.y4d{bottom:428.160000px;}
.y89{bottom:435.270000px;}
.y96{bottom:438.330000px;}
.y3e{bottom:438.510000px;}
.y69{bottom:448.860000px;}
.y20{bottom:454.080000px;}
.y4c{bottom:459.210000px;}
.y88{bottom:466.320000px;}
.y3d{bottom:469.560000px;}
.y68{bottom:479.910000px;}
.y1f{bottom:485.130000px;}
.y4b{bottom:490.260000px;}
.y93{bottom:494.850000px;}
.y87{bottom:497.370000px;}
.y3c{bottom:500.610000px;}
.y67{bottom:510.960000px;}
.y1e{bottom:516.180000px;}
.y4a{bottom:521.310000px;}
.y86{bottom:528.420000px;}
.y95{bottom:531.480000px;}
.y3b{bottom:531.660000px;}
.y66{bottom:542.010000px;}
.y49{bottom:552.360000px;}
.y1d{bottom:553.980000px;}
.y85{bottom:559.470000px;}
.y3a{bottom:562.530000px;}
.y57{bottom:562.710000px;}
.y65{bottom:577.680000px;}
.y1c{bottom:578.310000px;}
.y6f{bottom:583.440000px;}
.y48{bottom:588.030000px;}
.y84{bottom:589.200000px;}
.y39{bottom:593.790000px;}
.y64{bottom:614.490000px;}
.y1b{bottom:616.110000px;}
.y83{bottom:617.640000px;}
.y38{bottom:624.840000px;}
.y1a{bottom:640.410000px;}
.y63{bottom:645.540000px;}
.y82{bottom:646.080000px;}
.y37{bottom:655.890000px;}
.y81{bottom:671.820000px;}
.y62{bottom:676.590000px;}
.y19{bottom:678.210000px;}
.y36{bottom:686.940000px;}
.y18{bottom:702.420000px;}
.y61{bottom:707.640000px;}
.y35{bottom:717.990000px;}
.y17{bottom:733.470000px;}
.y60{bottom:738.690000px;}
.y34{bottom:749.040000px;}
.y16{bottom:764.520000px;}
.y5f{bottom:769.740000px;}
.y33{bottom:780.090000px;}
.y15{bottom:795.570000px;}
.y5e{bottom:800.790000px;}
.y32{bottom:811.140000px;}
.y14{bottom:826.620000px;}
.y5d{bottom:831.840000px;}
.y31{bottom:842.190000px;}
.y13{bottom:859.830000px;}
.y5c{bottom:862.890000px;}
.y30{bottom:873.240000px;}
.y5b{bottom:893.940000px;}
.y12{bottom:896.010000px;}
.y2f{bottom:904.290000px;}
.y5a{bottom:924.990000px;}
.y11{bottom:932.280000px;}
.y2e{bottom:935.340000px;}
.y59{bottom:956.040000px;}
.y6e{bottom:960.630000px;}
.y2d{bottom:966.390000px;}
.y10{bottom:968.460000px;}
.y58{bottom:991.680000px;}
.y2c{bottom:997.470000px;}
.yf{bottom:1002.600000px;}
.y2b{bottom:1028.520000px;}
.ye{bottom:1031.130000px;}
.yb{bottom:1045.080000px;}
.y3{bottom:1072.080000px;}
.y1{bottom:1128.240000px;}
.h1{height:17.190000px;}
.ha{height:46.991602px;}
.h3{height:56.160000px;}
.h2{height:59.004492px;}
.h6{height:60.589687px;}
.he{height:64.657617px;}
.h5{height:65.526152px;}
.hd{height:66.394687px;}
.h7{height:70.664062px;}
.hb{height:72.562500px;}
.h9{height:73.991602px;}
.h4{height:77.505120px;}
.h8{height:84.535312px;}
.hc{height:96.870938px;}
.h0{height:1188.000000px;}
.w3{width:86.340000px;}
.w6{width:90.120000px;}
.w5{width:118.800000px;}
.w2{width:208.920000px;}
.w4{width:469.920000px;}
.w1{width:556.260000px;}
.w7{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:13.320000px;}
.x7{left:25.110000px;}
.x4{left:43.110000px;}
.xa{left:45.000000px;}
.x3{left:46.440000px;}
.x1{left:76.410000px;}
.xf{left:85.049986px;}
.x3c{left:86.759986px;}
.x31{left:90.809986px;}
.x38{left:99.269986px;}
.x3b{left:107.639986px;}
.x11{left:112.229986px;}
.x2a{left:139.949986px;}
.x2b{left:142.739986px;}
.x6{left:148.680000px;}
.x5{left:162.750000px;}
.x18{left:170.129986px;}
.x19{left:178.679986px;}
.x2d{left:200.639986px;}
.xd{left:204.239986px;}
.x3d{left:260.399986px;}
.x40{left:264.629986px;}
.x34{left:273.989986px;}
.x2c{left:276.329986px;}
.x2e{left:281.729986px;}
.x24{left:283.979986px;}
.x20{left:288.029986px;}
.x21{left:289.469986px;}
.x25{left:290.639986px;}
.x2f{left:320.699986px;}
.x39{left:332.849986px;}
.x1e{left:345.089986px;}
.x1f{left:346.439986px;}
.x22{left:351.479986px;}
.x23{left:352.919986px;}
.x14{left:362.369986px;}
.x41{left:376.679986px;}
.x3e{left:392.339986px;}
.x42{left:409.529986px;}
.x26{left:427.349986px;}
.x27{left:428.879986px;}
.x12{left:430.409986px;}
.x10{left:439.769986px;}
.x35{left:445.709986px;}
.x36{left:448.319986px;}
.x3f{left:451.469986px;}
.xc{left:455.249986px;}
.x13{left:459.029986px;}
.x1a{left:560.939986px;}
.x1b{left:563.639986px;}
.x32{left:623.309986px;}
.x33{left:625.109986px;}
.x2{left:632.670000px;}
.x37{left:696.389986px;}
.x28{left:722.849986px;}
.x29{left:728.879986px;}
.xe{left:730.589986px;}
.x9{left:751.470000px;}
.x15{left:754.259986px;}
.x16{left:781.259986px;}
.x17{left:783.689986px;}
.x3a{left:788.639986px;}
.x1c{left:789.899986px;}
.x1d{left:792.599986px;}
.x30{left:808.379986px;}
.xb{left:833.039986px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.092267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.384000pt;}
.ls1{letter-spacing:55.920000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.680000pt;}
.wsc{word-spacing:-15.488000pt;}
.ws7{word-spacing:-14.640000pt;}
.ws9{word-spacing:-13.520000pt;}
.ws5{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.640000pt;}
.ws3{word-spacing:-10.547733pt;}
.wsd{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.908480pt;}
._1{width:0.894720pt;}
._2{width:1.887893pt;}
._a{width:3.616107pt;}
._e{width:5.226667pt;}
._7{width:6.784000pt;}
._b{width:8.320000pt;}
._c{width:9.281280pt;}
._5{width:10.304000pt;}
._6{width:11.605333pt;}
._f{width:12.928000pt;}
._10{width:14.122667pt;}
._11{width:15.104000pt;}
._d{width:17.025280pt;}
._16{width:18.264960pt;}
._15{width:19.328000pt;}
._14{width:20.328640pt;}
._13{width:21.260480pt;}
._12{width:22.208000pt;}
._9{width:24.490667pt;}
._8{width:25.770667pt;}
._19{width:27.136000pt;}
._23{width:28.928000pt;}
._24{width:30.485333pt;}
._1a{width:31.808000pt;}
._4{width:33.216000pt;}
._21{width:37.696000pt;}
._18{width:45.696000pt;}
._17{width:46.762667pt;}
._3{width:56.122667pt;}
._1f{width:70.016000pt;}
._20{width:70.912000pt;}
._1e{width:74.572480pt;}
._1d{width:75.520000pt;}
._1c{width:76.480000pt;}
._1b{width:262.848000pt;}
._22{width:797.226667pt;}
.fs4{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.040000pt;}
.ya{bottom:5.040000pt;}
.y7{bottom:7.040000pt;}
.y9{bottom:20.400000pt;}
.y5{bottom:22.320000pt;}
.y6{bottom:29.360000pt;}
.y8{bottom:35.680000pt;}
.y4{bottom:37.680000pt;}
.yd{bottom:52.640000pt;}
.yc{bottom:85.600000pt;}
.y79{bottom:123.040000pt;}
.y2a{bottom:127.600000pt;}
.y92{bottom:129.280000pt;}
.y71{bottom:129.520000pt;}
.y56{bottom:132.240000pt;}
.y47{bottom:141.466667pt;}
.y80{bottom:142.026667pt;}
.y78{bottom:150.586667pt;}
.y70{bottom:152.426667pt;}
.y29{bottom:155.226667pt;}
.y91{bottom:156.906667pt;}
.y55{bottom:159.786667pt;}
.y97{bottom:168.826667pt;}
.y46{bottom:168.986667pt;}
.y7f{bottom:169.626667pt;}
.y77{bottom:178.186667pt;}
.y94{bottom:182.266667pt;}
.y28{bottom:182.826667pt;}
.y90{bottom:184.506667pt;}
.y54{bottom:187.386667pt;}
.y45{bottom:196.586667pt;}
.y7e{bottom:197.226667pt;}
.y76{bottom:205.786667pt;}
.y27{bottom:210.426667pt;}
.y8f{bottom:212.106667pt;}
.y53{bottom:214.986667pt;}
.y44{bottom:224.186667pt;}
.y7d{bottom:224.826667pt;}
.y75{bottom:233.386667pt;}
.y26{bottom:238.026667pt;}
.y8e{bottom:239.706667pt;}
.y52{bottom:242.586667pt;}
.y7c{bottom:251.226667pt;}
.y43{bottom:251.786667pt;}
.y74{bottom:260.986667pt;}
.y25{bottom:265.626667pt;}
.y51{bottom:270.186667pt;}
.y8d{bottom:271.386667pt;}
.y7b{bottom:276.506667pt;}
.y42{bottom:279.386667pt;}
.y6d{bottom:283.466667pt;}
.y73{bottom:288.586667pt;}
.y24{bottom:293.226667pt;}
.y50{bottom:297.786667pt;}
.y7a{bottom:299.386667pt;}
.y8c{bottom:304.106667pt;}
.y41{bottom:306.986667pt;}
.y6c{bottom:316.186667pt;}
.y72{bottom:320.266667pt;}
.y23{bottom:320.826667pt;}
.y4f{bottom:325.386667pt;}
.y8b{bottom:331.706667pt;}
.y40{bottom:334.586667pt;}
.y6b{bottom:343.786667pt;}
.y22{bottom:348.266667pt;}
.y4e{bottom:352.986667pt;}
.y8a{bottom:359.306667pt;}
.y3f{bottom:362.186667pt;}
.y6a{bottom:371.386667pt;}
.y21{bottom:376.026667pt;}
.y4d{bottom:380.586667pt;}
.y89{bottom:386.906667pt;}
.y96{bottom:389.626667pt;}
.y3e{bottom:389.786667pt;}
.y69{bottom:398.986667pt;}
.y20{bottom:403.626667pt;}
.y4c{bottom:408.186667pt;}
.y88{bottom:414.506667pt;}
.y3d{bottom:417.386667pt;}
.y68{bottom:426.586667pt;}
.y1f{bottom:431.226667pt;}
.y4b{bottom:435.786667pt;}
.y93{bottom:439.866667pt;}
.y87{bottom:442.106667pt;}
.y3c{bottom:444.986667pt;}
.y67{bottom:454.186667pt;}
.y1e{bottom:458.826667pt;}
.y4a{bottom:463.386667pt;}
.y86{bottom:469.706667pt;}
.y95{bottom:472.426667pt;}
.y3b{bottom:472.586667pt;}
.y66{bottom:481.786667pt;}
.y49{bottom:490.986667pt;}
.y1d{bottom:492.426667pt;}
.y85{bottom:497.306667pt;}
.y3a{bottom:500.026667pt;}
.y57{bottom:500.186667pt;}
.y65{bottom:513.493333pt;}
.y1c{bottom:514.053333pt;}
.y6f{bottom:518.613333pt;}
.y48{bottom:522.693333pt;}
.y84{bottom:523.733333pt;}
.y39{bottom:527.813333pt;}
.y64{bottom:546.213333pt;}
.y1b{bottom:547.653333pt;}
.y83{bottom:549.013333pt;}
.y38{bottom:555.413333pt;}
.y1a{bottom:569.253333pt;}
.y63{bottom:573.813333pt;}
.y82{bottom:574.293333pt;}
.y37{bottom:583.013333pt;}
.y81{bottom:597.173333pt;}
.y62{bottom:601.413333pt;}
.y19{bottom:602.853333pt;}
.y36{bottom:610.613333pt;}
.y18{bottom:624.373333pt;}
.y61{bottom:629.013333pt;}
.y35{bottom:638.213333pt;}
.y17{bottom:651.973333pt;}
.y60{bottom:656.613333pt;}
.y34{bottom:665.813333pt;}
.y16{bottom:679.573333pt;}
.y5f{bottom:684.213333pt;}
.y33{bottom:693.413333pt;}
.y15{bottom:707.173333pt;}
.y5e{bottom:711.813333pt;}
.y32{bottom:721.013333pt;}
.y14{bottom:734.773333pt;}
.y5d{bottom:739.413333pt;}
.y31{bottom:748.613333pt;}
.y13{bottom:764.293333pt;}
.y5c{bottom:767.013333pt;}
.y30{bottom:776.213333pt;}
.y5b{bottom:794.613333pt;}
.y12{bottom:796.453333pt;}
.y2f{bottom:803.813333pt;}
.y5a{bottom:822.213333pt;}
.y11{bottom:828.693333pt;}
.y2e{bottom:831.413333pt;}
.y59{bottom:849.813333pt;}
.y6e{bottom:853.893333pt;}
.y2d{bottom:859.013333pt;}
.y10{bottom:860.853333pt;}
.y58{bottom:881.493333pt;}
.y2c{bottom:886.640000pt;}
.yf{bottom:891.200000pt;}
.y2b{bottom:914.240000pt;}
.ye{bottom:916.560000pt;}
.yb{bottom:928.960000pt;}
.y3{bottom:952.960000pt;}
.y1{bottom:1002.880000pt;}
.h1{height:15.280000pt;}
.ha{height:41.770312pt;}
.h3{height:49.920000pt;}
.h2{height:52.448437pt;}
.h6{height:53.857500pt;}
.he{height:57.473437pt;}
.h5{height:58.245469pt;}
.hd{height:59.017500pt;}
.h7{height:62.812500pt;}
.hb{height:64.500000pt;}
.h9{height:65.770312pt;}
.h4{height:68.893440pt;}
.h8{height:75.142500pt;}
.hc{height:86.107500pt;}
.h0{height:1056.000000pt;}
.w3{width:76.746667pt;}
.w6{width:80.106667pt;}
.w5{width:105.600000pt;}
.w2{width:185.706667pt;}
.w4{width:417.706667pt;}
.w1{width:494.453333pt;}
.w7{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:11.840000pt;}
.x7{left:22.320000pt;}
.x4{left:38.320000pt;}
.xa{left:40.000000pt;}
.x3{left:41.280000pt;}
.x1{left:67.920000pt;}
.xf{left:75.599988pt;}
.x3c{left:77.119988pt;}
.x31{left:80.719988pt;}
.x38{left:88.239988pt;}
.x3b{left:95.679988pt;}
.x11{left:99.759988pt;}
.x2a{left:124.399988pt;}
.x2b{left:126.879988pt;}
.x6{left:132.160000pt;}
.x5{left:144.666667pt;}
.x18{left:151.226655pt;}
.x19{left:158.826655pt;}
.x2d{left:178.346655pt;}
.xd{left:181.546655pt;}
.x3d{left:231.466655pt;}
.x40{left:235.226655pt;}
.x34{left:243.546655pt;}
.x2c{left:245.626655pt;}
.x2e{left:250.426655pt;}
.x24{left:252.426655pt;}
.x20{left:256.026655pt;}
.x21{left:257.306655pt;}
.x25{left:258.346655pt;}
.x2f{left:285.066655pt;}
.x39{left:295.866655pt;}
.x1e{left:306.746655pt;}
.x1f{left:307.946655pt;}
.x22{left:312.426655pt;}
.x23{left:313.706655pt;}
.x14{left:322.106655pt;}
.x41{left:334.826655pt;}
.x3e{left:348.746655pt;}
.x42{left:364.026655pt;}
.x26{left:379.866655pt;}
.x27{left:381.226655pt;}
.x12{left:382.586655pt;}
.x10{left:390.906655pt;}
.x35{left:396.186655pt;}
.x36{left:398.506655pt;}
.x3f{left:401.306655pt;}
.xc{left:404.666655pt;}
.x13{left:408.026655pt;}
.x1a{left:498.613321pt;}
.x1b{left:501.013321pt;}
.x32{left:554.053321pt;}
.x33{left:555.653321pt;}
.x2{left:562.373333pt;}
.x37{left:619.013321pt;}
.x28{left:642.533321pt;}
.x29{left:647.893321pt;}
.xe{left:649.413321pt;}
.x9{left:667.973333pt;}
.x15{left:670.453321pt;}
.x16{left:694.453321pt;}
.x17{left:696.613321pt;}
.x3a{left:701.013321pt;}
.x1c{left:702.133321pt;}
.x1d{left:704.533321pt;}
.x30{left:718.559988pt;}
.xb{left:740.479988pt;}
}




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