
    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_4690765fcf4f91e7a3bc6ab0.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_e82b088be3aed948d4b99d84.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_8f10c361477ab0f7a73c4385.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_0dea8bdda317b83c9f34f1f1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8912929cdcca4c1d38890f15.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cba966c7c1efa5e808564771.woff2')format("woff");}.ff6{font-family:ff6;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-4.782000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.037440px;}
.ls15{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.513600px;}
.ls18{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.828000px;}
.ls1a{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.134720px;}
.ls1{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls3{letter-spacing:2.050560px;}
.ls1b{letter-spacing:11.466720px;}
.ls19{letter-spacing:41.706720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-2598.738000px;}
._5{margin-left:-1366.159680px;}
._b{margin-left:-1007.870400px;}
._7{margin-left:-931.253760px;}
._a{margin-left:-872.076000px;}
._d{margin-left:-575.213760px;}
._8{margin-left:-535.046400px;}
._c{margin-left:-182.779200px;}
._9{margin-left:-33.120000px;}
._6{margin-left:-8.213760px;}
._1b{margin-left:-6.583920px;}
._e{margin-left:-5.079840px;}
._13{margin-left:-3.414960px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.604000px;}
._12{width:4.515360px;}
._14{width:5.816160px;}
._16{width:7.350480px;}
._1a{width:8.358480px;}
._17{width:10.227600px;}
._11{width:11.755440px;}
._18{width:13.744800px;}
._15{width:16.830720px;}
._19{width:17.835120px;}
._f{width:18.960480px;}
._10{width:20.375760px;}
._21{width:37.667520px;}
._20{width:38.844000px;}
._1d{width:41.353920px;}
._1c{width:122.209200px;}
._1e{width:130.814640px;}
._1f{width:132.875520px;}
.fc3{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.240000px;}
.y91{bottom:20.340000px;}
.y93{bottom:20.520000px;}
.y6{bottom:60.336000px;}
.ya2{bottom:84.996000px;}
.y6b{bottom:92.736000px;}
.y33{bottom:99.936000px;}
.ya1{bottom:102.996000px;}
.y6a{bottom:112.536000px;}
.yd8{bottom:113.616000px;}
.y32{bottom:119.916000px;}
.ya0{bottom:120.996000px;}
.y69{bottom:132.336000px;}
.yd7{bottom:133.416000px;}
.y9f{bottom:138.996000px;}
.y31{bottom:139.716000px;}
.y70{bottom:143.316000px;}
.y68{bottom:152.310000px;}
.yd6{bottom:153.390000px;}
.y9e{bottom:156.990000px;}
.y30{bottom:159.510000px;}
.y6f{bottom:163.110000px;}
.y67{bottom:172.110000px;}
.yd5{bottom:173.190000px;}
.y2f{bottom:179.310000px;}
.y9d{bottom:180.750000px;}
.y6e{bottom:182.910000px;}
.y66{bottom:191.910000px;}
.yd4{bottom:192.990000px;}
.y2e{bottom:199.110000px;}
.y9c{bottom:200.550000px;}
.y6d{bottom:202.710000px;}
.y65{bottom:211.710000px;}
.yd3{bottom:212.790000px;}
.y2d{bottom:219.090000px;}
.y9b{bottom:220.350000px;}
.y6c{bottom:222.510000px;}
.y64{bottom:231.510000px;}
.yd2{bottom:232.590000px;}
.y2c{bottom:238.890000px;}
.y9a{bottom:240.330000px;}
.y63{bottom:251.490000px;}
.yd1{bottom:252.570000px;}
.y2b{bottom:258.690000px;}
.y99{bottom:260.130000px;}
.y62{bottom:271.290000px;}
.yd0{bottom:272.370000px;}
.y2a{bottom:278.490000px;}
.y98{bottom:279.930000px;}
.y61{bottom:291.135000px;}
.ycf{bottom:292.215000px;}
.y97{bottom:294.735000px;}
.y29{bottom:298.335000px;}
.y60{bottom:310.935000px;}
.yce{bottom:312.015000px;}
.y96{bottom:312.735000px;}
.y28{bottom:318.315000px;}
.y5f{bottom:330.735000px;}
.ycd{bottom:331.815000px;}
.y27{bottom:338.115000px;}
.y95{bottom:348.015000px;}
.y5e{bottom:350.715000px;}
.ycc{bottom:351.795000px;}
.y26{bottom:357.915000px;}
.y94{bottom:366.015000px;}
.y5d{bottom:370.515000px;}
.ycb{bottom:371.595000px;}
.y25{bottom:377.715000px;}
.y5c{bottom:390.315000px;}
.yca{bottom:391.395000px;}
.y24{bottom:397.515000px;}
.y92{bottom:401.295000px;}
.y5b{bottom:410.115000px;}
.yc9{bottom:411.195000px;}
.y23{bottom:417.495000px;}
.y5a{bottom:429.915000px;}
.yc8{bottom:430.995000px;}
.y90{bottom:436.575000px;}
.y22{bottom:437.295000px;}
.y59{bottom:449.895000px;}
.yc7{bottom:450.975000px;}
.y21{bottom:457.095000px;}
.y58{bottom:469.695000px;}
.yc6{bottom:470.775000px;}
.y20{bottom:476.895000px;}
.y8f{bottom:477.615000px;}
.y57{bottom:489.495000px;}
.yc5{bottom:490.575000px;}
.y1f{bottom:496.695000px;}
.y8e{bottom:497.415000px;}
.y56{bottom:509.295000px;}
.yc4{bottom:510.375000px;}
.y1e{bottom:516.675000px;}
.y8d{bottom:517.215000px;}
.y55{bottom:529.095000px;}
.yc3{bottom:530.175000px;}
.y1d{bottom:536.475000px;}
.y8c{bottom:537.015000px;}
.y54{bottom:549.075000px;}
.yc2{bottom:550.155000px;}
.y1c{bottom:556.275000px;}
.y8b{bottom:556.815000px;}
.y53{bottom:568.905000px;}
.yc1{bottom:569.985000px;}
.y1b{bottom:576.105000px;}
.y8a{bottom:576.825000px;}
.y52{bottom:588.705000px;}
.yc0{bottom:589.785000px;}
.y1a{bottom:595.905000px;}
.y89{bottom:596.625000px;}
.y51{bottom:608.505000px;}
.ybf{bottom:609.585000px;}
.y19{bottom:615.885000px;}
.y88{bottom:616.425000px;}
.y50{bottom:628.305000px;}
.ybe{bottom:629.385000px;}
.y87{bottom:631.185000px;}
.y18{bottom:635.685000px;}
.y4f{bottom:648.285000px;}
.y86{bottom:649.185000px;}
.ybd{bottom:649.365000px;}
.y17{bottom:657.645000px;}
.y85{bottom:667.185000px;}
.y4e{bottom:668.085000px;}
.ybc{bottom:669.165000px;}
.y84{bottom:685.185000px;}
.y16{bottom:686.625000px;}
.y4d{bottom:687.885000px;}
.ybb{bottom:688.965000px;}
.y15{bottom:706.425000px;}
.y4c{bottom:707.685000px;}
.yba{bottom:708.765000px;}
.y83{bottom:708.945000px;}
.y14{bottom:726.225000px;}
.y4b{bottom:727.485000px;}
.yb9{bottom:728.565000px;}
.y82{bottom:728.745000px;}
.y13{bottom:746.025000px;}
.y4a{bottom:747.465000px;}
.yb8{bottom:748.545000px;}
.y81{bottom:748.725000px;}
.y12{bottom:765.825000px;}
.y49{bottom:767.265000px;}
.yb7{bottom:768.345000px;}
.y80{bottom:768.525000px;}
.y11{bottom:785.805000px;}
.y48{bottom:787.065000px;}
.yb6{bottom:788.145000px;}
.y7f{bottom:788.325000px;}
.y10{bottom:805.605000px;}
.y47{bottom:806.865000px;}
.yb5{bottom:807.945000px;}
.y7e{bottom:808.125000px;}
.yf{bottom:825.405000px;}
.y46{bottom:826.665000px;}
.yb4{bottom:827.745000px;}
.y7d{bottom:827.925000px;}
.ye{bottom:845.205000px;}
.y45{bottom:846.645000px;}
.yb3{bottom:847.770000px;}
.y7c{bottom:856.950000px;}
.y44{bottom:866.490000px;}
.yd{bottom:867.390000px;}
.yb2{bottom:867.570000px;}
.y7b{bottom:876.750000px;}
.y43{bottom:886.290000px;}
.yc{bottom:887.190000px;}
.yb1{bottom:887.370000px;}
.y7a{bottom:896.550000px;}
.y42{bottom:906.090000px;}
.yb0{bottom:907.170000px;}
.yb{bottom:912.210000px;}
.y79{bottom:916.350000px;}
.y41{bottom:925.890000px;}
.yaf{bottom:926.970000px;}
.ya{bottom:932.010000px;}
.y78{bottom:936.150000px;}
.y40{bottom:945.870000px;}
.yae{bottom:946.950000px;}
.y9{bottom:947.310000px;}
.y77{bottom:951.090000px;}
.y3f{bottom:965.670000px;}
.yad{bottom:966.750000px;}
.y76{bottom:969.090000px;}
.y3e{bottom:985.470000px;}
.yac{bottom:986.550000px;}
.y75{bottom:987.090000px;}
.y8{bottom:990.150000px;}
.y74{bottom:1005.090000px;}
.y3d{bottom:1005.270000px;}
.yab{bottom:1006.350000px;}
.y7{bottom:1021.830000px;}
.y73{bottom:1023.090000px;}
.y3c{bottom:1025.070000px;}
.yaa{bottom:1026.150000px;}
.y71{bottom:1041.090000px;}
.y3b{bottom:1045.050000px;}
.ya9{bottom:1046.130000px;}
.y5{bottom:1060.530000px;}
.y3a{bottom:1064.850000px;}
.ya8{bottom:1065.930000px;}
.y39{bottom:1084.650000px;}
.ya7{bottom:1085.730000px;}
.y4{bottom:1091.490000px;}
.y38{bottom:1104.450000px;}
.ya6{bottom:1105.530000px;}
.y3{bottom:1122.450000px;}
.y37{bottom:1124.250000px;}
.ya5{bottom:1125.330000px;}
.y36{bottom:1144.260000px;}
.ya4{bottom:1145.340000px;}
.y2{bottom:1153.440000px;}
.ya3{bottom:1160.100000px;}
.y35{bottom:1164.060000px;}
.y1{bottom:1184.400000px;}
.y34{bottom:1193.400000px;}
.hc{height:17.100000px;}
.hd{height:17.280000px;}
.h7{height:28.115859px;}
.he{height:34.380000px;}
.h10{height:34.560000px;}
.h6{height:37.771172px;}
.hf{height:42.164648px;}
.h9{height:43.215117px;}
.hb{height:49.255313px;}
.h8{height:58.651172px;}
.h11{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.010937px;}
.h4{height:67.565039px;}
.h2{height:68.956875px;}
.h5{height:93.983203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:82.080000px;}
.w9{width:84.600000px;}
.wd{width:116.496000px;}
.w8{width:117.216000px;}
.wa{width:120.276000px;}
.w7{width:122.076000px;}
.w5{width:149.796000px;}
.w4{width:152.130000px;}
.we{width:179.310000px;}
.w3{width:182.190000px;}
.wb{width:222.150000px;}
.wf{width:274.575000px;}
.wc{width:296.310000px;}
.w10{width:298.290000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:54.179987px;}
.x11{left:69.660000px;}
.x14{left:80.999987px;}
.x15{left:108.035987px;}
.xe{left:128.376000px;}
.x9{left:182.010000px;}
.x3{left:203.790000px;}
.x12{left:249.870000px;}
.x7{left:260.849987px;}
.xa{left:264.810000px;}
.x2{left:314.354987px;}
.xf{left:351.255000px;}
.xd{left:353.414987px;}
.x5{left:386.715000px;}
.x8{left:446.474987px;}
.xb{left:505.545000px;}
.x13{left:525.165000px;}
.x6{left:539.565000px;}
.xc{left:590.865000px;}
.x10{left:648.285000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-4.250667pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.033280pt;}
.ls15{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.456533pt;}
.ls18{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.736000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls1{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls3{letter-spacing:1.822720pt;}
.ls1b{letter-spacing:10.192640pt;}
.ls19{letter-spacing:37.072640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-2309.989333pt;}
._5{margin-left:-1214.364160pt;}
._b{margin-left:-895.884800pt;}
._7{margin-left:-827.781120pt;}
._a{margin-left:-775.178667pt;}
._d{margin-left:-511.301120pt;}
._8{margin-left:-475.596800pt;}
._c{margin-left:-162.470400pt;}
._9{margin-left:-29.440000pt;}
._6{margin-left:-7.301120pt;}
._1b{margin-left:-5.852373pt;}
._e{margin-left:-4.515413pt;}
._13{margin-left:-3.035520pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.314667pt;}
._12{width:4.013653pt;}
._14{width:5.169920pt;}
._16{width:6.533760pt;}
._1a{width:7.429760pt;}
._17{width:9.091200pt;}
._11{width:10.449280pt;}
._18{width:12.217600pt;}
._15{width:14.960640pt;}
._19{width:15.853440pt;}
._f{width:16.853760pt;}
._10{width:18.111787pt;}
._21{width:33.482240pt;}
._20{width:34.528000pt;}
._1d{width:36.759040pt;}
._1c{width:108.630400pt;}
._1e{width:116.279680pt;}
._1f{width:118.111573pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.880000pt;}
.y91{bottom:18.080000pt;}
.y93{bottom:18.240000pt;}
.y6{bottom:53.632000pt;}
.ya2{bottom:75.552000pt;}
.y6b{bottom:82.432000pt;}
.y33{bottom:88.832000pt;}
.ya1{bottom:91.552000pt;}
.y6a{bottom:100.032000pt;}
.yd8{bottom:100.992000pt;}
.y32{bottom:106.592000pt;}
.ya0{bottom:107.552000pt;}
.y69{bottom:117.632000pt;}
.yd7{bottom:118.592000pt;}
.y9f{bottom:123.552000pt;}
.y31{bottom:124.192000pt;}
.y70{bottom:127.392000pt;}
.y68{bottom:135.386667pt;}
.yd6{bottom:136.346667pt;}
.y9e{bottom:139.546667pt;}
.y30{bottom:141.786667pt;}
.y6f{bottom:144.986667pt;}
.y67{bottom:152.986667pt;}
.yd5{bottom:153.946667pt;}
.y2f{bottom:159.386667pt;}
.y9d{bottom:160.666667pt;}
.y6e{bottom:162.586667pt;}
.y66{bottom:170.586667pt;}
.yd4{bottom:171.546667pt;}
.y2e{bottom:176.986667pt;}
.y9c{bottom:178.266667pt;}
.y6d{bottom:180.186667pt;}
.y65{bottom:188.186667pt;}
.yd3{bottom:189.146667pt;}
.y2d{bottom:194.746667pt;}
.y9b{bottom:195.866667pt;}
.y6c{bottom:197.786667pt;}
.y64{bottom:205.786667pt;}
.yd2{bottom:206.746667pt;}
.y2c{bottom:212.346667pt;}
.y9a{bottom:213.626667pt;}
.y63{bottom:223.546667pt;}
.yd1{bottom:224.506667pt;}
.y2b{bottom:229.946667pt;}
.y99{bottom:231.226667pt;}
.y62{bottom:241.146667pt;}
.yd0{bottom:242.106667pt;}
.y2a{bottom:247.546667pt;}
.y98{bottom:248.826667pt;}
.y61{bottom:258.786667pt;}
.ycf{bottom:259.746667pt;}
.y97{bottom:261.986667pt;}
.y29{bottom:265.186667pt;}
.y60{bottom:276.386667pt;}
.yce{bottom:277.346667pt;}
.y96{bottom:277.986667pt;}
.y28{bottom:282.946667pt;}
.y5f{bottom:293.986667pt;}
.ycd{bottom:294.946667pt;}
.y27{bottom:300.546667pt;}
.y95{bottom:309.346667pt;}
.y5e{bottom:311.746667pt;}
.ycc{bottom:312.706667pt;}
.y26{bottom:318.146667pt;}
.y94{bottom:325.346667pt;}
.y5d{bottom:329.346667pt;}
.ycb{bottom:330.306667pt;}
.y25{bottom:335.746667pt;}
.y5c{bottom:346.946667pt;}
.yca{bottom:347.906667pt;}
.y24{bottom:353.346667pt;}
.y92{bottom:356.706667pt;}
.y5b{bottom:364.546667pt;}
.yc9{bottom:365.506667pt;}
.y23{bottom:371.106667pt;}
.y5a{bottom:382.146667pt;}
.yc8{bottom:383.106667pt;}
.y90{bottom:388.066667pt;}
.y22{bottom:388.706667pt;}
.y59{bottom:399.906667pt;}
.yc7{bottom:400.866667pt;}
.y21{bottom:406.306667pt;}
.y58{bottom:417.506667pt;}
.yc6{bottom:418.466667pt;}
.y20{bottom:423.906667pt;}
.y8f{bottom:424.546667pt;}
.y57{bottom:435.106667pt;}
.yc5{bottom:436.066667pt;}
.y1f{bottom:441.506667pt;}
.y8e{bottom:442.146667pt;}
.y56{bottom:452.706667pt;}
.yc4{bottom:453.666667pt;}
.y1e{bottom:459.266667pt;}
.y8d{bottom:459.746667pt;}
.y55{bottom:470.306667pt;}
.yc3{bottom:471.266667pt;}
.y1d{bottom:476.866667pt;}
.y8c{bottom:477.346667pt;}
.y54{bottom:488.066667pt;}
.yc2{bottom:489.026667pt;}
.y1c{bottom:494.466667pt;}
.y8b{bottom:494.946667pt;}
.y53{bottom:505.693333pt;}
.yc1{bottom:506.653333pt;}
.y1b{bottom:512.093333pt;}
.y8a{bottom:512.733333pt;}
.y52{bottom:523.293333pt;}
.yc0{bottom:524.253333pt;}
.y1a{bottom:529.693333pt;}
.y89{bottom:530.333333pt;}
.y51{bottom:540.893333pt;}
.ybf{bottom:541.853333pt;}
.y19{bottom:547.453333pt;}
.y88{bottom:547.933333pt;}
.y50{bottom:558.493333pt;}
.ybe{bottom:559.453333pt;}
.y87{bottom:561.053333pt;}
.y18{bottom:565.053333pt;}
.y4f{bottom:576.253333pt;}
.y86{bottom:577.053333pt;}
.ybd{bottom:577.213333pt;}
.y17{bottom:584.573333pt;}
.y85{bottom:593.053333pt;}
.y4e{bottom:593.853333pt;}
.ybc{bottom:594.813333pt;}
.y84{bottom:609.053333pt;}
.y16{bottom:610.333333pt;}
.y4d{bottom:611.453333pt;}
.ybb{bottom:612.413333pt;}
.y15{bottom:627.933333pt;}
.y4c{bottom:629.053333pt;}
.yba{bottom:630.013333pt;}
.y83{bottom:630.173333pt;}
.y14{bottom:645.533333pt;}
.y4b{bottom:646.653333pt;}
.yb9{bottom:647.613333pt;}
.y82{bottom:647.773333pt;}
.y13{bottom:663.133333pt;}
.y4a{bottom:664.413333pt;}
.yb8{bottom:665.373333pt;}
.y81{bottom:665.533333pt;}
.y12{bottom:680.733333pt;}
.y49{bottom:682.013333pt;}
.yb7{bottom:682.973333pt;}
.y80{bottom:683.133333pt;}
.y11{bottom:698.493333pt;}
.y48{bottom:699.613333pt;}
.yb6{bottom:700.573333pt;}
.y7f{bottom:700.733333pt;}
.y10{bottom:716.093333pt;}
.y47{bottom:717.213333pt;}
.yb5{bottom:718.173333pt;}
.y7e{bottom:718.333333pt;}
.yf{bottom:733.693333pt;}
.y46{bottom:734.813333pt;}
.yb4{bottom:735.773333pt;}
.y7d{bottom:735.933333pt;}
.ye{bottom:751.293333pt;}
.y45{bottom:752.573333pt;}
.yb3{bottom:753.573333pt;}
.y7c{bottom:761.733333pt;}
.y44{bottom:770.213333pt;}
.yd{bottom:771.013333pt;}
.yb2{bottom:771.173333pt;}
.y7b{bottom:779.333333pt;}
.y43{bottom:787.813333pt;}
.yc{bottom:788.613333pt;}
.yb1{bottom:788.773333pt;}
.y7a{bottom:796.933333pt;}
.y42{bottom:805.413333pt;}
.yb0{bottom:806.373333pt;}
.yb{bottom:810.853333pt;}
.y79{bottom:814.533333pt;}
.y41{bottom:823.013333pt;}
.yaf{bottom:823.973333pt;}
.ya{bottom:828.453333pt;}
.y78{bottom:832.133333pt;}
.y40{bottom:840.773333pt;}
.yae{bottom:841.733333pt;}
.y9{bottom:842.053333pt;}
.y77{bottom:845.413333pt;}
.y3f{bottom:858.373333pt;}
.yad{bottom:859.333333pt;}
.y76{bottom:861.413333pt;}
.y3e{bottom:875.973333pt;}
.yac{bottom:876.933333pt;}
.y75{bottom:877.413333pt;}
.y8{bottom:880.133333pt;}
.y74{bottom:893.413333pt;}
.y3d{bottom:893.573333pt;}
.yab{bottom:894.533333pt;}
.y7{bottom:908.293333pt;}
.y73{bottom:909.413333pt;}
.y3c{bottom:911.173333pt;}
.yaa{bottom:912.133333pt;}
.y71{bottom:925.413333pt;}
.y3b{bottom:928.933333pt;}
.ya9{bottom:929.893333pt;}
.y5{bottom:942.693333pt;}
.y3a{bottom:946.533333pt;}
.ya8{bottom:947.493333pt;}
.y39{bottom:964.133333pt;}
.ya7{bottom:965.093333pt;}
.y4{bottom:970.213333pt;}
.y38{bottom:981.733333pt;}
.ya6{bottom:982.693333pt;}
.y3{bottom:997.733333pt;}
.y37{bottom:999.333333pt;}
.ya5{bottom:1000.293333pt;}
.y36{bottom:1017.120000pt;}
.ya4{bottom:1018.080000pt;}
.y2{bottom:1025.280000pt;}
.ya3{bottom:1031.200000pt;}
.y35{bottom:1034.720000pt;}
.y1{bottom:1052.800000pt;}
.y34{bottom:1060.800000pt;}
.hc{height:15.200000pt;}
.hd{height:15.360000pt;}
.h7{height:24.991875pt;}
.he{height:30.560000pt;}
.h10{height:30.720000pt;}
.h6{height:33.574375pt;}
.hf{height:37.479688pt;}
.h9{height:38.413438pt;}
.hb{height:43.782500pt;}
.h8{height:52.134375pt;}
.h11{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:57.787500pt;}
.h4{height:60.057813pt;}
.h2{height:61.295000pt;}
.h5{height:83.540625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:72.960000pt;}
.w9{width:75.200000pt;}
.wd{width:103.552000pt;}
.w8{width:104.192000pt;}
.wa{width:106.912000pt;}
.w7{width:108.512000pt;}
.w5{width:133.152000pt;}
.w4{width:135.226667pt;}
.we{width:159.386667pt;}
.w3{width:161.946667pt;}
.wb{width:197.466667pt;}
.wf{width:244.066667pt;}
.wc{width:263.386667pt;}
.w10{width:265.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:48.159988pt;}
.x11{left:61.920000pt;}
.x14{left:71.999988pt;}
.x15{left:96.031988pt;}
.xe{left:114.112000pt;}
.x9{left:161.786667pt;}
.x3{left:181.146667pt;}
.x12{left:222.106667pt;}
.x7{left:231.866655pt;}
.xa{left:235.386667pt;}
.x2{left:279.426655pt;}
.xf{left:312.226667pt;}
.xd{left:314.146655pt;}
.x5{left:343.746667pt;}
.x8{left:396.866655pt;}
.xb{left:449.373333pt;}
.x13{left:466.813333pt;}
.x6{left:479.613333pt;}
.xc{left:525.213333pt;}
.x10{left:576.253333pt;}
}




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