
    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_bc2df28bf253796c8f308d6e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cca8f683327455ff3990cd3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063477;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_96709318cd419a26a5345676.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_7fa54d1ac222abc835e590ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_138a3e56be5c70e5482df4a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_325ec957936fda7a984a9304.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_0b1e2a8e6e6ac0ba9b3ba43c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_c83b723bcfa050d6f3f36ce6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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);}
.v3{vertical-align:-46.920000px;}
.v6{vertical-align:-3.840000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.640000px;}
.v2{vertical-align:90.000000px;}
.v1{vertical-align:98.640000px;}
.v5{vertical-align:229.860000px;}
.ls18{letter-spacing:-0.342600px;}
.ls19{letter-spacing:-0.341400px;}
.ls10{letter-spacing:-0.267600px;}
.ls12{letter-spacing:-0.256800px;}
.lsd{letter-spacing:-0.233400px;}
.ls13{letter-spacing:-0.165000px;}
.lsc{letter-spacing:-0.155400px;}
.ls11{letter-spacing:-0.136800px;}
.lsf{letter-spacing:-0.099600px;}
.ls8{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.057600px;}
.ls16{letter-spacing:-0.018000px;}
.ls15{letter-spacing:-0.005040px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.132600px;}
.lsa{letter-spacing:0.193200px;}
.ls17{letter-spacing:0.198600px;}
.ls14{letter-spacing:0.260400px;}
.ls4{letter-spacing:0.261600px;}
.ls9{letter-spacing:0.309600px;}
.ls5{letter-spacing:6.690240px;}
.ls2{letter-spacing:34.058160px;}
.ls1{letter-spacing:38.440080px;}
.ls3{letter-spacing:157.233600px;}
.ls0{letter-spacing:157.284000px;}
.ls6{letter-spacing:1129.023360px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws21{word-spacing:-131.760000px;}
.ws6{word-spacing:-95.824800px;}
.ws3{word-spacing:-95.704800px;}
.ws1{word-spacing:-95.421600px;}
.ws2{word-spacing:-94.780800px;}
.ws4{word-spacing:-94.593600px;}
.ws5{word-spacing:-94.068000px;}
.ws0{word-spacing:-94.032000px;}
.ws25{word-spacing:-51.582240px;}
.ws23{word-spacing:-46.753200px;}
.ws9{word-spacing:-44.506800px;}
.ws7{word-spacing:-39.031200px;}
.wse{word-spacing:-32.973600px;}
.wsc{word-spacing:-32.741280px;}
.wsa{word-spacing:-32.713200px;}
.wsd{word-spacing:-32.548200px;}
.ws8{word-spacing:-30.367200px;}
.ws20{word-spacing:-25.693200px;}
.wsf{word-spacing:-23.446800px;}
.ws1d{word-spacing:-1.344240px;}
.ws1f{word-spacing:-1.244880px;}
.ws11{word-spacing:-1.038480px;}
.ws12{word-spacing:-0.681840px;}
.ws10{word-spacing:-0.200160px;}
.ws14{word-spacing:-0.110880px;}
.ws26{word-spacing:0.000000px;}
.ws13{word-spacing:0.428040px;}
.ws1e{word-spacing:0.661320px;}
.wsb{word-spacing:0.746640px;}
.ws1c{word-spacing:6.861360px;}
.ws17{word-spacing:7.330800px;}
.ws19{word-spacing:7.359840px;}
.ws15{word-spacing:7.531920px;}
.ws1a{word-spacing:7.845120px;}
.ws1b{word-spacing:7.886520px;}
.ws18{word-spacing:8.577000px;}
.ws16{word-spacing:8.729640px;}
.ws22{word-spacing:4864.552080px;}
.ws24{word-spacing:5470.693920px;}
._b{margin-left:-16.776720px;}
._4{margin-left:-4.536000px;}
._1{margin-left:-2.684160px;}
._2{margin-left:-1.342080px;}
._0{width:1.174320px;}
._7{width:2.180880px;}
._3{width:3.690720px;}
._9{width:24.297840px;}
._a{width:29.785680px;}
._6{width:31.887840px;}
._8{width:33.902640px;}
._5{width:90.874560px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(30,100,200);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:96.480000px;}
.fs7{font-size:103.680000px;}
.fsc{font-size:120.240000px;}
.fs1{font-size:122.400000px;}
.fsd{font-size:131.760000px;}
.fs10{font-size:144.000000px;}
.fs8{font-size:156.240000px;}
.fs0{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fsb{font-size:192.240000px;}
.fs6{font-size:200.160000px;}
.fs2{font-size:216.000000px;}
.fs9{font-size:228.240000px;}
.fsf{font-size:239.760000px;}
.fs5{font-size:300.240000px;}
.fs3{font-size:480.240000px;}
.fs4{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y48{bottom:448.305000px;}
.y47{bottom:495.105000px;}
.y4b{bottom:512.925000px;}
.y4a{bottom:519.585000px;}
.y46{bottom:541.950000px;}
.y45{bottom:588.750000px;}
.y44{bottom:635.550000px;}
.y43{bottom:681.450000px;}
.y4e{bottom:718.275000px;}
.y4d{bottom:732.810000px;}
.y49{bottom:795.090000px;}
.y5d{bottom:803.055000px;}
.y4c{bottom:804.810000px;}
.y5c{bottom:878.685000px;}
.y5b{bottom:954.285000px;}
.y42{bottom:957.675000px;}
.y41{bottom:1003.035000px;}
.y59{bottom:1042.920000px;}
.y53{bottom:1082.010000px;}
.y40{bottom:1093.755000px;}
.y52{bottom:1125.210000px;}
.y3f{bottom:1139.115000px;}
.y51{bottom:1168.410000px;}
.y61{bottom:1176.045000px;}
.y3e{bottom:1184.475000px;}
.y3d{bottom:1229.655000px;}
.y60{bottom:1251.645000px;}
.y3c{bottom:1275.195000px;}
.y5f{bottom:1327.245000px;}
.y3b{bottom:1365.915000px;}
.y5e{bottom:1402.845000px;}
.y3a{bottom:1411.275000px;}
.y39{bottom:1456.455000px;}
.y58{bottom:1491.480000px;}
.y38{bottom:1501.995000px;}
.y37{bottom:1548.795000px;}
.y36{bottom:1644.555000px;}
.y35{bottom:1689.915000px;}
.y7{bottom:1695.135000px;}
.y50{bottom:1716.120000px;}
.y4f{bottom:1759.320000px;}
.y34{bottom:1780.635000px;}
.y6{bottom:1811.235000px;}
.y33{bottom:1826.025000px;}
.y5{bottom:1861.635000px;}
.y32{bottom:1871.385000px;}
.y4{bottom:1912.035000px;}
.y31{bottom:1916.745000px;}
.y30{bottom:1962.105000px;}
.y2f{bottom:2052.825000px;}
.y2e{bottom:2098.185000px;}
.y2d{bottom:2143.545000px;}
.y2c{bottom:2188.905000px;}
.y2b{bottom:2234.265000px;}
.y2a{bottom:2281.065000px;}
.y5a{bottom:2373.990000px;}
.y56{bottom:2508.555000px;}
.y29{bottom:2545.305000px;}
.y55{bottom:2551.755000px;}
.y28{bottom:2590.665000px;}
.y54{bottom:2594.955000px;}
.y27{bottom:2636.025000px;}
.y26{bottom:2681.385000px;}
.y3{bottom:2685.705000px;}
.y2{bottom:2706.765000px;}
.y25{bottom:2726.745000px;}
.y24{bottom:2772.105000px;}
.y23{bottom:2862.870000px;}
.y22{bottom:2908.230000px;}
.y21{bottom:2953.590000px;}
.y20{bottom:2998.950000px;}
.y1f{bottom:3044.310000px;}
.y1e{bottom:3089.670000px;}
.y1d{bottom:3135.030000px;}
.y1c{bottom:3225.750000px;}
.y1b{bottom:3271.110000px;}
.y1a{bottom:3316.470000px;}
.y19{bottom:3361.830000px;}
.y18{bottom:3407.190000px;}
.y17{bottom:3452.550000px;}
.y16{bottom:3497.910000px;}
.y15{bottom:3543.270000px;}
.y14{bottom:3588.630000px;}
.y13{bottom:3679.350000px;}
.y12{bottom:3770.070000px;}
.y11{bottom:3815.430000px;}
.y10{bottom:3860.790000px;}
.yf{bottom:3906.180000px;}
.y1{bottom:3950.970000px;}
.ye{bottom:3951.540000px;}
.y57{bottom:4035.810000px;}
.yd{bottom:4045.860000px;}
.yc{bottom:4215.060000px;}
.yb{bottom:4282.590000px;}
.ya{bottom:4338.390000px;}
.y9{bottom:4490.250000px;}
.y8{bottom:4647.750000px;}
.h9{height:75.937500px;}
.he{height:88.066406px;}
.hf{height:96.503906px;}
.h4{height:103.155469px;}
.h14{height:105.468750px;}
.h10{height:111.043828px;}
.hb{height:122.871094px;}
.hc{height:122.976562px;}
.h11{height:137.683828px;}
.hd{height:140.800781px;}
.ha{height:167.167969px;}
.h2{height:171.773789px;}
.h12{height:175.605469px;}
.h3{height:201.795469px;}
.h5{height:221.167969px;}
.h15{height:233.700820px;}
.h8{height:236.601562px;}
.h6{height:351.738281px;}
.h7{height:351.843750px;}
.h13{height:405.465469px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:185.579947px;}
.x4{left:202.754947px;}
.x10{left:219.134947px;}
.x7{left:237.449947px;}
.x8{left:279.929947px;}
.x9{left:333.929947px;}
.xa{left:342.209947px;}
.x5{left:432.254947px;}
.xc{left:648.389947px;}
.x14{left:811.724947px;}
.x17{left:876.854947px;}
.xd{left:901.544947px;}
.xf{left:965.054947px;}
.xe{left:1007.204947px;}
.x13{left:1203.194947px;}
.x12{left:1351.109947px;}
.x11{left:1579.679947px;}
.x1{left:1895.729947px;}
.x18{left:1899.464947px;}
.xb{left:1917.869947px;}
.x19{left:1953.464947px;}
.x3{left:2120.909947px;}
.x16{left:2474.354947px;}
.x15{left:2495.669947px;}
.x2{left:2582.279947px;}
@media print{
.v3{vertical-align:-41.706667pt;}
.v6{vertical-align:-3.413333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.680000pt;}
.v2{vertical-align:80.000000pt;}
.v1{vertical-align:87.680000pt;}
.v5{vertical-align:204.320000pt;}
.ls18{letter-spacing:-0.304533pt;}
.ls19{letter-spacing:-0.303467pt;}
.ls10{letter-spacing:-0.237867pt;}
.ls12{letter-spacing:-0.228267pt;}
.lsd{letter-spacing:-0.207467pt;}
.ls13{letter-spacing:-0.146667pt;}
.lsc{letter-spacing:-0.138133pt;}
.ls11{letter-spacing:-0.121600pt;}
.lsf{letter-spacing:-0.088533pt;}
.ls8{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051200pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls15{letter-spacing:-0.004480pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.117867pt;}
.lsa{letter-spacing:0.171733pt;}
.ls17{letter-spacing:0.176533pt;}
.ls14{letter-spacing:0.231467pt;}
.ls4{letter-spacing:0.232533pt;}
.ls9{letter-spacing:0.275200pt;}
.ls5{letter-spacing:5.946880pt;}
.ls2{letter-spacing:30.273920pt;}
.ls1{letter-spacing:34.168960pt;}
.ls3{letter-spacing:139.763200pt;}
.ls0{letter-spacing:139.808000pt;}
.ls6{letter-spacing:1003.576320pt;}
.ws21{word-spacing:-117.120000pt;}
.ws6{word-spacing:-85.177600pt;}
.ws3{word-spacing:-85.070933pt;}
.ws1{word-spacing:-84.819200pt;}
.ws2{word-spacing:-84.249600pt;}
.ws4{word-spacing:-84.083200pt;}
.ws5{word-spacing:-83.616000pt;}
.ws0{word-spacing:-83.584000pt;}
.ws25{word-spacing:-45.850880pt;}
.ws23{word-spacing:-41.558400pt;}
.ws9{word-spacing:-39.561600pt;}
.ws7{word-spacing:-34.694400pt;}
.wse{word-spacing:-29.309867pt;}
.wsc{word-spacing:-29.103360pt;}
.wsa{word-spacing:-29.078400pt;}
.wsd{word-spacing:-28.931733pt;}
.ws8{word-spacing:-26.993067pt;}
.ws20{word-spacing:-22.838400pt;}
.wsf{word-spacing:-20.841600pt;}
.ws1d{word-spacing:-1.194880pt;}
.ws1f{word-spacing:-1.106560pt;}
.ws11{word-spacing:-0.923093pt;}
.ws12{word-spacing:-0.606080pt;}
.ws10{word-spacing:-0.177920pt;}
.ws14{word-spacing:-0.098560pt;}
.ws26{word-spacing:0.000000pt;}
.ws13{word-spacing:0.380480pt;}
.ws1e{word-spacing:0.587840pt;}
.wsb{word-spacing:0.663680pt;}
.ws1c{word-spacing:6.098987pt;}
.ws17{word-spacing:6.516267pt;}
.ws19{word-spacing:6.542080pt;}
.ws15{word-spacing:6.695040pt;}
.ws1a{word-spacing:6.973440pt;}
.ws1b{word-spacing:7.010240pt;}
.ws18{word-spacing:7.624000pt;}
.ws16{word-spacing:7.759680pt;}
.ws22{word-spacing:4324.046293pt;}
.ws24{word-spacing:4862.839040pt;}
._b{margin-left:-14.912640pt;}
._4{margin-left:-4.032000pt;}
._1{margin-left:-2.385920pt;}
._2{margin-left:-1.192960pt;}
._0{width:1.043840pt;}
._7{width:1.938560pt;}
._3{width:3.280640pt;}
._9{width:21.598080pt;}
._a{width:26.476160pt;}
._6{width:28.344747pt;}
._8{width:30.135680pt;}
._5{width:80.777387pt;}
.fse{font-size:85.760000pt;}
.fs7{font-size:92.160000pt;}
.fsc{font-size:106.880000pt;}
.fs1{font-size:108.800000pt;}
.fsd{font-size:117.120000pt;}
.fs10{font-size:128.000000pt;}
.fs8{font-size:138.880000pt;}
.fs0{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fsb{font-size:170.880000pt;}
.fs6{font-size:177.920000pt;}
.fs2{font-size:192.000000pt;}
.fs9{font-size:202.880000pt;}
.fsf{font-size:213.120000pt;}
.fs5{font-size:266.880000pt;}
.fs3{font-size:426.880000pt;}
.fs4{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:398.493333pt;}
.y47{bottom:440.093333pt;}
.y4b{bottom:455.933333pt;}
.y4a{bottom:461.853333pt;}
.y46{bottom:481.733333pt;}
.y45{bottom:523.333333pt;}
.y44{bottom:564.933333pt;}
.y43{bottom:605.733333pt;}
.y4e{bottom:638.466667pt;}
.y4d{bottom:651.386667pt;}
.y49{bottom:706.746667pt;}
.y5d{bottom:713.826667pt;}
.y4c{bottom:715.386667pt;}
.y5c{bottom:781.053333pt;}
.y5b{bottom:848.253333pt;}
.y42{bottom:851.266667pt;}
.y41{bottom:891.586667pt;}
.y59{bottom:927.040000pt;}
.y53{bottom:961.786667pt;}
.y40{bottom:972.226667pt;}
.y52{bottom:1000.186667pt;}
.y3f{bottom:1012.546667pt;}
.y51{bottom:1038.586667pt;}
.y61{bottom:1045.373333pt;}
.y3e{bottom:1052.866667pt;}
.y3d{bottom:1093.026667pt;}
.y60{bottom:1112.573333pt;}
.y3c{bottom:1133.506667pt;}
.y5f{bottom:1179.773333pt;}
.y3b{bottom:1214.146667pt;}
.y5e{bottom:1246.973333pt;}
.y3a{bottom:1254.466667pt;}
.y39{bottom:1294.626667pt;}
.y58{bottom:1325.760000pt;}
.y38{bottom:1335.106667pt;}
.y37{bottom:1376.706667pt;}
.y36{bottom:1461.826667pt;}
.y35{bottom:1502.146667pt;}
.y7{bottom:1506.786667pt;}
.y50{bottom:1525.440000pt;}
.y4f{bottom:1563.840000pt;}
.y34{bottom:1582.786667pt;}
.y6{bottom:1609.986667pt;}
.y33{bottom:1623.133333pt;}
.y5{bottom:1654.786667pt;}
.y32{bottom:1663.453333pt;}
.y4{bottom:1699.586667pt;}
.y31{bottom:1703.773333pt;}
.y30{bottom:1744.093333pt;}
.y2f{bottom:1824.733333pt;}
.y2e{bottom:1865.053333pt;}
.y2d{bottom:1905.373333pt;}
.y2c{bottom:1945.693333pt;}
.y2b{bottom:1986.013333pt;}
.y2a{bottom:2027.613333pt;}
.y5a{bottom:2110.213333pt;}
.y56{bottom:2229.826667pt;}
.y29{bottom:2262.493333pt;}
.y55{bottom:2268.226667pt;}
.y28{bottom:2302.813333pt;}
.y54{bottom:2306.626667pt;}
.y27{bottom:2343.133333pt;}
.y26{bottom:2383.453333pt;}
.y3{bottom:2387.293333pt;}
.y2{bottom:2406.013333pt;}
.y25{bottom:2423.773333pt;}
.y24{bottom:2464.093333pt;}
.y23{bottom:2544.773333pt;}
.y22{bottom:2585.093333pt;}
.y21{bottom:2625.413333pt;}
.y20{bottom:2665.733333pt;}
.y1f{bottom:2706.053333pt;}
.y1e{bottom:2746.373333pt;}
.y1d{bottom:2786.693333pt;}
.y1c{bottom:2867.333333pt;}
.y1b{bottom:2907.653333pt;}
.y1a{bottom:2947.973333pt;}
.y19{bottom:2988.293333pt;}
.y18{bottom:3028.613333pt;}
.y17{bottom:3068.933333pt;}
.y16{bottom:3109.253333pt;}
.y15{bottom:3149.573333pt;}
.y14{bottom:3189.893333pt;}
.y13{bottom:3270.533333pt;}
.y12{bottom:3351.173333pt;}
.y11{bottom:3391.493333pt;}
.y10{bottom:3431.813333pt;}
.yf{bottom:3472.160000pt;}
.y1{bottom:3511.973333pt;}
.ye{bottom:3512.480000pt;}
.y57{bottom:3587.386667pt;}
.yd{bottom:3596.320000pt;}
.yc{bottom:3746.720000pt;}
.yb{bottom:3806.746667pt;}
.ya{bottom:3856.346667pt;}
.y9{bottom:3991.333333pt;}
.y8{bottom:4131.333333pt;}
.h9{height:67.500000pt;}
.he{height:78.281250pt;}
.hf{height:85.781250pt;}
.h4{height:91.693750pt;}
.h14{height:93.750000pt;}
.h10{height:98.705625pt;}
.hb{height:109.218750pt;}
.hc{height:109.312500pt;}
.h11{height:122.385625pt;}
.hd{height:125.156250pt;}
.ha{height:148.593750pt;}
.h2{height:152.687812pt;}
.h12{height:156.093750pt;}
.h3{height:179.373750pt;}
.h5{height:196.593750pt;}
.h15{height:207.734062pt;}
.h8{height:210.312500pt;}
.h6{height:312.656250pt;}
.h7{height:312.750000pt;}
.h13{height:360.413750pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:164.959953pt;}
.x4{left:180.226619pt;}
.x10{left:194.786619pt;}
.x7{left:211.066619pt;}
.x8{left:248.826619pt;}
.x9{left:296.826619pt;}
.xa{left:304.186619pt;}
.x5{left:384.226619pt;}
.xc{left:576.346619pt;}
.x14{left:721.533286pt;}
.x17{left:779.426619pt;}
.xd{left:801.373286pt;}
.xf{left:857.826619pt;}
.xe{left:895.293286pt;}
.x13{left:1069.506619pt;}
.x12{left:1200.986619pt;}
.x11{left:1404.159953pt;}
.x1{left:1685.093286pt;}
.x18{left:1688.413286pt;}
.xb{left:1704.773286pt;}
.x19{left:1736.413286pt;}
.x3{left:1885.253286pt;}
.x16{left:2199.426619pt;}
.x15{left:2218.373286pt;}
.x2{left:2295.359953pt;}
}




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