
    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_36de8c693f7fb7bd7ca87375.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_41645cb40c6dd90f55d817ec.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b13a23aec81c21539b8bf3a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_fc7ec07b2e75151c5f7f3272.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;}
.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;}
.ls1{letter-spacing:-1.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.360000px;}
.ls3{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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-4.536000px;}
._1{margin-left:-2.583360px;}
._0{margin-left:-1.457280px;}
._2{width:1.373280px;}
._d{width:2.376000px;}
._e{width:3.456000px;}
._3{width:4.946880px;}
._4{width:6.224400px;}
._10{width:8.016000px;}
._f{width:9.120000px;}
._16{width:10.232640px;}
._6{width:11.299680px;}
._5{width:12.736080px;}
._7{width:13.831920px;}
._13{width:14.839920px;}
._8{width:15.888000px;}
._9{width:16.896000px;}
._a{width:19.440000px;}
._b{width:21.312000px;}
._14{width:22.680000px;}
._15{width:23.754720px;}
._18{width:25.165440px;}
._17{width:26.369280px;}
._11{width:32.472000px;}
._12{width:34.200000px;}
.fc8{color:rgb(33,37,41);}
.fc7{color:rgb(56,118,29);}
.fc5{color:rgb(106,168,79);}
.fc4{color:rgb(152,0,0);}
.fc2{color:rgb(17,85,204);}
.fc6{color:rgb(31,31,31);}
.fc3{color:rgb(51,51,51);}
.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;}
.y73{bottom:3.240000px;}
.yc3{bottom:16.740000px;}
.y80{bottom:17.865000px;}
.ya4{bottom:19.800000px;}
.y87{bottom:20.340000px;}
.y95{bottom:20.385000px;}
.y75{bottom:20.520000px;}
.y9d{bottom:20.565000px;}
.yc2{bottom:34.065000px;}
.y7b{bottom:37.620000px;}
.y77{bottom:37.800000px;}
.yb8{bottom:37.830000px;}
.yc1{bottom:51.345000px;}
.y9a{bottom:55.080000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y30{bottom:178.950000px;}
.yac{bottom:182.910000px;}
.y98{bottom:184.350000px;}
.y68{bottom:186.330000px;}
.y83{bottom:187.950000px;}
.y2f{bottom:199.650000px;}
.y50{bottom:208.830000px;}
.yab{bottom:216.750000px;}
.y67{bottom:217.470000px;}
.y97{bottom:218.190000px;}
.y2e{bottom:220.350000px;}
.y82{bottom:221.790000px;}
.y4f{bottom:239.790000px;}
.y2d{bottom:241.050000px;}
.y66{bottom:248.430000px;}
.ybf{bottom:251.850000px;}
.y81{bottom:255.450000px;}
.y2c{bottom:261.750000px;}
.yaa{bottom:267.690000px;}
.y96{bottom:269.130000px;}
.y4e{bottom:270.930000px;}
.y65{bottom:279.570000px;}
.y2b{bottom:282.450000px;}
.ybe{bottom:285.690000px;}
.yd8{bottom:299.910000px;}
.y4d{bottom:301.890000px;}
.y2a{bottom:303.150000px;}
.y64{bottom:310.530000px;}
.ya9{bottom:318.630000px;}
.ybd{bottom:319.350000px;}
.y94{bottom:320.250000px;}
.yd7{bottom:320.610000px;}
.y7f{bottom:323.670000px;}
.y29{bottom:323.850000px;}
.y4c{bottom:333.030000px;}
.yd6{bottom:341.355000px;}
.y63{bottom:341.715000px;}
.y28{bottom:344.595000px;}
.ya8{bottom:352.515000px;}
.yd5{bottom:362.055000px;}
.y4b{bottom:364.035000px;}
.y27{bottom:365.295000px;}
.ybc{bottom:370.515000px;}
.y93{bottom:371.235000px;}
.y7e{bottom:372.135000px;}
.y62{bottom:372.675000px;}
.yd4{bottom:382.755000px;}
.y26{bottom:385.995000px;}
.y4a{bottom:395.175000px;}
.ya7{bottom:403.455000px;}
.y61{bottom:403.815000px;}
.y7d{bottom:405.795000px;}
.y25{bottom:406.695000px;}
.yd3{bottom:424.155000px;}
.y49{bottom:426.135000px;}
.y24{bottom:427.395000px;}
.y60{bottom:434.775000px;}
.ybb{bottom:438.735000px;}
.y92{bottom:439.455000px;}
.y7c{bottom:439.635000px;}
.yd2{bottom:444.855000px;}
.y23{bottom:448.095000px;}
.y48{bottom:457.275000px;}
.yd1{bottom:465.555000px;}
.y22{bottom:468.795000px;}
.ya6{bottom:471.675000px;}
.y5f{bottom:474.015000px;}
.yd0{bottom:486.255000px;}
.y47{bottom:488.235000px;}
.y21{bottom:489.495000px;}
.y91{bottom:490.395000px;}
.yba{bottom:506.955000px;}
.y7a{bottom:507.855000px;}
.y20{bottom:510.195000px;}
.y5e{bottom:517.035000px;}
.y46{bottom:519.375000px;}
.ya5{bottom:522.795000px;}
.ycf{bottom:527.655000px;}
.y1f{bottom:530.895000px;}
.yb9{bottom:540.615000px;}
.y90{bottom:541.515000px;}
.y5d{bottom:548.175000px;}
.yce{bottom:548.355000px;}
.y45{bottom:550.335000px;}
.y1e{bottom:551.595000px;}
.ya3{bottom:556.455000px;}
.ycd{bottom:569.055000px;}
.y1d{bottom:572.295000px;}
.yb7{bottom:574.455000px;}
.y8f{bottom:575.175000px;}
.y79{bottom:576.075000px;}
.y5c{bottom:579.135000px;}
.y44{bottom:581.475000px;}
.ycc{bottom:589.755000px;}
.y1c{bottom:592.995000px;}
.ya2{bottom:606.705000px;}
.y78{bottom:609.765000px;}
.y5b{bottom:610.305000px;}
.ycb{bottom:610.485000px;}
.y43{bottom:612.465000px;}
.y1b{bottom:613.725000px;}
.y8e{bottom:626.145000px;}
.y1a{bottom:634.425000px;}
.yca{bottom:637.665000px;}
.y5a{bottom:641.265000px;}
.yb6{bottom:642.705000px;}
.y42{bottom:643.605000px;}
.y19{bottom:655.125000px;}
.ya1{bottom:657.645000px;}
.y8d{bottom:659.985000px;}
.yc9{bottom:670.245000px;}
.y59{bottom:672.405000px;}
.y41{bottom:674.565000px;}
.y18{bottom:675.825000px;}
.y8c{bottom:693.645000px;}
.y17{bottom:696.525000px;}
.yc8{bottom:701.385000px;}
.y58{bottom:703.365000px;}
.y40{bottom:705.705000px;}
.ya0{bottom:708.765000px;}
.y76{bottom:711.825000px;}
.y16{bottom:717.225000px;}
.y8b{bottom:727.485000px;}
.yc7{bottom:732.345000px;}
.y57{bottom:734.505000px;}
.y3f{bottom:736.665000px;}
.y15{bottom:737.925000px;}
.y9f{bottom:742.425000px;}
.yb5{bottom:744.765000px;}
.y14{bottom:758.625000px;}
.y8a{bottom:761.145000px;}
.y74{bottom:762.765000px;}
.yc6{bottom:763.485000px;}
.y56{bottom:765.465000px;}
.y3e{bottom:767.805000px;}
.yb4{bottom:778.425000px;}
.y13{bottom:779.325000px;}
.yc5{bottom:790.665000px;}
.y3d{bottom:794.985000px;}
.y55{bottom:796.605000px;}
.y12{bottom:800.025000px;}
.y9e{bottom:810.645000px;}
.y72{bottom:813.885000px;}
.y11{bottom:820.725000px;}
.yc4{bottom:823.245000px;}
.y3c{bottom:827.565000px;}
.y10{bottom:841.425000px;}
.y71{bottom:845.925000px;}
.yb3{bottom:846.645000px;}
.y3b{bottom:848.265000px;}
.yc0{bottom:848.985000px;}
.y54{bottom:858.705000px;}
.y9c{bottom:861.765000px;}
.yf{bottom:862.125000px;}
.y70{bottom:863.925000px;}
.y3a{bottom:868.965000px;}
.y89{bottom:879.810000px;}
.yb2{bottom:880.530000px;}
.ye{bottom:882.870000px;}
.y39{bottom:889.710000px;}
.y6f{bottom:890.610000px;}
.yd{bottom:903.570000px;}
.y38{bottom:910.410000px;}
.y9b{bottom:912.750000px;}
.yb1{bottom:914.190000px;}
.y53{bottom:920.850000px;}
.y6e{bottom:921.750000px;}
.yc{bottom:924.270000px;}
.y88{bottom:930.750000px;}
.y37{bottom:931.110000px;}
.yb{bottom:946.230000px;}
.yb0{bottom:948.030000px;}
.y36{bottom:951.810000px;}
.y6d{bottom:952.710000px;}
.y86{bottom:964.590000px;}
.y35{bottom:972.510000px;}
.ya{bottom:973.770000px;}
.y99{bottom:980.970000px;}
.yaf{bottom:981.690000px;}
.y52{bottom:982.950000px;}
.y6c{bottom:983.850000px;}
.y34{bottom:993.210000px;}
.y9{bottom:1000.050000px;}
.y33{bottom:1013.910000px;}
.y6b{bottom:1014.810000px;}
.yae{bottom:1015.530000px;}
.y8{bottom:1022.190000px;}
.y85{bottom:1032.810000px;}
.y32{bottom:1034.610000px;}
.y51{bottom:1045.050000px;}
.y6a{bottom:1045.950000px;}
.yad{bottom:1049.190000px;}
.y7{bottom:1049.730000px;}
.y31{bottom:1055.310000px;}
.y84{bottom:1066.470000px;}
.y69{bottom:1073.130000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h10{height:17.100000px;}
.h8{height:17.280000px;}
.hc{height:31.896000px;}
.h13{height:33.660000px;}
.he{height:34.380000px;}
.h11{height:34.416000px;}
.ha{height:34.560000px;}
.hf{height:34.596000px;}
.hb{height:51.660000px;}
.h14{height:51.696000px;}
.hd{height:51.840000px;}
.h4{height:52.628906px;}
.h9{height:53.077852px;}
.h7{height:53.573906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h15{height:65.196000px;}
.h12{height:69.120000px;}
.h6{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:97.560000px;}
.w7{width:106.596000px;}
.w4{width:111.096000px;}
.w8{width:115.560000px;}
.w6{width:124.596000px;}
.w3{width:138.060000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:6.840000px;}
.x2{left:106.415987px;}
.xa{left:107.856000px;}
.x5{left:132.335987px;}
.x3{left:148.895987px;}
.x7{left:174.089987px;}
.x6{left:243.029987px;}
.xc{left:247.350000px;}
.x9{left:259.229987px;}
.x8{left:332.354987px;}
.xd{left:359.895000px;}
.xe{left:458.895000px;}
.x1{left:467.744987px;}
.xf{left:584.925000px;}
.x10{left:692.970000px;}
.x4{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3{letter-spacing:57.263360pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-4.032000pt;}
._1{margin-left:-2.296320pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.220693pt;}
._d{width:2.112000pt;}
._e{width:3.072000pt;}
._3{width:4.397227pt;}
._4{width:5.532800pt;}
._10{width:7.125333pt;}
._f{width:8.106667pt;}
._16{width:9.095680pt;}
._6{width:10.044160pt;}
._5{width:11.320960pt;}
._7{width:12.295040pt;}
._13{width:13.191040pt;}
._8{width:14.122667pt;}
._9{width:15.018667pt;}
._a{width:17.280000pt;}
._b{width:18.944000pt;}
._14{width:20.160000pt;}
._15{width:21.115307pt;}
._18{width:22.369280pt;}
._17{width:23.439360pt;}
._11{width:28.864000pt;}
._12{width:30.400000pt;}
.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;}
.y73{bottom:2.880000pt;}
.yc3{bottom:14.880000pt;}
.y80{bottom:15.880000pt;}
.ya4{bottom:17.600000pt;}
.y87{bottom:18.080000pt;}
.y95{bottom:18.120000pt;}
.y75{bottom:18.240000pt;}
.y9d{bottom:18.280000pt;}
.yc2{bottom:30.280000pt;}
.y7b{bottom:33.440000pt;}
.y77{bottom:33.600000pt;}
.yb8{bottom:33.626667pt;}
.yc1{bottom:45.640000pt;}
.y9a{bottom:48.960000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y30{bottom:159.066667pt;}
.yac{bottom:162.586667pt;}
.y98{bottom:163.866667pt;}
.y68{bottom:165.626667pt;}
.y83{bottom:167.066667pt;}
.y2f{bottom:177.466667pt;}
.y50{bottom:185.626667pt;}
.yab{bottom:192.666667pt;}
.y67{bottom:193.306667pt;}
.y97{bottom:193.946667pt;}
.y2e{bottom:195.866667pt;}
.y82{bottom:197.146667pt;}
.y4f{bottom:213.146667pt;}
.y2d{bottom:214.266667pt;}
.y66{bottom:220.826667pt;}
.ybf{bottom:223.866667pt;}
.y81{bottom:227.066667pt;}
.y2c{bottom:232.666667pt;}
.yaa{bottom:237.946667pt;}
.y96{bottom:239.226667pt;}
.y4e{bottom:240.826667pt;}
.y65{bottom:248.506667pt;}
.y2b{bottom:251.066667pt;}
.ybe{bottom:253.946667pt;}
.yd8{bottom:266.586667pt;}
.y4d{bottom:268.346667pt;}
.y2a{bottom:269.466667pt;}
.y64{bottom:276.026667pt;}
.ya9{bottom:283.226667pt;}
.ybd{bottom:283.866667pt;}
.y94{bottom:284.666667pt;}
.yd7{bottom:284.986667pt;}
.y7f{bottom:287.706667pt;}
.y29{bottom:287.866667pt;}
.y4c{bottom:296.026667pt;}
.yd6{bottom:303.426667pt;}
.y63{bottom:303.746667pt;}
.y28{bottom:306.306667pt;}
.ya8{bottom:313.346667pt;}
.yd5{bottom:321.826667pt;}
.y4b{bottom:323.586667pt;}
.y27{bottom:324.706667pt;}
.ybc{bottom:329.346667pt;}
.y93{bottom:329.986667pt;}
.y7e{bottom:330.786667pt;}
.y62{bottom:331.266667pt;}
.yd4{bottom:340.226667pt;}
.y26{bottom:343.106667pt;}
.y4a{bottom:351.266667pt;}
.ya7{bottom:358.626667pt;}
.y61{bottom:358.946667pt;}
.y7d{bottom:360.706667pt;}
.y25{bottom:361.506667pt;}
.yd3{bottom:377.026667pt;}
.y49{bottom:378.786667pt;}
.y24{bottom:379.906667pt;}
.y60{bottom:386.466667pt;}
.ybb{bottom:389.986667pt;}
.y92{bottom:390.626667pt;}
.y7c{bottom:390.786667pt;}
.yd2{bottom:395.426667pt;}
.y23{bottom:398.306667pt;}
.y48{bottom:406.466667pt;}
.yd1{bottom:413.826667pt;}
.y22{bottom:416.706667pt;}
.ya6{bottom:419.266667pt;}
.y5f{bottom:421.346667pt;}
.yd0{bottom:432.226667pt;}
.y47{bottom:433.986667pt;}
.y21{bottom:435.106667pt;}
.y91{bottom:435.906667pt;}
.yba{bottom:450.626667pt;}
.y7a{bottom:451.426667pt;}
.y20{bottom:453.506667pt;}
.y5e{bottom:459.586667pt;}
.y46{bottom:461.666667pt;}
.ya5{bottom:464.706667pt;}
.ycf{bottom:469.026667pt;}
.y1f{bottom:471.906667pt;}
.yb9{bottom:480.546667pt;}
.y90{bottom:481.346667pt;}
.y5d{bottom:487.266667pt;}
.yce{bottom:487.426667pt;}
.y45{bottom:489.186667pt;}
.y1e{bottom:490.306667pt;}
.ya3{bottom:494.626667pt;}
.ycd{bottom:505.826667pt;}
.y1d{bottom:508.706667pt;}
.yb7{bottom:510.626667pt;}
.y8f{bottom:511.266667pt;}
.y79{bottom:512.066667pt;}
.y5c{bottom:514.786667pt;}
.y44{bottom:516.866667pt;}
.ycc{bottom:524.226667pt;}
.y1c{bottom:527.106667pt;}
.ya2{bottom:539.293333pt;}
.y78{bottom:542.013333pt;}
.y5b{bottom:542.493333pt;}
.ycb{bottom:542.653333pt;}
.y43{bottom:544.413333pt;}
.y1b{bottom:545.533333pt;}
.y8e{bottom:556.573333pt;}
.y1a{bottom:563.933333pt;}
.yca{bottom:566.813333pt;}
.y5a{bottom:570.013333pt;}
.yb6{bottom:571.293333pt;}
.y42{bottom:572.093333pt;}
.y19{bottom:582.333333pt;}
.ya1{bottom:584.573333pt;}
.y8d{bottom:586.653333pt;}
.yc9{bottom:595.773333pt;}
.y59{bottom:597.693333pt;}
.y41{bottom:599.613333pt;}
.y18{bottom:600.733333pt;}
.y8c{bottom:616.573333pt;}
.y17{bottom:619.133333pt;}
.yc8{bottom:623.453333pt;}
.y58{bottom:625.213333pt;}
.y40{bottom:627.293333pt;}
.ya0{bottom:630.013333pt;}
.y76{bottom:632.733333pt;}
.y16{bottom:637.533333pt;}
.y8b{bottom:646.653333pt;}
.yc7{bottom:650.973333pt;}
.y57{bottom:652.893333pt;}
.y3f{bottom:654.813333pt;}
.y15{bottom:655.933333pt;}
.y9f{bottom:659.933333pt;}
.yb5{bottom:662.013333pt;}
.y14{bottom:674.333333pt;}
.y8a{bottom:676.573333pt;}
.y74{bottom:678.013333pt;}
.yc6{bottom:678.653333pt;}
.y56{bottom:680.413333pt;}
.y3e{bottom:682.493333pt;}
.yb4{bottom:691.933333pt;}
.y13{bottom:692.733333pt;}
.yc5{bottom:702.813333pt;}
.y3d{bottom:706.653333pt;}
.y55{bottom:708.093333pt;}
.y12{bottom:711.133333pt;}
.y9e{bottom:720.573333pt;}
.y72{bottom:723.453333pt;}
.y11{bottom:729.533333pt;}
.yc4{bottom:731.773333pt;}
.y3c{bottom:735.613333pt;}
.y10{bottom:747.933333pt;}
.y71{bottom:751.933333pt;}
.yb3{bottom:752.573333pt;}
.y3b{bottom:754.013333pt;}
.yc0{bottom:754.653333pt;}
.y54{bottom:763.293333pt;}
.y9c{bottom:766.013333pt;}
.yf{bottom:766.333333pt;}
.y70{bottom:767.933333pt;}
.y3a{bottom:772.413333pt;}
.y89{bottom:782.053333pt;}
.yb2{bottom:782.693333pt;}
.ye{bottom:784.773333pt;}
.y39{bottom:790.853333pt;}
.y6f{bottom:791.653333pt;}
.yd{bottom:803.173333pt;}
.y38{bottom:809.253333pt;}
.y9b{bottom:811.333333pt;}
.yb1{bottom:812.613333pt;}
.y53{bottom:818.533333pt;}
.y6e{bottom:819.333333pt;}
.yc{bottom:821.573333pt;}
.y88{bottom:827.333333pt;}
.y37{bottom:827.653333pt;}
.yb{bottom:841.093333pt;}
.yb0{bottom:842.693333pt;}
.y36{bottom:846.053333pt;}
.y6d{bottom:846.853333pt;}
.y86{bottom:857.413333pt;}
.y35{bottom:864.453333pt;}
.ya{bottom:865.573333pt;}
.y99{bottom:871.973333pt;}
.yaf{bottom:872.613333pt;}
.y52{bottom:873.733333pt;}
.y6c{bottom:874.533333pt;}
.y34{bottom:882.853333pt;}
.y9{bottom:888.933333pt;}
.y33{bottom:901.253333pt;}
.y6b{bottom:902.053333pt;}
.yae{bottom:902.693333pt;}
.y8{bottom:908.613333pt;}
.y85{bottom:918.053333pt;}
.y32{bottom:919.653333pt;}
.y51{bottom:928.933333pt;}
.y6a{bottom:929.733333pt;}
.yad{bottom:932.613333pt;}
.y7{bottom:933.093333pt;}
.y31{bottom:938.053333pt;}
.y84{bottom:947.973333pt;}
.y69{bottom:953.893333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h10{height:15.200000pt;}
.h8{height:15.360000pt;}
.hc{height:28.352000pt;}
.h13{height:29.920000pt;}
.he{height:30.560000pt;}
.h11{height:30.592000pt;}
.ha{height:30.720000pt;}
.hf{height:30.752000pt;}
.hb{height:45.920000pt;}
.h14{height:45.952000pt;}
.hd{height:46.080000pt;}
.h4{height:46.781250pt;}
.h9{height:47.180312pt;}
.h7{height:47.621250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h15{height:57.952000pt;}
.h12{height:61.440000pt;}
.h6{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:86.720000pt;}
.w7{width:94.752000pt;}
.w4{width:98.752000pt;}
.w8{width:102.720000pt;}
.w6{width:110.752000pt;}
.w3{width:122.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.080000pt;}
.x2{left:94.591988pt;}
.xa{left:95.872000pt;}
.x5{left:117.631988pt;}
.x3{left:132.351988pt;}
.x7{left:154.746655pt;}
.x6{left:216.026655pt;}
.xc{left:219.866667pt;}
.x9{left:230.426655pt;}
.x8{left:295.426655pt;}
.xd{left:319.906667pt;}
.xe{left:407.906667pt;}
.x1{left:415.773322pt;}
.xf{left:519.933333pt;}
.x10{left:615.973333pt;}
.x4{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; }
  