
    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_947f306366b371ed44c2b440.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_eea1f371e7602bc95f082aab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_607eea4e9c654f0728485942.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_10da43b7927dde5936f960f5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8133aad3b7203ea05f75f64f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_b95fd8faa7d244f9c5cc2d62.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_0ae7397dd2e3abab05c8a5d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_58985701b4c755d552b4c977.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_16178e7abd606227e68a7585.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;}
.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;}
.ls6{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls2{letter-spacing:6.480000px;}
.ls3{letter-spacing:13.680000px;}
.lsd{letter-spacing:30.384000px;}
.lsc{letter-spacing:35.280000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.wsa{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.064000px;}
.ws6{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.ws2{word-spacing:0.000000px;}
._27{margin-left:-10.656000px;}
._7{margin-left:-7.560000px;}
._d{margin-left:-6.516000px;}
._2{margin-left:-5.112000px;}
._5{margin-left:-3.972000px;}
._13{margin-left:-2.892000px;}
._1{margin-left:-1.512000px;}
._0{width:1.104000px;}
._e{width:2.124000px;}
._20{width:3.192000px;}
._b{width:4.320000px;}
._4{width:5.616000px;}
._3{width:6.840000px;}
._15{width:7.968000px;}
._14{width:9.000000px;}
._18{width:10.512000px;}
._1b{width:11.520000px;}
._9{width:13.392000px;}
._c{width:14.796000px;}
._a{width:16.152000px;}
._8{width:19.944000px;}
._17{width:21.024000px;}
._16{width:22.104000px;}
._23{width:23.352000px;}
._6{width:24.480000px;}
._1c{width:25.536000px;}
._1d{width:26.640000px;}
._11{width:28.512000px;}
._12{width:29.592000px;}
._29{width:30.648000px;}
._1f{width:31.752000px;}
._1e{width:33.240000px;}
._24{width:34.584000px;}
._25{width:35.628000px;}
._22{width:37.284000px;}
._21{width:38.376000px;}
._f{width:40.176000px;}
._10{width:41.808000px;}
._2a{width:42.912000px;}
._2c{width:44.280000px;}
._26{width:46.296000px;}
._2b{width:47.592000px;}
._1a{width:49.584000px;}
._19{width:50.760000px;}
._28{width:52.776000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y68{bottom:7.020000px;}
.y6b{bottom:7.380000px;}
.y72{bottom:7.560000px;}
.y6e{bottom:7.605000px;}
.y6a{bottom:31.140000px;}
.y71{bottom:31.320000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y66{bottom:97.056000px;}
.y3f{bottom:97.236000px;}
.y65{bottom:102.276000px;}
.y8d{bottom:107.136000px;}
.y32{bottom:113.976000px;}
.y64{bottom:114.336000px;}
.y3e{bottom:116.316000px;}
.y3d{bottom:122.256000px;}
.y8c{bottom:131.076000px;}
.y63{bottom:131.436000px;}
.y3c{bottom:135.216000px;}
.y62{bottom:136.656000px;}
.y31{bottom:137.736000px;}
.y61{bottom:149.076000px;}
.y3b{bottom:154.290000px;}
.y8b{bottom:154.830000px;}
.y3a{bottom:159.510000px;}
.y30{bottom:161.490000px;}
.y39{bottom:173.190000px;}
.y8a{bottom:178.590000px;}
.y60{bottom:180.210000px;}
.y2f{bottom:185.430000px;}
.y89{bottom:202.350000px;}
.y5f{bottom:203.970000px;}
.y2e{bottom:209.190000px;}
.y88{bottom:226.290000px;}
.y5e{bottom:227.730000px;}
.y2d{bottom:232.950000px;}
.y38{bottom:239.790000px;}
.y87{bottom:250.050000px;}
.y5d{bottom:251.670000px;}
.y2c{bottom:256.710000px;}
.y86{bottom:273.810000px;}
.y5b{bottom:275.430000px;}
.y2b{bottom:280.650000px;}
.y5c{bottom:282.315000px;}
.y85{bottom:297.615000px;}
.y5a{bottom:299.235000px;}
.y2a{bottom:304.455000px;}
.y84{bottom:321.555000px;}
.y59{bottom:322.995000px;}
.y29{bottom:328.215000px;}
.y83{bottom:345.315000px;}
.y58{bottom:346.935000px;}
.y28{bottom:351.975000px;}
.y82{bottom:369.075000px;}
.y57{bottom:370.695000px;}
.y27{bottom:375.915000px;}
.y81{bottom:392.835000px;}
.y56{bottom:394.455000px;}
.y26{bottom:399.675000px;}
.y80{bottom:416.775000px;}
.y55{bottom:418.215000px;}
.y25{bottom:423.435000px;}
.y7f{bottom:440.535000px;}
.y54{bottom:442.155000px;}
.y24{bottom:447.195000px;}
.y7e{bottom:464.295000px;}
.y53{bottom:465.915000px;}
.y23{bottom:471.135000px;}
.y7d{bottom:488.055000px;}
.y52{bottom:489.675000px;}
.y22{bottom:494.895000px;}
.y7c{bottom:511.995000px;}
.y51{bottom:513.435000px;}
.y21{bottom:518.655000px;}
.y7b{bottom:535.755000px;}
.y50{bottom:537.375000px;}
.y20{bottom:542.415000px;}
.y7a{bottom:559.515000px;}
.y4f{bottom:561.135000px;}
.y1f{bottom:566.385000px;}
.y79{bottom:583.305000px;}
.y4e{bottom:584.925000px;}
.y1e{bottom:590.145000px;}
.y78{bottom:607.245000px;}
.y4d{bottom:608.685000px;}
.y1d{bottom:613.905000px;}
.y77{bottom:631.005000px;}
.y4c{bottom:632.625000px;}
.y1c{bottom:637.665000px;}
.y76{bottom:654.765000px;}
.y4b{bottom:656.385000px;}
.y1b{bottom:661.425000px;}
.y75{bottom:678.525000px;}
.y4a{bottom:680.145000px;}
.y1a{bottom:685.365000px;}
.y74{bottom:695.625000px;}
.y49{bottom:703.905000px;}
.y19{bottom:709.125000px;}
.y73{bottom:720.285000px;}
.y48{bottom:727.665000px;}
.y18{bottom:732.885000px;}
.y47{bottom:751.605000px;}
.y17{bottom:756.645000px;}
.y37{bottom:763.485000px;}
.y70{bottom:768.525000px;}
.y46{bottom:775.365000px;}
.y16{bottom:780.585000px;}
.y45{bottom:799.125000px;}
.y15{bottom:804.345000px;}
.y6f{bottom:816.945000px;}
.y44{bottom:823.065000px;}
.y14{bottom:828.105000px;}
.y6d{bottom:841.425000px;}
.y43{bottom:848.130000px;}
.y13{bottom:851.910000px;}
.y6c{bottom:866.130000px;}
.y42{bottom:873.150000px;}
.y12{bottom:875.850000px;}
.y41{bottom:898.350000px;}
.y11{bottom:899.610000px;}
.y69{bottom:914.550000px;}
.y10{bottom:923.370000px;}
.yf{bottom:947.130000px;}
.y67{bottom:962.790000px;}
.ye{bottom:971.070000px;}
.yd{bottom:994.830000px;}
.yc{bottom:1018.590000px;}
.yb{bottom:1041.990000px;}
.y36{bottom:1042.350000px;}
.ya{bottom:1065.930000px;}
.y35{bottom:1066.290000px;}
.y40{bottom:1073.130000px;}
.y9{bottom:1090.050000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1137.240000px;}
.y34{bottom:1137.600000px;}
.y6{bottom:1161.180000px;}
.y33{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.h10{height:23.760000px;}
.h14{height:23.940000px;}
.h12{height:23.976000px;}
.hc{height:38.158594px;}
.hd{height:40.985156px;}
.ha{height:47.344922px;}
.h11{height:47.520000px;}
.h13{height:47.700000px;}
.h9{height:50.273438px;}
.h8{height:54.878906px;}
.hf{height:58.651172px;}
.hb{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h4{height:72.562500px;}
.he{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:24.480000px;}
.w2{width:43.020000px;}
.w9{width:117.936000px;}
.w5{width:119.340000px;}
.w6{width:125.136000px;}
.w7{width:143.316000px;}
.w8{width:268.410000px;}
.w4{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:5.040000px;}
.x2d{left:12.240000px;}
.x2a{left:15.840000px;}
.x29{left:19.440000px;}
.x24{left:21.600000px;}
.x30{left:23.580000px;}
.x33{left:28.254000px;}
.x1c{left:31.134000px;}
.x23{left:32.214000px;}
.x26{left:33.660000px;}
.x1e{left:35.460000px;}
.x35{left:36.714000px;}
.x2f{left:40.134000px;}
.x36{left:42.480000px;}
.x20{left:44.100000px;}
.x25{left:47.700000px;}
.x31{left:49.140000px;}
.x27{left:53.460000px;}
.x2b{left:69.660000px;}
.x34{left:77.760000px;}
.x32{left:97.560000px;}
.x28{left:102.420000px;}
.x2e{left:104.400000px;}
.x22{left:113.040000px;}
.xd{left:127.655987px;}
.x1b{left:132.515987px;}
.x1a{left:137.735987px;}
.x37{left:154.649987px;}
.x3{left:159.689987px;}
.x17{left:170.129987px;}
.x13{left:174.809987px;}
.xc{left:180.749987px;}
.x9{left:189.929987px;}
.x8{left:199.469987px;}
.x18{left:207.209973px;}
.x19{left:213.329987px;}
.x15{left:232.049973px;}
.x16{left:238.169987px;}
.x1d{left:248.070000px;}
.x6{left:250.769987px;}
.x14{left:276.689987px;}
.x7{left:320.654987px;}
.xb{left:327.674987px;}
.x10{left:339.194973px;}
.x12{left:343.694987px;}
.x11{left:345.314987px;}
.xa{left:363.134987px;}
.x1f{left:373.935000px;}
.x1{left:439.815000px;}
.x5{left:478.514987px;}
.x2c{left:492.765000px;}
.x21{left:518.145000px;}
.xe{left:555.764973px;}
.xf{left:561.884987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls2{letter-spacing:5.760000pt;}
.ls3{letter-spacing:12.160000pt;}
.lsd{letter-spacing:27.008000pt;}
.lsc{letter-spacing:31.360000pt;}
.ws9{word-spacing:-64.000000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.168000pt;}
.ws6{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws2{word-spacing:0.000000pt;}
._27{margin-left:-9.472000pt;}
._7{margin-left:-6.720000pt;}
._d{margin-left:-5.792000pt;}
._2{margin-left:-4.544000pt;}
._5{margin-left:-3.530667pt;}
._13{margin-left:-2.570667pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.981333pt;}
._e{width:1.888000pt;}
._20{width:2.837333pt;}
._b{width:3.840000pt;}
._4{width:4.992000pt;}
._3{width:6.080000pt;}
._15{width:7.082667pt;}
._14{width:8.000000pt;}
._18{width:9.344000pt;}
._1b{width:10.240000pt;}
._9{width:11.904000pt;}
._c{width:13.152000pt;}
._a{width:14.357333pt;}
._8{width:17.728000pt;}
._17{width:18.688000pt;}
._16{width:19.648000pt;}
._23{width:20.757333pt;}
._6{width:21.760000pt;}
._1c{width:22.698667pt;}
._1d{width:23.680000pt;}
._11{width:25.344000pt;}
._12{width:26.304000pt;}
._29{width:27.242667pt;}
._1f{width:28.224000pt;}
._1e{width:29.546667pt;}
._24{width:30.741333pt;}
._25{width:31.669333pt;}
._22{width:33.141333pt;}
._21{width:34.112000pt;}
._f{width:35.712000pt;}
._10{width:37.162667pt;}
._2a{width:38.144000pt;}
._2c{width:39.360000pt;}
._26{width:41.152000pt;}
._2b{width:42.304000pt;}
._1a{width:44.074667pt;}
._19{width:45.120000pt;}
._28{width:46.912000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y68{bottom:6.240000pt;}
.y6b{bottom:6.560000pt;}
.y72{bottom:6.720000pt;}
.y6e{bottom:6.760000pt;}
.y6a{bottom:27.680000pt;}
.y71{bottom:27.840000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y66{bottom:86.272000pt;}
.y3f{bottom:86.432000pt;}
.y65{bottom:90.912000pt;}
.y8d{bottom:95.232000pt;}
.y32{bottom:101.312000pt;}
.y64{bottom:101.632000pt;}
.y3e{bottom:103.392000pt;}
.y3d{bottom:108.672000pt;}
.y8c{bottom:116.512000pt;}
.y63{bottom:116.832000pt;}
.y3c{bottom:120.192000pt;}
.y62{bottom:121.472000pt;}
.y31{bottom:122.432000pt;}
.y61{bottom:132.512000pt;}
.y3b{bottom:137.146667pt;}
.y8b{bottom:137.626667pt;}
.y3a{bottom:141.786667pt;}
.y30{bottom:143.546667pt;}
.y39{bottom:153.946667pt;}
.y8a{bottom:158.746667pt;}
.y60{bottom:160.186667pt;}
.y2f{bottom:164.826667pt;}
.y89{bottom:179.866667pt;}
.y5f{bottom:181.306667pt;}
.y2e{bottom:185.946667pt;}
.y88{bottom:201.146667pt;}
.y5e{bottom:202.426667pt;}
.y2d{bottom:207.066667pt;}
.y38{bottom:213.146667pt;}
.y87{bottom:222.266667pt;}
.y5d{bottom:223.706667pt;}
.y2c{bottom:228.186667pt;}
.y86{bottom:243.386667pt;}
.y5b{bottom:244.826667pt;}
.y2b{bottom:249.466667pt;}
.y5c{bottom:250.946667pt;}
.y85{bottom:264.546667pt;}
.y5a{bottom:265.986667pt;}
.y2a{bottom:270.626667pt;}
.y84{bottom:285.826667pt;}
.y59{bottom:287.106667pt;}
.y29{bottom:291.746667pt;}
.y83{bottom:306.946667pt;}
.y58{bottom:308.386667pt;}
.y28{bottom:312.866667pt;}
.y82{bottom:328.066667pt;}
.y57{bottom:329.506667pt;}
.y27{bottom:334.146667pt;}
.y81{bottom:349.186667pt;}
.y56{bottom:350.626667pt;}
.y26{bottom:355.266667pt;}
.y80{bottom:370.466667pt;}
.y55{bottom:371.746667pt;}
.y25{bottom:376.386667pt;}
.y7f{bottom:391.586667pt;}
.y54{bottom:393.026667pt;}
.y24{bottom:397.506667pt;}
.y7e{bottom:412.706667pt;}
.y53{bottom:414.146667pt;}
.y23{bottom:418.786667pt;}
.y7d{bottom:433.826667pt;}
.y52{bottom:435.266667pt;}
.y22{bottom:439.906667pt;}
.y7c{bottom:455.106667pt;}
.y51{bottom:456.386667pt;}
.y21{bottom:461.026667pt;}
.y7b{bottom:476.226667pt;}
.y50{bottom:477.666667pt;}
.y20{bottom:482.146667pt;}
.y7a{bottom:497.346667pt;}
.y4f{bottom:498.786667pt;}
.y1f{bottom:503.453333pt;}
.y79{bottom:518.493333pt;}
.y4e{bottom:519.933333pt;}
.y1e{bottom:524.573333pt;}
.y78{bottom:539.773333pt;}
.y4d{bottom:541.053333pt;}
.y1d{bottom:545.693333pt;}
.y77{bottom:560.893333pt;}
.y4c{bottom:562.333333pt;}
.y1c{bottom:566.813333pt;}
.y76{bottom:582.013333pt;}
.y4b{bottom:583.453333pt;}
.y1b{bottom:587.933333pt;}
.y75{bottom:603.133333pt;}
.y4a{bottom:604.573333pt;}
.y1a{bottom:609.213333pt;}
.y74{bottom:618.333333pt;}
.y49{bottom:625.693333pt;}
.y19{bottom:630.333333pt;}
.y73{bottom:640.253333pt;}
.y48{bottom:646.813333pt;}
.y18{bottom:651.453333pt;}
.y47{bottom:668.093333pt;}
.y17{bottom:672.573333pt;}
.y37{bottom:678.653333pt;}
.y70{bottom:683.133333pt;}
.y46{bottom:689.213333pt;}
.y16{bottom:693.853333pt;}
.y45{bottom:710.333333pt;}
.y15{bottom:714.973333pt;}
.y6f{bottom:726.173333pt;}
.y44{bottom:731.613333pt;}
.y14{bottom:736.093333pt;}
.y6d{bottom:747.933333pt;}
.y43{bottom:753.893333pt;}
.y13{bottom:757.253333pt;}
.y6c{bottom:769.893333pt;}
.y42{bottom:776.133333pt;}
.y12{bottom:778.533333pt;}
.y41{bottom:798.533333pt;}
.y11{bottom:799.653333pt;}
.y69{bottom:812.933333pt;}
.y10{bottom:820.773333pt;}
.yf{bottom:841.893333pt;}
.y67{bottom:855.813333pt;}
.ye{bottom:863.173333pt;}
.yd{bottom:884.293333pt;}
.yc{bottom:905.413333pt;}
.yb{bottom:926.213333pt;}
.y36{bottom:926.533333pt;}
.ya{bottom:947.493333pt;}
.y35{bottom:947.813333pt;}
.y40{bottom:953.893333pt;}
.y9{bottom:968.933333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1010.880000pt;}
.y34{bottom:1011.200000pt;}
.y6{bottom:1032.160000pt;}
.y33{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.h10{height:21.120000pt;}
.h14{height:21.280000pt;}
.h12{height:21.312000pt;}
.hc{height:33.918750pt;}
.hd{height:36.431250pt;}
.ha{height:42.084375pt;}
.h11{height:42.240000pt;}
.h13{height:42.400000pt;}
.h9{height:44.687500pt;}
.h8{height:48.781250pt;}
.hf{height:52.134375pt;}
.hb{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h4{height:64.500000pt;}
.he{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:21.760000pt;}
.w2{width:38.240000pt;}
.w9{width:104.832000pt;}
.w5{width:106.080000pt;}
.w6{width:111.232000pt;}
.w7{width:127.392000pt;}
.w8{width:238.586667pt;}
.w4{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.480000pt;}
.x2d{left:10.880000pt;}
.x2a{left:14.080000pt;}
.x29{left:17.280000pt;}
.x24{left:19.200000pt;}
.x30{left:20.960000pt;}
.x33{left:25.114667pt;}
.x1c{left:27.674667pt;}
.x23{left:28.634667pt;}
.x26{left:29.920000pt;}
.x1e{left:31.520000pt;}
.x35{left:32.634667pt;}
.x2f{left:35.674667pt;}
.x36{left:37.760000pt;}
.x20{left:39.200000pt;}
.x25{left:42.400000pt;}
.x31{left:43.680000pt;}
.x27{left:47.520000pt;}
.x2b{left:61.920000pt;}
.x34{left:69.120000pt;}
.x32{left:86.720000pt;}
.x28{left:91.040000pt;}
.x2e{left:92.800000pt;}
.x22{left:100.480000pt;}
.xd{left:113.471988pt;}
.x1b{left:117.791988pt;}
.x1a{left:122.431988pt;}
.x37{left:137.466655pt;}
.x3{left:141.946655pt;}
.x17{left:151.226655pt;}
.x13{left:155.386655pt;}
.xc{left:160.666655pt;}
.x9{left:168.826655pt;}
.x8{left:177.306655pt;}
.x18{left:184.186643pt;}
.x19{left:189.626655pt;}
.x15{left:206.266643pt;}
.x16{left:211.706655pt;}
.x1d{left:220.506667pt;}
.x6{left:222.906655pt;}
.x14{left:245.946655pt;}
.x7{left:285.026655pt;}
.xb{left:291.266655pt;}
.x10{left:301.506643pt;}
.x12{left:305.506655pt;}
.x11{left:306.946655pt;}
.xa{left:322.786655pt;}
.x1f{left:332.386667pt;}
.x1{left:390.946667pt;}
.x5{left:425.346655pt;}
.x2c{left:438.013333pt;}
.x21{left:460.573333pt;}
.xe{left:494.013310pt;}
.xf{left:499.453322pt;}
.x4{left:737.253322pt;}
}




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