
    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_f7635bd32701e804a427e94b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_697c7f0145627c1477d6c0af.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_811a7ebf384e86ef562e2a0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_63ac437f452ccfd0b0c9b750.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_6d5a32fe130b4144188ea3c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_c27c0256150e3c54cb9d4d88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_66a681ec2ab0718afb05bbc9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_af591bbd69164198686d6244.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cebe5a67729ac69fdfa7ccde.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128418;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_3026164a084915cb32ade5cd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e405af0f5d2a53adb4c605b9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_33d02f9cf02848ba1be296e9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142090;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.190477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190477,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248866,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254319,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-64.590474px;}
.v4{vertical-align:-19.221356px;}
.v3{vertical-align:-14.546422px;}
.v1{vertical-align:-9.161477px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-8.483940px;}
.ls1{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.252720px;}
.lsa{letter-spacing:0.360000px;}
.ls7{letter-spacing:4.424610px;}
.ls3{letter-spacing:17.278086px;}
.ls4{letter-spacing:18.745320px;}
.ls9{letter-spacing:134.028028px;}
.ls8{letter-spacing:185.321204px;}
.ls2{letter-spacing:538.023289px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-24.480000px;}
.ws2{word-spacing:-23.040000px;}
.wsd{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-0.082552px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:22.419306px;}
.ws8{word-spacing:26.197841px;}
.ws9{word-spacing:45.191112px;}
.wsc{word-spacing:47.797630px;}
.wsa{word-spacing:77.792938px;}
.ws6{word-spacing:991.075890px;}
._17{margin-left:-294.499383px;}
._1b{margin-left:-289.173029px;}
._c{margin-left:-4.731360px;}
._5{margin-left:-3.706560px;}
._2{margin-left:-2.004000px;}
._0{width:1.053360px;}
._d{width:2.160000px;}
._1{width:3.249120px;}
._b{width:5.307120px;}
._6{width:6.858960px;}
._20{width:8.454240px;}
._7{width:10.277280px;}
._4{width:12.407040px;}
._a{width:13.562640px;}
._1f{width:14.573760px;}
._1c{width:15.727920px;}
._8{width:20.036880px;}
._21{width:22.239360px;}
._11{width:26.488837px;}
._12{width:29.052734px;}
._f{width:33.102000px;}
._e{width:34.740000px;}
._1d{width:38.413440px;}
._1e{width:39.430560px;}
._9{width:41.361840px;}
._10{width:47.083296px;}
._18{width:50.934607px;}
._1a{width:99.475206px;}
._16{width:126.598574px;}
._19{width:176.166049px;}
._15{width:193.169081px;}
._13{width:246.908658px;}
._14{width:311.686086px;}
._3{width:1421.407200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:47.755026px;}
.fs6{font-size:47.972583px;}
.fs5{font-size:48.583518px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:82.552038px;}
.fs7{font-size:83.076662px;}
.fs4{font-size:83.967440px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs9{font-size:108.174695px;}
.fs8{font-size:124.609051px;}
.y0{bottom:0.000000px;}
.y36{bottom:4.511258px;}
.y3b{bottom:4.511264px;}
.y39{bottom:4.511271px;}
.y32{bottom:5.018852px;}
.y4c{bottom:5.513130px;}
.y31{bottom:8.182802px;}
.y4a{bottom:9.383145px;}
.y2a{bottom:9.964866px;}
.y4d{bottom:10.880166px;}
.y29{bottom:12.255930px;}
.y38{bottom:18.888632px;}
.y2b{bottom:22.947957px;}
.y4b{bottom:23.293728px;}
.y3c{bottom:24.280765px;}
.y3a{bottom:24.280780px;}
.y30{bottom:28.403599px;}
.y2d{bottom:28.403605px;}
.y2f{bottom:40.550653px;}
.y2c{bottom:43.860264px;}
.y2e{bottom:44.514244px;}
.y37{bottom:45.369274px;}
.y28{bottom:46.150639px;}
.y4{bottom:57.600000px;}
.y20{bottom:90.900000px;}
.y53{bottom:118.656000px;}
.y1f{bottom:136.476000px;}
.y5f{bottom:151.590000px;}
.y52{bottom:164.370000px;}
.y1e{bottom:172.650000px;}
.y5e{bottom:187.770000px;}
.y51{bottom:200.550000px;}
.y1d{bottom:208.830000px;}
.y5d{bottom:223.590000px;}
.y50{bottom:236.730000px;}
.y1c{bottom:245.010000px;}
.y5c{bottom:269.130000px;}
.y4f{bottom:272.550000px;}
.y1b{bottom:281.370000px;}
.y49{bottom:304.140000px;}
.y5b{bottom:305.490000px;}
.y4e{bottom:314.490000px;}
.y1a{bottom:317.550000px;}
.y5a{bottom:341.670000px;}
.y19{bottom:353.730000px;}
.y48{bottom:357.330000px;}
.y59{bottom:377.895000px;}
.y18{bottom:389.955000px;}
.y47{bottom:393.555000px;}
.y58{bottom:414.075000px;}
.y17{bottom:426.315000px;}
.y46{bottom:429.735000px;}
.y57{bottom:450.435000px;}
.y16{bottom:462.135000px;}
.y45{bottom:465.915000px;}
.y56{bottom:486.615000px;}
.y44{bottom:502.275000px;}
.y15{bottom:507.675000px;}
.y55{bottom:522.435000px;}
.y43{bottom:538.455000px;}
.y14{bottom:543.855000px;}
.y54{bottom:563.115000px;}
.y42{bottom:574.635000px;}
.y13{bottom:580.215000px;}
.y41{bottom:610.815000px;}
.y12{bottom:616.395000px;}
.y40{bottom:647.205000px;}
.y11{bottom:652.605000px;}
.y3f{bottom:683.385000px;}
.y10{bottom:688.785000px;}
.y3e{bottom:719.565000px;}
.yf{bottom:724.965000px;}
.y35{bottom:750.689919px;}
.ye{bottom:760.965000px;}
.y3d{bottom:774.645000px;}
.yd{bottom:806.505000px;}
.y34{bottom:826.305000px;}
.yc{bottom:842.685000px;}
.y27{bottom:857.414919px;}
.yb{bottom:878.865000px;}
.y33{bottom:885.930000px;}
.ya{bottom:915.270000px;}
.y26{bottom:942.270000px;}
.y9{bottom:960.090000px;}
.y25{bottom:978.450000px;}
.y8{bottom:1005.270000px;}
.y24{bottom:1014.630000px;}
.y60{bottom:1018.050000px;}
.y7{bottom:1050.450000px;}
.y23{bottom:1050.810000px;}
.y6{bottom:1086.810000px;}
.y22{bottom:1087.170000px;}
.y5{bottom:1122.990000px;}
.y21{bottom:1123.350000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1232.820000px;}
.h14{height:35.998592px;}
.h12{height:44.435542px;}
.h16{height:46.868947px;}
.h10{height:47.059043px;}
.hf{height:47.082467px;}
.h4{height:47.512969px;}
.hb{height:47.658344px;}
.h5{height:55.825312px;}
.he{height:58.498956px;}
.h18{height:65.884219px;}
.h9{height:67.498956px;}
.h2{height:68.687227px;}
.h3{height:72.562500px;}
.h8{height:76.877227px;}
.hd{height:77.776481px;}
.h17{height:81.020311px;}
.h11{height:81.494635px;}
.hc{height:82.368450px;}
.ha{height:82.409450px;}
.h7{height:82.676953px;}
.h6{height:84.898125px;}
.h13{height:96.200211px;}
.h15{height:100.198924px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:85.500306px;}
.w4{width:210.452213px;}
.w2{width:367.935981px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:2.987581px;}
.x11{left:16.080355px;}
.x1c{left:19.836509px;}
.x15{left:28.952718px;}
.x1b{left:38.254962px;}
.x19{left:42.695442px;}
.x14{left:45.070514px;}
.x1f{left:46.488665px;}
.x18{left:50.958312px;}
.xe{left:61.925505px;}
.x21{left:65.386415px;}
.x10{left:70.224902px;}
.x22{left:72.310694px;}
.x1a{left:74.071579px;}
.x12{left:90.325319px;}
.x3{left:127.656000px;}
.x5{left:140.256000px;}
.x1{left:158.070000px;}
.xc{left:170.130000px;}
.x4{left:173.190000px;}
.x24{left:181.650000px;}
.x20{left:200.799790px;}
.xa{left:245.190000px;}
.xf{left:258.765859px;}
.xd{left:294.539980px;}
.x9{left:306.435000px;}
.x7{left:340.995000px;}
.x8{left:362.955000px;}
.x1e{left:373.214959px;}
.xb{left:424.155000px;}
.x17{left:435.690000px;}
.x6{left:478.515000px;}
.x1d{left:521.205000px;}
.x23{left:583.665000px;}
.x2{left:614.805000px;}
.x16{left:662.505000px;}
.x25{left:829.770000px;}
@media print{
.v2{vertical-align:-57.413755pt;}
.v4{vertical-align:-17.085650pt;}
.v3{vertical-align:-12.930153pt;}
.v1{vertical-align:-8.143535pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-7.541280pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.224640pt;}
.lsa{letter-spacing:0.320000pt;}
.ls7{letter-spacing:3.932987pt;}
.ls3{letter-spacing:15.358299pt;}
.ls4{letter-spacing:16.662507pt;}
.ls9{letter-spacing:119.136025pt;}
.ls8{letter-spacing:164.729959pt;}
.ls2{letter-spacing:478.242924pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-21.760000pt;}
.ws2{word-spacing:-20.480000pt;}
.wsd{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-0.073380pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:19.928272pt;}
.ws8{word-spacing:23.286970pt;}
.ws9{word-spacing:40.169877pt;}
.wsc{word-spacing:42.486782pt;}
.wsa{word-spacing:69.149278pt;}
.ws6{word-spacing:880.956346pt;}
._17{margin-left:-261.777229pt;}
._1b{margin-left:-257.042692pt;}
._c{margin-left:-4.205653pt;}
._5{margin-left:-3.294720pt;}
._2{margin-left:-1.781333pt;}
._0{width:0.936320pt;}
._d{width:1.920000pt;}
._1{width:2.888107pt;}
._b{width:4.717440pt;}
._6{width:6.096853pt;}
._20{width:7.514880pt;}
._7{width:9.135360pt;}
._4{width:11.028480pt;}
._a{width:12.055680pt;}
._1f{width:12.954453pt;}
._1c{width:13.980373pt;}
._8{width:17.810560pt;}
._21{width:19.768320pt;}
._11{width:23.545633pt;}
._12{width:25.824653pt;}
._f{width:29.424000pt;}
._e{width:30.880000pt;}
._1d{width:34.145280pt;}
._1e{width:35.049387pt;}
._9{width:36.766080pt;}
._10{width:41.851819pt;}
._18{width:45.275207pt;}
._1a{width:88.422405pt;}
._16{width:112.532066pt;}
._19{width:156.592044pt;}
._15{width:171.705850pt;}
._13{width:219.474363pt;}
._14{width:277.054298pt;}
._3{width:1263.473067pt;}
.fsa{font-size:42.448912pt;}
.fs6{font-size:42.642296pt;}
.fs5{font-size:43.185349pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:73.379589pt;}
.fs7{font-size:73.845921pt;}
.fs4{font-size:74.637724pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs9{font-size:96.155285pt;}
.fs8{font-size:110.763601pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:4.010007pt;}
.y3b{bottom:4.010012pt;}
.y39{bottom:4.010018pt;}
.y32{bottom:4.461202pt;}
.y4c{bottom:4.900560pt;}
.y31{bottom:7.273602pt;}
.y4a{bottom:8.340573pt;}
.y2a{bottom:8.857659pt;}
.y4d{bottom:9.671258pt;}
.y29{bottom:10.894160pt;}
.y38{bottom:16.789896pt;}
.y2b{bottom:20.398184pt;}
.y4b{bottom:20.705536pt;}
.y3c{bottom:21.582902pt;}
.y3a{bottom:21.582916pt;}
.y30{bottom:25.247644pt;}
.y2d{bottom:25.247649pt;}
.y2f{bottom:36.045025pt;}
.y2c{bottom:38.986901pt;}
.y2e{bottom:39.568217pt;}
.y37{bottom:40.328244pt;}
.y28{bottom:41.022790pt;}
.y4{bottom:51.200000pt;}
.y20{bottom:80.800000pt;}
.y53{bottom:105.472000pt;}
.y1f{bottom:121.312000pt;}
.y5f{bottom:134.746667pt;}
.y52{bottom:146.106667pt;}
.y1e{bottom:153.466667pt;}
.y5e{bottom:166.906667pt;}
.y51{bottom:178.266667pt;}
.y1d{bottom:185.626667pt;}
.y5d{bottom:198.746667pt;}
.y50{bottom:210.426667pt;}
.y1c{bottom:217.786667pt;}
.y5c{bottom:239.226667pt;}
.y4f{bottom:242.266667pt;}
.y1b{bottom:250.106667pt;}
.y49{bottom:270.346667pt;}
.y5b{bottom:271.546667pt;}
.y4e{bottom:279.546667pt;}
.y1a{bottom:282.266667pt;}
.y5a{bottom:303.706667pt;}
.y19{bottom:314.426667pt;}
.y48{bottom:317.626667pt;}
.y59{bottom:335.906667pt;}
.y18{bottom:346.626667pt;}
.y47{bottom:349.826667pt;}
.y58{bottom:368.066667pt;}
.y17{bottom:378.946667pt;}
.y46{bottom:381.986667pt;}
.y57{bottom:400.386667pt;}
.y16{bottom:410.786667pt;}
.y45{bottom:414.146667pt;}
.y56{bottom:432.546667pt;}
.y44{bottom:446.466667pt;}
.y15{bottom:451.266667pt;}
.y55{bottom:464.386667pt;}
.y43{bottom:478.626667pt;}
.y14{bottom:483.426667pt;}
.y54{bottom:500.546667pt;}
.y42{bottom:510.786667pt;}
.y13{bottom:515.746667pt;}
.y41{bottom:542.946667pt;}
.y12{bottom:547.906667pt;}
.y40{bottom:575.293333pt;}
.y11{bottom:580.093333pt;}
.y3f{bottom:607.453333pt;}
.y10{bottom:612.253333pt;}
.y3e{bottom:639.613333pt;}
.yf{bottom:644.413333pt;}
.y35{bottom:667.279928pt;}
.ye{bottom:676.413333pt;}
.y3d{bottom:688.573333pt;}
.yd{bottom:716.893333pt;}
.y34{bottom:734.493333pt;}
.yc{bottom:749.053333pt;}
.y27{bottom:762.146594pt;}
.yb{bottom:781.213333pt;}
.y33{bottom:787.493333pt;}
.ya{bottom:813.573333pt;}
.y26{bottom:837.573333pt;}
.y9{bottom:853.413333pt;}
.y25{bottom:869.733333pt;}
.y8{bottom:893.573333pt;}
.y24{bottom:901.893333pt;}
.y60{bottom:904.933333pt;}
.y7{bottom:933.733333pt;}
.y23{bottom:934.053333pt;}
.y6{bottom:966.053333pt;}
.y22{bottom:966.373333pt;}
.y5{bottom:998.213333pt;}
.y21{bottom:998.533333pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1095.840000pt;}
.h14{height:31.998748pt;}
.h12{height:39.498260pt;}
.h16{height:41.661286pt;}
.h10{height:41.830260pt;}
.hf{height:41.851082pt;}
.h4{height:42.233750pt;}
.hb{height:42.362972pt;}
.h5{height:49.622500pt;}
.he{height:51.999072pt;}
.h18{height:58.563750pt;}
.h9{height:59.999072pt;}
.h2{height:61.055312pt;}
.h3{height:64.500000pt;}
.h8{height:68.335313pt;}
.hd{height:69.134650pt;}
.h17{height:72.018054pt;}
.h11{height:72.439676pt;}
.hc{height:73.216400pt;}
.ha{height:73.252844pt;}
.h7{height:73.490625pt;}
.h6{height:75.465000pt;}
.h13{height:85.511299pt;}
.h15{height:89.065711pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:76.000272pt;}
.w4{width:187.068634pt;}
.w2{width:327.054205pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:2.655628pt;}
.x11{left:14.293649pt;}
.x1c{left:17.632452pt;}
.x15{left:25.735749pt;}
.x1b{left:34.004411pt;}
.x19{left:37.951504pt;}
.x14{left:40.062679pt;}
.x1f{left:41.323258pt;}
.x18{left:45.296278pt;}
.xe{left:55.044893pt;}
.x21{left:58.121258pt;}
.x10{left:62.422135pt;}
.x22{left:64.276173pt;}
.x1a{left:65.841403pt;}
.x12{left:80.289172pt;}
.x3{left:113.472000pt;}
.x5{left:124.672000pt;}
.x1{left:140.506667pt;}
.xc{left:151.226667pt;}
.x4{left:153.946667pt;}
.x24{left:161.466667pt;}
.x20{left:178.488702pt;}
.xa{left:217.946667pt;}
.xf{left:230.014097pt;}
.xd{left:261.813315pt;}
.x9{left:272.386667pt;}
.x7{left:303.106667pt;}
.x8{left:322.626667pt;}
.x1e{left:331.746630pt;}
.xb{left:377.026667pt;}
.x17{left:387.280000pt;}
.x6{left:425.346667pt;}
.x1d{left:463.293333pt;}
.x23{left:518.813333pt;}
.x2{left:546.493333pt;}
.x16{left:588.893333pt;}
.x25{left:737.573333pt;}
}




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