
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b30723051615298cb6aab210.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_de476ce1137a52ec3540e63e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_40780400a4e8823730da9dd8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f5bf37285338830cf25ba7ee.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_ce8bbe640113bb491acc2d4c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_675ea008f3f173501707d67b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.431400px;}
.ls8{letter-spacing:-0.414000px;}
.ls6{letter-spacing:-0.303000px;}
.lsc{letter-spacing:-0.291000px;}
.lse{letter-spacing:-0.240600px;}
.ls14{letter-spacing:-0.205800px;}
.ls1a{letter-spacing:-0.175800px;}
.ls13{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.066000px;}
.lsa{letter-spacing:0.140400px;}
.ls5{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.174000px;}
.ls1c{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.306000px;}
.ls18{letter-spacing:0.604080px;}
.lsd{letter-spacing:0.654000px;}
.ls10{letter-spacing:0.692640px;}
.ls17{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1b{letter-spacing:12.186720px;}
.ls16{letter-spacing:42.570720px;}
.ls11{letter-spacing:43.866720px;}
.lsf{letter-spacing:45.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-21.641760px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws5{word-spacing:-13.646160px;}
.ws4{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.299960px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-1447.868880px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1005.647520px;}
._5{margin-left:-578.729760px;}
._13{margin-left:-7.961280px;}
._f{margin-left:-5.786160px;}
._10{margin-left:-4.485120px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._a{width:2.422320px;}
._9{width:3.996480px;}
._b{width:5.318640px;}
._8{width:6.693120px;}
._7{width:7.828560px;}
._d{width:9.417360px;}
._c{width:11.055600px;}
._11{width:12.413280px;}
._15{width:16.254720px;}
._14{width:17.405280px;}
._e{width:18.704880px;}
._12{width:19.831680px;}
._16{width:21.424080px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:2.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:7.020000px;}
.ya3{bottom:28.080000px;}
.ya0{bottom:35.460000px;}
.ya2{bottom:49.500000px;}
.y6{bottom:60.516000px;}
.ya1{bottom:70.554000px;}
.y55{bottom:88.956000px;}
.y9e{bottom:89.136000px;}
.y83{bottom:92.196000px;}
.y9f{bottom:93.816000px;}
.y54{bottom:110.016000px;}
.y9d{bottom:110.196000px;}
.y82{bottom:113.256000px;}
.y30{bottom:125.316000px;}
.y53{bottom:131.076000px;}
.y9c{bottom:131.256000px;}
.y81{bottom:134.316000px;}
.y2f{bottom:146.376000px;}
.y52{bottom:152.130000px;}
.y9b{bottom:152.310000px;}
.y80{bottom:155.370000px;}
.y2e{bottom:167.430000px;}
.y51{bottom:173.190000px;}
.y9a{bottom:173.370000px;}
.y7f{bottom:176.430000px;}
.y2d{bottom:188.490000px;}
.y50{bottom:194.250000px;}
.y99{bottom:194.430000px;}
.y7e{bottom:197.490000px;}
.y2c{bottom:209.550000px;}
.y4f{bottom:215.310000px;}
.y98{bottom:215.490000px;}
.y7d{bottom:218.550000px;}
.y2b{bottom:230.610000px;}
.y4e{bottom:236.190000px;}
.y97{bottom:236.550000px;}
.y7c{bottom:239.610000px;}
.y2a{bottom:251.670000px;}
.y4d{bottom:253.470000px;}
.y96{bottom:257.610000px;}
.y7b{bottom:260.670000px;}
.y29{bottom:272.730000px;}
.y95{bottom:278.670000px;}
.y7a{bottom:281.775000px;}
.y28{bottom:293.835000px;}
.y94{bottom:299.775000px;}
.y79{bottom:311.835000px;}
.y27{bottom:314.895000px;}
.y93{bottom:320.835000px;}
.y78{bottom:332.895000px;}
.y26{bottom:335.955000px;}
.y92{bottom:341.895000px;}
.y77{bottom:353.955000px;}
.y25{bottom:357.015000px;}
.y91{bottom:362.955000px;}
.y76{bottom:375.015000px;}
.y24{bottom:378.075000px;}
.y90{bottom:384.015000px;}
.y75{bottom:396.075000px;}
.y23{bottom:398.955000px;}
.y8f{bottom:405.075000px;}
.y74{bottom:417.135000px;}
.y22{bottom:420.015000px;}
.y8e{bottom:426.135000px;}
.y73{bottom:438.195000px;}
.y21{bottom:441.075000px;}
.y8d{bottom:447.195000px;}
.y72{bottom:459.255000px;}
.y20{bottom:462.135000px;}
.y8c{bottom:468.255000px;}
.y71{bottom:480.315000px;}
.y1f{bottom:485.715000px;}
.y8b{bottom:489.315000px;}
.y70{bottom:501.375000px;}
.y8a{bottom:510.375000px;}
.y1e{bottom:515.595000px;}
.y6f{bottom:522.435000px;}
.y89{bottom:531.435000px;}
.y1d{bottom:536.655000px;}
.y6e{bottom:543.495000px;}
.y88{bottom:552.495000px;}
.y1c{bottom:557.715000px;}
.y6d{bottom:564.585000px;}
.y87{bottom:573.585000px;}
.y1b{bottom:578.805000px;}
.y6c{bottom:585.645000px;}
.y4c{bottom:588.705000px;}
.y86{bottom:594.645000px;}
.y1a{bottom:599.865000px;}
.y6b{bottom:606.705000px;}
.y4b{bottom:609.765000px;}
.y85{bottom:615.705000px;}
.y19{bottom:620.925000px;}
.y6a{bottom:627.765000px;}
.y4a{bottom:630.825000px;}
.y84{bottom:636.765000px;}
.y18{bottom:641.985000px;}
.y49{bottom:651.885000px;}
.y69{bottom:657.825000px;}
.y17{bottom:663.045000px;}
.y48{bottom:672.945000px;}
.y68{bottom:678.885000px;}
.y16{bottom:684.105000px;}
.y47{bottom:694.005000px;}
.y67{bottom:699.945000px;}
.y15{bottom:705.165000px;}
.y46{bottom:715.065000px;}
.y66{bottom:721.005000px;}
.y14{bottom:726.225000px;}
.y45{bottom:736.125000px;}
.y65{bottom:742.065000px;}
.y13{bottom:747.285000px;}
.y64{bottom:763.125000px;}
.y44{bottom:766.185000px;}
.y12{bottom:768.345000px;}
.y63{bottom:784.185000px;}
.y43{bottom:787.245000px;}
.y11{bottom:789.405000px;}
.y62{bottom:805.245000px;}
.y42{bottom:808.305000px;}
.y10{bottom:810.465000px;}
.y61{bottom:826.305000px;}
.y41{bottom:829.365000px;}
.yf{bottom:831.525000px;}
.y60{bottom:847.410000px;}
.y40{bottom:850.470000px;}
.ye{bottom:852.630000px;}
.y5f{bottom:868.470000px;}
.y3f{bottom:871.530000px;}
.yd{bottom:875.850000px;}
.y5e{bottom:889.530000px;}
.yc{bottom:896.910000px;}
.y3e{bottom:901.590000px;}
.y5d{bottom:910.590000px;}
.yb{bottom:917.970000px;}
.y3d{bottom:922.470000px;}
.y5c{bottom:931.470000px;}
.ya{bottom:939.930000px;}
.y3c{bottom:943.530000px;}
.y5b{bottom:952.530000px;}
.y9{bottom:962.250000px;}
.y3b{bottom:964.590000px;}
.y5a{bottom:973.590000px;}
.y3a{bottom:985.650000px;}
.y8{bottom:987.450000px;}
.y59{bottom:994.650000px;}
.y39{bottom:1006.710000px;}
.y58{bottom:1015.710000px;}
.y7{bottom:1021.110000px;}
.y38{bottom:1027.770000px;}
.y57{bottom:1036.770000px;}
.y37{bottom:1048.830000px;}
.y56{bottom:1057.830000px;}
.y5{bottom:1061.250000px;}
.y36{bottom:1078.890000px;}
.y4{bottom:1093.470000px;}
.y35{bottom:1099.950000px;}
.y34{bottom:1121.010000px;}
.y3{bottom:1125.510000px;}
.y33{bottom:1142.100000px;}
.y2{bottom:1157.760000px;}
.y32{bottom:1163.160000px;}
.y1{bottom:1192.320000px;}
.y31{bottom:1194.120000px;}
.hb{height:2.864531px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.h8{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.ha{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:199.470000px;}
.w4{width:585.285000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:5.040000px;}
.xe{left:7.740000px;}
.x1{left:53.999987px;}
.xa{left:75.239987px;}
.x7{left:80.999987px;}
.x3{left:96.515987px;}
.xb{left:102.275987px;}
.x8{left:108.035987px;}
.x9{left:162.029987px;}
.xc{left:191.370000px;}
.xd{left:253.470000px;}
.x5{left:262.289987px;}
.x6{left:353.234987px;}
.x2{left:446.474987px;}
.x4{left:712.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.383467pt;}
.ls8{letter-spacing:-0.368000pt;}
.ls6{letter-spacing:-0.269333pt;}
.lsc{letter-spacing:-0.258667pt;}
.lse{letter-spacing:-0.213867pt;}
.ls14{letter-spacing:-0.182933pt;}
.ls1a{letter-spacing:-0.156267pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.058667pt;}
.lsa{letter-spacing:0.124800pt;}
.ls5{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.154667pt;}
.ls1c{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.272000pt;}
.ls18{letter-spacing:0.536960pt;}
.lsd{letter-spacing:0.581333pt;}
.ls10{letter-spacing:0.615680pt;}
.ls17{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1b{letter-spacing:10.832640pt;}
.ls16{letter-spacing:37.840640pt;}
.ls11{letter-spacing:38.992640pt;}
.lsf{letter-spacing:40.272640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.237120pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws5{word-spacing:-12.129920pt;}
.ws4{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.822187pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-1286.994560pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-893.908907pt;}
._5{margin-left:-514.426453pt;}
._13{margin-left:-7.076693pt;}
._f{margin-left:-5.143253pt;}
._10{margin-left:-3.986773pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._a{width:2.153173pt;}
._9{width:3.552427pt;}
._b{width:4.727680pt;}
._8{width:5.949440pt;}
._7{width:6.958720pt;}
._d{width:8.370987pt;}
._c{width:9.827200pt;}
._11{width:11.034027pt;}
._15{width:14.448640pt;}
._14{width:15.471360pt;}
._e{width:16.626560pt;}
._12{width:17.628160pt;}
._16{width:19.043627pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:6.240000pt;}
.ya3{bottom:24.960000pt;}
.ya0{bottom:31.520000pt;}
.ya2{bottom:44.000000pt;}
.y6{bottom:53.792000pt;}
.ya1{bottom:62.714667pt;}
.y55{bottom:79.072000pt;}
.y9e{bottom:79.232000pt;}
.y83{bottom:81.952000pt;}
.y9f{bottom:83.392000pt;}
.y54{bottom:97.792000pt;}
.y9d{bottom:97.952000pt;}
.y82{bottom:100.672000pt;}
.y30{bottom:111.392000pt;}
.y53{bottom:116.512000pt;}
.y9c{bottom:116.672000pt;}
.y81{bottom:119.392000pt;}
.y2f{bottom:130.112000pt;}
.y52{bottom:135.226667pt;}
.y9b{bottom:135.386667pt;}
.y80{bottom:138.106667pt;}
.y2e{bottom:148.826667pt;}
.y51{bottom:153.946667pt;}
.y9a{bottom:154.106667pt;}
.y7f{bottom:156.826667pt;}
.y2d{bottom:167.546667pt;}
.y50{bottom:172.666667pt;}
.y99{bottom:172.826667pt;}
.y7e{bottom:175.546667pt;}
.y2c{bottom:186.266667pt;}
.y4f{bottom:191.386667pt;}
.y98{bottom:191.546667pt;}
.y7d{bottom:194.266667pt;}
.y2b{bottom:204.986667pt;}
.y4e{bottom:209.946667pt;}
.y97{bottom:210.266667pt;}
.y7c{bottom:212.986667pt;}
.y2a{bottom:223.706667pt;}
.y4d{bottom:225.306667pt;}
.y96{bottom:228.986667pt;}
.y7b{bottom:231.706667pt;}
.y29{bottom:242.426667pt;}
.y95{bottom:247.706667pt;}
.y7a{bottom:250.466667pt;}
.y28{bottom:261.186667pt;}
.y94{bottom:266.466667pt;}
.y79{bottom:277.186667pt;}
.y27{bottom:279.906667pt;}
.y93{bottom:285.186667pt;}
.y78{bottom:295.906667pt;}
.y26{bottom:298.626667pt;}
.y92{bottom:303.906667pt;}
.y77{bottom:314.626667pt;}
.y25{bottom:317.346667pt;}
.y91{bottom:322.626667pt;}
.y76{bottom:333.346667pt;}
.y24{bottom:336.066667pt;}
.y90{bottom:341.346667pt;}
.y75{bottom:352.066667pt;}
.y23{bottom:354.626667pt;}
.y8f{bottom:360.066667pt;}
.y74{bottom:370.786667pt;}
.y22{bottom:373.346667pt;}
.y8e{bottom:378.786667pt;}
.y73{bottom:389.506667pt;}
.y21{bottom:392.066667pt;}
.y8d{bottom:397.506667pt;}
.y72{bottom:408.226667pt;}
.y20{bottom:410.786667pt;}
.y8c{bottom:416.226667pt;}
.y71{bottom:426.946667pt;}
.y1f{bottom:431.746667pt;}
.y8b{bottom:434.946667pt;}
.y70{bottom:445.666667pt;}
.y8a{bottom:453.666667pt;}
.y1e{bottom:458.306667pt;}
.y6f{bottom:464.386667pt;}
.y89{bottom:472.386667pt;}
.y1d{bottom:477.026667pt;}
.y6e{bottom:483.106667pt;}
.y88{bottom:491.106667pt;}
.y1c{bottom:495.746667pt;}
.y6d{bottom:501.853333pt;}
.y87{bottom:509.853333pt;}
.y1b{bottom:514.493333pt;}
.y6c{bottom:520.573333pt;}
.y4c{bottom:523.293333pt;}
.y86{bottom:528.573333pt;}
.y1a{bottom:533.213333pt;}
.y6b{bottom:539.293333pt;}
.y4b{bottom:542.013333pt;}
.y85{bottom:547.293333pt;}
.y19{bottom:551.933333pt;}
.y6a{bottom:558.013333pt;}
.y4a{bottom:560.733333pt;}
.y84{bottom:566.013333pt;}
.y18{bottom:570.653333pt;}
.y49{bottom:579.453333pt;}
.y69{bottom:584.733333pt;}
.y17{bottom:589.373333pt;}
.y48{bottom:598.173333pt;}
.y68{bottom:603.453333pt;}
.y16{bottom:608.093333pt;}
.y47{bottom:616.893333pt;}
.y67{bottom:622.173333pt;}
.y15{bottom:626.813333pt;}
.y46{bottom:635.613333pt;}
.y66{bottom:640.893333pt;}
.y14{bottom:645.533333pt;}
.y45{bottom:654.333333pt;}
.y65{bottom:659.613333pt;}
.y13{bottom:664.253333pt;}
.y64{bottom:678.333333pt;}
.y44{bottom:681.053333pt;}
.y12{bottom:682.973333pt;}
.y63{bottom:697.053333pt;}
.y43{bottom:699.773333pt;}
.y11{bottom:701.693333pt;}
.y62{bottom:715.773333pt;}
.y42{bottom:718.493333pt;}
.y10{bottom:720.413333pt;}
.y61{bottom:734.493333pt;}
.y41{bottom:737.213333pt;}
.yf{bottom:739.133333pt;}
.y60{bottom:753.253333pt;}
.y40{bottom:755.973333pt;}
.ye{bottom:757.893333pt;}
.y5f{bottom:771.973333pt;}
.y3f{bottom:774.693333pt;}
.yd{bottom:778.533333pt;}
.y5e{bottom:790.693333pt;}
.yc{bottom:797.253333pt;}
.y3e{bottom:801.413333pt;}
.y5d{bottom:809.413333pt;}
.yb{bottom:815.973333pt;}
.y3d{bottom:819.973333pt;}
.y5c{bottom:827.973333pt;}
.ya{bottom:835.493333pt;}
.y3c{bottom:838.693333pt;}
.y5b{bottom:846.693333pt;}
.y9{bottom:855.333333pt;}
.y3b{bottom:857.413333pt;}
.y5a{bottom:865.413333pt;}
.y3a{bottom:876.133333pt;}
.y8{bottom:877.733333pt;}
.y59{bottom:884.133333pt;}
.y39{bottom:894.853333pt;}
.y58{bottom:902.853333pt;}
.y7{bottom:907.653333pt;}
.y38{bottom:913.573333pt;}
.y57{bottom:921.573333pt;}
.y37{bottom:932.293333pt;}
.y56{bottom:940.293333pt;}
.y5{bottom:943.333333pt;}
.y36{bottom:959.013333pt;}
.y4{bottom:971.973333pt;}
.y35{bottom:977.733333pt;}
.y34{bottom:996.453333pt;}
.y3{bottom:1000.453333pt;}
.y33{bottom:1015.200000pt;}
.y2{bottom:1029.120000pt;}
.y32{bottom:1033.920000pt;}
.y1{bottom:1059.840000pt;}
.y31{bottom:1061.440000pt;}
.hb{height:2.546250pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.h8{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.ha{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:177.306667pt;}
.w4{width:520.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:4.480000pt;}
.xe{left:6.880000pt;}
.x1{left:47.999988pt;}
.xa{left:66.879988pt;}
.x7{left:71.999988pt;}
.x3{left:85.791988pt;}
.xb{left:90.911988pt;}
.x8{left:96.031988pt;}
.x9{left:144.026655pt;}
.xc{left:170.106667pt;}
.xd{left:225.306667pt;}
.x5{left:233.146655pt;}
.x6{left:313.986655pt;}
.x2{left:396.866655pt;}
.x4{left:633.253322pt;}
}




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