
    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_918bf666c732e86d3008371f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c9391f9bb7272f5cced1800a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c152e7e9cbff29f99f6ad37a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_58feb8c0dacd404216dbaa34.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8c4445818a0b6e2637d0cd22.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_0ff34902aef7e4f549f6f3a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:-4.464000px;}
.ls1{letter-spacing:-2.160000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls4{letter-spacing:54.864000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-9.000000px;}
._9{margin-left:-7.272000px;}
._16{margin-left:-5.616000px;}
._4{margin-left:-4.248000px;}
._6{margin-left:-2.376000px;}
._3{margin-left:-1.296000px;}
._2{width:1.296000px;}
._d{width:2.520000px;}
._c{width:3.600000px;}
._0{width:5.112000px;}
._1{width:6.552000px;}
._b{width:8.064000px;}
._e{width:9.936000px;}
._a{width:11.748000px;}
._8{width:12.816000px;}
._13{width:14.184000px;}
._14{width:15.552000px;}
._f{width:16.704000px;}
._1b{width:19.008000px;}
._21{width:20.016000px;}
._1a{width:21.024000px;}
._10{width:22.824000px;}
._15{width:24.048000px;}
._11{width:25.056000px;}
._12{width:26.064000px;}
._2b{width:27.216000px;}
._1e{width:28.440000px;}
._1f{width:30.384000px;}
._20{width:32.184000px;}
._19{width:34.056000px;}
._18{width:35.352000px;}
._2e{width:36.360000px;}
._5{width:37.368000px;}
._7{width:38.376000px;}
._2a{width:41.040000px;}
._1c{width:43.920000px;}
._1d{width:45.072000px;}
._22{width:52.704000px;}
._23{width:54.144000px;}
._24{width:55.212000px;}
._25{width:68.472000px;}
._28{width:104.544000px;}
._26{width:129.240000px;}
._27{width:245.304000px;}
._30{width:246.312000px;}
._2d{width:248.184000px;}
._2c{width:249.264000px;}
._29{width:285.984000px;}
._2f{width:360.216000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:14.220000px;}
.y68{bottom:14.385000px;}
.y36{bottom:14.400000px;}
.y4e{bottom:14.565000px;}
.y51{bottom:14.580000px;}
.y74{bottom:14.595000px;}
.y3d{bottom:14.745000px;}
.y43{bottom:14.760000px;}
.y8c{bottom:14.775000px;}
.y47{bottom:45.360000px;}
.y37{bottom:45.390000px;}
.y35{bottom:45.405000px;}
.y3c{bottom:45.705000px;}
.y50{bottom:45.720000px;}
.y73{bottom:45.735000px;}
.y42{bottom:45.750000px;}
.y46{bottom:76.320000px;}
.y33{bottom:76.530000px;}
.y4d{bottom:76.665000px;}
.y9f{bottom:76.680000px;}
.y70{bottom:76.695000px;}
.y41{bottom:76.710000px;}
.y3b{bottom:76.845000px;}
.ya1{bottom:76.860000px;}
.y8b{bottom:76.875000px;}
.y58{bottom:76.905000px;}
.y45{bottom:107.460000px;}
.y76{bottom:107.640000px;}
.y6f{bottom:107.655000px;}
.y3a{bottom:107.805000px;}
.ya3{bottom:107.820000px;}
.y8a{bottom:107.835000px;}
.y66{bottom:107.850000px;}
.y57{bottom:107.865000px;}
.y9c{bottom:110.700000px;}
.y22{bottom:115.596000px;}
.y75{bottom:138.780000px;}
.y6e{bottom:138.795000px;}
.y4c{bottom:138.810000px;}
.y89{bottom:138.975000px;}
.y56{bottom:139.005000px;}
.yb2{bottom:141.336000px;}
.y9b{bottom:141.840000px;}
.y2f{bottom:146.196000px;}
.y21{bottom:146.556000px;}
.y49{bottom:157.005000px;}
.y67{bottom:159.885000px;}
.y72{bottom:169.740000px;}
.y6d{bottom:169.755000px;}
.y88{bottom:169.935000px;}
.y4b{bottom:169.950000px;}
.y55{bottom:169.965000px;}
.yb1{bottom:172.290000px;}
.y9a{bottom:172.800000px;}
.y2e{bottom:177.330000px;}
.y20{bottom:177.690000px;}
.y59{bottom:191.745000px;}
.y71{bottom:200.880000px;}
.y6c{bottom:200.895000px;}
.y4a{bottom:200.910000px;}
.y87{bottom:201.075000px;}
.y54{bottom:201.105000px;}
.yb0{bottom:203.430000px;}
.y99{bottom:203.940000px;}
.y2d{bottom:208.290000px;}
.y1f{bottom:208.650000px;}
.y6a{bottom:231.870000px;}
.y86{bottom:232.035000px;}
.y65{bottom:232.050000px;}
.y53{bottom:232.065000px;}
.yaf{bottom:234.390000px;}
.y98{bottom:234.900000px;}
.y2c{bottom:239.430000px;}
.y1e{bottom:239.790000px;}
.y64{bottom:263.010000px;}
.y52{bottom:263.205000px;}
.yae{bottom:265.530000px;}
.y97{bottom:266.085000px;}
.y1d{bottom:270.750000px;}
.y8d{bottom:284.835000px;}
.y63{bottom:294.150000px;}
.y85{bottom:294.165000px;}
.yad{bottom:296.535000px;}
.y96{bottom:297.045000px;}
.y1c{bottom:301.755000px;}
.y79{bottom:316.680000px;}
.y77{bottom:316.695000px;}
.y62{bottom:325.110000px;}
.y81{bottom:325.125000px;}
.yac{bottom:327.675000px;}
.y95{bottom:328.185000px;}
.y1b{bottom:332.895000px;}
.y61{bottom:356.250000px;}
.y80{bottom:356.265000px;}
.yab{bottom:358.635000px;}
.y94{bottom:359.145000px;}
.y1a{bottom:363.855000px;}
.y48{bottom:375.015000px;}
.y7f{bottom:387.225000px;}
.y60{bottom:387.240000px;}
.yaa{bottom:389.775000px;}
.y93{bottom:390.285000px;}
.y19{bottom:394.995000px;}
.y44{bottom:406.875000px;}
.y7e{bottom:418.365000px;}
.y5f{bottom:418.380000px;}
.ya9{bottom:420.735000px;}
.y92{bottom:421.245000px;}
.y18{bottom:425.955000px;}
.y7d{bottom:449.325000px;}
.y5e{bottom:449.340000px;}
.ya8{bottom:451.875000px;}
.y91{bottom:452.385000px;}
.y17{bottom:457.095000px;}
.y84{bottom:480.450000px;}
.y7c{bottom:480.465000px;}
.y5d{bottom:480.480000px;}
.ya7{bottom:482.835000px;}
.y90{bottom:483.345000px;}
.y2b{bottom:487.695000px;}
.y16{bottom:488.055000px;}
.yb7{bottom:488.235000px;}
.yb6{bottom:508.935000px;}
.y83{bottom:511.410000px;}
.y7b{bottom:511.425000px;}
.y5c{bottom:511.440000px;}
.ya6{bottom:513.615000px;}
.y2a{bottom:518.835000px;}
.y15{bottom:519.195000px;}
.yb5{bottom:529.635000px;}
.y40{bottom:531.795000px;}
.y5b{bottom:542.580000px;}
.y82{bottom:542.595000px;}
.y7a{bottom:542.610000px;}
.ya5{bottom:544.935000px;}
.y31{bottom:549.795000px;}
.y14{bottom:550.155000px;}
.yb4{bottom:550.335000px;}
.y5a{bottom:573.540000px;}
.y78{bottom:573.555000px;}
.ya4{bottom:576.105000px;}
.y30{bottom:580.965000px;}
.y13{bottom:581.325000px;}
.y8f{bottom:593.205000px;}
.y12{bottom:612.285000px;}
.y3e{bottom:625.785000px;}
.y11{bottom:643.425000px;}
.y39{bottom:657.480000px;}
.y10{bottom:674.385000px;}
.yb3{bottom:705.165000px;}
.yf{bottom:705.525000px;}
.ye{bottom:736.125000px;}
.y29{bottom:736.485000px;}
.ya2{bottom:749.085000px;}
.yd{bottom:767.265000px;}
.y28{bottom:767.625000px;}
.y38{bottom:782.385000px;}
.yc{bottom:798.585000px;}
.y34{bottom:814.245000px;}
.y32{bottom:814.260000px;}
.yb{bottom:829.725000px;}
.ya0{bottom:843.090000px;}
.ya{bottom:860.730000px;}
.y9{bottom:891.870000px;}
.y6b{bottom:907.515000px;}
.y69{bottom:907.530000px;}
.y27{bottom:922.470000px;}
.y8{bottom:922.830000px;}
.y9e{bottom:937.050000px;}
.y26{bottom:953.610000px;}
.y7{bottom:953.970000px;}
.y6{bottom:984.930000px;}
.y5{bottom:1016.070000px;}
.y9d{bottom:1030.830000px;}
.y4{bottom:1047.030000px;}
.y4f{bottom:1062.690000px;}
.y3{bottom:1077.810000px;}
.y25{bottom:1078.170000px;}
.y8e{bottom:1093.650000px;}
.y2{bottom:1108.770000px;}
.y24{bottom:1109.130000px;}
.y1{bottom:1139.940000px;}
.y23{bottom:1140.300000px;}
.h9{height:30.960000px;}
.hb{height:31.125000px;}
.h7{height:31.140000px;}
.h16{height:62.085000px;}
.h14{height:62.130000px;}
.h2{height:63.949219px;}
.h5{height:64.546875px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.hd{height:74.004654px;}
.h17{height:93.045000px;}
.ha{height:93.090000px;}
.h18{height:93.225000px;}
.h6{height:93.262500px;}
.h8{height:124.185000px;}
.h13{height:124.222500px;}
.h19{height:155.160000px;}
.hc{height:217.275000px;}
.h11{height:248.250000px;}
.h12{height:248.265000px;}
.he{height:279.570000px;}
.h15{height:499.710000px;}
.hf{height:589.920000px;}
.h10{height:589.935000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:168.285000px;}
.w5{width:168.291000px;}
.wa{width:168.300000px;}
.w7{width:232.035000px;}
.w8{width:232.050000px;}
.w3{width:232.410000px;}
.w6{width:275.820000px;}
.w2{width:445.200000px;}
.wb{width:508.590000px;}
.w4{width:677.610000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:4.530000px;}
.x11{left:7.731000px;}
.x13{left:8.811000px;}
.x14{left:10.431000px;}
.x17{left:13.170000px;}
.x21{left:15.150000px;}
.x18{left:22.530000px;}
.xe{left:27.705000px;}
.x1e{left:31.530000px;}
.x1f{left:37.110000px;}
.xf{left:38.505000px;}
.x24{left:41.025000px;}
.x22{left:42.150000px;}
.x16{left:44.490000px;}
.x1a{left:48.045000px;}
.x19{left:50.250000px;}
.x1b{left:52.905000px;}
.xa{left:65.325000px;}
.xc{left:68.745000px;}
.x20{left:71.625000px;}
.xb{left:91.965000px;}
.x1c{left:93.945000px;}
.x25{left:126.390000px;}
.x1{left:127.656000px;}
.x9{left:129.105000px;}
.x7{left:170.130000px;}
.x8{left:212.790000px;}
.x10{left:265.170000px;}
.x23{left:267.870000px;}
.x12{left:282.810000px;}
.x15{left:298.125000px;}
.x6{left:396.435000px;}
.xd{left:574.320000px;}
.x3{left:597.525000px;}
.x2{left:600.045000px;}
.x4{left:609.945000px;}
.x5{left:765.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-3.968000pt;}
.ls1{letter-spacing:-1.920000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls4{letter-spacing:48.768000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-8.000000pt;}
._9{margin-left:-6.464000pt;}
._16{margin-left:-4.992000pt;}
._4{margin-left:-3.776000pt;}
._6{margin-left:-2.112000pt;}
._3{margin-left:-1.152000pt;}
._2{width:1.152000pt;}
._d{width:2.240000pt;}
._c{width:3.200000pt;}
._0{width:4.544000pt;}
._1{width:5.824000pt;}
._b{width:7.168000pt;}
._e{width:8.832000pt;}
._a{width:10.442667pt;}
._8{width:11.392000pt;}
._13{width:12.608000pt;}
._14{width:13.824000pt;}
._f{width:14.848000pt;}
._1b{width:16.896000pt;}
._21{width:17.792000pt;}
._1a{width:18.688000pt;}
._10{width:20.288000pt;}
._15{width:21.376000pt;}
._11{width:22.272000pt;}
._12{width:23.168000pt;}
._2b{width:24.192000pt;}
._1e{width:25.280000pt;}
._1f{width:27.008000pt;}
._20{width:28.608000pt;}
._19{width:30.272000pt;}
._18{width:31.424000pt;}
._2e{width:32.320000pt;}
._5{width:33.216000pt;}
._7{width:34.112000pt;}
._2a{width:36.480000pt;}
._1c{width:39.040000pt;}
._1d{width:40.064000pt;}
._22{width:46.848000pt;}
._23{width:48.128000pt;}
._24{width:49.077333pt;}
._25{width:60.864000pt;}
._28{width:92.928000pt;}
._26{width:114.880000pt;}
._27{width:218.048000pt;}
._30{width:218.944000pt;}
._2d{width:220.608000pt;}
._2c{width:221.568000pt;}
._29{width:254.208000pt;}
._2f{width:320.192000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:12.640000pt;}
.y68{bottom:12.786667pt;}
.y36{bottom:12.800000pt;}
.y4e{bottom:12.946667pt;}
.y51{bottom:12.960000pt;}
.y74{bottom:12.973333pt;}
.y3d{bottom:13.106667pt;}
.y43{bottom:13.120000pt;}
.y8c{bottom:13.133333pt;}
.y47{bottom:40.320000pt;}
.y37{bottom:40.346667pt;}
.y35{bottom:40.360000pt;}
.y3c{bottom:40.626667pt;}
.y50{bottom:40.640000pt;}
.y73{bottom:40.653333pt;}
.y42{bottom:40.666667pt;}
.y46{bottom:67.840000pt;}
.y33{bottom:68.026667pt;}
.y4d{bottom:68.146667pt;}
.y9f{bottom:68.160000pt;}
.y70{bottom:68.173333pt;}
.y41{bottom:68.186667pt;}
.y3b{bottom:68.306667pt;}
.ya1{bottom:68.320000pt;}
.y8b{bottom:68.333333pt;}
.y58{bottom:68.360000pt;}
.y45{bottom:95.520000pt;}
.y76{bottom:95.680000pt;}
.y6f{bottom:95.693333pt;}
.y3a{bottom:95.826667pt;}
.ya3{bottom:95.840000pt;}
.y8a{bottom:95.853333pt;}
.y66{bottom:95.866667pt;}
.y57{bottom:95.880000pt;}
.y9c{bottom:98.400000pt;}
.y22{bottom:102.752000pt;}
.y75{bottom:123.360000pt;}
.y6e{bottom:123.373333pt;}
.y4c{bottom:123.386667pt;}
.y89{bottom:123.533333pt;}
.y56{bottom:123.560000pt;}
.yb2{bottom:125.632000pt;}
.y9b{bottom:126.080000pt;}
.y2f{bottom:129.952000pt;}
.y21{bottom:130.272000pt;}
.y49{bottom:139.560000pt;}
.y67{bottom:142.120000pt;}
.y72{bottom:150.880000pt;}
.y6d{bottom:150.893333pt;}
.y88{bottom:151.053333pt;}
.y4b{bottom:151.066667pt;}
.y55{bottom:151.080000pt;}
.yb1{bottom:153.146667pt;}
.y9a{bottom:153.600000pt;}
.y2e{bottom:157.626667pt;}
.y20{bottom:157.946667pt;}
.y59{bottom:170.440000pt;}
.y71{bottom:178.560000pt;}
.y6c{bottom:178.573333pt;}
.y4a{bottom:178.586667pt;}
.y87{bottom:178.733333pt;}
.y54{bottom:178.760000pt;}
.yb0{bottom:180.826667pt;}
.y99{bottom:181.280000pt;}
.y2d{bottom:185.146667pt;}
.y1f{bottom:185.466667pt;}
.y6a{bottom:206.106667pt;}
.y86{bottom:206.253333pt;}
.y65{bottom:206.266667pt;}
.y53{bottom:206.280000pt;}
.yaf{bottom:208.346667pt;}
.y98{bottom:208.800000pt;}
.y2c{bottom:212.826667pt;}
.y1e{bottom:213.146667pt;}
.y64{bottom:233.786667pt;}
.y52{bottom:233.960000pt;}
.yae{bottom:236.026667pt;}
.y97{bottom:236.520000pt;}
.y1d{bottom:240.666667pt;}
.y8d{bottom:253.186667pt;}
.y63{bottom:261.466667pt;}
.y85{bottom:261.480000pt;}
.yad{bottom:263.586667pt;}
.y96{bottom:264.040000pt;}
.y1c{bottom:268.226667pt;}
.y79{bottom:281.493333pt;}
.y77{bottom:281.506667pt;}
.y62{bottom:288.986667pt;}
.y81{bottom:289.000000pt;}
.yac{bottom:291.266667pt;}
.y95{bottom:291.720000pt;}
.y1b{bottom:295.906667pt;}
.y61{bottom:316.666667pt;}
.y80{bottom:316.680000pt;}
.yab{bottom:318.786667pt;}
.y94{bottom:319.240000pt;}
.y1a{bottom:323.426667pt;}
.y48{bottom:333.346667pt;}
.y7f{bottom:344.200000pt;}
.y60{bottom:344.213333pt;}
.yaa{bottom:346.466667pt;}
.y93{bottom:346.920000pt;}
.y19{bottom:351.106667pt;}
.y44{bottom:361.666667pt;}
.y7e{bottom:371.880000pt;}
.y5f{bottom:371.893333pt;}
.ya9{bottom:373.986667pt;}
.y92{bottom:374.440000pt;}
.y18{bottom:378.626667pt;}
.y7d{bottom:399.400000pt;}
.y5e{bottom:399.413333pt;}
.ya8{bottom:401.666667pt;}
.y91{bottom:402.120000pt;}
.y17{bottom:406.306667pt;}
.y84{bottom:427.066667pt;}
.y7c{bottom:427.080000pt;}
.y5d{bottom:427.093333pt;}
.ya7{bottom:429.186667pt;}
.y90{bottom:429.640000pt;}
.y2b{bottom:433.506667pt;}
.y16{bottom:433.826667pt;}
.yb7{bottom:433.986667pt;}
.yb6{bottom:452.386667pt;}
.y83{bottom:454.586667pt;}
.y7b{bottom:454.600000pt;}
.y5c{bottom:454.613333pt;}
.ya6{bottom:456.546667pt;}
.y2a{bottom:461.186667pt;}
.y15{bottom:461.506667pt;}
.yb5{bottom:470.786667pt;}
.y40{bottom:472.706667pt;}
.y5b{bottom:482.293333pt;}
.y82{bottom:482.306667pt;}
.y7a{bottom:482.320000pt;}
.ya5{bottom:484.386667pt;}
.y31{bottom:488.706667pt;}
.y14{bottom:489.026667pt;}
.yb4{bottom:489.186667pt;}
.y5a{bottom:509.813333pt;}
.y78{bottom:509.826667pt;}
.ya4{bottom:512.093333pt;}
.y30{bottom:516.413333pt;}
.y13{bottom:516.733333pt;}
.y8f{bottom:527.293333pt;}
.y12{bottom:544.253333pt;}
.y3e{bottom:556.253333pt;}
.y11{bottom:571.933333pt;}
.y39{bottom:584.426667pt;}
.y10{bottom:599.453333pt;}
.yb3{bottom:626.813333pt;}
.yf{bottom:627.133333pt;}
.ye{bottom:654.333333pt;}
.y29{bottom:654.653333pt;}
.ya2{bottom:665.853333pt;}
.yd{bottom:682.013333pt;}
.y28{bottom:682.333333pt;}
.y38{bottom:695.453333pt;}
.yc{bottom:709.853333pt;}
.y34{bottom:723.773333pt;}
.y32{bottom:723.786667pt;}
.yb{bottom:737.533333pt;}
.ya0{bottom:749.413333pt;}
.ya{bottom:765.093333pt;}
.y9{bottom:792.773333pt;}
.y6b{bottom:806.680000pt;}
.y69{bottom:806.693333pt;}
.y27{bottom:819.973333pt;}
.y8{bottom:820.293333pt;}
.y9e{bottom:832.933333pt;}
.y26{bottom:847.653333pt;}
.y7{bottom:847.973333pt;}
.y6{bottom:875.493333pt;}
.y5{bottom:903.173333pt;}
.y9d{bottom:916.293333pt;}
.y4{bottom:930.693333pt;}
.y4f{bottom:944.613333pt;}
.y3{bottom:958.053333pt;}
.y25{bottom:958.373333pt;}
.y8e{bottom:972.133333pt;}
.y2{bottom:985.573333pt;}
.y24{bottom:985.893333pt;}
.y1{bottom:1013.280000pt;}
.y23{bottom:1013.600000pt;}
.h9{height:27.520000pt;}
.hb{height:27.666667pt;}
.h7{height:27.680000pt;}
.h16{height:55.186667pt;}
.h14{height:55.226667pt;}
.h2{height:56.843750pt;}
.h5{height:57.375000pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.hd{height:65.781915pt;}
.h17{height:82.706667pt;}
.ha{height:82.746667pt;}
.h18{height:82.866667pt;}
.h6{height:82.900000pt;}
.h8{height:110.386667pt;}
.h13{height:110.420000pt;}
.h19{height:137.920000pt;}
.hc{height:193.133333pt;}
.h11{height:220.666667pt;}
.h12{height:220.680000pt;}
.he{height:248.506667pt;}
.h15{height:444.186667pt;}
.hf{height:524.373333pt;}
.h10{height:524.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:149.586667pt;}
.w5{width:149.592000pt;}
.wa{width:149.600000pt;}
.w7{width:206.253333pt;}
.w8{width:206.266667pt;}
.w3{width:206.586667pt;}
.w6{width:245.173333pt;}
.w2{width:395.733333pt;}
.wb{width:452.080000pt;}
.w4{width:602.320000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:4.026667pt;}
.x11{left:6.872000pt;}
.x13{left:7.832000pt;}
.x14{left:9.272000pt;}
.x17{left:11.706667pt;}
.x21{left:13.466667pt;}
.x18{left:20.026667pt;}
.xe{left:24.626667pt;}
.x1e{left:28.026667pt;}
.x1f{left:32.986667pt;}
.xf{left:34.226667pt;}
.x24{left:36.466667pt;}
.x22{left:37.466667pt;}
.x16{left:39.546667pt;}
.x1a{left:42.706667pt;}
.x19{left:44.666667pt;}
.x1b{left:47.026667pt;}
.xa{left:58.066667pt;}
.xc{left:61.106667pt;}
.x20{left:63.666667pt;}
.xb{left:81.746667pt;}
.x1c{left:83.506667pt;}
.x25{left:112.346667pt;}
.x1{left:113.472000pt;}
.x9{left:114.760000pt;}
.x7{left:151.226667pt;}
.x8{left:189.146667pt;}
.x10{left:235.706667pt;}
.x23{left:238.106667pt;}
.x12{left:251.386667pt;}
.x15{left:265.000000pt;}
.x6{left:352.386667pt;}
.xd{left:510.506667pt;}
.x3{left:531.133333pt;}
.x2{left:533.373333pt;}
.x4{left:542.173333pt;}
.x5{left:680.453333pt;}
}




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