
    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_d79f10c7efbf478e3b45c3d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.116211;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_79ae560b6dd4187c635675e9.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_ff08b5807672acfa30547b87.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_d48931e00c5fce0d5aaf8b54.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.085449;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_cd052c8091ba15d190a111b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041016;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_3499468505b6cd94d7ae320c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_2548994d16d270e1b1c97026.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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:ff8;src:url('chunks/assets/font_380357f9fff3f9e977cb1427.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:ffa;src:url('chunks/assets/font_0219ebe484d3fb01e88adb41.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2fbee3e25a110b3a03aba4ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.950238;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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.720000px;}
.ls5{letter-spacing:3.600000px;}
.ls3{letter-spacing:33.960000px;}
.ls2{letter-spacing:64.002720px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws2{word-spacing:-59.760000px;}
.ws5{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-16.488000px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-5.112000px;}
._12{margin-left:-3.600000px;}
._13{margin-left:-2.016000px;}
._1{margin-left:-1.008000px;}
._0{width:1.020000px;}
._8{width:2.220000px;}
._7{width:3.456000px;}
._6{width:4.968000px;}
._9{width:5.976000px;}
._a{width:7.116000px;}
._10{width:8.640000px;}
._b{width:9.720000px;}
._e{width:11.088000px;}
._f{width:12.096000px;}
._5{width:13.536000px;}
._c{width:14.544000px;}
._d{width:15.624000px;}
._16{width:16.980000px;}
._11{width:19.296000px;}
._19{width:20.486400px;}
._3{width:22.608000px;}
._4{width:24.120000px;}
._1a{width:25.272000px;}
._1b{width:26.424000px;}
._22{width:29.304000px;}
._23{width:30.444000px;}
._26{width:33.036000px;}
._14{width:34.056000px;}
._15{width:35.352000px;}
._18{width:36.432000px;}
._17{width:37.440000px;}
._1d{width:47.016000px;}
._1e{width:48.348000px;}
._24{width:82.116000px;}
._25{width:83.160000px;}
._27{width:101.880000px;}
._1f{width:126.864000px;}
._21{width:242.328000px;}
._20{width:244.188000px;}
._2{width:1012.188000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:80.676000px;}
.y7b{bottom:113.076000px;}
.y95{bottom:121.716000px;}
.y31{bottom:129.096000px;}
.y7a{bottom:133.776000px;}
.y94{bottom:142.416000px;}
.y30{bottom:146.376000px;}
.y8c{bottom:147.096000px;}
.y4d{bottom:150.870000px;}
.y2f{bottom:151.590000px;}
.y84{bottom:152.130000px;}
.y79{bottom:154.470000px;}
.y56{bottom:157.530000px;}
.y93{bottom:163.110000px;}
.y2e{bottom:164.370000px;}
.ya4{bottom:167.790000px;}
.y15{bottom:169.230000px;}
.y78{bottom:175.170000px;}
.y55{bottom:178.230000px;}
.y8b{bottom:188.490000px;}
.y14{bottom:189.930000px;}
.y4c{bottom:192.270000px;}
.y83{bottom:193.530000px;}
.y77{bottom:195.870000px;}
.y54{bottom:198.930000px;}
.y92{bottom:201.810000px;}
.ya3{bottom:209.190000px;}
.y76{bottom:216.570000px;}
.y2d{bottom:223.050000px;}
.y8a{bottom:229.890000px;}
.y13{bottom:231.150000px;}
.y4b{bottom:233.670000px;}
.y82{bottom:234.930000px;}
.y75{bottom:237.270000px;}
.ya2{bottom:250.590000px;}
.y74{bottom:257.970000px;}
.y53{bottom:261.210000px;}
.y2c{bottom:264.450000px;}
.y89{bottom:271.290000px;}
.y12{bottom:272.550000px;}
.y4a{bottom:275.070000px;}
.y81{bottom:276.330000px;}
.y73{bottom:278.670000px;}
.ya1{bottom:291.990000px;}
.y72{bottom:299.370000px;}
.y52{bottom:302.655000px;}
.y2b{bottom:303.195000px;}
.y88{bottom:312.735000px;}
.y11{bottom:313.995000px;}
.y49{bottom:316.515000px;}
.y80{bottom:317.775000px;}
.ya0{bottom:333.435000px;}
.y71{bottom:341.175000px;}
.y2a{bottom:341.895000px;}
.y51{bottom:344.055000px;}
.y87{bottom:354.135000px;}
.y48{bottom:355.215000px;}
.y10{bottom:355.395000px;}
.y7f{bottom:359.175000px;}
.y9f{bottom:374.835000px;}
.y70{bottom:379.875000px;}
.y50{bottom:382.755000px;}
.y91{bottom:385.455000px;}
.y86{bottom:395.535000px;}
.yf{bottom:396.795000px;}
.y6f{bottom:400.575000px;}
.y29{bottom:401.295000px;}
.y47{bottom:414.615000px;}
.y9e{bottom:416.235000px;}
.y6e{bottom:421.275000px;}
.y90{bottom:426.855000px;}
.y46{bottom:434.595000px;}
.y9d{bottom:436.935000px;}
.ye{bottom:438.195000px;}
.y85{bottom:440.715000px;}
.y6d{bottom:441.975000px;}
.y4f{bottom:442.155000px;}
.y28{bottom:442.695000px;}
.y45{bottom:451.875000px;}
.y9c{bottom:458.895000px;}
.y6c{bottom:462.675000px;}
.ya5{bottom:465.555000px;}
.y8f{bottom:468.255000px;}
.y44{bottom:469.155000px;}
.y9b{bottom:482.295000px;}
.y6b{bottom:483.375000px;}
.y4e{bottom:483.555000px;}
.y27{bottom:484.095000px;}
.y43{bottom:486.255000px;}
.yd{bottom:500.295000px;}
.y6a{bottom:504.075000px;}
.y9a{bottom:504.255000px;}
.y8e{bottom:509.655000px;}
.yc{bottom:520.995000px;}
.y69{bottom:524.775000px;}
.y42{bottom:524.955000px;}
.y26{bottom:525.495000px;}
.yb{bottom:541.695000px;}
.y68{bottom:545.475000px;}
.y41{bottom:545.655000px;}
.y8d{bottom:548.355000px;}
.y67{bottom:566.205000px;}
.y40{bottom:566.385000px;}
.y25{bottom:566.925000px;}
.ya{bottom:583.125000px;}
.y66{bottom:586.905000px;}
.y3f{bottom:587.085000px;}
.y65{bottom:607.605000px;}
.y3e{bottom:607.785000px;}
.y24{bottom:608.325000px;}
.y9{bottom:624.525000px;}
.y64{bottom:628.305000px;}
.y3d{bottom:628.485000px;}
.y63{bottom:649.005000px;}
.y3c{bottom:649.185000px;}
.y23{bottom:649.725000px;}
.y8{bottom:665.925000px;}
.y62{bottom:669.705000px;}
.y99{bottom:669.885000px;}
.y7{bottom:686.625000px;}
.y7e{bottom:690.225000px;}
.y61{bottom:690.405000px;}
.y3b{bottom:690.585000px;}
.y22{bottom:691.125000px;}
.y60{bottom:710.925000px;}
.y98{bottom:711.285000px;}
.y6{bottom:727.305000px;}
.y5f{bottom:731.625000px;}
.y3a{bottom:731.985000px;}
.y21{bottom:732.525000px;}
.y5e{bottom:752.325000px;}
.y97{bottom:752.685000px;}
.y5d{bottom:773.025000px;}
.y39{bottom:773.385000px;}
.y20{bottom:773.925000px;}
.y96{bottom:794.085000px;}
.y5{bottom:795.165000px;}
.y5c{bottom:814.470000px;}
.y38{bottom:814.830000px;}
.y1f{bottom:815.370000px;}
.y7d{bottom:835.530000px;}
.y4{bottom:836.610000px;}
.y5b{bottom:855.870000px;}
.y37{bottom:856.230000px;}
.y1e{bottom:856.770000px;}
.y7c{bottom:876.930000px;}
.y3{bottom:878.010000px;}
.y1d{bottom:895.470000px;}
.y36{bottom:897.630000px;}
.y5a{bottom:918.330000px;}
.y2{bottom:923.190000px;}
.y35{bottom:939.030000px;}
.y1c{bottom:954.870000px;}
.y59{bottom:959.730000px;}
.y1b{bottom:975.570000px;}
.y34{bottom:980.430000px;}
.y1{bottom:988.890000px;}
.y19{bottom:996.270000px;}
.y58{bottom:1001.130000px;}
.y1a{bottom:1003.110000px;}
.y33{bottom:1021.830000px;}
.y18{bottom:1036.770000px;}
.y57{bottom:1042.530000px;}
.y32{bottom:1063.230000px;}
.y16{bottom:1116.900000px;}
.h8{height:38.158594px;}
.h7{height:47.344922px;}
.h9{height:58.651172px;}
.h5{height:61.839844px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.h6{height:71.613281px;}
.h4{height:72.562500px;}
.ha{height:74.004654px;}
.h3{height:108.843750px;}
.h1{height:145.125000px;}
.h0{height:1188.000000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:108.035986px;}
.x17{left:135.035986px;}
.x2{left:155.729986px;}
.xd{left:162.029986px;}
.x12{left:166.889986px;}
.x7{left:193.709986px;}
.x1{left:204.329986px;}
.x18{left:241.229986px;}
.x4{left:246.989986px;}
.x14{left:261.749986px;}
.x13{left:298.649986px;}
.x16{left:312.554986px;}
.x11{left:324.074986px;}
.xf{left:337.034986px;}
.xc{left:385.454986px;}
.x9{left:402.734986px;}
.x5{left:405.794986px;}
.x1a{left:408.494986px;}
.x15{left:409.934986px;}
.x19{left:416.054986px;}
.x10{left:424.514986px;}
.xe{left:425.594986px;}
.x1b{left:449.894986px;}
.x8{left:454.394986px;}
.x3{left:459.074986px;}
.xa{left:509.114973px;}
.xb{left:515.264986px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls5{letter-spacing:3.200000pt;}
.ls3{letter-spacing:30.186667pt;}
.ls2{letter-spacing:56.891307pt;}
.ws3{word-spacing:-64.000000pt;}
.ws2{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-4.544000pt;}
._12{margin-left:-3.200000pt;}
._13{margin-left:-1.792000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.906667pt;}
._8{width:1.973333pt;}
._7{width:3.072000pt;}
._6{width:4.416000pt;}
._9{width:5.312000pt;}
._a{width:6.325333pt;}
._10{width:7.680000pt;}
._b{width:8.640000pt;}
._e{width:9.856000pt;}
._f{width:10.752000pt;}
._5{width:12.032000pt;}
._c{width:12.928000pt;}
._d{width:13.888000pt;}
._16{width:15.093333pt;}
._11{width:17.152000pt;}
._19{width:18.210133pt;}
._3{width:20.096000pt;}
._4{width:21.440000pt;}
._1a{width:22.464000pt;}
._1b{width:23.488000pt;}
._22{width:26.048000pt;}
._23{width:27.061333pt;}
._26{width:29.365333pt;}
._14{width:30.272000pt;}
._15{width:31.424000pt;}
._18{width:32.384000pt;}
._17{width:33.280000pt;}
._1d{width:41.792000pt;}
._1e{width:42.976000pt;}
._24{width:72.992000pt;}
._25{width:73.920000pt;}
._27{width:90.560000pt;}
._1f{width:112.768000pt;}
._21{width:215.402667pt;}
._20{width:217.056000pt;}
._2{width:899.722667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:71.712000pt;}
.y7b{bottom:100.512000pt;}
.y95{bottom:108.192000pt;}
.y31{bottom:114.752000pt;}
.y7a{bottom:118.912000pt;}
.y94{bottom:126.592000pt;}
.y30{bottom:130.112000pt;}
.y8c{bottom:130.752000pt;}
.y4d{bottom:134.106667pt;}
.y2f{bottom:134.746667pt;}
.y84{bottom:135.226667pt;}
.y79{bottom:137.306667pt;}
.y56{bottom:140.026667pt;}
.y93{bottom:144.986667pt;}
.y2e{bottom:146.106667pt;}
.ya4{bottom:149.146667pt;}
.y15{bottom:150.426667pt;}
.y78{bottom:155.706667pt;}
.y55{bottom:158.426667pt;}
.y8b{bottom:167.546667pt;}
.y14{bottom:168.826667pt;}
.y4c{bottom:170.906667pt;}
.y83{bottom:172.026667pt;}
.y77{bottom:174.106667pt;}
.y54{bottom:176.826667pt;}
.y92{bottom:179.386667pt;}
.ya3{bottom:185.946667pt;}
.y76{bottom:192.506667pt;}
.y2d{bottom:198.266667pt;}
.y8a{bottom:204.346667pt;}
.y13{bottom:205.466667pt;}
.y4b{bottom:207.706667pt;}
.y82{bottom:208.826667pt;}
.y75{bottom:210.906667pt;}
.ya2{bottom:222.746667pt;}
.y74{bottom:229.306667pt;}
.y53{bottom:232.186667pt;}
.y2c{bottom:235.066667pt;}
.y89{bottom:241.146667pt;}
.y12{bottom:242.266667pt;}
.y4a{bottom:244.506667pt;}
.y81{bottom:245.626667pt;}
.y73{bottom:247.706667pt;}
.ya1{bottom:259.546667pt;}
.y72{bottom:266.106667pt;}
.y52{bottom:269.026667pt;}
.y2b{bottom:269.506667pt;}
.y88{bottom:277.986667pt;}
.y11{bottom:279.106667pt;}
.y49{bottom:281.346667pt;}
.y80{bottom:282.466667pt;}
.ya0{bottom:296.386667pt;}
.y71{bottom:303.266667pt;}
.y2a{bottom:303.906667pt;}
.y51{bottom:305.826667pt;}
.y87{bottom:314.786667pt;}
.y48{bottom:315.746667pt;}
.y10{bottom:315.906667pt;}
.y7f{bottom:319.266667pt;}
.y9f{bottom:333.186667pt;}
.y70{bottom:337.666667pt;}
.y50{bottom:340.226667pt;}
.y91{bottom:342.626667pt;}
.y86{bottom:351.586667pt;}
.yf{bottom:352.706667pt;}
.y6f{bottom:356.066667pt;}
.y29{bottom:356.706667pt;}
.y47{bottom:368.546667pt;}
.y9e{bottom:369.986667pt;}
.y6e{bottom:374.466667pt;}
.y90{bottom:379.426667pt;}
.y46{bottom:386.306667pt;}
.y9d{bottom:388.386667pt;}
.ye{bottom:389.506667pt;}
.y85{bottom:391.746667pt;}
.y6d{bottom:392.866667pt;}
.y4f{bottom:393.026667pt;}
.y28{bottom:393.506667pt;}
.y45{bottom:401.666667pt;}
.y9c{bottom:407.906667pt;}
.y6c{bottom:411.266667pt;}
.ya5{bottom:413.826667pt;}
.y8f{bottom:416.226667pt;}
.y44{bottom:417.026667pt;}
.y9b{bottom:428.706667pt;}
.y6b{bottom:429.666667pt;}
.y4e{bottom:429.826667pt;}
.y27{bottom:430.306667pt;}
.y43{bottom:432.226667pt;}
.yd{bottom:444.706667pt;}
.y6a{bottom:448.066667pt;}
.y9a{bottom:448.226667pt;}
.y8e{bottom:453.026667pt;}
.yc{bottom:463.106667pt;}
.y69{bottom:466.466667pt;}
.y42{bottom:466.626667pt;}
.y26{bottom:467.106667pt;}
.yb{bottom:481.506667pt;}
.y68{bottom:484.866667pt;}
.y41{bottom:485.026667pt;}
.y8d{bottom:487.426667pt;}
.y67{bottom:503.293333pt;}
.y40{bottom:503.453333pt;}
.y25{bottom:503.933333pt;}
.ya{bottom:518.333333pt;}
.y66{bottom:521.693333pt;}
.y3f{bottom:521.853333pt;}
.y65{bottom:540.093333pt;}
.y3e{bottom:540.253333pt;}
.y24{bottom:540.733333pt;}
.y9{bottom:555.133333pt;}
.y64{bottom:558.493333pt;}
.y3d{bottom:558.653333pt;}
.y63{bottom:576.893333pt;}
.y3c{bottom:577.053333pt;}
.y23{bottom:577.533333pt;}
.y8{bottom:591.933333pt;}
.y62{bottom:595.293333pt;}
.y99{bottom:595.453333pt;}
.y7{bottom:610.333333pt;}
.y7e{bottom:613.533333pt;}
.y61{bottom:613.693333pt;}
.y3b{bottom:613.853333pt;}
.y22{bottom:614.333333pt;}
.y60{bottom:631.933333pt;}
.y98{bottom:632.253333pt;}
.y6{bottom:646.493333pt;}
.y5f{bottom:650.333333pt;}
.y3a{bottom:650.653333pt;}
.y21{bottom:651.133333pt;}
.y5e{bottom:668.733333pt;}
.y97{bottom:669.053333pt;}
.y5d{bottom:687.133333pt;}
.y39{bottom:687.453333pt;}
.y20{bottom:687.933333pt;}
.y96{bottom:705.853333pt;}
.y5{bottom:706.813333pt;}
.y5c{bottom:723.973333pt;}
.y38{bottom:724.293333pt;}
.y1f{bottom:724.773333pt;}
.y7d{bottom:742.693333pt;}
.y4{bottom:743.653333pt;}
.y5b{bottom:760.773333pt;}
.y37{bottom:761.093333pt;}
.y1e{bottom:761.573333pt;}
.y7c{bottom:779.493333pt;}
.y3{bottom:780.453333pt;}
.y1d{bottom:795.973333pt;}
.y36{bottom:797.893333pt;}
.y5a{bottom:816.293333pt;}
.y2{bottom:820.613333pt;}
.y35{bottom:834.693333pt;}
.y1c{bottom:848.773333pt;}
.y59{bottom:853.093333pt;}
.y1b{bottom:867.173333pt;}
.y34{bottom:871.493333pt;}
.y1{bottom:879.013333pt;}
.y19{bottom:885.573333pt;}
.y58{bottom:889.893333pt;}
.y1a{bottom:891.653333pt;}
.y33{bottom:908.293333pt;}
.y18{bottom:921.573333pt;}
.y57{bottom:926.693333pt;}
.y32{bottom:945.093333pt;}
.y16{bottom:992.800000pt;}
.h8{height:33.918750pt;}
.h7{height:42.084375pt;}
.h9{height:52.134375pt;}
.h5{height:54.968750pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.h6{height:63.656250pt;}
.h4{height:64.500000pt;}
.ha{height:65.781915pt;}
.h3{height:96.750000pt;}
.h1{height:129.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.031988pt;}
.x17{left:120.031988pt;}
.x2{left:138.426655pt;}
.xd{left:144.026655pt;}
.x12{left:148.346655pt;}
.x7{left:172.186655pt;}
.x1{left:181.626655pt;}
.x18{left:214.426655pt;}
.x4{left:219.546655pt;}
.x14{left:232.666655pt;}
.x13{left:265.466655pt;}
.x16{left:277.826655pt;}
.x11{left:288.066655pt;}
.xf{left:299.586655pt;}
.xc{left:342.626655pt;}
.x9{left:357.986655pt;}
.x5{left:360.706655pt;}
.x1a{left:363.106655pt;}
.x15{left:364.386655pt;}
.x19{left:369.826655pt;}
.x10{left:377.346655pt;}
.xe{left:378.306655pt;}
.x1b{left:399.906655pt;}
.x8{left:403.906655pt;}
.x3{left:408.066655pt;}
.xa{left:452.546642pt;}
.xb{left:458.013321pt;}
}




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