
    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_f293021d5f9d399406452c51.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_fffb05980f6ab1f660eccd22.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_4462b8dd9ecc3fb03c1c623d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_30b964eb3ab3394efd00e01b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_061633022a05ac7213166fe3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207031;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_56683331a1bfbd6586075faf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_802ee0136c861f4de20bb965.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_59ae99413cbeeab8bf343e21.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_7ba5f1681e544032765b4da8.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.264960px;}
.lse{letter-spacing:-0.252720px;}
.lsb{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.119520px;}
.lsc{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.077760px;}
.ls16{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.059760px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.007920px;}
.ls2{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.132480px;}
.ls17{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.193752px;}
.lsd{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.336960px;}
.ls1c{letter-spacing:1.440000px;}
.ls1d{letter-spacing:2.887200px;}
.ls18{letter-spacing:3.600000px;}
.ls1b{letter-spacing:4.327200px;}
.ls15{letter-spacing:5.040000px;}
.ls19{letter-spacing:6.480000px;}
.ls14{letter-spacing:24.480000px;}
.ls0{letter-spacing:731.538000px;}
.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;}
}
.ws5{word-spacing:-28.557360px;}
.ws6{word-spacing:-20.318400px;}
.ws35{word-spacing:-18.144000px;}
.ws14{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.712000px;}
.ws1{word-spacing:-13.505760px;}
.ws4{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws28{word-spacing:-3.024000px;}
.ws29{word-spacing:-2.880000px;}
.ws19{word-spacing:-2.592000px;}
.ws33{word-spacing:-2.160000px;}
.ws2e{word-spacing:-1.872000px;}
.ws15{word-spacing:-1.440000px;}
.ws18{word-spacing:-1.152000px;}
.ws16{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.179280px;}
.ws1f{word-spacing:-0.144000px;}
.ws2d{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws22{word-spacing:0.072000px;}
.wsa{word-spacing:0.155520px;}
.ws3{word-spacing:0.162000px;}
.ws9{word-spacing:0.252720px;}
.ws8{word-spacing:0.264960px;}
.wsd{word-spacing:0.288000px;}
.ws1c{word-spacing:0.720000px;}
.wsc{word-spacing:1.008000px;}
.ws1b{word-spacing:1.440000px;}
.ws1d{word-spacing:1.512000px;}
.ws2c{word-spacing:1.728000px;}
.ws24{word-spacing:2.160000px;}
.ws2b{word-spacing:2.448000px;}
.wse{word-spacing:2.880000px;}
.ws10{word-spacing:3.168000px;}
.ws1a{word-spacing:3.600000px;}
.ws2a{word-spacing:3.888000px;}
.ws32{word-spacing:4.176000px;}
.ws30{word-spacing:4.320000px;}
.ws2f{word-spacing:4.608000px;}
.ws20{word-spacing:5.040000px;}
.ws21{word-spacing:5.328000px;}
.ws11{word-spacing:6.048000px;}
.ws12{word-spacing:6.480000px;}
.ws1e{word-spacing:7.200000px;}
.ws25{word-spacing:7.488000px;}
.ws23{word-spacing:7.920000px;}
.ws34{word-spacing:8.640000px;}
.wsf{word-spacing:8.928000px;}
.ws36{word-spacing:10.080000px;}
.ws31{word-spacing:12.096000px;}
.ws27{word-spacing:12.240000px;}
.ws26{word-spacing:12.528000px;}
._2{margin-left:-2.384640px;}
._0{margin-left:-1.063800px;}
._1{width:1.032480px;}
._3{width:2.101680px;}
._4{width:846.000000px;}
.fc5{color:transparent;}
.fc4{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y3e{bottom:168.300000px;}
.y19{bottom:181.080000px;}
.y3d{bottom:192.060000px;}
.y53{bottom:199.440000px;}
.y18{bottom:205.020000px;}
.y69{bottom:211.140000px;}
.y3c{bottom:216.000000px;}
.y52{bottom:223.200000px;}
.y17{bottom:228.780000px;}
.y68{bottom:242.100000px;}
.y51{bottom:246.960000px;}
.y3b{bottom:255.960000px;}
.y16{bottom:261.540000px;}
.y50{bottom:270.720000px;}
.y67{bottom:273.240000px;}
.y15{bottom:285.300000px;}
.y3a{bottom:287.100000px;}
.y4f{bottom:294.660000px;}
.y66{bottom:304.200000px;}
.y14{bottom:309.240000px;}
.y39{bottom:318.060000px;}
.y4e{bottom:334.620000px;}
.y65{bottom:336.960000px;}
.y13{bottom:342.000000px;}
.y38{bottom:349.200000px;}
.y64{bottom:360.900000px;}
.y12{bottom:365.760000px;}
.y37{bottom:389.160000px;}
.y4d{bottom:396.720000px;}
.y11{bottom:397.980000px;}
.y63{bottom:400.860000px;}
.y10{bottom:412.200000px;}
.y36{bottom:420.120000px;}
.y4c{bottom:427.680000px;}
.y62{bottom:431.820000px;}
.y35{bottom:451.260000px;}
.y4b{bottom:458.820000px;}
.y61{bottom:462.960000px;}
.y6d{bottom:475.020000px;}
.y34{bottom:484.020000px;}
.y4a{bottom:489.780000px;}
.y60{bottom:495.720000px;}
.y33{bottom:507.780000px;}
.y5f{bottom:519.480000px;}
.y49{bottom:522.720000px;}
.y6c{bottom:531.720000px;}
.y32{bottom:540.720000px;}
.y48{bottom:546.480000px;}
.y6b{bottom:555.480000px;}
.y5e{bottom:559.620000px;}
.y31{bottom:564.480000px;}
.y47{bottom:570.240000px;}
.y6a{bottom:579.240000px;}
.y30{bottom:588.240000px;}
.y5d{bottom:590.580000px;}
.y46{bottom:603.000000px;}
.y2f{bottom:612.000000px;}
.y5c{bottom:621.720000px;}
.y45{bottom:626.940000px;}
.y2e{bottom:635.940000px;}
.y44{bottom:650.700000px;}
.y5b{bottom:652.680000px;}
.y2d{bottom:659.700000px;}
.y43{bottom:674.460000px;}
.y2c{bottom:683.460000px;}
.y5a{bottom:683.820000px;}
.y42{bottom:698.220000px;}
.y2b{bottom:707.220000px;}
.y59{bottom:714.780000px;}
.y2a{bottom:731.160000px;}
.y58{bottom:745.920000px;}
.y29{bottom:754.920000px;}
.y28{bottom:778.680000px;}
.y27{bottom:802.440000px;}
.y57{bottom:811.440000px;}
.y26{bottom:826.380000px;}
.y56{bottom:835.380000px;}
.y25{bottom:850.140000px;}
.y41{bottom:859.140000px;}
.y24{bottom:882.900000px;}
.y23{bottom:906.660000px;}
.y22{bottom:930.600000px;}
.y55{bottom:939.600000px;}
.y21{bottom:954.360000px;}
.y54{bottom:963.360000px;}
.yf{bottom:975.060000px;}
.y20{bottom:978.120000px;}
.y40{bottom:987.120000px;}
.ye{bottom:997.554600px;}
.y1f{bottom:1010.880000px;}
.yd{bottom:1018.620000px;}
.y1e{bottom:1034.640000px;}
.yc{bottom:1040.760000px;}
.y1d{bottom:1058.580000px;}
.y1c{bottom:1082.340000px;}
.yb{bottom:1083.595860px;}
.y3f{bottom:1091.340000px;}
.y6e{bottom:1106.100000px;}
.y1b{bottom:1115.100000px;}
.ya{bottom:1134.540000px;}
.y1a{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h5{height:32.758500px;}
.h3{height:38.759766px;}
.ha{height:47.520000px;}
.h9{height:47.988281px;}
.hb{height:49.992188px;}
.h4{height:50.027344px;}
.h8{height:59.789180px;}
.h7{height:72.035156px;}
.h2{height:75.600000px;}
.h6{height:84.281133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.620000px;}
.x1{left:152.100000px;}
.xe{left:159.660000px;}
.xd{left:170.100000px;}
.xc{left:180.720000px;}
.x4{left:297.180000px;}
.x6{left:415.440000px;}
.x5{left:466.740000px;}
.x9{left:483.300000px;}
.x7{left:492.835500px;}
.x2{left:532.620000px;}
.x8{left:660.600000px;}
.xa{left:829.071360px;}
.xb{left:845.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.235520pt;}
.lse{letter-spacing:-0.224640pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.106240pt;}
.lsc{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.069120pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.053120pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007040pt;}
.ls2{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.117760pt;}
.ls17{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.172224pt;}
.lsd{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.299520pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:2.566400pt;}
.ls18{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:3.846400pt;}
.ls15{letter-spacing:4.480000pt;}
.ls19{letter-spacing:5.760000pt;}
.ls14{letter-spacing:21.760000pt;}
.ls0{letter-spacing:650.256000pt;}
.ws5{word-spacing:-25.384320pt;}
.ws6{word-spacing:-18.060800pt;}
.ws35{word-spacing:-16.128000pt;}
.ws14{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.136000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws28{word-spacing:-2.688000pt;}
.ws29{word-spacing:-2.560000pt;}
.ws19{word-spacing:-2.304000pt;}
.ws33{word-spacing:-1.920000pt;}
.ws2e{word-spacing:-1.664000pt;}
.ws15{word-spacing:-1.280000pt;}
.ws18{word-spacing:-1.024000pt;}
.ws16{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.159360pt;}
.ws1f{word-spacing:-0.128000pt;}
.ws2d{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws22{word-spacing:0.064000pt;}
.wsa{word-spacing:0.138240pt;}
.ws3{word-spacing:0.144000pt;}
.ws9{word-spacing:0.224640pt;}
.ws8{word-spacing:0.235520pt;}
.wsd{word-spacing:0.256000pt;}
.ws1c{word-spacing:0.640000pt;}
.wsc{word-spacing:0.896000pt;}
.ws1b{word-spacing:1.280000pt;}
.ws1d{word-spacing:1.344000pt;}
.ws2c{word-spacing:1.536000pt;}
.ws24{word-spacing:1.920000pt;}
.ws2b{word-spacing:2.176000pt;}
.wse{word-spacing:2.560000pt;}
.ws10{word-spacing:2.816000pt;}
.ws1a{word-spacing:3.200000pt;}
.ws2a{word-spacing:3.456000pt;}
.ws32{word-spacing:3.712000pt;}
.ws30{word-spacing:3.840000pt;}
.ws2f{word-spacing:4.096000pt;}
.ws20{word-spacing:4.480000pt;}
.ws21{word-spacing:4.736000pt;}
.ws11{word-spacing:5.376000pt;}
.ws12{word-spacing:5.760000pt;}
.ws1e{word-spacing:6.400000pt;}
.ws25{word-spacing:6.656000pt;}
.ws23{word-spacing:7.040000pt;}
.ws34{word-spacing:7.680000pt;}
.wsf{word-spacing:7.936000pt;}
.ws36{word-spacing:8.960000pt;}
.ws31{word-spacing:10.752000pt;}
.ws27{word-spacing:10.880000pt;}
.ws26{word-spacing:11.136000pt;}
._2{margin-left:-2.119680pt;}
._0{margin-left:-0.945600pt;}
._1{width:0.917760pt;}
._3{width:1.868160pt;}
._4{width:752.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y3e{bottom:149.600000pt;}
.y19{bottom:160.960000pt;}
.y3d{bottom:170.720000pt;}
.y53{bottom:177.280000pt;}
.y18{bottom:182.240000pt;}
.y69{bottom:187.680000pt;}
.y3c{bottom:192.000000pt;}
.y52{bottom:198.400000pt;}
.y17{bottom:203.360000pt;}
.y68{bottom:215.200000pt;}
.y51{bottom:219.520000pt;}
.y3b{bottom:227.520000pt;}
.y16{bottom:232.480000pt;}
.y50{bottom:240.640000pt;}
.y67{bottom:242.880000pt;}
.y15{bottom:253.600000pt;}
.y3a{bottom:255.200000pt;}
.y4f{bottom:261.920000pt;}
.y66{bottom:270.400000pt;}
.y14{bottom:274.880000pt;}
.y39{bottom:282.720000pt;}
.y4e{bottom:297.440000pt;}
.y65{bottom:299.520000pt;}
.y13{bottom:304.000000pt;}
.y38{bottom:310.400000pt;}
.y64{bottom:320.800000pt;}
.y12{bottom:325.120000pt;}
.y37{bottom:345.920000pt;}
.y4d{bottom:352.640000pt;}
.y11{bottom:353.760000pt;}
.y63{bottom:356.320000pt;}
.y10{bottom:366.400000pt;}
.y36{bottom:373.440000pt;}
.y4c{bottom:380.160000pt;}
.y62{bottom:383.840000pt;}
.y35{bottom:401.120000pt;}
.y4b{bottom:407.840000pt;}
.y61{bottom:411.520000pt;}
.y6d{bottom:422.240000pt;}
.y34{bottom:430.240000pt;}
.y4a{bottom:435.360000pt;}
.y60{bottom:440.640000pt;}
.y33{bottom:451.360000pt;}
.y5f{bottom:461.760000pt;}
.y49{bottom:464.640000pt;}
.y6c{bottom:472.640000pt;}
.y32{bottom:480.640000pt;}
.y48{bottom:485.760000pt;}
.y6b{bottom:493.760000pt;}
.y5e{bottom:497.440000pt;}
.y31{bottom:501.760000pt;}
.y47{bottom:506.880000pt;}
.y6a{bottom:514.880000pt;}
.y30{bottom:522.880000pt;}
.y5d{bottom:524.960000pt;}
.y46{bottom:536.000000pt;}
.y2f{bottom:544.000000pt;}
.y5c{bottom:552.640000pt;}
.y45{bottom:557.280000pt;}
.y2e{bottom:565.280000pt;}
.y44{bottom:578.400000pt;}
.y5b{bottom:580.160000pt;}
.y2d{bottom:586.400000pt;}
.y43{bottom:599.520000pt;}
.y2c{bottom:607.520000pt;}
.y5a{bottom:607.840000pt;}
.y42{bottom:620.640000pt;}
.y2b{bottom:628.640000pt;}
.y59{bottom:635.360000pt;}
.y2a{bottom:649.920000pt;}
.y58{bottom:663.040000pt;}
.y29{bottom:671.040000pt;}
.y28{bottom:692.160000pt;}
.y27{bottom:713.280000pt;}
.y57{bottom:721.280000pt;}
.y26{bottom:734.560000pt;}
.y56{bottom:742.560000pt;}
.y25{bottom:755.680000pt;}
.y41{bottom:763.680000pt;}
.y24{bottom:784.800000pt;}
.y23{bottom:805.920000pt;}
.y22{bottom:827.200000pt;}
.y55{bottom:835.200000pt;}
.y21{bottom:848.320000pt;}
.y54{bottom:856.320000pt;}
.yf{bottom:866.720000pt;}
.y20{bottom:869.440000pt;}
.y40{bottom:877.440000pt;}
.ye{bottom:886.715200pt;}
.y1f{bottom:898.560000pt;}
.yd{bottom:905.440000pt;}
.y1e{bottom:919.680000pt;}
.yc{bottom:925.120000pt;}
.y1d{bottom:940.960000pt;}
.y1c{bottom:962.080000pt;}
.yb{bottom:963.196320pt;}
.y3f{bottom:970.080000pt;}
.y6e{bottom:983.200000pt;}
.y1b{bottom:991.200000pt;}
.ya{bottom:1008.480000pt;}
.y1a{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h5{height:29.118667pt;}
.h3{height:34.453125pt;}
.ha{height:42.240000pt;}
.h9{height:42.656250pt;}
.hb{height:44.437500pt;}
.h4{height:44.468750pt;}
.h8{height:53.145938pt;}
.h7{height:64.031250pt;}
.h2{height:67.200000pt;}
.h6{height:74.916562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.440000pt;}
.x1{left:135.200000pt;}
.xe{left:141.920000pt;}
.xd{left:151.200000pt;}
.xc{left:160.640000pt;}
.x4{left:264.160000pt;}
.x6{left:369.280000pt;}
.x5{left:414.880000pt;}
.x9{left:429.600000pt;}
.x7{left:438.076000pt;}
.x2{left:473.440000pt;}
.x8{left:587.200000pt;}
.xa{left:736.952320pt;}
.xb{left:751.360000pt;}
}




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