
    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_2b6b6cbd8a735dce1697e50f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050293;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_57ea760b526e10cffcd43191.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_4628dab6de7296aa4485b117.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_162ceb900b2f9084bcca222a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_4aabc574317b7cdc867a8b45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_f1049a13addcc33598f8aa09.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_4c1596a711795c9f1d865506.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_b3db7dcd839a85516d657230.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d46e677760761de9773b34e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050293;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:ffa;src:url('chunks/assets/font_2a87747af215c9bb5aef8ba6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912109;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:ffb;src:url('chunks/assets/font_e9de172fd6bc6096c2db8ab9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.912109;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;}
.m3{transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls15{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.074937px;}
.lsf{letter-spacing:-0.028080px;}
.lsd{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.074937px;}
.ls20{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.720000px;}
.ls1e{letter-spacing:5.040000px;}
.ls3{letter-spacing:7.200000px;}
.lsc{letter-spacing:7.920000px;}
.lsa{letter-spacing:15.120000px;}
.ls8{letter-spacing:18.720000px;}
.ls9{letter-spacing:19.440000px;}
.ls17{letter-spacing:28.800000px;}
.ls19{letter-spacing:30.960000px;}
.ls6{letter-spacing:36.720000px;}
.lsb{letter-spacing:42.480000px;}
.ls2{letter-spacing:47.520000px;}
.ls1{letter-spacing:54.000000px;}
.ls1a{letter-spacing:590.196000px;}
.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;}
}
.ws0{word-spacing:-26.424000px;}
.ws2{word-spacing:-21.031920px;}
.ws9{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws1{word-spacing:-14.970240px;}
.wsa{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:156.056511px;}
.wse{word-spacing:308.808296px;}
.wsd{word-spacing:323.915615px;}
._26{margin-left:-6.762748px;}
._0{margin-left:-1.188000px;}
._2{width:1.052160px;}
._8{width:2.935680px;}
._1a{width:4.028640px;}
._1c{width:5.154720px;}
._a{width:6.276000px;}
._9{width:7.632000px;}
._15{width:8.967840px;}
._7{width:10.728000px;}
._19{width:11.907840px;}
._13{width:13.176000px;}
._f{width:14.904000px;}
._10{width:16.344000px;}
._1{width:18.648000px;}
._e{width:19.728000px;}
._17{width:21.276000px;}
._1d{width:22.359840px;}
._18{width:23.472000px;}
._16{width:24.912000px;}
._c{width:25.992000px;}
._d{width:27.183840px;}
._6{width:29.016000px;}
._21{width:30.384000px;}
._22{width:31.563840px;}
._28{width:33.228000px;}
._23{width:34.644000px;}
._14{width:35.832000px;}
._b{width:37.560000px;}
._1e{width:38.664000px;}
._1b{width:39.744000px;}
._11{width:41.832000px;}
._12{width:43.143840px;}
._5{width:47.736000px;}
._4{width:52.983840px;}
._3{width:54.048000px;}
._27{width:55.672320px;}
._1f{width:61.488000px;}
._20{width:62.568000px;}
._25{width:354.077798px;}
._24{width:593.472000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc5{color:rgb(32,33,36);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.104586px;}
.fs5{font-size:59.949680px;}
.fs6{font-size:60.099554px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:71.939616px;}
.fs7{font-size:71.944124px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.960000px;}
.y6a{bottom:3.990000px;}
.y3{bottom:7.020000px;}
.y7{bottom:11.340000px;}
.y55{bottom:14.220000px;}
.y85{bottom:22.480725px;}
.y56{bottom:24.660000px;}
.y59{bottom:25.380000px;}
.y60{bottom:25.560000px;}
.y67{bottom:25.590000px;}
.y2{bottom:28.260000px;}
.y83{bottom:46.910245px;}
.y7b{bottom:64.520466px;}
.y8{bottom:71.136000px;}
.y6{bottom:86.796000px;}
.y7c{bottom:96.406202px;}
.y53{bottom:121.176000px;}
.y7d{bottom:128.291939px;}
.ya2{bottom:146.016000px;}
.y52{bottom:152.310000px;}
.y7e{bottom:160.209149px;}
.y84{bottom:167.747823px;}
.y31{bottom:170.490000px;}
.ya1{bottom:176.970000px;}
.y51{bottom:183.270000px;}
.y79{bottom:186.690000px;}
.y7f{bottom:192.102379px;}
.y30{bottom:206.670000px;}
.ya0{bottom:208.110000px;}
.y50{bottom:214.410000px;}
.y78{bottom:217.830000px;}
.y80{bottom:223.980621px;}
.y2f{bottom:233.310000px;}
.y9f{bottom:239.070000px;}
.y4f{bottom:245.370000px;}
.y8b{bottom:247.170000px;}
.y77{bottom:248.790000px;}
.y81{bottom:255.873851px;}
.y2e{bottom:257.070000px;}
.y9e{bottom:270.210000px;}
.y4e{bottom:276.510000px;}
.y8a{bottom:279.030000px;}
.y76{bottom:279.930000px;}
.y2d{bottom:281.010000px;}
.y82{bottom:287.752093px;}
.y9d{bottom:301.170000px;}
.y2c{bottom:304.770000px;}
.y4d{bottom:307.470000px;}
.y75{bottom:310.890000px;}
.y86{bottom:316.797684px;}
.y2b{bottom:328.530000px;}
.y9c{bottom:332.310000px;}
.y4c{bottom:338.655000px;}
.y74{bottom:342.075000px;}
.y2a{bottom:352.335000px;}
.y9b{bottom:363.315000px;}
.y4b{bottom:369.615000px;}
.y73{bottom:373.035000px;}
.y29{bottom:376.275000px;}
.y9a{bottom:394.455000px;}
.y28{bottom:400.035000px;}
.y4a{bottom:400.755000px;}
.y72{bottom:404.175000px;}
.y27{bottom:423.795000px;}
.y99{bottom:425.415000px;}
.y49{bottom:431.715000px;}
.y71{bottom:435.135000px;}
.y26{bottom:447.555000px;}
.y6e{bottom:452.595000px;}
.y98{bottom:456.555000px;}
.y48{bottom:462.855000px;}
.y25{bottom:471.495000px;}
.y70{bottom:474.195000px;}
.y97{bottom:487.515000px;}
.y47{bottom:493.815000px;}
.y24{bottom:495.255000px;}
.y6f{bottom:495.615000px;}
.y6b{bottom:517.035000px;}
.y96{bottom:518.655000px;}
.y23{bottom:519.015000px;}
.yb6{bottom:523.335000px;}
.y46{bottom:524.955000px;}
.y6d{bottom:538.455000px;}
.y22{bottom:542.775000px;}
.y95{bottom:549.615000px;}
.yb5{bottom:553.215000px;}
.y45{bottom:555.915000px;}
.y6c{bottom:559.875000px;}
.y21{bottom:566.715000px;}
.y94{bottom:580.755000px;}
.y66{bottom:581.295000px;}
.yb4{bottom:584.355000px;}
.y44{bottom:587.055000px;}
.y20{bottom:590.475000px;}
.y69{bottom:602.895000px;}
.y93{bottom:611.745000px;}
.y1f{bottom:614.265000px;}
.yb3{bottom:615.345000px;}
.y43{bottom:618.045000px;}
.y68{bottom:624.345000px;}
.y1e{bottom:638.025000px;}
.y92{bottom:642.885000px;}
.y63{bottom:645.765000px;}
.yb2{bottom:646.485000px;}
.y42{bottom:649.185000px;}
.y89{bottom:660.885000px;}
.y1d{bottom:661.785000px;}
.y65{bottom:667.185000px;}
.y91{bottom:676.185000px;}
.yb1{bottom:677.445000px;}
.y41{bottom:680.145000px;}
.y1c{bottom:685.725000px;}
.y88{bottom:687.525000px;}
.y64{bottom:688.605000px;}
.y90{bottom:702.825000px;}
.yb0{bottom:708.585000px;}
.y1b{bottom:709.485000px;}
.y5f{bottom:710.025000px;}
.y40{bottom:711.285000px;}
.y87{bottom:716.325000px;}
.y7a{bottom:721.427099px;}
.y8f{bottom:726.585000px;}
.y62{bottom:731.625000px;}
.y1a{bottom:733.245000px;}
.yaf{bottom:739.545000px;}
.y3f{bottom:742.245000px;}
.y8e{bottom:750.525000px;}
.y61{bottom:753.045000px;}
.y19{bottom:757.005000px;}
.yae{bottom:770.685000px;}
.y3e{bottom:773.385000px;}
.y5c{bottom:774.465000px;}
.y18{bottom:780.945000px;}
.y8d{bottom:783.825000px;}
.y5e{bottom:795.885000px;}
.yad{bottom:801.645000px;}
.y3d{bottom:804.345000px;}
.y17{bottom:804.705000px;}
.y8c{bottom:815.505000px;}
.y5d{bottom:817.305000px;}
.y16{bottom:828.465000px;}
.yac{bottom:832.785000px;}
.y3c{bottom:835.305000px;}
.y58{bottom:838.725000px;}
.y15{bottom:852.225000px;}
.y5b{bottom:860.145000px;}
.yab{bottom:863.745000px;}
.y3b{bottom:866.445000px;}
.y14{bottom:876.210000px;}
.y5a{bottom:881.790000px;}
.yaa{bottom:894.930000px;}
.y3a{bottom:897.450000px;}
.y13{bottom:899.970000px;}
.y54{bottom:903.210000px;}
.y12{bottom:923.730000px;}
.ya9{bottom:925.890000px;}
.y39{bottom:928.590000px;}
.y11{bottom:947.490000px;}
.ya8{bottom:956.850000px;}
.y38{bottom:959.550000px;}
.y10{bottom:971.430000px;}
.ya7{bottom:987.990000px;}
.y37{bottom:990.690000px;}
.yf{bottom:995.190000px;}
.ye{bottom:1018.950000px;}
.y36{bottom:1021.650000px;}
.yd{bottom:1042.710000px;}
.ya6{bottom:1050.090000px;}
.y35{bottom:1052.790000px;}
.yc{bottom:1066.650000px;}
.ya5{bottom:1081.050000px;}
.y34{bottom:1083.750000px;}
.yb{bottom:1090.410000px;}
.ya4{bottom:1112.190000px;}
.y33{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y9{bottom:1143.000000px;}
.y32{bottom:1145.880000px;}
.ya3{bottom:1146.960000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.he{height:20.700000px;}
.hf{height:20.736000px;}
.h5{height:27.000000px;}
.h18{height:37.778105px;}
.hc{height:41.400000px;}
.h14{height:41.859396px;}
.h15{height:41.964044px;}
.h17{height:50.231275px;}
.h16{height:50.234422px;}
.h9{height:51.996094px;}
.h2{height:53.460000px;}
.h8{height:59.343750px;}
.ha{height:60.082031px;}
.h7{height:62.261719px;}
.h10{height:63.540000px;}
.h11{height:63.720000px;}
.hd{height:63.756000px;}
.h4{height:65.884219px;}
.hb{height:67.614961px;}
.h12{height:69.432187px;}
.h19{height:70.295977px;}
.h6{height:72.846211px;}
.h3{height:90.123047px;}
.h13{height:341.713256px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:95.796000px;}
.w5{width:106.416000px;}
.w8{width:113.220000px;}
.w7{width:139.536000px;}
.wa{width:179.670000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w2{width:498.675000px;}
.wb{width:575.553000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:24.120000px;}
.x25{left:26.100000px;}
.x19{left:28.260000px;}
.x26{left:30.990000px;}
.x1b{left:32.400000px;}
.x1f{left:33.480000px;}
.x1d{left:36.030000px;}
.x9{left:40.680000px;}
.x29{left:43.803486px;}
.x21{left:47.880000px;}
.x24{left:49.140000px;}
.x20{left:51.660000px;}
.x2a{left:67.784863px;}
.x23{left:78.480000px;}
.x22{left:80.640000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x5{left:106.415987px;}
.x32{left:109.295987px;}
.x33{left:119.735987px;}
.xc{left:126.035987px;}
.x2f{left:141.515987px;}
.x2e{left:143.315987px;}
.xb{left:147.815987px;}
.x11{left:148.895987px;}
.x14{left:156.449987px;}
.x28{left:170.035101px;}
.x17{left:173.549987px;}
.x12{left:189.389987px;}
.x18{left:191.910000px;}
.x2{left:197.310000px;}
.x13{left:222.509987px;}
.x2b{left:251.954326px;}
.x2c{left:253.782898px;}
.x1{left:278.175000px;}
.x7{left:297.795000px;}
.x10{left:306.434987px;}
.x1a{left:332.175000px;}
.xf{left:345.674987px;}
.x15{left:369.434987px;}
.x35{left:376.634987px;}
.x8{left:390.855000px;}
.xe{left:395.894987px;}
.x34{left:397.874987px;}
.x1c{left:446.115000px;}
.xd{left:457.094987px;}
.x30{left:470.264987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x1e{left:542.805000px;}
.x16{left:740.489987px;}
.x2d{left:750.749987px;}
.x31{left:755.249987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.066611pt;}
.lsf{letter-spacing:-0.024960pt;}
.lsd{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.066611pt;}
.ls20{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls3{letter-spacing:6.400000pt;}
.lsc{letter-spacing:7.040000pt;}
.lsa{letter-spacing:13.440000pt;}
.ls8{letter-spacing:16.640000pt;}
.ls9{letter-spacing:17.280000pt;}
.ls17{letter-spacing:25.600000pt;}
.ls19{letter-spacing:27.520000pt;}
.ls6{letter-spacing:32.640000pt;}
.lsb{letter-spacing:37.760000pt;}
.ls2{letter-spacing:42.240000pt;}
.ls1{letter-spacing:48.000000pt;}
.ls1a{letter-spacing:524.618667pt;}
.ws0{word-spacing:-23.488000pt;}
.ws2{word-spacing:-18.695040pt;}
.ws9{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.306880pt;}
.wsa{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:138.716899pt;}
.wse{word-spacing:274.496263pt;}
.wsd{word-spacing:287.924991pt;}
._26{margin-left:-6.011331pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.935253pt;}
._8{width:2.609493pt;}
._1a{width:3.581013pt;}
._1c{width:4.581973pt;}
._a{width:5.578667pt;}
._9{width:6.784000pt;}
._15{width:7.971413pt;}
._7{width:9.536000pt;}
._19{width:10.584747pt;}
._13{width:11.712000pt;}
._f{width:13.248000pt;}
._10{width:14.528000pt;}
._1{width:16.576000pt;}
._e{width:17.536000pt;}
._17{width:18.912000pt;}
._1d{width:19.875413pt;}
._18{width:20.864000pt;}
._16{width:22.144000pt;}
._c{width:23.104000pt;}
._d{width:24.163413pt;}
._6{width:25.792000pt;}
._21{width:27.008000pt;}
._22{width:28.056747pt;}
._28{width:29.536000pt;}
._23{width:30.794667pt;}
._14{width:31.850667pt;}
._b{width:33.386667pt;}
._1e{width:34.368000pt;}
._1b{width:35.328000pt;}
._11{width:37.184000pt;}
._12{width:38.350080pt;}
._5{width:42.432000pt;}
._4{width:47.096747pt;}
._3{width:48.042667pt;}
._27{width:49.486507pt;}
._1f{width:54.656000pt;}
._20{width:55.616000pt;}
._25{width:314.735820pt;}
._24{width:527.530667pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.092966pt;}
.fs5{font-size:53.288604pt;}
.fs6{font-size:53.421826pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:63.946325pt;}
.fs7{font-size:63.950332pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:3.520000pt;}
.y6a{bottom:3.546667pt;}
.y3{bottom:6.240000pt;}
.y7{bottom:10.080000pt;}
.y55{bottom:12.640000pt;}
.y85{bottom:19.982867pt;}
.y56{bottom:21.920000pt;}
.y59{bottom:22.560000pt;}
.y60{bottom:22.720000pt;}
.y67{bottom:22.746667pt;}
.y2{bottom:25.120000pt;}
.y83{bottom:41.697996pt;}
.y7b{bottom:57.351526pt;}
.y8{bottom:63.232000pt;}
.y6{bottom:77.152000pt;}
.y7c{bottom:85.694402pt;}
.y53{bottom:107.712000pt;}
.y7d{bottom:114.037279pt;}
.ya2{bottom:129.792000pt;}
.y52{bottom:135.386667pt;}
.y7e{bottom:142.408133pt;}
.y84{bottom:149.109176pt;}
.y31{bottom:151.546667pt;}
.ya1{bottom:157.306667pt;}
.y51{bottom:162.906667pt;}
.y79{bottom:165.946667pt;}
.y7f{bottom:170.757670pt;}
.y30{bottom:183.706667pt;}
.ya0{bottom:184.986667pt;}
.y50{bottom:190.586667pt;}
.y78{bottom:193.626667pt;}
.y80{bottom:199.093886pt;}
.y2f{bottom:207.386667pt;}
.y9f{bottom:212.506667pt;}
.y4f{bottom:218.106667pt;}
.y8b{bottom:219.706667pt;}
.y77{bottom:221.146667pt;}
.y81{bottom:227.443423pt;}
.y2e{bottom:228.506667pt;}
.y9e{bottom:240.186667pt;}
.y4e{bottom:245.786667pt;}
.y8a{bottom:248.026667pt;}
.y76{bottom:248.826667pt;}
.y2d{bottom:249.786667pt;}
.y82{bottom:255.779639pt;}
.y9d{bottom:267.706667pt;}
.y2c{bottom:270.906667pt;}
.y4d{bottom:273.306667pt;}
.y75{bottom:276.346667pt;}
.y86{bottom:281.597942pt;}
.y2b{bottom:292.026667pt;}
.y9c{bottom:295.386667pt;}
.y4c{bottom:301.026667pt;}
.y74{bottom:304.066667pt;}
.y2a{bottom:313.186667pt;}
.y9b{bottom:322.946667pt;}
.y4b{bottom:328.546667pt;}
.y73{bottom:331.586667pt;}
.y29{bottom:334.466667pt;}
.y9a{bottom:350.626667pt;}
.y28{bottom:355.586667pt;}
.y4a{bottom:356.226667pt;}
.y72{bottom:359.266667pt;}
.y27{bottom:376.706667pt;}
.y99{bottom:378.146667pt;}
.y49{bottom:383.746667pt;}
.y71{bottom:386.786667pt;}
.y26{bottom:397.826667pt;}
.y6e{bottom:402.306667pt;}
.y98{bottom:405.826667pt;}
.y48{bottom:411.426667pt;}
.y25{bottom:419.106667pt;}
.y70{bottom:421.506667pt;}
.y97{bottom:433.346667pt;}
.y47{bottom:438.946667pt;}
.y24{bottom:440.226667pt;}
.y6f{bottom:440.546667pt;}
.y6b{bottom:459.586667pt;}
.y96{bottom:461.026667pt;}
.y23{bottom:461.346667pt;}
.yb6{bottom:465.186667pt;}
.y46{bottom:466.626667pt;}
.y6d{bottom:478.626667pt;}
.y22{bottom:482.466667pt;}
.y95{bottom:488.546667pt;}
.yb5{bottom:491.746667pt;}
.y45{bottom:494.146667pt;}
.y6c{bottom:497.666667pt;}
.y21{bottom:503.746667pt;}
.y94{bottom:516.226667pt;}
.y66{bottom:516.706667pt;}
.yb4{bottom:519.426667pt;}
.y44{bottom:521.826667pt;}
.y20{bottom:524.866667pt;}
.y69{bottom:535.906667pt;}
.y93{bottom:543.773333pt;}
.y1f{bottom:546.013333pt;}
.yb3{bottom:546.973333pt;}
.y43{bottom:549.373333pt;}
.y68{bottom:554.973333pt;}
.y1e{bottom:567.133333pt;}
.y92{bottom:571.453333pt;}
.y63{bottom:574.013333pt;}
.yb2{bottom:574.653333pt;}
.y42{bottom:577.053333pt;}
.y89{bottom:587.453333pt;}
.y1d{bottom:588.253333pt;}
.y65{bottom:593.053333pt;}
.y91{bottom:601.053333pt;}
.yb1{bottom:602.173333pt;}
.y41{bottom:604.573333pt;}
.y1c{bottom:609.533333pt;}
.y88{bottom:611.133333pt;}
.y64{bottom:612.093333pt;}
.y90{bottom:624.733333pt;}
.yb0{bottom:629.853333pt;}
.y1b{bottom:630.653333pt;}
.y5f{bottom:631.133333pt;}
.y40{bottom:632.253333pt;}
.y87{bottom:636.733333pt;}
.y7a{bottom:641.268533pt;}
.y8f{bottom:645.853333pt;}
.y62{bottom:650.333333pt;}
.y1a{bottom:651.773333pt;}
.yaf{bottom:657.373333pt;}
.y3f{bottom:659.773333pt;}
.y8e{bottom:667.133333pt;}
.y61{bottom:669.373333pt;}
.y19{bottom:672.893333pt;}
.yae{bottom:685.053333pt;}
.y3e{bottom:687.453333pt;}
.y5c{bottom:688.413333pt;}
.y18{bottom:694.173333pt;}
.y8d{bottom:696.733333pt;}
.y5e{bottom:707.453333pt;}
.yad{bottom:712.573333pt;}
.y3d{bottom:714.973333pt;}
.y17{bottom:715.293333pt;}
.y8c{bottom:724.893333pt;}
.y5d{bottom:726.493333pt;}
.y16{bottom:736.413333pt;}
.yac{bottom:740.253333pt;}
.y3c{bottom:742.493333pt;}
.y58{bottom:745.533333pt;}
.y15{bottom:757.533333pt;}
.y5b{bottom:764.573333pt;}
.yab{bottom:767.773333pt;}
.y3b{bottom:770.173333pt;}
.y14{bottom:778.853333pt;}
.y5a{bottom:783.813333pt;}
.yaa{bottom:795.493333pt;}
.y3a{bottom:797.733333pt;}
.y13{bottom:799.973333pt;}
.y54{bottom:802.853333pt;}
.y12{bottom:821.093333pt;}
.ya9{bottom:823.013333pt;}
.y39{bottom:825.413333pt;}
.y11{bottom:842.213333pt;}
.ya8{bottom:850.533333pt;}
.y38{bottom:852.933333pt;}
.y10{bottom:863.493333pt;}
.ya7{bottom:878.213333pt;}
.y37{bottom:880.613333pt;}
.yf{bottom:884.613333pt;}
.ye{bottom:905.733333pt;}
.y36{bottom:908.133333pt;}
.yd{bottom:926.853333pt;}
.ya6{bottom:933.413333pt;}
.y35{bottom:935.813333pt;}
.yc{bottom:948.133333pt;}
.ya5{bottom:960.933333pt;}
.y34{bottom:963.333333pt;}
.yb{bottom:969.253333pt;}
.ya4{bottom:988.613333pt;}
.y33{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y9{bottom:1016.000000pt;}
.y32{bottom:1018.560000pt;}
.ya3{bottom:1019.520000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.he{height:18.400000pt;}
.hf{height:18.432000pt;}
.h5{height:24.000000pt;}
.h18{height:33.580537pt;}
.hc{height:36.800000pt;}
.h14{height:37.208352pt;}
.h15{height:37.301373pt;}
.h17{height:44.650022pt;}
.h16{height:44.652820pt;}
.h9{height:46.218750pt;}
.h2{height:47.520000pt;}
.h8{height:52.750000pt;}
.ha{height:53.406250pt;}
.h7{height:55.343750pt;}
.h10{height:56.480000pt;}
.h11{height:56.640000pt;}
.hd{height:56.672000pt;}
.h4{height:58.563750pt;}
.hb{height:60.102187pt;}
.h12{height:61.717500pt;}
.h19{height:62.485312pt;}
.h6{height:64.752187pt;}
.h3{height:80.109375pt;}
.h13{height:303.745117pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:85.152000pt;}
.w5{width:94.592000pt;}
.w8{width:100.640000pt;}
.w7{width:124.032000pt;}
.wa{width:159.706667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w2{width:443.266667pt;}
.wb{width:511.602667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:21.440000pt;}
.x25{left:23.200000pt;}
.x19{left:25.120000pt;}
.x26{left:27.546667pt;}
.x1b{left:28.800000pt;}
.x1f{left:29.760000pt;}
.x1d{left:32.026667pt;}
.x9{left:36.160000pt;}
.x29{left:38.936432pt;}
.x21{left:42.560000pt;}
.x24{left:43.680000pt;}
.x20{left:45.920000pt;}
.x2a{left:60.253211pt;}
.x23{left:69.760000pt;}
.x22{left:71.680000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x5{left:94.591988pt;}
.x32{left:97.151988pt;}
.x33{left:106.431988pt;}
.xc{left:112.031988pt;}
.x2f{left:125.791988pt;}
.x2e{left:127.391988pt;}
.xb{left:131.391988pt;}
.x11{left:132.351988pt;}
.x14{left:139.066655pt;}
.x28{left:151.142312pt;}
.x17{left:154.266655pt;}
.x12{left:168.346655pt;}
.x18{left:170.586667pt;}
.x2{left:175.386667pt;}
.x13{left:197.786655pt;}
.x2b{left:223.959401pt;}
.x2c{left:225.584798pt;}
.x1{left:247.266667pt;}
.x7{left:264.706667pt;}
.x10{left:272.386655pt;}
.x1a{left:295.266667pt;}
.xf{left:307.266655pt;}
.x15{left:328.386655pt;}
.x35{left:334.786655pt;}
.x8{left:347.426667pt;}
.xe{left:351.906655pt;}
.x34{left:353.666655pt;}
.x1c{left:396.546667pt;}
.xd{left:406.306655pt;}
.x30{left:418.013322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x1e{left:482.493333pt;}
.x16{left:658.213322pt;}
.x2d{left:667.333322pt;}
.x31{left:671.333322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  