
    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_d3de162447b62cdfa3e19895.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_4c70a56c12e2ed3a6a3f2e1f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_f3e9d2b2b234ec28c8d72048.woff')format("woff");}.ff3{font-family:ff3;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v4{vertical-align:24.420000px;}
.v2{vertical-align:26.640000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.326400px;}
.ls8{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls6{letter-spacing:1.659000px;}
.ls1{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.lsa{letter-spacing:6.000000px;}
.lsb{letter-spacing:6.352200px;}
.ls2{letter-spacing:6.600000px;}
.lsd{letter-spacing:7.200000px;}
.lsc{letter-spacing:8.672400px;}
.ls3{letter-spacing:10.200000px;}
.lse{letter-spacing:19.800000px;}
.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;}
}
.wsb{word-spacing:-36.102000px;}
.ws8{word-spacing:-22.860000px;}
.ws2{word-spacing:-20.232000px;}
.wsa{word-spacing:-18.546000px;}
.ws6{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.860000px;}
.ws9{word-spacing:-16.302000px;}
.ws5{word-spacing:-14.079000px;}
.ws4{word-spacing:-12.139200px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-21.024000px;}
._1d{margin-left:-19.800000px;}
._b{margin-left:-17.784000px;}
._1c{margin-left:-11.690400px;}
._4{margin-left:-10.506000px;}
._9{margin-left:-8.920800px;}
._15{margin-left:-7.850400px;}
._3{margin-left:-6.666000px;}
._5{margin-left:-5.508000px;}
._0{margin-left:-3.906000px;}
._7{margin-left:-2.448000px;}
._2{margin-left:-1.320000px;}
._8{width:1.800000px;}
._1{width:3.780000px;}
._d{width:5.034000px;}
._12{width:6.113400px;}
._11{width:7.200000px;}
._10{width:8.280000px;}
._14{width:9.313200px;}
._13{width:10.396800px;}
._6{width:11.880000px;}
._16{width:13.065000px;}
._c{width:14.509200px;}
._f{width:15.766800px;}
._18{width:17.047800px;}
._e{width:18.432000px;}
._1b{width:22.837200px;}
._1a{width:26.293200px;}
._19{width:27.722400px;}
._17{width:56.923800px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs9{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.839050px;}
.y88{bottom:107.840400px;}
.y44{bottom:171.814500px;}
.yc8{bottom:171.816000px;}
.yaa{bottom:172.735800px;}
.y87{bottom:177.364500px;}
.y20{bottom:178.246050px;}
.yc7{bottom:188.316000px;}
.y43{bottom:193.864500px;}
.ya9{bottom:194.635950px;}
.y66{bottom:196.446150px;}
.y1f{bottom:199.846200px;}
.y42{bottom:210.364500px;}
.yc6{bottom:210.366000px;}
.ya8{bottom:216.535800px;}
.y65{bottom:218.046150px;}
.y1e{bottom:221.446200px;}
.y86{bottom:234.102150px;}
.ya7{bottom:238.435800px;}
.y64{bottom:239.346150px;}
.y41{bottom:242.502150px;}
.y1d{bottom:243.046200px;}
.y85{bottom:256.002150px;}
.ya6{bottom:260.335950px;}
.y63{bottom:260.646150px;}
.y40{bottom:264.102150px;}
.y1c{bottom:264.646200px;}
.y84{bottom:277.902150px;}
.y62{bottom:281.946150px;}
.ya5{bottom:282.235950px;}
.y3f{bottom:285.702150px;}
.y1b{bottom:286.246050px;}
.y83{bottom:299.802150px;}
.y61{bottom:303.246300px;}
.ya4{bottom:304.135800px;}
.y3e{bottom:307.302150px;}
.y1a{bottom:307.846050px;}
.yc5{bottom:320.399700px;}
.y82{bottom:321.702150px;}
.y60{bottom:324.546150px;}
.ya3{bottom:326.035800px;}
.y3d{bottom:328.902150px;}
.y19{bottom:329.446200px;}
.y81{bottom:343.602150px;}
.y5f{bottom:345.846150px;}
.ya2{bottom:347.935800px;}
.y3c{bottom:350.502150px;}
.y18{bottom:351.046200px;}
.yc4{bottom:354.599550px;}
.y5e{bottom:367.146150px;}
.ya1{bottom:369.835950px;}
.y3b{bottom:372.102150px;}
.y17{bottom:372.646200px;}
.yc3{bottom:374.399700px;}
.y80{bottom:377.958000px;}
.y5d{bottom:388.446150px;}
.ya0{bottom:391.735950px;}
.y3a{bottom:393.702150px;}
.yc2{bottom:394.199700px;}
.y16{bottom:394.246050px;}
.y7f{bottom:399.558000px;}
.y5c{bottom:409.746300px;}
.y9f{bottom:413.635800px;}
.yc1{bottom:413.999700px;}
.y39{bottom:415.302150px;}
.y15{bottom:415.846050px;}
.y7e{bottom:421.158000px;}
.y5b{bottom:431.046150px;}
.yc0{bottom:433.799700px;}
.y9e{bottom:435.535800px;}
.y14{bottom:437.446200px;}
.y38{bottom:449.658000px;}
.y5a{bottom:452.346150px;}
.ybf{bottom:453.599550px;}
.y7d{bottom:455.514000px;}
.y9d{bottom:457.435800px;}
.y13{bottom:459.046200px;}
.y37{bottom:471.258000px;}
.ybe{bottom:473.399700px;}
.y7c{bottom:477.413850px;}
.y9c{bottom:479.335950px;}
.y12{bottom:480.646200px;}
.y59{bottom:486.402150px;}
.y36{bottom:492.858000px;}
.ybd{bottom:493.199700px;}
.y7b{bottom:499.313850px;}
.y11{bottom:502.246050px;}
.y58{bottom:507.702150px;}
.ybc{bottom:512.999700px;}
.y9b{bottom:513.991800px;}
.y35{bottom:514.458000px;}
.y7a{bottom:521.214000px;}
.y10{bottom:523.846050px;}
.y57{bottom:529.002150px;}
.ybb{bottom:532.799700px;}
.y9a{bottom:535.891800px;}
.y34{bottom:536.058000px;}
.y79{bottom:543.114000px;}
.yf{bottom:545.446200px;}
.y56{bottom:550.302150px;}
.y33{bottom:557.658000px;}
.y99{bottom:557.791800px;}
.yba{bottom:561.103650px;}
.y78{bottom:565.014000px;}
.ye{bottom:567.046200px;}
.y32{bottom:579.258000px;}
.y98{bottom:579.691800px;}
.y55{bottom:584.358000px;}
.y77{bottom:586.913850px;}
.yd{bottom:588.646200px;}
.y31{bottom:600.858000px;}
.y97{bottom:601.591800px;}
.y54{bottom:605.658000px;}
.y76{bottom:608.813850px;}
.yb9{bottom:609.207600px;}
.yc{bottom:610.246050px;}
.yd5{bottom:612.311400px;}
.y30{bottom:622.458000px;}
.y96{bottom:623.491800px;}
.y53{bottom:626.958000px;}
.yb8{bottom:629.007450px;}
.yd4{bottom:630.311400px;}
.y75{bottom:630.714000px;}
.yb{bottom:631.846200px;}
.y2f{bottom:644.058000px;}
.y52{bottom:648.258000px;}
.yd3{bottom:648.311400px;}
.yb7{bottom:648.807450px;}
.y74{bottom:652.614000px;}
.ya{bottom:653.446050px;}
.y95{bottom:658.147650px;}
.y2e{bottom:665.658000px;}
.yb6{bottom:668.607450px;}
.y51{bottom:669.558000px;}
.y73{bottom:674.514000px;}
.y9{bottom:675.046200px;}
.y94{bottom:680.047650px;}
.y2d{bottom:687.258000px;}
.yb5{bottom:688.407600px;}
.y50{bottom:690.858000px;}
.y72{bottom:696.413850px;}
.y8{bottom:696.646200px;}
.y93{bottom:701.947650px;}
.y2c{bottom:708.858000px;}
.yd2{bottom:709.511400px;}
.y4f{bottom:712.158000px;}
.yb4{bottom:716.711400px;}
.y7{bottom:718.246050px;}
.y71{bottom:718.313850px;}
.y92{bottom:723.847650px;}
.yd1{bottom:729.311400px;}
.y2b{bottom:730.458000px;}
.y4e{bottom:733.458000px;}
.y6{bottom:739.846200px;}
.y70{bottom:740.214000px;}
.yd0{bottom:749.111550px;}
.y2a{bottom:752.058000px;}
.y4d{bottom:754.758000px;}
.y91{bottom:758.503650px;}
.y6f{bottom:762.114000px;}
.yb3{bottom:764.815350px;}
.ycf{bottom:768.911550px;}
.y29{bottom:773.658000px;}
.y4c{bottom:776.058000px;}
.y90{bottom:780.403500px;}
.y6e{bottom:784.014000px;}
.yb2{bottom:786.415350px;}
.yce{bottom:788.711400px;}
.y4b{bottom:797.358000px;}
.y6d{bottom:805.913850px;}
.y28{bottom:808.014000px;}
.yb1{bottom:808.015350px;}
.ycd{bottom:808.511400px;}
.y8f{bottom:815.059500px;}
.y6c{bottom:827.814000px;}
.ycc{bottom:828.311400px;}
.y27{bottom:829.613850px;}
.yb0{bottom:829.615350px;}
.y4a{bottom:831.413850px;}
.y8e{bottom:836.959500px;}
.y5{bottom:847.846200px;}
.ycb{bottom:848.111550px;}
.y6b{bottom:849.714000px;}
.y26{bottom:851.214000px;}
.yaf{bottom:851.215350px;}
.y49{bottom:852.714000px;}
.y8d{bottom:858.859500px;}
.yca{bottom:867.911550px;}
.y6a{bottom:871.613850px;}
.y25{bottom:872.814000px;}
.yae{bottom:872.815500px;}
.y48{bottom:874.014000px;}
.y8c{bottom:880.759500px;}
.y4{bottom:886.950000px;}
.y69{bottom:893.514000px;}
.y24{bottom:894.413850px;}
.yad{bottom:894.415350px;}
.y47{bottom:895.314000px;}
.yc9{bottom:907.511400px;}
.y68{bottom:915.413850px;}
.y8b{bottom:915.415350px;}
.y23{bottom:916.014000px;}
.yac{bottom:916.015350px;}
.y46{bottom:916.613850px;}
.y67{bottom:937.314000px;}
.y8a{bottom:937.315500px;}
.y22{bottom:937.613850px;}
.yab{bottom:937.615350px;}
.y45{bottom:937.913850px;}
.y3{bottom:942.211500px;}
.y21{bottom:959.214000px;}
.y89{bottom:959.215350px;}
.y2{bottom:960.211500px;}
.hb{height:34.734375px;}
.h4{height:40.523438px;}
.h3{height:43.523438px;}
.h8{height:46.312500px;}
.hc{height:54.996094px;}
.h5{height:56.041992px;}
.h2{height:57.890625px;}
.h9{height:61.136719px;}
.hd{height:63.679688px;}
.ha{height:68.321250px;}
.h7{height:69.468750px;}
.h6{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x7{left:108.035400px;}
.x1{left:129.295350px;}
.x4{left:150.555150px;}
.x2{left:174.670350px;}
.x5{left:265.546650px;}
.x3{left:294.577950px;}
.x8{left:553.449600px;}
.x6{left:611.164350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v4{vertical-align:21.706667pt;}
.v2{vertical-align:23.680000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.290133pt;}
.ls8{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls6{letter-spacing:1.474667pt;}
.ls1{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.lsa{letter-spacing:5.333333pt;}
.lsb{letter-spacing:5.646400pt;}
.ls2{letter-spacing:5.866667pt;}
.lsd{letter-spacing:6.400000pt;}
.lsc{letter-spacing:7.708800pt;}
.ls3{letter-spacing:9.066667pt;}
.lse{letter-spacing:17.600000pt;}
.wsb{word-spacing:-32.090667pt;}
.ws8{word-spacing:-20.320000pt;}
.ws2{word-spacing:-17.984000pt;}
.wsa{word-spacing:-16.485333pt;}
.ws6{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws9{word-spacing:-14.490667pt;}
.ws5{word-spacing:-12.514667pt;}
.ws4{word-spacing:-10.790400pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-18.688000pt;}
._1d{margin-left:-17.600000pt;}
._b{margin-left:-15.808000pt;}
._1c{margin-left:-10.391467pt;}
._4{margin-left:-9.338667pt;}
._9{margin-left:-7.929600pt;}
._15{margin-left:-6.978133pt;}
._3{margin-left:-5.925333pt;}
._5{margin-left:-4.896000pt;}
._0{margin-left:-3.472000pt;}
._7{margin-left:-2.176000pt;}
._2{margin-left:-1.173333pt;}
._8{width:1.600000pt;}
._1{width:3.360000pt;}
._d{width:4.474667pt;}
._12{width:5.434133pt;}
._11{width:6.400000pt;}
._10{width:7.360000pt;}
._14{width:8.278400pt;}
._13{width:9.241600pt;}
._6{width:10.560000pt;}
._16{width:11.613333pt;}
._c{width:12.897067pt;}
._f{width:14.014933pt;}
._18{width:15.153600pt;}
._e{width:16.384000pt;}
._1b{width:20.299733pt;}
._1a{width:23.371733pt;}
._19{width:24.642133pt;}
._17{width:50.598933pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.856933pt;}
.y88{bottom:95.858133pt;}
.y44{bottom:152.724000pt;}
.yc8{bottom:152.725333pt;}
.yaa{bottom:153.542933pt;}
.y87{bottom:157.657333pt;}
.y20{bottom:158.440933pt;}
.yc7{bottom:167.392000pt;}
.y43{bottom:172.324000pt;}
.ya9{bottom:173.009733pt;}
.y66{bottom:174.618800pt;}
.y1f{bottom:177.641067pt;}
.y42{bottom:186.990667pt;}
.yc6{bottom:186.992000pt;}
.ya8{bottom:192.476267pt;}
.y65{bottom:193.818800pt;}
.y1e{bottom:196.841067pt;}
.y86{bottom:208.090800pt;}
.ya7{bottom:211.942933pt;}
.y64{bottom:212.752133pt;}
.y41{bottom:215.557467pt;}
.y1d{bottom:216.041067pt;}
.y85{bottom:227.557467pt;}
.ya6{bottom:231.409733pt;}
.y63{bottom:231.685467pt;}
.y40{bottom:234.757467pt;}
.y1c{bottom:235.241067pt;}
.y84{bottom:247.024133pt;}
.y62{bottom:250.618800pt;}
.ya5{bottom:250.876400pt;}
.y3f{bottom:253.957467pt;}
.y1b{bottom:254.440933pt;}
.y83{bottom:266.490800pt;}
.y61{bottom:269.552267pt;}
.ya4{bottom:270.342933pt;}
.y3e{bottom:273.157467pt;}
.y1a{bottom:273.640933pt;}
.yc5{bottom:284.799733pt;}
.y82{bottom:285.957467pt;}
.y60{bottom:288.485467pt;}
.ya3{bottom:289.809600pt;}
.y3d{bottom:292.357467pt;}
.y19{bottom:292.841067pt;}
.y81{bottom:305.424133pt;}
.y5f{bottom:307.418800pt;}
.ya2{bottom:309.276267pt;}
.y3c{bottom:311.557467pt;}
.y18{bottom:312.041067pt;}
.yc4{bottom:315.199600pt;}
.y5e{bottom:326.352133pt;}
.ya1{bottom:328.743067pt;}
.y3b{bottom:330.757467pt;}
.y17{bottom:331.241067pt;}
.yc3{bottom:332.799733pt;}
.y80{bottom:335.962667pt;}
.y5d{bottom:345.285467pt;}
.ya0{bottom:348.209733pt;}
.y3a{bottom:349.957467pt;}
.yc2{bottom:350.399733pt;}
.y16{bottom:350.440933pt;}
.y7f{bottom:355.162667pt;}
.y5c{bottom:364.218933pt;}
.y9f{bottom:367.676267pt;}
.yc1{bottom:367.999733pt;}
.y39{bottom:369.157467pt;}
.y15{bottom:369.640933pt;}
.y7e{bottom:374.362667pt;}
.y5b{bottom:383.152133pt;}
.yc0{bottom:385.599733pt;}
.y9e{bottom:387.142933pt;}
.y14{bottom:388.841067pt;}
.y38{bottom:399.696000pt;}
.y5a{bottom:402.085467pt;}
.ybf{bottom:403.199600pt;}
.y7d{bottom:404.901333pt;}
.y9d{bottom:406.609600pt;}
.y13{bottom:408.041067pt;}
.y37{bottom:418.896000pt;}
.ybe{bottom:420.799733pt;}
.y7c{bottom:424.367867pt;}
.y9c{bottom:426.076400pt;}
.y12{bottom:427.241067pt;}
.y59{bottom:432.357467pt;}
.y36{bottom:438.096000pt;}
.ybd{bottom:438.399733pt;}
.y7b{bottom:443.834533pt;}
.y11{bottom:446.440933pt;}
.y58{bottom:451.290800pt;}
.ybc{bottom:455.999733pt;}
.y9b{bottom:456.881600pt;}
.y35{bottom:457.296000pt;}
.y7a{bottom:463.301333pt;}
.y10{bottom:465.640933pt;}
.y57{bottom:470.224133pt;}
.ybb{bottom:473.599733pt;}
.y9a{bottom:476.348267pt;}
.y34{bottom:476.496000pt;}
.y79{bottom:482.768000pt;}
.yf{bottom:484.841067pt;}
.y56{bottom:489.157467pt;}
.y33{bottom:495.696000pt;}
.y99{bottom:495.814933pt;}
.yba{bottom:498.758800pt;}
.y78{bottom:502.234667pt;}
.ye{bottom:504.041067pt;}
.y32{bottom:514.896000pt;}
.y98{bottom:515.281600pt;}
.y55{bottom:519.429333pt;}
.y77{bottom:521.701200pt;}
.yd{bottom:523.241067pt;}
.y31{bottom:534.096000pt;}
.y97{bottom:534.748267pt;}
.y54{bottom:538.362667pt;}
.y76{bottom:541.167867pt;}
.yb9{bottom:541.517867pt;}
.yc{bottom:542.440933pt;}
.yd5{bottom:544.276800pt;}
.y30{bottom:553.296000pt;}
.y96{bottom:554.214933pt;}
.y53{bottom:557.296000pt;}
.yb8{bottom:559.117733pt;}
.yd4{bottom:560.276800pt;}
.y75{bottom:560.634667pt;}
.yb{bottom:561.641067pt;}
.y2f{bottom:572.496000pt;}
.y52{bottom:576.229333pt;}
.yd3{bottom:576.276800pt;}
.yb7{bottom:576.717733pt;}
.y74{bottom:580.101333pt;}
.ya{bottom:580.840933pt;}
.y95{bottom:585.020133pt;}
.y2e{bottom:591.696000pt;}
.yb6{bottom:594.317733pt;}
.y51{bottom:595.162667pt;}
.y73{bottom:599.568000pt;}
.y9{bottom:600.041067pt;}
.y94{bottom:604.486800pt;}
.y2d{bottom:610.896000pt;}
.yb5{bottom:611.917867pt;}
.y50{bottom:614.096000pt;}
.y72{bottom:619.034533pt;}
.y8{bottom:619.241067pt;}
.y93{bottom:623.953467pt;}
.y2c{bottom:630.096000pt;}
.yd2{bottom:630.676800pt;}
.y4f{bottom:633.029333pt;}
.yb4{bottom:637.076800pt;}
.y7{bottom:638.440933pt;}
.y71{bottom:638.501200pt;}
.y92{bottom:643.420133pt;}
.yd1{bottom:648.276800pt;}
.y2b{bottom:649.296000pt;}
.y4e{bottom:651.962667pt;}
.y6{bottom:657.641067pt;}
.y70{bottom:657.968000pt;}
.yd0{bottom:665.876933pt;}
.y2a{bottom:668.496000pt;}
.y4d{bottom:670.896000pt;}
.y91{bottom:674.225467pt;}
.y6f{bottom:677.434667pt;}
.yb3{bottom:679.835867pt;}
.ycf{bottom:683.476933pt;}
.y29{bottom:687.696000pt;}
.y4c{bottom:689.829333pt;}
.y90{bottom:693.692000pt;}
.y6e{bottom:696.901333pt;}
.yb2{bottom:699.035867pt;}
.yce{bottom:701.076800pt;}
.y4b{bottom:708.762667pt;}
.y6d{bottom:716.367867pt;}
.y28{bottom:718.234667pt;}
.yb1{bottom:718.235867pt;}
.ycd{bottom:718.676800pt;}
.y8f{bottom:724.497333pt;}
.y6c{bottom:735.834667pt;}
.ycc{bottom:736.276800pt;}
.y27{bottom:737.434533pt;}
.yb0{bottom:737.435867pt;}
.y4a{bottom:739.034533pt;}
.y8e{bottom:743.964000pt;}
.y5{bottom:753.641067pt;}
.ycb{bottom:753.876933pt;}
.y6b{bottom:755.301333pt;}
.y26{bottom:756.634667pt;}
.yaf{bottom:756.635867pt;}
.y49{bottom:757.968000pt;}
.y8d{bottom:763.430667pt;}
.yca{bottom:771.476933pt;}
.y6a{bottom:774.767867pt;}
.y25{bottom:775.834667pt;}
.yae{bottom:775.836000pt;}
.y48{bottom:776.901333pt;}
.y8c{bottom:782.897333pt;}
.y4{bottom:788.400000pt;}
.y69{bottom:794.234667pt;}
.y24{bottom:795.034533pt;}
.yad{bottom:795.035867pt;}
.y47{bottom:795.834667pt;}
.yc9{bottom:806.676800pt;}
.y68{bottom:813.701200pt;}
.y8b{bottom:813.702533pt;}
.y23{bottom:814.234667pt;}
.yac{bottom:814.235867pt;}
.y46{bottom:814.767867pt;}
.y67{bottom:833.168000pt;}
.y8a{bottom:833.169333pt;}
.y22{bottom:833.434533pt;}
.yab{bottom:833.435867pt;}
.y45{bottom:833.701200pt;}
.y3{bottom:837.521333pt;}
.y21{bottom:852.634667pt;}
.y89{bottom:852.635867pt;}
.y2{bottom:853.521333pt;}
.hb{height:30.875000pt;}
.h4{height:36.020833pt;}
.h3{height:38.687500pt;}
.h8{height:41.166667pt;}
.hc{height:48.885417pt;}
.h5{height:49.815104pt;}
.h2{height:51.458333pt;}
.h9{height:54.343750pt;}
.hd{height:56.604167pt;}
.ha{height:60.730000pt;}
.h7{height:61.750000pt;}
.h6{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x7{left:96.031467pt;}
.x1{left:114.929200pt;}
.x4{left:133.826800pt;}
.x2{left:155.262533pt;}
.x5{left:236.041467pt;}
.x3{left:261.847067pt;}
.x8{left:491.955200pt;}
.x6{left:543.257200pt;}
}




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