
    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_fb6848c86879a16bc9b9a281.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_d2acae345da9292d23653423.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_9654b333f5d22d0a88a9bac6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_e1fe69c0d83fefd23819af67.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0b19f5209ad8f16b851c7121.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aa785caf2956079f6aad6b20.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_f963e2eab160fd362896154f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0c746206f98e5eb5a4aca3c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_02a40654a537a78caca47242.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_a66591d74d99eebbecff53d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_f6cbed739e0e5c9516bdcaa2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7b27ae0054c273f6ddf39e37.woff2')format("woff");}.fff{font-family:fff;line-height:0.946777;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls14{letter-spacing:-18.540000px;}
.ls12{letter-spacing:-17.820000px;}
.ls8{letter-spacing:-15.660000px;}
.ls13{letter-spacing:-8.460000px;}
.ls15{letter-spacing:-2.520000px;}
.ls6{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.lse{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.311040px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:3.060000px;}
.lsf{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.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:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.580000px;}
.wsa{word-spacing:-12.420000px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:360.081120px;}
.wsb{word-spacing:464.880000px;}
._a{margin-left:-1782.548640px;}
._9{margin-left:-1507.660320px;}
._6{margin-left:-681.448320px;}
._b{margin-left:-429.840000px;}
._7{margin-left:-262.517760px;}
._11{margin-left:-232.839360px;}
._f{margin-left:-231.264000px;}
._47{margin-left:-170.420160px;}
._4f{margin-left:-168.799920px;}
._4a{margin-left:-166.960080px;}
._8{margin-left:-140.955840px;}
._33{margin-left:-139.602240px;}
._45{margin-left:-138.599520px;}
._4b{margin-left:-136.563120px;}
._48{margin-left:-134.535600px;}
._4c{margin-left:-133.284240px;}
._29{margin-left:-119.520000px;}
._e{margin-left:-115.200000px;}
._2a{margin-left:-110.160000px;}
._39{margin-left:-109.057680px;}
._2c{margin-left:-105.240000px;}
._37{margin-left:-103.420080px;}
._2b{margin-left:-93.520080px;}
._3b{margin-left:-91.344240px;}
._27{margin-left:-90.000000px;}
._28{margin-left:-88.560000px;}
._d{margin-left:-82.776000px;}
._30{margin-left:-80.640000px;}
._32{margin-left:-79.560000px;}
._41{margin-left:-74.160000px;}
._42{margin-left:-72.460080px;}
._c{margin-left:-66.240000px;}
._31{margin-left:-50.140080px;}
._3f{margin-left:-35.100000px;}
._36{margin-left:-32.786640px;}
._24{margin-left:-17.279760px;}
._25{margin-left:-15.297840px;}
._44{margin-left:-12.343440px;}
._35{margin-left:-10.197840px;}
._2e{margin-left:-7.320000px;}
._1b{margin-left:-6.213120px;}
._22{margin-left:-4.422480px;}
._1{margin-left:-3.116880px;}
._0{margin-left:-1.347840px;}
._2{width:1.374720px;}
._15{width:2.928000px;}
._14{width:4.042320px;}
._1f{width:5.160480px;}
._19{width:7.084800px;}
._1a{width:8.240160px;}
._1e{width:9.437760px;}
._13{width:10.636560px;}
._12{width:11.874240px;}
._18{width:13.368720px;}
._16{width:15.853680px;}
._17{width:17.181600px;}
._10{width:18.216000px;}
._3e{width:21.284880px;}
._1c{width:31.134720px;}
._1d{width:32.748720px;}
._20{width:36.453360px;}
._21{width:37.529280px;}
._4e{width:170.835840px;}
._40{width:244.745760px;}
._43{width:273.600000px;}
._26{width:305.020800px;}
._2d{width:335.640000px;}
._4{width:337.140000px;}
._2f{width:374.974080px;}
._3d{width:376.944720px;}
._34{width:405.660000px;}
._3c{width:406.920000px;}
._38{width:455.189040px;}
._49{width:463.807680px;}
._46{width:465.317760px;}
._3a{width:486.120000px;}
._4d{width:494.100000px;}
._3{width:715.653600px;}
._23{width:837.120000px;}
._5{width:1275.429120px;}
.fc5{color:rgb(15,36,62);}
.fc4{color:rgb(84,141,212);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.760000px;}
.y43{bottom:8.280000px;}
.y6{bottom:11.880000px;}
.y2b{bottom:25.560000px;}
.y42{bottom:28.080000px;}
.y5{bottom:40.500000px;}
.y2a{bottom:45.405000px;}
.y41{bottom:48.105000px;}
.ya{bottom:62.100000px;}
.y29{bottom:65.205000px;}
.y40{bottom:67.905000px;}
.y4{bottom:68.940000px;}
.y28{bottom:85.185000px;}
.y3f{bottom:87.705000px;}
.y51{bottom:89.640000px;}
.y8{bottom:90.210000px;}
.y3{bottom:97.590000px;}
.y81{bottom:97.920000px;}
.y27{bottom:104.985000px;}
.y3e{bottom:107.505000px;}
.y50{bottom:109.440000px;}
.ya6{bottom:111.960000px;}
.y80{bottom:117.720000px;}
.y26{bottom:124.785000px;}
.y3d{bottom:127.305000px;}
.y2{bottom:128.550000px;}
.y7{bottom:128.730000px;}
.y4f{bottom:129.240000px;}
.ya5{bottom:131.760000px;}
.y7f{bottom:137.520000px;}
.y25{bottom:144.585000px;}
.y3c{bottom:147.285000px;}
.y4e{bottom:149.220000px;}
.ya4{bottom:151.770000px;}
.y7e{bottom:157.530000px;}
.y24{bottom:164.385000px;}
.y3b{bottom:167.085000px;}
.y4d{bottom:169.050000px;}
.ya3{bottom:171.570000px;}
.y7d{bottom:177.330000px;}
.y23{bottom:184.365000px;}
.y3a{bottom:186.885000px;}
.y4c{bottom:188.850000px;}
.ya2{bottom:191.370000px;}
.y7c{bottom:197.130000px;}
.y22{bottom:204.165000px;}
.y39{bottom:206.685000px;}
.y4b{bottom:208.650000px;}
.ya1{bottom:211.170000px;}
.y7b{bottom:213.690000px;}
.y21{bottom:223.965000px;}
.y38{bottom:226.485000px;}
.y4a{bottom:228.450000px;}
.ya0{bottom:230.970000px;}
.y20{bottom:243.765000px;}
.y37{bottom:246.465000px;}
.y49{bottom:248.430000px;}
.y9f{bottom:250.950000px;}
.y1f{bottom:263.565000px;}
.y36{bottom:266.265000px;}
.y48{bottom:268.230000px;}
.y9e{bottom:270.750000px;}
.y1e{bottom:283.545000px;}
.y35{bottom:286.065000px;}
.y47{bottom:288.030000px;}
.y9d{bottom:290.550000px;}
.y1d{bottom:303.375000px;}
.y34{bottom:305.895000px;}
.y46{bottom:307.830000px;}
.y9c{bottom:310.350000px;}
.y1c{bottom:323.175000px;}
.y33{bottom:325.695000px;}
.y45{bottom:327.630000px;}
.y9b{bottom:330.150000px;}
.y7a{bottom:341.130000px;}
.y1b{bottom:342.975000px;}
.y32{bottom:345.675000px;}
.y44{bottom:347.610000px;}
.y9a{bottom:350.130000px;}
.y79{bottom:360.930000px;}
.y13{bottom:362.370000px;}
.y1a{bottom:362.775000px;}
.y31{bottom:365.475000px;}
.y99{bottom:369.930000px;}
.y78{bottom:380.730000px;}
.y19{bottom:382.755000px;}
.y30{bottom:385.275000px;}
.y98{bottom:389.730000px;}
.y77{bottom:400.575000px;}
.y18{bottom:402.555000px;}
.y2f{bottom:405.075000px;}
.y97{bottom:409.575000px;}
.y76{bottom:420.375000px;}
.y17{bottom:422.355000px;}
.y2e{bottom:424.875000px;}
.y96{bottom:429.375000px;}
.y75{bottom:440.355000px;}
.y16{bottom:442.155000px;}
.y2d{bottom:444.855000px;}
.y95{bottom:449.355000px;}
.y74{bottom:460.155000px;}
.y15{bottom:461.955000px;}
.y2c{bottom:462.135000px;}
.y94{bottom:469.155000px;}
.y73{bottom:479.955000px;}
.y14{bottom:481.935000px;}
.y93{bottom:488.955000px;}
.y72{bottom:508.755000px;}
.y71{bottom:528.555000px;}
.y70{bottom:548.355000px;}
.y6f{bottom:568.335000px;}
.y6e{bottom:588.135000px;}
.y92{bottom:607.935000px;}
.y6d{bottom:616.935000px;}
.y91{bottom:627.735000px;}
.y6c{bottom:636.735000px;}
.y90{bottom:647.535000px;}
.y6b{bottom:656.565000px;}
.y8f{bottom:667.545000px;}
.y6a{bottom:676.545000px;}
.y69{bottom:696.345000px;}
.y68{bottom:716.145000px;}
.y67{bottom:735.945000px;}
.y66{bottom:755.745000px;}
.y65{bottom:775.725000px;}
.y64{bottom:795.525000px;}
.y8e{bottom:815.325000px;}
.y63{bottom:824.325000px;}
.y8d{bottom:835.125000px;}
.y62{bottom:844.125000px;}
.y8c{bottom:854.925000px;}
.y11{bottom:859.065000px;}
.y61{bottom:863.925000px;}
.y8b{bottom:874.905000px;}
.y60{bottom:883.905000px;}
.y10{bottom:894.345000px;}
.y8a{bottom:894.705000px;}
.y5f{bottom:912.750000px;}
.yf{bottom:914.370000px;}
.y89{bottom:923.550000px;}
.y5e{bottom:932.550000px;}
.ye{bottom:934.710000px;}
.y88{bottom:943.350000px;}
.y5d{bottom:952.350000px;}
.yd{bottom:956.490000px;}
.y87{bottom:963.150000px;}
.y5c{bottom:972.150000px;}
.yc{bottom:981.330000px;}
.y86{bottom:983.130000px;}
.y5b{bottom:1001.130000px;}
.y85{bottom:1011.930000px;}
.yb{bottom:1013.190000px;}
.y5a{bottom:1020.930000px;}
.y84{bottom:1031.730000px;}
.y9{bottom:1040.370000px;}
.y59{bottom:1040.730000px;}
.y83{bottom:1051.530000px;}
.y1{bottom:1058.190000px;}
.y58{bottom:1060.530000px;}
.y82{bottom:1071.330000px;}
.y57{bottom:1080.330000px;}
.y56{bottom:1100.310000px;}
.y55{bottom:1120.110000px;}
.y54{bottom:1139.910000px;}
.y53{bottom:1169.820000px;}
.y52{bottom:1192.680000px;}
.hb{height:28.800000px;}
.he{height:42.164648px;}
.ha{height:43.215117px;}
.h10{height:43.506914px;}
.h11{height:43.681992px;}
.h9{height:46.736719px;}
.h7{height:48.418594px;}
.h4{height:48.774375px;}
.hc{height:48.995859px;}
.hf{height:51.706406px;}
.h5{height:53.015625px;}
.h3{height:62.028281px;}
.h8{height:67.565039px;}
.h6{height:73.722656px;}
.h2{height:150.690000px;}
.hd{height:495.975000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:126.396000px;}
.w7{width:181.650000px;}
.w6{width:605.310000px;}
.w2{width:657.150000px;}
.w5{width:786.960000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x5{left:53.100000px;}
.x1{left:54.720000px;}
.x8{left:80.999987px;}
.x9{left:108.035987px;}
.x6{left:658.410000px;}
.x3{left:711.870000px;}
.x4{left:727.529987px;}
.x7{left:768.569987px;}
.xa{left:832.319987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls14{letter-spacing:-16.480000pt;}
.ls12{letter-spacing:-15.840000pt;}
.ls8{letter-spacing:-13.920000pt;}
.ls13{letter-spacing:-7.520000pt;}
.ls15{letter-spacing:-2.240000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.276480pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:2.720000pt;}
.lsf{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.960000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:320.072107pt;}
.wsb{word-spacing:413.226667pt;}
._a{margin-left:-1584.487680pt;}
._9{margin-left:-1340.142507pt;}
._6{margin-left:-605.731840pt;}
._b{margin-left:-382.080000pt;}
._7{margin-left:-233.349120pt;}
._11{margin-left:-206.968320pt;}
._f{margin-left:-205.568000pt;}
._47{margin-left:-151.484587pt;}
._4f{margin-left:-150.044373pt;}
._4a{margin-left:-148.408960pt;}
._8{margin-left:-125.294080pt;}
._33{margin-left:-124.090880pt;}
._45{margin-left:-123.199573pt;}
._4b{margin-left:-121.389440pt;}
._48{margin-left:-119.587200pt;}
._4c{margin-left:-118.474880pt;}
._29{margin-left:-106.240000pt;}
._e{margin-left:-102.400000pt;}
._2a{margin-left:-97.920000pt;}
._39{margin-left:-96.940160pt;}
._2c{margin-left:-93.546667pt;}
._37{margin-left:-91.928960pt;}
._2b{margin-left:-83.128960pt;}
._3b{margin-left:-81.194880pt;}
._27{margin-left:-80.000000pt;}
._28{margin-left:-78.720000pt;}
._d{margin-left:-73.578667pt;}
._30{margin-left:-71.680000pt;}
._32{margin-left:-70.720000pt;}
._41{margin-left:-65.920000pt;}
._42{margin-left:-64.408960pt;}
._c{margin-left:-58.880000pt;}
._31{margin-left:-44.568960pt;}
._3f{margin-left:-31.200000pt;}
._36{margin-left:-29.143680pt;}
._24{margin-left:-15.359787pt;}
._25{margin-left:-13.598080pt;}
._44{margin-left:-10.971947pt;}
._35{margin-left:-9.064747pt;}
._2e{margin-left:-6.506667pt;}
._1b{margin-left:-5.522773pt;}
._22{margin-left:-3.931093pt;}
._1{margin-left:-2.770560pt;}
._0{margin-left:-1.198080pt;}
._2{width:1.221973pt;}
._15{width:2.602667pt;}
._14{width:3.593173pt;}
._1f{width:4.587093pt;}
._19{width:6.297600pt;}
._1a{width:7.324587pt;}
._1e{width:8.389120pt;}
._13{width:9.454720pt;}
._12{width:10.554880pt;}
._18{width:11.883307pt;}
._16{width:14.092160pt;}
._17{width:15.272533pt;}
._10{width:16.192000pt;}
._3e{width:18.919893pt;}
._1c{width:27.675307pt;}
._1d{width:29.109973pt;}
._20{width:32.402987pt;}
._21{width:33.359360pt;}
._4e{width:151.854080pt;}
._40{width:217.551787pt;}
._43{width:243.200000pt;}
._26{width:271.129600pt;}
._2d{width:298.346667pt;}
._4{width:299.680000pt;}
._2f{width:333.310293pt;}
._3d{width:335.061973pt;}
._34{width:360.586667pt;}
._3c{width:361.706667pt;}
._38{width:404.612480pt;}
._49{width:412.273493pt;}
._46{width:413.615787pt;}
._3a{width:432.106667pt;}
._4d{width:439.200000pt;}
._3{width:636.136533pt;}
._23{width:744.106667pt;}
._5{width:1133.714773pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:5.120000pt;}
.y43{bottom:7.360000pt;}
.y6{bottom:10.560000pt;}
.y2b{bottom:22.720000pt;}
.y42{bottom:24.960000pt;}
.y5{bottom:36.000000pt;}
.y2a{bottom:40.360000pt;}
.y41{bottom:42.760000pt;}
.ya{bottom:55.200000pt;}
.y29{bottom:57.960000pt;}
.y40{bottom:60.360000pt;}
.y4{bottom:61.280000pt;}
.y28{bottom:75.720000pt;}
.y3f{bottom:77.960000pt;}
.y51{bottom:79.680000pt;}
.y8{bottom:80.186667pt;}
.y3{bottom:86.746667pt;}
.y81{bottom:87.040000pt;}
.y27{bottom:93.320000pt;}
.y3e{bottom:95.560000pt;}
.y50{bottom:97.280000pt;}
.ya6{bottom:99.520000pt;}
.y80{bottom:104.640000pt;}
.y26{bottom:110.920000pt;}
.y3d{bottom:113.160000pt;}
.y2{bottom:114.266667pt;}
.y7{bottom:114.426667pt;}
.y4f{bottom:114.880000pt;}
.ya5{bottom:117.120000pt;}
.y7f{bottom:122.240000pt;}
.y25{bottom:128.520000pt;}
.y3c{bottom:130.920000pt;}
.y4e{bottom:132.640000pt;}
.ya4{bottom:134.906667pt;}
.y7e{bottom:140.026667pt;}
.y24{bottom:146.120000pt;}
.y3b{bottom:148.520000pt;}
.y4d{bottom:150.266667pt;}
.ya3{bottom:152.506667pt;}
.y7d{bottom:157.626667pt;}
.y23{bottom:163.880000pt;}
.y3a{bottom:166.120000pt;}
.y4c{bottom:167.866667pt;}
.ya2{bottom:170.106667pt;}
.y7c{bottom:175.226667pt;}
.y22{bottom:181.480000pt;}
.y39{bottom:183.720000pt;}
.y4b{bottom:185.466667pt;}
.ya1{bottom:187.706667pt;}
.y7b{bottom:189.946667pt;}
.y21{bottom:199.080000pt;}
.y38{bottom:201.320000pt;}
.y4a{bottom:203.066667pt;}
.ya0{bottom:205.306667pt;}
.y20{bottom:216.680000pt;}
.y37{bottom:219.080000pt;}
.y49{bottom:220.826667pt;}
.y9f{bottom:223.066667pt;}
.y1f{bottom:234.280000pt;}
.y36{bottom:236.680000pt;}
.y48{bottom:238.426667pt;}
.y9e{bottom:240.666667pt;}
.y1e{bottom:252.040000pt;}
.y35{bottom:254.280000pt;}
.y47{bottom:256.026667pt;}
.y9d{bottom:258.266667pt;}
.y1d{bottom:269.666667pt;}
.y34{bottom:271.906667pt;}
.y46{bottom:273.626667pt;}
.y9c{bottom:275.866667pt;}
.y1c{bottom:287.266667pt;}
.y33{bottom:289.506667pt;}
.y45{bottom:291.226667pt;}
.y9b{bottom:293.466667pt;}
.y7a{bottom:303.226667pt;}
.y1b{bottom:304.866667pt;}
.y32{bottom:307.266667pt;}
.y44{bottom:308.986667pt;}
.y9a{bottom:311.226667pt;}
.y79{bottom:320.826667pt;}
.y13{bottom:322.106667pt;}
.y1a{bottom:322.466667pt;}
.y31{bottom:324.866667pt;}
.y99{bottom:328.826667pt;}
.y78{bottom:338.426667pt;}
.y19{bottom:340.226667pt;}
.y30{bottom:342.466667pt;}
.y98{bottom:346.426667pt;}
.y77{bottom:356.066667pt;}
.y18{bottom:357.826667pt;}
.y2f{bottom:360.066667pt;}
.y97{bottom:364.066667pt;}
.y76{bottom:373.666667pt;}
.y17{bottom:375.426667pt;}
.y2e{bottom:377.666667pt;}
.y96{bottom:381.666667pt;}
.y75{bottom:391.426667pt;}
.y16{bottom:393.026667pt;}
.y2d{bottom:395.426667pt;}
.y95{bottom:399.426667pt;}
.y74{bottom:409.026667pt;}
.y15{bottom:410.626667pt;}
.y2c{bottom:410.786667pt;}
.y94{bottom:417.026667pt;}
.y73{bottom:426.626667pt;}
.y14{bottom:428.386667pt;}
.y93{bottom:434.626667pt;}
.y72{bottom:452.226667pt;}
.y71{bottom:469.826667pt;}
.y70{bottom:487.426667pt;}
.y6f{bottom:505.186667pt;}
.y6e{bottom:522.786667pt;}
.y92{bottom:540.386667pt;}
.y6d{bottom:548.386667pt;}
.y91{bottom:557.986667pt;}
.y6c{bottom:565.986667pt;}
.y90{bottom:575.586667pt;}
.y6b{bottom:583.613333pt;}
.y8f{bottom:593.373333pt;}
.y6a{bottom:601.373333pt;}
.y69{bottom:618.973333pt;}
.y68{bottom:636.573333pt;}
.y67{bottom:654.173333pt;}
.y66{bottom:671.773333pt;}
.y65{bottom:689.533333pt;}
.y64{bottom:707.133333pt;}
.y8e{bottom:724.733333pt;}
.y63{bottom:732.733333pt;}
.y8d{bottom:742.333333pt;}
.y62{bottom:750.333333pt;}
.y8c{bottom:759.933333pt;}
.y11{bottom:763.613333pt;}
.y61{bottom:767.933333pt;}
.y8b{bottom:777.693333pt;}
.y60{bottom:785.693333pt;}
.y10{bottom:794.973333pt;}
.y8a{bottom:795.293333pt;}
.y5f{bottom:811.333333pt;}
.yf{bottom:812.773333pt;}
.y89{bottom:820.933333pt;}
.y5e{bottom:828.933333pt;}
.ye{bottom:830.853333pt;}
.y88{bottom:838.533333pt;}
.y5d{bottom:846.533333pt;}
.yd{bottom:850.213333pt;}
.y87{bottom:856.133333pt;}
.y5c{bottom:864.133333pt;}
.yc{bottom:872.293333pt;}
.y86{bottom:873.893333pt;}
.y5b{bottom:889.893333pt;}
.y85{bottom:899.493333pt;}
.yb{bottom:900.613333pt;}
.y5a{bottom:907.493333pt;}
.y84{bottom:917.093333pt;}
.y9{bottom:924.773333pt;}
.y59{bottom:925.093333pt;}
.y83{bottom:934.693333pt;}
.y1{bottom:940.613333pt;}
.y58{bottom:942.693333pt;}
.y82{bottom:952.293333pt;}
.y57{bottom:960.293333pt;}
.y56{bottom:978.053333pt;}
.y55{bottom:995.653333pt;}
.y54{bottom:1013.253333pt;}
.y53{bottom:1039.840000pt;}
.y52{bottom:1060.160000pt;}
.hb{height:25.600000pt;}
.he{height:37.479688pt;}
.ha{height:38.413438pt;}
.h10{height:38.672812pt;}
.h11{height:38.828437pt;}
.h9{height:41.543750pt;}
.h7{height:43.038750pt;}
.h4{height:43.355000pt;}
.hc{height:43.551875pt;}
.hf{height:45.961250pt;}
.h5{height:47.125000pt;}
.h3{height:55.136250pt;}
.h8{height:60.057813pt;}
.h6{height:65.531250pt;}
.h2{height:133.946667pt;}
.hd{height:440.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:112.352000pt;}
.w7{width:161.466667pt;}
.w6{width:538.053333pt;}
.w2{width:584.133333pt;}
.w5{width:699.520000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x5{left:47.200000pt;}
.x1{left:48.640000pt;}
.x8{left:71.999988pt;}
.x9{left:96.031988pt;}
.x6{left:585.253333pt;}
.x3{left:632.773333pt;}
.x4{left:646.693322pt;}
.x7{left:683.173322pt;}
.xa{left:739.839988pt;}
}




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