
    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_9b13928720a4d54cee2fb449.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0fcbfef6cde7b50421dc6ba6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_e723733e0f293bcc4af5ea0d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_874ea5cbc3999a19a1e38ec4.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_63a441ab0b85d2f044b76b53.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_ca648adaf9cbf8b1083af582.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3e3a4d8b7384000bc119105d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c0c1e8717421f56db1a1f394.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-73.440000px;}
.v2{vertical-align:-69.120000px;}
.v3{vertical-align:-56.160000px;}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-1.998000px;}
.ls2a{letter-spacing:-1.914000px;}
.lsc{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.254000px;}
.ls26{letter-spacing:-0.954000px;}
.ls2d{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.593400px;}
.ls29{letter-spacing:-0.492600px;}
.ls2c{letter-spacing:-0.475200px;}
.lsb{letter-spacing:-0.466800px;}
.ls1c{letter-spacing:-0.460800px;}
.ls19{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.020160px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.020160px;}
.lsf{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.253200px;}
.ls5{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.498240px;}
.ls2b{letter-spacing:0.630000px;}
.ls9{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.840000px;}
.ls1e{letter-spacing:0.894000px;}
.ls24{letter-spacing:1.460160px;}
.ls1d{letter-spacing:2.160000px;}
.ls1f{letter-spacing:3.600000px;}
.ls1b{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.920000px;}
.ls15{letter-spacing:9.360000px;}
.ls18{letter-spacing:9.372000px;}
.ls16{letter-spacing:10.800000px;}
.lse{letter-spacing:12.384000px;}
.ls6{letter-spacing:15.120000px;}
.ls23{letter-spacing:18.000000px;}
.ls1a{letter-spacing:20.880000px;}
.ls12{letter-spacing:22.320000px;}
.ls8{letter-spacing:26.640000px;}
.ls21{letter-spacing:38.160000px;}
.ls4{letter-spacing:49.680000px;}
.ls3{letter-spacing:51.120000px;}
.ls2{letter-spacing:154.800000px;}
.ls17{letter-spacing:154.944000px;}
.ls22{letter-spacing:163.198560px;}
.ls20{letter-spacing:193.438560px;}
.ls0{letter-spacing:404.196000px;}
.ls25{letter-spacing:1329.456000px;}
.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:-15.586800px;}
.ws5{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.099840px;}
.ws7{word-spacing:-14.938800px;}
.ws8{word-spacing:-14.659200px;}
.ws0{word-spacing:-14.653200px;}
.wsa{word-spacing:-14.526600px;}
.wse{word-spacing:-14.310000px;}
.ws9{word-spacing:-14.166000px;}
.ws2{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.204800px;}
.wsc{word-spacing:-13.187400px;}
.ws10{word-spacing:-12.870000px;}
.ws11{word-spacing:-12.426000px;}
.wsb{word-spacing:-12.240000px;}
.wsd{word-spacing:-11.766000px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-8.424720px;}
._29{margin-left:-3.888480px;}
._2{margin-left:-2.878320px;}
._0{margin-left:-1.440000px;}
._1{width:1.288320px;}
._9{width:2.952000px;}
._a{width:4.463520px;}
._6{width:6.061680px;}
._4{width:7.306560px;}
._5{width:8.689440px;}
._d{width:9.920160px;}
._c{width:11.468160px;}
._e{width:12.523920px;}
._b{width:13.686000px;}
._3{width:17.119440px;}
._14{width:18.509280px;}
._21{width:19.522800px;}
._13{width:20.900160px;}
._16{width:22.003200px;}
._15{width:23.544240px;}
._11{width:24.864240px;}
._12{width:26.054400px;}
._1d{width:27.427200px;}
._24{width:28.626240px;}
._17{width:29.744640px;}
._18{width:31.052160px;}
._2d{width:32.513280px;}
._f{width:33.747840px;}
._10{width:35.620080px;}
._22{width:37.800000px;}
._23{width:39.047040px;}
._1f{width:40.835520px;}
._1e{width:42.010560px;}
._1b{width:43.783680px;}
._1c{width:45.092400px;}
._8{width:48.888000px;}
._7{width:50.077440px;}
._28{width:59.705280px;}
._27{width:60.831360px;}
._2b{width:61.968960px;}
._2a{width:63.207600px;}
._2c{width:64.942320px;}
._1a{width:69.511680px;}
._19{width:70.606080px;}
._26{width:138.789120px;}
._25{width:179.412000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(33,33,33);}
.fc3{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y85{bottom:111.996000px;}
.y88{bottom:113.076000px;}
.y36{bottom:116.676000px;}
.y69{bottom:117.396000px;}
.y5e{bottom:126.396000px;}
.y84{bottom:129.276000px;}
.y87{bottom:130.716000px;}
.y35{bottom:132.156000px;}
.y68{bottom:134.676000px;}
.y5d{bottom:143.676000px;}
.y9a{bottom:146.196000px;}
.y83{bottom:146.556000px;}
.y44{bottom:147.996000px;}
.y67{bottom:151.950000px;}
.y99{bottom:156.630000px;}
.y5c{bottom:160.950000px;}
.y82{bottom:163.830000px;}
.y34{bottom:165.270000px;}
.y66{bottom:169.230000px;}
.y98{bottom:173.910000px;}
.y5b{bottom:178.230000px;}
.y81{bottom:181.110000px;}
.y33{bottom:182.190000px;}
.y65{bottom:186.510000px;}
.y97{bottom:190.830000px;}
.y5a{bottom:195.510000px;}
.y80{bottom:197.670000px;}
.y32{bottom:199.470000px;}
.y64{bottom:203.790000px;}
.y96{bottom:208.110000px;}
.y7f{bottom:212.070000px;}
.y59{bottom:212.790000px;}
.y31{bottom:216.750000px;}
.y63{bottom:221.115000px;}
.y95{bottom:225.435000px;}
.y7e{bottom:229.395000px;}
.y58{bottom:229.755000px;}
.y30{bottom:234.075000px;}
.y62{bottom:238.035000px;}
.y94{bottom:242.715000px;}
.y7d{bottom:246.675000px;}
.y57{bottom:247.035000px;}
.y2f{bottom:251.355000px;}
.y61{bottom:255.315000px;}
.y93{bottom:259.995000px;}
.y7c{bottom:263.955000px;}
.y56{bottom:264.315000px;}
.y43{bottom:268.275000px;}
.y2e{bottom:268.635000px;}
.y92{bottom:277.275000px;}
.y7b{bottom:280.515000px;}
.y55{bottom:281.595000px;}
.y2d{bottom:285.915000px;}
.y60{bottom:289.875000px;}
.y7a{bottom:291.675000px;}
.y91{bottom:294.555000px;}
.y54{bottom:298.875000px;}
.y86{bottom:302.835000px;}
.y2c{bottom:303.195000px;}
.y5f{bottom:303.555000px;}
.y90{bottom:311.835000px;}
.y53{bottom:316.155000px;}
.y2b{bottom:320.475000px;}
.y8f{bottom:329.145000px;}
.y52{bottom:333.465000px;}
.y2a{bottom:337.785000px;}
.y8e{bottom:346.065000px;}
.y51{bottom:347.145000px;}
.y29{bottom:355.065000px;}
.y8d{bottom:363.705000px;}
.y28{bottom:371.985000px;}
.y8c{bottom:380.625000px;}
.y27{bottom:389.265000px;}
.y8b{bottom:397.905000px;}
.y26{bottom:406.545000px;}
.y8a{bottom:413.385000px;}
.y25{bottom:423.825000px;}
.y24{bottom:441.150000px;}
.y23{bottom:458.430000px;}
.y22{bottom:475.710000px;}
.y21{bottom:492.990000px;}
.y20{bottom:510.270000px;}
.y1f{bottom:527.190000px;}
.y42{bottom:527.550000px;}
.y1e{bottom:544.860000px;}
.y79{bottom:548.820000px;}
.y1d{bottom:561.780000px;}
.y41{bottom:562.140000px;}
.y78{bottom:563.220000px;}
.y40{bottom:578.700000px;}
.y1c{bottom:579.060000px;}
.y77{bottom:580.500000px;}
.y1b{bottom:596.340000px;}
.y76{bottom:597.780000px;}
.y50{bottom:610.020000px;}
.y1a{bottom:613.620000px;}
.y75{bottom:615.060000px;}
.y4f{bottom:627.300000px;}
.y19{bottom:630.900000px;}
.y74{bottom:632.340000px;}
.y4e{bottom:644.610000px;}
.y18{bottom:648.210000px;}
.y73{bottom:649.650000px;}
.y4d{bottom:661.890000px;}
.y17{bottom:665.490000px;}
.y72{bottom:666.570000px;}
.y4c{bottom:679.170000px;}
.y16{bottom:682.770000px;}
.y71{bottom:683.850000px;}
.y4b{bottom:696.450000px;}
.y15{bottom:700.050000px;}
.y70{bottom:701.130000px;}
.y4a{bottom:713.370000px;}
.y14{bottom:717.330000px;}
.y6f{bottom:718.050000px;}
.y49{bottom:730.650000px;}
.y6e{bottom:732.450000px;}
.y13{bottom:734.610000px;}
.y48{bottom:747.975000px;}
.y6d{bottom:749.415000px;}
.y12{bottom:751.935000px;}
.y47{bottom:765.255000px;}
.y6c{bottom:766.695000px;}
.y11{bottom:768.855000px;}
.y6b{bottom:782.175000px;}
.y46{bottom:782.535000px;}
.y10{bottom:786.135000px;}
.y6a{bottom:794.415000px;}
.y45{bottom:796.215000px;}
.yf{bottom:803.055000px;}
.y3f{bottom:803.415000px;}
.y3e{bottom:820.695000px;}
.ye{bottom:837.975000px;}
.yd{bottom:854.925000px;}
.y3d{bottom:855.285000px;}
.yc{bottom:870.045000px;}
.y3c{bottom:872.565000px;}
.yb{bottom:886.245000px;}
.y3b{bottom:889.845000px;}
.y3a{bottom:907.125000px;}
.ya{bottom:921.885000px;}
.y39{bottom:924.405000px;}
.y9{bottom:941.325000px;}
.y38{bottom:941.685000px;}
.y8{bottom:958.650000px;}
.y37{bottom:959.010000px;}
.y7{bottom:975.930000px;}
.y6{bottom:993.210000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y89{bottom:1044.690000px;}
.y3{bottom:1045.050000px;}
.ha{height:29.678906px;}
.he{height:30.476250px;}
.hc{height:46.615078px;}
.hb{height:46.638281px;}
.h5{height:52.299844px;}
.h8{height:53.704687px;}
.h9{height:54.219375px;}
.h7{height:55.147500px;}
.h4{height:59.328281px;}
.h2{height:59.357813px;}
.h6{height:60.952500px;}
.hd{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:51.155989px;}
.x7{left:65.195989px;}
.x6{left:69.155989px;}
.xa{left:76.715989px;}
.x2{left:93.635989px;}
.xf{left:104.471989px;}
.x9{left:119.231989px;}
.x10{left:209.624989px;}
.x4{left:296.069989px;}
.x1{left:337.859989px;}
.x5{left:349.019989px;}
.x8{left:363.419989px;}
.xc{left:538.484989px;}
.xe{left:542.444989px;}
.xb{left:544.244989px;}
.xd{left:567.284989px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v2{vertical-align:-61.440000pt;}
.v3{vertical-align:-49.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-1.776000pt;}
.ls2a{letter-spacing:-1.701333pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.114667pt;}
.ls26{letter-spacing:-0.848000pt;}
.ls2d{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.527467pt;}
.ls29{letter-spacing:-0.437867pt;}
.ls2c{letter-spacing:-0.422400pt;}
.lsb{letter-spacing:-0.414933pt;}
.ls1c{letter-spacing:-0.409600pt;}
.ls19{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.017920pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.017920pt;}
.lsf{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.225067pt;}
.ls5{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.442880pt;}
.ls2b{letter-spacing:0.560000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:0.794667pt;}
.ls24{letter-spacing:1.297920pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls11{letter-spacing:7.040000pt;}
.ls15{letter-spacing:8.320000pt;}
.ls18{letter-spacing:8.330667pt;}
.ls16{letter-spacing:9.600000pt;}
.lse{letter-spacing:11.008000pt;}
.ls6{letter-spacing:13.440000pt;}
.ls23{letter-spacing:16.000000pt;}
.ls1a{letter-spacing:18.560000pt;}
.ls12{letter-spacing:19.840000pt;}
.ls8{letter-spacing:23.680000pt;}
.ls21{letter-spacing:33.920000pt;}
.ls4{letter-spacing:44.160000pt;}
.ls3{letter-spacing:45.440000pt;}
.ls2{letter-spacing:137.600000pt;}
.ls17{letter-spacing:137.728000pt;}
.ls22{letter-spacing:145.065387pt;}
.ls20{letter-spacing:171.945387pt;}
.ls0{letter-spacing:359.285333pt;}
.ls25{letter-spacing:1181.738667pt;}
.ws3{word-spacing:-13.854933pt;}
.ws5{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.422080pt;}
.ws7{word-spacing:-13.278933pt;}
.ws8{word-spacing:-13.030400pt;}
.ws0{word-spacing:-13.025067pt;}
.wsa{word-spacing:-12.912533pt;}
.wse{word-spacing:-12.720000pt;}
.ws9{word-spacing:-12.592000pt;}
.ws2{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.737600pt;}
.wsc{word-spacing:-11.722133pt;}
.ws10{word-spacing:-11.440000pt;}
.ws11{word-spacing:-11.045333pt;}
.wsb{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.458667pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-7.488640pt;}
._29{margin-left:-3.456427pt;}
._2{margin-left:-2.558507pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.145173pt;}
._9{width:2.624000pt;}
._a{width:3.967573pt;}
._6{width:5.388160pt;}
._4{width:6.494720pt;}
._5{width:7.723947pt;}
._d{width:8.817920pt;}
._c{width:10.193920pt;}
._e{width:11.132373pt;}
._b{width:12.165333pt;}
._3{width:15.217280pt;}
._14{width:16.452693pt;}
._21{width:17.353600pt;}
._13{width:18.577920pt;}
._16{width:19.558400pt;}
._15{width:20.928213pt;}
._11{width:22.101547pt;}
._12{width:23.159467pt;}
._1d{width:24.379733pt;}
._24{width:25.445547pt;}
._17{width:26.439680pt;}
._18{width:27.601920pt;}
._2d{width:28.900693pt;}
._f{width:29.998080pt;}
._10{width:31.662293pt;}
._22{width:33.600000pt;}
._23{width:34.708480pt;}
._1f{width:36.298240pt;}
._1e{width:37.342720pt;}
._1b{width:38.918827pt;}
._1c{width:40.082133pt;}
._8{width:43.456000pt;}
._7{width:44.513280pt;}
._28{width:53.071360pt;}
._27{width:54.072320pt;}
._2b{width:55.083520pt;}
._2a{width:56.184533pt;}
._2c{width:57.726507pt;}
._1a{width:61.788160pt;}
._19{width:62.760960pt;}
._26{width:123.368107pt;}
._25{width:159.477333pt;}
.fs3{font-size:26.880000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y85{bottom:99.552000pt;}
.y88{bottom:100.512000pt;}
.y36{bottom:103.712000pt;}
.y69{bottom:104.352000pt;}
.y5e{bottom:112.352000pt;}
.y84{bottom:114.912000pt;}
.y87{bottom:116.192000pt;}
.y35{bottom:117.472000pt;}
.y68{bottom:119.712000pt;}
.y5d{bottom:127.712000pt;}
.y9a{bottom:129.952000pt;}
.y83{bottom:130.272000pt;}
.y44{bottom:131.552000pt;}
.y67{bottom:135.066667pt;}
.y99{bottom:139.226667pt;}
.y5c{bottom:143.066667pt;}
.y82{bottom:145.626667pt;}
.y34{bottom:146.906667pt;}
.y66{bottom:150.426667pt;}
.y98{bottom:154.586667pt;}
.y5b{bottom:158.426667pt;}
.y81{bottom:160.986667pt;}
.y33{bottom:161.946667pt;}
.y65{bottom:165.786667pt;}
.y97{bottom:169.626667pt;}
.y5a{bottom:173.786667pt;}
.y80{bottom:175.706667pt;}
.y32{bottom:177.306667pt;}
.y64{bottom:181.146667pt;}
.y96{bottom:184.986667pt;}
.y7f{bottom:188.506667pt;}
.y59{bottom:189.146667pt;}
.y31{bottom:192.666667pt;}
.y63{bottom:196.546667pt;}
.y95{bottom:200.386667pt;}
.y7e{bottom:203.906667pt;}
.y58{bottom:204.226667pt;}
.y30{bottom:208.066667pt;}
.y62{bottom:211.586667pt;}
.y94{bottom:215.746667pt;}
.y7d{bottom:219.266667pt;}
.y57{bottom:219.586667pt;}
.y2f{bottom:223.426667pt;}
.y61{bottom:226.946667pt;}
.y93{bottom:231.106667pt;}
.y7c{bottom:234.626667pt;}
.y56{bottom:234.946667pt;}
.y43{bottom:238.466667pt;}
.y2e{bottom:238.786667pt;}
.y92{bottom:246.466667pt;}
.y7b{bottom:249.346667pt;}
.y55{bottom:250.306667pt;}
.y2d{bottom:254.146667pt;}
.y60{bottom:257.666667pt;}
.y7a{bottom:259.266667pt;}
.y91{bottom:261.826667pt;}
.y54{bottom:265.666667pt;}
.y86{bottom:269.186667pt;}
.y2c{bottom:269.506667pt;}
.y5f{bottom:269.826667pt;}
.y90{bottom:277.186667pt;}
.y53{bottom:281.026667pt;}
.y2b{bottom:284.866667pt;}
.y8f{bottom:292.573333pt;}
.y52{bottom:296.413333pt;}
.y2a{bottom:300.253333pt;}
.y8e{bottom:307.613333pt;}
.y51{bottom:308.573333pt;}
.y29{bottom:315.613333pt;}
.y8d{bottom:323.293333pt;}
.y28{bottom:330.653333pt;}
.y8c{bottom:338.333333pt;}
.y27{bottom:346.013333pt;}
.y8b{bottom:353.693333pt;}
.y26{bottom:361.373333pt;}
.y8a{bottom:367.453333pt;}
.y25{bottom:376.733333pt;}
.y24{bottom:392.133333pt;}
.y23{bottom:407.493333pt;}
.y22{bottom:422.853333pt;}
.y21{bottom:438.213333pt;}
.y20{bottom:453.573333pt;}
.y1f{bottom:468.613333pt;}
.y42{bottom:468.933333pt;}
.y1e{bottom:484.320000pt;}
.y79{bottom:487.840000pt;}
.y1d{bottom:499.360000pt;}
.y41{bottom:499.680000pt;}
.y78{bottom:500.640000pt;}
.y40{bottom:514.400000pt;}
.y1c{bottom:514.720000pt;}
.y77{bottom:516.000000pt;}
.y1b{bottom:530.080000pt;}
.y76{bottom:531.360000pt;}
.y50{bottom:542.240000pt;}
.y1a{bottom:545.440000pt;}
.y75{bottom:546.720000pt;}
.y4f{bottom:557.600000pt;}
.y19{bottom:560.800000pt;}
.y74{bottom:562.080000pt;}
.y4e{bottom:572.986667pt;}
.y18{bottom:576.186667pt;}
.y73{bottom:577.466667pt;}
.y4d{bottom:588.346667pt;}
.y17{bottom:591.546667pt;}
.y72{bottom:592.506667pt;}
.y4c{bottom:603.706667pt;}
.y16{bottom:606.906667pt;}
.y71{bottom:607.866667pt;}
.y4b{bottom:619.066667pt;}
.y15{bottom:622.266667pt;}
.y70{bottom:623.226667pt;}
.y4a{bottom:634.106667pt;}
.y14{bottom:637.626667pt;}
.y6f{bottom:638.266667pt;}
.y49{bottom:649.466667pt;}
.y6e{bottom:651.066667pt;}
.y13{bottom:652.986667pt;}
.y48{bottom:664.866667pt;}
.y6d{bottom:666.146667pt;}
.y12{bottom:668.386667pt;}
.y47{bottom:680.226667pt;}
.y6c{bottom:681.506667pt;}
.y11{bottom:683.426667pt;}
.y6b{bottom:695.266667pt;}
.y46{bottom:695.586667pt;}
.y10{bottom:698.786667pt;}
.y6a{bottom:706.146667pt;}
.y45{bottom:707.746667pt;}
.yf{bottom:713.826667pt;}
.y3f{bottom:714.146667pt;}
.y3e{bottom:729.506667pt;}
.ye{bottom:744.866667pt;}
.yd{bottom:759.933333pt;}
.y3d{bottom:760.253333pt;}
.yc{bottom:773.373333pt;}
.y3c{bottom:775.613333pt;}
.yb{bottom:787.773333pt;}
.y3b{bottom:790.973333pt;}
.y3a{bottom:806.333333pt;}
.ya{bottom:819.453333pt;}
.y39{bottom:821.693333pt;}
.y9{bottom:836.733333pt;}
.y38{bottom:837.053333pt;}
.y8{bottom:852.133333pt;}
.y37{bottom:852.453333pt;}
.y7{bottom:867.493333pt;}
.y6{bottom:882.853333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y89{bottom:928.613333pt;}
.y3{bottom:928.933333pt;}
.ha{height:26.381250pt;}
.he{height:27.090000pt;}
.hc{height:41.435625pt;}
.hb{height:41.456250pt;}
.h5{height:46.488750pt;}
.h8{height:47.737500pt;}
.h9{height:48.195000pt;}
.h7{height:49.020000pt;}
.h4{height:52.736250pt;}
.h2{height:52.762500pt;}
.h6{height:54.180000pt;}
.hd{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:45.471990pt;}
.x7{left:57.951990pt;}
.x6{left:61.471990pt;}
.xa{left:68.191990pt;}
.x2{left:83.231990pt;}
.xf{left:92.863990pt;}
.x9{left:105.983990pt;}
.x10{left:186.333324pt;}
.x4{left:263.173324pt;}
.x1{left:300.319990pt;}
.x5{left:310.239990pt;}
.x8{left:323.039990pt;}
.xc{left:478.653324pt;}
.xe{left:482.173324pt;}
.xb{left:483.773324pt;}
.xd{left:504.253324pt;}
}




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