
    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_31ab1dc0199ba2530f2def90.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_d5d162e0322d4e9175510ad2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_cce3cace3c8ff069a4efdf2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_4beb9ffffdcca6415a73c0f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_553c3756b8b09c70d1391e96.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2c896854378a71749af67f2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.884277;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_19a6001ed5764bd44b7561bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.099609;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_bcb34dec9a8595f7a613ebc0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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;}
.m2{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.367463px;}
.v1{vertical-align:11.513514px;}
.v3{vertical-align:14.489785px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.038880px;}
.ls4{letter-spacing:0.332643px;}
.ls6{letter-spacing:10.622489px;}
.ls9{letter-spacing:10.625028px;}
.ls8{letter-spacing:10.631021px;}
.lsd{letter-spacing:10.635779px;}
.lsb{letter-spacing:10.636331px;}
.ls7{letter-spacing:10.638174px;}
.lsf{letter-spacing:10.665303px;}
.lsc{letter-spacing:10.667414px;}
.ls11{letter-spacing:10.671275px;}
.lse{letter-spacing:10.671683px;}
.ls10{letter-spacing:10.675025px;}
.ls0{letter-spacing:24.523381px;}
.ls1{letter-spacing:28.799875px;}
.ls2{letter-spacing:33.095350px;}
.ls12{letter-spacing:40.383280px;}
.ls5{letter-spacing:50.788814px;}
.lsa{letter-spacing:50.791833px;}
.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:-74.510990px;}
.ws8{word-spacing:-36.102050px;}
.ws7{word-spacing:-32.825532px;}
.ws2{word-spacing:-13.169583px;}
.ws6{word-spacing:-10.902292px;}
.wsb{word-spacing:-10.653044px;}
.ws9{word-spacing:-10.614164px;}
.ws5{word-spacing:-9.827975px;}
.ws3{word-spacing:-8.588238px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:2.542505px;}
.ws4{word-spacing:749.626168px;}
._0{margin-left:-5.662835px;}
._8{margin-left:-3.762738px;}
._1{margin-left:-2.122570px;}
._2{margin-left:-1.013045px;}
._3{width:1.447207px;}
._4{width:2.817375px;}
._5{width:3.915302px;}
._9{width:9.274205px;}
._a{width:11.702788px;}
._6{width:37.438355px;}
._7{width:58.943689px;}
.fc4{color:rgb(39,134,201);}
.fc1{color:rgb(35,129,196);}
.fc3{color:rgb(137,137,137);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:23.759585px;}
.fs9{font-size:30.240276px;}
.fsc{font-size:31.679446px;}
.fs8{font-size:35.999907px;}
.fsf{font-size:38.879723px;}
.fs1{font-size:48.240229px;}
.fsd{font-size:53.999861px;}
.fs6{font-size:59.759492px;}
.fs7{font-size:62.645206px;}
.fs3{font-size:66.240183px;}
.fs5{font-size:71.999814px;}
.fs0{font-size:74.510990px;}
.fs4{font-size:84.240136px;}
.fsb{font-size:87.119952px;}
.fse{font-size:120.240044px;}
.fs2{font-size:131.759306px;}
.y0{bottom:0.000000px;}
.y2{bottom:26.267044px;}
.y15{bottom:112.685920px;}
.y36{bottom:145.985172px;}
.y37{bottom:147.962706px;}
.y40{bottom:180.715797px;}
.y45{bottom:181.256792px;}
.y3f{bottom:195.117306px;}
.y44{bottom:195.654707px;}
.y3e{bottom:209.515220px;}
.y43{bottom:210.056216px;}
.y13{bottom:221.950827px;}
.y3d{bottom:223.913063px;}
.y42{bottom:224.454130px;}
.y3c{bottom:238.318310px;}
.y41{bottom:238.851973px;}
.y12{bottom:241.747217px;}
.y11{bottom:262.442634px;}
.y10{bottom:284.946466px;}
.yf{bottom:304.929859px;}
.ye{bottom:325.443593px;}
.yd{bottom:349.384140px;}
.yc{bottom:379.616770px;}
.yb{bottom:409.682384px;}
.y46{bottom:426.418714px;}
.y3b{bottom:455.225182px;}
.y53{bottom:458.097057px;}
.y56{bottom:463.678830px;}
.ya{bottom:467.280431px;}
.y55{bottom:478.076745px;}
.y3a{bottom:478.801063px;}
.y52{bottom:480.784411px;}
.y54{bottom:492.474587px;}
.y39{bottom:518.050492px;}
.y38{bottom:525.252342px;}
.y14{bottom:629.287056px;}
.y18{bottom:665.280107px;}
.y4{bottom:698.755777px;}
.y32{bottom:702.361606px;}
.y65{bottom:706.141427px;}
.y31{bottom:712.616339px;}
.y3{bottom:713.157322px;}
.y21{bottom:715.137390px;}
.y2e{bottom:718.017413px;}
.y64{bottom:720.186798px;}
.y30{bottom:721.616567px;}
.y2d{bottom:728.099898px;}
.y20{bottom:729.535269px;}
.y2f{bottom:731.695693px;}
.y51{bottom:736.022237px;}
.y63{bottom:741.784326px;}
.y50{bottom:752.040254px;}
.y62{bottom:755.823788px;}
.y4f{bottom:768.243705px;}
.y61{bottom:769.863221px;}
.y9{bottom:771.481222px;}
.y23{bottom:774.181779px;}
.y2c{bottom:775.983548px;}
.y4e{bottom:784.438064px;}
.y22{bottom:784.984053px;}
.y2b{bottom:786.780324px;}
.y60{bottom:791.460749px;}
.y8{bottom:803.698588px;}
.y27{bottom:804.957719px;}
.y5f{bottom:805.500182px;}
.y1e{bottom:808.194669px;}
.y26{bottom:813.957925px;}
.y1d{bottom:818.277985px;}
.y25{bottom:824.037115px;}
.y5e{bottom:826.925699px;}
.y7{bottom:829.436188px;}
.y1c{bottom:832.675828px;}
.y4d{bottom:838.081933px;}
.y24{bottom:838.440888px;}
.y5d{bottom:848.523227px;}
.y4c{bottom:854.099970px;}
.y5c{bottom:862.562660px;}
.y1a{bottom:869.581326px;}
.y4b{bottom:870.302577px;}
.y1f{bottom:874.621291px;}
.y19{bottom:880.378101px;}
.y5b{bottom:884.163171px;}
.y4a{bottom:886.498565px;}
.y6{bottom:889.740154px;}
.y35{bottom:895.861087px;}
.y5a{bottom:898.200837px;}
.y2a{bottom:904.859635px;}
.y29{bottom:914.940974px;}
.y1b{bottom:916.377818px;}
.y59{bottom:919.619808px;}
.y5{bottom:925.382083px;}
.y34{bottom:927.721357px;}
.y28{bottom:929.338852px;}
.y58{bottom:933.663384px;}
.y49{bottom:937.803234px;}
.y33{bottom:938.518695px;}
.y17{bottom:969.484134px;}
.y48{bottom:970.197017px;}
.y57{bottom:983.879219px;}
.y47{bottom:1002.605470px;}
.y16{bottom:1005.126062px;}
.y1{bottom:1165.142808px;}
.hc{height:20.546008px;}
.ha{height:26.150160px;}
.h9{height:31.130779px;}
.h12{height:33.621088px;}
.h2{height:41.715550px;}
.hb{height:42.644293px;}
.he{height:45.931859px;}
.h11{height:46.696169px;}
.h8{height:47.503908px;}
.hf{height:51.415883px;}
.h7{height:51.676787px;}
.h4{height:57.280939px;}
.h6{height:62.261558px;}
.h1{height:64.578617px;}
.h5{height:72.846329px;}
.hd{height:75.336638px;}
.h10{height:103.977108px;}
.h3{height:113.938345px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:98.997942px;}
.x35{left:128.704785px;}
.x36{left:134.463379px;}
.x27{left:136.801402px;}
.x2e{left:143.093284px;}
.x9{left:153.906843px;}
.x13{left:155.520363px;}
.x11{left:159.301106px;}
.x15{left:163.623410px;}
.x10{left:168.122385px;}
.x28{left:171.178070px;}
.xa{left:180.896028px;}
.x12{left:187.920192px;}
.x16{left:199.621036px;}
.xb{left:207.896208px;}
.x14{left:217.440844px;}
.x29{left:232.741729px;}
.x4{left:235.613060px;}
.x6{left:256.138946px;}
.x5{left:275.211614px;}
.x2a{left:299.878974px;}
.x2d{left:303.300978px;}
.x3{left:306.000415px;}
.x7{left:310.136986px;}
.x32{left:311.402281px;}
.x33{left:315.897880px;}
.x24{left:324.719328px;}
.x8{left:332.640888px;}
.x31{left:336.062133px;}
.x34{left:342.001333px;}
.x2f{left:344.881938px;}
.x30{left:357.841359px;}
.x2b{left:388.440742px;}
.x1d{left:399.962928px;}
.x1c{left:414.181700px;}
.x1f{left:421.384324px;}
.xf{left:424.439232px;}
.x1b{left:426.783533px;}
.xe{left:431.278204px;}
.x17{left:444.420196px;}
.x19{left:449.462831px;}
.x18{left:478.622495px;}
.x1a{left:486.905532px;}
.x1e{left:508.319632px;}
.x23{left:555.659588px;}
.x2c{left:599.403419px;}
.x25{left:612.892740px;}
.x22{left:619.744335px;}
.x21{left:628.204636px;}
.x20{left:639.726314px;}
.x38{left:664.745885px;}
.x37{left:671.223455px;}
.x26{left:706.138961px;}
.xd{left:759.235727px;}
.x1{left:815.773655px;}
.x2{left:898.023553px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.882189pt;}
.v1{vertical-align:10.234234pt;}
.v3{vertical-align:12.879809pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.034560pt;}
.ls4{letter-spacing:0.295683pt;}
.ls6{letter-spacing:9.442213pt;}
.ls9{letter-spacing:9.444469pt;}
.ls8{letter-spacing:9.449796pt;}
.lsd{letter-spacing:9.454026pt;}
.lsb{letter-spacing:9.454517pt;}
.ls7{letter-spacing:9.456154pt;}
.lsf{letter-spacing:9.480269pt;}
.lsc{letter-spacing:9.482146pt;}
.ls11{letter-spacing:9.485578pt;}
.lse{letter-spacing:9.485941pt;}
.ls10{letter-spacing:9.488911pt;}
.ls0{letter-spacing:21.798561pt;}
.ls1{letter-spacing:25.599889pt;}
.ls2{letter-spacing:29.418089pt;}
.ls12{letter-spacing:35.896249pt;}
.ls5{letter-spacing:45.145613pt;}
.lsa{letter-spacing:45.148296pt;}
.ws0{word-spacing:-66.231991pt;}
.ws8{word-spacing:-32.090711pt;}
.ws7{word-spacing:-29.178251pt;}
.ws2{word-spacing:-11.706296pt;}
.ws6{word-spacing:-9.690926pt;}
.wsb{word-spacing:-9.469372pt;}
.ws9{word-spacing:-9.434813pt;}
.ws5{word-spacing:-8.735977pt;}
.ws3{word-spacing:-7.633990pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:2.260005pt;}
.ws4{word-spacing:666.334372pt;}
._0{margin-left:-5.033631pt;}
._8{margin-left:-3.344656pt;}
._1{margin-left:-1.886729pt;}
._2{margin-left:-0.900484pt;}
._3{width:1.286406pt;}
._4{width:2.504334pt;}
._5{width:3.480268pt;}
._9{width:8.243738pt;}
._a{width:10.402478pt;}
._6{width:33.278538pt;}
._7{width:52.394390pt;}
.fsa{font-size:21.119631pt;}
.fs9{font-size:26.880245pt;}
.fsc{font-size:28.159508pt;}
.fs8{font-size:31.999917pt;}
.fsf{font-size:34.559754pt;}
.fs1{font-size:42.880204pt;}
.fsd{font-size:47.999876pt;}
.fs6{font-size:53.119548pt;}
.fs7{font-size:55.684627pt;}
.fs3{font-size:58.880163pt;}
.fs5{font-size:63.999835pt;}
.fs0{font-size:66.231991pt;}
.fs4{font-size:74.880121pt;}
.fsb{font-size:77.439957pt;}
.fse{font-size:106.880039pt;}
.fs2{font-size:117.119383pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:23.348484pt;}
.y15{bottom:100.165262pt;}
.y36{bottom:129.764597pt;}
.y37{bottom:131.522405pt;}
.y40{bottom:160.636264pt;}
.y45{bottom:161.117149pt;}
.y3f{bottom:173.437605pt;}
.y44{bottom:173.915295pt;}
.y3e{bottom:186.235751pt;}
.y43{bottom:186.716636pt;}
.y13{bottom:197.289624pt;}
.y3d{bottom:199.033834pt;}
.y42{bottom:199.514783pt;}
.y3c{bottom:211.838497pt;}
.y41{bottom:212.312865pt;}
.y12{bottom:214.886415pt;}
.y11{bottom:233.282341pt;}
.y10{bottom:253.285748pt;}
.yf{bottom:271.048764pt;}
.ye{bottom:289.283194pt;}
.yd{bottom:310.563680pt;}
.yc{bottom:337.437129pt;}
.yb{bottom:364.162119pt;}
.y46{bottom:379.038857pt;}
.y3b{bottom:404.644606pt;}
.y53{bottom:407.197384pt;}
.y56{bottom:412.158960pt;}
.ya{bottom:415.360383pt;}
.y55{bottom:424.957106pt;}
.y3a{bottom:425.600945pt;}
.y52{bottom:427.363921pt;}
.y54{bottom:437.755189pt;}
.y39{bottom:460.489326pt;}
.y38{bottom:466.890971pt;}
.y14{bottom:559.366272pt;}
.y18{bottom:591.360095pt;}
.y4{bottom:621.116246pt;}
.y32{bottom:624.321427pt;}
.y65{bottom:627.681268pt;}
.y31{bottom:633.436746pt;}
.y3{bottom:633.917619pt;}
.y21{bottom:635.677680pt;}
.y2e{bottom:638.237700pt;}
.y64{bottom:640.166043pt;}
.y30{bottom:641.436948pt;}
.y2d{bottom:647.199909pt;}
.y20{bottom:648.475794pt;}
.y2f{bottom:650.396171pt;}
.y51{bottom:654.241988pt;}
.y63{bottom:659.363845pt;}
.y50{bottom:668.480226pt;}
.y62{bottom:671.843367pt;}
.y4f{bottom:682.883294pt;}
.y61{bottom:684.322863pt;}
.y9{bottom:685.761086pt;}
.y23{bottom:688.161581pt;}
.y2c{bottom:689.763154pt;}
.y4e{bottom:697.278279pt;}
.y22{bottom:697.763603pt;}
.y2b{bottom:699.360288pt;}
.y60{bottom:703.520665pt;}
.y8{bottom:714.398745pt;}
.y27{bottom:715.517973pt;}
.y5f{bottom:716.000161pt;}
.y1e{bottom:718.395261pt;}
.y26{bottom:723.518156pt;}
.y1d{bottom:727.358209pt;}
.y25{bottom:732.477435pt;}
.y5e{bottom:735.045066pt;}
.y7{bottom:737.276611pt;}
.y1c{bottom:740.156291pt;}
.y4d{bottom:744.961718pt;}
.y24{bottom:745.280789pt;}
.y5d{bottom:754.242868pt;}
.y4c{bottom:759.199974pt;}
.y5c{bottom:766.722364pt;}
.y1a{bottom:772.961179pt;}
.y4b{bottom:773.602290pt;}
.y1f{bottom:777.441148pt;}
.y19{bottom:782.558312pt;}
.y5b{bottom:785.922819pt;}
.y4a{bottom:787.998724pt;}
.y6{bottom:790.880137pt;}
.y35{bottom:796.320966pt;}
.y5a{bottom:798.400744pt;}
.y2a{bottom:804.319676pt;}
.y29{bottom:813.280866pt;}
.y1b{bottom:814.558060pt;}
.y59{bottom:817.439830pt;}
.y5{bottom:822.561851pt;}
.y34{bottom:824.641206pt;}
.y28{bottom:826.078980pt;}
.y58{bottom:829.923008pt;}
.y49{bottom:833.602875pt;}
.y33{bottom:834.238840pt;}
.y17{bottom:861.763674pt;}
.y48{bottom:862.397348pt;}
.y57{bottom:874.559306pt;}
.y47{bottom:891.204862pt;}
.y16{bottom:893.445388pt;}
.y1{bottom:1035.682496pt;}
.hc{height:18.263118pt;}
.ha{height:23.244587pt;}
.h9{height:27.671804pt;}
.h12{height:29.885412pt;}
.h2{height:37.080489pt;}
.hb{height:37.906038pt;}
.he{height:40.828319pt;}
.h11{height:41.507705pt;}
.h8{height:42.225696pt;}
.hf{height:45.703007pt;}
.h7{height:45.934922pt;}
.h4{height:50.916391pt;}
.h6{height:55.343607pt;}
.h1{height:57.403215pt;}
.h5{height:64.752292pt;}
.hd{height:66.965901pt;}
.h10{height:92.424096pt;}
.h3{height:101.278529pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:87.998170pt;}
.x35{left:114.404254pt;}
.x36{left:119.523004pt;}
.x27{left:121.601246pt;}
.x2e{left:127.194030pt;}
.x9{left:136.806083pt;}
.x13{left:138.240322pt;}
.x11{left:141.600983pt;}
.x15{left:145.443031pt;}
.x10{left:149.442120pt;}
.x28{left:152.158285pt;}
.xa{left:160.796469pt;}
.x12{left:167.040170pt;}
.x16{left:177.440920pt;}
.xb{left:184.796629pt;}
.x14{left:193.280750pt;}
.x29{left:206.881537pt;}
.x4{left:209.433831pt;}
.x6{left:227.679063pt;}
.x5{left:244.632546pt;}
.x2a{left:266.559088pt;}
.x2d{left:269.600869pt;}
.x3{left:272.000369pt;}
.x7{left:275.677321pt;}
.x32{left:276.802028pt;}
.x33{left:280.798116pt;}
.x24{left:288.639403pt;}
.x8{left:295.680790pt;}
.x31{left:298.721896pt;}
.x34{left:304.001185pt;}
.x2f{left:306.561722pt;}
.x30{left:318.081208pt;}
.x2b{left:345.280659pt;}
.x1d{left:355.522602pt;}
.x1c{left:368.161511pt;}
.x1f{left:374.563843pt;}
.xf{left:377.279317pt;}
.x1b{left:379.363140pt;}
.xe{left:383.358403pt;}
.x17{left:395.040174pt;}
.x19{left:399.522516pt;}
.x18{left:425.442218pt;}
.x1a{left:432.804918pt;}
.x1e{left:451.839673pt;}
.x23{left:493.919634pt;}
.x2c{left:532.803039pt;}
.x25{left:544.793546pt;}
.x22{left:550.883853pt;}
.x21{left:558.404121pt;}
.x20{left:568.645613pt;}
.x38{left:590.885231pt;}
.x37{left:596.643071pt;}
.x26{left:627.679076pt;}
.xd{left:674.876202pt;}
.x1{left:725.132138pt;}
.x2{left:798.243158pt;}
}




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