
    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_842d03e5f24c7621e21a3dc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_96ce67f96ba7df0fa0cdd4de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_b547af499fad5c5172fed116.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713379;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_4f92efd15c28ce63839949af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_74e662919bcd88a126f30e4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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:-6.000000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.096000px;}
.ls6{letter-spacing:-0.024000px;}
.ls4{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.012000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.168000px;}
.lsa{letter-spacing:0.228000px;}
.lsb{letter-spacing:0.348000px;}
.ls0{letter-spacing:845.802000px;}
.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;}
}
.ws4{word-spacing:-20.184000px;}
.ws7{word-spacing:-20.040000px;}
.ws8{word-spacing:-20.016000px;}
.ws9{word-spacing:-19.800000px;}
.ws5{word-spacing:-18.252000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.680000px;}
.ws2{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.988000px;}
.wsa{word-spacing:-13.344000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-5.730000px;}
._3{margin-left:-4.536000px;}
._17{margin-left:-3.240000px;}
._2{margin-left:-2.016000px;}
._0{margin-left:-1.008000px;}
._1{width:1.032000px;}
._8{width:2.664000px;}
._7{width:3.672000px;}
._f{width:4.752000px;}
._e{width:6.120000px;}
._6{width:7.776000px;}
._1c{width:9.072000px;}
._15{width:10.080000px;}
._5{width:11.304000px;}
._16{width:12.312000px;}
._1a{width:13.752000px;}
._12{width:15.120000px;}
._9{width:16.128000px;}
._1f{width:17.280000px;}
._18{width:18.288000px;}
._22{width:21.384000px;}
._1e{width:22.392000px;}
._1d{width:23.400000px;}
._11{width:24.552000px;}
._10{width:26.064000px;}
._20{width:27.864000px;}
._2e{width:28.872000px;}
._c{width:29.880000px;}
._26{width:30.888000px;}
._25{width:32.184000px;}
._19{width:33.192000px;}
._d{width:35.208000px;}
._30{width:36.288000px;}
._24{width:37.440000px;}
._b{width:39.384000px;}
._a{width:40.608000px;}
._23{width:42.474000px;}
._14{width:43.488000px;}
._13{width:44.856000px;}
._1b{width:46.800000px;}
._2a{width:55.638000px;}
._2b{width:56.928000px;}
._29{width:128.274000px;}
._27{width:134.274000px;}
._28{width:148.134000px;}
._2f{width:164.430000px;}
._2d{width:177.630000px;}
._21{width:197.970000px;}
._2c{width:227.970000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:81.000000px;}
.y8{bottom:-55.695000px;}
.y7{bottom:-34.950000px;}
.y6{bottom:-14.250000px;}
.y0{bottom:0.000000px;}
.y99{bottom:3.435000px;}
.y91{bottom:3.450000px;}
.yd2{bottom:3.465000px;}
.yd0{bottom:3.585000px;}
.y8f{bottom:3.600000px;}
.y97{bottom:3.615000px;}
.yc8{bottom:5.700000px;}
.y5{bottom:6.450000px;}
.y93{bottom:10.650000px;}
.ycb{bottom:22.380000px;}
.ycf{bottom:22.500000px;}
.yc7{bottom:24.750000px;}
.yc{bottom:55.950000px;}
.yb{bottom:71.400000px;}
.ya{bottom:87.000000px;}
.y3c{bottom:120.000000px;}
.yb9{bottom:121.200000px;}
.y72{bottom:124.050000px;}
.y4a{bottom:125.100000px;}
.yf3{bottom:125.550000px;}
.y117{bottom:127.200000px;}
.ydb{bottom:129.750000px;}
.y7c{bottom:130.800000px;}
.y3b{bottom:137.550000px;}
.y3a{bottom:143.550000px;}
.ya2{bottom:145.800000px;}
.y5f{bottom:146.100000px;}
.y116{bottom:147.900000px;}
.ye9{bottom:151.500000px;}
.yb8{bottom:152.550000px;}
.y71{bottom:155.100000px;}
.y39{bottom:156.150000px;}
.yda{bottom:160.800000px;}
.yf2{bottom:164.250000px;}
.y115{bottom:168.600000px;}
.y38{bottom:173.850000px;}
.ya1{bottom:176.850000px;}
.y5e{bottom:177.150000px;}
.y37{bottom:179.850000px;}
.ye8{bottom:182.550000px;}
.yb7{bottom:184.050000px;}
.y70{bottom:186.150000px;}
.y49{bottom:187.200000px;}
.yd9{bottom:191.850000px;}
.y36{bottom:192.750000px;}
.yf1{bottom:202.980000px;}
.y114{bottom:207.345000px;}
.ya0{bottom:207.945000px;}
.y5d{bottom:208.080000px;}
.ye7{bottom:213.645000px;}
.yb6{bottom:215.445000px;}
.y6f{bottom:217.245000px;}
.y48{bottom:218.295000px;}
.yd8{bottom:222.945000px;}
.yf0{bottom:223.695000px;}
.y113{bottom:228.045000px;}
.yeb{bottom:228.630000px;}
.y35{bottom:238.995000px;}
.y5c{bottom:239.130000px;}
.yef{bottom:244.395000px;}
.ye6{bottom:244.695000px;}
.yb5{bottom:246.780000px;}
.y6e{bottom:248.295000px;}
.y47{bottom:249.330000px;}
.yd7{bottom:253.980000px;}
.y34{bottom:259.695000px;}
.y112{bottom:266.730000px;}
.y9f{bottom:270.030000px;}
.y5b{bottom:270.195000px;}
.yd6{bottom:274.695000px;}
.ye5{bottom:275.745000px;}
.yb4{bottom:278.295000px;}
.y6d{bottom:279.330000px;}
.y33{bottom:280.380000px;}
.yee{bottom:283.080000px;}
.y111{bottom:287.445000px;}
.yd5{bottom:295.380000px;}
.y32{bottom:301.080000px;}
.y5a{bottom:301.230000px;}
.yed{bottom:303.780000px;}
.ye4{bottom:306.780000px;}
.y110{bottom:308.145000px;}
.yb3{bottom:309.630000px;}
.y6c{bottom:310.380000px;}
.y46{bottom:311.445000px;}
.yd4{bottom:313.830000px;}
.y31{bottom:321.795000px;}
.yec{bottom:324.480000px;}
.y9e{bottom:332.145000px;}
.y59{bottom:332.295000px;}
.yd3{bottom:334.380000px;}
.ye3{bottom:337.830000px;}
.yb2{bottom:340.980000px;}
.y6b{bottom:341.445000px;}
.y30{bottom:342.495000px;}
.y10f{bottom:346.830000px;}
.y2f{bottom:363.195000px;}
.y58{bottom:364.245000px;}
.y10e{bottom:367.530000px;}
.ye2{bottom:368.895000px;}
.yb1{bottom:372.345000px;}
.y6a{bottom:372.495000px;}
.y45{bottom:373.545000px;}
.yd1{bottom:373.830000px;}
.y2e{bottom:383.880000px;}
.y10d{bottom:388.230000px;}
.ye1{bottom:389.595000px;}
.y9d{bottom:394.245000px;}
.y57{bottom:396.045000px;}
.y69{bottom:403.545000px;}
.yb0{bottom:403.830000px;}
.y2d{bottom:404.580000px;}
.y10c{bottom:408.945000px;}
.ye0{bottom:410.295000px;}
.y9c{bottom:414.345000px;}
.y2c{bottom:425.295000px;}
.y56{bottom:427.845000px;}
.ydf{bottom:430.995000px;}
.y9b{bottom:432.195000px;}
.yce{bottom:433.695000px;}
.y68{bottom:434.595000px;}
.yaf{bottom:435.195000px;}
.y44{bottom:435.630000px;}
.y2b{bottom:445.995000px;}
.y10b{bottom:447.630000px;}
.y9a{bottom:450.630000px;}
.ycd{bottom:454.245000px;}
.y55{bottom:459.630000px;}
.yde{bottom:463.995000px;}
.y67{bottom:465.630000px;}
.yae{bottom:466.545000px;}
.y2a{bottom:466.695000px;}
.y10a{bottom:468.345000px;}
.y98{bottom:471.195000px;}
.ycc{bottom:474.630000px;}
.y29{bottom:487.380000px;}
.y109{bottom:489.045000px;}
.y54{bottom:491.445000px;}
.y96{bottom:491.580000px;}
.yca{bottom:495.195000px;}
.y66{bottom:496.845000px;}
.ydd{bottom:497.280000px;}
.y43{bottom:497.745000px;}
.yad{bottom:498.045000px;}
.y28{bottom:508.125000px;}
.y95{bottom:512.175000px;}
.y53{bottom:523.275000px;}
.y108{bottom:527.775000px;}
.y65{bottom:528.075000px;}
.ydc{bottom:528.525000px;}
.y27{bottom:528.825000px;}
.yac{bottom:529.425000px;}
.y94{bottom:532.575000px;}
.yc9{bottom:534.525000px;}
.y76{bottom:539.175000px;}
.y107{bottom:548.475000px;}
.y26{bottom:549.525000px;}
.y92{bottom:553.125000px;}
.yc6{bottom:555.075000px;}
.y52{bottom:555.225000px;}
.y64{bottom:559.275000px;}
.y42{bottom:559.875000px;}
.yab{bottom:560.775000px;}
.y106{bottom:569.175000px;}
.y25{bottom:570.225000px;}
.y90{bottom:580.725000px;}
.y51{bottom:587.025000px;}
.y7b{bottom:587.475000px;}
.y105{bottom:589.875000px;}
.y63{bottom:590.475000px;}
.y24{bottom:590.925000px;}
.yaa{bottom:592.125000px;}
.yc5{bottom:600.525000px;}
.y8e{bottom:601.125000px;}
.y75{bottom:601.275000px;}
.y7a{bottom:608.175000px;}
.y23{bottom:611.625000px;}
.ya9{bottom:612.825000px;}
.y50{bottom:618.825000px;}
.yc4{bottom:621.225000px;}
.y62{bottom:621.675000px;}
.y41{bottom:621.975000px;}
.y8d{bottom:625.425000px;}
.y104{bottom:628.275000px;}
.y79{bottom:628.875000px;}
.y22{bottom:632.325000px;}
.ya8{bottom:633.525000px;}
.y103{bottom:647.475000px;}
.y78{bottom:648.975000px;}
.y4f{bottom:650.625000px;}
.yc3{bottom:652.425000px;}
.y21{bottom:653.025000px;}
.ya7{bottom:654.225000px;}
.y8c{bottom:656.475000px;}
.y74{bottom:663.375000px;}
.y77{bottom:666.825000px;}
.y102{bottom:668.175000px;}
.y20{bottom:673.725000px;}
.y4e{bottom:682.425000px;}
.yc2{bottom:683.625000px;}
.y40{bottom:684.075000px;}
.ya6{bottom:685.275000px;}
.y8b{bottom:687.525000px;}
.y101{bottom:688.875000px;}
.y1f{bottom:694.425000px;}
.y4d{bottom:714.225000px;}
.yc1{bottom:714.825000px;}
.y1e{bottom:715.125000px;}
.ya5{bottom:716.325000px;}
.y8a{bottom:718.575000px;}
.y73{bottom:725.325000px;}
.y100{bottom:727.275000px;}
.y1d{bottom:735.825000px;}
.ya4{bottom:736.425000px;}
.y3f{bottom:746.025000px;}
.yff{bottom:746.475000px;}
.y89{bottom:749.475000px;}
.ya3{bottom:753.675000px;}
.y1c{bottom:756.375000px;}
.y4c{bottom:766.725000px;}
.yfe{bottom:767.175000px;}
.y1b{bottom:777.075000px;}
.y88{bottom:780.525000px;}
.y4b{bottom:787.425000px;}
.y1a{bottom:797.775000px;}
.yfd{bottom:805.875000px;}
.y3e{bottom:808.125000px;}
.y87{bottom:811.575000px;}
.y19{bottom:818.520000px;}
.yfc{bottom:826.605000px;}
.yc0{bottom:828.870000px;}
.y18{bottom:839.205000px;}
.y86{bottom:842.670000px;}
.yfb{bottom:847.320000px;}
.yea{bottom:849.570000px;}
.y17{bottom:859.920000px;}
.yfa{bottom:868.005000px;}
.y3d{bottom:870.255000px;}
.y85{bottom:873.705000px;}
.y16{bottom:880.620000px;}
.ybf{bottom:890.955000px;}
.y15{bottom:901.320000px;}
.y84{bottom:904.755000px;}
.yf9{bottom:906.705000px;}
.ybe{bottom:922.005000px;}
.yf8{bottom:927.420000px;}
.y13{bottom:932.370000px;}
.y83{bottom:935.820000px;}
.y14{bottom:938.370000px;}
.yf7{bottom:948.120000px;}
.y61{bottom:953.070000px;}
.y11{bottom:963.420000px;}
.y82{bottom:966.870000px;}
.y12{bottom:969.420000px;}
.y60{bottom:973.755000px;}
.ybd{bottom:984.120000px;}
.yf6{bottom:986.820000px;}
.y10{bottom:994.455000px;}
.y81{bottom:997.920000px;}
.yf5{bottom:1007.505000px;}
.ybc{bottom:1015.170000px;}
.yf{bottom:1025.505000px;}
.yf4{bottom:1028.205000px;}
.y80{bottom:1028.955000px;}
.ybb{bottom:1046.205000px;}
.y7f{bottom:1049.670000px;}
.y3{bottom:1050.705000px;}
.ye{bottom:1056.570000px;}
.yba{bottom:1066.920000px;}
.y7e{bottom:1070.370000px;}
.y2{bottom:1071.255000px;}
.yd{bottom:1087.620000px;}
.y1{bottom:1090.170000px;}
.y7d{bottom:1090.455000px;}
.y9{bottom:1104.705000px;}
.y4{bottom:1165.650000px;}
.hb{height:18.900000px;}
.ha{height:19.050000px;}
.hd{height:19.087500px;}
.h3{height:24.000000px;}
.hc{height:26.100000px;}
.h9{height:37.672852px;}
.h11{height:37.837500px;}
.h12{height:37.950000px;}
.hf{height:40.200000px;}
.h8{height:43.054688px;}
.h6{height:48.436523px;}
.h4{height:50.273438px;}
.h5{height:53.818359px;}
.he{height:54.287109px;}
.h1{height:59.200195px;}
.h10{height:59.715820px;}
.h7{height:64.582031px;}
.h2{height:65.144531px;}
.h13{height:72.654785px;}
.h0{height:1263.000000px;}
.w2{width:26.550000px;}
.w6{width:273.495000px;}
.w4{width:339.195000px;}
.w5{width:339.225000px;}
.w7{width:404.175000px;}
.w3{width:893.999973px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3{left:1.500000px;}
.x1a{left:39.150000px;}
.x1b{left:84.600000px;}
.x1{left:127.687487px;}
.x18{left:129.937500px;}
.x11{left:133.537487px;}
.x16{left:141.187500px;}
.x7{left:148.837487px;}
.x9{left:150.329987px;}
.x15{left:173.879987px;}
.x4{left:177.779987px;}
.x12{left:180.629987px;}
.xf{left:181.679987px;}
.x13{left:187.829987px;}
.x14{left:188.894987px;}
.x1d{left:190.094987px;}
.x1e{left:200.144987px;}
.x5{left:249.779987px;}
.x10{left:343.724987px;}
.x19{left:404.925000px;}
.x8{left:446.924987px;}
.xa{left:468.374987px;}
.x17{left:481.875000px;}
.xb{left:553.469987px;}
.xe{left:647.369987px;}
.x1c{left:710.819987px;}
.x6{left:718.319987px;}
.x2{left:787.950000px;}
.xc{left:802.499973px;}
.xd{left:809.249987px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.010667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.149333pt;}
.lsa{letter-spacing:0.202667pt;}
.lsb{letter-spacing:0.309333pt;}
.ls0{letter-spacing:751.824000pt;}
.ws4{word-spacing:-17.941333pt;}
.ws7{word-spacing:-17.813333pt;}
.ws8{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.600000pt;}
.ws5{word-spacing:-16.224000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.826667pt;}
.ws2{word-spacing:-13.344000pt;}
.ws3{word-spacing:-13.322667pt;}
.wsa{word-spacing:-11.861333pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-5.093333pt;}
._3{margin-left:-4.032000pt;}
._17{margin-left:-2.880000pt;}
._2{margin-left:-1.792000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.917333pt;}
._8{width:2.368000pt;}
._7{width:3.264000pt;}
._f{width:4.224000pt;}
._e{width:5.440000pt;}
._6{width:6.912000pt;}
._1c{width:8.064000pt;}
._15{width:8.960000pt;}
._5{width:10.048000pt;}
._16{width:10.944000pt;}
._1a{width:12.224000pt;}
._12{width:13.440000pt;}
._9{width:14.336000pt;}
._1f{width:15.360000pt;}
._18{width:16.256000pt;}
._22{width:19.008000pt;}
._1e{width:19.904000pt;}
._1d{width:20.800000pt;}
._11{width:21.824000pt;}
._10{width:23.168000pt;}
._20{width:24.768000pt;}
._2e{width:25.664000pt;}
._c{width:26.560000pt;}
._26{width:27.456000pt;}
._25{width:28.608000pt;}
._19{width:29.504000pt;}
._d{width:31.296000pt;}
._30{width:32.256000pt;}
._24{width:33.280000pt;}
._b{width:35.008000pt;}
._a{width:36.096000pt;}
._23{width:37.754667pt;}
._14{width:38.656000pt;}
._13{width:39.872000pt;}
._1b{width:41.600000pt;}
._2a{width:49.456000pt;}
._2b{width:50.602667pt;}
._29{width:114.021333pt;}
._27{width:119.354667pt;}
._28{width:131.674667pt;}
._2f{width:146.160000pt;}
._2d{width:157.893333pt;}
._21{width:175.973333pt;}
._2c{width:202.640000pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:72.000000pt;}
.y8{bottom:-49.506667pt;}
.y7{bottom:-31.066667pt;}
.y6{bottom:-12.666667pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:3.053333pt;}
.y91{bottom:3.066667pt;}
.yd2{bottom:3.080000pt;}
.yd0{bottom:3.186667pt;}
.y8f{bottom:3.200000pt;}
.y97{bottom:3.213333pt;}
.yc8{bottom:5.066667pt;}
.y5{bottom:5.733333pt;}
.y93{bottom:9.466667pt;}
.ycb{bottom:19.893333pt;}
.ycf{bottom:20.000000pt;}
.yc7{bottom:22.000000pt;}
.yc{bottom:49.733333pt;}
.yb{bottom:63.466667pt;}
.ya{bottom:77.333333pt;}
.y3c{bottom:106.666667pt;}
.yb9{bottom:107.733333pt;}
.y72{bottom:110.266667pt;}
.y4a{bottom:111.200000pt;}
.yf3{bottom:111.600000pt;}
.y117{bottom:113.066667pt;}
.ydb{bottom:115.333333pt;}
.y7c{bottom:116.266667pt;}
.y3b{bottom:122.266667pt;}
.y3a{bottom:127.600000pt;}
.ya2{bottom:129.600000pt;}
.y5f{bottom:129.866667pt;}
.y116{bottom:131.466667pt;}
.ye9{bottom:134.666667pt;}
.yb8{bottom:135.600000pt;}
.y71{bottom:137.866667pt;}
.y39{bottom:138.800000pt;}
.yda{bottom:142.933333pt;}
.yf2{bottom:146.000000pt;}
.y115{bottom:149.866667pt;}
.y38{bottom:154.533333pt;}
.ya1{bottom:157.200000pt;}
.y5e{bottom:157.466667pt;}
.y37{bottom:159.866667pt;}
.ye8{bottom:162.266667pt;}
.yb7{bottom:163.600000pt;}
.y70{bottom:165.466667pt;}
.y49{bottom:166.400000pt;}
.yd9{bottom:170.533333pt;}
.y36{bottom:171.333333pt;}
.yf1{bottom:180.426667pt;}
.y114{bottom:184.306667pt;}
.ya0{bottom:184.840000pt;}
.y5d{bottom:184.960000pt;}
.ye7{bottom:189.906667pt;}
.yb6{bottom:191.506667pt;}
.y6f{bottom:193.106667pt;}
.y48{bottom:194.040000pt;}
.yd8{bottom:198.173333pt;}
.yf0{bottom:198.840000pt;}
.y113{bottom:202.706667pt;}
.yeb{bottom:203.226667pt;}
.y35{bottom:212.440000pt;}
.y5c{bottom:212.560000pt;}
.yef{bottom:217.240000pt;}
.ye6{bottom:217.506667pt;}
.yb5{bottom:219.360000pt;}
.y6e{bottom:220.706667pt;}
.y47{bottom:221.626667pt;}
.yd7{bottom:225.760000pt;}
.y34{bottom:230.840000pt;}
.y112{bottom:237.093333pt;}
.y9f{bottom:240.026667pt;}
.y5b{bottom:240.173333pt;}
.yd6{bottom:244.173333pt;}
.ye5{bottom:245.106667pt;}
.yb4{bottom:247.373333pt;}
.y6d{bottom:248.293333pt;}
.y33{bottom:249.226667pt;}
.yee{bottom:251.626667pt;}
.y111{bottom:255.506667pt;}
.yd5{bottom:262.560000pt;}
.y32{bottom:267.626667pt;}
.y5a{bottom:267.760000pt;}
.yed{bottom:270.026667pt;}
.ye4{bottom:272.693333pt;}
.y110{bottom:273.906667pt;}
.yb3{bottom:275.226667pt;}
.y6c{bottom:275.893333pt;}
.y46{bottom:276.840000pt;}
.yd4{bottom:278.960000pt;}
.y31{bottom:286.040000pt;}
.yec{bottom:288.426667pt;}
.y9e{bottom:295.240000pt;}
.y59{bottom:295.373333pt;}
.yd3{bottom:297.226667pt;}
.ye3{bottom:300.293333pt;}
.yb2{bottom:303.093333pt;}
.y6b{bottom:303.506667pt;}
.y30{bottom:304.440000pt;}
.y10f{bottom:308.293333pt;}
.y2f{bottom:322.840000pt;}
.y58{bottom:323.773333pt;}
.y10e{bottom:326.693333pt;}
.ye2{bottom:327.906667pt;}
.yb1{bottom:330.973333pt;}
.y6a{bottom:331.106667pt;}
.y45{bottom:332.040000pt;}
.yd1{bottom:332.293333pt;}
.y2e{bottom:341.226667pt;}
.y10d{bottom:345.093333pt;}
.ye1{bottom:346.306667pt;}
.y9d{bottom:350.440000pt;}
.y57{bottom:352.040000pt;}
.y69{bottom:358.706667pt;}
.yb0{bottom:358.960000pt;}
.y2d{bottom:359.626667pt;}
.y10c{bottom:363.506667pt;}
.ye0{bottom:364.706667pt;}
.y9c{bottom:368.306667pt;}
.y2c{bottom:378.040000pt;}
.y56{bottom:380.306667pt;}
.ydf{bottom:383.106667pt;}
.y9b{bottom:384.173333pt;}
.yce{bottom:385.506667pt;}
.y68{bottom:386.306667pt;}
.yaf{bottom:386.840000pt;}
.y44{bottom:387.226667pt;}
.y2b{bottom:396.440000pt;}
.y10b{bottom:397.893333pt;}
.y9a{bottom:400.560000pt;}
.ycd{bottom:403.773333pt;}
.y55{bottom:408.560000pt;}
.yde{bottom:412.440000pt;}
.y67{bottom:413.893333pt;}
.yae{bottom:414.706667pt;}
.y2a{bottom:414.840000pt;}
.y10a{bottom:416.306667pt;}
.y98{bottom:418.840000pt;}
.ycc{bottom:421.893333pt;}
.y29{bottom:433.226667pt;}
.y109{bottom:434.706667pt;}
.y54{bottom:436.840000pt;}
.y96{bottom:436.960000pt;}
.yca{bottom:440.173333pt;}
.y66{bottom:441.640000pt;}
.ydd{bottom:442.026667pt;}
.y43{bottom:442.440000pt;}
.yad{bottom:442.706667pt;}
.y28{bottom:451.666667pt;}
.y95{bottom:455.266667pt;}
.y53{bottom:465.133333pt;}
.y108{bottom:469.133333pt;}
.y65{bottom:469.400000pt;}
.ydc{bottom:469.800000pt;}
.y27{bottom:470.066667pt;}
.yac{bottom:470.600000pt;}
.y94{bottom:473.400000pt;}
.yc9{bottom:475.133333pt;}
.y76{bottom:479.266667pt;}
.y107{bottom:487.533333pt;}
.y26{bottom:488.466667pt;}
.y92{bottom:491.666667pt;}
.yc6{bottom:493.400000pt;}
.y52{bottom:493.533333pt;}
.y64{bottom:497.133333pt;}
.y42{bottom:497.666667pt;}
.yab{bottom:498.466667pt;}
.y106{bottom:505.933333pt;}
.y25{bottom:506.866667pt;}
.y90{bottom:516.200000pt;}
.y51{bottom:521.800000pt;}
.y7b{bottom:522.200000pt;}
.y105{bottom:524.333333pt;}
.y63{bottom:524.866667pt;}
.y24{bottom:525.266667pt;}
.yaa{bottom:526.333333pt;}
.yc5{bottom:533.800000pt;}
.y8e{bottom:534.333333pt;}
.y75{bottom:534.466667pt;}
.y7a{bottom:540.600000pt;}
.y23{bottom:543.666667pt;}
.ya9{bottom:544.733333pt;}
.y50{bottom:550.066667pt;}
.yc4{bottom:552.200000pt;}
.y62{bottom:552.600000pt;}
.y41{bottom:552.866667pt;}
.y8d{bottom:555.933333pt;}
.y104{bottom:558.466667pt;}
.y79{bottom:559.000000pt;}
.y22{bottom:562.066667pt;}
.ya8{bottom:563.133333pt;}
.y103{bottom:575.533333pt;}
.y78{bottom:576.866667pt;}
.y4f{bottom:578.333333pt;}
.yc3{bottom:579.933333pt;}
.y21{bottom:580.466667pt;}
.ya7{bottom:581.533333pt;}
.y8c{bottom:583.533333pt;}
.y74{bottom:589.666667pt;}
.y77{bottom:592.733333pt;}
.y102{bottom:593.933333pt;}
.y20{bottom:598.866667pt;}
.y4e{bottom:606.600000pt;}
.yc2{bottom:607.666667pt;}
.y40{bottom:608.066667pt;}
.ya6{bottom:609.133333pt;}
.y8b{bottom:611.133333pt;}
.y101{bottom:612.333333pt;}
.y1f{bottom:617.266667pt;}
.y4d{bottom:634.866667pt;}
.yc1{bottom:635.400000pt;}
.y1e{bottom:635.666667pt;}
.ya5{bottom:636.733333pt;}
.y8a{bottom:638.733333pt;}
.y73{bottom:644.733333pt;}
.y100{bottom:646.466667pt;}
.y1d{bottom:654.066667pt;}
.ya4{bottom:654.600000pt;}
.y3f{bottom:663.133333pt;}
.yff{bottom:663.533333pt;}
.y89{bottom:666.200000pt;}
.ya3{bottom:669.933333pt;}
.y1c{bottom:672.333333pt;}
.y4c{bottom:681.533333pt;}
.yfe{bottom:681.933333pt;}
.y1b{bottom:690.733333pt;}
.y88{bottom:693.800000pt;}
.y4b{bottom:699.933333pt;}
.y1a{bottom:709.133333pt;}
.yfd{bottom:716.333333pt;}
.y3e{bottom:718.333333pt;}
.y87{bottom:721.400000pt;}
.y19{bottom:727.573333pt;}
.yfc{bottom:734.760000pt;}
.yc0{bottom:736.773333pt;}
.y18{bottom:745.960000pt;}
.y86{bottom:749.040000pt;}
.yfb{bottom:753.173333pt;}
.yea{bottom:755.173333pt;}
.y17{bottom:764.373333pt;}
.yfa{bottom:771.560000pt;}
.y3d{bottom:773.560000pt;}
.y85{bottom:776.626667pt;}
.y16{bottom:782.773333pt;}
.ybf{bottom:791.960000pt;}
.y15{bottom:801.173333pt;}
.y84{bottom:804.226667pt;}
.yf9{bottom:805.960000pt;}
.ybe{bottom:819.560000pt;}
.yf8{bottom:824.373333pt;}
.y13{bottom:828.773333pt;}
.y83{bottom:831.840000pt;}
.y14{bottom:834.106667pt;}
.yf7{bottom:842.773333pt;}
.y61{bottom:847.173333pt;}
.y11{bottom:856.373333pt;}
.y82{bottom:859.440000pt;}
.y12{bottom:861.706667pt;}
.y60{bottom:865.560000pt;}
.ybd{bottom:874.773333pt;}
.yf6{bottom:877.173333pt;}
.y10{bottom:883.960000pt;}
.y81{bottom:887.040000pt;}
.yf5{bottom:895.560000pt;}
.ybc{bottom:902.373333pt;}
.yf{bottom:911.560000pt;}
.yf4{bottom:913.960000pt;}
.y80{bottom:914.626667pt;}
.ybb{bottom:929.960000pt;}
.y7f{bottom:933.040000pt;}
.y3{bottom:933.960000pt;}
.ye{bottom:939.173333pt;}
.yba{bottom:948.373333pt;}
.y7e{bottom:951.440000pt;}
.y2{bottom:952.226667pt;}
.yd{bottom:966.773333pt;}
.y1{bottom:969.040000pt;}
.y7d{bottom:969.293333pt;}
.y9{bottom:981.960000pt;}
.y4{bottom:1036.133333pt;}
.hb{height:16.800000pt;}
.ha{height:16.933333pt;}
.hd{height:16.966667pt;}
.h3{height:21.333333pt;}
.hc{height:23.200000pt;}
.h9{height:33.486979pt;}
.h11{height:33.633333pt;}
.h12{height:33.733333pt;}
.hf{height:35.733333pt;}
.h8{height:38.270833pt;}
.h6{height:43.054688pt;}
.h4{height:44.687500pt;}
.h5{height:47.838542pt;}
.he{height:48.255208pt;}
.h1{height:52.622396pt;}
.h10{height:53.080729pt;}
.h7{height:57.406250pt;}
.h2{height:57.906250pt;}
.h13{height:64.582031pt;}
.h0{height:1122.666667pt;}
.w2{width:23.600000pt;}
.w6{width:243.106667pt;}
.w4{width:301.506667pt;}
.w5{width:301.533333pt;}
.w7{width:359.266667pt;}
.w3{width:794.666643pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3{left:1.333333pt;}
.x1a{left:34.800000pt;}
.x1b{left:75.200000pt;}
.x1{left:113.499988pt;}
.x18{left:115.500000pt;}
.x11{left:118.699988pt;}
.x16{left:125.500000pt;}
.x7{left:132.299988pt;}
.x9{left:133.626655pt;}
.x15{left:154.559988pt;}
.x4{left:158.026655pt;}
.x12{left:160.559988pt;}
.xf{left:161.493321pt;}
.x13{left:166.959988pt;}
.x14{left:167.906655pt;}
.x1d{left:168.973321pt;}
.x1e{left:177.906655pt;}
.x5{left:222.026655pt;}
.x10{left:305.533321pt;}
.x19{left:359.933333pt;}
.x8{left:397.266655pt;}
.xa{left:416.333321pt;}
.x17{left:428.333333pt;}
.xb{left:491.973321pt;}
.xe{left:575.439988pt;}
.x1c{left:631.839988pt;}
.x6{left:638.506655pt;}
.x2{left:700.400000pt;}
.xc{left:713.333310pt;}
.xd{left:719.333321pt;}
}




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