
    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_cfb4c3f7beb4d00f44490e1b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_4d8931d01e61765dcc891697.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_adbbd94e3bff8765674a9079.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_af72ce63160502fb19c95b05.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.924000px;}
.ls9{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.666000px;}
.ls8{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.208200px;}
.lsd{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls10{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.828000px;}
.ls12{letter-spacing:11.610720px;}
.ls11{letter-spacing:41.850720px;}
.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:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2125.460160px;}
._3{margin-left:-1337.931360px;}
._4{margin-left:-8.213760px;}
._1b{margin-left:-7.136400px;}
._5{margin-left:-6.094080px;}
._a{margin-left:-5.075280px;}
._6{margin-left:-3.783120px;}
._15{margin-left:-2.749200px;}
._0{margin-left:-1.600560px;}
._2{width:1.177200px;}
._c{width:2.296560px;}
._f{width:3.480480px;}
._d{width:4.780800px;}
._12{width:5.870880px;}
._e{width:6.919200px;}
._11{width:8.426160px;}
._10{width:9.681120px;}
._13{width:11.372400px;}
._14{width:12.471840px;}
._18{width:13.649760px;}
._16{width:16.086720px;}
._17{width:17.109600px;}
._1a{width:18.665040px;}
._b{width:20.334480px;}
._19{width:21.595200px;}
._9{width:26.226480px;}
._7{width:27.684240px;}
._8{width:29.201760px;}
._1d{width:69.106320px;}
._1c{width:70.475040px;}
._20{width:112.294080px;}
._1f{width:114.440400px;}
._1e{width:115.575840px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y28{bottom:3.240000px;}
.y10{bottom:4.680000px;}
.y3f{bottom:17.820000px;}
.y27{bottom:20.520000px;}
.y3e{bottom:36.540000px;}
.y26{bottom:49.320000px;}
.y3d{bottom:55.080000px;}
.y6{bottom:65.916000px;}
.y25{bottom:69.120000px;}
.y3c{bottom:73.800000px;}
.y24{bottom:88.920000px;}
.y3b{bottom:92.340000px;}
.yc8{bottom:96.156000px;}
.ya9{bottom:97.956000px;}
.y83{bottom:106.956000px;}
.y23{bottom:108.720000px;}
.y4d{bottom:109.656000px;}
.y3a{bottom:110.880000px;}
.yde{bottom:114.156000px;}
.ybe{bottom:115.956000px;}
.ycc{bottom:124.956000px;}
.y82{bottom:126.756000px;}
.y22{bottom:128.700000px;}
.y4c{bottom:129.456000px;}
.y39{bottom:129.600000px;}
.ydd{bottom:133.956000px;}
.ybd{bottom:135.756000px;}
.ycb{bottom:144.756000px;}
.y81{bottom:146.556000px;}
.y38{bottom:148.140000px;}
.y21{bottom:148.500000px;}
.y4b{bottom:149.256000px;}
.ydc{bottom:153.750000px;}
.ybc{bottom:155.550000px;}
.yca{bottom:164.550000px;}
.y80{bottom:166.350000px;}
.y37{bottom:166.860000px;}
.y20{bottom:168.300000px;}
.y4a{bottom:169.050000px;}
.ydb{bottom:173.550000px;}
.ybb{bottom:175.350000px;}
.yc9{bottom:184.350000px;}
.y36{bottom:185.430000px;}
.ya8{bottom:186.330000px;}
.y1f{bottom:188.130000px;}
.y49{bottom:189.030000px;}
.yda{bottom:193.350000px;}
.y7f{bottom:195.330000px;}
.y35{bottom:203.970000px;}
.yba{bottom:204.330000px;}
.ya7{bottom:206.130000px;}
.y1e{bottom:207.930000px;}
.y48{bottom:208.830000px;}
.yd9{bottom:213.330000px;}
.y7e{bottom:215.130000px;}
.y34{bottom:222.690000px;}
.yb9{bottom:224.130000px;}
.ya6{bottom:225.930000px;}
.y1d{bottom:227.910000px;}
.y47{bottom:228.630000px;}
.yd8{bottom:233.130000px;}
.y7d{bottom:234.930000px;}
.y33{bottom:241.230000px;}
.yb8{bottom:243.930000px;}
.ya5{bottom:245.730000px;}
.y1c{bottom:247.710000px;}
.y46{bottom:248.430000px;}
.yd7{bottom:252.930000px;}
.y7c{bottom:254.730000px;}
.y32{bottom:259.950000px;}
.yb7{bottom:263.730000px;}
.ya4{bottom:265.530000px;}
.y1b{bottom:267.510000px;}
.y45{bottom:268.230000px;}
.yd6{bottom:272.775000px;}
.y7b{bottom:274.575000px;}
.y31{bottom:278.490000px;}
.yb6{bottom:283.575000px;}
.ya3{bottom:285.555000px;}
.y1a{bottom:287.310000px;}
.y44{bottom:288.255000px;}
.yd5{bottom:292.575000px;}
.yc7{bottom:294.555000px;}
.y30{bottom:297.030000px;}
.y7a{bottom:303.555000px;}
.ya2{bottom:305.355000px;}
.y19{bottom:307.110000px;}
.y43{bottom:308.055000px;}
.yd4{bottom:312.555000px;}
.yc6{bottom:314.355000px;}
.y2f{bottom:315.750000px;}
.y79{bottom:323.355000px;}
.ya1{bottom:325.155000px;}
.y18{bottom:327.090000px;}
.y42{bottom:327.855000px;}
.yd3{bottom:332.355000px;}
.yc5{bottom:334.155000px;}
.y2e{bottom:334.290000px;}
.y78{bottom:343.155000px;}
.ya0{bottom:344.955000px;}
.y17{bottom:346.890000px;}
.y41{bottom:347.655000px;}
.yd2{bottom:352.155000px;}
.y2d{bottom:353.010000px;}
.yc4{bottom:353.955000px;}
.y77{bottom:362.955000px;}
.y9f{bottom:364.755000px;}
.y16{bottom:366.690000px;}
.y40{bottom:367.455000px;}
.y2c{bottom:371.550000px;}
.yd1{bottom:371.955000px;}
.yc3{bottom:373.755000px;}
.y76{bottom:382.755000px;}
.y11{bottom:383.835000px;}
.y9e{bottom:384.735000px;}
.y15{bottom:386.490000px;}
.y2b{bottom:390.270000px;}
.yd0{bottom:391.755000px;}
.yc2{bottom:393.735000px;}
.y75{bottom:402.735000px;}
.y9d{bottom:404.535000px;}
.y14{bottom:406.290000px;}
.y2a{bottom:408.810000px;}
.ycf{bottom:411.735000px;}
.yc1{bottom:413.535000px;}
.y74{bottom:422.535000px;}
.y9c{bottom:424.335000px;}
.y13{bottom:426.270000px;}
.y29{bottom:427.350000px;}
.yce{bottom:431.535000px;}
.yc0{bottom:433.335000px;}
.y73{bottom:442.335000px;}
.y9b{bottom:444.135000px;}
.y12{bottom:446.070000px;}
.ycd{bottom:451.335000px;}
.ybf{bottom:453.135000px;}
.yb5{bottom:462.135000px;}
.y72{bottom:471.135000px;}
.y9a{bottom:472.935000px;}
.yb4{bottom:481.935000px;}
.y71{bottom:490.935000px;}
.y99{bottom:492.915000px;}
.yb3{bottom:501.915000px;}
.y70{bottom:510.915000px;}
.y98{bottom:512.715000px;}
.yb2{bottom:521.715000px;}
.y6f{bottom:530.715000px;}
.y97{bottom:532.515000px;}
.yb1{bottom:541.515000px;}
.y6e{bottom:550.515000px;}
.y96{bottom:552.315000px;}
.yb0{bottom:561.345000px;}
.y6d{bottom:570.345000px;}
.y95{bottom:572.145000px;}
.yaf{bottom:581.145000px;}
.y6c{bottom:590.145000px;}
.y94{bottom:592.125000px;}
.yae{bottom:601.125000px;}
.y6b{bottom:610.125000px;}
.y93{bottom:611.925000px;}
.yad{bottom:620.925000px;}
.y6a{bottom:629.925000px;}
.y92{bottom:631.725000px;}
.yac{bottom:640.725000px;}
.y69{bottom:649.725000px;}
.y91{bottom:651.525000px;}
.yab{bottom:660.525000px;}
.y68{bottom:669.525000px;}
.y90{bottom:671.325000px;}
.yaa{bottom:680.325000px;}
.y67{bottom:689.325000px;}
.y8f{bottom:700.305000px;}
.y66{bottom:709.305000px;}
.y8e{bottom:720.105000px;}
.y65{bottom:729.105000px;}
.y8d{bottom:739.905000px;}
.y64{bottom:748.905000px;}
.y8c{bottom:759.705000px;}
.y63{bottom:768.705000px;}
.y8b{bottom:779.505000px;}
.y62{bottom:788.505000px;}
.y8a{bottom:799.485000px;}
.y61{bottom:808.485000px;}
.y89{bottom:819.285000px;}
.y60{bottom:828.285000px;}
.y88{bottom:839.130000px;}
.yf{bottom:846.150000px;}
.y5f{bottom:848.130000px;}
.y87{bottom:858.930000px;}
.y5e{bottom:867.930000px;}
.ye{bottom:872.790000px;}
.y86{bottom:878.730000px;}
.y5d{bottom:887.730000px;}
.yd{bottom:897.990000px;}
.y85{bottom:898.710000px;}
.y5c{bottom:907.710000px;}
.yc{bottom:917.790000px;}
.y84{bottom:918.510000px;}
.y5b{bottom:927.510000px;}
.yb{bottom:937.590000px;}
.y5a{bottom:947.310000px;}
.ya{bottom:952.710000px;}
.y59{bottom:967.110000px;}
.y9{bottom:973.950000px;}
.y58{bottom:986.910000px;}
.y8{bottom:997.530000px;}
.y57{bottom:1006.890000px;}
.y56{bottom:1026.690000px;}
.y7{bottom:1029.210000px;}
.y55{bottom:1046.490000px;}
.y54{bottom:1066.290000px;}
.y5{bottom:1070.790000px;}
.y53{bottom:1086.090000px;}
.y4{bottom:1100.310000px;}
.y52{bottom:1105.890000px;}
.y51{bottom:1125.900000px;}
.y3{bottom:1129.680000px;}
.y50{bottom:1145.700000px;}
.y2{bottom:1159.200000px;}
.y4f{bottom:1165.500000px;}
.y1{bottom:1190.160000px;}
.y4e{bottom:1194.300000px;}
.hb{height:18.720000px;}
.h9{height:27.147656px;}
.ha{height:41.726953px;}
.h7{height:42.164648px;}
.he{height:43.506914px;}
.h4{height:46.251562px;}
.h5{height:46.736719px;}
.h8{height:53.224453px;}
.hd{height:55.987031px;}
.h3{height:58.819922px;}
.h2{height:59.436914px;}
.h6{height:67.565039px;}
.hc{height:460.155000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:193.890000px;}
.w3{width:589.245000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.179987px;}
.x4{left:75.599987px;}
.x5{left:102.635987px;}
.x3{left:643.245000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.821333pt;}
.ls9{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.592000pt;}
.ls8{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.185067pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls10{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls12{letter-spacing:10.320640pt;}
.ls11{letter-spacing:37.200640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1889.297920pt;}
._3{margin-left:-1189.272320pt;}
._4{margin-left:-7.301120pt;}
._1b{margin-left:-6.343467pt;}
._5{margin-left:-5.416960pt;}
._a{margin-left:-4.511360pt;}
._6{margin-left:-3.362773pt;}
._15{margin-left:-2.443733pt;}
._0{margin-left:-1.422720pt;}
._2{width:1.046400pt;}
._c{width:2.041387pt;}
._f{width:3.093760pt;}
._d{width:4.249600pt;}
._12{width:5.218560pt;}
._e{width:6.150400pt;}
._11{width:7.489920pt;}
._10{width:8.605440pt;}
._13{width:10.108800pt;}
._14{width:11.086080pt;}
._18{width:12.133120pt;}
._16{width:14.299307pt;}
._17{width:15.208533pt;}
._1a{width:16.591147pt;}
._b{width:18.075093pt;}
._19{width:19.195733pt;}
._9{width:23.312427pt;}
._7{width:24.608213pt;}
._8{width:25.957120pt;}
._1d{width:61.427840pt;}
._1c{width:62.644480pt;}
._20{width:99.816960pt;}
._1f{width:101.724800pt;}
._1e{width:102.734080pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.880000pt;}
.y10{bottom:4.160000pt;}
.y3f{bottom:15.840000pt;}
.y27{bottom:18.240000pt;}
.y3e{bottom:32.480000pt;}
.y26{bottom:43.840000pt;}
.y3d{bottom:48.960000pt;}
.y6{bottom:58.592000pt;}
.y25{bottom:61.440000pt;}
.y3c{bottom:65.600000pt;}
.y24{bottom:79.040000pt;}
.y3b{bottom:82.080000pt;}
.yc8{bottom:85.472000pt;}
.ya9{bottom:87.072000pt;}
.y83{bottom:95.072000pt;}
.y23{bottom:96.640000pt;}
.y4d{bottom:97.472000pt;}
.y3a{bottom:98.560000pt;}
.yde{bottom:101.472000pt;}
.ybe{bottom:103.072000pt;}
.ycc{bottom:111.072000pt;}
.y82{bottom:112.672000pt;}
.y22{bottom:114.400000pt;}
.y4c{bottom:115.072000pt;}
.y39{bottom:115.200000pt;}
.ydd{bottom:119.072000pt;}
.ybd{bottom:120.672000pt;}
.ycb{bottom:128.672000pt;}
.y81{bottom:130.272000pt;}
.y38{bottom:131.680000pt;}
.y21{bottom:132.000000pt;}
.y4b{bottom:132.672000pt;}
.ydc{bottom:136.666667pt;}
.ybc{bottom:138.266667pt;}
.yca{bottom:146.266667pt;}
.y80{bottom:147.866667pt;}
.y37{bottom:148.320000pt;}
.y20{bottom:149.600000pt;}
.y4a{bottom:150.266667pt;}
.ydb{bottom:154.266667pt;}
.ybb{bottom:155.866667pt;}
.yc9{bottom:163.866667pt;}
.y36{bottom:164.826667pt;}
.ya8{bottom:165.626667pt;}
.y1f{bottom:167.226667pt;}
.y49{bottom:168.026667pt;}
.yda{bottom:171.866667pt;}
.y7f{bottom:173.626667pt;}
.y35{bottom:181.306667pt;}
.yba{bottom:181.626667pt;}
.ya7{bottom:183.226667pt;}
.y1e{bottom:184.826667pt;}
.y48{bottom:185.626667pt;}
.yd9{bottom:189.626667pt;}
.y7e{bottom:191.226667pt;}
.y34{bottom:197.946667pt;}
.yb9{bottom:199.226667pt;}
.ya6{bottom:200.826667pt;}
.y1d{bottom:202.586667pt;}
.y47{bottom:203.226667pt;}
.yd8{bottom:207.226667pt;}
.y7d{bottom:208.826667pt;}
.y33{bottom:214.426667pt;}
.yb8{bottom:216.826667pt;}
.ya5{bottom:218.426667pt;}
.y1c{bottom:220.186667pt;}
.y46{bottom:220.826667pt;}
.yd7{bottom:224.826667pt;}
.y7c{bottom:226.426667pt;}
.y32{bottom:231.066667pt;}
.yb7{bottom:234.426667pt;}
.ya4{bottom:236.026667pt;}
.y1b{bottom:237.786667pt;}
.y45{bottom:238.426667pt;}
.yd6{bottom:242.466667pt;}
.y7b{bottom:244.066667pt;}
.y31{bottom:247.546667pt;}
.yb6{bottom:252.066667pt;}
.ya3{bottom:253.826667pt;}
.y1a{bottom:255.386667pt;}
.y44{bottom:256.226667pt;}
.yd5{bottom:260.066667pt;}
.yc7{bottom:261.826667pt;}
.y30{bottom:264.026667pt;}
.y7a{bottom:269.826667pt;}
.ya2{bottom:271.426667pt;}
.y19{bottom:272.986667pt;}
.y43{bottom:273.826667pt;}
.yd4{bottom:277.826667pt;}
.yc6{bottom:279.426667pt;}
.y2f{bottom:280.666667pt;}
.y79{bottom:287.426667pt;}
.ya1{bottom:289.026667pt;}
.y18{bottom:290.746667pt;}
.y42{bottom:291.426667pt;}
.yd3{bottom:295.426667pt;}
.yc5{bottom:297.026667pt;}
.y2e{bottom:297.146667pt;}
.y78{bottom:305.026667pt;}
.ya0{bottom:306.626667pt;}
.y17{bottom:308.346667pt;}
.y41{bottom:309.026667pt;}
.yd2{bottom:313.026667pt;}
.y2d{bottom:313.786667pt;}
.yc4{bottom:314.626667pt;}
.y77{bottom:322.626667pt;}
.y9f{bottom:324.226667pt;}
.y16{bottom:325.946667pt;}
.y40{bottom:326.626667pt;}
.y2c{bottom:330.266667pt;}
.yd1{bottom:330.626667pt;}
.yc3{bottom:332.226667pt;}
.y76{bottom:340.226667pt;}
.y11{bottom:341.186667pt;}
.y9e{bottom:341.986667pt;}
.y15{bottom:343.546667pt;}
.y2b{bottom:346.906667pt;}
.yd0{bottom:348.226667pt;}
.yc2{bottom:349.986667pt;}
.y75{bottom:357.986667pt;}
.y9d{bottom:359.586667pt;}
.y14{bottom:361.146667pt;}
.y2a{bottom:363.386667pt;}
.ycf{bottom:365.986667pt;}
.yc1{bottom:367.586667pt;}
.y74{bottom:375.586667pt;}
.y9c{bottom:377.186667pt;}
.y13{bottom:378.906667pt;}
.y29{bottom:379.866667pt;}
.yce{bottom:383.586667pt;}
.yc0{bottom:385.186667pt;}
.y73{bottom:393.186667pt;}
.y9b{bottom:394.786667pt;}
.y12{bottom:396.506667pt;}
.ycd{bottom:401.186667pt;}
.ybf{bottom:402.786667pt;}
.yb5{bottom:410.786667pt;}
.y72{bottom:418.786667pt;}
.y9a{bottom:420.386667pt;}
.yb4{bottom:428.386667pt;}
.y71{bottom:436.386667pt;}
.y99{bottom:438.146667pt;}
.yb3{bottom:446.146667pt;}
.y70{bottom:454.146667pt;}
.y98{bottom:455.746667pt;}
.yb2{bottom:463.746667pt;}
.y6f{bottom:471.746667pt;}
.y97{bottom:473.346667pt;}
.yb1{bottom:481.346667pt;}
.y6e{bottom:489.346667pt;}
.y96{bottom:490.946667pt;}
.yb0{bottom:498.973333pt;}
.y6d{bottom:506.973333pt;}
.y95{bottom:508.573333pt;}
.yaf{bottom:516.573333pt;}
.y6c{bottom:524.573333pt;}
.y94{bottom:526.333333pt;}
.yae{bottom:534.333333pt;}
.y6b{bottom:542.333333pt;}
.y93{bottom:543.933333pt;}
.yad{bottom:551.933333pt;}
.y6a{bottom:559.933333pt;}
.y92{bottom:561.533333pt;}
.yac{bottom:569.533333pt;}
.y69{bottom:577.533333pt;}
.y91{bottom:579.133333pt;}
.yab{bottom:587.133333pt;}
.y68{bottom:595.133333pt;}
.y90{bottom:596.733333pt;}
.yaa{bottom:604.733333pt;}
.y67{bottom:612.733333pt;}
.y8f{bottom:622.493333pt;}
.y66{bottom:630.493333pt;}
.y8e{bottom:640.093333pt;}
.y65{bottom:648.093333pt;}
.y8d{bottom:657.693333pt;}
.y64{bottom:665.693333pt;}
.y8c{bottom:675.293333pt;}
.y63{bottom:683.293333pt;}
.y8b{bottom:692.893333pt;}
.y62{bottom:700.893333pt;}
.y8a{bottom:710.653333pt;}
.y61{bottom:718.653333pt;}
.y89{bottom:728.253333pt;}
.y60{bottom:736.253333pt;}
.y88{bottom:745.893333pt;}
.yf{bottom:752.133333pt;}
.y5f{bottom:753.893333pt;}
.y87{bottom:763.493333pt;}
.y5e{bottom:771.493333pt;}
.ye{bottom:775.813333pt;}
.y86{bottom:781.093333pt;}
.y5d{bottom:789.093333pt;}
.yd{bottom:798.213333pt;}
.y85{bottom:798.853333pt;}
.y5c{bottom:806.853333pt;}
.yc{bottom:815.813333pt;}
.y84{bottom:816.453333pt;}
.y5b{bottom:824.453333pt;}
.yb{bottom:833.413333pt;}
.y5a{bottom:842.053333pt;}
.ya{bottom:846.853333pt;}
.y59{bottom:859.653333pt;}
.y9{bottom:865.733333pt;}
.y58{bottom:877.253333pt;}
.y8{bottom:886.693333pt;}
.y57{bottom:895.013333pt;}
.y56{bottom:912.613333pt;}
.y7{bottom:914.853333pt;}
.y55{bottom:930.213333pt;}
.y54{bottom:947.813333pt;}
.y5{bottom:951.813333pt;}
.y53{bottom:965.413333pt;}
.y4{bottom:978.053333pt;}
.y52{bottom:983.013333pt;}
.y51{bottom:1000.800000pt;}
.y3{bottom:1004.160000pt;}
.y50{bottom:1018.400000pt;}
.y2{bottom:1030.400000pt;}
.y4f{bottom:1036.000000pt;}
.y1{bottom:1057.920000pt;}
.y4e{bottom:1061.600000pt;}
.hb{height:16.640000pt;}
.h9{height:24.131250pt;}
.ha{height:37.090625pt;}
.h7{height:37.479688pt;}
.he{height:38.672812pt;}
.h4{height:41.112500pt;}
.h5{height:41.543750pt;}
.h8{height:47.310625pt;}
.hd{height:49.766250pt;}
.h3{height:52.284375pt;}
.h2{height:52.832812pt;}
.h6{height:60.057813pt;}
.hc{height:409.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:172.346667pt;}
.w3{width:523.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.159988pt;}
.x4{left:67.199988pt;}
.x5{left:91.231988pt;}
.x3{left:571.773333pt;}
}




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