
    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_b7d484ef378a226ccd73e0fa.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9455c94007b8b06a1d5a2db4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_7bb090e81f545f11734a17d4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a2816982d4812d4096d9987b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ddf6f4d0b923f4c41fccdde.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_633395bfc6713916c2c2d198.woff')format("woff");}.ff6{font-family:ff6;line-height:0.892578;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_ead025e51aced4097d603537.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3515492b82d2b2234cb17925.woff')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_dc5959f4d1d72d39bf80abf1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_84b00f9dc9efa1934d1cc115.woff')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-74.880000px;}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.590000px;}
.ls12{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004800px;}
.ls14{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.178560px;}
.lsd{letter-spacing:0.190560px;}
.ls2{letter-spacing:0.275040px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.452160px;}
.ls8{letter-spacing:0.464160px;}
.ls3{letter-spacing:0.642720px;}
.ls11{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.809280px;}
.ls5{letter-spacing:1.290000px;}
.ls7{letter-spacing:1.440000px;}
.ls17{letter-spacing:53.758560px;}
.lsb{letter-spacing:69.586560px;}
.ls15{letter-spacing:82.558560px;}
.lse{letter-spacing:574.116000px;}
.ls13{letter-spacing:863.700000px;}
.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:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws4{word-spacing:-20.880000px;}
.ws2{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.850000px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.140160px;}
.ws9{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.099840px;}
.wsb{word-spacing:-14.400000px;}
.ws8{word-spacing:-13.680000px;}
.ws7{word-spacing:0.000000px;}
._e{margin-left:-3.870720px;}
._2{margin-left:-2.661120px;}
._0{margin-left:-1.451520px;}
._1{width:1.572480px;}
._7{width:2.643360px;}
._3{width:3.732000px;}
._6{width:4.795680px;}
._8{width:5.866560px;}
._9{width:7.136640px;}
._f{width:8.164800px;}
._a{width:9.192960px;}
._5{width:11.188800px;}
._4{width:12.216960px;}
._11{width:13.282560px;}
._10{width:15.186240px;}
._b{width:16.208640px;}
._c{width:17.236800px;}
._d{width:19.045440px;}
._1a{width:20.759040px;}
._15{width:21.787200px;}
._12{width:23.014080px;}
._13{width:24.575040px;}
._19{width:25.643040px;}
._14{width:26.668800px;}
._1f{width:28.351680px;}
._1e{width:29.701920px;}
._1c{width:30.764160px;}
._1b{width:32.696640px;}
._22{width:34.171200px;}
._23{width:35.864640px;}
._24{width:36.892800px;}
._17{width:38.740320px;}
._16{width:40.170720px;}
._18{width:41.544000px;}
._20{width:143.534880px;}
._21{width:195.319200px;}
._1d{width:333.443520px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fsa{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y35{bottom:110.916000px;}
.y2{bottom:111.276000px;}
.y5e{bottom:139.716000px;}
.y9a{bottom:145.836000px;}
.y34{bottom:152.310000px;}
.yb1{bottom:153.390000px;}
.y5d{bottom:158.430000px;}
.y84{bottom:158.790000px;}
.y99{bottom:164.550000px;}
.y33{bottom:171.390000px;}
.yb0{bottom:172.470000px;}
.y5c{bottom:177.510000px;}
.y8c{bottom:182.910000px;}
.y98{bottom:183.630000px;}
.yce{bottom:185.790000px;}
.y32{bottom:190.110000px;}
.yaf{bottom:191.550000px;}
.y5b{bottom:196.635000px;}
.y8b{bottom:202.035000px;}
.y97{bottom:202.755000px;}
.ycd{bottom:203.115000px;}
.y31{bottom:209.235000px;}
.yae{bottom:211.395000px;}
.y5a{bottom:215.355000px;}
.y83{bottom:215.715000px;}
.ycc{bottom:220.395000px;}
.y8a{bottom:220.755000px;}
.y96{bottom:226.515000px;}
.y30{bottom:228.315000px;}
.y59{bottom:234.435000px;}
.y82{bottom:234.795000px;}
.ycb{bottom:237.675000px;}
.y89{bottom:239.835000px;}
.y2f{bottom:247.395000px;}
.y58{bottom:253.515000px;}
.yca{bottom:254.955000px;}
.y88{bottom:258.915000px;}
.y2e{bottom:266.115000px;}
.yc9{bottom:272.235000px;}
.y57{bottom:272.595000px;}
.y87{bottom:277.635000px;}
.y2d{bottom:285.195000px;}
.yc8{bottom:289.515000px;}
.y56{bottom:291.315000px;}
.y81{bottom:291.675000px;}
.y86{bottom:296.715000px;}
.y2c{bottom:304.275000px;}
.yc7{bottom:306.795000px;}
.y55{bottom:310.395000px;}
.y80{bottom:311.115000px;}
.y85{bottom:315.795000px;}
.y2b{bottom:323.025000px;}
.yc6{bottom:324.105000px;}
.y54{bottom:329.505000px;}
.y7f{bottom:334.545000px;}
.yc5{bottom:341.385000px;}
.y2a{bottom:342.105000px;}
.y53{bottom:348.225000px;}
.yad{bottom:348.585000px;}
.y7e{bottom:353.625000px;}
.yc4{bottom:358.665000px;}
.y29{bottom:361.185000px;}
.y52{bottom:367.305000px;}
.yac{bottom:367.665000px;}
.y7d{bottom:372.705000px;}
.yc3{bottom:375.585000px;}
.y28{bottom:379.905000px;}
.y51{bottom:386.385000px;}
.y7c{bottom:391.785000px;}
.yc2{bottom:392.865000px;}
.y27{bottom:398.985000px;}
.y50{bottom:405.105000px;}
.yab{bottom:405.465000px;}
.yc1{bottom:410.145000px;}
.y7b{bottom:410.505000px;}
.y26{bottom:418.065000px;}
.y4f{bottom:424.185000px;}
.yaa{bottom:424.545000px;}
.yc0{bottom:427.425000px;}
.y7a{bottom:429.585000px;}
.y25{bottom:437.145000px;}
.y4e{bottom:443.265000px;}
.ybf{bottom:444.705000px;}
.y79{bottom:448.710000px;}
.y24{bottom:455.910000px;}
.yf5{bottom:458.430000px;}
.ybe{bottom:462.030000px;}
.y4d{bottom:462.390000px;}
.y78{bottom:467.430000px;}
.y23{bottom:474.990000px;}
.yf4{bottom:475.710000px;}
.ybd{bottom:479.310000px;}
.y4c{bottom:481.110000px;}
.ya9{bottom:481.470000px;}
.y77{bottom:486.510000px;}
.yf3{bottom:492.990000px;}
.y22{bottom:494.070000px;}
.ybc{bottom:496.590000px;}
.y4b{bottom:500.190000px;}
.y76{bottom:505.590000px;}
.yf2{bottom:510.270000px;}
.y21{bottom:512.790000px;}
.ybb{bottom:513.870000px;}
.y4a{bottom:519.270000px;}
.y75{bottom:524.310000px;}
.yf1{bottom:527.550000px;}
.yba{bottom:531.150000px;}
.y20{bottom:532.590000px;}
.y49{bottom:537.630000px;}
.ya8{bottom:538.350000px;}
.y74{bottom:543.390000px;}
.yf0{bottom:544.830000px;}
.yb9{bottom:548.430000px;}
.y48{bottom:554.910000px;}
.y95{bottom:555.630000px;}
.y1f{bottom:555.990000px;}
.ya7{bottom:557.430000px;}
.yef{bottom:562.110000px;}
.y73{bottom:562.470000px;}
.yb8{bottom:565.710000px;}
.y47{bottom:568.950000px;}
.y1e{bottom:574.740000px;}
.ya6{bottom:576.180000px;}
.yee{bottom:579.420000px;}
.y72{bottom:581.580000px;}
.yb7{bottom:582.660000px;}
.y94{bottom:590.580000px;}
.y1d{bottom:591.300000px;}
.ya5{bottom:595.260000px;}
.yed{bottom:596.700000px;}
.yb6{bottom:599.940000px;}
.y71{bottom:600.300000px;}
.y1c{bottom:608.220000px;}
.y93{bottom:609.300000px;}
.yec{bottom:613.980000px;}
.ya4{bottom:614.340000px;}
.yb5{bottom:617.220000px;}
.y70{bottom:619.380000px;}
.y92{bottom:626.580000px;}
.y1b{bottom:629.100000px;}
.yeb{bottom:631.260000px;}
.ya3{bottom:633.060000px;}
.yb4{bottom:634.500000px;}
.y6f{bottom:638.460000px;}
.y91{bottom:639.900000px;}
.y1a{bottom:645.300000px;}
.yea{bottom:648.180000px;}
.ya2{bottom:652.140000px;}
.y6e{bottom:657.180000px;}
.y19{bottom:662.580000px;}
.ye9{bottom:665.460000px;}
.yb3{bottom:669.420000px;}
.ya1{bottom:671.220000px;}
.y6d{bottom:676.260000px;}
.y18{bottom:679.860000px;}
.ye8{bottom:682.740000px;}
.ya0{bottom:689.940000px;}
.y6c{bottom:695.340000px;}
.y17{bottom:697.140000px;}
.ye7{bottom:700.050000px;}
.y9f{bottom:709.050000px;}
.y16{bottom:714.450000px;}
.ye6{bottom:717.330000px;}
.y9e{bottom:728.130000px;}
.y15{bottom:731.730000px;}
.y6b{bottom:733.170000px;}
.ye5{bottom:734.610000px;}
.y9d{bottom:747.210000px;}
.y14{bottom:749.010000px;}
.ye4{bottom:751.890000px;}
.y6a{bottom:752.250000px;}
.y9c{bottom:765.930000px;}
.y13{bottom:766.290000px;}
.ye3{bottom:769.170000px;}
.y69{bottom:771.330000px;}
.y12{bottom:783.570000px;}
.y9b{bottom:785.010000px;}
.ye2{bottom:786.450000px;}
.y68{bottom:790.050000px;}
.y11{bottom:800.850000px;}
.ye1{bottom:803.730000px;}
.y46{bottom:804.090000px;}
.yb2{bottom:804.810000px;}
.y67{bottom:809.130000px;}
.y10{bottom:817.770000px;}
.ye0{bottom:821.010000px;}
.y45{bottom:822.810000px;}
.y66{bottom:828.255000px;}
.yf{bottom:835.095000px;}
.ydf{bottom:837.975000px;}
.y44{bottom:841.935000px;}
.y65{bottom:846.975000px;}
.ye{bottom:852.375000px;}
.yde{bottom:855.255000px;}
.y43{bottom:861.015000px;}
.y90{bottom:861.375000px;}
.y64{bottom:866.055000px;}
.yd{bottom:869.655000px;}
.ydd{bottom:872.535000px;}
.y8f{bottom:878.655000px;}
.y42{bottom:880.095000px;}
.y63{bottom:885.135000px;}
.yc{bottom:886.215000px;}
.ydc{bottom:889.815000px;}
.y8e{bottom:895.935000px;}
.y41{bottom:898.815000px;}
.yb{bottom:903.135000px;}
.y62{bottom:904.215000px;}
.ydb{bottom:907.095000px;}
.y8d{bottom:909.615000px;}
.y40{bottom:917.895000px;}
.y61{bottom:922.935000px;}
.yda{bottom:924.375000px;}
.ya{bottom:924.735000px;}
.y3f{bottom:936.975000px;}
.yd9{bottom:941.655000px;}
.y60{bottom:942.015000px;}
.y9{bottom:944.895000px;}
.y3e{bottom:956.445000px;}
.yd8{bottom:958.965000px;}
.y5f{bottom:961.125000px;}
.y8{bottom:965.445000px;}
.yd7{bottom:976.245000px;}
.y3d{bottom:979.845000px;}
.y7{bottom:986.325000px;}
.yd6{bottom:993.525000px;}
.y3c{bottom:998.925000px;}
.y6{bottom:1009.005000px;}
.yd5{bottom:1010.805000px;}
.y3b{bottom:1018.005000px;}
.yd4{bottom:1028.085000px;}
.y5{bottom:1034.565000px;}
.y3a{bottom:1036.725000px;}
.yd3{bottom:1045.005000px;}
.y39{bottom:1055.805000px;}
.yd2{bottom:1062.285000px;}
.y4{bottom:1068.045000px;}
.y38{bottom:1074.885000px;}
.yd1{bottom:1079.610000px;}
.y37{bottom:1094.010000px;}
.yd0{bottom:1096.890000px;}
.y3{bottom:1101.930000px;}
.y36{bottom:1112.730000px;}
.ycf{bottom:1114.170000px;}
.y1{bottom:1141.170000px;}
.h11{height:49.605469px;}
.h13{height:50.439375px;}
.ha{height:53.677969px;}
.h8{height:55.147500px;}
.hf{height:55.243125px;}
.h9{height:59.328281px;}
.h2{height:59.357813px;}
.h12{height:62.163910px;}
.he{height:64.978594px;}
.hc{height:65.010937px;}
.h6{height:66.757500px;}
.h5{height:70.664062px;}
.hb{height:76.279219px;}
.h4{height:76.317188px;}
.h7{height:78.367500px;}
.h3{height:80.944453px;}
.h10{height:84.172500px;}
.hd{height:86.945625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:123.155987px;}
.x10{left:124.235987px;}
.x9{left:142.631987px;}
.x11{left:144.791987px;}
.x16{left:146.591987px;}
.xc{left:150.194987px;}
.x1{left:151.634987px;}
.x13{left:155.234987px;}
.x12{left:156.314987px;}
.x8{left:165.674987px;}
.x5{left:174.314987px;}
.x4{left:175.754987px;}
.xb{left:177.194987px;}
.x7{left:197.714987px;}
.x6{left:248.144987px;}
.xe{left:343.949987px;}
.x17{left:438.659987px;}
.x3{left:442.259987px;}
.xf{left:465.659987px;}
.xd{left:589.529987px;}
.x14{left:590.609987px;}
.x15{left:593.849987px;}
.xa{left:733.244987px;}
.x18{left:736.484987px;}
@media print{
.v2{vertical-align:-66.560000pt;}
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.413333pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004267pt;}
.ls14{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.158720pt;}
.lsd{letter-spacing:0.169387pt;}
.ls2{letter-spacing:0.244480pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.401920pt;}
.ls8{letter-spacing:0.412587pt;}
.ls3{letter-spacing:0.571307pt;}
.ls11{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.719360pt;}
.ls5{letter-spacing:1.146667pt;}
.ls7{letter-spacing:1.280000pt;}
.ls17{letter-spacing:47.785387pt;}
.lsb{letter-spacing:61.854720pt;}
.ls15{letter-spacing:73.385387pt;}
.lse{letter-spacing:510.325333pt;}
.ls13{letter-spacing:767.733333pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws4{word-spacing:-18.560000pt;}
.ws2{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.866667pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.457920pt;}
.ws9{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.422080pt;}
.wsb{word-spacing:-12.800000pt;}
.ws8{word-spacing:-12.160000pt;}
.ws7{word-spacing:0.000000pt;}
._e{margin-left:-3.440640pt;}
._2{margin-left:-2.365440pt;}
._0{margin-left:-1.290240pt;}
._1{width:1.397760pt;}
._7{width:2.349653pt;}
._3{width:3.317333pt;}
._6{width:4.262827pt;}
._8{width:5.214720pt;}
._9{width:6.343680pt;}
._f{width:7.257600pt;}
._a{width:8.171520pt;}
._5{width:9.945600pt;}
._4{width:10.859520pt;}
._11{width:11.806720pt;}
._10{width:13.498880pt;}
._b{width:14.407680pt;}
._c{width:15.321600pt;}
._d{width:16.929280pt;}
._1a{width:18.452480pt;}
._15{width:19.366400pt;}
._12{width:20.456960pt;}
._13{width:21.844480pt;}
._19{width:22.793813pt;}
._14{width:23.705600pt;}
._1f{width:25.201493pt;}
._1e{width:26.401707pt;}
._1c{width:27.345920pt;}
._1b{width:29.063680pt;}
._22{width:30.374400pt;}
._23{width:31.879680pt;}
._24{width:32.793600pt;}
._17{width:34.435840pt;}
._16{width:35.707307pt;}
._18{width:36.928000pt;}
._20{width:127.586560pt;}
._21{width:173.617067pt;}
._1d{width:296.394240pt;}
.fs9{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fsa{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:98.592000pt;}
.y2{bottom:98.912000pt;}
.y5e{bottom:124.192000pt;}
.y9a{bottom:129.632000pt;}
.y34{bottom:135.386667pt;}
.yb1{bottom:136.346667pt;}
.y5d{bottom:140.826667pt;}
.y84{bottom:141.146667pt;}
.y99{bottom:146.266667pt;}
.y33{bottom:152.346667pt;}
.yb0{bottom:153.306667pt;}
.y5c{bottom:157.786667pt;}
.y8c{bottom:162.586667pt;}
.y98{bottom:163.226667pt;}
.yce{bottom:165.146667pt;}
.y32{bottom:168.986667pt;}
.yaf{bottom:170.266667pt;}
.y5b{bottom:174.786667pt;}
.y8b{bottom:179.586667pt;}
.y97{bottom:180.226667pt;}
.ycd{bottom:180.546667pt;}
.y31{bottom:185.986667pt;}
.yae{bottom:187.906667pt;}
.y5a{bottom:191.426667pt;}
.y83{bottom:191.746667pt;}
.ycc{bottom:195.906667pt;}
.y8a{bottom:196.226667pt;}
.y96{bottom:201.346667pt;}
.y30{bottom:202.946667pt;}
.y59{bottom:208.386667pt;}
.y82{bottom:208.706667pt;}
.ycb{bottom:211.266667pt;}
.y89{bottom:213.186667pt;}
.y2f{bottom:219.906667pt;}
.y58{bottom:225.346667pt;}
.yca{bottom:226.626667pt;}
.y88{bottom:230.146667pt;}
.y2e{bottom:236.546667pt;}
.yc9{bottom:241.986667pt;}
.y57{bottom:242.306667pt;}
.y87{bottom:246.786667pt;}
.y2d{bottom:253.506667pt;}
.yc8{bottom:257.346667pt;}
.y56{bottom:258.946667pt;}
.y81{bottom:259.266667pt;}
.y86{bottom:263.746667pt;}
.y2c{bottom:270.466667pt;}
.yc7{bottom:272.706667pt;}
.y55{bottom:275.906667pt;}
.y80{bottom:276.546667pt;}
.y85{bottom:280.706667pt;}
.y2b{bottom:287.133333pt;}
.yc6{bottom:288.093333pt;}
.y54{bottom:292.893333pt;}
.y7f{bottom:297.373333pt;}
.yc5{bottom:303.453333pt;}
.y2a{bottom:304.093333pt;}
.y53{bottom:309.533333pt;}
.yad{bottom:309.853333pt;}
.y7e{bottom:314.333333pt;}
.yc4{bottom:318.813333pt;}
.y29{bottom:321.053333pt;}
.y52{bottom:326.493333pt;}
.yac{bottom:326.813333pt;}
.y7d{bottom:331.293333pt;}
.yc3{bottom:333.853333pt;}
.y28{bottom:337.693333pt;}
.y51{bottom:343.453333pt;}
.y7c{bottom:348.253333pt;}
.yc2{bottom:349.213333pt;}
.y27{bottom:354.653333pt;}
.y50{bottom:360.093333pt;}
.yab{bottom:360.413333pt;}
.yc1{bottom:364.573333pt;}
.y7b{bottom:364.893333pt;}
.y26{bottom:371.613333pt;}
.y4f{bottom:377.053333pt;}
.yaa{bottom:377.373333pt;}
.yc0{bottom:379.933333pt;}
.y7a{bottom:381.853333pt;}
.y25{bottom:388.573333pt;}
.y4e{bottom:394.013333pt;}
.ybf{bottom:395.293333pt;}
.y79{bottom:398.853333pt;}
.y24{bottom:405.253333pt;}
.yf5{bottom:407.493333pt;}
.ybe{bottom:410.693333pt;}
.y4d{bottom:411.013333pt;}
.y78{bottom:415.493333pt;}
.y23{bottom:422.213333pt;}
.yf4{bottom:422.853333pt;}
.ybd{bottom:426.053333pt;}
.y4c{bottom:427.653333pt;}
.ya9{bottom:427.973333pt;}
.y77{bottom:432.453333pt;}
.yf3{bottom:438.213333pt;}
.y22{bottom:439.173333pt;}
.ybc{bottom:441.413333pt;}
.y4b{bottom:444.613333pt;}
.y76{bottom:449.413333pt;}
.yf2{bottom:453.573333pt;}
.y21{bottom:455.813333pt;}
.ybb{bottom:456.773333pt;}
.y4a{bottom:461.573333pt;}
.y75{bottom:466.053333pt;}
.yf1{bottom:468.933333pt;}
.yba{bottom:472.133333pt;}
.y20{bottom:473.413333pt;}
.y49{bottom:477.893333pt;}
.ya8{bottom:478.533333pt;}
.y74{bottom:483.013333pt;}
.yf0{bottom:484.293333pt;}
.yb9{bottom:487.493333pt;}
.y48{bottom:493.253333pt;}
.y95{bottom:493.893333pt;}
.y1f{bottom:494.213333pt;}
.ya7{bottom:495.493333pt;}
.yef{bottom:499.653333pt;}
.y73{bottom:499.973333pt;}
.yb8{bottom:502.853333pt;}
.y47{bottom:505.733333pt;}
.y1e{bottom:510.880000pt;}
.ya6{bottom:512.160000pt;}
.yee{bottom:515.040000pt;}
.y72{bottom:516.960000pt;}
.yb7{bottom:517.920000pt;}
.y94{bottom:524.960000pt;}
.y1d{bottom:525.600000pt;}
.ya5{bottom:529.120000pt;}
.yed{bottom:530.400000pt;}
.yb6{bottom:533.280000pt;}
.y71{bottom:533.600000pt;}
.y1c{bottom:540.640000pt;}
.y93{bottom:541.600000pt;}
.yec{bottom:545.760000pt;}
.ya4{bottom:546.080000pt;}
.yb5{bottom:548.640000pt;}
.y70{bottom:550.560000pt;}
.y92{bottom:556.960000pt;}
.y1b{bottom:559.200000pt;}
.yeb{bottom:561.120000pt;}
.ya3{bottom:562.720000pt;}
.yb4{bottom:564.000000pt;}
.y6f{bottom:567.520000pt;}
.y91{bottom:568.800000pt;}
.y1a{bottom:573.600000pt;}
.yea{bottom:576.160000pt;}
.ya2{bottom:579.680000pt;}
.y6e{bottom:584.160000pt;}
.y19{bottom:588.960000pt;}
.ye9{bottom:591.520000pt;}
.yb3{bottom:595.040000pt;}
.ya1{bottom:596.640000pt;}
.y6d{bottom:601.120000pt;}
.y18{bottom:604.320000pt;}
.ye8{bottom:606.880000pt;}
.ya0{bottom:613.280000pt;}
.y6c{bottom:618.080000pt;}
.y17{bottom:619.680000pt;}
.ye7{bottom:622.266667pt;}
.y9f{bottom:630.266667pt;}
.y16{bottom:635.066667pt;}
.ye6{bottom:637.626667pt;}
.y9e{bottom:647.226667pt;}
.y15{bottom:650.426667pt;}
.y6b{bottom:651.706667pt;}
.ye5{bottom:652.986667pt;}
.y9d{bottom:664.186667pt;}
.y14{bottom:665.786667pt;}
.ye4{bottom:668.346667pt;}
.y6a{bottom:668.666667pt;}
.y9c{bottom:680.826667pt;}
.y13{bottom:681.146667pt;}
.ye3{bottom:683.706667pt;}
.y69{bottom:685.626667pt;}
.y12{bottom:696.506667pt;}
.y9b{bottom:697.786667pt;}
.ye2{bottom:699.066667pt;}
.y68{bottom:702.266667pt;}
.y11{bottom:711.866667pt;}
.ye1{bottom:714.426667pt;}
.y46{bottom:714.746667pt;}
.yb2{bottom:715.386667pt;}
.y67{bottom:719.226667pt;}
.y10{bottom:726.906667pt;}
.ye0{bottom:729.786667pt;}
.y45{bottom:731.386667pt;}
.y66{bottom:736.226667pt;}
.yf{bottom:742.306667pt;}
.ydf{bottom:744.866667pt;}
.y44{bottom:748.386667pt;}
.y65{bottom:752.866667pt;}
.ye{bottom:757.666667pt;}
.yde{bottom:760.226667pt;}
.y43{bottom:765.346667pt;}
.y90{bottom:765.666667pt;}
.y64{bottom:769.826667pt;}
.yd{bottom:773.026667pt;}
.ydd{bottom:775.586667pt;}
.y8f{bottom:781.026667pt;}
.y42{bottom:782.306667pt;}
.y63{bottom:786.786667pt;}
.yc{bottom:787.746667pt;}
.ydc{bottom:790.946667pt;}
.y8e{bottom:796.386667pt;}
.y41{bottom:798.946667pt;}
.yb{bottom:802.786667pt;}
.y62{bottom:803.746667pt;}
.ydb{bottom:806.306667pt;}
.y8d{bottom:808.546667pt;}
.y40{bottom:815.906667pt;}
.y61{bottom:820.386667pt;}
.yda{bottom:821.666667pt;}
.ya{bottom:821.986667pt;}
.y3f{bottom:832.866667pt;}
.yd9{bottom:837.026667pt;}
.y60{bottom:837.346667pt;}
.y9{bottom:839.906667pt;}
.y3e{bottom:850.173333pt;}
.yd8{bottom:852.413333pt;}
.y5f{bottom:854.333333pt;}
.y8{bottom:858.173333pt;}
.yd7{bottom:867.773333pt;}
.y3d{bottom:870.973333pt;}
.y7{bottom:876.733333pt;}
.yd6{bottom:883.133333pt;}
.y3c{bottom:887.933333pt;}
.y6{bottom:896.893333pt;}
.yd5{bottom:898.493333pt;}
.y3b{bottom:904.893333pt;}
.yd4{bottom:913.853333pt;}
.y5{bottom:919.613333pt;}
.y3a{bottom:921.533333pt;}
.yd3{bottom:928.893333pt;}
.y39{bottom:938.493333pt;}
.yd2{bottom:944.253333pt;}
.y4{bottom:949.373333pt;}
.y38{bottom:955.453333pt;}
.yd1{bottom:959.653333pt;}
.y37{bottom:972.453333pt;}
.yd0{bottom:975.013333pt;}
.y3{bottom:979.493333pt;}
.y36{bottom:989.093333pt;}
.ycf{bottom:990.373333pt;}
.y1{bottom:1014.373333pt;}
.h11{height:44.093750pt;}
.h13{height:44.835000pt;}
.ha{height:47.713750pt;}
.h8{height:49.020000pt;}
.hf{height:49.105000pt;}
.h9{height:52.736250pt;}
.h2{height:52.762500pt;}
.h12{height:55.256809pt;}
.he{height:57.758750pt;}
.hc{height:57.787500pt;}
.h6{height:59.340000pt;}
.h5{height:62.812500pt;}
.hb{height:67.803750pt;}
.h4{height:67.837500pt;}
.h7{height:69.660000pt;}
.h3{height:71.950625pt;}
.h10{height:74.820000pt;}
.hd{height:77.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:109.471988pt;}
.x10{left:110.431988pt;}
.x9{left:126.783988pt;}
.x11{left:128.703988pt;}
.x16{left:130.303988pt;}
.xc{left:133.506655pt;}
.x1{left:134.786655pt;}
.x13{left:137.986655pt;}
.x12{left:138.946655pt;}
.x8{left:147.266655pt;}
.x5{left:154.946655pt;}
.x4{left:156.226655pt;}
.xb{left:157.506655pt;}
.x7{left:175.746655pt;}
.x6{left:220.573322pt;}
.xe{left:305.733322pt;}
.x17{left:389.919988pt;}
.x3{left:393.119988pt;}
.xf{left:413.919988pt;}
.xd{left:524.026655pt;}
.x14{left:524.986655pt;}
.x15{left:527.866655pt;}
.xa{left:651.773322pt;}
.x18{left:654.653322pt;}
}




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