
    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_cb36722b7b9bafefbd87f6bd.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_6f1b0d67392ca48adc934316.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_5f8522f777434658ee10e74e.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_aa3fd8a8a8133b7302da8c52.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_f19f8edc8da813983fd41b3d.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_1692b3c8ce0441206471f6b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_d3073511068d305a0286d69b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_0e10a9b022305465f6d4b1ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767090;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_bed3ce6ac3dbbf666535057d.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsf{letter-spacing:-2.376000px;}
.ls14{letter-spacing:-1.926000px;}
.lsb{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.422000px;}
.ls5{letter-spacing:-1.134000px;}
.ls11{letter-spacing:-0.972000px;}
.ls10{letter-spacing:-0.954000px;}
.ls13{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.486600px;}
.ls7{letter-spacing:-0.466800px;}
.ls6{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.305400px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.466800px;}
.lsa{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.440000px;}
.ls1{letter-spacing:2.160000px;}
.lse{letter-spacing:5.040000px;}
.ls12{letter-spacing:6.480000px;}
.ls18{letter-spacing:10.546560px;}
.ls17{letter-spacing:13.426560px;}
.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:-24.120000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.627000px;}
.ws7{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.653200px;}
.ws11{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.184000px;}
.wse{word-spacing:-14.166000px;}
.ws12{word-spacing:-13.698000px;}
.ws9{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.194000px;}
.wsd{word-spacing:-12.744000px;}
.ws4{word-spacing:-9.720000px;}
.wsc{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-2539.166400px;}
._4{margin-left:-1448.940960px;}
._6{margin-left:-1446.276600px;}
._5{margin-left:-996.923520px;}
._7{margin-left:-577.825920px;}
._8{margin-left:-11.181840px;}
._a{margin-left:-5.914080px;}
._14{margin-left:-4.690080px;}
._b{margin-left:-3.312000px;}
._0{margin-left:-2.122560px;}
._2{margin-left:-1.061280px;}
._1{width:1.061280px;}
._9{width:2.387520px;}
._10{width:3.728160px;}
._12{width:4.794240px;}
._11{width:6.307200px;}
._c{width:7.378560px;}
._d{width:8.988480px;}
._e{width:10.074240px;}
._f{width:11.200320px;}
._13{width:12.395040px;}
._1a{width:13.696320px;}
._16{width:17.418240px;}
._15{width:18.606240px;}
._17{width:20.205600px;}
._19{width:24.433920px;}
._18{width:25.613280px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:5.760000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y107{bottom:12.234000px;}
.y106{bottom:32.034000px;}
.y103{bottom:35.634000px;}
.y105{bottom:51.834000px;}
.y6{bottom:59.760000px;}
.y104{bottom:71.679000px;}
.y33{bottom:104.076000px;}
.y8a{bottom:106.956000px;}
.yb0{bottom:112.356000px;}
.yd9{bottom:114.156000px;}
.y62{bottom:117.396000px;}
.y32{bottom:123.876000px;}
.y89{bottom:126.756000px;}
.yaf{bottom:132.156000px;}
.yd8{bottom:133.956000px;}
.y61{bottom:137.196000px;}
.yec{bottom:138.996000px;}
.y102{bottom:141.516000px;}
.y31{bottom:143.676000px;}
.y88{bottom:146.196000px;}
.yae{bottom:151.950000px;}
.yd7{bottom:153.390000px;}
.y60{bottom:156.990000px;}
.yeb{bottom:158.790000px;}
.y30{bottom:163.470000px;}
.y87{bottom:166.350000px;}
.yad{bottom:171.750000px;}
.y5f{bottom:176.790000px;}
.yea{bottom:178.590000px;}
.yd6{bottom:182.550000px;}
.y2f{bottom:183.270000px;}
.y86{bottom:186.150000px;}
.yac{bottom:191.550000px;}
.y5e{bottom:196.635000px;}
.ye9{bottom:198.435000px;}
.yd5{bottom:202.395000px;}
.y2e{bottom:203.115000px;}
.y85{bottom:206.355000px;}
.yab{bottom:211.395000px;}
.y5d{bottom:216.075000px;}
.ye8{bottom:218.235000px;}
.yd4{bottom:222.195000px;}
.y2d{bottom:222.915000px;}
.y84{bottom:226.155000px;}
.yaa{bottom:231.195000px;}
.y5c{bottom:235.875000px;}
.ye7{bottom:238.035000px;}
.yd3{bottom:242.355000px;}
.y2c{bottom:242.715000px;}
.y83{bottom:245.955000px;}
.ya9{bottom:251.355000px;}
.y5b{bottom:256.035000px;}
.ye6{bottom:257.835000px;}
.yd2{bottom:262.155000px;}
.y2b{bottom:262.515000px;}
.y82{bottom:265.755000px;}
.ya8{bottom:271.155000px;}
.y5a{bottom:275.835000px;}
.ye5{bottom:277.635000px;}
.yd1{bottom:281.955000px;}
.y2a{bottom:282.675000px;}
.y81{bottom:285.555000px;}
.ya7{bottom:290.955000px;}
.y59{bottom:295.635000px;}
.ye4{bottom:297.435000px;}
.yd0{bottom:301.755000px;}
.y29{bottom:302.475000px;}
.y80{bottom:304.995000px;}
.ya6{bottom:310.755000px;}
.y58{bottom:315.795000px;}
.ye3{bottom:317.235000px;}
.ycf{bottom:321.585000px;}
.y28{bottom:322.305000px;}
.y100{bottom:330.225000px;}
.ya5{bottom:330.585000px;}
.y7f{bottom:334.185000px;}
.y57{bottom:335.625000px;}
.yce{bottom:341.385000px;}
.y27{bottom:342.105000px;}
.ye2{bottom:346.425000px;}
.yff{bottom:350.025000px;}
.ya4{bottom:350.385000px;}
.y7e{bottom:353.985000px;}
.y56{bottom:355.425000px;}
.ycd{bottom:361.185000px;}
.y26{bottom:361.905000px;}
.ye1{bottom:366.225000px;}
.ya3{bottom:370.185000px;}
.y7d{bottom:373.785000px;}
.y55{bottom:375.225000px;}
.ycc{bottom:380.985000px;}
.y25{bottom:381.705000px;}
.ye0{bottom:386.025000px;}
.ya2{bottom:389.985000px;}
.y7c{bottom:393.585000px;}
.y54{bottom:395.025000px;}
.ycb{bottom:400.785000px;}
.y24{bottom:401.505000px;}
.ydf{bottom:405.825000px;}
.ya1{bottom:409.785000px;}
.y7b{bottom:413.745000px;}
.y53{bottom:414.825000px;}
.yca{bottom:420.585000px;}
.y23{bottom:421.305000px;}
.yde{bottom:425.265000px;}
.ya0{bottom:429.225000px;}
.yfe{bottom:429.585000px;}
.y7a{bottom:433.185000px;}
.y52{bottom:434.625000px;}
.yc9{bottom:440.745000px;}
.y22{bottom:441.105000px;}
.ydd{bottom:445.065000px;}
.yfd{bottom:449.790000px;}
.y51{bottom:454.470000px;}
.y9f{bottom:458.790000px;}
.yc8{bottom:460.590000px;}
.y21{bottom:460.950000px;}
.ydc{bottom:461.670000px;}
.y79{bottom:462.390000px;}
.yfc{bottom:469.590000px;}
.y50{bottom:474.270000px;}
.y9e{bottom:478.590000px;}
.yc7{bottom:480.390000px;}
.y20{bottom:481.110000px;}
.y78{bottom:482.190000px;}
.yfb{bottom:489.390000px;}
.y4f{bottom:494.070000px;}
.y9d{bottom:498.390000px;}
.yc6{bottom:500.190000px;}
.y1f{bottom:500.910000px;}
.y77{bottom:501.990000px;}
.yfa{bottom:509.190000px;}
.y4e{bottom:514.230000px;}
.y9c{bottom:518.190000px;}
.yc5{bottom:519.990000px;}
.y1e{bottom:520.350000px;}
.y76{bottom:521.790000px;}
.yf9{bottom:528.990000px;}
.y4d{bottom:534.030000px;}
.y9b{bottom:537.990000px;}
.yc4{bottom:539.790000px;}
.y1d{bottom:540.150000px;}
.y75{bottom:541.590000px;}
.yf8{bottom:548.790000px;}
.y4c{bottom:553.830000px;}
.y9a{bottom:557.790000px;}
.yc3{bottom:559.590000px;}
.y1c{bottom:560.310000px;}
.y74{bottom:561.030000px;}
.yf7{bottom:568.590000px;}
.y4b{bottom:573.660000px;}
.y99{bottom:577.620000px;}
.yc2{bottom:579.420000px;}
.y1b{bottom:582.300000px;}
.yf6{bottom:588.420000px;}
.y73{bottom:590.220000px;}
.y4a{bottom:593.460000px;}
.y98{bottom:597.060000px;}
.yc1{bottom:599.220000px;}
.yf5{bottom:608.220000px;}
.y72{bottom:610.020000px;}
.y1a{bottom:611.100000px;}
.y49{bottom:613.260000px;}
.yc0{bottom:619.020000px;}
.y97{bottom:626.220000px;}
.yf4{bottom:628.020000px;}
.y71{bottom:630.180000px;}
.y19{bottom:630.900000px;}
.y48{bottom:633.060000px;}
.ybf{bottom:639.180000px;}
.y96{bottom:646.020000px;}
.yf3{bottom:648.180000px;}
.y70{bottom:649.980000px;}
.y18{bottom:651.060000px;}
.y47{bottom:652.860000px;}
.ybe{bottom:658.980000px;}
.y95{bottom:666.180000px;}
.yf2{bottom:667.980000px;}
.y6f{bottom:669.780000px;}
.y17{bottom:670.860000px;}
.y46{bottom:672.660000px;}
.ybd{bottom:678.780000px;}
.y94{bottom:685.980000px;}
.yf1{bottom:687.780000px;}
.y6e{bottom:689.580000px;}
.y16{bottom:690.660000px;}
.y45{bottom:692.460000px;}
.ybc{bottom:698.580000px;}
.y93{bottom:700.770000px;}
.yf0{bottom:707.610000px;}
.y6d{bottom:709.050000px;}
.y15{bottom:710.490000px;}
.y44{bottom:712.650000px;}
.y92{bottom:714.090000px;}
.ybb{bottom:718.410000px;}
.yef{bottom:727.410000px;}
.y14{bottom:730.290000px;}
.y91{bottom:730.650000px;}
.y43{bottom:732.450000px;}
.y6c{bottom:738.210000px;}
.yee{bottom:747.210000px;}
.y13{bottom:750.090000px;}
.y42{bottom:752.250000px;}
.yba{bottom:757.650000px;}
.y6b{bottom:758.010000px;}
.yed{bottom:767.010000px;}
.y12{bottom:769.890000px;}
.y41{bottom:771.690000px;}
.y6a{bottom:777.810000px;}
.yb9{bottom:786.810000px;}
.y40{bottom:788.250000px;}
.y11{bottom:789.690000px;}
.y69{bottom:797.610000px;}
.yb8{bottom:806.610000px;}
.y10{bottom:809.490000px;}
.y68{bottom:817.410000px;}
.yb7{bottom:826.455000px;}
.yf{bottom:829.335000px;}
.y67{bottom:837.615000px;}
.yb6{bottom:846.615000px;}
.ye{bottom:849.135000px;}
.y66{bottom:857.415000px;}
.yb5{bottom:866.415000px;}
.yd{bottom:871.455000px;}
.y65{bottom:877.215000px;}
.yb4{bottom:886.215000px;}
.yc{bottom:896.655000px;}
.ydb{bottom:897.015000px;}
.yb3{bottom:906.015000px;}
.yb{bottom:916.455000px;}
.y90{bottom:916.815000px;}
.y64{bottom:925.815000px;}
.ya{bottom:931.215000px;}
.y8f{bottom:936.615000px;}
.y63{bottom:945.255000px;}
.yb2{bottom:945.615000px;}
.y9{bottom:952.845000px;}
.yda{bottom:956.085000px;}
.y8e{bottom:956.445000px;}
.y101{bottom:965.085000px;}
.y3f{bottom:965.445000px;}
.y8{bottom:975.885000px;}
.y8d{bottom:976.245000px;}
.y3e{bottom:985.245000px;}
.y8c{bottom:995.685000px;}
.y3d{bottom:1005.045000px;}
.y7{bottom:1007.565000px;}
.y8b{bottom:1015.485000px;}
.y3c{bottom:1024.845000px;}
.y3b{bottom:1045.005000px;}
.y5{bottom:1052.925000px;}
.y3a{bottom:1064.805000px;}
.y4{bottom:1083.210000px;}
.y39{bottom:1084.650000px;}
.y38{bottom:1104.450000px;}
.y3{bottom:1114.170000px;}
.y37{bottom:1124.250000px;}
.y36{bottom:1144.050000px;}
.y2{bottom:1144.410000px;}
.yb1{bottom:1163.490000px;}
.y35{bottom:1163.850000px;}
.y1{bottom:1178.610000px;}
.y34{bottom:1194.090000px;}
.hd{height:2.826563px;}
.ha{height:5.653125px;}
.h7{height:38.158594px;}
.h9{height:50.520937px;}
.h5{height:59.357813px;}
.h8{height:60.952500px;}
.hb{height:62.163910px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h6{height:72.326250px;}
.hc{height:85.356000px;}
.h2{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:205.275000px;}
.w4{width:565.770000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:7.560000px;}
.x1{left:54.395987px;}
.xe{left:81.035987px;}
.xd{left:87.875987px;}
.x5{left:94.715987px;}
.x2{left:96.515987px;}
.x7{left:97.955987px;}
.x9{left:107.315987px;}
.x4{left:115.235987px;}
.xa{left:117.755987px;}
.xf{left:190.869000px;}
.xc{left:193.394987px;}
.x10{left:259.305000px;}
.x8{left:446.579987px;}
.xb{left:614.054987px;}
.x6{left:625.214987px;}
.x3{left:638.894987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsf{letter-spacing:-2.112000pt;}
.ls14{letter-spacing:-1.712000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.264000pt;}
.ls5{letter-spacing:-1.008000pt;}
.ls11{letter-spacing:-0.864000pt;}
.ls10{letter-spacing:-0.848000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.432533pt;}
.ls7{letter-spacing:-0.414933pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.414933pt;}
.lsa{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.920000pt;}
.lse{letter-spacing:4.480000pt;}
.ls12{letter-spacing:5.760000pt;}
.ls18{letter-spacing:9.374720pt;}
.ls17{letter-spacing:11.934720pt;}
.ws3{word-spacing:-21.440000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.313067pt;}
.ws8{word-spacing:-13.890667pt;}
.ws7{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.025067pt;}
.ws11{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.608000pt;}
.wse{word-spacing:-12.592000pt;}
.ws12{word-spacing:-12.176000pt;}
.ws9{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.728000pt;}
.wsd{word-spacing:-11.328000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsc{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-2257.036800pt;}
._4{margin-left:-1287.947520pt;}
._6{margin-left:-1285.579200pt;}
._5{margin-left:-886.154240pt;}
._7{margin-left:-513.623040pt;}
._8{margin-left:-9.939413pt;}
._a{margin-left:-5.256960pt;}
._14{margin-left:-4.168960pt;}
._b{margin-left:-2.944000pt;}
._0{margin-left:-1.886720pt;}
._2{margin-left:-0.943360pt;}
._1{width:0.943360pt;}
._9{width:2.122240pt;}
._10{width:3.313920pt;}
._12{width:4.261547pt;}
._11{width:5.606400pt;}
._c{width:6.558720pt;}
._d{width:7.989760pt;}
._e{width:8.954880pt;}
._f{width:9.955840pt;}
._13{width:11.017813pt;}
._1a{width:12.174507pt;}
._16{width:15.482880pt;}
._15{width:16.538880pt;}
._17{width:17.960533pt;}
._19{width:21.719040pt;}
._18{width:22.767360pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:5.120000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:10.874667pt;}
.y106{bottom:28.474667pt;}
.y103{bottom:31.674667pt;}
.y105{bottom:46.074667pt;}
.y6{bottom:53.120000pt;}
.y104{bottom:63.714667pt;}
.y33{bottom:92.512000pt;}
.y8a{bottom:95.072000pt;}
.yb0{bottom:99.872000pt;}
.yd9{bottom:101.472000pt;}
.y62{bottom:104.352000pt;}
.y32{bottom:110.112000pt;}
.y89{bottom:112.672000pt;}
.yaf{bottom:117.472000pt;}
.yd8{bottom:119.072000pt;}
.y61{bottom:121.952000pt;}
.yec{bottom:123.552000pt;}
.y102{bottom:125.792000pt;}
.y31{bottom:127.712000pt;}
.y88{bottom:129.952000pt;}
.yae{bottom:135.066667pt;}
.yd7{bottom:136.346667pt;}
.y60{bottom:139.546667pt;}
.yeb{bottom:141.146667pt;}
.y30{bottom:145.306667pt;}
.y87{bottom:147.866667pt;}
.yad{bottom:152.666667pt;}
.y5f{bottom:157.146667pt;}
.yea{bottom:158.746667pt;}
.yd6{bottom:162.266667pt;}
.y2f{bottom:162.906667pt;}
.y86{bottom:165.466667pt;}
.yac{bottom:170.266667pt;}
.y5e{bottom:174.786667pt;}
.ye9{bottom:176.386667pt;}
.yd5{bottom:179.906667pt;}
.y2e{bottom:180.546667pt;}
.y85{bottom:183.426667pt;}
.yab{bottom:187.906667pt;}
.y5d{bottom:192.066667pt;}
.ye8{bottom:193.986667pt;}
.yd4{bottom:197.506667pt;}
.y2d{bottom:198.146667pt;}
.y84{bottom:201.026667pt;}
.yaa{bottom:205.506667pt;}
.y5c{bottom:209.666667pt;}
.ye7{bottom:211.586667pt;}
.yd3{bottom:215.426667pt;}
.y2c{bottom:215.746667pt;}
.y83{bottom:218.626667pt;}
.ya9{bottom:223.426667pt;}
.y5b{bottom:227.586667pt;}
.ye6{bottom:229.186667pt;}
.yd2{bottom:233.026667pt;}
.y2b{bottom:233.346667pt;}
.y82{bottom:236.226667pt;}
.ya8{bottom:241.026667pt;}
.y5a{bottom:245.186667pt;}
.ye5{bottom:246.786667pt;}
.yd1{bottom:250.626667pt;}
.y2a{bottom:251.266667pt;}
.y81{bottom:253.826667pt;}
.ya7{bottom:258.626667pt;}
.y59{bottom:262.786667pt;}
.ye4{bottom:264.386667pt;}
.yd0{bottom:268.226667pt;}
.y29{bottom:268.866667pt;}
.y80{bottom:271.106667pt;}
.ya6{bottom:276.226667pt;}
.y58{bottom:280.706667pt;}
.ye3{bottom:281.986667pt;}
.ycf{bottom:285.853333pt;}
.y28{bottom:286.493333pt;}
.y100{bottom:293.533333pt;}
.ya5{bottom:293.853333pt;}
.y7f{bottom:297.053333pt;}
.y57{bottom:298.333333pt;}
.yce{bottom:303.453333pt;}
.y27{bottom:304.093333pt;}
.ye2{bottom:307.933333pt;}
.yff{bottom:311.133333pt;}
.ya4{bottom:311.453333pt;}
.y7e{bottom:314.653333pt;}
.y56{bottom:315.933333pt;}
.ycd{bottom:321.053333pt;}
.y26{bottom:321.693333pt;}
.ye1{bottom:325.533333pt;}
.ya3{bottom:329.053333pt;}
.y7d{bottom:332.253333pt;}
.y55{bottom:333.533333pt;}
.ycc{bottom:338.653333pt;}
.y25{bottom:339.293333pt;}
.ye0{bottom:343.133333pt;}
.ya2{bottom:346.653333pt;}
.y7c{bottom:349.853333pt;}
.y54{bottom:351.133333pt;}
.ycb{bottom:356.253333pt;}
.y24{bottom:356.893333pt;}
.ydf{bottom:360.733333pt;}
.ya1{bottom:364.253333pt;}
.y7b{bottom:367.773333pt;}
.y53{bottom:368.733333pt;}
.yca{bottom:373.853333pt;}
.y23{bottom:374.493333pt;}
.yde{bottom:378.013333pt;}
.ya0{bottom:381.533333pt;}
.yfe{bottom:381.853333pt;}
.y7a{bottom:385.053333pt;}
.y52{bottom:386.333333pt;}
.yc9{bottom:391.773333pt;}
.y22{bottom:392.093333pt;}
.ydd{bottom:395.613333pt;}
.yfd{bottom:399.813333pt;}
.y51{bottom:403.973333pt;}
.y9f{bottom:407.813333pt;}
.yc8{bottom:409.413333pt;}
.y21{bottom:409.733333pt;}
.ydc{bottom:410.373333pt;}
.y79{bottom:411.013333pt;}
.yfc{bottom:417.413333pt;}
.y50{bottom:421.573333pt;}
.y9e{bottom:425.413333pt;}
.yc7{bottom:427.013333pt;}
.y20{bottom:427.653333pt;}
.y78{bottom:428.613333pt;}
.yfb{bottom:435.013333pt;}
.y4f{bottom:439.173333pt;}
.y9d{bottom:443.013333pt;}
.yc6{bottom:444.613333pt;}
.y1f{bottom:445.253333pt;}
.y77{bottom:446.213333pt;}
.yfa{bottom:452.613333pt;}
.y4e{bottom:457.093333pt;}
.y9c{bottom:460.613333pt;}
.yc5{bottom:462.213333pt;}
.y1e{bottom:462.533333pt;}
.y76{bottom:463.813333pt;}
.yf9{bottom:470.213333pt;}
.y4d{bottom:474.693333pt;}
.y9b{bottom:478.213333pt;}
.yc4{bottom:479.813333pt;}
.y1d{bottom:480.133333pt;}
.y75{bottom:481.413333pt;}
.yf8{bottom:487.813333pt;}
.y4c{bottom:492.293333pt;}
.y9a{bottom:495.813333pt;}
.yc3{bottom:497.413333pt;}
.y1c{bottom:498.053333pt;}
.y74{bottom:498.693333pt;}
.yf7{bottom:505.413333pt;}
.y4b{bottom:509.920000pt;}
.y99{bottom:513.440000pt;}
.yc2{bottom:515.040000pt;}
.y1b{bottom:517.600000pt;}
.yf6{bottom:523.040000pt;}
.y73{bottom:524.640000pt;}
.y4a{bottom:527.520000pt;}
.y98{bottom:530.720000pt;}
.yc1{bottom:532.640000pt;}
.yf5{bottom:540.640000pt;}
.y72{bottom:542.240000pt;}
.y1a{bottom:543.200000pt;}
.y49{bottom:545.120000pt;}
.yc0{bottom:550.240000pt;}
.y97{bottom:556.640000pt;}
.yf4{bottom:558.240000pt;}
.y71{bottom:560.160000pt;}
.y19{bottom:560.800000pt;}
.y48{bottom:562.720000pt;}
.ybf{bottom:568.160000pt;}
.y96{bottom:574.240000pt;}
.yf3{bottom:576.160000pt;}
.y70{bottom:577.760000pt;}
.y18{bottom:578.720000pt;}
.y47{bottom:580.320000pt;}
.ybe{bottom:585.760000pt;}
.y95{bottom:592.160000pt;}
.yf2{bottom:593.760000pt;}
.y6f{bottom:595.360000pt;}
.y17{bottom:596.320000pt;}
.y46{bottom:597.920000pt;}
.ybd{bottom:603.360000pt;}
.y94{bottom:609.760000pt;}
.yf1{bottom:611.360000pt;}
.y6e{bottom:612.960000pt;}
.y16{bottom:613.920000pt;}
.y45{bottom:615.520000pt;}
.ybc{bottom:620.960000pt;}
.y93{bottom:622.906667pt;}
.yf0{bottom:628.986667pt;}
.y6d{bottom:630.266667pt;}
.y15{bottom:631.546667pt;}
.y44{bottom:633.466667pt;}
.y92{bottom:634.746667pt;}
.ybb{bottom:638.586667pt;}
.yef{bottom:646.586667pt;}
.y14{bottom:649.146667pt;}
.y91{bottom:649.466667pt;}
.y43{bottom:651.066667pt;}
.y6c{bottom:656.186667pt;}
.yee{bottom:664.186667pt;}
.y13{bottom:666.746667pt;}
.y42{bottom:668.666667pt;}
.yba{bottom:673.466667pt;}
.y6b{bottom:673.786667pt;}
.yed{bottom:681.786667pt;}
.y12{bottom:684.346667pt;}
.y41{bottom:685.946667pt;}
.y6a{bottom:691.386667pt;}
.yb9{bottom:699.386667pt;}
.y40{bottom:700.666667pt;}
.y11{bottom:701.946667pt;}
.y69{bottom:708.986667pt;}
.yb8{bottom:716.986667pt;}
.y10{bottom:719.546667pt;}
.y68{bottom:726.586667pt;}
.yb7{bottom:734.626667pt;}
.yf{bottom:737.186667pt;}
.y67{bottom:744.546667pt;}
.yb6{bottom:752.546667pt;}
.ye{bottom:754.786667pt;}
.y66{bottom:762.146667pt;}
.yb5{bottom:770.146667pt;}
.yd{bottom:774.626667pt;}
.y65{bottom:779.746667pt;}
.yb4{bottom:787.746667pt;}
.yc{bottom:797.026667pt;}
.ydb{bottom:797.346667pt;}
.yb3{bottom:805.346667pt;}
.yb{bottom:814.626667pt;}
.y90{bottom:814.946667pt;}
.y64{bottom:822.946667pt;}
.ya{bottom:827.746667pt;}
.y8f{bottom:832.546667pt;}
.y63{bottom:840.226667pt;}
.yb2{bottom:840.546667pt;}
.y9{bottom:846.973333pt;}
.yda{bottom:849.853333pt;}
.y8e{bottom:850.173333pt;}
.y101{bottom:857.853333pt;}
.y3f{bottom:858.173333pt;}
.y8{bottom:867.453333pt;}
.y8d{bottom:867.773333pt;}
.y3e{bottom:875.773333pt;}
.y8c{bottom:885.053333pt;}
.y3d{bottom:893.373333pt;}
.y7{bottom:895.613333pt;}
.y8b{bottom:902.653333pt;}
.y3c{bottom:910.973333pt;}
.y3b{bottom:928.893333pt;}
.y5{bottom:935.933333pt;}
.y3a{bottom:946.493333pt;}
.y4{bottom:962.853333pt;}
.y39{bottom:964.133333pt;}
.y38{bottom:981.733333pt;}
.y3{bottom:990.373333pt;}
.y37{bottom:999.333333pt;}
.y36{bottom:1016.933333pt;}
.y2{bottom:1017.253333pt;}
.yb1{bottom:1034.213333pt;}
.y35{bottom:1034.533333pt;}
.y1{bottom:1047.653333pt;}
.y34{bottom:1061.413333pt;}
.hd{height:2.512500pt;}
.ha{height:5.025000pt;}
.h7{height:33.918750pt;}
.h9{height:44.907500pt;}
.h5{height:52.762500pt;}
.h8{height:54.180000pt;}
.hb{height:55.256809pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h6{height:64.290000pt;}
.hc{height:75.872000pt;}
.h2{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:182.466667pt;}
.w4{width:502.906667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:6.720000pt;}
.x1{left:48.351988pt;}
.xe{left:72.031988pt;}
.xd{left:78.111988pt;}
.x5{left:84.191988pt;}
.x2{left:85.791988pt;}
.x7{left:87.071988pt;}
.x9{left:95.391988pt;}
.x4{left:102.431988pt;}
.xa{left:104.671988pt;}
.xf{left:169.661333pt;}
.xc{left:171.906655pt;}
.x10{left:230.493333pt;}
.x8{left:396.959988pt;}
.xb{left:545.826655pt;}
.x6{left:555.746655pt;}
.x3{left:567.906655pt;}
}




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