
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_7ecbab1eb3684858c842d37f.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_1eb15043b588c3867d34e8a2.woff2')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_c43d0c2cc82ee30134a86de6.woff2')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_4b92a0b878df53e159d215df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_a9047e681d6d04760223eefe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8aadf9e8c6c23528d266153c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f5fdc5478f072089f186d81c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_359d01edf130577d36b3965b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_508f4c97e05507b1074d638f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c45dc7cd09d4241944d5055b.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.984000px;}
.ls5{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.274800px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:6.785280px;}
.lsb{letter-spacing:39.905280px;}
.ls7{letter-spacing:59.345280px;}
.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:-66.240000px;}
.wsa{word-spacing:-28.987200px;}
.ws7{word-spacing:-28.712400px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.576000px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.572800px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._1{width:1.380000px;}
._4{width:2.611200px;}
._8{width:3.865920px;}
._9{width:5.644800px;}
._7{width:6.661440px;}
._5{width:7.778880px;}
._3{width:8.953920px;}
._2{width:10.068480px;}
._e{width:11.315520px;}
._d{width:12.732480px;}
._c{width:13.737600px;}
._6{width:15.307200px;}
._13{width:17.789760px;}
._12{width:19.077120px;}
._11{width:20.998080px;}
._10{width:22.389120px;}
._a{width:24.376320px;}
._b{width:25.568640px;}
._1c{width:27.192960px;}
._26{width:29.410560px;}
._25{width:30.496320px;}
._21{width:32.325120px;}
._22{width:33.686880px;}
._28{width:35.530560px;}
._1d{width:36.696960px;}
._1e{width:38.286720px;}
._18{width:39.412800px;}
._16{width:40.564800px;}
._17{width:41.613120px;}
._1b{width:43.652160px;}
._f{width:44.740800px;}
._15{width:46.765440px;}
._14{width:47.784960px;}
._23{width:49.149600px;}
._24{width:51.053760px;}
._19{width:52.280640px;}
._20{width:53.878080px;}
._1f{width:55.468800px;}
._1a{width:58.484160px;}
._29{width:60.039360px;}
._27{width:68.955840px;}
.fc8{color:rgb(13,40,65);}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(51,51,204);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs3{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:131.760000px;}
.yd{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.140000px;}
.y34{bottom:10.080000px;}
.y38{bottom:10.794000px;}
.y9{bottom:10.800000px;}
.yb{bottom:21.240000px;}
.y33{bottom:26.460000px;}
.y7{bottom:32.760000px;}
.y32{bottom:42.660000px;}
.y35{bottom:48.420000px;}
.y36{bottom:48.600000px;}
.y6{bottom:50.220000px;}
.y8{bottom:53.280000px;}
.y31{bottom:58.500000px;}
.y2e{bottom:80.496000px;}
.ya5{bottom:94.896000px;}
.y5c{bottom:100.836000px;}
.yb0{bottom:102.276000px;}
.y89{bottom:104.796000px;}
.y2d{bottom:108.936000px;}
.y7f{bottom:117.936000px;}
.ya4{bottom:123.516000px;}
.y5b{bottom:129.816000px;}
.yaf{bottom:130.716000px;}
.y88{bottom:133.236000px;}
.y2c{bottom:137.376000px;}
.y37{bottom:142.056000px;}
.y7e{bottom:146.376000px;}
.ya3{bottom:151.950000px;}
.yae{bottom:159.150000px;}
.y5a{bottom:159.510000px;}
.y87{bottom:161.670000px;}
.y2b{bottom:165.810000px;}
.y7d{bottom:174.450000px;}
.ya2{bottom:180.390000px;}
.yad{bottom:187.590000px;}
.y59{bottom:189.030000px;}
.y86{bottom:190.110000px;}
.y2a{bottom:194.430000px;}
.y7c{bottom:203.250000px;}
.ya1{bottom:209.190000px;}
.yac{bottom:216.030000px;}
.y58{bottom:217.650000px;}
.y85{bottom:218.730000px;}
.y29{bottom:222.870000px;}
.y7b{bottom:231.690000px;}
.ya0{bottom:237.630000px;}
.yab{bottom:244.110000px;}
.y57{bottom:246.810000px;}
.y84{bottom:247.170000px;}
.y28{bottom:251.310000px;}
.y7a{bottom:260.310000px;}
.y9f{bottom:266.070000px;}
.yaa{bottom:269.130000px;}
.y56{bottom:275.610000px;}
.y27{bottom:279.750000px;}
.y79{bottom:289.830000px;}
.y9e{bottom:294.510000px;}
.y55{bottom:304.050000px;}
.y26{bottom:308.190000px;}
.y78{bottom:318.495000px;}
.y9d{bottom:322.995000px;}
.y54{bottom:332.535000px;}
.y25{bottom:336.675000px;}
.y77{bottom:348.015000px;}
.y9c{bottom:351.435000px;}
.y53{bottom:360.975000px;}
.y24{bottom:365.115000px;}
.y76{bottom:376.455000px;}
.y9b{bottom:379.695000px;}
.y52{bottom:389.055000px;}
.y83{bottom:389.415000px;}
.y23{bottom:393.555000px;}
.y75{bottom:405.795000px;}
.y9a{bottom:408.495000px;}
.y51{bottom:417.495000px;}
.y82{bottom:417.855000px;}
.y22{bottom:421.995000px;}
.y74{bottom:434.595000px;}
.y99{bottom:436.935000px;}
.y50{bottom:446.295000px;}
.y21{bottom:450.255000px;}
.y2f{bottom:450.615000px;}
.y73{bottom:463.035000px;}
.y98{bottom:466.635000px;}
.y4f{bottom:474.915000px;}
.y20{bottom:481.215000px;}
.y72{bottom:492.555000px;}
.y97{bottom:495.795000px;}
.y4e{bottom:503.355000px;}
.y1f{bottom:509.655000px;}
.y71{bottom:521.175000px;}
.y96{bottom:524.775000px;}
.y4d{bottom:531.795000px;}
.y1e{bottom:538.095000px;}
.ya9{bottom:543.855000px;}
.y70{bottom:550.695000px;}
.y95{bottom:554.295000px;}
.yb1{bottom:559.875000px;}
.y4c{bottom:560.235000px;}
.y1d{bottom:566.715000px;}
.ya8{bottom:568.365000px;}
.y6f{bottom:579.345000px;}
.y94{bottom:582.945000px;}
.y4b{bottom:588.705000px;}
.y1c{bottom:595.185000px;}
.y6e{bottom:608.505000px;}
.y93{bottom:612.465000px;}
.y4a{bottom:617.145000px;}
.y1b{bottom:623.625000px;}
.y6d{bottom:637.305000px;}
.y92{bottom:641.625000px;}
.y49{bottom:645.585000px;}
.y1a{bottom:652.065000px;}
.y6c{bottom:665.745000px;}
.y91{bottom:670.605000px;}
.y48{bottom:674.025000px;}
.y19{bottom:680.505000px;}
.y6b{bottom:694.185000px;}
.y90{bottom:699.045000px;}
.y47{bottom:702.465000px;}
.y18{bottom:714.885000px;}
.y6a{bottom:722.625000px;}
.y8f{bottom:727.485000px;}
.y46{bottom:731.085000px;}
.y17{bottom:737.385000px;}
.y69{bottom:750.885000px;}
.y8e{bottom:757.185000px;}
.y45{bottom:759.525000px;}
.y16{bottom:771.765000px;}
.y68{bottom:779.325000px;}
.y8d{bottom:785.625000px;}
.y44{bottom:787.965000px;}
.y15{bottom:794.265000px;}
.ya7{bottom:797.865000px;}
.y67{bottom:808.125000px;}
.y8c{bottom:815.145000px;}
.y43{bottom:816.405000px;}
.y14{bottom:828.870000px;}
.y66{bottom:836.790000px;}
.y8b{bottom:843.810000px;}
.y42{bottom:844.890000px;}
.y13{bottom:851.370000px;}
.ya6{bottom:860.010000px;}
.y65{bottom:866.310000px;}
.y8a{bottom:872.970000px;}
.y41{bottom:873.330000px;}
.y12{bottom:885.750000px;}
.y64{bottom:895.830000px;}
.y40{bottom:901.410000px;}
.y81{bottom:901.770000px;}
.y11{bottom:908.250000px;}
.y63{bottom:924.450000px;}
.y3f{bottom:930.210000px;}
.y10{bottom:942.630000px;}
.y62{bottom:953.610000px;}
.y3e{bottom:958.650000px;}
.yf{bottom:964.770000px;}
.y61{bottom:982.590000px;}
.y3d{bottom:987.270000px;}
.ye{bottom:993.210000px;}
.y60{bottom:1012.290000px;}
.y5{bottom:1014.270000px;}
.y3c{bottom:1015.710000px;}
.y4{bottom:1034.250000px;}
.y5f{bottom:1041.810000px;}
.y80{bottom:1043.790000px;}
.y3b{bottom:1044.150000px;}
.y3{bottom:1054.050000px;}
.y5e{bottom:1071.540000px;}
.y2{bottom:1072.080000px;}
.y3a{bottom:1072.620000px;}
.y1{bottom:1088.640000px;}
.y5d{bottom:1100.700000px;}
.y39{bottom:1101.060000px;}
.ya{bottom:1122.300000px;}
.y30{bottom:1131.480000px;}
.h6{height:35.100000px;}
.h9{height:41.250937px;}
.h1{height:50.229844px;}
.hc{height:52.971680px;}
.hb{height:53.709961px;}
.hd{height:55.291992px;}
.h3{height:58.621992px;}
.h7{height:60.226875px;}
.h11{height:60.679688px;}
.ha{height:65.010937px;}
.h8{height:66.757500px;}
.h12{height:68.084282px;}
.h2{height:72.562500px;}
.h5{height:72.562526px;}
.h10{height:109.800000px;}
.h13{height:111.043849px;}
.hf{height:111.043855px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w6{width:21.600000px;}
.w2{width:23.940000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3{width:333.795000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.x5{left:16.920000px;}
.xa{left:31.680000px;}
.x3{left:53.999986px;}
.xb{left:80.999986px;}
.x1{left:144.215986px;}
.x2{left:174.809986px;}
.x8{left:488.984986px;}
.xc{left:515.984986px;}
.x6{left:547.845000px;}
.x9{left:871.200000px;}
.x4{left:876.060000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.874667pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.244267pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:6.031360pt;}
.lsb{letter-spacing:35.471360pt;}
.ls7{letter-spacing:52.751360pt;}
.ws9{word-spacing:-58.880000pt;}
.wsa{word-spacing:-25.766400pt;}
.ws7{word-spacing:-25.522133pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.845333pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.953600pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.226667pt;}
._4{width:2.321067pt;}
._8{width:3.436373pt;}
._9{width:5.017600pt;}
._7{width:5.921280pt;}
._5{width:6.914560pt;}
._3{width:7.959040pt;}
._2{width:8.949760pt;}
._e{width:10.058240pt;}
._d{width:11.317760pt;}
._c{width:12.211200pt;}
._6{width:13.606400pt;}
._13{width:15.813120pt;}
._12{width:16.957440pt;}
._11{width:18.664960pt;}
._10{width:19.901440pt;}
._a{width:21.667840pt;}
._b{width:22.727680pt;}
._1c{width:24.171520pt;}
._26{width:26.142720pt;}
._25{width:27.107840pt;}
._21{width:28.733440pt;}
._22{width:29.943893pt;}
._28{width:31.582720pt;}
._1d{width:32.619520pt;}
._1e{width:34.032640pt;}
._18{width:35.033600pt;}
._16{width:36.057600pt;}
._17{width:36.989440pt;}
._1b{width:38.801920pt;}
._f{width:39.769600pt;}
._15{width:41.569280pt;}
._14{width:42.475520pt;}
._23{width:43.688533pt;}
._24{width:45.381120pt;}
._19{width:46.471680pt;}
._20{width:47.891627pt;}
._1f{width:49.305600pt;}
._1a{width:51.985920pt;}
._29{width:53.368320pt;}
._27{width:61.294080pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:117.120000pt;}
.yd{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.680000pt;}
.y34{bottom:8.960000pt;}
.y38{bottom:9.594667pt;}
.y9{bottom:9.600000pt;}
.yb{bottom:18.880000pt;}
.y33{bottom:23.520000pt;}
.y7{bottom:29.120000pt;}
.y32{bottom:37.920000pt;}
.y35{bottom:43.040000pt;}
.y36{bottom:43.200000pt;}
.y6{bottom:44.640000pt;}
.y8{bottom:47.360000pt;}
.y31{bottom:52.000000pt;}
.y2e{bottom:71.552000pt;}
.ya5{bottom:84.352000pt;}
.y5c{bottom:89.632000pt;}
.yb0{bottom:90.912000pt;}
.y89{bottom:93.152000pt;}
.y2d{bottom:96.832000pt;}
.y7f{bottom:104.832000pt;}
.ya4{bottom:109.792000pt;}
.y5b{bottom:115.392000pt;}
.yaf{bottom:116.192000pt;}
.y88{bottom:118.432000pt;}
.y2c{bottom:122.112000pt;}
.y37{bottom:126.272000pt;}
.y7e{bottom:130.112000pt;}
.ya3{bottom:135.066667pt;}
.yae{bottom:141.466667pt;}
.y5a{bottom:141.786667pt;}
.y87{bottom:143.706667pt;}
.y2b{bottom:147.386667pt;}
.y7d{bottom:155.066667pt;}
.ya2{bottom:160.346667pt;}
.yad{bottom:166.746667pt;}
.y59{bottom:168.026667pt;}
.y86{bottom:168.986667pt;}
.y2a{bottom:172.826667pt;}
.y7c{bottom:180.666667pt;}
.ya1{bottom:185.946667pt;}
.yac{bottom:192.026667pt;}
.y58{bottom:193.466667pt;}
.y85{bottom:194.426667pt;}
.y29{bottom:198.106667pt;}
.y7b{bottom:205.946667pt;}
.ya0{bottom:211.226667pt;}
.yab{bottom:216.986667pt;}
.y57{bottom:219.386667pt;}
.y84{bottom:219.706667pt;}
.y28{bottom:223.386667pt;}
.y7a{bottom:231.386667pt;}
.y9f{bottom:236.506667pt;}
.yaa{bottom:239.226667pt;}
.y56{bottom:244.986667pt;}
.y27{bottom:248.666667pt;}
.y79{bottom:257.626667pt;}
.y9e{bottom:261.786667pt;}
.y55{bottom:270.266667pt;}
.y26{bottom:273.946667pt;}
.y78{bottom:283.106667pt;}
.y9d{bottom:287.106667pt;}
.y54{bottom:295.586667pt;}
.y25{bottom:299.266667pt;}
.y77{bottom:309.346667pt;}
.y9c{bottom:312.386667pt;}
.y53{bottom:320.866667pt;}
.y24{bottom:324.546667pt;}
.y76{bottom:334.626667pt;}
.y9b{bottom:337.506667pt;}
.y52{bottom:345.826667pt;}
.y83{bottom:346.146667pt;}
.y23{bottom:349.826667pt;}
.y75{bottom:360.706667pt;}
.y9a{bottom:363.106667pt;}
.y51{bottom:371.106667pt;}
.y82{bottom:371.426667pt;}
.y22{bottom:375.106667pt;}
.y74{bottom:386.306667pt;}
.y99{bottom:388.386667pt;}
.y50{bottom:396.706667pt;}
.y21{bottom:400.226667pt;}
.y2f{bottom:400.546667pt;}
.y73{bottom:411.586667pt;}
.y98{bottom:414.786667pt;}
.y4f{bottom:422.146667pt;}
.y20{bottom:427.746667pt;}
.y72{bottom:437.826667pt;}
.y97{bottom:440.706667pt;}
.y4e{bottom:447.426667pt;}
.y1f{bottom:453.026667pt;}
.y71{bottom:463.266667pt;}
.y96{bottom:466.466667pt;}
.y4d{bottom:472.706667pt;}
.y1e{bottom:478.306667pt;}
.ya9{bottom:483.426667pt;}
.y70{bottom:489.506667pt;}
.y95{bottom:492.706667pt;}
.yb1{bottom:497.666667pt;}
.y4c{bottom:497.986667pt;}
.y1d{bottom:503.746667pt;}
.ya8{bottom:505.213333pt;}
.y6f{bottom:514.973333pt;}
.y94{bottom:518.173333pt;}
.y4b{bottom:523.293333pt;}
.y1c{bottom:529.053333pt;}
.y6e{bottom:540.893333pt;}
.y93{bottom:544.413333pt;}
.y4a{bottom:548.573333pt;}
.y1b{bottom:554.333333pt;}
.y6d{bottom:566.493333pt;}
.y92{bottom:570.333333pt;}
.y49{bottom:573.853333pt;}
.y1a{bottom:579.613333pt;}
.y6c{bottom:591.773333pt;}
.y91{bottom:596.093333pt;}
.y48{bottom:599.133333pt;}
.y19{bottom:604.893333pt;}
.y6b{bottom:617.053333pt;}
.y90{bottom:621.373333pt;}
.y47{bottom:624.413333pt;}
.y18{bottom:635.453333pt;}
.y6a{bottom:642.333333pt;}
.y8f{bottom:646.653333pt;}
.y46{bottom:649.853333pt;}
.y17{bottom:655.453333pt;}
.y69{bottom:667.453333pt;}
.y8e{bottom:673.053333pt;}
.y45{bottom:675.133333pt;}
.y16{bottom:686.013333pt;}
.y68{bottom:692.733333pt;}
.y8d{bottom:698.333333pt;}
.y44{bottom:700.413333pt;}
.y15{bottom:706.013333pt;}
.ya7{bottom:709.213333pt;}
.y67{bottom:718.333333pt;}
.y8c{bottom:724.573333pt;}
.y43{bottom:725.693333pt;}
.y14{bottom:736.773333pt;}
.y66{bottom:743.813333pt;}
.y8b{bottom:750.053333pt;}
.y42{bottom:751.013333pt;}
.y13{bottom:756.773333pt;}
.ya6{bottom:764.453333pt;}
.y65{bottom:770.053333pt;}
.y8a{bottom:775.973333pt;}
.y41{bottom:776.293333pt;}
.y12{bottom:787.333333pt;}
.y64{bottom:796.293333pt;}
.y40{bottom:801.253333pt;}
.y81{bottom:801.573333pt;}
.y11{bottom:807.333333pt;}
.y63{bottom:821.733333pt;}
.y3f{bottom:826.853333pt;}
.y10{bottom:837.893333pt;}
.y62{bottom:847.653333pt;}
.y3e{bottom:852.133333pt;}
.yf{bottom:857.573333pt;}
.y61{bottom:873.413333pt;}
.y3d{bottom:877.573333pt;}
.ye{bottom:882.853333pt;}
.y60{bottom:899.813333pt;}
.y5{bottom:901.573333pt;}
.y3c{bottom:902.853333pt;}
.y4{bottom:919.333333pt;}
.y5f{bottom:926.053333pt;}
.y80{bottom:927.813333pt;}
.y3b{bottom:928.133333pt;}
.y3{bottom:936.933333pt;}
.y5e{bottom:952.480000pt;}
.y2{bottom:952.960000pt;}
.y3a{bottom:953.440000pt;}
.y1{bottom:967.680000pt;}
.y5d{bottom:978.400000pt;}
.y39{bottom:978.720000pt;}
.ya{bottom:997.600000pt;}
.y30{bottom:1005.760000pt;}
.h6{height:31.200000pt;}
.h9{height:36.667500pt;}
.h1{height:44.648750pt;}
.hc{height:47.085938pt;}
.hb{height:47.742188pt;}
.hd{height:49.148438pt;}
.h3{height:52.108438pt;}
.h7{height:53.535000pt;}
.h11{height:53.937500pt;}
.ha{height:57.787500pt;}
.h8{height:59.340000pt;}
.h12{height:60.519362pt;}
.h2{height:64.500000pt;}
.h5{height:64.500023pt;}
.h10{height:97.600000pt;}
.h13{height:98.705644pt;}
.hf{height:98.705649pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w6{width:19.200000pt;}
.w2{width:21.280000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3{width:296.706667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.x5{left:15.040000pt;}
.xa{left:28.160000pt;}
.x3{left:47.999988pt;}
.xb{left:71.999988pt;}
.x1{left:128.191988pt;}
.x2{left:155.386655pt;}
.x8{left:434.653321pt;}
.xc{left:458.653321pt;}
.x6{left:486.973333pt;}
.x9{left:774.400000pt;}
.x4{left:778.720000pt;}
}




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