
    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_ce35675e756eea2045ff37a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_51d684aa0b507409a15a495a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_d0806e273005e290c5f4dfd5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_4d98ee449fa18c47ea1c6e86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_c07fc1c3cb2ab589f15d6405.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_988b5e2c119d8a9431c325e0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b7dcd9ee23c3b491b04a5bf5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.034560px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.341280px;}
.ls5{letter-spacing:33.984000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-88.574400px;}
._1b{margin-left:-15.662400px;}
._24{margin-left:-8.208000px;}
._25{margin-left:-6.264000px;}
._16{margin-left:-4.320000px;}
._13{margin-left:-2.520000px;}
._4{margin-left:-1.432080px;}
._0{width:1.454400px;}
._c{width:2.923200px;}
._18{width:3.931200px;}
._e{width:5.040000px;}
._f{width:6.093600px;}
._10{width:7.159200px;}
._17{width:8.353680px;}
._d{width:9.360000px;}
._a{width:10.872000px;}
._b{width:12.228000px;}
._11{width:13.392000px;}
._12{width:15.129600px;}
._5{width:16.920000px;}
._6{width:19.092000px;}
._26{width:20.137680px;}
._9{width:21.168000px;}
._7{width:22.896000px;}
._8{width:23.976000px;}
._19{width:25.187280px;}
._21{width:29.088000px;}
._1e{width:30.528000px;}
._1f{width:32.001600px;}
._1a{width:33.031200px;}
._20{width:35.568000px;}
._14{width:36.864000px;}
._15{width:38.304000px;}
._1c{width:43.488000px;}
._1d{width:44.496000px;}
._3{width:83.380080px;}
._1{width:109.380000px;}
._23{width:141.960000px;}
._22{width:316.728000px;}
.fc4{color:transparent;}
.fc3{color:rgb(54,54,61);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y37{bottom:6.120000px;}
.ya{bottom:6.300000px;}
.y35{bottom:10.800000px;}
.y89{bottom:18.900000px;}
.yb2{bottom:18.930000px;}
.y94{bottom:18.945000px;}
.y9d{bottom:19.080000px;}
.y8{bottom:21.600000px;}
.y36{bottom:31.500000px;}
.y9{bottom:31.680000px;}
.y8c{bottom:39.600000px;}
.yb1{bottom:39.630000px;}
.y93{bottom:39.645000px;}
.y9c{bottom:39.780000px;}
.y7{bottom:57.780000px;}
.y8b{bottom:60.300000px;}
.y9f{bottom:60.330000px;}
.y92{bottom:60.345000px;}
.ya2{bottom:60.480000px;}
.y6{bottom:78.516000px;}
.y90{bottom:81.000000px;}
.y8e{bottom:81.030000px;}
.ya1{bottom:81.180000px;}
.ya4{bottom:81.225000px;}
.ye5{bottom:115.236000px;}
.ya9{bottom:119.016000px;}
.y34{bottom:123.156000px;}
.y65{bottom:131.616000px;}
.ye4{bottom:135.936000px;}
.ya8{bottom:139.716000px;}
.y33{bottom:143.856000px;}
.y64{bottom:152.310000px;}
.yb9{bottom:155.010000px;}
.ye3{bottom:156.630000px;}
.y8a{bottom:160.410000px;}
.y32{bottom:164.550000px;}
.y63{bottom:173.010000px;}
.ye2{bottom:177.330000px;}
.ya7{bottom:181.110000px;}
.y31{bottom:185.250000px;}
.y62{bottom:193.710000px;}
.ye1{bottom:198.030000px;}
.ya6{bottom:201.810000px;}
.y30{bottom:205.950000px;}
.yb8{bottom:212.070000px;}
.y61{bottom:214.410000px;}
.ye0{bottom:218.730000px;}
.ya5{bottom:222.510000px;}
.y2f{bottom:226.650000px;}
.y60{bottom:235.110000px;}
.y88{bottom:238.350000px;}
.ydf{bottom:239.430000px;}
.ya3{bottom:239.970000px;}
.y2e{bottom:247.350000px;}
.y5f{bottom:255.810000px;}
.yde{bottom:260.130000px;}
.y2d{bottom:268.050000px;}
.yb7{bottom:269.310000px;}
.y5e{bottom:276.510000px;}
.y87{bottom:278.670000px;}
.ydd{bottom:280.830000px;}
.y2c{bottom:288.750000px;}
.y5d{bottom:297.210000px;}
.y86{bottom:299.370000px;}
.ydc{bottom:301.530000px;}
.y2b{bottom:309.495000px;}
.y5c{bottom:317.955000px;}
.y85{bottom:320.115000px;}
.ydb{bottom:322.275000px;}
.yb6{bottom:326.415000px;}
.y2a{bottom:330.195000px;}
.y5b{bottom:338.655000px;}
.y84{bottom:340.815000px;}
.yda{bottom:342.975000px;}
.y29{bottom:350.895000px;}
.y5a{bottom:359.355000px;}
.y83{bottom:361.515000px;}
.yd9{bottom:363.675000px;}
.y28{bottom:371.595000px;}
.y59{bottom:380.055000px;}
.y82{bottom:382.215000px;}
.yd8{bottom:384.375000px;}
.yb5{bottom:387.615000px;}
.y27{bottom:392.295000px;}
.y58{bottom:400.755000px;}
.y81{bottom:402.915000px;}
.yd7{bottom:405.075000px;}
.y26{bottom:412.995000px;}
.ya0{bottom:416.415000px;}
.y57{bottom:421.455000px;}
.y80{bottom:423.615000px;}
.yd6{bottom:425.775000px;}
.y25{bottom:433.695000px;}
.yb4{bottom:441.075000px;}
.y56{bottom:442.155000px;}
.y7f{bottom:444.315000px;}
.yd5{bottom:446.475000px;}
.y24{bottom:454.395000px;}
.y55{bottom:462.855000px;}
.y7e{bottom:465.015000px;}
.yd4{bottom:467.175000px;}
.y23{bottom:475.095000px;}
.y54{bottom:483.555000px;}
.y7d{bottom:485.715000px;}
.yd3{bottom:487.875000px;}
.y22{bottom:495.795000px;}
.yb3{bottom:498.315000px;}
.y53{bottom:504.255000px;}
.y7c{bottom:506.415000px;}
.yd2{bottom:508.575000px;}
.y9e{bottom:515.055000px;}
.y21{bottom:516.495000px;}
.y52{bottom:524.955000px;}
.yd1{bottom:529.275000px;}
.y20{bottom:537.195000px;}
.y7b{bottom:542.055000px;}
.y51{bottom:545.655000px;}
.yd0{bottom:549.975000px;}
.yb0{bottom:555.375000px;}
.y1f{bottom:557.895000px;}
.y7a{bottom:562.785000px;}
.y50{bottom:566.385000px;}
.ycf{bottom:570.705000px;}
.ye6{bottom:571.065000px;}
.y1e{bottom:578.625000px;}
.y79{bottom:583.485000px;}
.y4f{bottom:587.085000px;}
.yce{bottom:591.405000px;}
.y9b{bottom:592.845000px;}
.y1d{bottom:599.325000px;}
.y78{bottom:604.185000px;}
.y4e{bottom:607.785000px;}
.ycd{bottom:612.105000px;}
.yaf{bottom:612.465000px;}
.y1c{bottom:620.025000px;}
.y77{bottom:624.885000px;}
.y4d{bottom:628.485000px;}
.ycc{bottom:632.805000px;}
.y1b{bottom:640.545000px;}
.y4c{bottom:649.185000px;}
.yae{bottom:652.965000px;}
.ycb{bottom:653.505000px;}
.y9a{bottom:654.045000px;}
.y76{bottom:660.705000px;}
.y1a{bottom:661.245000px;}
.y4b{bottom:669.885000px;}
.yca{bottom:674.205000px;}
.y99{bottom:674.745000px;}
.y75{bottom:681.405000px;}
.y19{bottom:681.945000px;}
.y4a{bottom:690.585000px;}
.yc9{bottom:694.905000px;}
.y98{bottom:695.445000px;}
.y74{bottom:701.925000px;}
.y18{bottom:702.645000px;}
.yad{bottom:706.425000px;}
.y49{bottom:711.285000px;}
.yc8{bottom:715.425000px;}
.y97{bottom:716.145000px;}
.y73{bottom:722.625000px;}
.y17{bottom:723.345000px;}
.y48{bottom:731.985000px;}
.yc7{bottom:736.125000px;}
.y72{bottom:743.325000px;}
.y16{bottom:744.045000px;}
.y96{bottom:751.785000px;}
.y47{bottom:752.685000px;}
.yc6{bottom:756.825000px;}
.y71{bottom:764.025000px;}
.y15{bottom:764.745000px;}
.y46{bottom:773.385000px;}
.yc5{bottom:777.525000px;}
.yac{bottom:784.365000px;}
.y70{bottom:784.725000px;}
.y14{bottom:785.445000px;}
.y95{bottom:787.425000px;}
.y45{bottom:794.085000px;}
.yc4{bottom:798.225000px;}
.y91{bottom:805.065000px;}
.y6f{bottom:805.425000px;}
.y13{bottom:806.145000px;}
.y44{bottom:814.830000px;}
.yc3{bottom:818.970000px;}
.y6e{bottom:826.170000px;}
.y12{bottom:826.890000px;}
.y43{bottom:835.530000px;}
.yc2{bottom:839.670000px;}
.y6d{bottom:846.870000px;}
.y11{bottom:847.590000px;}
.y42{bottom:856.230000px;}
.yc1{bottom:860.370000px;}
.yab{bottom:862.170000px;}
.y10{bottom:868.290000px;}
.y41{bottom:876.930000px;}
.yc0{bottom:881.070000px;}
.y6c{bottom:882.690000px;}
.y8f{bottom:882.870000px;}
.yf{bottom:888.990000px;}
.y40{bottom:897.630000px;}
.ybf{bottom:901.770000px;}
.y6b{bottom:903.390000px;}
.ye{bottom:909.690000px;}
.y3f{bottom:918.330000px;}
.ybe{bottom:922.470000px;}
.y6a{bottom:924.090000px;}
.yd{bottom:930.390000px;}
.y3e{bottom:939.030000px;}
.yaa{bottom:940.110000px;}
.ybd{bottom:943.170000px;}
.y69{bottom:944.790000px;}
.yc{bottom:951.090000px;}
.y3d{bottom:959.730000px;}
.ybc{bottom:963.870000px;}
.y68{bottom:965.490000px;}
.y5{bottom:971.790000px;}
.y3c{bottom:980.430000px;}
.y8d{bottom:981.510000px;}
.ybb{bottom:984.570000px;}
.y67{bottom:986.190000px;}
.y3b{bottom:1001.130000px;}
.yba{bottom:1002.210000px;}
.y66{bottom:1006.890000px;}
.y4{bottom:1013.550000px;}
.y3a{bottom:1021.830000px;}
.y39{bottom:1042.530000px;}
.y3{bottom:1055.850000px;}
.y38{bottom:1063.260000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1115.820000px;}
.h9{height:35.640000px;}
.h11{height:35.820000px;}
.h5{height:49.500000px;}
.h2{height:50.800781px;}
.h4{height:51.574219px;}
.h8{height:52.417969px;}
.h7{height:54.316406px;}
.h13{height:56.340000px;}
.h12{height:56.376000px;}
.he{height:56.520000px;}
.h6{height:58.320000px;}
.h1{height:59.436914px;}
.h3{height:67.565039px;}
.ha{height:77.040000px;}
.hd{height:77.076000px;}
.hc{height:97.740000px;}
.hb{height:97.776000px;}
.hf{height:97.920000px;}
.h10{height:97.956000px;}
.h0{height:1188.000000px;}
.w2{width:80.136000px;}
.wd{width:108.540000px;}
.w10{width:109.476000px;}
.w3{width:120.636000px;}
.w6{width:120.816000px;}
.wa{width:122.040000px;}
.w7{width:140.976000px;}
.w13{width:181.470000px;}
.w11{width:186.150000px;}
.w8{width:215.130000px;}
.w5{width:235.470000px;}
.we{width:248.970000px;}
.w12{width:262.470000px;}
.w9{width:269.130000px;}
.wc{width:284.070000px;}
.w4{width:296.130000px;}
.wb{width:308.415000px;}
.wf{width:363.855000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:7.776000px;}
.x7{left:9.719986px;}
.x8{left:38.339986px;}
.x1b{left:89.820000px;}
.x16{left:96.660000px;}
.x5{left:106.955986px;}
.xc{left:108.035986px;}
.xa{left:128.015986px;}
.x1{left:176.249986px;}
.x18{left:177.690000px;}
.x14{left:189.029986px;}
.x26{left:195.869986px;}
.x23{left:200.010000px;}
.x3{left:206.309986px;}
.xf{left:207.389986px;}
.x1c{left:211.350000px;}
.x15{left:216.029986px;}
.x21{left:218.190000px;}
.x1f{left:231.690000px;}
.x4{left:236.549986px;}
.x2{left:284.249986px;}
.x19{left:299.235000px;}
.x11{left:303.194986px;}
.xd{left:334.874986px;}
.x10{left:349.994986px;}
.x1d{left:353.235000px;}
.x12{left:355.574986px;}
.x24{left:386.895000px;}
.x13{left:400.394986px;}
.x9{left:423.074986px;}
.xb{left:440.354986px;}
.x22{left:467.895000px;}
.xe{left:488.984986px;}
.x20{left:540.825000px;}
.x1e{left:569.265000px;}
.x1a{left:596.265000px;}
.x25{left:650.265000px;}
.x6{left:851.909986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.030720pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls5{letter-spacing:30.208000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-78.732800pt;}
._1b{margin-left:-13.922133pt;}
._24{margin-left:-7.296000pt;}
._25{margin-left:-5.568000pt;}
._16{margin-left:-3.840000pt;}
._13{margin-left:-2.240000pt;}
._4{margin-left:-1.272960pt;}
._0{width:1.292800pt;}
._c{width:2.598400pt;}
._18{width:3.494400pt;}
._e{width:4.480000pt;}
._f{width:5.416533pt;}
._10{width:6.363733pt;}
._17{width:7.425493pt;}
._d{width:8.320000pt;}
._a{width:9.664000pt;}
._b{width:10.869333pt;}
._11{width:11.904000pt;}
._12{width:13.448533pt;}
._5{width:15.040000pt;}
._6{width:16.970667pt;}
._26{width:17.900160pt;}
._9{width:18.816000pt;}
._7{width:20.352000pt;}
._8{width:21.312000pt;}
._19{width:22.388693pt;}
._21{width:25.856000pt;}
._1e{width:27.136000pt;}
._1f{width:28.445867pt;}
._1a{width:29.361067pt;}
._20{width:31.616000pt;}
._14{width:32.768000pt;}
._15{width:34.048000pt;}
._1c{width:38.656000pt;}
._1d{width:39.552000pt;}
._3{width:74.115627pt;}
._1{width:97.226667pt;}
._23{width:126.186667pt;}
._22{width:281.536000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:5.440000pt;}
.ya{bottom:5.600000pt;}
.y35{bottom:9.600000pt;}
.y89{bottom:16.800000pt;}
.yb2{bottom:16.826667pt;}
.y94{bottom:16.840000pt;}
.y9d{bottom:16.960000pt;}
.y8{bottom:19.200000pt;}
.y36{bottom:28.000000pt;}
.y9{bottom:28.160000pt;}
.y8c{bottom:35.200000pt;}
.yb1{bottom:35.226667pt;}
.y93{bottom:35.240000pt;}
.y9c{bottom:35.360000pt;}
.y7{bottom:51.360000pt;}
.y8b{bottom:53.600000pt;}
.y9f{bottom:53.626667pt;}
.y92{bottom:53.640000pt;}
.ya2{bottom:53.760000pt;}
.y6{bottom:69.792000pt;}
.y90{bottom:72.000000pt;}
.y8e{bottom:72.026667pt;}
.ya1{bottom:72.160000pt;}
.ya4{bottom:72.200000pt;}
.ye5{bottom:102.432000pt;}
.ya9{bottom:105.792000pt;}
.y34{bottom:109.472000pt;}
.y65{bottom:116.992000pt;}
.ye4{bottom:120.832000pt;}
.ya8{bottom:124.192000pt;}
.y33{bottom:127.872000pt;}
.y64{bottom:135.386667pt;}
.yb9{bottom:137.786667pt;}
.ye3{bottom:139.226667pt;}
.y8a{bottom:142.586667pt;}
.y32{bottom:146.266667pt;}
.y63{bottom:153.786667pt;}
.ye2{bottom:157.626667pt;}
.ya7{bottom:160.986667pt;}
.y31{bottom:164.666667pt;}
.y62{bottom:172.186667pt;}
.ye1{bottom:176.026667pt;}
.ya6{bottom:179.386667pt;}
.y30{bottom:183.066667pt;}
.yb8{bottom:188.506667pt;}
.y61{bottom:190.586667pt;}
.ye0{bottom:194.426667pt;}
.ya5{bottom:197.786667pt;}
.y2f{bottom:201.466667pt;}
.y60{bottom:208.986667pt;}
.y88{bottom:211.866667pt;}
.ydf{bottom:212.826667pt;}
.ya3{bottom:213.306667pt;}
.y2e{bottom:219.866667pt;}
.y5f{bottom:227.386667pt;}
.yde{bottom:231.226667pt;}
.y2d{bottom:238.266667pt;}
.yb7{bottom:239.386667pt;}
.y5e{bottom:245.786667pt;}
.y87{bottom:247.706667pt;}
.ydd{bottom:249.626667pt;}
.y2c{bottom:256.666667pt;}
.y5d{bottom:264.186667pt;}
.y86{bottom:266.106667pt;}
.ydc{bottom:268.026667pt;}
.y2b{bottom:275.106667pt;}
.y5c{bottom:282.626667pt;}
.y85{bottom:284.546667pt;}
.ydb{bottom:286.466667pt;}
.yb6{bottom:290.146667pt;}
.y2a{bottom:293.506667pt;}
.y5b{bottom:301.026667pt;}
.y84{bottom:302.946667pt;}
.yda{bottom:304.866667pt;}
.y29{bottom:311.906667pt;}
.y5a{bottom:319.426667pt;}
.y83{bottom:321.346667pt;}
.yd9{bottom:323.266667pt;}
.y28{bottom:330.306667pt;}
.y59{bottom:337.826667pt;}
.y82{bottom:339.746667pt;}
.yd8{bottom:341.666667pt;}
.yb5{bottom:344.546667pt;}
.y27{bottom:348.706667pt;}
.y58{bottom:356.226667pt;}
.y81{bottom:358.146667pt;}
.yd7{bottom:360.066667pt;}
.y26{bottom:367.106667pt;}
.ya0{bottom:370.146667pt;}
.y57{bottom:374.626667pt;}
.y80{bottom:376.546667pt;}
.yd6{bottom:378.466667pt;}
.y25{bottom:385.506667pt;}
.yb4{bottom:392.066667pt;}
.y56{bottom:393.026667pt;}
.y7f{bottom:394.946667pt;}
.yd5{bottom:396.866667pt;}
.y24{bottom:403.906667pt;}
.y55{bottom:411.426667pt;}
.y7e{bottom:413.346667pt;}
.yd4{bottom:415.266667pt;}
.y23{bottom:422.306667pt;}
.y54{bottom:429.826667pt;}
.y7d{bottom:431.746667pt;}
.yd3{bottom:433.666667pt;}
.y22{bottom:440.706667pt;}
.yb3{bottom:442.946667pt;}
.y53{bottom:448.226667pt;}
.y7c{bottom:450.146667pt;}
.yd2{bottom:452.066667pt;}
.y9e{bottom:457.826667pt;}
.y21{bottom:459.106667pt;}
.y52{bottom:466.626667pt;}
.yd1{bottom:470.466667pt;}
.y20{bottom:477.506667pt;}
.y7b{bottom:481.826667pt;}
.y51{bottom:485.026667pt;}
.yd0{bottom:488.866667pt;}
.yb0{bottom:493.666667pt;}
.y1f{bottom:495.906667pt;}
.y7a{bottom:500.253333pt;}
.y50{bottom:503.453333pt;}
.ycf{bottom:507.293333pt;}
.ye6{bottom:507.613333pt;}
.y1e{bottom:514.333333pt;}
.y79{bottom:518.653333pt;}
.y4f{bottom:521.853333pt;}
.yce{bottom:525.693333pt;}
.y9b{bottom:526.973333pt;}
.y1d{bottom:532.733333pt;}
.y78{bottom:537.053333pt;}
.y4e{bottom:540.253333pt;}
.ycd{bottom:544.093333pt;}
.yaf{bottom:544.413333pt;}
.y1c{bottom:551.133333pt;}
.y77{bottom:555.453333pt;}
.y4d{bottom:558.653333pt;}
.ycc{bottom:562.493333pt;}
.y1b{bottom:569.373333pt;}
.y4c{bottom:577.053333pt;}
.yae{bottom:580.413333pt;}
.ycb{bottom:580.893333pt;}
.y9a{bottom:581.373333pt;}
.y76{bottom:587.293333pt;}
.y1a{bottom:587.773333pt;}
.y4b{bottom:595.453333pt;}
.yca{bottom:599.293333pt;}
.y99{bottom:599.773333pt;}
.y75{bottom:605.693333pt;}
.y19{bottom:606.173333pt;}
.y4a{bottom:613.853333pt;}
.yc9{bottom:617.693333pt;}
.y98{bottom:618.173333pt;}
.y74{bottom:623.933333pt;}
.y18{bottom:624.573333pt;}
.yad{bottom:627.933333pt;}
.y49{bottom:632.253333pt;}
.yc8{bottom:635.933333pt;}
.y97{bottom:636.573333pt;}
.y73{bottom:642.333333pt;}
.y17{bottom:642.973333pt;}
.y48{bottom:650.653333pt;}
.yc7{bottom:654.333333pt;}
.y72{bottom:660.733333pt;}
.y16{bottom:661.373333pt;}
.y96{bottom:668.253333pt;}
.y47{bottom:669.053333pt;}
.yc6{bottom:672.733333pt;}
.y71{bottom:679.133333pt;}
.y15{bottom:679.773333pt;}
.y46{bottom:687.453333pt;}
.yc5{bottom:691.133333pt;}
.yac{bottom:697.213333pt;}
.y70{bottom:697.533333pt;}
.y14{bottom:698.173333pt;}
.y95{bottom:699.933333pt;}
.y45{bottom:705.853333pt;}
.yc4{bottom:709.533333pt;}
.y91{bottom:715.613333pt;}
.y6f{bottom:715.933333pt;}
.y13{bottom:716.573333pt;}
.y44{bottom:724.293333pt;}
.yc3{bottom:727.973333pt;}
.y6e{bottom:734.373333pt;}
.y12{bottom:735.013333pt;}
.y43{bottom:742.693333pt;}
.yc2{bottom:746.373333pt;}
.y6d{bottom:752.773333pt;}
.y11{bottom:753.413333pt;}
.y42{bottom:761.093333pt;}
.yc1{bottom:764.773333pt;}
.yab{bottom:766.373333pt;}
.y10{bottom:771.813333pt;}
.y41{bottom:779.493333pt;}
.yc0{bottom:783.173333pt;}
.y6c{bottom:784.613333pt;}
.y8f{bottom:784.773333pt;}
.yf{bottom:790.213333pt;}
.y40{bottom:797.893333pt;}
.ybf{bottom:801.573333pt;}
.y6b{bottom:803.013333pt;}
.ye{bottom:808.613333pt;}
.y3f{bottom:816.293333pt;}
.ybe{bottom:819.973333pt;}
.y6a{bottom:821.413333pt;}
.yd{bottom:827.013333pt;}
.y3e{bottom:834.693333pt;}
.yaa{bottom:835.653333pt;}
.ybd{bottom:838.373333pt;}
.y69{bottom:839.813333pt;}
.yc{bottom:845.413333pt;}
.y3d{bottom:853.093333pt;}
.ybc{bottom:856.773333pt;}
.y68{bottom:858.213333pt;}
.y5{bottom:863.813333pt;}
.y3c{bottom:871.493333pt;}
.y8d{bottom:872.453333pt;}
.ybb{bottom:875.173333pt;}
.y67{bottom:876.613333pt;}
.y3b{bottom:889.893333pt;}
.yba{bottom:890.853333pt;}
.y66{bottom:895.013333pt;}
.y4{bottom:900.933333pt;}
.y3a{bottom:908.293333pt;}
.y39{bottom:926.693333pt;}
.y3{bottom:938.533333pt;}
.y38{bottom:945.120000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:991.840000pt;}
.h9{height:31.680000pt;}
.h11{height:31.840000pt;}
.h5{height:44.000000pt;}
.h2{height:45.156250pt;}
.h4{height:45.843750pt;}
.h8{height:46.593750pt;}
.h7{height:48.281250pt;}
.h13{height:50.080000pt;}
.h12{height:50.112000pt;}
.he{height:50.240000pt;}
.h6{height:51.840000pt;}
.h1{height:52.832812pt;}
.h3{height:60.057813pt;}
.ha{height:68.480000pt;}
.hd{height:68.512000pt;}
.hc{height:86.880000pt;}
.hb{height:86.912000pt;}
.hf{height:87.040000pt;}
.h10{height:87.072000pt;}
.h0{height:1056.000000pt;}
.w2{width:71.232000pt;}
.wd{width:96.480000pt;}
.w10{width:97.312000pt;}
.w3{width:107.232000pt;}
.w6{width:107.392000pt;}
.wa{width:108.480000pt;}
.w7{width:125.312000pt;}
.w13{width:161.306667pt;}
.w11{width:165.466667pt;}
.w8{width:191.226667pt;}
.w5{width:209.306667pt;}
.we{width:221.306667pt;}
.w12{width:233.306667pt;}
.w9{width:239.226667pt;}
.wc{width:252.506667pt;}
.w4{width:263.226667pt;}
.wb{width:274.146667pt;}
.wf{width:323.426667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.912000pt;}
.x7{left:8.639988pt;}
.x8{left:34.079988pt;}
.x1b{left:79.840000pt;}
.x16{left:85.920000pt;}
.x5{left:95.071988pt;}
.xc{left:96.031988pt;}
.xa{left:113.791988pt;}
.x1{left:156.666655pt;}
.x18{left:157.946667pt;}
.x14{left:168.026655pt;}
.x26{left:174.106655pt;}
.x23{left:177.786667pt;}
.x3{left:183.386655pt;}
.xf{left:184.346655pt;}
.x1c{left:187.866667pt;}
.x15{left:192.026655pt;}
.x21{left:193.946667pt;}
.x1f{left:205.946667pt;}
.x4{left:210.266655pt;}
.x2{left:252.666655pt;}
.x19{left:265.986667pt;}
.x11{left:269.506655pt;}
.xd{left:297.666655pt;}
.x10{left:311.106655pt;}
.x1d{left:313.986667pt;}
.x12{left:316.066655pt;}
.x24{left:343.906667pt;}
.x13{left:355.906655pt;}
.x9{left:376.066655pt;}
.xb{left:391.426655pt;}
.x22{left:415.906667pt;}
.xe{left:434.653321pt;}
.x20{left:480.733333pt;}
.x1e{left:506.013333pt;}
.x1a{left:530.013333pt;}
.x25{left:578.013333pt;}
.x6{left:757.253321pt;}
}




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