
    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_80b7d1eb2199a4644bf8e1ec.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b786f808c433f376c8994bd9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_32e5d50428384fc05521a2c8.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4de29b9deeb3b84e2065913f.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d783273103b37bd53ba188c7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_140c129300637717dbb614ee.woff')format("woff");}.ff6{font-family:ff6;line-height:3.684570;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_aa2030acc752582f4b752cdf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.va{vertical-align:-17.280000px;}
.v2{vertical-align:-14.400000px;}
.v5{vertical-align:-11.520000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v3{vertical-align:14.400000px;}
.v8{vertical-align:17.280000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:48.240000px;}
.v7{vertical-align:109.440000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.216000px;}
.ls39{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.078600px;}
.ls4{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.317400px;}
.ls1c{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.864000px;}
.ls34{letter-spacing:0.936000px;}
.ls3{letter-spacing:1.296000px;}
.ls0{letter-spacing:1.584000px;}
.ls5{letter-spacing:2.016000px;}
.ls8{letter-spacing:2.232000px;}
.ls6{letter-spacing:2.304000px;}
.ls11{letter-spacing:2.801520px;}
.ls10{letter-spacing:2.808000px;}
.ls24{letter-spacing:2.908800px;}
.ls27{letter-spacing:3.456000px;}
.ls20{letter-spacing:3.833280px;}
.ls2{letter-spacing:4.042800px;}
.ls36{letter-spacing:4.320000px;}
.ls12{letter-spacing:4.352400px;}
.lsc{letter-spacing:4.376880px;}
.ls22{letter-spacing:4.496880px;}
.ls21{letter-spacing:4.553280px;}
.ls25{letter-spacing:5.096880px;}
.ls1f{letter-spacing:5.220000px;}
.lsf{letter-spacing:5.940000px;}
.ls2e{letter-spacing:11.880000px;}
.ls33{letter-spacing:11.952000px;}
.ls35{letter-spacing:12.096000px;}
.ls29{letter-spacing:12.161520px;}
.ls38{letter-spacing:16.056000px;}
.ls26{letter-spacing:16.616880px;}
.ls28{letter-spacing:19.361520px;}
.ls2c{letter-spacing:19.632000px;}
.ls2f{letter-spacing:19.656000px;}
.ls1d{letter-spacing:19.800000px;}
.ls2b{letter-spacing:20.376000px;}
.ls23{letter-spacing:20.520000px;}
.ls37{letter-spacing:20.556000px;}
.ls1e{letter-spacing:20.602800px;}
.ls2a{letter-spacing:22.241520px;}
.ls14{letter-spacing:23.273280px;}
.ls9{letter-spacing:23.482800px;}
.ls30{letter-spacing:23.993280px;}
.ls1{letter-spacing:24.382800px;}
.ls17{letter-spacing:24.444720px;}
.lse{letter-spacing:24.536880px;}
.lsa{letter-spacing:33.960000px;}
.ls2d{letter-spacing:33.984000px;}
.lsb{letter-spacing:79.344000px;}
.ls13{letter-spacing:87.960000px;}
.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;}
}
.wse{word-spacing:-27.720000px;}
.ws10{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws7{word-spacing:-16.056000px;}
.ws4{word-spacing:-15.984000px;}
.ws2{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.624000px;}
.ws9{word-spacing:-15.552000px;}
.wsf{word-spacing:-15.480000px;}
.ws0{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.563800px;}
.ws5{word-spacing:-11.246400px;}
.wsb{word-spacing:-11.167800px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-14.112000px;}
._21{margin-left:-11.309640px;}
._1e{margin-left:-8.456160px;}
._16{margin-left:-7.260000px;}
._4{margin-left:-6.048000px;}
._1{margin-left:-4.464000px;}
._a{margin-left:-3.048000px;}
._0{margin-left:-1.080000px;}
._3{width:1.020000px;}
._2{width:2.040000px;}
._5{width:3.456000px;}
._6{width:4.824000px;}
._b{width:6.240000px;}
._11{width:7.632000px;}
._12{width:9.096000px;}
._14{width:10.164000px;}
._9{width:12.024000px;}
._d{width:13.104000px;}
._e{width:14.484000px;}
._8{width:15.732000px;}
._15{width:16.908000px;}
._c{width:18.888000px;}
._13{width:20.136000px;}
._7{width:21.468000px;}
._17{width:22.548000px;}
._1b{width:24.172200px;}
._18{width:25.608000px;}
._19{width:26.856000px;}
._f{width:28.080000px;}
._10{width:29.100000px;}
._20{width:50.256000px;}
._1f{width:51.408000px;}
._1c{width:133.972200px;}
._22{width:283.536000px;}
._23{width:285.120000px;}
._1d{width:939.744000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:51.120000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:114.516000px;}
.ya4{bottom:117.576000px;}
.y8b{bottom:119.736000px;}
.y1e{bottom:138.456000px;}
.ya3{bottom:148.536000px;}
.y8a{bottom:151.590000px;}
.y39{bottom:157.530000px;}
.y54{bottom:166.530000px;}
.ya2{bottom:179.670000px;}
.y1d{bottom:181.470000px;}
.y89{bottom:183.090000px;}
.y53{bottom:198.390000px;}
.y38{bottom:200.730000px;}
.ya1{bottom:210.990000px;}
.y88{bottom:214.050000px;}
.y6f{bottom:216.570000px;}
.y1c{bottom:224.670000px;}
.y52{bottom:229.710000px;}
.ya0{bottom:242.310000px;}
.y37{bottom:244.470000px;}
.y87{bottom:245.370000px;}
.y6e{bottom:251.310000px;}
.y1b{bottom:267.690000px;}
.y51{bottom:272.730000px;}
.y9f{bottom:273.630000px;}
.yb7{bottom:279.930000px;}
.y6d{bottom:284.430000px;}
.y86{bottom:288.750000px;}
.y36{bottom:290.550000px;}
.y1a{bottom:310.710000px;}
.y6c{bottom:315.750000px;}
.y50{bottom:315.930000px;}
.y9e{bottom:317.190000px;}
.yb6{bottom:322.950000px;}
.y85{bottom:332.490000px;}
.y35{bottom:334.110000px;}
.y6b{bottom:347.115000px;}
.y9d{bottom:349.095000px;}
.y19{bottom:353.775000px;}
.y4f{bottom:361.155000px;}
.y84{bottom:364.395000px;}
.yb5{bottom:366.015000px;}
.y34{bottom:373.575000px;}
.y9c{bottom:380.595000px;}
.y4e{bottom:393.015000px;}
.y6a{bottom:393.195000px;}
.y83{bottom:396.075000px;}
.y18{bottom:396.795000px;}
.yb4{bottom:397.155000px;}
.y33{bottom:399.315000px;}
.y9b{bottom:412.095000px;}
.y68{bottom:417.315000px;}
.y69{bottom:418.935000px;}
.y82{bottom:427.395000px;}
.yb3{bottom:428.115000px;}
.y4d{bottom:436.575000px;}
.y17{bottom:439.815000px;}
.y32{bottom:440.355000px;}
.y9a{bottom:455.115000px;}
.y81{bottom:458.715000px;}
.yb2{bottom:471.135000px;}
.y4c{bottom:480.135000px;}
.y16{bottom:483.015000px;}
.y31{bottom:483.915000px;}
.y67{bottom:487.335000px;}
.y99{bottom:498.135000px;}
.y80{bottom:502.275000px;}
.y4b{bottom:511.455000px;}
.y66{bottom:518.835000px;}
.y15{bottom:526.035000px;}
.y30{bottom:527.655000px;}
.y98{bottom:529.275000px;}
.yb1{bottom:545.295000px;}
.y7f{bottom:545.835000px;}
.y4a{bottom:554.835000px;}
.y2f{bottom:559.515000px;}
.y97{bottom:560.595000px;}
.y65{bottom:564.555000px;}
.y14{bottom:569.055000px;}
.yb0{bottom:576.255000px;}
.y7e{bottom:576.795000px;}
.y49{bottom:585.795000px;}
.y64{bottom:596.415000px;}
.y2e{bottom:602.895000px;}
.y96{bottom:604.185000px;}
.y13{bottom:612.105000px;}
.y48{bottom:616.965000px;}
.yaf{bottom:619.485000px;}
.y7d{bottom:619.845000px;}
.y63{bottom:627.765000px;}
.y12{bottom:643.065000px;}
.y2d{bottom:645.945000px;}
.y95{bottom:647.205000px;}
.y47{bottom:647.925000px;}
.yae{bottom:650.445000px;}
.y7c{bottom:663.045000px;}
.y62{bottom:670.785000px;}
.y11{bottom:674.385000px;}
.y2c{bottom:677.265000px;}
.y46{bottom:679.065000px;}
.y94{bottom:690.225000px;}
.yad{bottom:693.465000px;}
.y7b{bottom:694.905000px;}
.y61{bottom:701.925000px;}
.y10{bottom:706.065000px;}
.y2b{bottom:708.945000px;}
.y45{bottom:722.085000px;}
.yac{bottom:724.605000px;}
.yf{bottom:737.745000px;}
.y7a{bottom:738.285000px;}
.y2a{bottom:740.445000px;}
.y60{bottom:744.945000px;}
.y44{bottom:753.945000px;}
.yab{bottom:767.625000px;}
.y79{bottom:769.245000px;}
.ye{bottom:769.425000px;}
.y29{bottom:772.125000px;}
.y43{bottom:785.445000px;}
.y5f{bottom:787.965000px;}
.y93{bottom:797.325000px;}
.yaa{bottom:798.585000px;}
.y78{bottom:800.385000px;}
.yd{bottom:801.105000px;}
.y28{bottom:803.625000px;}
.y5e{bottom:818.925000px;}
.y42{bottom:828.465000px;}
.y77{bottom:831.345000px;}
.yc{bottom:832.425000px;}
.y92{bottom:840.525000px;}
.ya9{bottom:841.605000px;}
.y27{bottom:846.645000px;}
.y5d{bottom:850.065000px;}
.y76{bottom:862.485000px;}
.y41{bottom:871.530000px;}
.y91{bottom:872.430000px;}
.yb{bottom:875.490000px;}
.y26{bottom:877.650000px;}
.ya8{bottom:884.850000px;}
.y5c{bottom:893.130000px;}
.y75{bottom:893.490000px;}
.y40{bottom:902.670000px;}
.y90{bottom:906.270000px;}
.y25{bottom:908.790000px;}
.ya{bottom:911.490000px;}
.ya7{bottom:915.810000px;}
.y5b{bottom:924.810000px;}
.y9{bottom:935.430000px;}
.y24{bottom:939.750000px;}
.y3f{bottom:945.690000px;}
.ya6{bottom:946.950000px;}
.y8f{bottom:954.510000px;}
.y74{bottom:956.490000px;}
.y8{bottom:959.190000px;}
.y5a{bottom:967.830000px;}
.y23{bottom:970.890000px;}
.y7{bottom:982.950000px;}
.y73{bottom:988.170000px;}
.y8e{bottom:988.350000px;}
.y3e{bottom:988.710000px;}
.ya5{bottom:989.970000px;}
.y59{bottom:999.690000px;}
.y22{bottom:1001.850000px;}
.y6{bottom:1006.710000px;}
.y8d{bottom:1019.670000px;}
.y3d{bottom:1020.390000px;}
.y5{bottom:1030.470000px;}
.y58{bottom:1031.190000px;}
.y72{bottom:1031.550000px;}
.y21{bottom:1032.990000px;}
.y4{bottom:1054.410000px;}
.y8c{bottom:1062.690000px;}
.y3c{bottom:1063.410000px;}
.y20{bottom:1063.950000px;}
.y57{bottom:1074.210000px;}
.y71{bottom:1074.570000px;}
.y3{bottom:1078.170000px;}
.y3b{bottom:1094.730000px;}
.y1f{bottom:1095.090000px;}
.y70{bottom:1105.890000px;}
.y56{bottom:1106.070000px;}
.y2{bottom:1114.170000px;}
.y55{bottom:1137.780000px;}
.y1{bottom:1138.140000px;}
.h5{height:50.273438px;}
.h2{height:50.800781px;}
.h8{height:52.417969px;}
.h4{height:52.628906px;}
.h3{height:62.621367px;}
.h6{height:153.210938px;}
.h9{height:156.090938px;}
.h7{height:201.450937px;}
.ha{height:265.530937px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:108.035987px;}
.x1{left:111.455987px;}
.xe{left:112.535987px;}
.xd{left:118.475987px;}
.xa{left:120.455987px;}
.x9{left:125.495987px;}
.x5{left:135.035987px;}
.xf{left:144.035987px;}
.x4{left:162.029987px;}
.x8{left:358.994987px;}
.x2{left:360.434987px;}
.x6{left:366.914987px;}
.xb{left:377.714987px;}
.x7{left:381.494987px;}
.xc{left:526.064987px;}
@media print{
.va{vertical-align:-15.360000pt;}
.v2{vertical-align:-12.800000pt;}
.v5{vertical-align:-10.240000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v3{vertical-align:12.800000pt;}
.v8{vertical-align:15.360000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:42.880000pt;}
.v7{vertical-align:97.280000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls39{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.069867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.282133pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.832000pt;}
.ls3{letter-spacing:1.152000pt;}
.ls0{letter-spacing:1.408000pt;}
.ls5{letter-spacing:1.792000pt;}
.ls8{letter-spacing:1.984000pt;}
.ls6{letter-spacing:2.048000pt;}
.ls11{letter-spacing:2.490240pt;}
.ls10{letter-spacing:2.496000pt;}
.ls24{letter-spacing:2.585600pt;}
.ls27{letter-spacing:3.072000pt;}
.ls20{letter-spacing:3.407360pt;}
.ls2{letter-spacing:3.593600pt;}
.ls36{letter-spacing:3.840000pt;}
.ls12{letter-spacing:3.868800pt;}
.lsc{letter-spacing:3.890560pt;}
.ls22{letter-spacing:3.997227pt;}
.ls21{letter-spacing:4.047360pt;}
.ls25{letter-spacing:4.530560pt;}
.ls1f{letter-spacing:4.640000pt;}
.lsf{letter-spacing:5.280000pt;}
.ls2e{letter-spacing:10.560000pt;}
.ls33{letter-spacing:10.624000pt;}
.ls35{letter-spacing:10.752000pt;}
.ls29{letter-spacing:10.810240pt;}
.ls38{letter-spacing:14.272000pt;}
.ls26{letter-spacing:14.770560pt;}
.ls28{letter-spacing:17.210240pt;}
.ls2c{letter-spacing:17.450667pt;}
.ls2f{letter-spacing:17.472000pt;}
.ls1d{letter-spacing:17.600000pt;}
.ls2b{letter-spacing:18.112000pt;}
.ls23{letter-spacing:18.240000pt;}
.ls37{letter-spacing:18.272000pt;}
.ls1e{letter-spacing:18.313600pt;}
.ls2a{letter-spacing:19.770240pt;}
.ls14{letter-spacing:20.687360pt;}
.ls9{letter-spacing:20.873600pt;}
.ls30{letter-spacing:21.327360pt;}
.ls1{letter-spacing:21.673600pt;}
.ls17{letter-spacing:21.728640pt;}
.lse{letter-spacing:21.810560pt;}
.lsa{letter-spacing:30.186667pt;}
.ls2d{letter-spacing:30.208000pt;}
.lsb{letter-spacing:70.528000pt;}
.ls13{letter-spacing:78.186667pt;}
.wse{word-spacing:-24.640000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws7{word-spacing:-14.272000pt;}
.ws4{word-spacing:-14.208000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.888000pt;}
.ws9{word-spacing:-13.824000pt;}
.wsf{word-spacing:-13.760000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.278933pt;}
.ws5{word-spacing:-9.996800pt;}
.wsb{word-spacing:-9.926933pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-12.544000pt;}
._21{margin-left:-10.053013pt;}
._1e{margin-left:-7.516587pt;}
._16{margin-left:-6.453333pt;}
._4{margin-left:-5.376000pt;}
._1{margin-left:-3.968000pt;}
._a{margin-left:-2.709333pt;}
._0{margin-left:-0.960000pt;}
._3{width:0.906667pt;}
._2{width:1.813333pt;}
._5{width:3.072000pt;}
._6{width:4.288000pt;}
._b{width:5.546667pt;}
._11{width:6.784000pt;}
._12{width:8.085333pt;}
._14{width:9.034667pt;}
._9{width:10.688000pt;}
._d{width:11.648000pt;}
._e{width:12.874667pt;}
._8{width:13.984000pt;}
._15{width:15.029333pt;}
._c{width:16.789333pt;}
._13{width:17.898667pt;}
._7{width:19.082667pt;}
._17{width:20.042667pt;}
._1b{width:21.486400pt;}
._18{width:22.762667pt;}
._19{width:23.872000pt;}
._f{width:24.960000pt;}
._10{width:25.866667pt;}
._20{width:44.672000pt;}
._1f{width:45.696000pt;}
._1c{width:119.086400pt;}
._22{width:252.032000pt;}
._23{width:253.440000pt;}
._1d{width:835.328000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:45.440000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:101.792000pt;}
.ya4{bottom:104.512000pt;}
.y8b{bottom:106.432000pt;}
.y1e{bottom:123.072000pt;}
.ya3{bottom:132.032000pt;}
.y8a{bottom:134.746667pt;}
.y39{bottom:140.026667pt;}
.y54{bottom:148.026667pt;}
.ya2{bottom:159.706667pt;}
.y1d{bottom:161.306667pt;}
.y89{bottom:162.746667pt;}
.y53{bottom:176.346667pt;}
.y38{bottom:178.426667pt;}
.ya1{bottom:187.546667pt;}
.y88{bottom:190.266667pt;}
.y6f{bottom:192.506667pt;}
.y1c{bottom:199.706667pt;}
.y52{bottom:204.186667pt;}
.ya0{bottom:215.386667pt;}
.y37{bottom:217.306667pt;}
.y87{bottom:218.106667pt;}
.y6e{bottom:223.386667pt;}
.y1b{bottom:237.946667pt;}
.y51{bottom:242.426667pt;}
.y9f{bottom:243.226667pt;}
.yb7{bottom:248.826667pt;}
.y6d{bottom:252.826667pt;}
.y86{bottom:256.666667pt;}
.y36{bottom:258.266667pt;}
.y1a{bottom:276.186667pt;}
.y6c{bottom:280.666667pt;}
.y50{bottom:280.826667pt;}
.y9e{bottom:281.946667pt;}
.yb6{bottom:287.066667pt;}
.y85{bottom:295.546667pt;}
.y35{bottom:296.986667pt;}
.y6b{bottom:308.546667pt;}
.y9d{bottom:310.306667pt;}
.y19{bottom:314.466667pt;}
.y4f{bottom:321.026667pt;}
.y84{bottom:323.906667pt;}
.yb5{bottom:325.346667pt;}
.y34{bottom:332.066667pt;}
.y9c{bottom:338.306667pt;}
.y4e{bottom:349.346667pt;}
.y6a{bottom:349.506667pt;}
.y83{bottom:352.066667pt;}
.y18{bottom:352.706667pt;}
.yb4{bottom:353.026667pt;}
.y33{bottom:354.946667pt;}
.y9b{bottom:366.306667pt;}
.y68{bottom:370.946667pt;}
.y69{bottom:372.386667pt;}
.y82{bottom:379.906667pt;}
.yb3{bottom:380.546667pt;}
.y4d{bottom:388.066667pt;}
.y17{bottom:390.946667pt;}
.y32{bottom:391.426667pt;}
.y9a{bottom:404.546667pt;}
.y81{bottom:407.746667pt;}
.yb2{bottom:418.786667pt;}
.y4c{bottom:426.786667pt;}
.y16{bottom:429.346667pt;}
.y31{bottom:430.146667pt;}
.y67{bottom:433.186667pt;}
.y99{bottom:442.786667pt;}
.y80{bottom:446.466667pt;}
.y4b{bottom:454.626667pt;}
.y66{bottom:461.186667pt;}
.y15{bottom:467.586667pt;}
.y30{bottom:469.026667pt;}
.y98{bottom:470.466667pt;}
.yb1{bottom:484.706667pt;}
.y7f{bottom:485.186667pt;}
.y4a{bottom:493.186667pt;}
.y2f{bottom:497.346667pt;}
.y97{bottom:498.306667pt;}
.y65{bottom:501.826667pt;}
.y14{bottom:505.826667pt;}
.yb0{bottom:512.226667pt;}
.y7e{bottom:512.706667pt;}
.y49{bottom:520.706667pt;}
.y64{bottom:530.146667pt;}
.y2e{bottom:535.906667pt;}
.y96{bottom:537.053333pt;}
.y13{bottom:544.093333pt;}
.y48{bottom:548.413333pt;}
.yaf{bottom:550.653333pt;}
.y7d{bottom:550.973333pt;}
.y63{bottom:558.013333pt;}
.y12{bottom:571.613333pt;}
.y2d{bottom:574.173333pt;}
.y95{bottom:575.293333pt;}
.y47{bottom:575.933333pt;}
.yae{bottom:578.173333pt;}
.y7c{bottom:589.373333pt;}
.y62{bottom:596.253333pt;}
.y11{bottom:599.453333pt;}
.y2c{bottom:602.013333pt;}
.y46{bottom:603.613333pt;}
.y94{bottom:613.533333pt;}
.yad{bottom:616.413333pt;}
.y7b{bottom:617.693333pt;}
.y61{bottom:623.933333pt;}
.y10{bottom:627.613333pt;}
.y2b{bottom:630.173333pt;}
.y45{bottom:641.853333pt;}
.yac{bottom:644.093333pt;}
.yf{bottom:655.773333pt;}
.y7a{bottom:656.253333pt;}
.y2a{bottom:658.173333pt;}
.y60{bottom:662.173333pt;}
.y44{bottom:670.173333pt;}
.yab{bottom:682.333333pt;}
.y79{bottom:683.773333pt;}
.ye{bottom:683.933333pt;}
.y29{bottom:686.333333pt;}
.y43{bottom:698.173333pt;}
.y5f{bottom:700.413333pt;}
.y93{bottom:708.733333pt;}
.yaa{bottom:709.853333pt;}
.y78{bottom:711.453333pt;}
.yd{bottom:712.093333pt;}
.y28{bottom:714.333333pt;}
.y5e{bottom:727.933333pt;}
.y42{bottom:736.413333pt;}
.y77{bottom:738.973333pt;}
.yc{bottom:739.933333pt;}
.y92{bottom:747.133333pt;}
.ya9{bottom:748.093333pt;}
.y27{bottom:752.573333pt;}
.y5d{bottom:755.613333pt;}
.y76{bottom:766.653333pt;}
.y41{bottom:774.693333pt;}
.y91{bottom:775.493333pt;}
.yb{bottom:778.213333pt;}
.y26{bottom:780.133333pt;}
.ya8{bottom:786.533333pt;}
.y5c{bottom:793.893333pt;}
.y75{bottom:794.213333pt;}
.y40{bottom:802.373333pt;}
.y90{bottom:805.573333pt;}
.y25{bottom:807.813333pt;}
.ya{bottom:810.213333pt;}
.ya7{bottom:814.053333pt;}
.y5b{bottom:822.053333pt;}
.y9{bottom:831.493333pt;}
.y24{bottom:835.333333pt;}
.y3f{bottom:840.613333pt;}
.ya6{bottom:841.733333pt;}
.y8f{bottom:848.453333pt;}
.y74{bottom:850.213333pt;}
.y8{bottom:852.613333pt;}
.y5a{bottom:860.293333pt;}
.y23{bottom:863.013333pt;}
.y7{bottom:873.733333pt;}
.y73{bottom:878.373333pt;}
.y8e{bottom:878.533333pt;}
.y3e{bottom:878.853333pt;}
.ya5{bottom:879.973333pt;}
.y59{bottom:888.613333pt;}
.y22{bottom:890.533333pt;}
.y6{bottom:894.853333pt;}
.y8d{bottom:906.373333pt;}
.y3d{bottom:907.013333pt;}
.y5{bottom:915.973333pt;}
.y58{bottom:916.613333pt;}
.y72{bottom:916.933333pt;}
.y21{bottom:918.213333pt;}
.y4{bottom:937.253333pt;}
.y8c{bottom:944.613333pt;}
.y3c{bottom:945.253333pt;}
.y20{bottom:945.733333pt;}
.y57{bottom:954.853333pt;}
.y71{bottom:955.173333pt;}
.y3{bottom:958.373333pt;}
.y3b{bottom:973.093333pt;}
.y1f{bottom:973.413333pt;}
.y70{bottom:983.013333pt;}
.y56{bottom:983.173333pt;}
.y2{bottom:990.373333pt;}
.y55{bottom:1011.360000pt;}
.y1{bottom:1011.680000pt;}
.h5{height:44.687500pt;}
.h2{height:45.156250pt;}
.h8{height:46.593750pt;}
.h4{height:46.781250pt;}
.h3{height:55.663437pt;}
.h6{height:136.187500pt;}
.h9{height:138.747500pt;}
.h7{height:179.067500pt;}
.ha{height:236.027500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.031988pt;}
.x1{left:99.071988pt;}
.xe{left:100.031988pt;}
.xd{left:105.311988pt;}
.xa{left:107.071988pt;}
.x9{left:111.551988pt;}
.x5{left:120.031988pt;}
.xf{left:128.031988pt;}
.x4{left:144.026655pt;}
.x8{left:319.106655pt;}
.x2{left:320.386655pt;}
.x6{left:326.146655pt;}
.xb{left:335.746655pt;}
.x7{left:339.106655pt;}
.xc{left:467.613322pt;}
}




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