
    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_1a43079b5bd3a5671994e9df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_07b3f9afcfa5d8fab915bc27.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_ba563467804cf3da7fb42fda.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_43e88b1947c87a64d118830d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_e1da82a51a59a3137a0a0616.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.157000;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_0b8bc7568e3c5727eaae3fd3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c15a952f6da6d29235e39106.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.225600px;}
.ls1{letter-spacing:0.357187px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.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 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws3{word-spacing:-110.073556px;}
.wsf{word-spacing:-84.239966px;}
.ws0{word-spacing:-81.359967px;}
.ws5{word-spacing:-40.232144px;}
.ws12{word-spacing:-33.426707px;}
.ws10{word-spacing:-31.224948px;}
.ws13{word-spacing:-29.023188px;}
.ws11{word-spacing:-26.821429px;}
.ws2{word-spacing:-24.407990px;}
.ws7{word-spacing:-2.616537px;}
.wse{word-spacing:-0.794888px;}
.ws8{word-spacing:-0.107982px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.035967px;}
.ws16{word-spacing:0.050425px;}
.ws9{word-spacing:0.468000px;}
.ws4{word-spacing:5.303552px;}
.ws6{word-spacing:15.383585px;}
.wsd{word-spacing:20.615092px;}
.ws15{word-spacing:24.658043px;}
.ws14{word-spacing:79.650156px;}
.wsc{word-spacing:134.387979px;}
.wsa{word-spacing:253.187789px;}
._c{margin-left:-11.500701px;}
._e{margin-left:-10.181077px;}
._5{margin-left:-8.639997px;}
._12{margin-left:-7.498334px;}
._2{margin-left:-6.479997px;}
._3{margin-left:-4.319998px;}
._0{margin-left:-3.239999px;}
._4{margin-left:-2.159999px;}
._1{margin-left:-1.080000px;}
._8{width:1.058634px;}
._a{width:2.081262px;}
._b{width:3.505697px;}
._9{width:23.726029px;}
._d{width:25.441484px;}
._13{width:27.923755px;}
._7{width:29.015988px;}
._6{width:30.167988px;}
._10{width:31.795252px;}
._11{width:63.285095px;}
._f{width:213.969263px;}
.fcb{color:rgb(184,24,134);}
.fc7{color:rgb(154,0,154);}
.fc5{color:rgb(0,0,101);}
.fc9{color:rgb(237,124,49);}
.fc6{color:rgb(51,101,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,51,204);}
.fc2{color:rgb(0,0,255);}
.fca{color:rgb(68,84,106);}
.fc8{color:rgb(255,51,154);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs2{font-size:95.759962px;}
.fsc{font-size:96.479961px;}
.fsb{font-size:104.399958px;}
.fs3{font-size:107.999957px;}
.fs9{font-size:112.319955px;}
.fs4{font-size:120.239952px;}
.fs1{font-size:143.999942px;}
.fs7{font-size:144.719942px;}
.fsa{font-size:160.559936px;}
.fsd{font-size:167.759933px;}
.fs8{font-size:192.239923px;}
.fs6{font-size:239.759904px;}
.fs0{font-size:359.999856px;}
.fs5{font-size:561.599775px;}
.y0{bottom:0.000000px;}
.y31{bottom:54.420335px;}
.y30{bottom:86.820322px;}
.y2f{bottom:119.220309px;}
.y7f{bottom:134.160303px;}
.y5e{bottom:145.680299px;}
.y2e{bottom:151.620296px;}
.y7e{bottom:165.480291px;}
.y34{bottom:171.600288px;}
.y5d{bottom:183.300284px;}
.y2d{bottom:184.020283px;}
.y33{bottom:204.000275px;}
.y5c{bottom:205.980275px;}
.y2c{bottom:216.420270px;}
.y4d{bottom:217.140270px;}
.y1e{bottom:220.380269px;}
.y32{bottom:236.400262px;}
.y7d{bottom:237.300262px;}
.y72{bottom:240.720261px;}
.y47{bottom:247.740258px;}
.y2b{bottom:248.820257px;}
.y1d{bottom:252.780256px;}
.y7c{bottom:271.860248px;}
.y71{bottom:274.380247px;}
.y6a{bottom:279.780245px;}
.y46{bottom:280.140245px;}
.y5b{bottom:281.400244px;}
.y1c{bottom:285.180243px;}
.y4c{bottom:289.140241px;}
.y7b{bottom:300.840237px;}
.y45{bottom:312.540232px;}
.y70{bottom:314.700231px;}
.y1b{bottom:317.580230px;}
.y5a{bottom:319.020229px;}
.y69{bottom:320.100229px;}
.yb{bottom:320.280229px;}
.y3{bottom:322.440228px;}
.y7a{bottom:335.940223px;}
.y51{bottom:337.020222px;}
.y59{bottom:341.700220px;}
.y44{bottom:344.940219px;}
.ya{bottom:346.200219px;}
.y6f{bottom:348.360218px;}
.y1a{bottom:349.980217px;}
.y68{bottom:353.760215px;}
.y9{bottom:372.120208px;}
.y43{bottom:377.340206px;}
.y50{bottom:380.400205px;}
.y6e{bottom:382.020204px;}
.y67{bottom:387.420202px;}
.y8{bottom:398.040198px;}
.y79{bottom:411.000193px;}
.y58{bottom:417.120190px;}
.y2{bottom:419.640189px;}
.y6d{bottom:422.520188px;}
.y7{bottom:423.960187px;}
.y66{bottom:427.920186px;}
.y86{bottom:439.440181px;}
.y78{bottom:449.340177px;}
.y6{bottom:449.880177px;}
.y57{bottom:454.740175px;}
.y65{bottom:468.240170px;}
.y85{bottom:471.840168px;}
.y5{bottom:475.800167px;}
.y56{bottom:477.420166px;}
.y23{bottom:482.820164px;}
.y4b{bottom:484.080163px;}
.y77{bottom:484.620163px;}
.y84{bottom:504.240155px;}
.y64{bottom:508.740154px;}
.y4f{bottom:510.180153px;}
.y22{bottom:515.220151px;}
.y1{bottom:516.840150px;}
.y6c{bottom:523.320148px;}
.y83{bottom:536.640142px;}
.y76{bottom:547.080138px;}
.y21{bottom:547.620138px;}
.y55{bottom:552.840136px;}
.y4e{bottom:553.560136px;}
.y4{bottom:556.620134px;}
.y16{bottom:558.420134px;}
.y27{bottom:560.580133px;}
.y38{bottom:568.680130px;}
.y82{bottom:569.040129px;}
.y6b{bottom:571.560128px;}
.y54{bottom:575.520127px;}
.y75{bottom:578.400126px;}
.y20{bottom:580.020125px;}
.y11{bottom:587.220122px;}
.y3d{bottom:589.560121px;}
.y15{bottom:590.820121px;}
.y62{bottom:591.000121px;}
.y4a{bottom:591.540120px;}
.y26{bottom:592.980120px;}
.y19{bottom:594.600119px;}
.y37{bottom:601.080117px;}
.y81{bottom:601.440116px;}
.y74{bottom:609.720113px;}
.y1f{bottom:612.420112px;}
.y53{bottom:613.140112px;}
.y10{bottom:619.620109px;}
.y3c{bottom:621.960108px;}
.y14{bottom:623.220108px;}
.y61{bottom:623.400108px;}
.y49{bottom:623.940107px;}
.y40{bottom:624.120107px;}
.y25{bottom:625.380107px;}
.y18{bottom:627.000106px;}
.y42{bottom:628.620106px;}
.y36{bottom:633.480104px;}
.y2a{bottom:640.500101px;}
.y89{bottom:641.040101px;}
.yd{bottom:641.220101px;}
.y52{bottom:644.100099px;}
.yf{bottom:652.020096px;}
.y3b{bottom:654.360095px;}
.y13{bottom:655.620095px;}
.y60{bottom:655.800095px;}
.y48{bottom:656.340094px;}
.y3f{bottom:656.520094px;}
.y24{bottom:657.780094px;}
.y17{bottom:659.400093px;}
.y41{bottom:661.020093px;}
.y63{bottom:663.540092px;}
.y35{bottom:665.880091px;}
.y87{bottom:669.840089px;}
.y29{bottom:672.900088px;}
.y88{bottom:673.440088px;}
.yc{bottom:673.620088px;}
.y73{bottom:675.060087px;}
.y80{bottom:676.680086px;}
.ye{bottom:685.140083px;}
.y3a{bottom:686.760082px;}
.y12{bottom:688.020082px;}
.y5f{bottom:688.200082px;}
.y3e{bottom:688.920081px;}
.y28{bottom:705.300075px;}
.y39{bottom:719.160069px;}
.h4{height:74.830048px;}
.ha{height:75.093720px;}
.h3{height:78.973914px;}
.h5{height:83.604342px;}
.hf{height:90.594684px;}
.he{height:91.021644px;}
.hd{height:98.031561px;}
.hb{height:105.468438px;}
.h10{height:116.236008px;}
.h2{height:118.757765px;}
.h8{height:135.892026px;}
.hc{height:150.765780px;}
.h9{height:180.513288px;}
.h7{height:191.175744px;}
.h1{height:296.894412px;}
.h6{height:447.799040px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x14{left:102.225859px;}
.x19{left:113.565855px;}
.xf{left:114.645854px;}
.x13{left:120.045852px;}
.x18{left:131.205848px;}
.x1b{left:136.065846px;}
.xe{left:139.485844px;}
.x10{left:148.845840px;}
.x22{left:153.346439px;}
.x16{left:154.786438px;}
.xd{left:169.906432px;}
.x20{left:176.566429px;}
.x23{left:178.006429px;}
.x6{left:183.766426px;}
.x1f{left:197.266421px;}
.x1{left:198.706421px;}
.x21{left:203.566419px;}
.xa{left:214.906414px;}
.x7{left:224.806410px;}
.x1e{left:280.786388px;}
.x5{left:298.966380px;}
.x9{left:316.246374px;}
.x1c{left:327.946369px;}
.x2{left:330.286368px;}
.x24{left:339.106364px;}
.x1d{left:358.726357px;}
.xc{left:370.606352px;}
.x4{left:385.366346px;}
.x3{left:428.566329px;}
.x11{left:432.706327px;}
.x12{left:502.006299px;}
.xb{left:511.726295px;}
.x1a{left:547.906281px;}
.x17{left:568.066273px;}
.x8{left:570.226272px;}
.x15{left:843.466163px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.200533pt;}
.ls1{letter-spacing:0.317500pt;}
.ws3{word-spacing:-97.843161pt;}
.wsf{word-spacing:-74.879970pt;}
.ws0{word-spacing:-72.319971pt;}
.ws5{word-spacing:-35.761906pt;}
.ws12{word-spacing:-29.712628pt;}
.ws10{word-spacing:-27.755509pt;}
.ws13{word-spacing:-25.798390pt;}
.ws11{word-spacing:-23.841270pt;}
.ws2{word-spacing:-21.695991pt;}
.ws7{word-spacing:-2.325810pt;}
.wse{word-spacing:-0.706567pt;}
.ws8{word-spacing:-0.095984pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.031971pt;}
.ws16{word-spacing:0.044822pt;}
.ws9{word-spacing:0.416000pt;}
.ws4{word-spacing:4.714268pt;}
.ws6{word-spacing:13.674298pt;}
.wsd{word-spacing:18.324526pt;}
.ws15{word-spacing:21.918261pt;}
.ws14{word-spacing:70.800138pt;}
.wsc{word-spacing:119.455982pt;}
.wsa{word-spacing:225.055813pt;}
._c{margin-left:-10.222845pt;}
._e{margin-left:-9.049846pt;}
._5{margin-left:-7.679997pt;}
._12{margin-left:-6.665186pt;}
._2{margin-left:-5.759998pt;}
._3{margin-left:-3.839998pt;}
._0{margin-left:-2.879999pt;}
._4{margin-left:-1.919999pt;}
._1{margin-left:-0.960000pt;}
._8{width:0.941008pt;}
._a{width:1.850011pt;}
._b{width:3.116175pt;}
._9{width:21.089804pt;}
._d{width:22.614653pt;}
._13{width:24.821115pt;}
._7{width:25.791990pt;}
._6{width:26.815989pt;}
._10{width:28.262446pt;}
._11{width:56.253418pt;}
._f{width:190.194900pt;}
.fs2{font-size:85.119966pt;}
.fsc{font-size:85.759966pt;}
.fsb{font-size:92.799963pt;}
.fs3{font-size:95.999962pt;}
.fs9{font-size:99.839960pt;}
.fs4{font-size:106.879957pt;}
.fs1{font-size:127.999949pt;}
.fs7{font-size:128.639949pt;}
.fsa{font-size:142.719943pt;}
.fsd{font-size:149.119940pt;}
.fs8{font-size:170.879932pt;}
.fs6{font-size:213.119915pt;}
.fs0{font-size:319.999872pt;}
.fs5{font-size:499.199800pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:48.373631pt;}
.y30{bottom:77.173620pt;}
.y2f{bottom:105.973608pt;}
.y7f{bottom:119.253603pt;}
.y5e{bottom:129.493599pt;}
.y2e{bottom:134.773597pt;}
.y7e{bottom:147.093592pt;}
.y34{bottom:152.533590pt;}
.y5d{bottom:162.933585pt;}
.y2d{bottom:163.573585pt;}
.y33{bottom:181.333578pt;}
.y5c{bottom:183.093577pt;}
.y2c{bottom:192.373574pt;}
.y4d{bottom:193.013573pt;}
.y1e{bottom:195.893572pt;}
.y32{bottom:210.133567pt;}
.y7d{bottom:210.933566pt;}
.y72{bottom:213.973565pt;}
.y47{bottom:220.213563pt;}
.y2b{bottom:221.173562pt;}
.y1d{bottom:224.693561pt;}
.y7c{bottom:241.653554pt;}
.y71{bottom:243.893553pt;}
.y6a{bottom:248.693551pt;}
.y46{bottom:249.013551pt;}
.y5b{bottom:250.133551pt;}
.y1c{bottom:253.493549pt;}
.y4c{bottom:257.013548pt;}
.y7b{bottom:267.413544pt;}
.y45{bottom:277.813540pt;}
.y70{bottom:279.733539pt;}
.y1b{bottom:282.293538pt;}
.y5a{bottom:283.573537pt;}
.y69{bottom:284.533537pt;}
.yb{bottom:284.693537pt;}
.y3{bottom:286.613536pt;}
.y7a{bottom:298.613531pt;}
.y51{bottom:299.573531pt;}
.y59{bottom:303.733529pt;}
.y44{bottom:306.613528pt;}
.ya{bottom:307.733528pt;}
.y6f{bottom:309.653527pt;}
.y1a{bottom:311.093526pt;}
.y68{bottom:314.453525pt;}
.y9{bottom:330.773518pt;}
.y43{bottom:335.413517pt;}
.y50{bottom:338.133515pt;}
.y6e{bottom:339.573515pt;}
.y67{bottom:344.373513pt;}
.y8{bottom:353.813509pt;}
.y79{bottom:365.333505pt;}
.y58{bottom:370.773502pt;}
.y2{bottom:373.013501pt;}
.y6d{bottom:375.573500pt;}
.y7{bottom:376.853500pt;}
.y66{bottom:380.373499pt;}
.y86{bottom:390.613494pt;}
.y78{bottom:399.413491pt;}
.y6{bottom:399.893491pt;}
.y57{bottom:404.213489pt;}
.y65{bottom:416.213484pt;}
.y85{bottom:419.413483pt;}
.y5{bottom:422.933481pt;}
.y56{bottom:424.373481pt;}
.y23{bottom:429.173479pt;}
.y4b{bottom:430.293479pt;}
.y77{bottom:430.773478pt;}
.y84{bottom:448.213471pt;}
.y64{bottom:452.213470pt;}
.y4f{bottom:453.493469pt;}
.y22{bottom:457.973467pt;}
.y1{bottom:459.413467pt;}
.y6c{bottom:465.173465pt;}
.y83{bottom:477.013460pt;}
.y76{bottom:486.293456pt;}
.y21{bottom:486.773456pt;}
.y55{bottom:491.413454pt;}
.y4e{bottom:492.053454pt;}
.y4{bottom:494.773453pt;}
.y16{bottom:496.373452pt;}
.y27{bottom:498.293451pt;}
.y38{bottom:505.493448pt;}
.y82{bottom:505.813448pt;}
.y6b{bottom:508.053447pt;}
.y54{bottom:511.573446pt;}
.y75{bottom:514.133445pt;}
.y20{bottom:515.573444pt;}
.y11{bottom:521.973442pt;}
.y3d{bottom:524.053441pt;}
.y15{bottom:525.173441pt;}
.y62{bottom:525.333441pt;}
.y4a{bottom:525.813440pt;}
.y26{bottom:527.093440pt;}
.y19{bottom:528.533439pt;}
.y37{bottom:534.293437pt;}
.y81{bottom:534.613437pt;}
.y74{bottom:541.973434pt;}
.y1f{bottom:544.373433pt;}
.y53{bottom:545.013433pt;}
.y10{bottom:550.773430pt;}
.y3c{bottom:552.853430pt;}
.y14{bottom:553.973429pt;}
.y61{bottom:554.133429pt;}
.y49{bottom:554.613429pt;}
.y40{bottom:554.773429pt;}
.y25{bottom:555.893428pt;}
.y18{bottom:557.333428pt;}
.y42{bottom:558.773427pt;}
.y36{bottom:563.093425pt;}
.y2a{bottom:569.333423pt;}
.y89{bottom:569.813423pt;}
.yd{bottom:569.973423pt;}
.y52{bottom:572.533422pt;}
.yf{bottom:579.573419pt;}
.y3b{bottom:581.653418pt;}
.y13{bottom:582.773418pt;}
.y60{bottom:582.933417pt;}
.y48{bottom:583.413417pt;}
.y3f{bottom:583.573417pt;}
.y24{bottom:584.693417pt;}
.y17{bottom:586.133416pt;}
.y41{bottom:587.573416pt;}
.y63{bottom:589.813415pt;}
.y35{bottom:591.893414pt;}
.y87{bottom:595.413413pt;}
.y29{bottom:598.133411pt;}
.y88{bottom:598.613411pt;}
.yc{bottom:598.773411pt;}
.y73{bottom:600.053411pt;}
.y80{bottom:601.493410pt;}
.ye{bottom:609.013407pt;}
.y3a{bottom:610.453406pt;}
.y12{bottom:611.573406pt;}
.y5f{bottom:611.733406pt;}
.y3e{bottom:612.373406pt;}
.y28{bottom:626.933400pt;}
.y39{bottom:639.253395pt;}
.h4{height:66.515598pt;}
.ha{height:66.749973pt;}
.h3{height:70.199034pt;}
.h5{height:74.314970pt;}
.hf{height:80.528608pt;}
.he{height:80.908128pt;}
.hd{height:87.139165pt;}
.hb{height:93.749723pt;}
.h10{height:103.320896pt;}
.h2{height:105.562458pt;}
.h8{height:120.792912pt;}
.hc{height:134.014026pt;}
.h9{height:160.456256pt;}
.h7{height:169.933995pt;}
.h1{height:263.906144pt;}
.h6{height:398.043591pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x14{left:90.867430pt;}
.x19{left:100.947426pt;}
.xf{left:101.907426pt;}
.x13{left:106.707424pt;}
.x18{left:116.627420pt;}
.x1b{left:120.947418pt;}
.xe{left:123.987417pt;}
.x10{left:132.307414pt;}
.x22{left:136.307945pt;}
.x16{left:137.587945pt;}
.xd{left:151.027940pt;}
.x20{left:156.947937pt;}
.x23{left:158.227937pt;}
.x6{left:163.347935pt;}
.x1f{left:175.347930pt;}
.x1{left:176.627929pt;}
.x21{left:180.947928pt;}
.xa{left:191.027924pt;}
.x7{left:199.827920pt;}
.x1e{left:249.587900pt;}
.x5{left:265.747894pt;}
.x9{left:281.107888pt;}
.x1c{left:291.507883pt;}
.x2{left:293.587883pt;}
.x24{left:301.427879pt;}
.x1d{left:318.867872pt;}
.xc{left:329.427868pt;}
.x4{left:342.547863pt;}
.x3{left:380.947848pt;}
.x11{left:384.627846pt;}
.x12{left:446.227822pt;}
.xb{left:454.867818pt;}
.x1a{left:487.027805pt;}
.x17{left:504.947798pt;}
.x8{left:506.867797pt;}
.x15{left:749.747700pt;}
}




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