
    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_446073563366fa02271d2e77.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_311ed1e002f6b6b47678358b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_5ab49accec66da742a37f39f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.851074;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_8c4f52f2281667af688d2030.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_0e6acbb033cee522873511b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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_c4ba228989ada5bfbd927ac2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853027;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_01d882a28f897ebb5caddd46.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_fe0aea664795e5db316e1e69.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_68748510d4d2b8a7f9d3aed3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.424800px;}
.lsf{letter-spacing:-0.309600px;}
.lsb{letter-spacing:-0.234000px;}
.ls1a{letter-spacing:-0.130200px;}
.lsd{letter-spacing:-0.096000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.036000px;}
.ls18{letter-spacing:-0.027960px;}
.lsa{letter-spacing:-0.024480px;}
.ls7{letter-spacing:-0.021600px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.064800px;}
.ls1d{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.262200px;}
.ls19{letter-spacing:0.624000px;}
.ls10{letter-spacing:11.191104px;}
.ls13{letter-spacing:11.215104px;}
.ls11{letter-spacing:11.305440px;}
.ls12{letter-spacing:11.329440px;}
.ls3{letter-spacing:49.233600px;}
.ls8{letter-spacing:49.284000px;}
.ls2{letter-spacing:53.265600px;}
.ls1{letter-spacing:53.316000px;}
.ls9{letter-spacing:60.126240px;}
.ls1f{letter-spacing:82.684224px;}
.ls1e{letter-spacing:91.945440px;}
.ls17{letter-spacing:107.316000px;}
.ls5{letter-spacing:161.265600px;}
.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;}
}
.wsf{word-spacing:-38.570304px;}
.ws8{word-spacing:-38.208504px;}
.wse{word-spacing:-37.918344px;}
.ws6{word-spacing:-37.889280px;}
.ws9{word-spacing:-37.850304px;}
.ws10{word-spacing:-37.816104px;}
.ws7{word-spacing:-37.679760px;}
.wsb{word-spacing:-37.636704px;}
.wsa{word-spacing:-37.488960px;}
.ws2{word-spacing:-35.375040px;}
.ws1{word-spacing:-35.364240px;}
.ws5{word-spacing:-35.342784px;}
.ws3{word-spacing:-35.321184px;}
.ws4{word-spacing:-35.310240px;}
.wsc{word-spacing:-24.408000px;}
.wsd{word-spacing:-24.372000px;}
.ws0{word-spacing:0.000000px;}
._14{margin-left:-20.023488px;}
._12{margin-left:-14.634144px;}
._10{margin-left:-13.436640px;}
._13{margin-left:-9.972000px;}
._2{margin-left:-8.103600px;}
._1{margin-left:-6.482880px;}
._3{margin-left:-5.186304px;}
._4{margin-left:-3.247680px;}
._0{margin-left:-1.944864px;}
._5{width:1.090176px;}
._6{width:2.421168px;}
._b{width:6.969072px;}
._a{width:8.002848px;}
._8{width:12.297984px;}
._9{width:13.501200px;}
._e{width:19.443744px;}
._f{width:20.879904px;}
._11{width:29.665488px;}
._d{width:59.269200px;}
._c{width:60.884208px;}
._7{width:124.353984px;}
.fc5{color:rgb(175,171,171);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(46,117,182);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(165,165,165);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.fs5{font-size:156.384000px;}
.fs7{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fsb{font-size:192.240000px;}
.fsa{font-size:192.384000px;}
.fs3{font-size:239.760000px;}
.fs9{font-size:239.904000px;}
.fsd{font-size:264.384000px;}
.fsc{font-size:322.549096px;}
.fs1{font-size:324.000000px;}
.fs0{font-size:324.144000px;}
.fsf{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y51{bottom:26.640000px;}
.y45{bottom:36.936000px;}
.y12{bottom:42.732000px;}
.y53{bottom:43.560000px;}
.y2e{bottom:66.564000px;}
.y3d{bottom:68.076000px;}
.y44{bottom:69.336000px;}
.y52{bottom:75.960000px;}
.y11{bottom:94.608000px;}
.y50{bottom:107.028000px;}
.y3c{bottom:122.076000px;}
.y2d{bottom:129.600000px;}
.y43{bottom:141.732000px;}
.y10{bottom:147.168000px;}
.y4f{bottom:167.550000px;}
.y25{bottom:178.530000px;}
.y58{bottom:179.205000px;}
.y40{bottom:181.260000px;}
.yf{bottom:189.285000px;}
.y3b{bottom:192.270000px;}
.y23{bottom:193.500000px;}
.y2c{bottom:200.160000px;}
.y42{bottom:211.935000px;}
.y5{bottom:223.665000px;}
.y24{bottom:225.330000px;}
.y5a{bottom:232.770000px;}
.y4e{bottom:234.330000px;}
.y22{bottom:240.300000px;}
.ye{bottom:245.490000px;}
.y3f{bottom:251.460000px;}
.y57{bottom:254.805000px;}
.y3a{bottom:262.515000px;}
.y1a{bottom:267.270000px;}
.y2b{bottom:270.750000px;}
.y59{bottom:279.570000px;}
.y41{bottom:282.165000px;}
.y21{bottom:283.110000px;}
.yd{bottom:287.610000px;}
.y35{bottom:300.675000px;}
.y4{bottom:306.900000px;}
.y20{bottom:318.600000px;}
.y4d{bottom:320.040000px;}
.y3e{bottom:321.690000px;}
.y19{bottom:324.330000px;}
.y56{bottom:329.010000px;}
.y49{bottom:332.250000px;}
.y39{bottom:332.715000px;}
.yc{bottom:343.770000px;}
.y2a{bottom:356.430000px;}
.y1f{bottom:365.400000px;}
.y34{bottom:367.455000px;}
.y18{bottom:384.840000px;}
.yb{bottom:385.920000px;}
.y4c{bottom:395.640000px;}
.y55{bottom:399.210000px;}
.y48{bottom:402.450000px;}
.y38{bottom:402.945000px;}
.y3{bottom:404.130000px;}
.y1e{bottom:412.200000px;}
.y30{bottom:421.380000px;}
.ya{bottom:428.040000px;}
.y29{bottom:442.155000px;}
.y17{bottom:445.320000px;}
.y1d{bottom:459.030000px;}
.y33{bottom:462.525000px;}
.y5b{bottom:466.380000px;}
.y54{bottom:469.440000px;}
.y47{bottom:472.680000px;}
.y9{bottom:484.200000px;}
.y4b{bottom:486.390000px;}
.y2{bottom:501.330000px;}
.y16{bottom:505.800000px;}
.y1c{bottom:505.830000px;}
.y2f{bottom:507.780000px;}
.y28{bottom:512.715000px;}
.y8{bottom:526.320000px;}
.y1b{bottom:552.630000px;}
.y37{bottom:555.300000px;}
.y4a{bottom:561.990000px;}
.y32{bottom:565.485000px;}
.y7{bottom:582.510000px;}
.y27{bottom:583.305000px;}
.y1{bottom:598.575000px;}
.y31{bottom:607.650000px;}
.y36{bottom:620.130000px;}
.y15{bottom:665.490000px;}
.y46{bottom:672.405000px;}
.y6{bottom:720.570000px;}
.y26{bottom:728.490000px;}
.y14{bottom:737.535000px;}
.y13{bottom:748.470000px;}
.hf{height:94.447266px;}
.h9{height:94.573195px;}
.h3{height:125.929688px;}
.h10{height:126.721055px;}
.h11{height:135.947109px;}
.h5{height:136.633711px;}
.h6{height:136.759641px;}
.h8{height:146.708086px;}
.h7{height:146.834016px;}
.hc{height:168.116133px;}
.hb{height:168.242063px;}
.h4{height:208.619297px;}
.ha{height:208.744594px;}
.he{height:231.206906px;}
.hd{height:271.835810px;}
.h2{height:281.917969px;}
.h1{height:282.043266px;}
.h12{height:313.367484px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x21{left:37.404000px;}
.x1f{left:41.616000px;}
.x20{left:63.324000px;}
.x24{left:80.172000px;}
.x22{left:91.404000px;}
.x14{left:138.024000px;}
.x2{left:142.668000px;}
.x5{left:149.796000px;}
.x13{left:159.810000px;}
.x15{left:165.030000px;}
.xf{left:178.230000px;}
.xb{left:183.780000px;}
.x12{left:185.370000px;}
.x1a{left:190.590000px;}
.x25{left:197.490000px;}
.x1{left:201.525000px;}
.x10{left:205.230000px;}
.x23{left:218.595000px;}
.xe{left:237.780000px;}
.x1d{left:239.685000px;}
.x3{left:256.425000px;}
.x1c{left:267.405000px;}
.x1b{left:289.875000px;}
.x6{left:334.830000px;}
.x11{left:519.510000px;}
.x19{left:558.435000px;}
.x4{left:588.060000px;}
.xd{left:643.575000px;}
.xc{left:697.575000px;}
.x1e{left:762.480000px;}
.x7{left:817.815000px;}
.x9{left:823.245000px;}
.x8{left:844.815000px;}
.x16{left:921.930000px;}
.x17{left:945.870000px;}
.xa{left:975.210000px;}
.x18{left:1019.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.377600pt;}
.lsf{letter-spacing:-0.275200pt;}
.lsb{letter-spacing:-0.208000pt;}
.ls1a{letter-spacing:-0.115733pt;}
.lsd{letter-spacing:-0.085333pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.032000pt;}
.ls18{letter-spacing:-0.024853pt;}
.lsa{letter-spacing:-0.021760pt;}
.ls7{letter-spacing:-0.019200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.057600pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.233067pt;}
.ls19{letter-spacing:0.554667pt;}
.ls10{letter-spacing:9.947648pt;}
.ls13{letter-spacing:9.968981pt;}
.ls11{letter-spacing:10.049280pt;}
.ls12{letter-spacing:10.070613pt;}
.ls3{letter-spacing:43.763200pt;}
.ls8{letter-spacing:43.808000pt;}
.ls2{letter-spacing:47.347200pt;}
.ls1{letter-spacing:47.392000pt;}
.ls9{letter-spacing:53.445547pt;}
.ls1f{letter-spacing:73.497088pt;}
.ls1e{letter-spacing:81.729280pt;}
.ls17{letter-spacing:95.392000pt;}
.ls5{letter-spacing:143.347200pt;}
.wsf{word-spacing:-34.284715pt;}
.ws8{word-spacing:-33.963115pt;}
.wse{word-spacing:-33.705195pt;}
.ws6{word-spacing:-33.679360pt;}
.ws9{word-spacing:-33.644715pt;}
.ws10{word-spacing:-33.614315pt;}
.ws7{word-spacing:-33.493120pt;}
.wsb{word-spacing:-33.454848pt;}
.wsa{word-spacing:-33.323520pt;}
.ws2{word-spacing:-31.444480pt;}
.ws1{word-spacing:-31.434880pt;}
.ws5{word-spacing:-31.415808pt;}
.ws3{word-spacing:-31.396608pt;}
.ws4{word-spacing:-31.386880pt;}
.wsc{word-spacing:-21.696000pt;}
.wsd{word-spacing:-21.664000pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-17.798656pt;}
._12{margin-left:-13.008128pt;}
._10{margin-left:-11.943680pt;}
._13{margin-left:-8.864000pt;}
._2{margin-left:-7.203200pt;}
._1{margin-left:-5.762560pt;}
._3{margin-left:-4.610048pt;}
._4{margin-left:-2.886827pt;}
._0{margin-left:-1.728768pt;}
._5{width:0.969045pt;}
._6{width:2.152149pt;}
._b{width:6.194731pt;}
._a{width:7.113643pt;}
._8{width:10.931541pt;}
._9{width:12.001067pt;}
._e{width:17.283328pt;}
._f{width:18.559915pt;}
._11{width:26.369323pt;}
._d{width:52.683733pt;}
._c{width:54.119296pt;}
._7{width:110.536875pt;}
.fse{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.fs5{font-size:139.008000pt;}
.fs7{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fsb{font-size:170.880000pt;}
.fsa{font-size:171.008000pt;}
.fs3{font-size:213.120000pt;}
.fs9{font-size:213.248000pt;}
.fsd{font-size:235.008000pt;}
.fsc{font-size:286.710308pt;}
.fs1{font-size:288.000000pt;}
.fs0{font-size:288.128000pt;}
.fsf{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:23.680000pt;}
.y45{bottom:32.832000pt;}
.y12{bottom:37.984000pt;}
.y53{bottom:38.720000pt;}
.y2e{bottom:59.168000pt;}
.y3d{bottom:60.512000pt;}
.y44{bottom:61.632000pt;}
.y52{bottom:67.520000pt;}
.y11{bottom:84.096000pt;}
.y50{bottom:95.136000pt;}
.y3c{bottom:108.512000pt;}
.y2d{bottom:115.200000pt;}
.y43{bottom:125.984000pt;}
.y10{bottom:130.816000pt;}
.y4f{bottom:148.933333pt;}
.y25{bottom:158.693333pt;}
.y58{bottom:159.293333pt;}
.y40{bottom:161.120000pt;}
.yf{bottom:168.253333pt;}
.y3b{bottom:170.906667pt;}
.y23{bottom:172.000000pt;}
.y2c{bottom:177.920000pt;}
.y42{bottom:188.386667pt;}
.y5{bottom:198.813333pt;}
.y24{bottom:200.293333pt;}
.y5a{bottom:206.906667pt;}
.y4e{bottom:208.293333pt;}
.y22{bottom:213.600000pt;}
.ye{bottom:218.213333pt;}
.y3f{bottom:223.520000pt;}
.y57{bottom:226.493333pt;}
.y3a{bottom:233.346667pt;}
.y1a{bottom:237.573333pt;}
.y2b{bottom:240.666667pt;}
.y59{bottom:248.506667pt;}
.y41{bottom:250.813333pt;}
.y21{bottom:251.653333pt;}
.yd{bottom:255.653333pt;}
.y35{bottom:267.266667pt;}
.y4{bottom:272.800000pt;}
.y20{bottom:283.200000pt;}
.y4d{bottom:284.480000pt;}
.y3e{bottom:285.946667pt;}
.y19{bottom:288.293333pt;}
.y56{bottom:292.453333pt;}
.y49{bottom:295.333333pt;}
.y39{bottom:295.746667pt;}
.yc{bottom:305.573333pt;}
.y2a{bottom:316.826667pt;}
.y1f{bottom:324.800000pt;}
.y34{bottom:326.626667pt;}
.y18{bottom:342.080000pt;}
.yb{bottom:343.040000pt;}
.y4c{bottom:351.680000pt;}
.y55{bottom:354.853333pt;}
.y48{bottom:357.733333pt;}
.y38{bottom:358.173333pt;}
.y3{bottom:359.226667pt;}
.y1e{bottom:366.400000pt;}
.y30{bottom:374.560000pt;}
.ya{bottom:380.480000pt;}
.y29{bottom:393.026667pt;}
.y17{bottom:395.840000pt;}
.y1d{bottom:408.026667pt;}
.y33{bottom:411.133333pt;}
.y5b{bottom:414.560000pt;}
.y54{bottom:417.280000pt;}
.y47{bottom:420.160000pt;}
.y9{bottom:430.400000pt;}
.y4b{bottom:432.346667pt;}
.y2{bottom:445.626667pt;}
.y16{bottom:449.600000pt;}
.y1c{bottom:449.626667pt;}
.y2f{bottom:451.360000pt;}
.y28{bottom:455.746667pt;}
.y8{bottom:467.840000pt;}
.y1b{bottom:491.226667pt;}
.y37{bottom:493.600000pt;}
.y4a{bottom:499.546667pt;}
.y32{bottom:502.653333pt;}
.y7{bottom:517.786667pt;}
.y27{bottom:518.493333pt;}
.y1{bottom:532.066667pt;}
.y31{bottom:540.133333pt;}
.y36{bottom:551.226667pt;}
.y15{bottom:591.546667pt;}
.y46{bottom:597.693333pt;}
.y6{bottom:640.506667pt;}
.y26{bottom:647.546667pt;}
.y14{bottom:655.586667pt;}
.y13{bottom:665.306667pt;}
.hf{height:83.953125pt;}
.h9{height:84.065062pt;}
.h3{height:111.937500pt;}
.h10{height:112.640937pt;}
.h11{height:120.841875pt;}
.h5{height:121.452188pt;}
.h6{height:121.564125pt;}
.h8{height:130.407187pt;}
.h7{height:130.519125pt;}
.hc{height:149.436563pt;}
.hb{height:149.548500pt;}
.h4{height:185.439375pt;}
.ha{height:185.550750pt;}
.he{height:205.517250pt;}
.hd{height:241.631831pt;}
.h2{height:250.593750pt;}
.h1{height:250.705125pt;}
.h12{height:278.548875pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x21{left:33.248000pt;}
.x1f{left:36.992000pt;}
.x20{left:56.288000pt;}
.x24{left:71.264000pt;}
.x22{left:81.248000pt;}
.x14{left:122.688000pt;}
.x2{left:126.816000pt;}
.x5{left:133.152000pt;}
.x13{left:142.053333pt;}
.x15{left:146.693333pt;}
.xf{left:158.426667pt;}
.xb{left:163.360000pt;}
.x12{left:164.773333pt;}
.x1a{left:169.413333pt;}
.x25{left:175.546667pt;}
.x1{left:179.133333pt;}
.x10{left:182.426667pt;}
.x23{left:194.306667pt;}
.xe{left:211.360000pt;}
.x1d{left:213.053333pt;}
.x3{left:227.933333pt;}
.x1c{left:237.693333pt;}
.x1b{left:257.666667pt;}
.x6{left:297.626667pt;}
.x11{left:461.786667pt;}
.x19{left:496.386667pt;}
.x4{left:522.720000pt;}
.xd{left:572.066667pt;}
.xc{left:620.066667pt;}
.x1e{left:677.760000pt;}
.x7{left:726.946667pt;}
.x9{left:731.773333pt;}
.x8{left:750.946667pt;}
.x16{left:819.493333pt;}
.x17{left:840.773333pt;}
.xa{left:866.853333pt;}
.x18{left:906.053333pt;}
}




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