
    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_085086372f08f8f5877f1332.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_d817816ce7bca4e320b0230a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d9c8109edd5de69f4148677c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_4c4db5ccab135a1b731d625a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_ce0fbfd18449a29d38bb5133.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_01b2ddb3518b454d9d0074d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_b34409d56b2e5aaf7fdf2329.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_1480a2e89d24335d8beda25e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-98.385912px;}
.v2{vertical-align:-35.520000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:38.807029px;}
.v5{vertical-align:44.532656px;}
.v1{vertical-align:64.800000px;}
.ls12{letter-spacing:-1.704000px;}
.ls16{letter-spacing:-0.954000px;}
.lse{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.274200px;}
.ls10{letter-spacing:-0.234000px;}
.lsd{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.094200px;}
.ls14{letter-spacing:-0.000006px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024480px;}
.ls3{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.150600px;}
.lsf{letter-spacing:0.204600px;}
.ls17{letter-spacing:0.283200px;}
.lsc{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.327456px;}
.ls8{letter-spacing:0.467593px;}
.ls11{letter-spacing:0.474000px;}
.ls13{letter-spacing:0.514246px;}
.lsa{letter-spacing:0.695520px;}
.ls7{letter-spacing:1.080000px;}
.ls1{letter-spacing:47.232000px;}
.ls6{letter-spacing:152.949600px;}
.ls5{letter-spacing:153.000000px;}
.ls4{letter-spacing:153.024000px;}
.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:-72.072000px;}
.wsd{word-spacing:-72.000000px;}
.ws15{word-spacing:-54.185760px;}
.ws13{word-spacing:-43.446240px;}
.ws14{word-spacing:-40.680000px;}
.ws19{word-spacing:-40.438344px;}
.ws7{word-spacing:-40.032000px;}
.ws1b{word-spacing:-38.196960px;}
.ws1f{word-spacing:-38.118360px;}
.ws1c{word-spacing:-38.064360px;}
.ws12{word-spacing:-37.913760px;}
.ws1e{word-spacing:-37.819560px;}
.ws1d{word-spacing:-37.679760px;}
.ws1a{word-spacing:-36.959760px;}
.ws16{word-spacing:-36.209760px;}
.ws17{word-spacing:-32.544000px;}
.ws18{word-spacing:-32.543994px;}
.ws0{word-spacing:-1.627200px;}
.ws1{word-spacing:-1.152000px;}
.ws2{word-spacing:-0.432000px;}
.ws4{word-spacing:-0.312000px;}
.ws8{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:0.144000px;}
.wsb{word-spacing:0.288000px;}
.ws6{word-spacing:0.432000px;}
.ws3{word-spacing:0.576000px;}
.ws10{word-spacing:15.120000px;}
.ws9{word-spacing:40.896000px;}
.wsf{word-spacing:61.920000px;}
.ws11{word-spacing:7658.520000px;}
._1a{margin-left:-29.736141px;}
._17{margin-left:-20.401303px;}
._1c{margin-left:-17.593444px;}
._6{margin-left:-15.984000px;}
._1b{margin-left:-14.692952px;}
._11{margin-left:-13.134240px;}
._5{margin-left:-11.664000px;}
._e{margin-left:-10.573200px;}
._b{margin-left:-9.377280px;}
._4{margin-left:-7.488000px;}
._a{margin-left:-5.630400px;}
._7{margin-left:-4.608000px;}
._9{margin-left:-3.600000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.080000px;}
._2{width:1.440000px;}
._f{width:2.604000px;}
._d{width:3.769200px;}
._28{width:4.943520px;}
._10{width:6.583680px;}
._21{width:11.081280px;}
._20{width:12.478320px;}
._13{width:13.897994px;}
._16{width:16.119548px;}
._19{width:18.263727px;}
._14{width:21.871188px;}
._1e{width:23.264574px;}
._18{width:25.186794px;}
._8{width:32.616000px;}
._12{width:37.656454px;}
._1{width:41.448000px;}
._27{width:42.800880px;}
._26{width:43.892640px;}
._22{width:56.108160px;}
._23{width:57.140880px;}
._24{width:65.337120px;}
._c{width:66.340800px;}
._25{width:136.659456px;}
._1d{width:289.429899px;}
._1f{width:376.471116px;}
._15{width:1911.139764px;}
.fcb{color:transparent;}
.fc9{color:rgb(10,45,110);}
.fca{color:rgb(16,157,217);}
.fc7{color:rgb(160,35,90);}
.fc8{color:rgb(0,90,160);}
.fc6{color:rgb(140,180,35);}
.fc5{color:rgb(7,43,109);}
.fc3{color:rgb(20,200,255);}
.fc2{color:rgb(0,40,100);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,40,99);}
.fs2{font-size:7.200000px;}
.fs15{font-size:60.437176px;}
.fs13{font-size:66.798984px;}
.fs14{font-size:67.435165px;}
.fs12{font-size:76.341696px;}
.fs10{font-size:125.933968px;}
.fs11{font-size:126.917827px;}
.fs3{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fs9{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fsf{font-size:168.239910px;}
.fsd{font-size:180.000000px;}
.fse{font-size:180.144000px;}
.fsb{font-size:192.240000px;}
.fs7{font-size:216.000000px;}
.fsc{font-size:239.760000px;}
.fs5{font-size:254.880000px;}
.fs6{font-size:288.000000px;}
.fs0{font-size:360.000000px;}
.fs1{font-size:360.144000px;}
.fs8{font-size:426.240000px;}
.y0{bottom:0.000000px;}
.y73{bottom:0.134963px;}
.y90{bottom:36.861326px;}
.y8d{bottom:36.861344px;}
.y8f{bottom:55.151524px;}
.y8c{bottom:55.151543px;}
.y74{bottom:61.626302px;}
.y99{bottom:64.404000px;}
.y8e{bottom:75.029524px;}
.y8b{bottom:75.029544px;}
.y72{bottom:95.569441px;}
.y87{bottom:111.609966px;}
.y91{bottom:132.285781px;}
.y88{bottom:132.285827px;}
.y86{bottom:132.285841px;}
.y85{bottom:152.325534px;}
.y75{bottom:170.592799px;}
.ya6{bottom:179.970000px;}
.y44{bottom:182.520000px;}
.y8a{bottom:185.724996px;}
.y71{bottom:211.975706px;}
.y92{bottom:216.738783px;}
.y89{bottom:216.738845px;}
.y79{bottom:226.918734px;}
.ya5{bottom:230.370000px;}
.y43{bottom:259.020000px;}
.y78{bottom:270.454500px;}
.ya4{bottom:280.770000px;}
.y7c{bottom:283.982563px;}
.y7f{bottom:286.877759px;}
.y7e{bottom:308.348847px;}
.ya3{bottom:331.200000px;}
.y42{bottom:335.550000px;}
.y77{bottom:356.296208px;}
.y84{bottom:368.786004px;}
.y82{bottom:369.581248px;}
.y81{bottom:379.919202px;}
.ya2{bottom:381.600000px;}
.y83{bottom:388.825700px;}
.y7b{bottom:397.864256px;}
.y41{bottom:412.050000px;}
.y80{bottom:426.996580px;}
.ya1{bottom:432.000000px;}
.y7a{bottom:441.154058px;}
.ya0{bottom:482.400000px;}
.y40{bottom:488.550000px;}
.y9f{bottom:532.800000px;}
.y3f{bottom:565.050000px;}
.y9e{bottom:609.660000px;}
.y3e{bottom:619.050000px;}
.y76{bottom:646.534649px;}
.y5a{bottom:689.325000px;}
.y3d{bottom:695.550000px;}
.y59{bottom:739.770000px;}
.y3c{bottom:749.550000px;}
.y58{bottom:820.230000px;}
.y3b{bottom:830.730000px;}
.y57{bottom:870.630000px;}
.y1d{bottom:929.520000px;}
.y56{bottom:951.090000px;}
.y2{bottom:980.250000px;}
.y55{bottom:1001.490000px;}
.y63{bottom:1034.640000px;}
.y98{bottom:1042.380000px;}
.y54{bottom:1051.890000px;}
.y62{bottom:1102.140000px;}
.y53{bottom:1102.290000px;}
.y97{bottom:1118.880000px;}
.y52{bottom:1152.690000px;}
.y61{bottom:1169.640000px;}
.y96{bottom:1172.880000px;}
.y7d{bottom:1227.225000px;}
.y51{bottom:1231.740000px;}
.y95{bottom:1249.380000px;}
.y70{bottom:1277.745000px;}
.y94{bottom:1325.880000px;}
.y6f{bottom:1331.745000px;}
.y9d{bottom:1341.750000px;}
.y93{bottom:1407.060000px;}
.y6e{bottom:1408.245000px;}
.y9c{bottom:1426.395000px;}
.y1{bottom:1431.330000px;}
.y6d{bottom:1462.245000px;}
.y50{bottom:1500.765000px;}
.y9b{bottom:1510.995000px;}
.y6c{bottom:1543.425000px;}
.y4f{bottom:1554.765000px;}
.y9a{bottom:1596.675000px;}
.y4e{bottom:1608.765000px;}
.y3a{bottom:1629.330000px;}
.y1a{bottom:1644.810000px;}
.y4d{bottom:1662.765000px;}
.y6b{bottom:1681.740000px;}
.y39{bottom:1683.330000px;}
.y19{bottom:1709.640000px;}
.y60{bottom:1709.670000px;}
.y38{bottom:1737.330000px;}
.y4c{bottom:1739.265000px;}
.y6a{bottom:1758.240000px;}
.y18{bottom:1774.440000px;}
.y4b{bottom:1793.265000px;}
.y37{bottom:1813.860000px;}
.y69{bottom:1834.740000px;}
.y17{bottom:1839.240000px;}
.y36{bottom:1867.860000px;}
.y4a{bottom:1869.765000px;}
.y68{bottom:1911.240000px;}
.y35{bottom:1944.360000px;}
.y49{bottom:1946.265000px;}
.y16{bottom:1968.840000px;}
.y67{bottom:1987.740000px;}
.y34{bottom:1998.360000px;}
.y48{bottom:2000.310000px;}
.y3{bottom:2015.925000px;}
.y15{bottom:2033.640000px;}
.y5f{bottom:2047.170000px;}
.y66{bottom:2064.240000px;}
.y33{bottom:2074.860000px;}
.y47{bottom:2076.810000px;}
.y14{bottom:2098.440000px;}
.y5e{bottom:2114.670000px;}
.y32{bottom:2128.860000px;}
.y46{bottom:2130.810000px;}
.y65{bottom:2140.740000px;}
.y13{bottom:2163.240000px;}
.y5c{bottom:2166.225000px;}
.y5d{bottom:2204.310000px;}
.y31{bottom:2210.040000px;}
.y45{bottom:2211.990000px;}
.y64{bottom:2221.920000px;}
.y12{bottom:2292.840000px;}
.y5b{bottom:2293.485000px;}
.y30{bottom:2297.010000px;}
.y1c{bottom:2304.570000px;}
.y11{bottom:2357.640000px;}
.y10{bottom:2422.440000px;}
.y2b{bottom:2431.875000px;}
.y27{bottom:2436.690000px;}
.yf{bottom:2487.270000px;}
.y2f{bottom:2489.790000px;}
.y2d{bottom:2492.460000px;}
.y2a{bottom:2498.115000px;}
.y26{bottom:2502.930000px;}
.y2e{bottom:2547.435000px;}
.ye{bottom:2552.070000px;}
.y2c{bottom:2558.700000px;}
.y29{bottom:2564.355000px;}
.y25{bottom:2569.170000px;}
.yd{bottom:2616.870000px;}
.y28{bottom:2633.655000px;}
.yc{bottom:2681.670000px;}
.y24{bottom:2746.005000px;}
.yb{bottom:2746.470000px;}
.y23{bottom:2796.405000px;}
.ya{bottom:2811.270000px;}
.y1e{bottom:2827.770000px;}
.y22{bottom:2846.805000px;}
.y9{bottom:2876.070000px;}
.y21{bottom:2897.250000px;}
.y20{bottom:2956.530000px;}
.y8{bottom:3005.670000px;}
.y7{bottom:3070.470000px;}
.y1f{bottom:3088.290000px;}
.y1b{bottom:3112.560000px;}
.y6{bottom:3135.270000px;}
.y5{bottom:3200.070000px;}
.y4{bottom:3264.915000px;}
.h4{height:0.000150px;}
.h5{height:7.161328px;}
.h21{height:44.176979px;}
.h1d{height:50.229705px;}
.h1f{height:50.708083px;}
.h1c{height:57.405377px;}
.h1e{height:89.515112px;}
.h20{height:101.938034px;}
.h6{height:105.257812px;}
.h8{height:105.363070px;}
.h7{height:108.281250px;}
.h17{height:122.976145px;}
.h19{height:125.257565px;}
.h1a{height:126.236139px;}
.h22{height:143.226562px;}
.hf{height:166.858945px;}
.he{height:167.002172px;}
.h18{height:167.336278px;}
.h14{height:179.033203px;}
.h13{height:184.306641px;}
.h15{height:184.454086px;}
.h9{height:186.306328px;}
.h11{height:191.207461px;}
.h10{height:196.839492px;}
.hb{height:214.839844px;}
.h12{height:245.496445px;}
.h2{height:263.144531px;}
.h3{height:263.249789px;}
.hd{height:286.453125px;}
.ha{height:294.890625px;}
.hc{height:423.950625px;}
.h1b{height:459.270000px;}
.h16{height:982.629299px;}
.h0{height:3575.880000px;}
.h1{height:3576.000000px;}
.w3{width:0.000150px;}
.w5{width:866.925000px;}
.w4{width:1123.114804px;}
.w2{width:5055.479925px;}
.w0{width:5055.480000px;}
.w1{width:5055.750000px;}
.x4{left:-1549.905075px;}
.x0{left:0.000000px;}
.x33{left:26.892849px;}
.x3f{left:36.647925px;}
.xc{left:45.287925px;}
.x31{left:53.149391px;}
.x1c{left:70.624362px;}
.x30{left:74.950213px;}
.x1d{left:85.484233px;}
.x5{left:100.907925px;}
.x7{left:103.103925px;}
.x8{left:113.903925px;}
.x22{left:131.983399px;}
.x11{left:157.109925px;}
.x21{left:190.537904px;}
.x32{left:204.163945px;}
.x2c{left:238.058500px;}
.xf{left:240.089925px;}
.x2a{left:242.195951px;}
.x2b{left:250.629752px;}
.x1e{left:257.703370px;}
.x35{left:309.667304px;}
.x36{left:331.945545px;}
.x37{left:338.629026px;}
.x29{left:383.185288px;}
.x34{left:394.165358px;}
.x2d{left:401.803477px;}
.x23{left:417.867166px;}
.x24{left:420.819494px;}
.x3a{left:528.153087px;}
.x38{left:530.062622px;}
.x39{left:534.677412px;}
.x2e{left:585.121446px;}
.x2f{left:596.578835px;}
.x27{left:650.609028px;}
.x3c{left:686.779240px;}
.x3b{left:694.470593px;}
.x1f{left:696.124087px;}
.x25{left:737.948732px;}
.x26{left:740.901061px;}
.x20{left:920.254991px;}
.x3d{left:1288.004925px;}
.x14{left:1290.884925px;}
.x10{left:1292.579925px;}
.x3e{left:1342.004925px;}
.x15{left:1344.884925px;}
.xe{left:1399.499925px;}
.x6{left:2588.729925px;}
.x12{left:2590.379925px;}
.x18{left:2593.409925px;}
.x19{left:2642.654925px;}
.x13{left:2644.379925px;}
.xb{left:2731.859925px;}
.x28{left:2742.330000px;}
.x9{left:3568.649925px;}
.xa{left:3724.529925px;}
.x16{left:3797.789925px;}
.x42{left:3806.714925px;}
.x40{left:3830.504925px;}
.x41{left:3834.149925px;}
.x1a{left:3835.154925px;}
.x17{left:3839.039925px;}
.x1b{left:3889.154925px;}
.xd{left:3939.554925px;}
.x3{left:5227.950000px;}
.x1{left:6476.759925px;}
.x2{left:6483.389925px;}
@media print{
.v3{vertical-align:-87.454144pt;}
.v2{vertical-align:-31.573333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:34.495137pt;}
.v5{vertical-align:39.584583pt;}
.v1{vertical-align:57.600000pt;}
.ls12{letter-spacing:-1.514667pt;}
.ls16{letter-spacing:-0.848000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.243733pt;}
.ls10{letter-spacing:-0.208000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.083733pt;}
.ls14{letter-spacing:-0.000005pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021760pt;}
.ls3{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.133867pt;}
.lsf{letter-spacing:0.181867pt;}
.ls17{letter-spacing:0.251733pt;}
.lsc{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.291072pt;}
.ls8{letter-spacing:0.415638pt;}
.ls11{letter-spacing:0.421333pt;}
.ls13{letter-spacing:0.457108pt;}
.lsa{letter-spacing:0.618240pt;}
.ls7{letter-spacing:0.960000pt;}
.ls1{letter-spacing:41.984000pt;}
.ls6{letter-spacing:135.955200pt;}
.ls5{letter-spacing:136.000000pt;}
.ls4{letter-spacing:136.021333pt;}
.wse{word-spacing:-64.064000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws15{word-spacing:-48.165120pt;}
.ws13{word-spacing:-38.618880pt;}
.ws14{word-spacing:-36.160000pt;}
.ws19{word-spacing:-35.945195pt;}
.ws7{word-spacing:-35.584000pt;}
.ws1b{word-spacing:-33.952853pt;}
.ws1f{word-spacing:-33.882987pt;}
.ws1c{word-spacing:-33.834987pt;}
.ws12{word-spacing:-33.701120pt;}
.ws1e{word-spacing:-33.617387pt;}
.ws1d{word-spacing:-33.493120pt;}
.ws1a{word-spacing:-32.853120pt;}
.ws16{word-spacing:-32.186453pt;}
.ws17{word-spacing:-28.928000pt;}
.ws18{word-spacing:-28.927995pt;}
.ws0{word-spacing:-1.446400pt;}
.ws1{word-spacing:-1.024000pt;}
.ws2{word-spacing:-0.384000pt;}
.ws4{word-spacing:-0.277333pt;}
.ws8{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:0.128000pt;}
.wsb{word-spacing:0.256000pt;}
.ws6{word-spacing:0.384000pt;}
.ws3{word-spacing:0.512000pt;}
.ws10{word-spacing:13.440000pt;}
.ws9{word-spacing:36.352000pt;}
.wsf{word-spacing:55.040000pt;}
.ws11{word-spacing:6807.573333pt;}
._1a{margin-left:-26.432125pt;}
._17{margin-left:-18.134491pt;}
._1c{margin-left:-15.638617pt;}
._6{margin-left:-14.208000pt;}
._1b{margin-left:-13.060402pt;}
._11{margin-left:-11.674880pt;}
._5{margin-left:-10.368000pt;}
._e{margin-left:-9.398400pt;}
._b{margin-left:-8.335360pt;}
._4{margin-left:-6.656000pt;}
._a{margin-left:-5.004800pt;}
._7{margin-left:-4.096000pt;}
._9{margin-left:-3.200000pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.280000pt;}
._f{width:2.314667pt;}
._d{width:3.350400pt;}
._28{width:4.394240pt;}
._10{width:5.852160pt;}
._21{width:9.850027pt;}
._20{width:11.091840pt;}
._13{width:12.353772pt;}
._16{width:14.328487pt;}
._19{width:16.234424pt;}
._14{width:19.441056pt;}
._1e{width:20.679621pt;}
._18{width:22.388261pt;}
._8{width:28.992000pt;}
._12{width:33.472403pt;}
._1{width:36.842667pt;}
._27{width:38.045227pt;}
._26{width:39.015680pt;}
._22{width:49.873920pt;}
._23{width:50.791893pt;}
._24{width:58.077440pt;}
._c{width:58.969600pt;}
._25{width:121.475072pt;}
._1d{width:257.271021pt;}
._1f{width:334.640992pt;}
._15{width:1698.790901pt;}
.fs2{font-size:6.400000pt;}
.fs15{font-size:53.721935pt;}
.fs13{font-size:59.376875pt;}
.fs14{font-size:59.942369pt;}
.fs12{font-size:67.859286pt;}
.fs10{font-size:111.941305pt;}
.fs11{font-size:112.815846pt;}
.fs3{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fs9{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fsf{font-size:149.546587pt;}
.fsd{font-size:160.000000pt;}
.fse{font-size:160.128000pt;}
.fsb{font-size:170.880000pt;}
.fs7{font-size:192.000000pt;}
.fsc{font-size:213.120000pt;}
.fs5{font-size:226.560000pt;}
.fs6{font-size:256.000000pt;}
.fs0{font-size:320.000000pt;}
.fs1{font-size:320.128000pt;}
.fs8{font-size:378.880000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:0.119967pt;}
.y90{bottom:32.765624pt;}
.y8d{bottom:32.765639pt;}
.y8f{bottom:49.023577pt;}
.y8c{bottom:49.023594pt;}
.y74{bottom:54.778935pt;}
.y99{bottom:57.248000pt;}
.y8e{bottom:66.692910pt;}
.y8b{bottom:66.692928pt;}
.y72{bottom:84.950614pt;}
.y87{bottom:99.208858pt;}
.y91{bottom:117.587361pt;}
.y88{bottom:117.587402pt;}
.y86{bottom:117.587414pt;}
.y85{bottom:135.400475pt;}
.y75{bottom:151.638043pt;}
.ya6{bottom:159.973333pt;}
.y44{bottom:162.240000pt;}
.y8a{bottom:165.088886pt;}
.y71{bottom:188.422850pt;}
.y92{bottom:192.656696pt;}
.y89{bottom:192.656751pt;}
.y79{bottom:201.705541pt;}
.ya5{bottom:204.773333pt;}
.y43{bottom:230.240000pt;}
.y78{bottom:240.404000pt;}
.ya4{bottom:249.573333pt;}
.y7c{bottom:252.428945pt;}
.y7f{bottom:255.002452pt;}
.y7e{bottom:274.087864pt;}
.ya3{bottom:294.400000pt;}
.y42{bottom:298.266667pt;}
.y77{bottom:316.707741pt;}
.y84{bottom:327.809781pt;}
.y82{bottom:328.516665pt;}
.y81{bottom:337.705957pt;}
.ya2{bottom:339.200000pt;}
.y83{bottom:345.622845pt;}
.y7b{bottom:353.657117pt;}
.y41{bottom:366.266667pt;}
.y80{bottom:379.552515pt;}
.ya1{bottom:384.000000pt;}
.y7a{bottom:392.136940pt;}
.ya0{bottom:428.800000pt;}
.y40{bottom:434.266667pt;}
.y9f{bottom:473.600000pt;}
.y3f{bottom:502.266667pt;}
.y9e{bottom:541.920000pt;}
.y3e{bottom:550.266667pt;}
.y76{bottom:574.697466pt;}
.y5a{bottom:612.733333pt;}
.y3d{bottom:618.266667pt;}
.y59{bottom:657.573333pt;}
.y3c{bottom:666.266667pt;}
.y58{bottom:729.093333pt;}
.y3b{bottom:738.426667pt;}
.y57{bottom:773.893333pt;}
.y1d{bottom:826.240000pt;}
.y56{bottom:845.413333pt;}
.y2{bottom:871.333333pt;}
.y55{bottom:890.213333pt;}
.y63{bottom:919.680000pt;}
.y98{bottom:926.560000pt;}
.y54{bottom:935.013333pt;}
.y62{bottom:979.680000pt;}
.y53{bottom:979.813333pt;}
.y97{bottom:994.560000pt;}
.y52{bottom:1024.613333pt;}
.y61{bottom:1039.680000pt;}
.y96{bottom:1042.560000pt;}
.y7d{bottom:1090.866667pt;}
.y51{bottom:1094.880000pt;}
.y95{bottom:1110.560000pt;}
.y70{bottom:1135.773333pt;}
.y94{bottom:1178.560000pt;}
.y6f{bottom:1183.773333pt;}
.y9d{bottom:1192.666667pt;}
.y93{bottom:1250.720000pt;}
.y6e{bottom:1251.773333pt;}
.y9c{bottom:1267.906667pt;}
.y1{bottom:1272.293333pt;}
.y6d{bottom:1299.773333pt;}
.y50{bottom:1334.013333pt;}
.y9b{bottom:1343.106667pt;}
.y6c{bottom:1371.933333pt;}
.y4f{bottom:1382.013333pt;}
.y9a{bottom:1419.266667pt;}
.y4e{bottom:1430.013333pt;}
.y3a{bottom:1448.293333pt;}
.y1a{bottom:1462.053333pt;}
.y4d{bottom:1478.013333pt;}
.y6b{bottom:1494.880000pt;}
.y39{bottom:1496.293333pt;}
.y19{bottom:1519.680000pt;}
.y60{bottom:1519.706667pt;}
.y38{bottom:1544.293333pt;}
.y4c{bottom:1546.013333pt;}
.y6a{bottom:1562.880000pt;}
.y18{bottom:1577.280000pt;}
.y4b{bottom:1594.013333pt;}
.y37{bottom:1612.320000pt;}
.y69{bottom:1630.880000pt;}
.y17{bottom:1634.880000pt;}
.y36{bottom:1660.320000pt;}
.y4a{bottom:1662.013333pt;}
.y68{bottom:1698.880000pt;}
.y35{bottom:1728.320000pt;}
.y49{bottom:1730.013333pt;}
.y16{bottom:1750.080000pt;}
.y67{bottom:1766.880000pt;}
.y34{bottom:1776.320000pt;}
.y48{bottom:1778.053333pt;}
.y3{bottom:1791.933333pt;}
.y15{bottom:1807.680000pt;}
.y5f{bottom:1819.706667pt;}
.y66{bottom:1834.880000pt;}
.y33{bottom:1844.320000pt;}
.y47{bottom:1846.053333pt;}
.y14{bottom:1865.280000pt;}
.y5e{bottom:1879.706667pt;}
.y32{bottom:1892.320000pt;}
.y46{bottom:1894.053333pt;}
.y65{bottom:1902.880000pt;}
.y13{bottom:1922.880000pt;}
.y5c{bottom:1925.533333pt;}
.y5d{bottom:1959.386667pt;}
.y31{bottom:1964.480000pt;}
.y45{bottom:1966.213333pt;}
.y64{bottom:1975.040000pt;}
.y12{bottom:2038.080000pt;}
.y5b{bottom:2038.653333pt;}
.y30{bottom:2041.786667pt;}
.y1c{bottom:2048.506667pt;}
.y11{bottom:2095.680000pt;}
.y10{bottom:2153.280000pt;}
.y2b{bottom:2161.666667pt;}
.y27{bottom:2165.946667pt;}
.yf{bottom:2210.906667pt;}
.y2f{bottom:2213.146667pt;}
.y2d{bottom:2215.520000pt;}
.y2a{bottom:2220.546667pt;}
.y26{bottom:2224.826667pt;}
.y2e{bottom:2264.386667pt;}
.ye{bottom:2268.506667pt;}
.y2c{bottom:2274.400000pt;}
.y29{bottom:2279.426667pt;}
.y25{bottom:2283.706667pt;}
.yd{bottom:2326.106667pt;}
.y28{bottom:2341.026667pt;}
.yc{bottom:2383.706667pt;}
.y24{bottom:2440.893333pt;}
.yb{bottom:2441.306667pt;}
.y23{bottom:2485.693333pt;}
.ya{bottom:2498.906667pt;}
.y1e{bottom:2513.573333pt;}
.y22{bottom:2530.493333pt;}
.y9{bottom:2556.506667pt;}
.y21{bottom:2575.333333pt;}
.y20{bottom:2628.026667pt;}
.y8{bottom:2671.706667pt;}
.y7{bottom:2729.306667pt;}
.y1f{bottom:2745.146667pt;}
.y1b{bottom:2766.720000pt;}
.y6{bottom:2786.906667pt;}
.y5{bottom:2844.506667pt;}
.y4{bottom:2902.146667pt;}
.h4{height:0.000133pt;}
.h5{height:6.365625pt;}
.h21{height:39.268426pt;}
.h1d{height:44.648627pt;}
.h1f{height:45.073852pt;}
.h1c{height:51.027002pt;}
.h1e{height:79.568989pt;}
.h20{height:90.611585pt;}
.h6{height:93.562500pt;}
.h8{height:93.656062pt;}
.h7{height:96.250000pt;}
.h17{height:109.312129pt;}
.h19{height:111.340057pt;}
.h1a{height:112.209902pt;}
.h22{height:127.312500pt;}
.hf{height:148.319063pt;}
.he{height:148.446375pt;}
.h18{height:148.743358pt;}
.h14{height:159.140625pt;}
.h13{height:163.828125pt;}
.h15{height:163.959187pt;}
.h9{height:165.605625pt;}
.h11{height:169.962187pt;}
.h10{height:174.968437pt;}
.hb{height:190.968750pt;}
.h12{height:218.219062pt;}
.h2{height:233.906250pt;}
.h3{height:233.999812pt;}
.hd{height:254.625000pt;}
.ha{height:262.125000pt;}
.hc{height:376.845000pt;}
.h1b{height:408.240000pt;}
.h16{height:873.448266pt;}
.h0{height:3178.560000pt;}
.h1{height:3178.666667pt;}
.w3{width:0.000133pt;}
.w5{width:770.600000pt;}
.w4{width:998.324271pt;}
.w2{width:4493.759933pt;}
.w0{width:4493.760000pt;}
.w1{width:4494.000000pt;}
.x4{left:-1377.693400pt;}
.x0{left:0.000000pt;}
.x33{left:23.904755pt;}
.x3f{left:32.575933pt;}
.xc{left:40.255933pt;}
.x31{left:47.243903pt;}
.x1c{left:62.777211pt;}
.x30{left:66.622412pt;}
.x1d{left:75.985985pt;}
.x5{left:89.695933pt;}
.x7{left:91.647933pt;}
.x8{left:101.247933pt;}
.x22{left:117.318577pt;}
.x11{left:139.653266pt;}
.x21{left:169.367025pt;}
.x32{left:181.479062pt;}
.x2c{left:211.607556pt;}
.xf{left:213.413266pt;}
.x2a{left:215.285290pt;}
.x2b{left:222.782002pt;}
.x1e{left:229.069662pt;}
.x35{left:275.259825pt;}
.x36{left:295.062707pt;}
.x37{left:301.003579pt;}
.x29{left:340.609145pt;}
.x34{left:350.369207pt;}
.x2d{left:357.158646pt;}
.x23{left:371.437481pt;}
.x24{left:374.061773pt;}
.x3a{left:469.469410pt;}
.x38{left:471.166775pt;}
.x39{left:475.268810pt;}
.x2e{left:520.107952pt;}
.x2f{left:530.292297pt;}
.x27{left:578.319136pt;}
.x3c{left:610.470436pt;}
.x3b{left:617.307194pt;}
.x1f{left:618.776966pt;}
.x25{left:655.954429pt;}
.x26{left:658.578721pt;}
.x20{left:818.004437pt;}
.x3d{left:1144.893266pt;}
.x14{left:1147.453266pt;}
.x10{left:1148.959933pt;}
.x3e{left:1192.893266pt;}
.x15{left:1195.453266pt;}
.xe{left:1243.999933pt;}
.x6{left:2301.093266pt;}
.x12{left:2302.559933pt;}
.x18{left:2305.253266pt;}
.x19{left:2349.026600pt;}
.x13{left:2350.559933pt;}
.xb{left:2428.319933pt;}
.x28{left:2437.626667pt;}
.x9{left:3172.133266pt;}
.xa{left:3310.693266pt;}
.x16{left:3375.813266pt;}
.x42{left:3383.746600pt;}
.x40{left:3404.893266pt;}
.x41{left:3408.133266pt;}
.x1a{left:3409.026600pt;}
.x17{left:3412.479933pt;}
.x1b{left:3457.026600pt;}
.xd{left:3501.826600pt;}
.x3{left:4647.066667pt;}
.x1{left:5757.119933pt;}
.x2{left:5763.013266pt;}
}




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