
    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_6ab5cdc52fe927862ac8dfd3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1305959ace8a0b449a04a101.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_641aaaba37781d97c78a95a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.011000;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_0afb6670664adc7d19aa15d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.773000;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_353c7890388222d7be0d4714.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_1ec123e67d914381657572ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.724121;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_9dc30037d2cc286bbaa509b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976000;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_d9ee1c2b1850ccbe11ab3307.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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);}
.v3{vertical-align:-69.198000px;}
.v8{vertical-align:-55.482000px;}
.v4{vertical-align:-53.736000px;}
.v5{vertical-align:-21.768000px;}
.v6{vertical-align:-17.178000px;}
.v2{vertical-align:-15.312000px;}
.v7{vertical-align:-7.308000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:71.940000px;}
.v1{vertical-align:80.670000px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.157260px;}
.ls8{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.190368px;}
.ls6{letter-spacing:0.220800px;}
.ls0{letter-spacing:9.720000px;}
.ls9{letter-spacing:41.268000px;}
.lsa{letter-spacing:42.342000px;}
.ls5{letter-spacing:75.568800px;}
.ls4{letter-spacing:90.827892px;}
.ls7{letter-spacing:169.024038px;}
.ls3{letter-spacing:244.404000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(43,69,132),0 0.015em rgb(43,69,132),0.015em 0 rgb(43,69,132),0 -0.015em  rgb(43,69,132);}
.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(43,69,132);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-45.360000px;}
.ws0{word-spacing:-30.607920px;}
.wsb{word-spacing:-30.251340px;}
.ws1{word-spacing:-26.344080px;}
.ws6{word-spacing:-25.216380px;}
.ws3{word-spacing:-0.287946px;}
.ws2{word-spacing:-0.263964px;}
.ws4{word-spacing:-0.239982px;}
.wsa{word-spacing:-0.216000px;}
.ws5{word-spacing:-0.155964px;}
.wse{word-spacing:0.000000px;}
.ws8{word-spacing:145.766472px;}
.ws7{word-spacing:147.966354px;}
.wsc{word-spacing:387.211908px;}
.wsd{word-spacing:508.294404px;}
._1e{margin-left:-3300.627750px;}
._6{margin-left:-17.496000px;}
._2{margin-left:-11.664000px;}
._5{margin-left:-9.720000px;}
._28{margin-left:-8.493192px;}
._3{margin-left:-6.480000px;}
._1{margin-left:-5.184000px;}
._4{margin-left:-3.888000px;}
._7{margin-left:-2.791398px;}
._8{margin-left:-1.073748px;}
._15{width:1.076796px;}
._16{width:2.592000px;}
._18{width:3.638796px;}
._14{width:5.279280px;}
._c{width:6.912000px;}
._26{width:9.766668px;}
._22{width:16.753956px;}
._21{width:17.771544px;}
._24{width:19.842474px;}
._23{width:20.893572px;}
._25{width:27.131028px;}
._27{width:30.456000px;}
._17{width:33.048000px;}
._1f{width:42.198870px;}
._13{width:78.000000px;}
._9{width:99.198000px;}
._1d{width:100.255428px;}
._e{width:112.536000px;}
._19{width:136.512000px;}
._11{width:191.904000px;}
._1a{width:233.166900px;}
._f{width:253.800000px;}
._10{width:255.096000px;}
._a{width:290.088000px;}
._b{width:291.367398px;}
._20{width:299.257554px;}
._1c{width:300.331302px;}
._12{width:301.968000px;}
._d{width:384.480000px;}
._29{width:543.940200px;}
._1b{width:641.459544px;}
._0{width:6258.301500px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.018000px;}
.fs5{font-size:97.194000px;}
.fse{font-size:120.078000px;}
.fs4{font-size:125.448000px;}
.fsf{font-size:144.054000px;}
.fs3{font-size:145.752000px;}
.fs9{font-size:153.582000px;}
.fsd{font-size:155.964000px;}
.fs6{font-size:168.036000px;}
.fsa{font-size:172.800000px;}
.fs8{font-size:216.000000px;}
.fsc{font-size:239.982000px;}
.fs2{font-size:252.054000px;}
.fs7{font-size:263.964000px;}
.fsb{font-size:287.946000px;}
.fs1{font-size:648.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y38{bottom:127.855500px;}
.y49{bottom:148.477500px;}
.y37{bottom:157.917000px;}
.y48{bottom:196.057500px;}
.y36{bottom:209.239500px;}
.y35{bottom:239.301000px;}
.y34{bottom:290.622000px;}
.y33{bottom:320.683500px;}
.y32{bottom:372.004500px;}
.y31{bottom:402.066000px;}
.y30{bottom:453.387000px;}
.y2{bottom:466.567500px;}
.y2f{bottom:476.602500px;}
.y2e{bottom:527.923500px;}
.y2d{bottom:557.985000px;}
.y2c{bottom:609.306000px;}
.y2b{bottom:632.523000px;}
.y2a{bottom:686.011500px;}
.y29{bottom:880.582500px;}
.y28{bottom:949.506000px;}
.y27{bottom:1020.259500px;}
.y26{bottom:1190.295000px;}
.y47{bottom:1291.450500px;}
.y25{bottom:1362.160500px;}
.y51{bottom:1426.833000px;}
.y24{bottom:1431.084000px;}
.y50{bottom:1462.846500px;}
.y23{bottom:1500.009000px;}
.y4f{bottom:1529.347500px;}
.y4c{bottom:1547.334000px;}
.y4e{bottom:1565.361000px;}
.y22{bottom:1570.761000px;}
.y4b{bottom:1583.347500px;}
.y4d{bottom:1601.376000px;}
.y46{bottom:1712.266500px;}
.y21{bottom:1715.967000px;}
.y20{bottom:1944.211500px;}
.y1f{bottom:2029.506000px;}
.y1e{bottom:2123.220000px;}
.y1d{bottom:2208.514500px;}
.y1c{bottom:2306.523000px;}
.y1b{bottom:2404.530000px;}
.y1a{bottom:2502.538500px;}
.y19{bottom:2600.545500px;}
.y18{bottom:2699.701500px;}
.y17{bottom:2794.989000px;}
.y45{bottom:3026.422500px;}
.y16{bottom:3057.334500px;}
.y44{bottom:3101.257500px;}
.y15{bottom:3119.413500px;}
.y43{bottom:3176.092500px;}
.y14{bottom:3202.752000px;}
.y42{bottom:3249.226500px;}
.y13{bottom:3264.831000px;}
.y41{bottom:3325.761000px;}
.y12{bottom:3395.494500px;}
.y40{bottom:3400.596000px;}
.y11{bottom:3457.572000px;}
.y3f{bottom:3475.431000px;}
.y10{bottom:3519.651000px;}
.y3e{bottom:3550.266000px;}
.yf{bottom:3581.730000px;}
.y3d{bottom:3642.108000px;}
.ye{bottom:3703.888500px;}
.y3c{bottom:3716.943000px;}
.yd{bottom:3765.967500px;}
.y3b{bottom:3807.084000px;}
.yc{bottom:3828.046500px;}
.y3a{bottom:3870.864000px;}
.yb{bottom:3935.367000px;}
.y39{bottom:3967.978500px;}
.ya{bottom:4178.961000px;}
.y4a{bottom:4273.534500px;}
.y9{bottom:4313.917500px;}
.y8{bottom:4362.682500px;}
.y7{bottom:4456.233000px;}
.y5{bottom:4590.892500px;}
.y6{bottom:4597.653000px;}
.y3{bottom:4752.892500px;}
.y4{bottom:4759.653000px;}
.h3{height:55.998325px;}
.h15{height:78.106620px;}
.h7{height:79.852620px;}
.h11{height:95.462010px;}
.h6{height:99.731160px;}
.h16{height:114.522930px;}
.h10{height:118.064748px;}
.h14{height:123.991380px;}
.ha{height:149.952000px;}
.hb{height:154.542000px;}
.h12{height:164.916000px;}
.h13{height:164.922000px;}
.h9{height:171.720000px;}
.hf{height:183.471690px;}
.hd{height:183.477690px;}
.h17{height:186.462930px;}
.he{height:190.785690px;}
.h8{height:199.820748px;}
.h5{height:200.382930px;}
.hc{height:217.975122px;}
.h4{height:484.704000px;}
.h2{height:5055.547500px;}
.h0{height:5055.590551px;}
.h1{height:5055.750000px;}
.w2{width:3575.862000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x16{left:159.448500px;}
.x3{left:196.696500px;}
.x10{left:199.714500px;}
.x17{left:201.969000px;}
.x2{left:203.457000px;}
.x19{left:213.661500px;}
.x1{left:217.063500px;}
.x11{left:225.270000px;}
.x1a{left:239.215500px;}
.x1b{left:319.960500px;}
.x1c{left:358.228500px;}
.x5{left:565.086000px;}
.x4{left:571.846500px;}
.x2b{left:586.729500px;}
.x1f{left:591.108000px;}
.x2a{left:605.523000px;}
.x23{left:785.679000px;}
.x24{left:825.094500px;}
.x6{left:861.534000px;}
.x1e{left:908.859000px;}
.x18{left:1038.714000px;}
.x26{left:1070.688000px;}
.x25{left:1099.984500px;}
.x27{left:1122.519000px;}
.x22{left:1129.041000px;}
.x1d{left:1178.688000px;}
.x28{left:1348.384500px;}
.x29{left:1395.666000px;}
.x7{left:1412.715000px;}
.x8{left:1488.961500px;}
.xf{left:1541.125500px;}
.x13{left:2094.052500px;}
.x15{left:2126.239500px;}
.x14{left:2162.125500px;}
.xa{left:2285.391000px;}
.xc{left:2319.448500px;}
.xb{left:2353.464000px;}
.x12{left:2390.584500px;}
.xe{left:2417.244000px;}
.xd{left:2425.747500px;}
.x9{left:2630.523000px;}
.x20{left:2866.081500px;}
.x21{left:3111.208500px;}
@media print{
.v3{vertical-align:-61.509333pt;}
.v8{vertical-align:-49.317333pt;}
.v4{vertical-align:-47.765333pt;}
.v5{vertical-align:-19.349333pt;}
.v6{vertical-align:-15.269333pt;}
.v2{vertical-align:-13.610667pt;}
.v7{vertical-align:-6.496000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:63.946667pt;}
.v1{vertical-align:71.706667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.139787pt;}
.ls8{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.169216pt;}
.ls6{letter-spacing:0.196267pt;}
.ls0{letter-spacing:8.640000pt;}
.ls9{letter-spacing:36.682667pt;}
.lsa{letter-spacing:37.637333pt;}
.ls5{letter-spacing:67.172267pt;}
.ls4{letter-spacing:80.735904pt;}
.ls7{letter-spacing:150.243589pt;}
.ls3{letter-spacing:217.248000pt;}
.ws9{word-spacing:-40.320000pt;}
.ws0{word-spacing:-27.207040pt;}
.wsb{word-spacing:-26.890080pt;}
.ws1{word-spacing:-23.416960pt;}
.ws6{word-spacing:-22.414560pt;}
.ws3{word-spacing:-0.255952pt;}
.ws2{word-spacing:-0.234635pt;}
.ws4{word-spacing:-0.213317pt;}
.wsa{word-spacing:-0.192000pt;}
.ws5{word-spacing:-0.138635pt;}
.wse{word-spacing:0.000000pt;}
.ws8{word-spacing:129.570197pt;}
.ws7{word-spacing:131.525648pt;}
.wsc{word-spacing:344.188363pt;}
.wsd{word-spacing:451.817248pt;}
._1e{margin-left:-2933.891333pt;}
._6{margin-left:-15.552000pt;}
._2{margin-left:-10.368000pt;}
._5{margin-left:-8.640000pt;}
._28{margin-left:-7.549504pt;}
._3{margin-left:-5.760000pt;}
._1{margin-left:-4.608000pt;}
._4{margin-left:-3.456000pt;}
._7{margin-left:-2.481243pt;}
._8{margin-left:-0.954443pt;}
._15{width:0.957152pt;}
._16{width:2.304000pt;}
._18{width:3.234485pt;}
._14{width:4.692693pt;}
._c{width:6.144000pt;}
._26{width:8.681483pt;}
._22{width:14.892405pt;}
._21{width:15.796928pt;}
._24{width:17.637755pt;}
._23{width:18.572064pt;}
._25{width:24.116469pt;}
._27{width:27.072000pt;}
._17{width:29.376000pt;}
._1f{width:37.510107pt;}
._13{width:69.333333pt;}
._9{width:88.176000pt;}
._1d{width:89.115936pt;}
._e{width:100.032000pt;}
._19{width:121.344000pt;}
._11{width:170.581333pt;}
._1a{width:207.259467pt;}
._f{width:225.600000pt;}
._10{width:226.752000pt;}
._a{width:257.856000pt;}
._b{width:258.993243pt;}
._20{width:266.006715pt;}
._1c{width:266.961157pt;}
._12{width:268.416000pt;}
._d{width:341.760000pt;}
._29{width:483.502400pt;}
._1b{width:570.186261pt;}
._0{width:5562.934667pt;}
.fs0{font-size:74.682667pt;}
.fs5{font-size:86.394667pt;}
.fse{font-size:106.736000pt;}
.fs4{font-size:111.509333pt;}
.fsf{font-size:128.048000pt;}
.fs3{font-size:129.557333pt;}
.fs9{font-size:136.517333pt;}
.fsd{font-size:138.634667pt;}
.fs6{font-size:149.365333pt;}
.fsa{font-size:153.600000pt;}
.fs8{font-size:192.000000pt;}
.fsc{font-size:213.317333pt;}
.fs2{font-size:224.048000pt;}
.fs7{font-size:234.634667pt;}
.fsb{font-size:255.952000pt;}
.fs1{font-size:576.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y38{bottom:113.649333pt;}
.y49{bottom:131.980000pt;}
.y37{bottom:140.370667pt;}
.y48{bottom:174.273333pt;}
.y36{bottom:185.990667pt;}
.y35{bottom:212.712000pt;}
.y34{bottom:258.330667pt;}
.y33{bottom:285.052000pt;}
.y32{bottom:330.670667pt;}
.y31{bottom:357.392000pt;}
.y30{bottom:403.010667pt;}
.y2{bottom:414.726667pt;}
.y2f{bottom:423.646667pt;}
.y2e{bottom:469.265333pt;}
.y2d{bottom:495.986667pt;}
.y2c{bottom:541.605333pt;}
.y2b{bottom:562.242667pt;}
.y2a{bottom:609.788000pt;}
.y29{bottom:782.740000pt;}
.y28{bottom:844.005333pt;}
.y27{bottom:906.897333pt;}
.y26{bottom:1058.040000pt;}
.y47{bottom:1147.956000pt;}
.y25{bottom:1210.809333pt;}
.y51{bottom:1268.296000pt;}
.y24{bottom:1272.074667pt;}
.y50{bottom:1300.308000pt;}
.y23{bottom:1333.341333pt;}
.y4f{bottom:1359.420000pt;}
.y4c{bottom:1375.408000pt;}
.y4e{bottom:1391.432000pt;}
.y22{bottom:1396.232000pt;}
.y4b{bottom:1407.420000pt;}
.y4d{bottom:1423.445333pt;}
.y46{bottom:1522.014667pt;}
.y21{bottom:1525.304000pt;}
.y20{bottom:1728.188000pt;}
.y1f{bottom:1804.005333pt;}
.y1e{bottom:1887.306667pt;}
.y1d{bottom:1963.124000pt;}
.y1c{bottom:2050.242667pt;}
.y1b{bottom:2137.360000pt;}
.y1a{bottom:2224.478667pt;}
.y19{bottom:2311.596000pt;}
.y18{bottom:2399.734667pt;}
.y17{bottom:2484.434667pt;}
.y45{bottom:2690.153333pt;}
.y16{bottom:2717.630667pt;}
.y44{bottom:2756.673333pt;}
.y15{bottom:2772.812000pt;}
.y43{bottom:2823.193333pt;}
.y14{bottom:2846.890667pt;}
.y42{bottom:2888.201333pt;}
.y13{bottom:2902.072000pt;}
.y41{bottom:2956.232000pt;}
.y12{bottom:3018.217333pt;}
.y40{bottom:3022.752000pt;}
.y11{bottom:3073.397333pt;}
.y3f{bottom:3089.272000pt;}
.y10{bottom:3128.578667pt;}
.y3e{bottom:3155.792000pt;}
.yf{bottom:3183.760000pt;}
.y3d{bottom:3237.429333pt;}
.ye{bottom:3292.345333pt;}
.y3c{bottom:3303.949333pt;}
.yd{bottom:3347.526667pt;}
.y3b{bottom:3384.074667pt;}
.yc{bottom:3402.708000pt;}
.y3a{bottom:3440.768000pt;}
.yb{bottom:3498.104000pt;}
.y39{bottom:3527.092000pt;}
.ya{bottom:3714.632000pt;}
.y4a{bottom:3798.697333pt;}
.y9{bottom:3834.593333pt;}
.y8{bottom:3877.940000pt;}
.y7{bottom:3961.096000pt;}
.y5{bottom:4080.793333pt;}
.y6{bottom:4086.802667pt;}
.y3{bottom:4224.793333pt;}
.y4{bottom:4230.802667pt;}
.h3{height:49.776289pt;}
.h15{height:69.428107pt;}
.h7{height:70.980107pt;}
.h11{height:84.855120pt;}
.h6{height:88.649920pt;}
.h16{height:101.798160pt;}
.h10{height:104.946443pt;}
.h14{height:110.214560pt;}
.ha{height:133.290667pt;}
.hb{height:137.370667pt;}
.h12{height:146.592000pt;}
.h13{height:146.597333pt;}
.h9{height:152.640000pt;}
.hf{height:163.085947pt;}
.hd{height:163.091280pt;}
.h17{height:165.744827pt;}
.he{height:169.587280pt;}
.h8{height:177.618443pt;}
.h5{height:178.118160pt;}
.hc{height:193.755664pt;}
.h4{height:430.848000pt;}
.h2{height:4493.820000pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.544000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x16{left:141.732000pt;}
.x3{left:174.841333pt;}
.x10{left:177.524000pt;}
.x17{left:179.528000pt;}
.x2{left:180.850667pt;}
.x19{left:189.921333pt;}
.x1{left:192.945333pt;}
.x11{left:200.240000pt;}
.x1a{left:212.636000pt;}
.x1b{left:284.409333pt;}
.x1c{left:318.425333pt;}
.x5{left:502.298667pt;}
.x4{left:508.308000pt;}
.x2b{left:521.537333pt;}
.x1f{left:525.429333pt;}
.x2a{left:538.242667pt;}
.x23{left:698.381333pt;}
.x24{left:733.417333pt;}
.x6{left:765.808000pt;}
.x1e{left:807.874667pt;}
.x18{left:923.301333pt;}
.x26{left:951.722667pt;}
.x25{left:977.764000pt;}
.x27{left:997.794667pt;}
.x22{left:1003.592000pt;}
.x1d{left:1047.722667pt;}
.x28{left:1198.564000pt;}
.x29{left:1240.592000pt;}
.x7{left:1255.746667pt;}
.x8{left:1323.521333pt;}
.xf{left:1369.889333pt;}
.x13{left:1861.380000pt;}
.x15{left:1889.990667pt;}
.x14{left:1921.889333pt;}
.xa{left:2031.458667pt;}
.xc{left:2061.732000pt;}
.xb{left:2091.968000pt;}
.x12{left:2124.964000pt;}
.xe{left:2148.661333pt;}
.xd{left:2156.220000pt;}
.x9{left:2338.242667pt;}
.x20{left:2547.628000pt;}
.x21{left:2765.518667pt;}
}




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