
    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_48708008dba465841cabb802.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_4870612fd49dd2025858d793.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_98973ed3477463cf83d6e9fb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_417a117e7fb29d0f5944307c.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_1272035ac424cf7b83b3d386.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_652b88708661a6031e8c7b2a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1150b2ddfcd785083b9609dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lse{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.440000px;}
.ls7{letter-spacing:5.040000px;}
.ls8{letter-spacing:5.760000px;}
.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;}
}
.wsb{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-4.536000px;}
._2{margin-left:-3.528000px;}
._4{margin-left:-2.448000px;}
._0{margin-left:-1.092000px;}
._1{width:1.224000px;}
._3{width:2.664000px;}
._7{width:4.032000px;}
._8{width:5.184000px;}
._c{width:6.396000px;}
._a{width:7.560000px;}
._9{width:8.640000px;}
._b{width:10.008000px;}
._d{width:11.472000px;}
._15{width:12.912000px;}
._f{width:14.832000px;}
._13{width:15.840000px;}
._14{width:16.908000px;}
._16{width:22.104000px;}
._5{width:23.832000px;}
._6{width:25.836000px;}
._10{width:89.026560px;}
._12{width:90.356640px;}
._11{width:91.411200px;}
.fc6{color:rgb(135,206,235);}
.fc5{color:rgb(198,40,40);}
.fc4{color:rgb(167,123,138);}
.fc1{color:rgb(14,40,65);}
.fc3{color:rgb(211,211,211);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.960000px;}
.ya2{bottom:14.400000px;}
.ya8{bottom:17.640000px;}
.y7b{bottom:17.820000px;}
.y7e{bottom:22.680000px;}
.y93{bottom:24.654000px;}
.y70{bottom:24.660000px;}
.ya6{bottom:25.560000px;}
.y7a{bottom:33.480000px;}
.yd0{bottom:34.380000px;}
.ya1{bottom:35.100000px;}
.y7d{bottom:38.340000px;}
.ya5{bottom:41.400000px;}
.y77{bottom:44.640000px;}
.y79{bottom:46.080000px;}
.yd4{bottom:48.960000px;}
.ycf{bottom:50.040000px;}
.y7c{bottom:50.940000px;}
.ya0{bottom:55.080000px;}
.ya7{bottom:56.340000px;}
.ya4{bottom:64.260000px;}
.yd3{bottom:64.440000px;}
.yce{bottom:65.700000px;}
.yd2{bottom:80.100000px;}
.ycd{bottom:81.180000px;}
.y23{bottom:88.236000px;}
.y81{bottom:89.496000px;}
.y22{bottom:93.456000px;}
.y51{bottom:93.996000px;}
.y62{bottom:96.336000px;}
.ye8{bottom:104.256000px;}
.y21{bottom:106.056000px;}
.y94{bottom:113.616000px;}
.yaf{bottom:114.876000px;}
.y80{bottom:120.456000px;}
.yd1{bottom:121.005000px;}
.ycc{bottom:122.085000px;}
.y102{bottom:122.256000px;}
.y50{bottom:124.956000px;}
.y61{bottom:130.716000px;}
.ye7{bottom:135.216000px;}
.y40{bottom:136.296000px;}
.y20{bottom:137.376000px;}
.y92{bottom:145.116000px;}
.yae{bottom:146.016000px;}
.y4f{bottom:155.910000px;}
.y101{bottom:156.630000px;}
.y7f{bottom:163.470000px;}
.ye6{bottom:166.350000px;}
.y3f{bottom:167.430000px;}
.y1f{bottom:168.510000px;}
.y60{bottom:173.730000px;}
.yad{bottom:176.970000px;}
.y78{bottom:180.210000px;}
.y91{bottom:187.230000px;}
.y100{bottom:190.830000px;}
.y4e{bottom:191.010000px;}
.y3e{bottom:198.390000px;}
.y1e{bottom:199.470000px;}
.y5f{bottom:204.870000px;}
.yac{bottom:208.110000px;}
.y90{bottom:208.650000px;}
.ye5{bottom:209.370000px;}
.yca{bottom:210.630000px;}
.y4d{bottom:212.970000px;}
.yff{bottom:225.210000px;}
.y3d{bottom:229.350000px;}
.y8f{bottom:230.070000px;}
.y1d{bottom:230.610000px;}
.y4c{bottom:234.750000px;}
.y5e{bottom:235.830000px;}
.yab{bottom:239.070000px;}
.ye4{bottom:240.330000px;}
.yc9{bottom:241.590000px;}
.y4b{bottom:256.530000px;}
.yfe{bottom:259.590000px;}
.y3c{bottom:260.490000px;}
.y5d{bottom:266.970000px;}
.yaa{bottom:270.210000px;}
.ye3{bottom:271.470000px;}
.yc8{bottom:272.730000px;}
.y1c{bottom:273.630000px;}
.y8e{bottom:277.950000px;}
.y4a{bottom:278.310000px;}
.yfd{bottom:294.015000px;}
.y5c{bottom:297.975000px;}
.y49{bottom:300.135000px;}
.ye2{bottom:302.475000px;}
.y3b{bottom:303.555000px;}
.yc7{bottom:303.735000px;}
.y8d{bottom:308.955000px;}
.ya9{bottom:313.275000px;}
.y1b{bottom:316.695000px;}
.yfc{bottom:328.215000px;}
.y5b{bottom:329.115000px;}
.ya3{bottom:330.015000px;}
.ye1{bottom:333.615000px;}
.y3a{bottom:334.695000px;}
.yc6{bottom:334.875000px;}
.y48{bottom:342.075000px;}
.y8c{bottom:351.975000px;}
.y19{bottom:359.715000px;}
.yfb{bottom:362.595000px;}
.ye0{bottom:364.575000px;}
.y39{bottom:365.655000px;}
.y1a{bottom:366.555000px;}
.y5a{bottom:372.135000px;}
.y47{bottom:373.035000px;}
.yc5{bottom:377.895000px;}
.y8b{bottom:383.115000px;}
.y18{bottom:390.855000px;}
.ydf{bottom:395.715000px;}
.y38{bottom:396.795000px;}
.yfa{bottom:396.975000px;}
.y59{bottom:403.095000px;}
.y46{bottom:404.175000px;}
.yc4{bottom:409.035000px;}
.y8a{bottom:414.075000px;}
.y17{bottom:421.815000px;}
.yde{bottom:426.675000px;}
.y37{bottom:427.755000px;}
.yf9{bottom:431.355000px;}
.y58{bottom:434.235000px;}
.y45{bottom:435.135000px;}
.yc3{bottom:439.995000px;}
.y89{bottom:445.215000px;}
.y16{bottom:452.955000px;}
.ydd{bottom:457.815000px;}
.y36{bottom:458.895000px;}
.y57{bottom:465.195000px;}
.yf8{bottom:465.735000px;}
.y44{bottom:466.275000px;}
.yc2{bottom:471.135000px;}
.y88{bottom:476.175000px;}
.y15{bottom:483.915000px;}
.y35{bottom:489.855000px;}
.y76{bottom:492.555000px;}
.yf7{bottom:499.935000px;}
.ydc{bottom:500.835000px;}
.yc1{bottom:502.095000px;}
.y56{bottom:508.215000px;}
.y43{bottom:509.295000px;}
.y87{bottom:510.555000px;}
.y14{bottom:515.055000px;}
.y34{bottom:520.995000px;}
.ydb{bottom:531.795000px;}
.y86{bottom:532.875000px;}
.yc0{bottom:533.055000px;}
.y55{bottom:542.775000px;}
.yf6{bottom:542.955000px;}
.y42{bottom:544.215000px;}
.y13{bottom:546.015000px;}
.y33{bottom:551.955000px;}
.yda{bottom:562.935000px;}
.ybf{bottom:564.195000px;}
.yf5{bottom:574.125000px;}
.y85{bottom:575.925000px;}
.y12{bottom:577.005000px;}
.y75{bottom:577.545000px;}
.y54{bottom:577.905000px;}
.y41{bottom:580.605000px;}
.yd9{bottom:593.925000px;}
.y32{bottom:595.005000px;}
.ybe{bottom:595.185000px;}
.yf4{bottom:605.085000px;}
.y11{bottom:608.145000px;}
.y74{bottom:608.685000px;}
.y84{bottom:618.945000px;}
.yd8{bottom:625.065000px;}
.ybd{bottom:629.565000px;}
.yf3{bottom:636.225000px;}
.y31{bottom:638.025000px;}
.y10{bottom:639.105000px;}
.y73{bottom:639.645000px;}
.y9f{bottom:647.385000px;}
.y83{bottom:650.085000px;}
.yd7{bottom:656.025000px;}
.ybc{bottom:664.125000px;}
.yf2{bottom:667.185000px;}
.yf{bottom:670.245000px;}
.y10d{bottom:679.965000px;}
.y30{bottom:681.045000px;}
.y72{bottom:682.665000px;}
.yd6{bottom:690.405000px;}
.ybb{bottom:695.625000px;}
.yf1{bottom:698.325000px;}
.y2f{bottom:712.185000px;}
.ye{bottom:713.265000px;}
.yba{bottom:717.045000px;}
.y71{bottom:717.225000px;}
.y10c{bottom:722.985000px;}
.yf0{bottom:729.285000px;}
.yd5{bottom:733.425000px;}
.yb9{bottom:738.465000px;}
.y9e{bottom:742.605000px;}
.y2e{bottom:743.145000px;}
.yd{bottom:744.405000px;}
.y6f{bottom:748.725000px;}
.ycb{bottom:750.165000px;}
.y10b{bottom:753.945000px;}
.yef{bottom:760.425000px;}
.y9d{bottom:773.745000px;}
.y2d{bottom:774.285000px;}
.yc{bottom:775.365000px;}
.yb8{bottom:786.345000px;}
.y6e{bottom:790.845000px;}
.yee{bottom:791.385000px;}
.y10a{bottom:797.145000px;}
.y9c{bottom:804.705000px;}
.y2c{bottom:805.245000px;}
.yb{bottom:806.505000px;}
.y6d{bottom:812.265000px;}
.yb7{bottom:817.305000px;}
.yed{bottom:822.525000px;}
.y109{bottom:828.105000px;}
.y6b{bottom:833.865000px;}
.y9b{bottom:835.845000px;}
.y2b{bottom:836.385000px;}
.ya{bottom:837.465000px;}
.yb6{bottom:848.490000px;}
.yec{bottom:853.530000px;}
.y108{bottom:859.290000px;}
.y2a{bottom:867.390000px;}
.y9{bottom:868.650000px;}
.y9a{bottom:878.910000px;}
.yb5{bottom:879.450000px;}
.y6a{bottom:881.610000px;}
.yeb{bottom:884.670000px;}
.y29{bottom:898.530000px;}
.y107{bottom:902.310000px;}
.y8{bottom:911.670000px;}
.y69{bottom:912.570000px;}
.y99{bottom:913.470000px;}
.yb4{bottom:922.470000px;}
.yea{bottom:926.430000px;}
.y53{bottom:929.490000px;}
.y28{bottom:941.550000px;}
.y68{bottom:943.710000px;}
.y98{bottom:944.970000px;}
.y106{bottom:945.330000px;}
.yb3{bottom:953.610000px;}
.y7{bottom:954.690000px;}
.ye9{bottom:954.870000px;}
.y27{bottom:972.510000px;}
.y6{bottom:979.530000px;}
.yb2{bottom:984.570000px;}
.y67{bottom:986.730000px;}
.y97{bottom:987.090000px;}
.y105{bottom:988.350000px;}
.y26{bottom:1003.650000px;}
.y5{bottom:1007.250000px;}
.y96{bottom:1008.510000px;}
.yb1{bottom:1015.710000px;}
.y66{bottom:1017.690000px;}
.y104{bottom:1019.490000px;}
.y95{bottom:1029.930000px;}
.y25{bottom:1034.610000px;}
.y4{bottom:1035.150000px;}
.yb0{bottom:1046.670000px;}
.y65{bottom:1048.830000px;}
.y103{bottom:1062.510000px;}
.y3{bottom:1062.870000px;}
.y24{bottom:1065.750000px;}
.y82{bottom:1077.810000px;}
.y64{bottom:1083.210000px;}
.y52{bottom:1096.710000px;}
.y63{bottom:1105.530000px;}
.y2{bottom:1108.770000px;}
.y1{bottom:1139.940000px;}
.hf{height:20.700000px;}
.he{height:20.736000px;}
.h8{height:38.158594px;}
.h10{height:41.400000px;}
.h7{height:47.344922px;}
.hd{height:52.066406px;}
.hc{height:52.971680px;}
.ha{height:58.621992px;}
.h9{height:58.651172px;}
.h11{height:58.680000px;}
.h12{height:60.226875px;}
.hb{height:65.010937px;}
.h14{height:68.940000px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:74.704922px;}
.h4{height:82.676953px;}
.h3{height:84.898125px;}
.h13{height:312.330000px;}
.h15{height:317.370000px;}
.h16{height:406.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:146.700000px;}
.w5{width:146.736000px;}
.wa{width:148.140000px;}
.w9{width:148.176000px;}
.w7{width:157.530000px;}
.wb{width:158.250000px;}
.w4{width:263.955000px;}
.w8{width:264.675000px;}
.w12{width:348.195000px;}
.wf{width:355.935000px;}
.wd{width:361.155000px;}
.w10{width:367.095000px;}
.w11{width:374.115000px;}
.wc{width:722.310000px;}
.we{width:723.030000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.776000px;}
.x26{left:10.980000px;}
.x1e{left:16.020000px;}
.x2f{left:18.750000px;}
.x2d{left:20.736000px;}
.x13{left:28.260000px;}
.x16{left:33.345000px;}
.x2b{left:35.820000px;}
.x28{left:37.260000px;}
.x2a{left:40.320000px;}
.x2c{left:42.345000px;}
.x29{left:45.405000px;}
.x1f{left:50.760000px;}
.x21{left:53.100000px;}
.x20{left:55.845000px;}
.x22{left:58.185000px;}
.x1a{left:60.480000px;}
.x17{left:64.980000px;}
.x18{left:70.065000px;}
.x19{left:73.980000px;}
.x1b{left:79.065000px;}
.x1{left:85.499987px;}
.xb{left:89.855987px;}
.x24{left:93.990000px;}
.x27{left:111.630000px;}
.x3{left:113.615987px;}
.x8{left:138.995973px;}
.x9{left:145.115987px;}
.x4{left:163.469987px;}
.x30{left:293.114987px;}
.x5{left:299.414987px;}
.xa{left:301.034987px;}
.x1c{left:336.855000px;}
.x1d{left:340.275000px;}
.x23{left:347.835000px;}
.x12{left:351.975000px;}
.xf{left:358.274987px;}
.x10{left:362.954987px;}
.xd{left:365.654987px;}
.x31{left:386.174987px;}
.x7{left:387.614987px;}
.x2{left:391.214987px;}
.x25{left:440.895000px;}
.x6{left:446.474987px;}
.x2e{left:459.075000px;}
.x14{left:500.865000px;}
.xc{left:632.084987px;}
.x15{left:649.725000px;}
.xe{left:808.349987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.280000pt;}
.ls7{letter-spacing:4.480000pt;}
.ls8{letter-spacing:5.120000pt;}
.wsb{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-4.032000pt;}
._2{margin-left:-3.136000pt;}
._4{margin-left:-2.176000pt;}
._0{margin-left:-0.970667pt;}
._1{width:1.088000pt;}
._3{width:2.368000pt;}
._7{width:3.584000pt;}
._8{width:4.608000pt;}
._c{width:5.685333pt;}
._a{width:6.720000pt;}
._9{width:7.680000pt;}
._b{width:8.896000pt;}
._d{width:10.197333pt;}
._15{width:11.477333pt;}
._f{width:13.184000pt;}
._13{width:14.080000pt;}
._14{width:15.029333pt;}
._16{width:19.648000pt;}
._5{width:21.184000pt;}
._6{width:22.965333pt;}
._10{width:79.134720pt;}
._12{width:80.317013pt;}
._11{width:81.254400pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:3.520000pt;}
.ya2{bottom:12.800000pt;}
.ya8{bottom:15.680000pt;}
.y7b{bottom:15.840000pt;}
.y7e{bottom:20.160000pt;}
.y93{bottom:21.914667pt;}
.y70{bottom:21.920000pt;}
.ya6{bottom:22.720000pt;}
.y7a{bottom:29.760000pt;}
.yd0{bottom:30.560000pt;}
.ya1{bottom:31.200000pt;}
.y7d{bottom:34.080000pt;}
.ya5{bottom:36.800000pt;}
.y77{bottom:39.680000pt;}
.y79{bottom:40.960000pt;}
.yd4{bottom:43.520000pt;}
.ycf{bottom:44.480000pt;}
.y7c{bottom:45.280000pt;}
.ya0{bottom:48.960000pt;}
.ya7{bottom:50.080000pt;}
.ya4{bottom:57.120000pt;}
.yd3{bottom:57.280000pt;}
.yce{bottom:58.400000pt;}
.yd2{bottom:71.200000pt;}
.ycd{bottom:72.160000pt;}
.y23{bottom:78.432000pt;}
.y81{bottom:79.552000pt;}
.y22{bottom:83.072000pt;}
.y51{bottom:83.552000pt;}
.y62{bottom:85.632000pt;}
.ye8{bottom:92.672000pt;}
.y21{bottom:94.272000pt;}
.y94{bottom:100.992000pt;}
.yaf{bottom:102.112000pt;}
.y80{bottom:107.072000pt;}
.yd1{bottom:107.560000pt;}
.ycc{bottom:108.520000pt;}
.y102{bottom:108.672000pt;}
.y50{bottom:111.072000pt;}
.y61{bottom:116.192000pt;}
.ye7{bottom:120.192000pt;}
.y40{bottom:121.152000pt;}
.y20{bottom:122.112000pt;}
.y92{bottom:128.992000pt;}
.yae{bottom:129.792000pt;}
.y4f{bottom:138.586667pt;}
.y101{bottom:139.226667pt;}
.y7f{bottom:145.306667pt;}
.ye6{bottom:147.866667pt;}
.y3f{bottom:148.826667pt;}
.y1f{bottom:149.786667pt;}
.y60{bottom:154.426667pt;}
.yad{bottom:157.306667pt;}
.y78{bottom:160.186667pt;}
.y91{bottom:166.426667pt;}
.y100{bottom:169.626667pt;}
.y4e{bottom:169.786667pt;}
.y3e{bottom:176.346667pt;}
.y1e{bottom:177.306667pt;}
.y5f{bottom:182.106667pt;}
.yac{bottom:184.986667pt;}
.y90{bottom:185.466667pt;}
.ye5{bottom:186.106667pt;}
.yca{bottom:187.226667pt;}
.y4d{bottom:189.306667pt;}
.yff{bottom:200.186667pt;}
.y3d{bottom:203.866667pt;}
.y8f{bottom:204.506667pt;}
.y1d{bottom:204.986667pt;}
.y4c{bottom:208.666667pt;}
.y5e{bottom:209.626667pt;}
.yab{bottom:212.506667pt;}
.ye4{bottom:213.626667pt;}
.yc9{bottom:214.746667pt;}
.y4b{bottom:228.026667pt;}
.yfe{bottom:230.746667pt;}
.y3c{bottom:231.546667pt;}
.y5d{bottom:237.306667pt;}
.yaa{bottom:240.186667pt;}
.ye3{bottom:241.306667pt;}
.yc8{bottom:242.426667pt;}
.y1c{bottom:243.226667pt;}
.y8e{bottom:247.066667pt;}
.y4a{bottom:247.386667pt;}
.yfd{bottom:261.346667pt;}
.y5c{bottom:264.866667pt;}
.y49{bottom:266.786667pt;}
.ye2{bottom:268.866667pt;}
.y3b{bottom:269.826667pt;}
.yc7{bottom:269.986667pt;}
.y8d{bottom:274.626667pt;}
.ya9{bottom:278.466667pt;}
.y1b{bottom:281.506667pt;}
.yfc{bottom:291.746667pt;}
.y5b{bottom:292.546667pt;}
.ya3{bottom:293.346667pt;}
.ye1{bottom:296.546667pt;}
.y3a{bottom:297.506667pt;}
.yc6{bottom:297.666667pt;}
.y48{bottom:304.066667pt;}
.y8c{bottom:312.866667pt;}
.y19{bottom:319.746667pt;}
.yfb{bottom:322.306667pt;}
.ye0{bottom:324.066667pt;}
.y39{bottom:325.026667pt;}
.y1a{bottom:325.826667pt;}
.y5a{bottom:330.786667pt;}
.y47{bottom:331.586667pt;}
.yc5{bottom:335.906667pt;}
.y8b{bottom:340.546667pt;}
.y18{bottom:347.426667pt;}
.ydf{bottom:351.746667pt;}
.y38{bottom:352.706667pt;}
.yfa{bottom:352.866667pt;}
.y59{bottom:358.306667pt;}
.y46{bottom:359.266667pt;}
.yc4{bottom:363.586667pt;}
.y8a{bottom:368.066667pt;}
.y17{bottom:374.946667pt;}
.yde{bottom:379.266667pt;}
.y37{bottom:380.226667pt;}
.yf9{bottom:383.426667pt;}
.y58{bottom:385.986667pt;}
.y45{bottom:386.786667pt;}
.yc3{bottom:391.106667pt;}
.y89{bottom:395.746667pt;}
.y16{bottom:402.626667pt;}
.ydd{bottom:406.946667pt;}
.y36{bottom:407.906667pt;}
.y57{bottom:413.506667pt;}
.yf8{bottom:413.986667pt;}
.y44{bottom:414.466667pt;}
.yc2{bottom:418.786667pt;}
.y88{bottom:423.266667pt;}
.y15{bottom:430.146667pt;}
.y35{bottom:435.426667pt;}
.y76{bottom:437.826667pt;}
.yf7{bottom:444.386667pt;}
.ydc{bottom:445.186667pt;}
.yc1{bottom:446.306667pt;}
.y56{bottom:451.746667pt;}
.y43{bottom:452.706667pt;}
.y87{bottom:453.826667pt;}
.y14{bottom:457.826667pt;}
.y34{bottom:463.106667pt;}
.ydb{bottom:472.706667pt;}
.y86{bottom:473.666667pt;}
.yc0{bottom:473.826667pt;}
.y55{bottom:482.466667pt;}
.yf6{bottom:482.626667pt;}
.y42{bottom:483.746667pt;}
.y13{bottom:485.346667pt;}
.y33{bottom:490.626667pt;}
.yda{bottom:500.386667pt;}
.ybf{bottom:501.506667pt;}
.yf5{bottom:510.333333pt;}
.y85{bottom:511.933333pt;}
.y12{bottom:512.893333pt;}
.y75{bottom:513.373333pt;}
.y54{bottom:513.693333pt;}
.y41{bottom:516.093333pt;}
.yd9{bottom:527.933333pt;}
.y32{bottom:528.893333pt;}
.ybe{bottom:529.053333pt;}
.yf4{bottom:537.853333pt;}
.y11{bottom:540.573333pt;}
.y74{bottom:541.053333pt;}
.y84{bottom:550.173333pt;}
.yd8{bottom:555.613333pt;}
.ybd{bottom:559.613333pt;}
.yf3{bottom:565.533333pt;}
.y31{bottom:567.133333pt;}
.y10{bottom:568.093333pt;}
.y73{bottom:568.573333pt;}
.y9f{bottom:575.453333pt;}
.y83{bottom:577.853333pt;}
.yd7{bottom:583.133333pt;}
.ybc{bottom:590.333333pt;}
.yf2{bottom:593.053333pt;}
.yf{bottom:595.773333pt;}
.y10d{bottom:604.413333pt;}
.y30{bottom:605.373333pt;}
.y72{bottom:606.813333pt;}
.yd6{bottom:613.693333pt;}
.ybb{bottom:618.333333pt;}
.yf1{bottom:620.733333pt;}
.y2f{bottom:633.053333pt;}
.ye{bottom:634.013333pt;}
.yba{bottom:637.373333pt;}
.y71{bottom:637.533333pt;}
.y10c{bottom:642.653333pt;}
.yf0{bottom:648.253333pt;}
.yd5{bottom:651.933333pt;}
.yb9{bottom:656.413333pt;}
.y9e{bottom:660.093333pt;}
.y2e{bottom:660.573333pt;}
.yd{bottom:661.693333pt;}
.y6f{bottom:665.533333pt;}
.ycb{bottom:666.813333pt;}
.y10b{bottom:670.173333pt;}
.yef{bottom:675.933333pt;}
.y9d{bottom:687.773333pt;}
.y2d{bottom:688.253333pt;}
.yc{bottom:689.213333pt;}
.yb8{bottom:698.973333pt;}
.y6e{bottom:702.973333pt;}
.yee{bottom:703.453333pt;}
.y10a{bottom:708.573333pt;}
.y9c{bottom:715.293333pt;}
.y2c{bottom:715.773333pt;}
.yb{bottom:716.893333pt;}
.y6d{bottom:722.013333pt;}
.yb7{bottom:726.493333pt;}
.yed{bottom:731.133333pt;}
.y109{bottom:736.093333pt;}
.y6b{bottom:741.213333pt;}
.y9b{bottom:742.973333pt;}
.y2b{bottom:743.453333pt;}
.ya{bottom:744.413333pt;}
.yb6{bottom:754.213333pt;}
.yec{bottom:758.693333pt;}
.y108{bottom:763.813333pt;}
.y2a{bottom:771.013333pt;}
.y9{bottom:772.133333pt;}
.y9a{bottom:781.253333pt;}
.yb5{bottom:781.733333pt;}
.y6a{bottom:783.653333pt;}
.yeb{bottom:786.373333pt;}
.y29{bottom:798.693333pt;}
.y107{bottom:802.053333pt;}
.y8{bottom:810.373333pt;}
.y69{bottom:811.173333pt;}
.y99{bottom:811.973333pt;}
.yb4{bottom:819.973333pt;}
.yea{bottom:823.493333pt;}
.y53{bottom:826.213333pt;}
.y28{bottom:836.933333pt;}
.y68{bottom:838.853333pt;}
.y98{bottom:839.973333pt;}
.y106{bottom:840.293333pt;}
.yb3{bottom:847.653333pt;}
.y7{bottom:848.613333pt;}
.ye9{bottom:848.773333pt;}
.y27{bottom:864.453333pt;}
.y6{bottom:870.693333pt;}
.yb2{bottom:875.173333pt;}
.y67{bottom:877.093333pt;}
.y97{bottom:877.413333pt;}
.y105{bottom:878.533333pt;}
.y26{bottom:892.133333pt;}
.y5{bottom:895.333333pt;}
.y96{bottom:896.453333pt;}
.yb1{bottom:902.853333pt;}
.y66{bottom:904.613333pt;}
.y104{bottom:906.213333pt;}
.y95{bottom:915.493333pt;}
.y25{bottom:919.653333pt;}
.y4{bottom:920.133333pt;}
.yb0{bottom:930.373333pt;}
.y65{bottom:932.293333pt;}
.y103{bottom:944.453333pt;}
.y3{bottom:944.773333pt;}
.y24{bottom:947.333333pt;}
.y82{bottom:958.053333pt;}
.y64{bottom:962.853333pt;}
.y52{bottom:974.853333pt;}
.y63{bottom:982.693333pt;}
.y2{bottom:985.573333pt;}
.y1{bottom:1013.280000pt;}
.hf{height:18.400000pt;}
.he{height:18.432000pt;}
.h8{height:33.918750pt;}
.h10{height:36.800000pt;}
.h7{height:42.084375pt;}
.hd{height:46.281250pt;}
.hc{height:47.085938pt;}
.ha{height:52.108438pt;}
.h9{height:52.134375pt;}
.h11{height:52.160000pt;}
.h12{height:53.535000pt;}
.hb{height:57.787500pt;}
.h14{height:61.280000pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:66.404375pt;}
.h4{height:73.490625pt;}
.h3{height:75.465000pt;}
.h13{height:277.626667pt;}
.h15{height:282.106667pt;}
.h16{height:361.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:130.400000pt;}
.w5{width:130.432000pt;}
.wa{width:131.680000pt;}
.w9{width:131.712000pt;}
.w7{width:140.026667pt;}
.wb{width:140.666667pt;}
.w4{width:234.626667pt;}
.w8{width:235.266667pt;}
.w12{width:309.506667pt;}
.wf{width:316.386667pt;}
.wd{width:321.026667pt;}
.w10{width:326.306667pt;}
.w11{width:332.546667pt;}
.wc{width:642.053333pt;}
.we{width:642.693333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.912000pt;}
.x26{left:9.760000pt;}
.x1e{left:14.240000pt;}
.x2f{left:16.666667pt;}
.x2d{left:18.432000pt;}
.x13{left:25.120000pt;}
.x16{left:29.640000pt;}
.x2b{left:31.840000pt;}
.x28{left:33.120000pt;}
.x2a{left:35.840000pt;}
.x2c{left:37.640000pt;}
.x29{left:40.360000pt;}
.x1f{left:45.120000pt;}
.x21{left:47.200000pt;}
.x20{left:49.640000pt;}
.x22{left:51.720000pt;}
.x1a{left:53.760000pt;}
.x17{left:57.760000pt;}
.x18{left:62.280000pt;}
.x19{left:65.760000pt;}
.x1b{left:70.280000pt;}
.x1{left:75.999988pt;}
.xb{left:79.871988pt;}
.x24{left:83.546667pt;}
.x27{left:99.226667pt;}
.x3{left:100.991988pt;}
.x8{left:123.551976pt;}
.x9{left:128.991988pt;}
.x4{left:145.306655pt;}
.x30{left:260.546655pt;}
.x5{left:266.146655pt;}
.xa{left:267.586655pt;}
.x1c{left:299.426667pt;}
.x1d{left:302.466667pt;}
.x23{left:309.186667pt;}
.x12{left:312.866667pt;}
.xf{left:318.466655pt;}
.x10{left:322.626655pt;}
.xd{left:325.026655pt;}
.x31{left:343.266655pt;}
.x7{left:344.546655pt;}
.x2{left:347.746655pt;}
.x25{left:391.906667pt;}
.x6{left:396.866655pt;}
.x2e{left:408.066667pt;}
.x14{left:445.213333pt;}
.xc{left:561.853322pt;}
.x15{left:577.533333pt;}
.xe{left:718.533322pt;}
}




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