
    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_1a0b08a637ae235f551c5e37.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0cdd35a738ec8d722b4ce06c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d840cc7eda4b80f00dacb8f3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb25f96a7d9d94013eda5718.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7ef2160563f9cc98f1701b54.woff2')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_af3990e68df7aed143371b97.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.392578;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_d1f63ed3acb98c1c7dad58a8.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-70.560000px;}
.v3{vertical-align:-69.300000px;}
.v5{vertical-align:-66.240000px;}
.v4{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsf{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.513600px;}
.ls7{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.513600px;}
.lsa{letter-spacing:0.828000px;}
.ls13{letter-spacing:0.876000px;}
.ls1{letter-spacing:58.013280px;}
.lsd{letter-spacing:70.140000px;}
.ls2{letter-spacing:70.164000px;}
.lsc{letter-spacing:73.044000px;}
.ls0{letter-spacing:202.644000px;}
.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;}
}
.ws9{word-spacing:-16.297800px;}
.wsf{word-spacing:-15.816000px;}
.wsa{word-spacing:-15.768000px;}
.ws10{word-spacing:-15.453600px;}
.ws3{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.479800px;}
.ws5{word-spacing:-14.426400px;}
.wse{word-spacing:-14.274000px;}
.ws1{word-spacing:-12.420000px;}
.ws8{word-spacing:-10.440000px;}
.ws0{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._2{width:1.002720px;}
._1{width:2.130720px;}
._7{width:3.151680px;}
._3{width:4.541760px;}
._4{width:5.595360px;}
._5{width:7.347600px;}
._d{width:8.618640px;}
._6{width:10.218960px;}
._8{width:11.473920px;}
._9{width:12.503040px;}
._a{width:13.864320px;}
._e{width:16.858080px;}
._1b{width:17.884800px;}
._12{width:19.242720px;}
._c{width:20.916000px;}
._b{width:22.062720px;}
._1e{width:23.130960px;}
._23{width:24.202800px;}
._11{width:25.218720px;}
._13{width:26.287440px;}
._16{width:27.390960px;}
._1f{width:28.445760px;}
._24{width:29.488080px;}
._17{width:30.836160px;}
._18{width:32.011920px;}
._1c{width:33.704640px;}
._15{width:35.292720px;}
._14{width:36.786720px;}
._1a{width:38.126880px;}
._19{width:39.322080px;}
._21{width:40.935600px;}
._22{width:42.011280px;}
._26{width:43.505280px;}
._25{width:48.405600px;}
._20{width:50.677200px;}
._28{width:52.050960px;}
._29{width:54.216000px;}
._10{width:55.552320px;}
._f{width:56.820000px;}
._27{width:58.086720px;}
._1d{width:59.299920px;}
._2a{width:78.942960px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:7.572150px;}
.y3e{bottom:23.772150px;}
.y3c{bottom:29.606850px;}
.y3d{bottom:39.972150px;}
.y6d{bottom:111.276000px;}
.y3a{bottom:118.476000px;}
.yb8{bottom:122.256000px;}
.yd8{bottom:125.136000px;}
.y6c{bottom:128.556000px;}
.y39{bottom:135.576000px;}
.yb7{bottom:139.356000px;}
.yd7{bottom:142.416000px;}
.y6b{bottom:145.836000px;}
.y38{bottom:152.850000px;}
.yb6{bottom:156.630000px;}
.yd6{bottom:159.690000px;}
.y6a{bottom:163.110000px;}
.y37{bottom:170.130000px;}
.yb5{bottom:173.910000px;}
.yd5{bottom:176.970000px;}
.y69{bottom:180.210000px;}
.y36{bottom:187.410000px;}
.yb4{bottom:191.190000px;}
.yd4{bottom:194.250000px;}
.y68{bottom:197.490000px;}
.y35{bottom:204.690000px;}
.y98{bottom:205.590000px;}
.yb3{bottom:208.470000px;}
.yd3{bottom:211.530000px;}
.y67{bottom:214.770000px;}
.y97{bottom:220.170000px;}
.y34{bottom:221.970000px;}
.yb2{bottom:225.750000px;}
.yd2{bottom:228.630000px;}
.y66{bottom:231.690000px;}
.y96{bottom:237.270000px;}
.y33{bottom:239.070000px;}
.yb1{bottom:242.850000px;}
.yd1{bottom:245.910000px;}
.y65{bottom:249.330000px;}
.y95{bottom:254.550000px;}
.y32{bottom:256.350000px;}
.yb0{bottom:260.130000px;}
.yd0{bottom:263.190000px;}
.y64{bottom:266.610000px;}
.y94{bottom:271.830000px;}
.y31{bottom:273.630000px;}
.yaf{bottom:277.410000px;}
.ycf{bottom:280.470000px;}
.y63{bottom:282.990000px;}
.y93{bottom:289.110000px;}
.y30{bottom:290.910000px;}
.yae{bottom:294.690000px;}
.y62{bottom:296.850000px;}
.yce{bottom:297.750000px;}
.y92{bottom:306.390000px;}
.y2f{bottom:308.235000px;}
.y61{bottom:311.475000px;}
.yad{bottom:312.015000px;}
.ycd{bottom:315.075000px;}
.y91{bottom:323.535000px;}
.y60{bottom:324.975000px;}
.y2e{bottom:325.335000px;}
.yac{bottom:328.755000px;}
.ycc{bottom:332.175000px;}
.y90{bottom:340.815000px;}
.y2d{bottom:342.255000px;}
.y3b{bottom:342.615000px;}
.yab{bottom:346.395000px;}
.ycb{bottom:349.455000px;}
.y8f{bottom:358.095000px;}
.y2c{bottom:359.895000px;}
.yaa{bottom:362.955000px;}
.yca{bottom:366.735000px;}
.y8e{bottom:375.375000px;}
.ya9{bottom:376.815000px;}
.y2b{bottom:377.175000px;}
.yc9{bottom:384.015000px;}
.ya8{bottom:390.495000px;}
.y8d{bottom:392.655000px;}
.y2a{bottom:394.455000px;}
.yc8{bottom:401.295000px;}
.ya7{bottom:401.475000px;}
.y8c{bottom:409.935000px;}
.y29{bottom:411.375000px;}
.yc7{bottom:418.575000px;}
.y8b{bottom:427.035000px;}
.y28{bottom:428.835000px;}
.yc6{bottom:435.675000px;}
.y8a{bottom:444.315000px;}
.y27{bottom:446.115000px;}
.yc5{bottom:452.955000px;}
.y89{bottom:461.595000px;}
.y26{bottom:463.395000px;}
.yc4{bottom:470.235000px;}
.y88{bottom:478.875000px;}
.y25{bottom:480.675000px;}
.yc3{bottom:487.515000px;}
.y87{bottom:496.155000px;}
.y24{bottom:497.955000px;}
.yc2{bottom:504.795000px;}
.y86{bottom:513.435000px;}
.y23{bottom:515.235000px;}
.yc1{bottom:521.895000px;}
.y85{bottom:530.535000px;}
.y22{bottom:532.335000px;}
.yc0{bottom:539.175000px;}
.y84{bottom:547.815000px;}
.y21{bottom:549.615000px;}
.ybf{bottom:556.455000px;}
.y83{bottom:565.095000px;}
.y20{bottom:566.895000px;}
.ybe{bottom:573.735000px;}
.y82{bottom:582.405000px;}
.y1f{bottom:584.205000px;}
.ybd{bottom:591.045000px;}
.y81{bottom:599.685000px;}
.y1e{bottom:601.485000px;}
.y5f{bottom:608.325000px;}
.y80{bottom:616.785000px;}
.y1d{bottom:618.585000px;}
.y5e{bottom:625.425000px;}
.y7f{bottom:634.065000px;}
.y1c{bottom:635.865000px;}
.y5d{bottom:642.705000px;}
.y7e{bottom:651.345000px;}
.y1b{bottom:653.145000px;}
.y5c{bottom:659.985000px;}
.ya6{bottom:667.545000px;}
.y7d{bottom:668.625000px;}
.y1a{bottom:670.425000px;}
.y5b{bottom:677.265000px;}
.ya5{bottom:684.825000px;}
.y7c{bottom:685.905000px;}
.y19{bottom:687.705000px;}
.y5a{bottom:694.545000px;}
.ya4{bottom:702.105000px;}
.y7b{bottom:703.185000px;}
.y18{bottom:704.985000px;}
.y59{bottom:711.825000px;}
.ya3{bottom:719.385000px;}
.y7a{bottom:720.285000px;}
.y17{bottom:722.085000px;}
.y58{bottom:728.925000px;}
.ya2{bottom:736.665000px;}
.y79{bottom:737.565000px;}
.y16{bottom:739.365000px;}
.y57{bottom:746.205000px;}
.ya1{bottom:753.945000px;}
.y78{bottom:754.845000px;}
.y15{bottom:756.645000px;}
.y56{bottom:763.485000px;}
.ya0{bottom:771.045000px;}
.y77{bottom:772.125000px;}
.y14{bottom:773.925000px;}
.y55{bottom:780.765000px;}
.y9f{bottom:788.325000px;}
.y76{bottom:789.405000px;}
.y13{bottom:791.205000px;}
.y54{bottom:798.045000px;}
.y9e{bottom:805.605000px;}
.y75{bottom:806.685000px;}
.y12{bottom:808.485000px;}
.y53{bottom:815.145000px;}
.y74{bottom:823.425000px;}
.y11{bottom:825.585000px;}
.y52{bottom:832.425000px;}
.y9d{bottom:839.445000px;}
.y73{bottom:841.065000px;}
.y51{bottom:849.705000px;}
.y9c{bottom:853.125000px;}
.y10{bottom:860.190000px;}
.y72{bottom:866.310000px;}
.y50{bottom:867.030000px;}
.yf{bottom:877.470000px;}
.y71{bottom:877.650000px;}
.y9b{bottom:880.890000px;}
.ybc{bottom:883.950000px;}
.y4f{bottom:884.310000px;}
.ye{bottom:894.030000px;}
.y9a{bottom:894.570000px;}
.y70{bottom:896.550000px;}
.ybb{bottom:901.230000px;}
.y4e{bottom:901.590000px;}
.y99{bottom:905.370000px;}
.yd{bottom:907.710000px;}
.y6f{bottom:915.630000px;}
.y4d{bottom:918.690000px;}
.yc{bottom:921.570000px;}
.y6e{bottom:934.530000px;}
.yb{bottom:935.430000px;}
.y4c{bottom:935.970000px;}
.ya{bottom:949.110000px;}
.y4b{bottom:953.250000px;}
.y9{bottom:962.970000px;}
.y4a{bottom:970.530000px;}
.y8{bottom:977.190000px;}
.y49{bottom:987.810000px;}
.y48{bottom:1005.090000px;}
.y7{bottom:1011.930000px;}
.yba{bottom:1021.830000px;}
.y47{bottom:1022.190000px;}
.y6{bottom:1029.210000px;}
.yb9{bottom:1039.110000px;}
.y46{bottom:1039.470000px;}
.y5{bottom:1046.850000px;}
.y45{bottom:1056.750000px;}
.y4{bottom:1067.550000px;}
.y44{bottom:1074.030000px;}
.y3{bottom:1088.790000px;}
.y43{bottom:1091.310000px;}
.y42{bottom:1108.590000px;}
.y2{bottom:1112.910000px;}
.y41{bottom:1125.690000px;}
.y1{bottom:1137.240000px;}
.y40{bottom:1143.000000px;}
.he{height:40.985156px;}
.hc{height:47.321367px;}
.h6{height:47.344922px;}
.h7{height:49.583118px;}
.ha{height:50.631750px;}
.h9{height:58.621992px;}
.hb{height:58.640625px;}
.h4{height:58.651172px;}
.h8{height:60.226875px;}
.hd{height:65.010937px;}
.hf{height:65.518594px;}
.h5{height:66.543750px;}
.h3{height:70.628906px;}
.h2{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:729.471450px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:84.226050px;}
.x1{left:85.860000px;}
.x4{left:101.016000px;}
.x8{left:106.236000px;}
.x7{left:111.816000px;}
.x2{left:224.490000px;}
.x5{left:357.555000px;}
.x6{left:364.755000px;}
.xc{left:418.935000px;}
.x3{left:446.475000px;}
.x9{left:473.115000px;}
.xa{left:494.385000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v3{vertical-align:-61.600000pt;}
.v5{vertical-align:-58.880000pt;}
.v4{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.456533pt;}
.ls7{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.456533pt;}
.lsa{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.778667pt;}
.ls1{letter-spacing:51.567360pt;}
.lsd{letter-spacing:62.346667pt;}
.ls2{letter-spacing:62.368000pt;}
.lsc{letter-spacing:64.928000pt;}
.ls0{letter-spacing:180.128000pt;}
.ws9{word-spacing:-14.486933pt;}
.wsf{word-spacing:-14.058667pt;}
.wsa{word-spacing:-14.016000pt;}
.ws10{word-spacing:-13.736533pt;}
.ws3{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.823467pt;}
.wse{word-spacing:-12.688000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._2{width:0.891307pt;}
._1{width:1.893973pt;}
._7{width:2.801493pt;}
._3{width:4.037120pt;}
._4{width:4.973653pt;}
._5{width:6.531200pt;}
._d{width:7.661013pt;}
._6{width:9.083520pt;}
._8{width:10.199040pt;}
._9{width:11.113813pt;}
._a{width:12.323840pt;}
._e{width:14.984960pt;}
._1b{width:15.897600pt;}
._12{width:17.104640pt;}
._c{width:18.592000pt;}
._b{width:19.611307pt;}
._1e{width:20.560853pt;}
._23{width:21.513600pt;}
._11{width:22.416640pt;}
._13{width:23.366613pt;}
._16{width:24.347520pt;}
._1f{width:25.285120pt;}
._24{width:26.211627pt;}
._17{width:27.409920pt;}
._18{width:28.455040pt;}
._1c{width:29.959680pt;}
._15{width:31.371307pt;}
._14{width:32.699307pt;}
._1a{width:33.890560pt;}
._19{width:34.952960pt;}
._21{width:36.387200pt;}
._22{width:37.343360pt;}
._26{width:38.671360pt;}
._25{width:43.027200pt;}
._20{width:45.046400pt;}
._28{width:46.267520pt;}
._29{width:48.192000pt;}
._10{width:49.379840pt;}
._f{width:50.506667pt;}
._27{width:51.632640pt;}
._1d{width:52.711040pt;}
._2a{width:70.171520pt;}
.fs3{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:6.730800pt;}
.y3e{bottom:21.130800pt;}
.y3c{bottom:26.317200pt;}
.y3d{bottom:35.530800pt;}
.y6d{bottom:98.912000pt;}
.y3a{bottom:105.312000pt;}
.yb8{bottom:108.672000pt;}
.yd8{bottom:111.232000pt;}
.y6c{bottom:114.272000pt;}
.y39{bottom:120.512000pt;}
.yb7{bottom:123.872000pt;}
.yd7{bottom:126.592000pt;}
.y6b{bottom:129.632000pt;}
.y38{bottom:135.866667pt;}
.yb6{bottom:139.226667pt;}
.yd6{bottom:141.946667pt;}
.y6a{bottom:144.986667pt;}
.y37{bottom:151.226667pt;}
.yb5{bottom:154.586667pt;}
.yd5{bottom:157.306667pt;}
.y69{bottom:160.186667pt;}
.y36{bottom:166.586667pt;}
.yb4{bottom:169.946667pt;}
.yd4{bottom:172.666667pt;}
.y68{bottom:175.546667pt;}
.y35{bottom:181.946667pt;}
.y98{bottom:182.746667pt;}
.yb3{bottom:185.306667pt;}
.yd3{bottom:188.026667pt;}
.y67{bottom:190.906667pt;}
.y97{bottom:195.706667pt;}
.y34{bottom:197.306667pt;}
.yb2{bottom:200.666667pt;}
.yd2{bottom:203.226667pt;}
.y66{bottom:205.946667pt;}
.y96{bottom:210.906667pt;}
.y33{bottom:212.506667pt;}
.yb1{bottom:215.866667pt;}
.yd1{bottom:218.586667pt;}
.y65{bottom:221.626667pt;}
.y95{bottom:226.266667pt;}
.y32{bottom:227.866667pt;}
.yb0{bottom:231.226667pt;}
.yd0{bottom:233.946667pt;}
.y64{bottom:236.986667pt;}
.y94{bottom:241.626667pt;}
.y31{bottom:243.226667pt;}
.yaf{bottom:246.586667pt;}
.ycf{bottom:249.306667pt;}
.y63{bottom:251.546667pt;}
.y93{bottom:256.986667pt;}
.y30{bottom:258.586667pt;}
.yae{bottom:261.946667pt;}
.y62{bottom:263.866667pt;}
.yce{bottom:264.666667pt;}
.y92{bottom:272.346667pt;}
.y2f{bottom:273.986667pt;}
.y61{bottom:276.866667pt;}
.yad{bottom:277.346667pt;}
.ycd{bottom:280.066667pt;}
.y91{bottom:287.586667pt;}
.y60{bottom:288.866667pt;}
.y2e{bottom:289.186667pt;}
.yac{bottom:292.226667pt;}
.ycc{bottom:295.266667pt;}
.y90{bottom:302.946667pt;}
.y2d{bottom:304.226667pt;}
.y3b{bottom:304.546667pt;}
.yab{bottom:307.906667pt;}
.ycb{bottom:310.626667pt;}
.y8f{bottom:318.306667pt;}
.y2c{bottom:319.906667pt;}
.yaa{bottom:322.626667pt;}
.yca{bottom:325.986667pt;}
.y8e{bottom:333.666667pt;}
.ya9{bottom:334.946667pt;}
.y2b{bottom:335.266667pt;}
.yc9{bottom:341.346667pt;}
.ya8{bottom:347.106667pt;}
.y8d{bottom:349.026667pt;}
.y2a{bottom:350.626667pt;}
.yc8{bottom:356.706667pt;}
.ya7{bottom:356.866667pt;}
.y8c{bottom:364.386667pt;}
.y29{bottom:365.666667pt;}
.yc7{bottom:372.066667pt;}
.y8b{bottom:379.586667pt;}
.y28{bottom:381.186667pt;}
.yc6{bottom:387.266667pt;}
.y8a{bottom:394.946667pt;}
.y27{bottom:396.546667pt;}
.yc5{bottom:402.626667pt;}
.y89{bottom:410.306667pt;}
.y26{bottom:411.906667pt;}
.yc4{bottom:417.986667pt;}
.y88{bottom:425.666667pt;}
.y25{bottom:427.266667pt;}
.yc3{bottom:433.346667pt;}
.y87{bottom:441.026667pt;}
.y24{bottom:442.626667pt;}
.yc2{bottom:448.706667pt;}
.y86{bottom:456.386667pt;}
.y23{bottom:457.986667pt;}
.yc1{bottom:463.906667pt;}
.y85{bottom:471.586667pt;}
.y22{bottom:473.186667pt;}
.yc0{bottom:479.266667pt;}
.y84{bottom:486.946667pt;}
.y21{bottom:488.546667pt;}
.ybf{bottom:494.626667pt;}
.y83{bottom:502.306667pt;}
.y20{bottom:503.906667pt;}
.ybe{bottom:509.986667pt;}
.y82{bottom:517.693333pt;}
.y1f{bottom:519.293333pt;}
.ybd{bottom:525.373333pt;}
.y81{bottom:533.053333pt;}
.y1e{bottom:534.653333pt;}
.y5f{bottom:540.733333pt;}
.y80{bottom:548.253333pt;}
.y1d{bottom:549.853333pt;}
.y5e{bottom:555.933333pt;}
.y7f{bottom:563.613333pt;}
.y1c{bottom:565.213333pt;}
.y5d{bottom:571.293333pt;}
.y7e{bottom:578.973333pt;}
.y1b{bottom:580.573333pt;}
.y5c{bottom:586.653333pt;}
.ya6{bottom:593.373333pt;}
.y7d{bottom:594.333333pt;}
.y1a{bottom:595.933333pt;}
.y5b{bottom:602.013333pt;}
.ya5{bottom:608.733333pt;}
.y7c{bottom:609.693333pt;}
.y19{bottom:611.293333pt;}
.y5a{bottom:617.373333pt;}
.ya4{bottom:624.093333pt;}
.y7b{bottom:625.053333pt;}
.y18{bottom:626.653333pt;}
.y59{bottom:632.733333pt;}
.ya3{bottom:639.453333pt;}
.y7a{bottom:640.253333pt;}
.y17{bottom:641.853333pt;}
.y58{bottom:647.933333pt;}
.ya2{bottom:654.813333pt;}
.y79{bottom:655.613333pt;}
.y16{bottom:657.213333pt;}
.y57{bottom:663.293333pt;}
.ya1{bottom:670.173333pt;}
.y78{bottom:670.973333pt;}
.y15{bottom:672.573333pt;}
.y56{bottom:678.653333pt;}
.ya0{bottom:685.373333pt;}
.y77{bottom:686.333333pt;}
.y14{bottom:687.933333pt;}
.y55{bottom:694.013333pt;}
.y9f{bottom:700.733333pt;}
.y76{bottom:701.693333pt;}
.y13{bottom:703.293333pt;}
.y54{bottom:709.373333pt;}
.y9e{bottom:716.093333pt;}
.y75{bottom:717.053333pt;}
.y12{bottom:718.653333pt;}
.y53{bottom:724.573333pt;}
.y74{bottom:731.933333pt;}
.y11{bottom:733.853333pt;}
.y52{bottom:739.933333pt;}
.y9d{bottom:746.173333pt;}
.y73{bottom:747.613333pt;}
.y51{bottom:755.293333pt;}
.y9c{bottom:758.333333pt;}
.y10{bottom:764.613333pt;}
.y72{bottom:770.053333pt;}
.y50{bottom:770.693333pt;}
.yf{bottom:779.973333pt;}
.y71{bottom:780.133333pt;}
.y9b{bottom:783.013333pt;}
.ybc{bottom:785.733333pt;}
.y4f{bottom:786.053333pt;}
.ye{bottom:794.693333pt;}
.y9a{bottom:795.173333pt;}
.y70{bottom:796.933333pt;}
.ybb{bottom:801.093333pt;}
.y4e{bottom:801.413333pt;}
.y99{bottom:804.773333pt;}
.yd{bottom:806.853333pt;}
.y6f{bottom:813.893333pt;}
.y4d{bottom:816.613333pt;}
.yc{bottom:819.173333pt;}
.y6e{bottom:830.693333pt;}
.yb{bottom:831.493333pt;}
.y4c{bottom:831.973333pt;}
.ya{bottom:843.653333pt;}
.y4b{bottom:847.333333pt;}
.y9{bottom:855.973333pt;}
.y4a{bottom:862.693333pt;}
.y8{bottom:868.613333pt;}
.y49{bottom:878.053333pt;}
.y48{bottom:893.413333pt;}
.y7{bottom:899.493333pt;}
.yba{bottom:908.293333pt;}
.y47{bottom:908.613333pt;}
.y6{bottom:914.853333pt;}
.yb9{bottom:923.653333pt;}
.y46{bottom:923.973333pt;}
.y5{bottom:930.533333pt;}
.y45{bottom:939.333333pt;}
.y4{bottom:948.933333pt;}
.y44{bottom:954.693333pt;}
.y3{bottom:967.813333pt;}
.y43{bottom:970.053333pt;}
.y42{bottom:985.413333pt;}
.y2{bottom:989.253333pt;}
.y41{bottom:1000.613333pt;}
.y1{bottom:1010.880000pt;}
.y40{bottom:1016.000000pt;}
.he{height:36.431250pt;}
.hc{height:42.063437pt;}
.h6{height:42.084375pt;}
.h7{height:44.073883pt;}
.ha{height:45.006000pt;}
.h9{height:52.108438pt;}
.hb{height:52.125000pt;}
.h4{height:52.134375pt;}
.h8{height:53.535000pt;}
.hd{height:57.787500pt;}
.hf{height:58.238750pt;}
.h5{height:59.150000pt;}
.h3{height:62.781250pt;}
.h2{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:648.419067pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:74.867600pt;}
.x1{left:76.320000pt;}
.x4{left:89.792000pt;}
.x8{left:94.432000pt;}
.x7{left:99.392000pt;}
.x2{left:199.546667pt;}
.x5{left:317.826667pt;}
.x6{left:324.226667pt;}
.xc{left:372.386667pt;}
.x3{left:396.866667pt;}
.x9{left:420.546667pt;}
.xa{left:439.453333pt;}
}




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