
    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_bc011f461a3dc426fba06d59.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851000;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_50b399661f68dcda5786f80d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_da9eea71141bc09e45c7f7f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_6d9e991ab64d3d4168801630.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.542000;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_4c67efe77d5082698aeb7df6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_fd6f07e02e7b96ee7311f156.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_21b07e87648d9facccacf960.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.898000;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_0ef9a0d3b8c8c1bbe343a20d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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_05a7b12314ddf67e2023ac1b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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:ffa;src:url('chunks/assets/font_e2ab927053bda71084c3f663.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.688000;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:ffb;src:url('chunks/assets/font_8a05072a82be387fc3e759da.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;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:ffc;src:url('chunks/assets/font_c2d4d123f8daf4187bb765a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006605px;}
.ls8{letter-spacing:0.027629px;}
.ls0{letter-spacing:0.035393px;}
.lsc{letter-spacing:0.608256px;}
.ls4{letter-spacing:0.614256px;}
.ls2{letter-spacing:19.141421px;}
.ls3{letter-spacing:19.148458px;}
.lse{letter-spacing:21.569443px;}
.lsd{letter-spacing:21.854256px;}
.ls9{letter-spacing:23.174256px;}
.lsa{letter-spacing:23.410800px;}
.ls6{letter-spacing:24.020256px;}
.ls7{letter-spacing:24.026256px;}
.ls5{letter-spacing:25.592256px;}
.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;}
}
.ws18{word-spacing:-0.071731px;}
.ws26{word-spacing:0.000000px;}
.ws38{word-spacing:15.637402px;}
.ws35{word-spacing:15.852595px;}
.ws43{word-spacing:16.354714px;}
.ws2f{word-spacing:16.569907px;}
.ws2d{word-spacing:16.695197px;}
.wsc{word-spacing:17.861069px;}
.wsb{word-spacing:17.932800px;}
.ws6{word-spacing:18.578381px;}
.ws2e{word-spacing:18.793574px;}
.ws46{word-spacing:19.367424px;}
.ws44{word-spacing:19.657901px;}
.ws16{word-spacing:19.797811px;}
.ws4c{word-spacing:19.941274px;}
.ws3d{word-spacing:20.299930px;}
.ws47{word-spacing:20.658586px;}
.ws30{word-spacing:20.802048px;}
.ws17{word-spacing:21.160704px;}
.ws3b{word-spacing:21.232435px;}
.ws19{word-spacing:21.275530px;}
.ws32{word-spacing:21.304166px;}
.ws37{word-spacing:21.447629px;}
.ws3c{word-spacing:22.164941px;}
.ws22{word-spacing:22.523597px;}
.ws40{word-spacing:22.595328px;}
.ws21{word-spacing:22.882253px;}
.ws33{word-spacing:23.097446px;}
.ws9{word-spacing:23.240909px;}
.ws8{word-spacing:23.312640px;}
.ws3e{word-spacing:23.743027px;}
.ws3f{word-spacing:23.814758px;}
.ws3a{word-spacing:23.886490px;}
.ws25{word-spacing:24.219696px;}
.ws31{word-spacing:24.675533px;}
.wsd{word-spacing:24.747264px;}
.ws45{word-spacing:24.752909px;}
.ws15{word-spacing:24.818995px;}
.ws14{word-spacing:24.890726px;}
.ws11{word-spacing:25.034189px;}
.ws7{word-spacing:25.105920px;}
.ws4a{word-spacing:25.121098px;}
.ws20{word-spacing:25.608038px;}
.ws36{word-spacing:26.110157px;}
.ws10{word-spacing:26.181888px;}
.ws23{word-spacing:26.253619px;}
.wse{word-spacing:26.345299px;}
.ws28{word-spacing:26.397082px;}
.ws39{word-spacing:26.540544px;}
.ws48{word-spacing:26.970931px;}
.ws2b{word-spacing:27.114394px;}
.ws4b{word-spacing:27.145613px;}
.ws29{word-spacing:27.189197px;}
.ws1f{word-spacing:27.473050px;}
.wsf{word-spacing:27.544781px;}
.ws1a{word-spacing:27.688243px;}
.ws1e{word-spacing:27.759974px;}
.ws1b{word-spacing:27.779731px;}
.ws1c{word-spacing:27.851606px;}
.ws1d{word-spacing:27.925258px;}
.ws2c{word-spacing:28.262093px;}
.ws2a{word-spacing:28.477286px;}
.ws12{word-spacing:28.549018px;}
.ws13{word-spacing:28.620749px;}
.ws34{word-spacing:29.768448px;}
.ws41{word-spacing:30.270566px;}
.ws5{word-spacing:31.270378px;}
.ws49{word-spacing:31.346534px;}
.ws27{word-spacing:32.106796px;}
.ws42{word-spacing:33.426739px;}
.ws24{word-spacing:35.509613px;}
.ws4{word-spacing:38.528065px;}
.ws3{word-spacing:40.284075px;}
.wsa{word-spacing:48.289309px;}
.ws0{word-spacing:71.001533px;}
.ws2{word-spacing:80.625869px;}
.ws1{word-spacing:1313.641814px;}
._1{margin-left:-58.050329px;}
._14{margin-left:-35.076557px;}
._6{margin-left:-6.025421px;}
._12{margin-left:-4.988575px;}
._0{margin-left:-3.346677px;}
._2{margin-left:-1.578086px;}
._d{width:1.721549px;}
._7{width:3.346677px;}
._19{width:4.836088px;}
._1f{width:11.692186px;}
._1a{width:17.957489px;}
._8{width:19.008768px;}
._9{width:20.677843px;}
._10{width:22.310966px;}
._13{width:23.646607px;}
._f{width:26.029691px;}
._4{width:27.800438px;}
._3{width:29.098178px;}
._c{width:30.549571px;}
._1d{width:32.279040px;}
._a{width:33.760706px;}
._e{width:35.650406px;}
._16{width:37.562459px;}
._b{width:39.621652px;}
._17{width:41.889262px;}
._11{width:43.392536px;}
._18{width:46.410086px;}
._15{width:48.375386px;}
._1b{width:50.140109px;}
._1c{width:51.144346px;}
._1e{width:52.482549px;}
._5{width:69.435802px;}
.fc1{color:rgb(95,8,11);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:53.798400px;}
.fs0{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs1{font-size:123.951000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:108.000000px;}
.y47{bottom:111.487500px;}
.y1d{bottom:129.520500px;}
.y1c{bottom:130.060500px;}
.y46{bottom:133.006500px;}
.y1b{bottom:151.039500px;}
.y45{bottom:154.525500px;}
.y44{bottom:176.046000px;}
.y43{bottom:197.565000px;}
.y42{bottom:219.084000px;}
.y41{bottom:240.603000px;}
.y1a{bottom:241.500000px;}
.y40{bottom:262.122000px;}
.y19{bottom:263.019000px;}
.y18{bottom:284.538000px;}
.y17{bottom:306.057000px;}
.y3f{bottom:323.581500px;}
.y16{bottom:327.576000px;}
.y3e{bottom:345.100500px;}
.y15{bottom:349.096500px;}
.y3d{bottom:366.619500px;}
.y14{bottom:370.615500px;}
.y3c{bottom:388.138500px;}
.y13{bottom:392.134500px;}
.y3b{bottom:409.659000px;}
.y12{bottom:413.653500px;}
.y3a{bottom:431.178000px;}
.y11{bottom:435.745500px;}
.y39{bottom:452.697000px;}
.y10{bottom:457.264500px;}
.y38{bottom:474.216000px;}
.yf{bottom:478.783500px;}
.y37{bottom:495.735000px;}
.ye{bottom:500.875500px;}
.y36{bottom:517.255500px;}
.y35{bottom:538.774500px;}
.y34{bottom:560.293500px;}
.yd{bottom:570.006000px;}
.yc{bottom:591.525000px;}
.yb{bottom:613.044000px;}
.y33{bottom:621.753000px;}
.ya{bottom:634.563000px;}
.y32{bottom:643.272000px;}
.y9{bottom:656.655000px;}
.y31{bottom:664.791000px;}
.y30{bottom:686.310000px;}
.y2f{bottom:707.829000px;}
.y2e{bottom:729.349500px;}
.y2d{bottom:750.868500px;}
.y8{bottom:756.112500px;}
.y2c{bottom:772.387500px;}
.y7{bottom:784.267500px;}
.y2b{bottom:793.906500px;}
.y6{bottom:805.788000px;}
.y2a{bottom:815.425500px;}
.y5{bottom:827.307000px;}
.y29{bottom:876.885000px;}
.y4{bottom:892.132500px;}
.y28{bottom:898.404000px;}
.y27{bottom:919.923000px;}
.y3{bottom:922.618500px;}
.y26{bottom:941.442000px;}
.y25{bottom:962.962500px;}
.y2{bottom:972.873000px;}
.y24{bottom:984.481500px;}
.y23{bottom:1006.000500px;}
.y22{bottom:1027.519500px;}
.y21{bottom:1049.038500px;}
.y20{bottom:1070.559000px;}
.y1f{bottom:1092.078000px;}
.y1{bottom:1139.592000px;}
.h6{height:49.781453px;}
.h5{height:50.498765px;}
.h8{height:53.792400px;}
.h2{height:53.798400px;}
.h7{height:60.598349px;}
.h4{height:72.717850px;}
.h3{height:92.963250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x6{left:113.064000px;}
.x7{left:137.887500px;}
.x5{left:190.192500px;}
.x2{left:288.561000px;}
.x4{left:336.166500px;}
.x3{left:347.650500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005871pt;}
.ls8{letter-spacing:0.024559pt;}
.ls0{letter-spacing:0.031460pt;}
.lsc{letter-spacing:0.540672pt;}
.ls4{letter-spacing:0.546005pt;}
.ls2{letter-spacing:17.014596pt;}
.ls3{letter-spacing:17.020851pt;}
.lse{letter-spacing:19.172838pt;}
.lsd{letter-spacing:19.426005pt;}
.ls9{letter-spacing:20.599339pt;}
.lsa{letter-spacing:20.809600pt;}
.ls6{letter-spacing:21.351339pt;}
.ls7{letter-spacing:21.356672pt;}
.ls5{letter-spacing:22.748672pt;}
.ws18{word-spacing:-0.063761pt;}
.ws26{word-spacing:0.000000pt;}
.ws38{word-spacing:13.899913pt;}
.ws35{word-spacing:14.091196pt;}
.ws43{word-spacing:14.537523pt;}
.ws2f{word-spacing:14.728806pt;}
.ws2d{word-spacing:14.840175pt;}
.wsc{word-spacing:15.876506pt;}
.wsb{word-spacing:15.940267pt;}
.ws6{word-spacing:16.514116pt;}
.ws2e{word-spacing:16.705399pt;}
.ws46{word-spacing:17.215488pt;}
.ws44{word-spacing:17.473690pt;}
.ws16{word-spacing:17.598054pt;}
.ws4c{word-spacing:17.725577pt;}
.ws3d{word-spacing:18.044382pt;}
.ws47{word-spacing:18.363187pt;}
.ws30{word-spacing:18.490709pt;}
.ws17{word-spacing:18.809515pt;}
.ws3b{word-spacing:18.873276pt;}
.ws19{word-spacing:18.911582pt;}
.ws32{word-spacing:18.937037pt;}
.ws37{word-spacing:19.064559pt;}
.ws3c{word-spacing:19.702170pt;}
.ws22{word-spacing:20.020975pt;}
.ws40{word-spacing:20.084736pt;}
.ws21{word-spacing:20.339780pt;}
.ws33{word-spacing:20.531063pt;}
.ws9{word-spacing:20.658586pt;}
.ws8{word-spacing:20.722347pt;}
.ws3e{word-spacing:21.104913pt;}
.ws3f{word-spacing:21.168674pt;}
.ws3a{word-spacing:21.232435pt;}
.ws25{word-spacing:21.528619pt;}
.ws31{word-spacing:21.933807pt;}
.wsd{word-spacing:21.997568pt;}
.ws45{word-spacing:22.002586pt;}
.ws15{word-spacing:22.061329pt;}
.ws14{word-spacing:22.125090pt;}
.ws11{word-spacing:22.252612pt;}
.ws7{word-spacing:22.316373pt;}
.ws4a{word-spacing:22.329865pt;}
.ws20{word-spacing:22.762701pt;}
.ws36{word-spacing:23.209028pt;}
.ws10{word-spacing:23.272789pt;}
.ws23{word-spacing:23.336550pt;}
.wse{word-spacing:23.418044pt;}
.ws28{word-spacing:23.464073pt;}
.ws39{word-spacing:23.591595pt;}
.ws48{word-spacing:23.974161pt;}
.ws2b{word-spacing:24.101683pt;}
.ws4b{word-spacing:24.129434pt;}
.ws29{word-spacing:24.168175pt;}
.ws1f{word-spacing:24.420489pt;}
.wsf{word-spacing:24.484250pt;}
.ws1a{word-spacing:24.611772pt;}
.ws1e{word-spacing:24.675533pt;}
.ws1b{word-spacing:24.693094pt;}
.ws1c{word-spacing:24.756983pt;}
.ws1d{word-spacing:24.822451pt;}
.ws2c{word-spacing:25.121860pt;}
.ws2a{word-spacing:25.313143pt;}
.ws12{word-spacing:25.376905pt;}
.ws13{word-spacing:25.440666pt;}
.ws34{word-spacing:26.460843pt;}
.ws41{word-spacing:26.907170pt;}
.ws5{word-spacing:27.795891pt;}
.ws49{word-spacing:27.863586pt;}
.ws27{word-spacing:28.539374pt;}
.ws42{word-spacing:29.712657pt;}
.ws24{word-spacing:31.564100pt;}
.ws4{word-spacing:34.247169pt;}
.ws3{word-spacing:35.808067pt;}
.wsa{word-spacing:42.923830pt;}
.ws0{word-spacing:63.112474pt;}
.ws2{word-spacing:71.667439pt;}
.ws1{word-spacing:1167.681613pt;}
._1{margin-left:-51.600292pt;}
._14{margin-left:-31.179162pt;}
._6{margin-left:-5.355930pt;}
._12{margin-left:-4.434289pt;}
._0{margin-left:-2.974824pt;}
._2{margin-left:-1.402743pt;}
._d{width:1.530266pt;}
._7{width:2.974824pt;}
._19{width:4.298745pt;}
._1f{width:10.393054pt;}
._1a{width:15.962213pt;}
._8{width:16.896683pt;}
._9{width:18.380305pt;}
._10{width:19.831970pt;}
._13{width:21.019206pt;}
._f{width:23.137503pt;}
._4{width:24.711501pt;}
._3{width:25.865047pt;}
._c{width:27.155174pt;}
._1d{width:28.692480pt;}
._a{width:30.009516pt;}
._e{width:31.689250pt;}
._16{width:33.388853pt;}
._b{width:35.219246pt;}
._17{width:37.234900pt;}
._11{width:38.571143pt;}
._18{width:41.253410pt;}
._15{width:43.000343pt;}
._1b{width:44.568986pt;}
._1c{width:45.461641pt;}
._1e{width:46.651155pt;}
._5{width:61.720713pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs1{font-size:110.178667pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:96.000000pt;}
.y47{bottom:99.100000pt;}
.y1d{bottom:115.129333pt;}
.y1c{bottom:115.609333pt;}
.y46{bottom:118.228000pt;}
.y1b{bottom:134.257333pt;}
.y45{bottom:137.356000pt;}
.y44{bottom:156.485333pt;}
.y43{bottom:175.613333pt;}
.y42{bottom:194.741333pt;}
.y41{bottom:213.869333pt;}
.y1a{bottom:214.666667pt;}
.y40{bottom:232.997333pt;}
.y19{bottom:233.794667pt;}
.y18{bottom:252.922667pt;}
.y17{bottom:272.050667pt;}
.y3f{bottom:287.628000pt;}
.y16{bottom:291.178667pt;}
.y3e{bottom:306.756000pt;}
.y15{bottom:310.308000pt;}
.y3d{bottom:325.884000pt;}
.y14{bottom:329.436000pt;}
.y3c{bottom:345.012000pt;}
.y13{bottom:348.564000pt;}
.y3b{bottom:364.141333pt;}
.y12{bottom:367.692000pt;}
.y3a{bottom:383.269333pt;}
.y11{bottom:387.329333pt;}
.y39{bottom:402.397333pt;}
.y10{bottom:406.457333pt;}
.y38{bottom:421.525333pt;}
.yf{bottom:425.585333pt;}
.y37{bottom:440.653333pt;}
.ye{bottom:445.222667pt;}
.y36{bottom:459.782667pt;}
.y35{bottom:478.910667pt;}
.y34{bottom:498.038667pt;}
.yd{bottom:506.672000pt;}
.yc{bottom:525.800000pt;}
.yb{bottom:544.928000pt;}
.y33{bottom:552.669333pt;}
.ya{bottom:564.056000pt;}
.y32{bottom:571.797333pt;}
.y9{bottom:583.693333pt;}
.y31{bottom:590.925333pt;}
.y30{bottom:610.053333pt;}
.y2f{bottom:629.181333pt;}
.y2e{bottom:648.310667pt;}
.y2d{bottom:667.438667pt;}
.y8{bottom:672.100000pt;}
.y2c{bottom:686.566667pt;}
.y7{bottom:697.126667pt;}
.y2b{bottom:705.694667pt;}
.y6{bottom:716.256000pt;}
.y2a{bottom:724.822667pt;}
.y5{bottom:735.384000pt;}
.y29{bottom:779.453333pt;}
.y4{bottom:793.006667pt;}
.y28{bottom:798.581333pt;}
.y27{bottom:817.709333pt;}
.y3{bottom:820.105333pt;}
.y26{bottom:836.837333pt;}
.y25{bottom:855.966667pt;}
.y2{bottom:864.776000pt;}
.y24{bottom:875.094667pt;}
.y23{bottom:894.222667pt;}
.y22{bottom:913.350667pt;}
.y21{bottom:932.478667pt;}
.y20{bottom:951.608000pt;}
.y1f{bottom:970.736000pt;}
.y1{bottom:1012.970667pt;}
.h6{height:44.250180pt;}
.h5{height:44.887791pt;}
.h8{height:47.815467pt;}
.h2{height:47.820800pt;}
.h7{height:53.865199pt;}
.h4{height:64.638089pt;}
.h3{height:82.634000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x6{left:100.501333pt;}
.x7{left:122.566667pt;}
.x5{left:169.060000pt;}
.x2{left:256.498667pt;}
.x4{left:298.814667pt;}
.x3{left:309.022667pt;}
}




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