
    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_deee872fdfd397f04533dd9b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c6c52e1fa91a5c05d00feced.woff')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_9157a16e3bcd4fa42d1a2279.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_06ae3b74b8c2023303e2ce4c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_37d91107141782b32ec9e4d4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dce9451ff5ba8a1a24f83365.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_13a72108e5920a31aa691453.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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);}
.v6{vertical-align:-70.560000px;}
.v5{vertical-align:-69.120000px;}
.v1{vertical-align:-61.320000px;}
.v7{vertical-align:-58.500000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v2{vertical-align:36.000000px;}
.ls12{letter-spacing:-0.269400px;}
.ls16{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls1e{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.ls20{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.900000px;}
.ls11{letter-spacing:6.660000px;}
.ls21{letter-spacing:46.908000px;}
.lsf{letter-spacing:71.226720px;}
.ls1c{letter-spacing:74.268000px;}
.ls1a{letter-spacing:74.826720px;}
.lsd{letter-spacing:94.266720px;}
.ls17{letter-spacing:97.866720px;}
.ls15{letter-spacing:101.466720px;}
.ls10{letter-spacing:104.346720px;}
.ls5{letter-spacing:118.026720px;}
.ls18{letter-spacing:685.056000px;}
.lse{letter-spacing:812.496000px;}
.lsc{letter-spacing:896.016000px;}
.ls19{letter-spacing:964.416000px;}
.ls4{letter-spacing:1014.816000px;}
.ls1b{letter-spacing:1065.216000px;}
.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;}
}
.wsa{word-spacing:-41.940000px;}
.wsb{word-spacing:-33.840000px;}
.ws8{word-spacing:-15.146400px;}
.ws4{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.790600px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.447200px;}
._1{width:1.155360px;}
._3{width:2.582640px;}
._6{width:4.302720px;}
._7{width:5.617440px;}
._5{width:7.389600px;}
._4{width:8.745840px;}
._d{width:9.798720px;}
._c{width:11.446080px;}
._16{width:12.457440px;}
._b{width:13.485840px;}
._8{width:16.115280px;}
._12{width:18.107280px;}
._11{width:19.182960px;}
._15{width:20.318400px;}
._a{width:29.602080px;}
._9{width:30.769440px;}
._18{width:32.263440px;}
._17{width:33.286320px;}
._2{width:46.855440px;}
._1b{width:54.037200px;}
._1a{width:55.188000px;}
._1c{width:85.050000px;}
._e{width:118.379040px;}
._f{width:121.296000px;}
._19{width:134.368800px;}
._14{width:212.850000px;}
._13{width:259.740960px;}
._10{width:439.080720px;}
.fc5{color:rgb(79,98,40);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(118,146,60);}
.fc2{color:rgb(255,0,0);}
.fc7{color:rgb(70,120,134);}
.fc6{color:rgb(148,54,52);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:23.760000px;}
.fs7{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:77.760000px;}
.fs8{font-size:135.360000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:55.836000px;}
.y37{bottom:112.536000px;}
.y6f{bottom:115.236000px;}
.y87{bottom:117.936000px;}
.y58{bottom:122.256000px;}
.y98{bottom:125.136000px;}
.y36{bottom:129.816000px;}
.y6e{bottom:132.336000px;}
.y86{bottom:135.216000px;}
.y57{bottom:136.836000px;}
.y97{bottom:142.416000px;}
.y35{bottom:147.096000px;}
.y56{bottom:150.330000px;}
.y85{bottom:152.490000px;}
.yb8{bottom:155.190000px;}
.y96{bottom:159.510000px;}
.y34{bottom:164.190000px;}
.y6d{bottom:166.890000px;}
.y84{bottom:169.770000px;}
.yb7{bottom:170.670000px;}
.y95{bottom:176.790000px;}
.y33{bottom:181.470000px;}
.y6c{bottom:183.450000px;}
.yb6{bottom:186.150000px;}
.y83{bottom:186.870000px;}
.y94{bottom:194.070000px;}
.y6b{bottom:194.250000px;}
.y32{bottom:198.750000px;}
.yb5{bottom:201.810000px;}
.y82{bottom:204.150000px;}
.y93{bottom:211.350000px;}
.y31{bottom:216.030000px;}
.yb4{bottom:217.290000px;}
.y81{bottom:221.430000px;}
.y92{bottom:228.630000px;}
.yb3{bottom:232.770000px;}
.y30{bottom:233.310000px;}
.y80{bottom:238.710000px;}
.yb2{bottom:248.250000px;}
.y2f{bottom:250.590000px;}
.y7f{bottom:255.990000px;}
.y91{bottom:263.010000px;}
.yb1{bottom:263.910000px;}
.y2e{bottom:267.690000px;}
.y7e{bottom:273.090000px;}
.yb0{bottom:279.390000px;}
.y2d{bottom:284.970000px;}
.y7d{bottom:290.415000px;}
.y90{bottom:294.195000px;}
.yaf{bottom:294.915000px;}
.y7c{bottom:307.695000px;}
.yae{bottom:310.395000px;}
.y2c{bottom:319.215000px;}
.y7b{bottom:324.975000px;}
.yad{bottom:326.055000px;}
.y2b{bottom:336.495000px;}
.yac{bottom:341.535000px;}
.y55{bottom:348.375000px;}
.y2a{bottom:353.775000px;}
.yab{bottom:357.015000px;}
.y7a{bottom:359.535000px;}
.y54{bottom:365.655000px;}
.y29{bottom:371.235000px;}
.y79{bottom:375.915000px;}
.yaa{bottom:378.255000px;}
.y53{bottom:382.935000px;}
.y78{bottom:386.715000px;}
.y28{bottom:388.155000px;}
.y52{bottom:400.035000px;}
.y27{bottom:405.435000px;}
.y51{bottom:417.315000px;}
.ya9{bottom:421.275000px;}
.y26{bottom:422.715000px;}
.y50{bottom:434.595000px;}
.ya8{bottom:438.555000px;}
.y25{bottom:439.995000px;}
.y4f{bottom:451.875000px;}
.y6a{bottom:454.215000px;}
.ya7{bottom:455.835000px;}
.y24{bottom:457.095000px;}
.y4e{bottom:469.155000px;}
.ya6{bottom:473.115000px;}
.y23{bottom:474.375000px;}
.y4d{bottom:486.255000px;}
.y69{bottom:488.775000px;}
.ya5{bottom:490.395000px;}
.y22{bottom:491.655000px;}
.y4c{bottom:503.535000px;}
.y68{bottom:506.055000px;}
.y21{bottom:508.935000px;}
.y4b{bottom:520.095000px;}
.y67{bottom:523.335000px;}
.ya4{bottom:524.415000px;}
.y20{bottom:526.215000px;}
.y4a{bottom:534.675000px;}
.y8f{bottom:540.435000px;}
.y66{bottom:540.615000px;}
.ya3{bottom:542.055000px;}
.y1f{bottom:543.495000px;}
.y49{bottom:548.175000px;}
.y65{bottom:557.715000px;}
.ya2{bottom:559.335000px;}
.y1e{bottom:560.595000px;}
.y64{bottom:575.025000px;}
.ya1{bottom:576.645000px;}
.y1d{bottom:577.905000px;}
.y63{bottom:592.305000px;}
.ya0{bottom:593.745000px;}
.y1c{bottom:595.185000px;}
.y77{bottom:608.505000px;}
.y62{bottom:609.585000px;}
.y9f{bottom:611.025000px;}
.y1b{bottom:612.465000px;}
.y76{bottom:625.785000px;}
.y61{bottom:626.865000px;}
.y9e{bottom:628.305000px;}
.y1a{bottom:629.745000px;}
.y75{bottom:643.065000px;}
.y8e{bottom:643.965000px;}
.y60{bottom:644.145000px;}
.y9d{bottom:645.585000px;}
.y19{bottom:647.025000px;}
.y74{bottom:660.345000px;}
.y5f{bottom:661.245000px;}
.y9c{bottom:662.865000px;}
.y18{bottom:664.125000px;}
.y73{bottom:677.625000px;}
.y5e{bottom:678.525000px;}
.y9b{bottom:680.145000px;}
.y17{bottom:681.405000px;}
.y5d{bottom:695.805000px;}
.y9a{bottom:697.245000px;}
.y16{bottom:698.685000px;}
.y72{bottom:712.005000px;}
.y5c{bottom:712.365000px;}
.y8d{bottom:713.085000px;}
.y15{bottom:716.325000px;}
.y5b{bottom:726.045000px;}
.y71{bottom:728.565000px;}
.y8c{bottom:730.365000px;}
.y99{bottom:731.805000px;}
.y14{bottom:733.245000px;}
.y70{bottom:739.365000px;}
.y5a{bottom:739.905000px;}
.y8b{bottom:747.465000px;}
.y48{bottom:749.085000px;}
.y13{bottom:750.705000px;}
.y47{bottom:766.365000px;}
.y12{bottom:774.825000px;}
.y8a{bottom:782.025000px;}
.y46{bottom:783.645000px;}
.y11{bottom:792.105000px;}
.y89{bottom:798.585000px;}
.y45{bottom:800.745000px;}
.y10{bottom:802.005000px;}
.y88{bottom:809.385000px;}
.y44{bottom:818.025000px;}
.yf{bottom:824.865000px;}
.yc7{bottom:827.745000px;}
.y43{bottom:835.305000px;}
.ye{bottom:835.845000px;}
.yc6{bottom:841.785000px;}
.y42{bottom:852.630000px;}
.yc5{bottom:857.310000px;}
.yd{bottom:858.210000px;}
.y41{bottom:869.910000px;}
.yc4{bottom:872.790000px;}
.yc{bottom:879.810000px;}
.y40{bottom:887.190000px;}
.yc3{bottom:888.450000px;}
.yb{bottom:897.090000px;}
.yc2{bottom:903.930000px;}
.y3f{bottom:904.290000px;}
.yc1{bottom:919.410000px;}
.ya{bottom:919.950000px;}
.y3e{bottom:921.570000px;}
.yc0{bottom:934.890000px;}
.y3d{bottom:938.850000px;}
.ybf{bottom:950.370000px;}
.y59{bottom:956.130000px;}
.ybe{bottom:966.030000px;}
.y9{bottom:968.370000px;}
.y3c{bottom:973.410000px;}
.ybd{bottom:981.510000px;}
.y3b{bottom:990.510000px;}
.ybc{bottom:996.990000px;}
.y3a{bottom:1007.790000px;}
.ybb{bottom:1012.470000px;}
.y8{bottom:1016.610000px;}
.y39{bottom:1025.070000px;}
.yba{bottom:1028.130000px;}
.y38{bottom:1042.350000px;}
.yb9{bottom:1043.610000px;}
.y6{bottom:1066.110000px;}
.y5{bottom:1077.270000px;}
.y4{bottom:1092.750000px;}
.y3{bottom:1123.740000px;}
.y2{bottom:1137.780000px;}
.y1{bottom:1152.000000px;}
.h6{height:23.945625px;}
.hb{height:38.158594px;}
.h3{height:47.344922px;}
.h4{height:48.616875px;}
.h2{height:52.998047px;}
.h5{height:54.421875px;}
.hf{height:56.214844px;}
.hd{height:58.621992px;}
.hc{height:58.651172px;}
.he{height:59.614102px;}
.h8{height:60.226875px;}
.h9{height:87.519375px;}
.ha{height:87.699375px;}
.h7{height:169.070625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:86.400000px;}
.x6{left:108.036000px;}
.xb{left:116.136000px;}
.xc{left:119.736000px;}
.x7{left:122.076000px;}
.x10{left:124.236000px;}
.x1b{left:129.636000px;}
.x13{left:131.436000px;}
.xd{left:140.976000px;}
.x15{left:142.956000px;}
.x8{left:147.816000px;}
.x9{left:154.110000px;}
.xe{left:155.730000px;}
.x2{left:160.950000px;}
.x21{left:162.030000px;}
.x3{left:243.030000px;}
.x1f{left:289.110000px;}
.xf{left:313.095000px;}
.x1a{left:322.095000px;}
.x1e{left:335.595000px;}
.x1{left:418.035000px;}
.x17{left:430.095000px;}
.xa{left:446.475000px;}
.x12{left:454.575000px;}
.x11{left:534.525000px;}
.x20{left:541.545000px;}
.x1c{left:550.725000px;}
.x16{left:553.785000px;}
.x1d{left:561.345000px;}
.x5{left:563.685000px;}
.x14{left:571.785000px;}
.x19{left:579.345000px;}
.x4{left:663.945000px;}
@media print{
.v6{vertical-align:-62.720000pt;}
.v5{vertical-align:-61.440000pt;}
.v1{vertical-align:-54.506667pt;}
.v7{vertical-align:-52.000000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v2{vertical-align:32.000000pt;}
.ls12{letter-spacing:-0.239467pt;}
.ls16{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls1e{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.ls20{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls11{letter-spacing:5.920000pt;}
.ls21{letter-spacing:41.696000pt;}
.lsf{letter-spacing:63.312640pt;}
.ls1c{letter-spacing:66.016000pt;}
.ls1a{letter-spacing:66.512640pt;}
.lsd{letter-spacing:83.792640pt;}
.ls17{letter-spacing:86.992640pt;}
.ls15{letter-spacing:90.192640pt;}
.ls10{letter-spacing:92.752640pt;}
.ls5{letter-spacing:104.912640pt;}
.ls18{letter-spacing:608.938667pt;}
.lse{letter-spacing:722.218667pt;}
.lsc{letter-spacing:796.458667pt;}
.ls19{letter-spacing:857.258667pt;}
.ls4{letter-spacing:902.058667pt;}
.ls1b{letter-spacing:946.858667pt;}
.wsa{word-spacing:-37.280000pt;}
.wsb{word-spacing:-30.080000pt;}
.ws8{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.480533pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.286400pt;}
._1{width:1.026987pt;}
._3{width:2.295680pt;}
._6{width:3.824640pt;}
._7{width:4.993280pt;}
._5{width:6.568533pt;}
._4{width:7.774080pt;}
._d{width:8.709973pt;}
._c{width:10.174293pt;}
._16{width:11.073280pt;}
._b{width:11.987413pt;}
._8{width:14.324693pt;}
._12{width:16.095360pt;}
._11{width:17.051520pt;}
._15{width:18.060800pt;}
._a{width:26.312960pt;}
._9{width:27.350613pt;}
._18{width:28.678613pt;}
._17{width:29.587840pt;}
._2{width:41.649280pt;}
._1b{width:48.033067pt;}
._1a{width:49.056000pt;}
._1c{width:75.600000pt;}
._e{width:105.225813pt;}
._f{width:107.818667pt;}
._19{width:119.438933pt;}
._14{width:189.200000pt;}
._13{width:230.880853pt;}
._10{width:390.293973pt;}
.fs2{font-size:21.120000pt;}
.fs7{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:69.120000pt;}
.fs8{font-size:120.320000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:49.632000pt;}
.y37{bottom:100.032000pt;}
.y6f{bottom:102.432000pt;}
.y87{bottom:104.832000pt;}
.y58{bottom:108.672000pt;}
.y98{bottom:111.232000pt;}
.y36{bottom:115.392000pt;}
.y6e{bottom:117.632000pt;}
.y86{bottom:120.192000pt;}
.y57{bottom:121.632000pt;}
.y97{bottom:126.592000pt;}
.y35{bottom:130.752000pt;}
.y56{bottom:133.626667pt;}
.y85{bottom:135.546667pt;}
.yb8{bottom:137.946667pt;}
.y96{bottom:141.786667pt;}
.y34{bottom:145.946667pt;}
.y6d{bottom:148.346667pt;}
.y84{bottom:150.906667pt;}
.yb7{bottom:151.706667pt;}
.y95{bottom:157.146667pt;}
.y33{bottom:161.306667pt;}
.y6c{bottom:163.066667pt;}
.yb6{bottom:165.466667pt;}
.y83{bottom:166.106667pt;}
.y94{bottom:172.506667pt;}
.y6b{bottom:172.666667pt;}
.y32{bottom:176.666667pt;}
.yb5{bottom:179.386667pt;}
.y82{bottom:181.466667pt;}
.y93{bottom:187.866667pt;}
.y31{bottom:192.026667pt;}
.yb4{bottom:193.146667pt;}
.y81{bottom:196.826667pt;}
.y92{bottom:203.226667pt;}
.yb3{bottom:206.906667pt;}
.y30{bottom:207.386667pt;}
.y80{bottom:212.186667pt;}
.yb2{bottom:220.666667pt;}
.y2f{bottom:222.746667pt;}
.y7f{bottom:227.546667pt;}
.y91{bottom:233.786667pt;}
.yb1{bottom:234.586667pt;}
.y2e{bottom:237.946667pt;}
.y7e{bottom:242.746667pt;}
.yb0{bottom:248.346667pt;}
.y2d{bottom:253.306667pt;}
.y7d{bottom:258.146667pt;}
.y90{bottom:261.506667pt;}
.yaf{bottom:262.146667pt;}
.y7c{bottom:273.506667pt;}
.yae{bottom:275.906667pt;}
.y2c{bottom:283.746667pt;}
.y7b{bottom:288.866667pt;}
.yad{bottom:289.826667pt;}
.y2b{bottom:299.106667pt;}
.yac{bottom:303.586667pt;}
.y55{bottom:309.666667pt;}
.y2a{bottom:314.466667pt;}
.yab{bottom:317.346667pt;}
.y7a{bottom:319.586667pt;}
.y54{bottom:325.026667pt;}
.y29{bottom:329.986667pt;}
.y79{bottom:334.146667pt;}
.yaa{bottom:336.226667pt;}
.y53{bottom:340.386667pt;}
.y78{bottom:343.746667pt;}
.y28{bottom:345.026667pt;}
.y52{bottom:355.586667pt;}
.y27{bottom:360.386667pt;}
.y51{bottom:370.946667pt;}
.ya9{bottom:374.466667pt;}
.y26{bottom:375.746667pt;}
.y50{bottom:386.306667pt;}
.ya8{bottom:389.826667pt;}
.y25{bottom:391.106667pt;}
.y4f{bottom:401.666667pt;}
.y6a{bottom:403.746667pt;}
.ya7{bottom:405.186667pt;}
.y24{bottom:406.306667pt;}
.y4e{bottom:417.026667pt;}
.ya6{bottom:420.546667pt;}
.y23{bottom:421.666667pt;}
.y4d{bottom:432.226667pt;}
.y69{bottom:434.466667pt;}
.ya5{bottom:435.906667pt;}
.y22{bottom:437.026667pt;}
.y4c{bottom:447.586667pt;}
.y68{bottom:449.826667pt;}
.y21{bottom:452.386667pt;}
.y4b{bottom:462.306667pt;}
.y67{bottom:465.186667pt;}
.ya4{bottom:466.146667pt;}
.y20{bottom:467.746667pt;}
.y4a{bottom:475.266667pt;}
.y8f{bottom:480.386667pt;}
.y66{bottom:480.546667pt;}
.ya3{bottom:481.826667pt;}
.y1f{bottom:483.106667pt;}
.y49{bottom:487.266667pt;}
.y65{bottom:495.746667pt;}
.ya2{bottom:497.186667pt;}
.y1e{bottom:498.306667pt;}
.y64{bottom:511.133333pt;}
.ya1{bottom:512.573333pt;}
.y1d{bottom:513.693333pt;}
.y63{bottom:526.493333pt;}
.ya0{bottom:527.773333pt;}
.y1c{bottom:529.053333pt;}
.y77{bottom:540.893333pt;}
.y62{bottom:541.853333pt;}
.y9f{bottom:543.133333pt;}
.y1b{bottom:544.413333pt;}
.y76{bottom:556.253333pt;}
.y61{bottom:557.213333pt;}
.y9e{bottom:558.493333pt;}
.y1a{bottom:559.773333pt;}
.y75{bottom:571.613333pt;}
.y8e{bottom:572.413333pt;}
.y60{bottom:572.573333pt;}
.y9d{bottom:573.853333pt;}
.y19{bottom:575.133333pt;}
.y74{bottom:586.973333pt;}
.y5f{bottom:587.773333pt;}
.y9c{bottom:589.213333pt;}
.y18{bottom:590.333333pt;}
.y73{bottom:602.333333pt;}
.y5e{bottom:603.133333pt;}
.y9b{bottom:604.573333pt;}
.y17{bottom:605.693333pt;}
.y5d{bottom:618.493333pt;}
.y9a{bottom:619.773333pt;}
.y16{bottom:621.053333pt;}
.y72{bottom:632.893333pt;}
.y5c{bottom:633.213333pt;}
.y8d{bottom:633.853333pt;}
.y15{bottom:636.733333pt;}
.y5b{bottom:645.373333pt;}
.y71{bottom:647.613333pt;}
.y8c{bottom:649.213333pt;}
.y99{bottom:650.493333pt;}
.y14{bottom:651.773333pt;}
.y70{bottom:657.213333pt;}
.y5a{bottom:657.693333pt;}
.y8b{bottom:664.413333pt;}
.y48{bottom:665.853333pt;}
.y13{bottom:667.293333pt;}
.y47{bottom:681.213333pt;}
.y12{bottom:688.733333pt;}
.y8a{bottom:695.133333pt;}
.y46{bottom:696.573333pt;}
.y11{bottom:704.093333pt;}
.y89{bottom:709.853333pt;}
.y45{bottom:711.773333pt;}
.y10{bottom:712.893333pt;}
.y88{bottom:719.453333pt;}
.y44{bottom:727.133333pt;}
.yf{bottom:733.213333pt;}
.yc7{bottom:735.773333pt;}
.y43{bottom:742.493333pt;}
.ye{bottom:742.973333pt;}
.yc6{bottom:748.253333pt;}
.y42{bottom:757.893333pt;}
.yc5{bottom:762.053333pt;}
.yd{bottom:762.853333pt;}
.y41{bottom:773.253333pt;}
.yc4{bottom:775.813333pt;}
.yc{bottom:782.053333pt;}
.y40{bottom:788.613333pt;}
.yc3{bottom:789.733333pt;}
.yb{bottom:797.413333pt;}
.yc2{bottom:803.493333pt;}
.y3f{bottom:803.813333pt;}
.yc1{bottom:817.253333pt;}
.ya{bottom:817.733333pt;}
.y3e{bottom:819.173333pt;}
.yc0{bottom:831.013333pt;}
.y3d{bottom:834.533333pt;}
.ybf{bottom:844.773333pt;}
.y59{bottom:849.893333pt;}
.ybe{bottom:858.693333pt;}
.y9{bottom:860.773333pt;}
.y3c{bottom:865.253333pt;}
.ybd{bottom:872.453333pt;}
.y3b{bottom:880.453333pt;}
.ybc{bottom:886.213333pt;}
.y3a{bottom:895.813333pt;}
.ybb{bottom:899.973333pt;}
.y8{bottom:903.653333pt;}
.y39{bottom:911.173333pt;}
.yba{bottom:913.893333pt;}
.y38{bottom:926.533333pt;}
.yb9{bottom:927.653333pt;}
.y6{bottom:947.653333pt;}
.y5{bottom:957.573333pt;}
.y4{bottom:971.333333pt;}
.y3{bottom:998.880000pt;}
.y2{bottom:1011.360000pt;}
.y1{bottom:1024.000000pt;}
.h6{height:21.285000pt;}
.hb{height:33.918750pt;}
.h3{height:42.084375pt;}
.h4{height:43.215000pt;}
.h2{height:47.109375pt;}
.h5{height:48.375000pt;}
.hf{height:49.968750pt;}
.hd{height:52.108438pt;}
.hc{height:52.134375pt;}
.he{height:52.990313pt;}
.h8{height:53.535000pt;}
.h9{height:77.795000pt;}
.ha{height:77.955000pt;}
.h7{height:150.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:76.800000pt;}
.x6{left:96.032000pt;}
.xb{left:103.232000pt;}
.xc{left:106.432000pt;}
.x7{left:108.512000pt;}
.x10{left:110.432000pt;}
.x1b{left:115.232000pt;}
.x13{left:116.832000pt;}
.xd{left:125.312000pt;}
.x15{left:127.072000pt;}
.x8{left:131.392000pt;}
.x9{left:136.986667pt;}
.xe{left:138.426667pt;}
.x2{left:143.066667pt;}
.x21{left:144.026667pt;}
.x3{left:216.026667pt;}
.x1f{left:256.986667pt;}
.xf{left:278.306667pt;}
.x1a{left:286.306667pt;}
.x1e{left:298.306667pt;}
.x1{left:371.586667pt;}
.x17{left:382.306667pt;}
.xa{left:396.866667pt;}
.x12{left:404.066667pt;}
.x11{left:475.133333pt;}
.x20{left:481.373333pt;}
.x1c{left:489.533333pt;}
.x16{left:492.253333pt;}
.x1d{left:498.973333pt;}
.x5{left:501.053333pt;}
.x14{left:508.253333pt;}
.x19{left:514.973333pt;}
.x4{left:590.173333pt;}
}




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