
    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_899ace1680adba0c18ce0b8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_982eeff98b785e83cc1e6fd9.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_1bf011a4983ace8bfd1e2f9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_dd92d852a952a5941ecbdd77.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_27b0ca92ee922c242275a69f.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_2ccff199b2ca6bda2f85a8c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_a6fed5499a2ddda0d5f45198.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_248d2d1d5a574727488ba69d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_5017c51681de73f36ead6cb4.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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:69.120000px;}
.ls12{letter-spacing:-0.413400px;}
.ls9{letter-spacing:-0.348600px;}
.lsa{letter-spacing:-0.205800px;}
.ls11{letter-spacing:-0.177600px;}
.ls3{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls13{letter-spacing:1.080000px;}
.lsf{letter-spacing:2.106720px;}
.lsd{letter-spacing:31.602720px;}
.lse{letter-spacing:31.626720px;}
.ls7{letter-spacing:181.002000px;}
.ls6{letter-spacing:210.942000px;}
.lsb{letter-spacing:236.442000px;}
.lsc{letter-spacing:434.316000px;}
.ls0{letter-spacing:963.120000px;}
.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:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws3{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.762400px;}
.wsd{word-spacing:-14.526600px;}
.ws7{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.299960px;}
.ws6{word-spacing:-13.157160px;}
.ws9{word-spacing:-12.204000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:155.154000px;}
.ws5{word-spacing:157.734000px;}
.wsb{word-spacing:183.354000px;}
._b{margin-left:-3.540000px;}
._7{margin-left:-2.077440px;}
._3{margin-left:-1.015920px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._4{width:3.498960px;}
._9{width:4.721040px;}
._5{width:6.573600px;}
._6{width:7.888320px;}
._d{width:9.740880px;}
._15{width:10.995840px;}
._13{width:12.609360px;}
._14{width:13.698480px;}
._8{width:16.015680px;}
._c{width:17.031600px;}
._a{width:18.346320px;}
._16{width:19.959840px;}
._e{width:21.573360px;}
._12{width:22.589280px;}
._17{width:25.278480px;}
._f{width:26.473680px;}
._1e{width:45.522960px;}
._10{width:59.773440px;}
._18{width:72.911760px;}
._1d{width:125.636880px;}
._1c{width:126.990000px;}
._1a{width:153.780000px;}
._1f{width:182.310480px;}
._19{width:183.600000px;}
._1b{width:209.220000px;}
._11{width:767.850240px;}
._2{width:768.960480px;}
._20{width:849.216000px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y74{bottom:22.575000px;}
.y92{bottom:22.605000px;}
.y67{bottom:22.650000px;}
.y72{bottom:45.000000px;}
.y90{bottom:45.030000px;}
.y65{bottom:45.075000px;}
.y3f{bottom:56.160000px;}
.y6b{bottom:62.565000px;}
.y8a{bottom:62.610000px;}
.y5e{bottom:62.640000px;}
.y95{bottom:92.700000px;}
.y88{bottom:96.120000px;}
.y5f{bottom:97.950000px;}
.y6c{bottom:102.705000px;}
.y8b{bottom:102.750000px;}
.y5c{bottom:105.840000px;}
.y3e{bottom:109.800000px;}
.y87{bottom:113.400000px;}
.y96{bottom:122.835000px;}
.y5b{bottom:123.120000px;}
.yc3{bottom:123.300000px;}
.y3d{bottom:127.080000px;}
.y86{bottom:130.680000px;}
.y69{bottom:130.935000px;}
.y60{bottom:133.305000px;}
.y66{bottom:138.630000px;}
.y5a{bottom:140.400000px;}
.y6d{bottom:142.890000px;}
.y3c{bottom:144.360000px;}
.y76{bottom:145.290000px;}
.y93{bottom:145.335000px;}
.y85{bottom:147.960000px;}
.y97{bottom:152.970000px;}
.y73{bottom:154.770000px;}
.y68{bottom:156.240000px;}
.y59{bottom:157.680000px;}
.y3b{bottom:161.670000px;}
.y84{bottom:165.270000px;}
.y61{bottom:168.660000px;}
.y91{bottom:169.020000px;}
.y9b{bottom:169.050000px;}
.y75{bottom:170.640000px;}
.y9c{bottom:170.670000px;}
.y58{bottom:174.990000px;}
.y3a{bottom:178.950000px;}
.y83{bottom:182.370000px;}
.y6e{bottom:183.030000px;}
.y8c{bottom:183.060000px;}
.y57{bottom:192.270000px;}
.y39{bottom:196.050000px;}
.y82{bottom:199.650000px;}
.y62{bottom:203.970000px;}
.y56{bottom:205.770000px;}
.y6a{bottom:206.100000px;}
.yc2{bottom:209.550000px;}
.y98{bottom:213.195000px;}
.y38{bottom:213.330000px;}
.y81{bottom:216.930000px;}
.y6f{bottom:223.170000px;}
.y8d{bottom:223.200000px;}
.yc1{bottom:226.830000px;}
.y37{bottom:230.610000px;}
.y80{bottom:234.210000px;}
.y63{bottom:239.325000px;}
.y99{bottom:243.285000px;}
.yc0{bottom:243.930000px;}
.y36{bottom:247.890000px;}
.y7f{bottom:251.490000px;}
.ybf{bottom:261.210000px;}
.y70{bottom:263.340000px;}
.y8e{bottom:263.370000px;}
.y35{bottom:265.170000px;}
.y7e{bottom:268.770000px;}
.y9a{bottom:273.420000px;}
.y64{bottom:274.680000px;}
.ybe{bottom:278.490000px;}
.y34{bottom:282.450000px;}
.y7d{bottom:285.870000px;}
.ybd{bottom:295.770000px;}
.y33{bottom:299.550000px;}
.y7c{bottom:303.150000px;}
.y71{bottom:303.480000px;}
.y8f{bottom:303.510000px;}
.ybc{bottom:313.050000px;}
.y32{bottom:316.830000px;}
.y7b{bottom:320.430000px;}
.ybb{bottom:330.330000px;}
.y31{bottom:334.110000px;}
.y7a{bottom:337.710000px;}
.yba{bottom:347.430000px;}
.y30{bottom:351.390000px;}
.y79{bottom:354.990000px;}
.yb9{bottom:364.710000px;}
.y2f{bottom:368.670000px;}
.y94{bottom:368.820000px;}
.yb8{bottom:381.990000px;}
.y2e{bottom:385.950000px;}
.yb7{bottom:399.270000px;}
.y2d{bottom:403.050000px;}
.yb6{bottom:416.595000px;}
.y2c{bottom:420.375000px;}
.yb5{bottom:433.695000px;}
.y2b{bottom:437.655000px;}
.yb4{bottom:450.975000px;}
.y2a{bottom:454.935000px;}
.yb3{bottom:468.255000px;}
.y29{bottom:472.215000px;}
.yb2{bottom:485.535000px;}
.y28{bottom:489.315000px;}
.yb1{bottom:502.815000px;}
.y27{bottom:506.595000px;}
.yb0{bottom:520.095000px;}
.y26{bottom:523.875000px;}
.y55{bottom:533.415000px;}
.yaf{bottom:537.195000px;}
.y25{bottom:541.155000px;}
.y54{bottom:550.695000px;}
.yae{bottom:554.475000px;}
.y24{bottom:558.435000px;}
.y53{bottom:564.375000px;}
.y5d{bottom:566.460000px;}
.yad{bottom:571.755000px;}
.y23{bottom:575.715000px;}
.yac{bottom:589.035000px;}
.y22{bottom:592.815000px;}
.yab{bottom:606.315000px;}
.y21{bottom:609.735000px;}
.yaa{bottom:623.595000px;}
.y20{bottom:627.375000px;}
.ya9{bottom:640.695000px;}
.y1f{bottom:644.655000px;}
.ya8{bottom:658.005000px;}
.y1e{bottom:661.965000px;}
.ya7{bottom:675.285000px;}
.y1d{bottom:679.245000px;}
.ya6{bottom:692.565000px;}
.y1c{bottom:696.345000px;}
.ya5{bottom:709.845000px;}
.y78{bottom:713.445000px;}
.y1b{bottom:713.625000px;}
.ya4{bottom:726.945000px;}
.y77{bottom:727.125000px;}
.y89{bottom:727.380000px;}
.y1a{bottom:730.545000px;}
.ya3{bottom:744.225000px;}
.y19{bottom:748.185000px;}
.ya2{bottom:761.505000px;}
.y18{bottom:765.465000px;}
.ya1{bottom:778.785000px;}
.y17{bottom:782.565000px;}
.ya0{bottom:796.065000px;}
.y16{bottom:799.845000px;}
.y9f{bottom:813.345000px;}
.y15{bottom:817.125000px;}
.y9e{bottom:830.445000px;}
.y14{bottom:834.405000px;}
.y9d{bottom:847.725000px;}
.y13{bottom:851.325000px;}
.y52{bottom:865.005000px;}
.y12{bottom:868.965000px;}
.y51{bottom:882.285000px;}
.y11{bottom:886.065000px;}
.y50{bottom:899.610000px;}
.y10{bottom:903.030000px;}
.y4f{bottom:916.890000px;}
.yf{bottom:920.670000px;}
.y4e{bottom:933.990000px;}
.ye{bottom:937.950000px;}
.y4d{bottom:951.270000px;}
.yd{bottom:954.870000px;}
.y4c{bottom:968.550000px;}
.yc{bottom:972.510000px;}
.y4b{bottom:985.830000px;}
.yb{bottom:989.610000px;}
.y4a{bottom:1003.110000px;}
.ya{bottom:1006.530000px;}
.yc4{bottom:1020.030000px;}
.y49{bottom:1020.390000px;}
.y9{bottom:1024.170000px;}
.y48{bottom:1037.490000px;}
.y8{bottom:1041.450000px;}
.y47{bottom:1054.770000px;}
.y46{bottom:1072.050000px;}
.y7{bottom:1075.650000px;}
.y45{bottom:1089.330000px;}
.y6{bottom:1092.750000px;}
.y44{bottom:1106.610000px;}
.y5{bottom:1110.030000px;}
.y43{bottom:1123.710000px;}
.y4{bottom:1127.310000px;}
.y42{bottom:1141.020000px;}
.y3{bottom:1144.620000px;}
.y41{bottom:1158.300000px;}
.y2{bottom:1164.780000px;}
.y40{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.h8{height:52.998047px;}
.h6{height:53.252930px;}
.hb{height:53.709961px;}
.h5{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.he{height:61.423863px;}
.h3{height:81.949219px;}
.h9{height:127.771172px;}
.ha{height:295.020000px;}
.hc{height:323.820000px;}
.hd{height:324.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:514.440000px;}
.w4{width:540.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:33.195000px;}
.x22{left:41.760000px;}
.x21{left:48.600000px;}
.x20{left:55.440000px;}
.x23{left:71.385000px;}
.x1{left:106.415987px;}
.x2b{left:111.635987px;}
.x29{left:117.215987px;}
.x1d{left:122.795987px;}
.x1b{left:127.655987px;}
.x16{left:136.115987px;}
.x9{left:138.095987px;}
.x12{left:141.515987px;}
.x6{left:144.035987px;}
.x10{left:149.615987px;}
.xc{left:154.289987px;}
.x4{left:158.609987px;}
.x25{left:163.515000px;}
.x27{left:176.400000px;}
.x1f{left:187.560000px;}
.x5{left:233.849987px;}
.x2{left:317.054987px;}
.xa{left:322.094987px;}
.xd{left:363.494987px;}
.x26{left:403.665000px;}
.x2c{left:410.654987px;}
.x2a{left:420.914987px;}
.x1e{left:422.714987px;}
.x28{left:429.150000px;}
.x1a{left:446.474987px;}
.x17{left:457.274987px;}
.x3{left:461.414987px;}
.x18{left:487.004987px;}
.x14{left:537.944987px;}
.x13{left:560.444987px;}
.x11{left:647.924987px;}
.x7{left:678.929987px;}
.xb{left:685.049987px;}
.xf{left:696.749987px;}
.x19{left:705.389987px;}
.x1c{left:716.549987px;}
.x8{left:726.809987px;}
.xe{left:733.469987px;}
.x15{left:786.749987px;}
@media print{
.v3{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:61.440000pt;}
.ls12{letter-spacing:-0.367467pt;}
.ls9{letter-spacing:-0.309867pt;}
.lsa{letter-spacing:-0.182933pt;}
.ls11{letter-spacing:-0.157867pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.872640pt;}
.lsd{letter-spacing:28.091307pt;}
.lse{letter-spacing:28.112640pt;}
.ls7{letter-spacing:160.890667pt;}
.ls6{letter-spacing:187.504000pt;}
.lsb{letter-spacing:210.170667pt;}
.lsc{letter-spacing:386.058667pt;}
.ls0{letter-spacing:856.106667pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws3{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.122133pt;}
.wsd{word-spacing:-12.912533pt;}
.ws7{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.822187pt;}
.ws6{word-spacing:-11.695253pt;}
.ws9{word-spacing:-10.848000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:137.914667pt;}
.ws5{word-spacing:140.208000pt;}
.wsb{word-spacing:162.981333pt;}
._b{margin-left:-3.146667pt;}
._7{margin-left:-1.846613pt;}
._3{margin-left:-0.903040pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._4{width:3.110187pt;}
._9{width:4.196480pt;}
._5{width:5.843200pt;}
._6{width:7.011840pt;}
._d{width:8.658560pt;}
._15{width:9.774080pt;}
._13{width:11.208320pt;}
._14{width:12.176427pt;}
._8{width:14.236160pt;}
._c{width:15.139200pt;}
._a{width:16.307840pt;}
._16{width:17.742080pt;}
._e{width:19.176320pt;}
._12{width:20.079360pt;}
._17{width:22.469760pt;}
._f{width:23.532160pt;}
._1e{width:40.464853pt;}
._10{width:53.131947pt;}
._18{width:64.810453pt;}
._1d{width:111.677227pt;}
._1c{width:112.880000pt;}
._1a{width:136.693333pt;}
._1f{width:162.053760pt;}
._19{width:163.200000pt;}
._1b{width:185.973333pt;}
._11{width:682.533547pt;}
._2{width:683.520427pt;}
._20{width:754.858667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:20.066667pt;}
.y92{bottom:20.093333pt;}
.y67{bottom:20.133333pt;}
.y72{bottom:40.000000pt;}
.y90{bottom:40.026667pt;}
.y65{bottom:40.066667pt;}
.y3f{bottom:49.920000pt;}
.y6b{bottom:55.613333pt;}
.y8a{bottom:55.653333pt;}
.y5e{bottom:55.680000pt;}
.y95{bottom:82.400000pt;}
.y88{bottom:85.440000pt;}
.y5f{bottom:87.066667pt;}
.y6c{bottom:91.293333pt;}
.y8b{bottom:91.333333pt;}
.y5c{bottom:94.080000pt;}
.y3e{bottom:97.600000pt;}
.y87{bottom:100.800000pt;}
.y96{bottom:109.186667pt;}
.y5b{bottom:109.440000pt;}
.yc3{bottom:109.600000pt;}
.y3d{bottom:112.960000pt;}
.y86{bottom:116.160000pt;}
.y69{bottom:116.386667pt;}
.y60{bottom:118.493333pt;}
.y66{bottom:123.226667pt;}
.y5a{bottom:124.800000pt;}
.y6d{bottom:127.013333pt;}
.y3c{bottom:128.320000pt;}
.y76{bottom:129.146667pt;}
.y93{bottom:129.186667pt;}
.y85{bottom:131.520000pt;}
.y97{bottom:135.973333pt;}
.y73{bottom:137.573333pt;}
.y68{bottom:138.880000pt;}
.y59{bottom:140.160000pt;}
.y3b{bottom:143.706667pt;}
.y84{bottom:146.906667pt;}
.y61{bottom:149.920000pt;}
.y91{bottom:150.240000pt;}
.y9b{bottom:150.266667pt;}
.y75{bottom:151.680000pt;}
.y9c{bottom:151.706667pt;}
.y58{bottom:155.546667pt;}
.y3a{bottom:159.066667pt;}
.y83{bottom:162.106667pt;}
.y6e{bottom:162.693333pt;}
.y8c{bottom:162.720000pt;}
.y57{bottom:170.906667pt;}
.y39{bottom:174.266667pt;}
.y82{bottom:177.466667pt;}
.y62{bottom:181.306667pt;}
.y56{bottom:182.906667pt;}
.y6a{bottom:183.200000pt;}
.yc2{bottom:186.266667pt;}
.y98{bottom:189.506667pt;}
.y38{bottom:189.626667pt;}
.y81{bottom:192.826667pt;}
.y6f{bottom:198.373333pt;}
.y8d{bottom:198.400000pt;}
.yc1{bottom:201.626667pt;}
.y37{bottom:204.986667pt;}
.y80{bottom:208.186667pt;}
.y63{bottom:212.733333pt;}
.y99{bottom:216.253333pt;}
.yc0{bottom:216.826667pt;}
.y36{bottom:220.346667pt;}
.y7f{bottom:223.546667pt;}
.ybf{bottom:232.186667pt;}
.y70{bottom:234.080000pt;}
.y8e{bottom:234.106667pt;}
.y35{bottom:235.706667pt;}
.y7e{bottom:238.906667pt;}
.y9a{bottom:243.040000pt;}
.y64{bottom:244.160000pt;}
.ybe{bottom:247.546667pt;}
.y34{bottom:251.066667pt;}
.y7d{bottom:254.106667pt;}
.ybd{bottom:262.906667pt;}
.y33{bottom:266.266667pt;}
.y7c{bottom:269.466667pt;}
.y71{bottom:269.760000pt;}
.y8f{bottom:269.786667pt;}
.ybc{bottom:278.266667pt;}
.y32{bottom:281.626667pt;}
.y7b{bottom:284.826667pt;}
.ybb{bottom:293.626667pt;}
.y31{bottom:296.986667pt;}
.y7a{bottom:300.186667pt;}
.yba{bottom:308.826667pt;}
.y30{bottom:312.346667pt;}
.y79{bottom:315.546667pt;}
.yb9{bottom:324.186667pt;}
.y2f{bottom:327.706667pt;}
.y94{bottom:327.840000pt;}
.yb8{bottom:339.546667pt;}
.y2e{bottom:343.066667pt;}
.yb7{bottom:354.906667pt;}
.y2d{bottom:358.266667pt;}
.yb6{bottom:370.306667pt;}
.y2c{bottom:373.666667pt;}
.yb5{bottom:385.506667pt;}
.y2b{bottom:389.026667pt;}
.yb4{bottom:400.866667pt;}
.y2a{bottom:404.386667pt;}
.yb3{bottom:416.226667pt;}
.y29{bottom:419.746667pt;}
.yb2{bottom:431.586667pt;}
.y28{bottom:434.946667pt;}
.yb1{bottom:446.946667pt;}
.y27{bottom:450.306667pt;}
.yb0{bottom:462.306667pt;}
.y26{bottom:465.666667pt;}
.y55{bottom:474.146667pt;}
.yaf{bottom:477.506667pt;}
.y25{bottom:481.026667pt;}
.y54{bottom:489.506667pt;}
.yae{bottom:492.866667pt;}
.y24{bottom:496.386667pt;}
.y53{bottom:501.666667pt;}
.y5d{bottom:503.520000pt;}
.yad{bottom:508.226667pt;}
.y23{bottom:511.746667pt;}
.yac{bottom:523.586667pt;}
.y22{bottom:526.946667pt;}
.yab{bottom:538.946667pt;}
.y21{bottom:541.986667pt;}
.yaa{bottom:554.306667pt;}
.y20{bottom:557.666667pt;}
.ya9{bottom:569.506667pt;}
.y1f{bottom:573.026667pt;}
.ya8{bottom:584.893333pt;}
.y1e{bottom:588.413333pt;}
.ya7{bottom:600.253333pt;}
.y1d{bottom:603.773333pt;}
.ya6{bottom:615.613333pt;}
.y1c{bottom:618.973333pt;}
.ya5{bottom:630.973333pt;}
.y78{bottom:634.173333pt;}
.y1b{bottom:634.333333pt;}
.ya4{bottom:646.173333pt;}
.y77{bottom:646.333333pt;}
.y89{bottom:646.560000pt;}
.y1a{bottom:649.373333pt;}
.ya3{bottom:661.533333pt;}
.y19{bottom:665.053333pt;}
.ya2{bottom:676.893333pt;}
.y18{bottom:680.413333pt;}
.ya1{bottom:692.253333pt;}
.y17{bottom:695.613333pt;}
.ya0{bottom:707.613333pt;}
.y16{bottom:710.973333pt;}
.y9f{bottom:722.973333pt;}
.y15{bottom:726.333333pt;}
.y9e{bottom:738.173333pt;}
.y14{bottom:741.693333pt;}
.y9d{bottom:753.533333pt;}
.y13{bottom:756.733333pt;}
.y52{bottom:768.893333pt;}
.y12{bottom:772.413333pt;}
.y51{bottom:784.253333pt;}
.y11{bottom:787.613333pt;}
.y50{bottom:799.653333pt;}
.y10{bottom:802.693333pt;}
.y4f{bottom:815.013333pt;}
.yf{bottom:818.373333pt;}
.y4e{bottom:830.213333pt;}
.ye{bottom:833.733333pt;}
.y4d{bottom:845.573333pt;}
.yd{bottom:848.773333pt;}
.y4c{bottom:860.933333pt;}
.yc{bottom:864.453333pt;}
.y4b{bottom:876.293333pt;}
.yb{bottom:879.653333pt;}
.y4a{bottom:891.653333pt;}
.ya{bottom:894.693333pt;}
.yc4{bottom:906.693333pt;}
.y49{bottom:907.013333pt;}
.y9{bottom:910.373333pt;}
.y48{bottom:922.213333pt;}
.y8{bottom:925.733333pt;}
.y47{bottom:937.573333pt;}
.y46{bottom:952.933333pt;}
.y7{bottom:956.133333pt;}
.y45{bottom:968.293333pt;}
.y6{bottom:971.333333pt;}
.y44{bottom:983.653333pt;}
.y5{bottom:986.693333pt;}
.y43{bottom:998.853333pt;}
.y4{bottom:1002.053333pt;}
.y42{bottom:1014.240000pt;}
.y3{bottom:1017.440000pt;}
.y41{bottom:1029.600000pt;}
.y2{bottom:1035.360000pt;}
.y40{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.h8{height:47.109375pt;}
.h6{height:47.335938pt;}
.hb{height:47.742188pt;}
.h5{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.he{height:54.598989pt;}
.h3{height:72.843750pt;}
.h9{height:113.574375pt;}
.ha{height:262.240000pt;}
.hc{height:287.840000pt;}
.hd{height:288.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:457.280000pt;}
.w4{width:480.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:29.506667pt;}
.x22{left:37.120000pt;}
.x21{left:43.200000pt;}
.x20{left:49.280000pt;}
.x23{left:63.453333pt;}
.x1{left:94.591988pt;}
.x2b{left:99.231988pt;}
.x29{left:104.191988pt;}
.x1d{left:109.151988pt;}
.x1b{left:113.471988pt;}
.x16{left:120.991988pt;}
.x9{left:122.751988pt;}
.x12{left:125.791988pt;}
.x6{left:128.031988pt;}
.x10{left:132.991988pt;}
.xc{left:137.146655pt;}
.x4{left:140.986655pt;}
.x25{left:145.346667pt;}
.x27{left:156.800000pt;}
.x1f{left:166.720000pt;}
.x5{left:207.866655pt;}
.x2{left:281.826655pt;}
.xa{left:286.306655pt;}
.xd{left:323.106655pt;}
.x26{left:358.813333pt;}
.x2c{left:365.026655pt;}
.x2a{left:374.146655pt;}
.x1e{left:375.746655pt;}
.x28{left:381.466667pt;}
.x1a{left:396.866655pt;}
.x17{left:406.466655pt;}
.x3{left:410.146655pt;}
.x18{left:432.893322pt;}
.x14{left:478.173322pt;}
.x13{left:498.173322pt;}
.x11{left:575.933322pt;}
.x7{left:603.493322pt;}
.xb{left:608.933322pt;}
.xf{left:619.333322pt;}
.x19{left:627.013322pt;}
.x1c{left:636.933322pt;}
.x8{left:646.053322pt;}
.xe{left:651.973322pt;}
.x15{left:699.333322pt;}
}




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