
    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_4ee8775434d83e84ebdcf815.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_0a1979425319a5aefe45003a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_25f54bf47f552e91c7ef3757.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_41942bbe84fcf4bcddf58ddc.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_ac3bc6ef63142957bfac9509.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_09741eb16bdf9720b2727cd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_ff2a52a143002a226d14ad44.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a2a156d67ffd55d1458b207f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.lsd{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls12{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.192000px;}
.lsc{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.600000px;}
.lse{letter-spacing:0.792000px;}
.ls4{letter-spacing:33.984000px;}
.ls15{letter-spacing:102.384000px;}
.ls14{letter-spacing:138.384000px;}
.ls13{letter-spacing:138.534000px;}
.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.216000px;}
.wsf{word-spacing:-18.192000px;}
.wsa{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.wse{word-spacing:-16.722000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsd{word-spacing:0.000000px;}
._1b{margin-left:-4.824000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._c{width:2.514000px;}
._6{width:4.104000px;}
._26{width:5.328000px;}
._28{width:6.336000px;}
._5{width:7.476000px;}
._4{width:8.718000px;}
._18{width:10.728000px;}
._b{width:12.096000px;}
._27{width:13.248000px;}
._9{width:14.472000px;}
._a{width:15.582000px;}
._10{width:16.776000px;}
._24{width:19.296000px;}
._25{width:20.448000px;}
._32{width:21.456000px;}
._7{width:22.464000px;}
._8{width:23.472000px;}
._f{width:25.344000px;}
._1f{width:26.496000px;}
._20{width:27.576000px;}
._13{width:29.592000px;}
._14{width:30.888000px;}
._2d{width:31.896000px;}
._15{width:33.120000px;}
._19{width:34.920000px;}
._1a{width:35.928000px;}
._d{width:37.728000px;}
._e{width:39.024000px;}
._33{width:40.152000px;}
._2a{width:41.382000px;}
._1c{width:42.504000px;}
._21{width:43.920000px;}
._22{width:45.288000px;}
._2e{width:46.440000px;}
._23{width:47.736000px;}
._11{width:49.104000px;}
._12{width:50.112000px;}
._16{width:51.768000px;}
._2b{width:55.296000px;}
._1e{width:56.592000px;}
._2c{width:58.536000px;}
._38{width:60.336000px;}
._31{width:69.696000px;}
._29{width:78.768000px;}
._2f{width:80.136000px;}
._30{width:81.504000px;}
._34{width:85.176000px;}
._1d{width:86.262000px;}
._17{width:87.336000px;}
._35{width:116.352000px;}
._36{width:117.504000px;}
._37{width:149.040000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y42{bottom:3.600000px;}
.y3f{bottom:3.750000px;}
.y46{bottom:3.765000px;}
.y29{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y40{bottom:22.650000px;}
.y28{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y27{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y26{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y25{bottom:86.700000px;}
.y24{bottom:107.400000px;}
.yad{bottom:108.337500px;}
.y64{bottom:123.637500px;}
.y3d{bottom:126.187500px;}
.y8f{bottom:126.637500px;}
.y23{bottom:128.100000px;}
.yac{bottom:132.187500px;}
.ye5{bottom:138.937500px;}
.y63{bottom:147.487500px;}
.y22{bottom:148.845000px;}
.y3c{bottom:150.045000px;}
.y8e{bottom:150.495000px;}
.yab{bottom:156.045000px;}
.ye4{bottom:162.645000px;}
.y21{bottom:169.545000px;}
.y62{bottom:171.345000px;}
.y3b{bottom:173.745000px;}
.y8d{bottom:174.345000px;}
.yaa{bottom:179.745000px;}
.ye3{bottom:186.495000px;}
.y61{bottom:195.045000px;}
.y3a{bottom:197.595000px;}
.y8c{bottom:198.195000px;}
.ya9{bottom:203.595000px;}
.ye2{bottom:210.345000px;}
.y60{bottom:218.880000px;}
.y39{bottom:221.445000px;}
.y8b{bottom:221.895000px;}
.ya8{bottom:227.445000px;}
.ye1{bottom:234.045000px;}
.y5f{bottom:242.745000px;}
.y38{bottom:245.145000px;}
.y8a{bottom:245.745000px;}
.ya7{bottom:251.145000px;}
.ye0{bottom:257.895000px;}
.yc7{bottom:258.795000px;}
.y5e{bottom:266.445000px;}
.y37{bottom:268.995000px;}
.y89{bottom:269.595000px;}
.ya6{bottom:274.995000px;}
.ydf{bottom:281.745000px;}
.yc6{bottom:282.645000px;}
.y5d{bottom:290.295000px;}
.y36{bottom:292.845000px;}
.y88{bottom:293.295000px;}
.ya5{bottom:298.845000px;}
.yde{bottom:305.445000px;}
.yc5{bottom:306.495000px;}
.y5c{bottom:314.130000px;}
.y35{bottom:316.545000px;}
.y87{bottom:317.130000px;}
.ya4{bottom:322.545000px;}
.ydd{bottom:329.295000px;}
.yc4{bottom:330.195000px;}
.y5b{bottom:337.830000px;}
.y34{bottom:340.380000px;}
.y86{bottom:340.995000px;}
.ya3{bottom:342.495000px;}
.ydc{bottom:349.245000px;}
.yc3{bottom:354.045000px;}
.y5a{bottom:361.695000px;}
.y33{bottom:364.245000px;}
.y85{bottom:364.695000px;}
.yc2{bottom:377.880000px;}
.y59{bottom:385.575000px;}
.y32{bottom:387.975000px;}
.y84{bottom:388.575000px;}
.yc1{bottom:401.775000px;}
.y58{bottom:409.275000px;}
.y31{bottom:411.825000px;}
.y83{bottom:412.425000px;}
.yc0{bottom:425.475000px;}
.y57{bottom:433.125000px;}
.y30{bottom:435.675000px;}
.y82{bottom:436.125000px;}
.ybf{bottom:449.325000px;}
.y56{bottom:456.975000px;}
.y2f{bottom:459.375000px;}
.y81{bottom:459.975000px;}
.ybe{bottom:473.175000px;}
.y55{bottom:480.675000px;}
.y2e{bottom:483.225000px;}
.y80{bottom:483.825000px;}
.ybd{bottom:496.875000px;}
.y54{bottom:500.625000px;}
.y2d{bottom:507.075000px;}
.y7f{bottom:507.525000px;}
.ybc{bottom:520.725000px;}
.ya2{bottom:530.625000px;}
.y7e{bottom:531.375000px;}
.y2c{bottom:539.775000px;}
.ybb{bottom:544.575000px;}
.ydb{bottom:552.225000px;}
.ya1{bottom:554.475000px;}
.y7d{bottom:555.225000px;}
.y2b{bottom:556.575000px;}
.yba{bottom:568.275000px;}
.yda{bottom:576.075000px;}
.y2a{bottom:577.275000px;}
.ya0{bottom:578.325000px;}
.y7c{bottom:579.075000px;}
.yb9{bottom:592.125000px;}
.y20{bottom:597.975000px;}
.yd9{bottom:599.775000px;}
.y9f{bottom:602.025000px;}
.y7b{bottom:602.775000px;}
.yb8{bottom:615.975000px;}
.yd8{bottom:623.625000px;}
.y9e{bottom:625.875000px;}
.y7a{bottom:626.625000px;}
.yb7{bottom:639.675000px;}
.yd7{bottom:647.475000px;}
.y9d{bottom:649.725000px;}
.y79{bottom:650.475000px;}
.yb6{bottom:663.525000px;}
.yd6{bottom:671.175000px;}
.y9c{bottom:673.425000px;}
.y78{bottom:674.175000px;}
.yb5{bottom:687.375000px;}
.yd5{bottom:695.025000px;}
.y9b{bottom:697.275000px;}
.y77{bottom:698.025000px;}
.yb4{bottom:711.075000px;}
.yd4{bottom:718.875000px;}
.y9a{bottom:721.125000px;}
.y76{bottom:721.875000px;}
.yb3{bottom:734.925000px;}
.yd3{bottom:742.620000px;}
.y99{bottom:744.870000px;}
.y75{bottom:745.620000px;}
.y53{bottom:748.620000px;}
.yb2{bottom:758.820000px;}
.yd2{bottom:766.470000px;}
.y98{bottom:768.705000px;}
.y74{bottom:769.470000px;}
.y52{bottom:772.455000px;}
.yb1{bottom:782.520000px;}
.y1f{bottom:787.920000px;}
.yd1{bottom:790.320000px;}
.y97{bottom:792.570000px;}
.y73{bottom:793.320000px;}
.y51{bottom:796.170000px;}
.yb0{bottom:806.370000px;}
.y1e{bottom:807.120000px;}
.yd0{bottom:814.020000px;}
.y96{bottom:816.270000px;}
.y72{bottom:817.020000px;}
.y50{bottom:820.020000px;}
.y1d{bottom:827.820000px;}
.yaf{bottom:830.220000px;}
.ycf{bottom:837.870000px;}
.y95{bottom:840.120000px;}
.y71{bottom:840.870000px;}
.y4f{bottom:843.870000px;}
.y1c{bottom:848.520000px;}
.yae{bottom:850.170000px;}
.yce{bottom:861.720000px;}
.y94{bottom:863.970000px;}
.y70{bottom:864.720000px;}
.y4e{bottom:867.570000px;}
.y1b{bottom:869.220000px;}
.ycd{bottom:885.570000px;}
.y93{bottom:887.820000px;}
.y6f{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.y4d{bottom:891.420000px;}
.ycc{bottom:909.270000px;}
.y19{bottom:910.620000px;}
.y92{bottom:911.520000px;}
.y6e{bottom:912.270000px;}
.y4c{bottom:915.270000px;}
.y18{bottom:931.320000px;}
.ycb{bottom:933.120000px;}
.y91{bottom:935.370000px;}
.y6d{bottom:936.120000px;}
.y4b{bottom:938.970000px;}
.y17{bottom:952.020000px;}
.y90{bottom:955.320000px;}
.yca{bottom:956.970000px;}
.y6c{bottom:959.970000px;}
.y4a{bottom:962.820000px;}
.y16{bottom:972.720000px;}
.yc9{bottom:980.670000px;}
.y6b{bottom:983.670000px;}
.y49{bottom:986.670000px;}
.y15{bottom:993.420000px;}
.yc8{bottom:1000.620000px;}
.y6a{bottom:1007.520000px;}
.y48{bottom:1010.370000px;}
.y14{bottom:1014.120000px;}
.y69{bottom:1031.370000px;}
.y47{bottom:1034.220000px;}
.y13{bottom:1034.820000px;}
.y45{bottom:1051.755000px;}
.y68{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y44{bottom:1070.820000px;}
.y11{bottom:1076.220000px;}
.y67{bottom:1078.920000px;}
.y43{bottom:1089.720000px;}
.y10{bottom:1096.950000px;}
.y66{bottom:1102.800000px;}
.y41{bottom:1108.800000px;}
.y65{bottom:1126.500000px;}
.y3e{bottom:1128.450000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h11{height:18.900000px;}
.h13{height:19.050000px;}
.h12{height:19.087500px;}
.he{height:20.700000px;}
.h10{height:37.950000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h14{height:52.066406px;}
.h7{height:52.998047px;}
.h15{height:54.878906px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h16{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h17{height:74.004654px;}
.hf{height:74.953125px;}
.h2{height:82.441406px;}
.hd{height:186.345000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:100.837500px;}
.wb{width:135.337500px;}
.wa{width:157.200000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x22{left:8.100000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1e{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1f{left:69.599987px;}
.x20{left:95.699987px;}
.x1d{left:100.200000px;}
.x10{left:105.149987px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x23{left:143.437500px;}
.x24{left:300.645000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x19{left:417.224987px;}
.x12{left:428.924987px;}
.x28{left:430.424987px;}
.x25{left:442.574987px;}
.x18{left:458.174987px;}
.x13{left:462.824987px;}
.x17{left:500.624987px;}
.x21{left:510.374987px;}
.xc{left:625.425000px;}
.x14{left:632.624987px;}
.x1c{left:648.569987px;}
.x11{left:675.704987px;}
.x1b{left:685.604987px;}
.x1a{left:704.504987px;}
.x16{left:710.654987px;}
.xf{left:713.655000px;}
.x2{left:829.619987px;}
.x2a{left:842.954987px;}
.x26{left:847.619987px;}
.x15{left:850.619987px;}
.x29{left:853.319987px;}
.x27{left:856.454987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls12{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.170667pt;}
.lsc{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.704000pt;}
.ls4{letter-spacing:30.208000pt;}
.ls15{letter-spacing:91.008000pt;}
.ls14{letter-spacing:123.008000pt;}
.ls13{letter-spacing:123.141333pt;}
.wsb{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.170667pt;}
.wsa{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.wse{word-spacing:-14.864000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsd{word-spacing:0.000000pt;}
._1b{margin-left:-4.288000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._c{width:2.234667pt;}
._6{width:3.648000pt;}
._26{width:4.736000pt;}
._28{width:5.632000pt;}
._5{width:6.645333pt;}
._4{width:7.749333pt;}
._18{width:9.536000pt;}
._b{width:10.752000pt;}
._27{width:11.776000pt;}
._9{width:12.864000pt;}
._a{width:13.850667pt;}
._10{width:14.912000pt;}
._24{width:17.152000pt;}
._25{width:18.176000pt;}
._32{width:19.072000pt;}
._7{width:19.968000pt;}
._8{width:20.864000pt;}
._f{width:22.528000pt;}
._1f{width:23.552000pt;}
._20{width:24.512000pt;}
._13{width:26.304000pt;}
._14{width:27.456000pt;}
._2d{width:28.352000pt;}
._15{width:29.440000pt;}
._19{width:31.040000pt;}
._1a{width:31.936000pt;}
._d{width:33.536000pt;}
._e{width:34.688000pt;}
._33{width:35.690667pt;}
._2a{width:36.784000pt;}
._1c{width:37.781333pt;}
._21{width:39.040000pt;}
._22{width:40.256000pt;}
._2e{width:41.280000pt;}
._23{width:42.432000pt;}
._11{width:43.648000pt;}
._12{width:44.544000pt;}
._16{width:46.016000pt;}
._2b{width:49.152000pt;}
._1e{width:50.304000pt;}
._2c{width:52.032000pt;}
._38{width:53.632000pt;}
._31{width:61.952000pt;}
._29{width:70.016000pt;}
._2f{width:71.232000pt;}
._30{width:72.448000pt;}
._34{width:75.712000pt;}
._1d{width:76.677333pt;}
._17{width:77.632000pt;}
._35{width:103.424000pt;}
._36{width:104.448000pt;}
._37{width:132.480000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y42{bottom:3.200000pt;}
.y3f{bottom:3.333333pt;}
.y46{bottom:3.346667pt;}
.y29{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y40{bottom:20.133333pt;}
.y28{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y27{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y26{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y25{bottom:77.066667pt;}
.y24{bottom:95.466667pt;}
.yad{bottom:96.300000pt;}
.y64{bottom:109.900000pt;}
.y3d{bottom:112.166667pt;}
.y8f{bottom:112.566667pt;}
.y23{bottom:113.866667pt;}
.yac{bottom:117.500000pt;}
.ye5{bottom:123.500000pt;}
.y63{bottom:131.100000pt;}
.y22{bottom:132.306667pt;}
.y3c{bottom:133.373333pt;}
.y8e{bottom:133.773333pt;}
.yab{bottom:138.706667pt;}
.ye4{bottom:144.573333pt;}
.y21{bottom:150.706667pt;}
.y62{bottom:152.306667pt;}
.y3b{bottom:154.440000pt;}
.y8d{bottom:154.973333pt;}
.yaa{bottom:159.773333pt;}
.ye3{bottom:165.773333pt;}
.y61{bottom:173.373333pt;}
.y3a{bottom:175.640000pt;}
.y8c{bottom:176.173333pt;}
.ya9{bottom:180.973333pt;}
.ye2{bottom:186.973333pt;}
.y60{bottom:194.560000pt;}
.y39{bottom:196.840000pt;}
.y8b{bottom:197.240000pt;}
.ya8{bottom:202.173333pt;}
.ye1{bottom:208.040000pt;}
.y5f{bottom:215.773333pt;}
.y38{bottom:217.906667pt;}
.y8a{bottom:218.440000pt;}
.ya7{bottom:223.240000pt;}
.ye0{bottom:229.240000pt;}
.yc7{bottom:230.040000pt;}
.y5e{bottom:236.840000pt;}
.y37{bottom:239.106667pt;}
.y89{bottom:239.640000pt;}
.ya6{bottom:244.440000pt;}
.ydf{bottom:250.440000pt;}
.yc6{bottom:251.240000pt;}
.y5d{bottom:258.040000pt;}
.y36{bottom:260.306667pt;}
.y88{bottom:260.706667pt;}
.ya5{bottom:265.640000pt;}
.yde{bottom:271.506667pt;}
.yc5{bottom:272.440000pt;}
.y5c{bottom:279.226667pt;}
.y35{bottom:281.373333pt;}
.y87{bottom:281.893333pt;}
.ya4{bottom:286.706667pt;}
.ydd{bottom:292.706667pt;}
.yc4{bottom:293.506667pt;}
.y5b{bottom:300.293333pt;}
.y34{bottom:302.560000pt;}
.y86{bottom:303.106667pt;}
.ya3{bottom:304.440000pt;}
.ydc{bottom:310.440000pt;}
.yc3{bottom:314.706667pt;}
.y5a{bottom:321.506667pt;}
.y33{bottom:323.773333pt;}
.y85{bottom:324.173333pt;}
.yc2{bottom:335.893333pt;}
.y59{bottom:342.733333pt;}
.y32{bottom:344.866667pt;}
.y84{bottom:345.400000pt;}
.yc1{bottom:357.133333pt;}
.y58{bottom:363.800000pt;}
.y31{bottom:366.066667pt;}
.y83{bottom:366.600000pt;}
.yc0{bottom:378.200000pt;}
.y57{bottom:385.000000pt;}
.y30{bottom:387.266667pt;}
.y82{bottom:387.666667pt;}
.ybf{bottom:399.400000pt;}
.y56{bottom:406.200000pt;}
.y2f{bottom:408.333333pt;}
.y81{bottom:408.866667pt;}
.ybe{bottom:420.600000pt;}
.y55{bottom:427.266667pt;}
.y2e{bottom:429.533333pt;}
.y80{bottom:430.066667pt;}
.ybd{bottom:441.666667pt;}
.y54{bottom:445.000000pt;}
.y2d{bottom:450.733333pt;}
.y7f{bottom:451.133333pt;}
.ybc{bottom:462.866667pt;}
.ya2{bottom:471.666667pt;}
.y7e{bottom:472.333333pt;}
.y2c{bottom:479.800000pt;}
.ybb{bottom:484.066667pt;}
.ydb{bottom:490.866667pt;}
.ya1{bottom:492.866667pt;}
.y7d{bottom:493.533333pt;}
.y2b{bottom:494.733333pt;}
.yba{bottom:505.133333pt;}
.yda{bottom:512.066667pt;}
.y2a{bottom:513.133333pt;}
.ya0{bottom:514.066667pt;}
.y7c{bottom:514.733333pt;}
.yb9{bottom:526.333333pt;}
.y20{bottom:531.533333pt;}
.yd9{bottom:533.133333pt;}
.y9f{bottom:535.133333pt;}
.y7b{bottom:535.800000pt;}
.yb8{bottom:547.533333pt;}
.yd8{bottom:554.333333pt;}
.y9e{bottom:556.333333pt;}
.y7a{bottom:557.000000pt;}
.yb7{bottom:568.600000pt;}
.yd7{bottom:575.533333pt;}
.y9d{bottom:577.533333pt;}
.y79{bottom:578.200000pt;}
.yb6{bottom:589.800000pt;}
.yd6{bottom:596.600000pt;}
.y9c{bottom:598.600000pt;}
.y78{bottom:599.266667pt;}
.yb5{bottom:611.000000pt;}
.yd5{bottom:617.800000pt;}
.y9b{bottom:619.800000pt;}
.y77{bottom:620.466667pt;}
.yb4{bottom:632.066667pt;}
.yd4{bottom:639.000000pt;}
.y9a{bottom:641.000000pt;}
.y76{bottom:641.666667pt;}
.yb3{bottom:653.266667pt;}
.yd3{bottom:660.106667pt;}
.y99{bottom:662.106667pt;}
.y75{bottom:662.773333pt;}
.y53{bottom:665.440000pt;}
.yb2{bottom:674.506667pt;}
.yd2{bottom:681.306667pt;}
.y98{bottom:683.293333pt;}
.y74{bottom:683.973333pt;}
.y52{bottom:686.626667pt;}
.yb1{bottom:695.573333pt;}
.y1f{bottom:700.373333pt;}
.yd1{bottom:702.506667pt;}
.y97{bottom:704.506667pt;}
.y73{bottom:705.173333pt;}
.y51{bottom:707.706667pt;}
.yb0{bottom:716.773333pt;}
.y1e{bottom:717.440000pt;}
.yd0{bottom:723.573333pt;}
.y96{bottom:725.573333pt;}
.y72{bottom:726.240000pt;}
.y50{bottom:728.906667pt;}
.y1d{bottom:735.840000pt;}
.yaf{bottom:737.973333pt;}
.ycf{bottom:744.773333pt;}
.y95{bottom:746.773333pt;}
.y71{bottom:747.440000pt;}
.y4f{bottom:750.106667pt;}
.y1c{bottom:754.240000pt;}
.yae{bottom:755.706667pt;}
.yce{bottom:765.973333pt;}
.y94{bottom:767.973333pt;}
.y70{bottom:768.640000pt;}
.y4e{bottom:771.173333pt;}
.y1b{bottom:772.640000pt;}
.ycd{bottom:787.173333pt;}
.y93{bottom:789.173333pt;}
.y6f{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.y4d{bottom:792.373333pt;}
.ycc{bottom:808.240000pt;}
.y19{bottom:809.440000pt;}
.y92{bottom:810.240000pt;}
.y6e{bottom:810.906667pt;}
.y4c{bottom:813.573333pt;}
.y18{bottom:827.840000pt;}
.ycb{bottom:829.440000pt;}
.y91{bottom:831.440000pt;}
.y6d{bottom:832.106667pt;}
.y4b{bottom:834.640000pt;}
.y17{bottom:846.240000pt;}
.y90{bottom:849.173333pt;}
.yca{bottom:850.640000pt;}
.y6c{bottom:853.306667pt;}
.y4a{bottom:855.840000pt;}
.y16{bottom:864.640000pt;}
.yc9{bottom:871.706667pt;}
.y6b{bottom:874.373333pt;}
.y49{bottom:877.040000pt;}
.y15{bottom:883.040000pt;}
.yc8{bottom:889.440000pt;}
.y6a{bottom:895.573333pt;}
.y48{bottom:898.106667pt;}
.y14{bottom:901.440000pt;}
.y69{bottom:916.773333pt;}
.y47{bottom:919.306667pt;}
.y13{bottom:919.840000pt;}
.y45{bottom:934.893333pt;}
.y68{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y44{bottom:951.840000pt;}
.y11{bottom:956.640000pt;}
.y67{bottom:959.040000pt;}
.y43{bottom:968.640000pt;}
.y10{bottom:975.066667pt;}
.y66{bottom:980.266667pt;}
.y41{bottom:985.600000pt;}
.y65{bottom:1001.333333pt;}
.y3e{bottom:1003.066667pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h11{height:16.800000pt;}
.h13{height:16.933333pt;}
.h12{height:16.966667pt;}
.he{height:18.400000pt;}
.h10{height:33.733333pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h14{height:46.281250pt;}
.h7{height:47.109375pt;}
.h15{height:48.781250pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h16{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h17{height:65.781915pt;}
.hf{height:66.625000pt;}
.h2{height:73.281250pt;}
.hd{height:165.640000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:89.633333pt;}
.wb{width:120.300000pt;}
.wa{width:139.733333pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x22{left:7.200000pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1e{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1f{left:61.866655pt;}
.x20{left:85.066655pt;}
.x1d{left:89.066667pt;}
.x10{left:93.466655pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x23{left:127.500000pt;}
.x24{left:267.240000pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x19{left:370.866655pt;}
.x12{left:381.266655pt;}
.x28{left:382.599988pt;}
.x25{left:393.399988pt;}
.x18{left:407.266655pt;}
.x13{left:411.399988pt;}
.x17{left:444.999988pt;}
.x21{left:453.666655pt;}
.xc{left:555.933333pt;}
.x14{left:562.333322pt;}
.x1c{left:576.506655pt;}
.x11{left:600.626655pt;}
.x1b{left:609.426655pt;}
.x1a{left:626.226655pt;}
.x16{left:631.693322pt;}
.xf{left:634.360000pt;}
.x2{left:737.439988pt;}
.x2a{left:749.293322pt;}
.x26{left:753.439988pt;}
.x15{left:756.106655pt;}
.x29{left:758.506655pt;}
.x27{left:761.293322pt;}
}




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