
    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_6452ad374b3a0e396f0d5ad2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_6c74192b9ce6ff283f6e3f31.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0245c6992357401f8c30c33c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_e76dcb6ccebb1702ec6b61e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_84f236a3ea55d69fb81bc25c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_a46607256ae81a4dcc1d42f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_236f985f4fac4f3e9b61d1d5.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_66d023b84228be4050846011.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_585162a4a000127e3bef2a77.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_5dad460e72789a5ad4f05cf4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916016;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_5a5aef31476b35844f81b954.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_cad98d10274054f6eca90aa2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_f5a7583f9523aeeb1c6a6571.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_144fbc9b5fbeff86bbcfd16a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.720000px;}
.lsb{letter-spacing:33.960000px;}
.ls4{letter-spacing:143.976000px;}
.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;}
}
.ws2{word-spacing:-63.360000px;}
.ws0{word-spacing:-55.296000px;}
.ws3{word-spacing:-18.576000px;}
.ws8{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.840000px;}
.ws7{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._35{margin-left:-9.504000px;}
._7{margin-left:-8.360640px;}
._4{margin-left:-6.613200px;}
._e{margin-left:-4.693920px;}
._5{margin-left:-3.486960px;}
._6{margin-left:-2.404800px;}
._3{margin-left:-1.082160px;}
._0{width:1.436400px;}
._1{width:3.050400px;}
._9{width:4.869600px;}
._10{width:5.928720px;}
._b{width:7.209360px;}
._a{width:8.236800px;}
._f{width:9.261360px;}
._c{width:10.800000px;}
._8{width:11.928000px;}
._d{width:12.963600px;}
._14{width:14.708400px;}
._15{width:16.056000px;}
._2{width:17.715600px;}
._1b{width:19.368000px;}
._1c{width:20.858160px;}
._12{width:22.858560px;}
._16{width:24.013440px;}
._17{width:25.128000px;}
._1a{width:26.349840px;}
._18{width:27.432000px;}
._19{width:28.452000px;}
._11{width:29.736000px;}
._13{width:30.776400px;}
._22{width:31.827600px;}
._2f{width:33.724800px;}
._30{width:34.920000px;}
._1e{width:37.224000px;}
._36{width:38.329200px;}
._21{width:39.372720px;}
._37{width:41.544000px;}
._28{width:43.284240px;}
._27{width:48.420000px;}
._32{width:53.524800px;}
._2e{width:55.517040px;}
._39{width:58.824000px;}
._3a{width:60.804000px;}
._3c{width:63.334320px;}
._3b{width:64.885920px;}
._2c{width:72.693360px;}
._31{width:73.789200px;}
._44{width:82.098720px;}
._43{width:83.376000px;}
._38{width:92.664000px;}
._25{width:96.615360px;}
._24{width:102.038400px;}
._23{width:103.309200px;}
._3e{width:109.800000px;}
._40{width:111.098160px;}
._3d{width:112.104000px;}
._3f{width:114.372000px;}
._2b{width:116.053920px;}
._29{width:126.272880px;}
._47{width:128.162160px;}
._2d{width:139.300560px;}
._45{width:167.544000px;}
._46{width:168.638160px;}
._34{width:172.885920px;}
._33{width:176.112000px;}
._41{width:203.832000px;}
._42{width:205.236000px;}
._2a{width:206.709840px;}
._26{width:283.083120px;}
._1d{width:457.992000px;}
._1f{width:997.992000px;}
._20{width:1004.472000px;}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.780000px;}
.ybd{bottom:4.125000px;}
.yb7{bottom:4.140000px;}
.y85{bottom:7.920000px;}
.y8d{bottom:13.680000px;}
.y95{bottom:14.940000px;}
.y9c{bottom:21.060000px;}
.yc0{bottom:24.825000px;}
.yb6{bottom:24.840000px;}
.ybc{bottom:24.870000px;}
.yc1{bottom:25.185000px;}
.y84{bottom:25.200000px;}
.ybe{bottom:25.230000px;}
.y8c{bottom:30.960000px;}
.y94{bottom:32.250000px;}
.y9b{bottom:38.160000px;}
.yb5{bottom:45.540000px;}
.y8b{bottom:48.240000px;}
.y93{bottom:49.530000px;}
.y98{bottom:55.080000px;}
.y9a{bottom:55.440000px;}
.y7{bottom:58.716000px;}
.y88{bottom:65.160000px;}
.y8a{bottom:65.520000px;}
.y90{bottom:66.450000px;}
.y92{bottom:66.810000px;}
.y97{bottom:72.360000px;}
.y99{bottom:72.720000px;}
.y6{bottom:79.416000px;}
.y87{bottom:82.440000px;}
.y89{bottom:82.800000px;}
.y8f{bottom:83.550000px;}
.y91{bottom:83.910000px;}
.y5{bottom:97.956000px;}
.yc7{bottom:124.956000px;}
.yb1{bottom:125.316000px;}
.y5d{bottom:129.096000px;}
.yd8{bottom:141.156000px;}
.yb0{bottom:149.256000px;}
.y45{bottom:153.210000px;}
.yd0{bottom:153.390000px;}
.yc6{bottom:160.590000px;}
.ycd{bottom:165.090000px;}
.y44{bottom:177.150000px;}
.y79{bottom:177.330000px;}
.ya7{bottom:178.230000px;}
.yaf{bottom:185.430000px;}
.ycc{bottom:189.210000px;}
.y5c{bottom:189.390000px;}
.y24{bottom:192.270000px;}
.yc5{bottom:196.770000px;}
.y43{bottom:201.090000px;}
.yd7{bottom:201.270000px;}
.ya6{bottom:201.990000px;}
.yae{bottom:209.190000px;}
.y5b{bottom:213.150000px;}
.y23{bottom:216.030000px;}
.ycf{bottom:225.030000px;}
.y42{bottom:225.210000px;}
.ya5{bottom:225.930000px;}
.yc4{bottom:228.450000px;}
.yc2{bottom:236.730000px;}
.y6f{bottom:237.090000px;}
.y78{bottom:237.270000px;}
.y22{bottom:240.150000px;}
.yad{bottom:245.010000px;}
.y41{bottom:249.150000px;}
.y5a{bottom:249.330000px;}
.ya4{bottom:250.050000px;}
.ybf{bottom:254.205000px;}
.y6e{bottom:261.030000px;}
.y21{bottom:264.090000px;}
.y40{bottom:273.090000px;}
.ya3{bottom:273.990000px;}
.yac{bottom:281.370000px;}
.y6d{bottom:284.970000px;}
.y20{bottom:288.030000px;}
.ybb{bottom:296.325000px;}
.y3f{bottom:297.030000px;}
.y77{bottom:297.210000px;}
.ya2{bottom:297.930000px;}
.y6c{bottom:308.910000px;}
.y59{bottom:309.315000px;}
.y1f{bottom:312.015000px;}
.yab{bottom:312.915000px;}
.y3e{bottom:321.015000px;}
.ye2{bottom:321.195000px;}
.y58{bottom:333.075000px;}
.y76{bottom:333.255000px;}
.ya1{bottom:334.155000px;}
.y1e{bottom:335.955000px;}
.yba{bottom:338.475000px;}
.ydd{bottom:344.955000px;}
.y6b{bottom:345.135000px;}
.yd6{bottom:357.015000px;}
.y3d{bottom:357.195000px;}
.ya0{bottom:357.915000px;}
.y1d{bottom:360.075000px;}
.y6a{bottom:369.075000px;}
.y57{bottom:369.255000px;}
.yb9{bottom:380.595000px;}
.ydc{bottom:380.775000px;}
.y3c{bottom:380.955000px;}
.y1c{bottom:384.015000px;}
.y69{bottom:392.655000px;}
.y56{bottom:393.015000px;}
.y9f{bottom:393.735000px;}
.yd5{bottom:404.895000px;}
.y3b{bottom:405.075000px;}
.y1b{bottom:407.955000px;}
.y75{bottom:416.955000px;}
.ydb{bottom:417.135000px;}
.yb8{bottom:422.715000px;}
.y3a{bottom:429.015000px;}
.y55{bottom:429.195000px;}
.y9e{bottom:429.735000px;}
.y1a{bottom:431.895000px;}
.y80{bottom:440.895000px;}
.ye1{bottom:441.075000px;}
.y96{bottom:447.015000px;}
.y39{bottom:452.955000px;}
.y74{bottom:453.135000px;}
.y19{bottom:455.835000px;}
.yd4{bottom:464.655000px;}
.y7f{bottom:464.835000px;}
.yda{bottom:465.015000px;}
.yb4{bottom:466.455000px;}
.y38{bottom:476.895000px;}
.y18{bottom:479.955000px;}
.y7e{bottom:488.955000px;}
.y37{bottom:500.835000px;}
.yd3{bottom:501.015000px;}
.y17{bottom:503.895000px;}
.y7d{bottom:512.895000px;}
.y54{bottom:513.075000px;}
.y68{bottom:524.775000px;}
.y36{bottom:524.955000px;}
.yc3{bottom:525.135000px;}
.y16{bottom:527.835000px;}
.y8e{bottom:533.955000px;}
.y53{bottom:536.835000px;}
.y35{bottom:548.895000px;}
.y73{bottom:549.075000px;}
.y15{bottom:551.775000px;}
.y52{bottom:560.805000px;}
.ye0{bottom:560.985000px;}
.yb3{bottom:572.505000px;}
.y34{bottom:572.865000px;}
.y7c{bottom:573.045000px;}
.y14{bottom:575.745000px;}
.ycb{bottom:584.565000px;}
.y51{bottom:584.925000px;}
.y7b{bottom:596.805000px;}
.ye3{bottom:596.985000px;}
.y13{bottom:599.865000px;}
.y50{bottom:608.865000px;}
.y33{bottom:609.045000px;}
.yce{bottom:620.745000px;}
.y67{bottom:620.925000px;}
.y12{bottom:623.805000px;}
.y86{bottom:632.265000px;}
.y32{bottom:632.805000px;}
.y7a{bottom:632.985000px;}
.y66{bottom:644.865000px;}
.y11{bottom:647.745000px;}
.y31{bottom:656.745000px;}
.yaa{bottom:656.925000px;}
.y65{bottom:668.805000px;}
.y72{bottom:668.985000px;}
.y10{bottom:671.685000px;}
.y30{bottom:680.685000px;}
.ydf{bottom:680.865000px;}
.y64{bottom:692.745000px;}
.yf{bottom:695.625000px;}
.ya9{bottom:704.445000px;}
.y2f{bottom:704.805000px;}
.yca{bottom:704.985000px;}
.y63{bottom:716.685000px;}
.y4f{bottom:716.865000px;}
.ye{bottom:719.745000px;}
.y2e{bottom:728.745000px;}
.y71{bottom:728.925000px;}
.y83{bottom:729.285000px;}
.y4e{bottom:740.625000px;}
.ya8{bottom:740.805000px;}
.y2d{bottom:752.685000px;}
.yd{bottom:755.385000px;}
.y4d{bottom:764.745000px;}
.yb2{bottom:764.925000px;}
.y2c{bottom:776.625000px;}
.y4c{bottom:788.685000px;}
.y82{bottom:788.865000px;}
.yc{bottom:790.665000px;}
.y70{bottom:800.205000px;}
.y62{bottom:800.385000px;}
.y2b{bottom:800.565000px;}
.yde{bottom:800.745000px;}
.y4b{bottom:812.670000px;}
.yc9{bottom:812.850000px;}
.yb{bottom:823.470000px;}
.y2a{bottom:824.730000px;}
.y81{bottom:836.250000px;}
.yd9{bottom:836.430000px;}
.y4a{bottom:836.610000px;}
.y61{bottom:836.790000px;}
.y29{bottom:848.670000px;}
.yd2{bottom:848.850000px;}
.y49{bottom:860.550000px;}
.yd1{bottom:872.610000px;}
.y60{bottom:872.790000px;}
.ya{bottom:873.510000px;}
.y28{bottom:884.490000px;}
.y48{bottom:884.670000px;}
.y5f{bottom:896.550000px;}
.yc8{bottom:896.730000px;}
.y47{bottom:908.610000px;}
.y9{bottom:917.070000px;}
.y5e{bottom:920.490000px;}
.y27{bottom:920.670000px;}
.y26{bottom:944.610000px;}
.y46{bottom:944.790000px;}
.y8{bottom:957.030000px;}
.y25{bottom:968.550000px;}
.y4{bottom:1007.790000px;}
.y3{bottom:1038.210000px;}
.y2{bottom:1069.920000px;}
.y1{bottom:1109.340000px;}
.hf{height:39.060000px;}
.h18{height:41.385000px;}
.h19{height:41.421000px;}
.h14{height:41.726953px;}
.h10{height:42.164648px;}
.hc{height:50.273438px;}
.hb{height:50.800781px;}
.h3{height:51.181172px;}
.h13{height:58.651172px;}
.he{height:59.343750px;}
.h2{height:61.664062px;}
.h17{height:62.085000px;}
.h8{height:62.184375px;}
.h11{height:62.211094px;}
.h9{height:65.958750px;}
.hd{height:70.664062px;}
.h4{height:71.613281px;}
.h5{height:73.722656px;}
.h1a{height:74.004654px;}
.ha{height:74.953125px;}
.h1{height:82.013203px;}
.h7{height:82.676953px;}
.h6{height:84.837305px;}
.h16{height:86.205000px;}
.h12{height:96.300000px;}
.h15{height:97.416000px;}
.h0{height:1188.000000px;}
.w8{width:127.116000px;}
.w6{width:127.971000px;}
.w9{width:129.585000px;}
.w5{width:131.565000px;}
.w1{width:133.911000px;}
.w3{width:144.216000px;}
.wa{width:147.981000px;}
.w2{width:159.495000px;}
.w7{width:164.895000px;}
.w4{width:167.235000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:7.731000px;}
.x5{left:108.036000px;}
.x15{left:135.036000px;}
.x16{left:162.030000px;}
.x6{left:171.390000px;}
.x11{left:237.645000px;}
.x9{left:239.610000px;}
.xc{left:243.405000px;}
.x4{left:247.530000px;}
.x1{left:268.590000px;}
.x7{left:319.035000px;}
.x3{left:365.475000px;}
.xd{left:403.635000px;}
.x2{left:411.015000px;}
.x12{left:531.120000px;}
.xe{left:548.580000px;}
.xa{left:578.265000px;}
.x8{left:637.125000px;}
.x13{left:661.440000px;}
.x10{left:687.390000px;}
.xf{left:716.550000px;}
.x14{left:745.890000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsb{letter-spacing:30.186667pt;}
.ls4{letter-spacing:127.978667pt;}
.ws2{word-spacing:-56.320000pt;}
.ws0{word-spacing:-49.152000pt;}
.ws3{word-spacing:-16.512000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._35{margin-left:-8.448000pt;}
._7{margin-left:-7.431680pt;}
._4{margin-left:-5.878400pt;}
._e{margin-left:-4.172373pt;}
._5{margin-left:-3.099520pt;}
._6{margin-left:-2.137600pt;}
._3{margin-left:-0.961920pt;}
._0{width:1.276800pt;}
._1{width:2.711467pt;}
._9{width:4.328533pt;}
._10{width:5.269973pt;}
._b{width:6.408320pt;}
._a{width:7.321600pt;}
._f{width:8.232320pt;}
._c{width:9.600000pt;}
._8{width:10.602667pt;}
._d{width:11.523200pt;}
._14{width:13.074133pt;}
._15{width:14.272000pt;}
._2{width:15.747200pt;}
._1b{width:17.216000pt;}
._1c{width:18.540587pt;}
._12{width:20.318720pt;}
._16{width:21.345280pt;}
._17{width:22.336000pt;}
._1a{width:23.422080pt;}
._18{width:24.384000pt;}
._19{width:25.290667pt;}
._11{width:26.432000pt;}
._13{width:27.356800pt;}
._22{width:28.291200pt;}
._2f{width:29.977600pt;}
._30{width:31.040000pt;}
._1e{width:33.088000pt;}
._36{width:34.070400pt;}
._21{width:34.997973pt;}
._37{width:36.928000pt;}
._28{width:38.474880pt;}
._27{width:43.040000pt;}
._32{width:47.577600pt;}
._2e{width:49.348480pt;}
._39{width:52.288000pt;}
._3a{width:54.048000pt;}
._3c{width:56.297173pt;}
._3b{width:57.676373pt;}
._2c{width:64.616320pt;}
._31{width:65.590400pt;}
._44{width:72.976640pt;}
._43{width:74.112000pt;}
._38{width:82.368000pt;}
._25{width:85.880320pt;}
._24{width:90.700800pt;}
._23{width:91.830400pt;}
._3e{width:97.600000pt;}
._40{width:98.753920pt;}
._3d{width:99.648000pt;}
._3f{width:101.664000pt;}
._2b{width:103.159040pt;}
._29{width:112.242560pt;}
._47{width:113.921920pt;}
._2d{width:123.822720pt;}
._45{width:148.928000pt;}
._46{width:149.900587pt;}
._34{width:153.676373pt;}
._33{width:156.544000pt;}
._41{width:181.184000pt;}
._42{width:182.432000pt;}
._2a{width:183.742080pt;}
._26{width:251.629440pt;}
._1d{width:407.104000pt;}
._1f{width:887.104000pt;}
._20{width:892.864000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:3.360000pt;}
.ybd{bottom:3.666667pt;}
.yb7{bottom:3.680000pt;}
.y85{bottom:7.040000pt;}
.y8d{bottom:12.160000pt;}
.y95{bottom:13.280000pt;}
.y9c{bottom:18.720000pt;}
.yc0{bottom:22.066667pt;}
.yb6{bottom:22.080000pt;}
.ybc{bottom:22.106667pt;}
.yc1{bottom:22.386667pt;}
.y84{bottom:22.400000pt;}
.ybe{bottom:22.426667pt;}
.y8c{bottom:27.520000pt;}
.y94{bottom:28.666667pt;}
.y9b{bottom:33.920000pt;}
.yb5{bottom:40.480000pt;}
.y8b{bottom:42.880000pt;}
.y93{bottom:44.026667pt;}
.y98{bottom:48.960000pt;}
.y9a{bottom:49.280000pt;}
.y7{bottom:52.192000pt;}
.y88{bottom:57.920000pt;}
.y8a{bottom:58.240000pt;}
.y90{bottom:59.066667pt;}
.y92{bottom:59.386667pt;}
.y97{bottom:64.320000pt;}
.y99{bottom:64.640000pt;}
.y6{bottom:70.592000pt;}
.y87{bottom:73.280000pt;}
.y89{bottom:73.600000pt;}
.y8f{bottom:74.266667pt;}
.y91{bottom:74.586667pt;}
.y5{bottom:87.072000pt;}
.yc7{bottom:111.072000pt;}
.yb1{bottom:111.392000pt;}
.y5d{bottom:114.752000pt;}
.yd8{bottom:125.472000pt;}
.yb0{bottom:132.672000pt;}
.y45{bottom:136.186667pt;}
.yd0{bottom:136.346667pt;}
.yc6{bottom:142.746667pt;}
.ycd{bottom:146.746667pt;}
.y44{bottom:157.466667pt;}
.y79{bottom:157.626667pt;}
.ya7{bottom:158.426667pt;}
.yaf{bottom:164.826667pt;}
.ycc{bottom:168.186667pt;}
.y5c{bottom:168.346667pt;}
.y24{bottom:170.906667pt;}
.yc5{bottom:174.906667pt;}
.y43{bottom:178.746667pt;}
.yd7{bottom:178.906667pt;}
.ya6{bottom:179.546667pt;}
.yae{bottom:185.946667pt;}
.y5b{bottom:189.466667pt;}
.y23{bottom:192.026667pt;}
.ycf{bottom:200.026667pt;}
.y42{bottom:200.186667pt;}
.ya5{bottom:200.826667pt;}
.yc4{bottom:203.066667pt;}
.yc2{bottom:210.426667pt;}
.y6f{bottom:210.746667pt;}
.y78{bottom:210.906667pt;}
.y22{bottom:213.466667pt;}
.yad{bottom:217.786667pt;}
.y41{bottom:221.466667pt;}
.y5a{bottom:221.626667pt;}
.ya4{bottom:222.266667pt;}
.ybf{bottom:225.960000pt;}
.y6e{bottom:232.026667pt;}
.y21{bottom:234.746667pt;}
.y40{bottom:242.746667pt;}
.ya3{bottom:243.546667pt;}
.yac{bottom:250.106667pt;}
.y6d{bottom:253.306667pt;}
.y20{bottom:256.026667pt;}
.ybb{bottom:263.400000pt;}
.y3f{bottom:264.026667pt;}
.y77{bottom:264.186667pt;}
.ya2{bottom:264.826667pt;}
.y6c{bottom:274.586667pt;}
.y59{bottom:274.946667pt;}
.y1f{bottom:277.346667pt;}
.yab{bottom:278.146667pt;}
.y3e{bottom:285.346667pt;}
.ye2{bottom:285.506667pt;}
.y58{bottom:296.066667pt;}
.y76{bottom:296.226667pt;}
.ya1{bottom:297.026667pt;}
.y1e{bottom:298.626667pt;}
.yba{bottom:300.866667pt;}
.ydd{bottom:306.626667pt;}
.y6b{bottom:306.786667pt;}
.yd6{bottom:317.346667pt;}
.y3d{bottom:317.506667pt;}
.ya0{bottom:318.146667pt;}
.y1d{bottom:320.066667pt;}
.y6a{bottom:328.066667pt;}
.y57{bottom:328.226667pt;}
.yb9{bottom:338.306667pt;}
.ydc{bottom:338.466667pt;}
.y3c{bottom:338.626667pt;}
.y1c{bottom:341.346667pt;}
.y69{bottom:349.026667pt;}
.y56{bottom:349.346667pt;}
.y9f{bottom:349.986667pt;}
.yd5{bottom:359.906667pt;}
.y3b{bottom:360.066667pt;}
.y1b{bottom:362.626667pt;}
.y75{bottom:370.626667pt;}
.ydb{bottom:370.786667pt;}
.yb8{bottom:375.746667pt;}
.y3a{bottom:381.346667pt;}
.y55{bottom:381.506667pt;}
.y9e{bottom:381.986667pt;}
.y1a{bottom:383.906667pt;}
.y80{bottom:391.906667pt;}
.ye1{bottom:392.066667pt;}
.y96{bottom:397.346667pt;}
.y39{bottom:402.626667pt;}
.y74{bottom:402.786667pt;}
.y19{bottom:405.186667pt;}
.yd4{bottom:413.026667pt;}
.y7f{bottom:413.186667pt;}
.yda{bottom:413.346667pt;}
.yb4{bottom:414.626667pt;}
.y38{bottom:423.906667pt;}
.y18{bottom:426.626667pt;}
.y7e{bottom:434.626667pt;}
.y37{bottom:445.186667pt;}
.yd3{bottom:445.346667pt;}
.y17{bottom:447.906667pt;}
.y7d{bottom:455.906667pt;}
.y54{bottom:456.066667pt;}
.y68{bottom:466.466667pt;}
.y36{bottom:466.626667pt;}
.yc3{bottom:466.786667pt;}
.y16{bottom:469.186667pt;}
.y8e{bottom:474.626667pt;}
.y53{bottom:477.186667pt;}
.y35{bottom:487.906667pt;}
.y73{bottom:488.066667pt;}
.y15{bottom:490.466667pt;}
.y52{bottom:498.493333pt;}
.ye0{bottom:498.653333pt;}
.yb3{bottom:508.893333pt;}
.y34{bottom:509.213333pt;}
.y7c{bottom:509.373333pt;}
.y14{bottom:511.773333pt;}
.ycb{bottom:519.613333pt;}
.y51{bottom:519.933333pt;}
.y7b{bottom:530.493333pt;}
.ye3{bottom:530.653333pt;}
.y13{bottom:533.213333pt;}
.y50{bottom:541.213333pt;}
.y33{bottom:541.373333pt;}
.yce{bottom:551.773333pt;}
.y67{bottom:551.933333pt;}
.y12{bottom:554.493333pt;}
.y86{bottom:562.013333pt;}
.y32{bottom:562.493333pt;}
.y7a{bottom:562.653333pt;}
.y66{bottom:573.213333pt;}
.y11{bottom:575.773333pt;}
.y31{bottom:583.773333pt;}
.yaa{bottom:583.933333pt;}
.y65{bottom:594.493333pt;}
.y72{bottom:594.653333pt;}
.y10{bottom:597.053333pt;}
.y30{bottom:605.053333pt;}
.ydf{bottom:605.213333pt;}
.y64{bottom:615.773333pt;}
.yf{bottom:618.333333pt;}
.ya9{bottom:626.173333pt;}
.y2f{bottom:626.493333pt;}
.yca{bottom:626.653333pt;}
.y63{bottom:637.053333pt;}
.y4f{bottom:637.213333pt;}
.ye{bottom:639.773333pt;}
.y2e{bottom:647.773333pt;}
.y71{bottom:647.933333pt;}
.y83{bottom:648.253333pt;}
.y4e{bottom:658.333333pt;}
.ya8{bottom:658.493333pt;}
.y2d{bottom:669.053333pt;}
.yd{bottom:671.453333pt;}
.y4d{bottom:679.773333pt;}
.yb2{bottom:679.933333pt;}
.y2c{bottom:690.333333pt;}
.y4c{bottom:701.053333pt;}
.y82{bottom:701.213333pt;}
.yc{bottom:702.813333pt;}
.y70{bottom:711.293333pt;}
.y62{bottom:711.453333pt;}
.y2b{bottom:711.613333pt;}
.yde{bottom:711.773333pt;}
.y4b{bottom:722.373333pt;}
.yc9{bottom:722.533333pt;}
.yb{bottom:731.973333pt;}
.y2a{bottom:733.093333pt;}
.y81{bottom:743.333333pt;}
.yd9{bottom:743.493333pt;}
.y4a{bottom:743.653333pt;}
.y61{bottom:743.813333pt;}
.y29{bottom:754.373333pt;}
.yd2{bottom:754.533333pt;}
.y49{bottom:764.933333pt;}
.yd1{bottom:775.653333pt;}
.y60{bottom:775.813333pt;}
.ya{bottom:776.453333pt;}
.y28{bottom:786.213333pt;}
.y48{bottom:786.373333pt;}
.y5f{bottom:796.933333pt;}
.yc8{bottom:797.093333pt;}
.y47{bottom:807.653333pt;}
.y9{bottom:815.173333pt;}
.y5e{bottom:818.213333pt;}
.y27{bottom:818.373333pt;}
.y26{bottom:839.653333pt;}
.y46{bottom:839.813333pt;}
.y8{bottom:850.693333pt;}
.y25{bottom:860.933333pt;}
.y4{bottom:895.813333pt;}
.y3{bottom:922.853333pt;}
.y2{bottom:951.040000pt;}
.y1{bottom:986.080000pt;}
.hf{height:34.720000pt;}
.h18{height:36.786667pt;}
.h19{height:36.818667pt;}
.h14{height:37.090625pt;}
.h10{height:37.479688pt;}
.hc{height:44.687500pt;}
.hb{height:45.156250pt;}
.h3{height:45.494375pt;}
.h13{height:52.134375pt;}
.he{height:52.750000pt;}
.h2{height:54.812500pt;}
.h17{height:55.186667pt;}
.h8{height:55.275000pt;}
.h11{height:55.298750pt;}
.h9{height:58.630000pt;}
.hd{height:62.812500pt;}
.h4{height:63.656250pt;}
.h5{height:65.531250pt;}
.h1a{height:65.781915pt;}
.ha{height:66.625000pt;}
.h1{height:72.900625pt;}
.h7{height:73.490625pt;}
.h6{height:75.410937pt;}
.h16{height:76.626667pt;}
.h12{height:85.600000pt;}
.h15{height:86.592000pt;}
.h0{height:1056.000000pt;}
.w8{width:112.992000pt;}
.w6{width:113.752000pt;}
.w9{width:115.186667pt;}
.w5{width:116.946667pt;}
.w1{width:119.032000pt;}
.w3{width:128.192000pt;}
.wa{width:131.538667pt;}
.w2{width:141.773333pt;}
.w7{width:146.573333pt;}
.w4{width:148.653333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.872000pt;}
.x5{left:96.032000pt;}
.x15{left:120.032000pt;}
.x16{left:144.026667pt;}
.x6{left:152.346667pt;}
.x11{left:211.240000pt;}
.x9{left:212.986667pt;}
.xc{left:216.360000pt;}
.x4{left:220.026667pt;}
.x1{left:238.746667pt;}
.x7{left:283.586667pt;}
.x3{left:324.866667pt;}
.xd{left:358.786667pt;}
.x2{left:365.346667pt;}
.x12{left:472.106667pt;}
.xe{left:487.626667pt;}
.xa{left:514.013333pt;}
.x8{left:566.333333pt;}
.x13{left:587.946667pt;}
.x10{left:611.013333pt;}
.xf{left:636.933333pt;}
.x14{left:663.013333pt;}
}




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