
    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_bb5fdb93fa50a4c18b07de77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_10d70a18c10e2496d57b75e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1a9cc6c9ae0406ceed94c199.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_553c1a482c0360908be25dec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_10d70a18c10e2496d57b75e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1a51c6e0329482ca0e88543a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_be36a031f50a406bfc3201da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_10d70a18c10e2496d57b75e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3fce69ea05323febb9e023a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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);}
.v3{vertical-align:-11.610960px;}
.v2{vertical-align:-6.492540px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.905100px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000040px;}
.ls4{letter-spacing:20.335907px;}
.ls5{letter-spacing:22.726500px;}
.ls2{letter-spacing:208.238665px;}
.ls1{letter-spacing:213.483907px;}
.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;}
}
.ws6{word-spacing:-19.943850px;}
.ws7{word-spacing:-19.655853px;}
.ws1{word-spacing:-16.620140px;}
.ws0{word-spacing:-16.620100px;}
.wsb{word-spacing:-8.655114px;}
.wse{word-spacing:-6.898463px;}
.wsa{word-spacing:-6.445934px;}
.ws3{word-spacing:-6.284155px;}
.ws5{word-spacing:-6.129772px;}
.wsd{word-spacing:-6.116443px;}
.ws9{word-spacing:0.000000px;}
.ws4{word-spacing:105.048229px;}
.ws2{word-spacing:107.686806px;}
.wsc{word-spacing:327.884160px;}
.ws8{word-spacing:333.081780px;}
._0{margin-left:-20.090952px;}
._2{width:361.183200px;}
._1{width:366.380820px;}
.fc3{color:rgb(255,63,0);}
.fc2{color:rgb(0,153,0);}
.fc1{color:rgb(153,76,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:17.452500px;}
.fsb{font-size:22.081020px;}
.fs2{font-size:22.129140px;}
.fs1{font-size:22.686480px;}
.fs8{font-size:22.737240px;}
.fs6{font-size:23.270520px;}
.fsa{font-size:23.433900px;}
.fsc{font-size:24.000540px;}
.fsd{font-size:24.904200px;}
.fs9{font-size:31.245900px;}
.fs5{font-size:44.999460px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000360px;}
.fs3{font-size:71.999460px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.164745px;}
.y37{bottom:3.164775px;}
.y3b{bottom:3.276090px;}
.y35{bottom:3.276180px;}
.y39{bottom:3.797895px;}
.y2{bottom:5.312805px;}
.yb{bottom:5.589420px;}
.yc{bottom:5.589555px;}
.y40{bottom:5.858535px;}
.y6b{bottom:6.311640px;}
.y4d{bottom:6.591585px;}
.y2a{bottom:6.614775px;}
.y1a{bottom:6.639420px;}
.y1b{bottom:6.639555px;}
.y4e{bottom:7.101345px;}
.y67{bottom:8.869890px;}
.y60{bottom:9.680685px;}
.y1e{bottom:10.308810px;}
.y5e{bottom:11.846910px;}
.y12{bottom:12.071310px;}
.y31{bottom:12.682335px;}
.y41{bottom:13.693020px;}
.ya{bottom:15.042150px;}
.y19{bottom:15.859890px;}
.y49{bottom:15.866970px;}
.y3c{bottom:15.901740px;}
.y6d{bottom:16.688385px;}
.y62{bottom:18.881085px;}
.y47{bottom:20.440905px;}
.y5a{bottom:22.267125px;}
.y29{bottom:23.205960px;}
.y32{bottom:25.074315px;}
.y11{bottom:28.810890px;}
.y4{bottom:28.810905px;}
.y6{bottom:28.810920px;}
.y15{bottom:28.810935px;}
.y4a{bottom:30.077835px;}
.y3d{bottom:30.445890px;}
.y30{bottom:31.117170px;}
.y65{bottom:33.870285px;}
.y8{bottom:33.947550px;}
.yd{bottom:33.947835px;}
.y17{bottom:34.300815px;}
.y1c{bottom:34.301085px;}
.y1f{bottom:34.403940px;}
.y5c{bottom:34.847745px;}
.y69{bottom:37.180470px;}
.y46{bottom:37.180500px;}
.y5f{bottom:37.281960px;}
.y6a{bottom:37.441890px;}
.y66{bottom:38.870160px;}
.y43{bottom:39.165420px;}
.y5d{bottom:39.447765px;}
.y4c{bottom:39.553425px;}
.y27{bottom:39.797130px;}
.y3f{bottom:40.143750px;}
.y59{bottom:40.701960px;}
.y50{bottom:41.303700px;}
.y9{bottom:43.400370px;}
.y18{bottom:43.521405px;}
.y44{bottom:44.380995px;}
.y10{bottom:45.550470px;}
.y61{bottom:46.482360px;}
.y42{bottom:46.853295px;}
.y6c{bottom:47.818650px;}
.y51{bottom:48.420645px;}
.y5b{bottom:48.648450px;}
.y64{bottom:48.870705px;}
.y2f{bottom:49.552050px;}
.y63{bottom:51.082935px;}
.y4f{bottom:51.626385px;}
.y6e{bottom:53.007390px;}
.y4b{bottom:53.764140px;}
.y3e{bottom:54.687780px;}
.y26{bottom:56.388315px;}
.y58{bottom:59.136795px;}
.y2d{bottom:68.571945px;}
.y52{bottom:73.090005px;}
.y2e{bottom:76.941915px;}
.y57{bottom:77.571660px;}
.y6f{bottom:79.007055px;}
.y2c{bottom:96.006495px;}
.y20{bottom:104.611980px;}
.y53{bottom:127.711275px;}
.y70{bottom:134.840490px;}
.y21{bottom:161.391525px;}
.y54{bottom:182.332830px;}
.y71{bottom:190.673565px;}
.y22{bottom:218.171055px;}
.y55{bottom:236.954475px;}
.y72{bottom:246.506535px;}
.y23{bottom:274.950510px;}
.y14{bottom:278.604720px;}
.y13{bottom:278.604735px;}
.y68{bottom:278.604750px;}
.y16{bottom:280.104825px;}
.y56{bottom:291.575760px;}
.y73{bottom:302.339610px;}
.y24{bottom:331.730055px;}
.y45{bottom:346.636230px;}
.ye{bottom:346.636245px;}
.yf{bottom:346.636260px;}
.y48{bottom:348.136335px;}
.y5{bottom:414.667740px;}
.y3{bottom:414.667755px;}
.y7{bottom:416.167800px;}
.y1{bottom:483.449295px;}
.y2b{bottom:630.473835px;}
.y1d{bottom:760.695945px;}
.y28{bottom:1036.746465px;}
.y25{bottom:1036.746480px;}
.y38{bottom:1156.788015px;}
.y3a{bottom:1158.104040px;}
.y34{bottom:1205.311470px;}
.y36{bottom:1205.971815px;}
.h1f{height:16.086368px;}
.hb{height:16.121424px;}
.h8{height:16.527455px;}
.h1d{height:16.564435px;}
.h1b{height:16.952937px;}
.h20{height:17.484768px;}
.h21{height:18.143099px;}
.h16{height:18.434835px;}
.h18{height:19.215075px;}
.h13{height:20.357565px;}
.h3{height:21.035340px;}
.h17{height:21.600000px;}
.h1a{height:22.121715px;}
.h1e{height:22.763126px;}
.h15{height:32.782810px;}
.hc{height:34.562124px;}
.h9{height:35.432555px;}
.h12{height:36.948750px;}
.h10{height:39.339844px;}
.h6{height:42.385755px;}
.h19{height:43.681903px;}
.h4{height:43.711200px;}
.h1c{height:50.755320px;}
.he{height:52.452732px;}
.h11{height:53.539935px;}
.ha{height:59.125320px;}
.h7{height:65.031315px;}
.h5{height:68.031495px;}
.hf{height:70.131120px;}
.h14{height:111.276570px;}
.hd{height:355.968000px;}
.h2{height:1262.699895px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w10{width:8.339805px;}
.w5{width:31.676745px;}
.w4{width:73.890285px;}
.w6{width:74.265300px;}
.wa{width:75.390375px;}
.w13{width:75.975870px;}
.w12{width:83.057100px;}
.wb{width:158.536770px;}
.w7{width:166.408875px;}
.w11{width:200.598525px;}
.wc{width:206.416920px;}
.w9{width:208.292040px;}
.w8{width:250.175625px;}
.w14{width:285.637890px;}
.w15{width:341.421600px;}
.we{width:345.591915px;}
.wf{width:805.500180px;}
.wd{width:817.500090px;}
.w3{width:892.500000px;}
.w2{width:892.799835px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:1.824525px;}
.x4{left:3.343335px;}
.x17{left:10.164330px;}
.x2{left:17.362485px;}
.x16{left:18.504570px;}
.x6{left:19.635150px;}
.xd{left:23.130285px;}
.x31{left:26.844810px;}
.x32{left:31.431795px;}
.x14{left:37.499805px;}
.xc{left:40.410735px;}
.x1{left:43.826310px;}
.x1a{left:46.200195px;}
.x23{left:55.858620px;}
.x11{left:59.511015px;}
.x8{left:63.201675px;}
.x22{left:64.255875px;}
.x38{left:65.744565px;}
.x10{left:79.979790px;}
.x2c{left:83.522685px;}
.x3a{left:85.877100px;}
.x2b{left:91.727505px;}
.xa{left:93.010110px;}
.x33{left:95.174565px;}
.x20{left:97.842135px;}
.x2d{left:100.471800px;}
.x39{left:103.850325px;}
.x21{left:106.239120px;}
.x19{left:108.712635px;}
.x13{left:112.567380px;}
.x24{left:117.042390px;}
.x3{left:118.841670px;}
.x2e{left:122.181525px;}
.x29{left:124.544040px;}
.x3b{left:126.766485px;}
.x12{left:128.939760px;}
.x2a{left:132.748635px;}
.x26{left:133.758450px;}
.x30{left:135.226635px;}
.x35{left:139.226070px;}
.x25{left:143.125665px;}
.x27{left:149.173560px;}
.x5{left:151.643490px;}
.x34{left:155.161830px;}
.x37{left:159.142635px;}
.x28{left:165.342495px;}
.x36{left:171.097500px;}
.x7{left:227.033865px;}
.xe{left:231.157425px;}
.x1b{left:282.954480px;}
.x1f{left:343.382610px;}
.x9{left:394.567800px;}
.x15{left:408.000195px;}
.x2f{left:412.170510px;}
.x1d{left:541.593195px;}
.xb{left:645.868470px;}
.xf{left:646.993560px;}
.x1e{left:650.750610px;}
.x1c{left:855.411900px;}
@media print{
.v3{vertical-align:-10.320853pt;}
.v2{vertical-align:-5.771147pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.804533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000036pt;}
.ls4{letter-spacing:18.076362pt;}
.ls5{letter-spacing:20.201334pt;}
.ls2{letter-spacing:185.101035pt;}
.ls1{letter-spacing:189.763473pt;}
.ws6{word-spacing:-17.727867pt;}
.ws7{word-spacing:-17.471869pt;}
.ws1{word-spacing:-14.773458pt;}
.ws0{word-spacing:-14.773422pt;}
.wsb{word-spacing:-7.693435pt;}
.wse{word-spacing:-6.131967pt;}
.wsa{word-spacing:-5.729719pt;}
.ws3{word-spacing:-5.585916pt;}
.ws5{word-spacing:-5.448686pt;}
.wsd{word-spacing:-5.436838pt;}
.ws9{word-spacing:0.000000pt;}
.ws4{word-spacing:93.376204pt;}
.ws2{word-spacing:95.721606pt;}
.wsc{word-spacing:291.452587pt;}
.ws8{word-spacing:296.072693pt;}
._0{margin-left:-17.858624pt;}
._2{width:321.051733pt;}
._1{width:325.671840pt;}
.fs7{font-size:15.513333pt;}
.fsb{font-size:19.627573pt;}
.fs2{font-size:19.670347pt;}
.fs1{font-size:20.165760pt;}
.fs8{font-size:20.210880pt;}
.fs6{font-size:20.684907pt;}
.fsa{font-size:20.830133pt;}
.fsc{font-size:21.333813pt;}
.fsd{font-size:22.137067pt;}
.fs9{font-size:27.774133pt;}
.fs5{font-size:39.999520pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333653pt;}
.fs3{font-size:63.999520pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.813107pt;}
.y37{bottom:2.813133pt;}
.y3b{bottom:2.912080pt;}
.y35{bottom:2.912160pt;}
.y39{bottom:3.375907pt;}
.y2{bottom:4.722493pt;}
.yb{bottom:4.968373pt;}
.yc{bottom:4.968493pt;}
.y40{bottom:5.207587pt;}
.y6b{bottom:5.610347pt;}
.y4d{bottom:5.859187pt;}
.y2a{bottom:5.879800pt;}
.y1a{bottom:5.901707pt;}
.y1b{bottom:5.901827pt;}
.y4e{bottom:6.312307pt;}
.y67{bottom:7.884347pt;}
.y60{bottom:8.605053pt;}
.y1e{bottom:9.163387pt;}
.y5e{bottom:10.530587pt;}
.y12{bottom:10.730053pt;}
.y31{bottom:11.273187pt;}
.y41{bottom:12.171573pt;}
.ya{bottom:13.370800pt;}
.y19{bottom:14.097680pt;}
.y49{bottom:14.103973pt;}
.y3c{bottom:14.134880pt;}
.y6d{bottom:14.834120pt;}
.y62{bottom:16.783187pt;}
.y47{bottom:18.169693pt;}
.y5a{bottom:19.793000pt;}
.y29{bottom:20.627520pt;}
.y32{bottom:22.288280pt;}
.y11{bottom:25.609680pt;}
.y4{bottom:25.609693pt;}
.y6{bottom:25.609707pt;}
.y15{bottom:25.609720pt;}
.y4a{bottom:26.735853pt;}
.y3d{bottom:27.063013pt;}
.y30{bottom:27.659707pt;}
.y65{bottom:30.106920pt;}
.y8{bottom:30.175600pt;}
.yd{bottom:30.175853pt;}
.y17{bottom:30.489613pt;}
.y1c{bottom:30.489853pt;}
.y1f{bottom:30.581280pt;}
.y5c{bottom:30.975773pt;}
.y69{bottom:33.049307pt;}
.y46{bottom:33.049333pt;}
.y5f{bottom:33.139520pt;}
.y6a{bottom:33.281680pt;}
.y66{bottom:34.551253pt;}
.y43{bottom:34.813707pt;}
.y5d{bottom:35.064680pt;}
.y4c{bottom:35.158600pt;}
.y27{bottom:35.375227pt;}
.y3f{bottom:35.683333pt;}
.y59{bottom:36.179520pt;}
.y50{bottom:36.714400pt;}
.y9{bottom:38.578107pt;}
.y18{bottom:38.685693pt;}
.y44{bottom:39.449773pt;}
.y10{bottom:40.489307pt;}
.y61{bottom:41.317653pt;}
.y42{bottom:41.647373pt;}
.y6c{bottom:42.505467pt;}
.y51{bottom:43.040573pt;}
.y5b{bottom:43.243067pt;}
.y64{bottom:43.440627pt;}
.y2f{bottom:44.046267pt;}
.y63{bottom:45.407053pt;}
.y4f{bottom:45.890120pt;}
.y6e{bottom:47.117680pt;}
.y4b{bottom:47.790347pt;}
.y3e{bottom:48.611360pt;}
.y26{bottom:50.122947pt;}
.y58{bottom:52.566040pt;}
.y2d{bottom:60.952840pt;}
.y52{bottom:64.968893pt;}
.y2e{bottom:68.392813pt;}
.y57{bottom:68.952587pt;}
.y6f{bottom:70.228493pt;}
.y2c{bottom:85.339107pt;}
.y20{bottom:92.988427pt;}
.y53{bottom:113.521133pt;}
.y70{bottom:119.858213pt;}
.y21{bottom:143.459133pt;}
.y54{bottom:162.073627pt;}
.y71{bottom:169.487613pt;}
.y22{bottom:193.929827pt;}
.y55{bottom:210.626200pt;}
.y72{bottom:219.116920pt;}
.y23{bottom:244.400453pt;}
.y14{bottom:247.648640pt;}
.y13{bottom:247.648653pt;}
.y68{bottom:247.648667pt;}
.y16{bottom:248.982067pt;}
.y56{bottom:259.178453pt;}
.y73{bottom:268.746320pt;}
.y24{bottom:294.871160pt;}
.y45{bottom:308.121093pt;}
.ye{bottom:308.121107pt;}
.yf{bottom:308.121120pt;}
.y48{bottom:309.454520pt;}
.y5{bottom:368.593547pt;}
.y3{bottom:368.593560pt;}
.y7{bottom:369.926933pt;}
.y1{bottom:429.732707pt;}
.y2b{bottom:560.421187pt;}
.y1d{bottom:676.174173pt;}
.y28{bottom:921.552413pt;}
.y25{bottom:921.552427pt;}
.y38{bottom:1028.256013pt;}
.y3a{bottom:1029.425813pt;}
.y34{bottom:1071.387973pt;}
.y36{bottom:1071.974947pt;}
.h1f{height:14.298994pt;}
.hb{height:14.330155pt;}
.h8{height:14.691071pt;}
.h1d{height:14.723942pt;}
.h1b{height:15.069278pt;}
.h20{height:15.542016pt;}
.h21{height:16.127199pt;}
.h16{height:16.386520pt;}
.h18{height:17.080067pt;}
.h13{height:18.095613pt;}
.h3{height:18.698080pt;}
.h17{height:19.200000pt;}
.h1a{height:19.663747pt;}
.h1e{height:20.233890pt;}
.h15{height:29.140275pt;}
.hc{height:30.721888pt;}
.h9{height:31.495605pt;}
.h12{height:32.843333pt;}
.h10{height:34.968750pt;}
.h6{height:37.676227pt;}
.h19{height:38.828358pt;}
.h4{height:38.854400pt;}
.h1c{height:45.115840pt;}
.he{height:46.624650pt;}
.h11{height:47.591053pt;}
.ha{height:52.555840pt;}
.h7{height:57.805613pt;}
.h5{height:60.472440pt;}
.hf{height:62.338773pt;}
.h14{height:98.912507pt;}
.hd{height:316.416000pt;}
.h2{height:1122.399907pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w10{width:7.413160pt;}
.w5{width:28.157107pt;}
.w4{width:65.680253pt;}
.w6{width:66.013600pt;}
.wa{width:67.013667pt;}
.w13{width:67.534107pt;}
.w12{width:73.828533pt;}
.wb{width:140.921573pt;}
.w7{width:147.919000pt;}
.w11{width:178.309800pt;}
.wc{width:183.481707pt;}
.w9{width:185.148480pt;}
.w8{width:222.378333pt;}
.w14{width:253.900347pt;}
.w15{width:303.485867pt;}
.we{width:307.192813pt;}
.wf{width:716.000160pt;}
.wd{width:726.666747pt;}
.w3{width:793.333333pt;}
.w2{width:793.599853pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.621800pt;}
.x4{left:2.971853pt;}
.x17{left:9.034960pt;}
.x2{left:15.433320pt;}
.x16{left:16.448507pt;}
.x6{left:17.453467pt;}
.xd{left:20.560253pt;}
.x31{left:23.862053pt;}
.x32{left:27.939373pt;}
.x14{left:33.333160pt;}
.xc{left:35.920653pt;}
.x1{left:38.956720pt;}
.x1a{left:41.066840pt;}
.x23{left:49.652107pt;}
.x11{left:52.898680pt;}
.x8{left:56.179267pt;}
.x22{left:57.116333pt;}
.x38{left:58.439613pt;}
.x10{left:71.093147pt;}
.x2c{left:74.242387pt;}
.x3a{left:76.335200pt;}
.x2b{left:81.535560pt;}
.xa{left:82.675653pt;}
.x33{left:84.599613pt;}
.x20{left:86.970787pt;}
.x2d{left:89.308267pt;}
.x39{left:92.311400pt;}
.x21{left:94.434773pt;}
.x19{left:96.633453pt;}
.x13{left:100.059893pt;}
.x24{left:104.037680pt;}
.x3{left:105.637040pt;}
.x2e{left:108.605800pt;}
.x29{left:110.705813pt;}
.x3b{left:112.681320pt;}
.x12{left:114.613120pt;}
.x2a{left:117.998787pt;}
.x26{left:118.896400pt;}
.x30{left:120.201453pt;}
.x35{left:123.756507pt;}
.x25{left:127.222813pt;}
.x27{left:132.598720pt;}
.x5{left:134.794213pt;}
.x34{left:137.921627pt;}
.x37{left:141.460120pt;}
.x28{left:146.971107pt;}
.x36{left:152.086667pt;}
.x7{left:201.807880pt;}
.xe{left:205.473267pt;}
.x1b{left:251.515093pt;}
.x1f{left:305.228987pt;}
.x9{left:350.726933pt;}
.x15{left:362.666840pt;}
.x2f{left:366.373787pt;}
.x1d{left:481.416173pt;}
.xb{left:574.105307pt;}
.xf{left:575.105387pt;}
.x1e{left:578.444987pt;}
.x1c{left:760.366133pt;}
}




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