
    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_fce3687a0ffde87d6e7d3014.woff')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_3d1e5e879e53392e92516eb4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_d6243082943731d7a48ff3f3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_34b9fc8b6c2ad3dd40786983.woff')format("woff");}.ff4{font-family:ff4;line-height:0.929286;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_92848722d062981be2ac9493.woff')format("woff");}.ff5{font-family:ff5;line-height:0.934000;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.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);-ms-transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);-webkit-transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m2{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);}
.v1{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.800000px;}
.v3{vertical-align:3.258000px;}
.ls19{letter-spacing:-10.408500px;}
.ls1c{letter-spacing:-1.417500px;}
.ls22{letter-spacing:-0.729000px;}
.ls14{letter-spacing:-0.040500px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.081000px;}
.ls9{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.405000px;}
.ls1{letter-spacing:0.420000px;}
.ls1d{letter-spacing:0.445500px;}
.ls3{letter-spacing:0.510000px;}
.lsa{letter-spacing:0.567000px;}
.lsf{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.688500px;}
.ls1a{letter-spacing:0.810000px;}
.ls16{letter-spacing:0.850500px;}
.ls7{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.867000px;}
.ls18{letter-spacing:0.891000px;}
.ls11{letter-spacing:0.931500px;}
.ls6{letter-spacing:0.972000px;}
.ls23{letter-spacing:1.012500px;}
.ls1e{letter-spacing:1.053000px;}
.ls12{letter-spacing:1.093500px;}
.ls13{letter-spacing:1.107131px;}
.ls8{letter-spacing:1.116000px;}
.ls15{letter-spacing:1.296000px;}
.lsc{letter-spacing:1.305000px;}
.ls17{letter-spacing:1.377000px;}
.lsd{letter-spacing:1.575000px;}
.lsb{letter-spacing:1.633500px;}
.lse{letter-spacing:1.665000px;}
.ls24{letter-spacing:1.741500px;}
.ls1f{letter-spacing:1.984500px;}
.ls21{letter-spacing:2.025000px;}
.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;}
}
.ws1{word-spacing:-18.678000px;}
.ws0{word-spacing:-15.045000px;}
.ws1a{word-spacing:-14.085000px;}
.ws33{word-spacing:-13.284000px;}
.ws31{word-spacing:-13.243500px;}
.ws37{word-spacing:-13.000500px;}
.ws2a{word-spacing:-12.636000px;}
.ws28{word-spacing:-12.555000px;}
.ws1e{word-spacing:-12.352500px;}
.ws30{word-spacing:-12.312000px;}
.ws35{word-spacing:-12.271500px;}
.ws36{word-spacing:-12.190500px;}
.ws2c{word-spacing:-12.150000px;}
.ws29{word-spacing:-12.109500px;}
.ws32{word-spacing:-11.947500px;}
.ws23{word-spacing:-11.907000px;}
.ws2b{word-spacing:-11.826000px;}
.ws2f{word-spacing:-11.704500px;}
.ws2d{word-spacing:-11.340000px;}
.ws27{word-spacing:-11.218500px;}
.ws3{word-spacing:-11.124000px;}
.ws2{word-spacing:-10.980000px;}
.ws34{word-spacing:-10.530000px;}
.ws2e{word-spacing:-9.841500px;}
.ws38{word-spacing:-2.916000px;}
.wsd{word-spacing:-2.904000px;}
.ws39{word-spacing:-2.700000px;}
.wsf{word-spacing:-2.640000px;}
.ws13{word-spacing:-2.574000px;}
.wsc{word-spacing:-2.112000px;}
.ws3e{word-spacing:-2.106000px;}
.ws11{word-spacing:-1.980000px;}
.ws10{word-spacing:-1.848000px;}
.ws40{word-spacing:-1.125000px;}
.ws43{word-spacing:-0.810000px;}
.ws16{word-spacing:-0.756000px;}
.ws41{word-spacing:-0.697082px;}
.ws15{word-spacing:-0.504000px;}
.wse{word-spacing:-0.330000px;}
.ws3f{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws3d{word-spacing:0.108000px;}
.ws14{word-spacing:0.360000px;}
.wsa{word-spacing:0.528000px;}
.ws3a{word-spacing:1.188000px;}
.ws12{word-spacing:1.518000px;}
.ws3b{word-spacing:1.944000px;}
.ws8{word-spacing:2.100000px;}
.wsb{word-spacing:2.904000px;}
.ws6{word-spacing:4.554000px;}
.ws5{word-spacing:7.920000px;}
.ws7{word-spacing:9.438000px;}
.ws3c{word-spacing:9.828000px;}
.ws9{word-spacing:10.890000px;}
.ws42{word-spacing:11.259000px;}
.ws1c{word-spacing:166.264650px;}
.ws20{word-spacing:167.386500px;}
.ws25{word-spacing:167.763150px;}
.ws21{word-spacing:170.559000px;}
.ws18{word-spacing:179.356500px;}
.ws1d{word-spacing:179.751150px;}
.ws19{word-spacing:182.529000px;}
.ws22{word-spacing:203.115600px;}
.ws1b{word-spacing:214.779600px;}
.ws1f{word-spacing:276.862500px;}
.ws17{word-spacing:285.108300px;}
.ws24{word-spacing:970.428600px;}
.ws26{word-spacing:1006.068600px;}
._4{margin-left:-25.872000px;}
._5{margin-left:-19.951800px;}
._6{margin-left:-18.354900px;}
._c{margin-left:-15.716100px;}
._d{margin-left:-14.288100px;}
._a{margin-left:-10.630500px;}
._3{margin-left:-7.462500px;}
._7{margin-left:-5.786100px;}
._9{margin-left:-4.773900px;}
._1{margin-left:-3.326400px;}
._2{margin-left:-1.803900px;}
._0{width:1.698300px;}
._8{width:3.607800px;}
._b{width:9.702000px;}
._13{width:10.930500px;}
._12{width:13.211100px;}
._10{width:159.789900px;}
._e{width:171.782400px;}
._11{width:181.283400px;}
._f{width:193.230900px;}
.fc2{color:transparent;}
.fc1{color:rgb(60,153,192);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs8{font-size:40.500000px;}
.fs9{font-size:41.004842px;}
.fs7{font-size:45.000000px;}
.fs6{font-size:49.500000px;}
.fs0{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:32.098800px;}
.y1e{bottom:44.095800px;}
.y30{bottom:129.956400px;}
.y2f{bottom:146.453400px;}
.y2e{bottom:162.950400px;}
.y1b{bottom:194.825700px;}
.y3f{bottom:195.833250px;}
.y3e{bottom:207.365625px;}
.y1a{bottom:214.328700px;}
.y3d{bottom:218.898000px;}
.y3c{bottom:230.430375px;}
.y19{bottom:233.831700px;}
.y3b{bottom:241.962750px;}
.y18{bottom:253.334700px;}
.y3a{bottom:267.326550px;}
.y17{bottom:282.584700px;}
.y2d{bottom:300.650400px;}
.y2c{bottom:339.353400px;}
.y16{bottom:341.042700px;}
.y2b{bottom:355.850400px;}
.y15{bottom:360.545700px;}
.y14{bottom:380.048700px;}
.y39{bottom:390.450000px;}
.y13{bottom:399.551700px;}
.y38{bottom:415.813800px;}
.y12{bottom:419.054700px;}
.y2a{bottom:449.112900px;}
.y11{bottom:458.060700px;}
.y10{bottom:477.563700px;}
.y29{bottom:487.824900px;}
.yf{bottom:497.066700px;}
.y28{bottom:504.321900px;}
.y27{bottom:520.818900px;}
.ye{bottom:536.072700px;}
.y26{bottom:537.315900px;}
.y25{bottom:553.812900px;}
.yd{bottom:555.575700px;}
.yc{bottom:575.078700px;}
.yb{bottom:594.581700px;}
.y34{bottom:596.358300px;}
.ya{bottom:614.084700px;}
.y33{bottom:622.536600px;}
.y37{bottom:648.833850px;}
.y9{bottom:653.084700px;}
.y36{bottom:676.795800px;}
.y35{bottom:702.974100px;}
.y8{bottom:731.075700px;}
.y24{bottom:740.112900px;}
.y7{bottom:750.578700px;}
.y6{bottom:770.081700px;}
.y23{bottom:778.815900px;}
.y5{bottom:789.584700px;}
.y22{bottom:795.312900px;}
.y32{bottom:829.898400px;}
.y4{bottom:841.346550px;}
.y31{bottom:855.262200px;}
.y21{bottom:888.837900px;}
.y3{bottom:896.834550px;}
.y20{bottom:928.587900px;}
.y1d{bottom:1034.932200px;}
.y2{bottom:1035.038550px;}
.y1c{bottom:1050.678450px;}
.y1{bottom:1050.784800px;}
.h7{height:26.532000px;}
.hb{height:29.848500px;}
.hd{height:30.220569px;}
.hc{height:33.075000px;}
.ha{height:36.382500px;}
.h2{height:37.077000px;}
.h8{height:39.690000px;}
.h9{height:39.798000px;}
.h5{height:48.642000px;}
.h6{height:61.740000px;}
.h3{height:138.816000px;}
.h4{height:139.776000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x9{left:118.264200px;}
.xb{left:130.334025px;}
.xa{left:132.166650px;}
.x6{left:146.680800px;}
.x8{left:152.845950px;}
.xc{left:154.866900px;}
.x5{left:156.274200px;}
.x7{left:163.001400px;}
.xf{left:227.908650px;}
.xe{left:228.931275px;}
.xd{left:229.953900px;}
.x3{left:231.648900px;}
.x2{left:235.984200px;}
.x10{left:237.081900px;}
.x11{left:330.262275px;}
.x12{left:331.811400px;}
.x4{left:351.150900px;}
.x13{left:433.760025px;}
.x14{left:435.531900px;}
.x15{left:443.996400px;}
.x16{left:528.479400px;}
.x17{left:530.403150px;}
.x18{left:534.189900px;}
@media print{
.v1{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.600000pt;}
.v3{vertical-align:2.896000pt;}
.ls19{letter-spacing:-9.252000pt;}
.ls1c{letter-spacing:-1.260000pt;}
.ls22{letter-spacing:-0.648000pt;}
.ls14{letter-spacing:-0.036000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.072000pt;}
.ls9{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.360000pt;}
.ls1{letter-spacing:0.373333pt;}
.ls1d{letter-spacing:0.396000pt;}
.ls3{letter-spacing:0.453333pt;}
.lsa{letter-spacing:0.504000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.612000pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls16{letter-spacing:0.756000pt;}
.ls7{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.770667pt;}
.ls18{letter-spacing:0.792000pt;}
.ls11{letter-spacing:0.828000pt;}
.ls6{letter-spacing:0.864000pt;}
.ls23{letter-spacing:0.900000pt;}
.ls1e{letter-spacing:0.936000pt;}
.ls12{letter-spacing:0.972000pt;}
.ls13{letter-spacing:0.984116pt;}
.ls8{letter-spacing:0.992000pt;}
.ls15{letter-spacing:1.152000pt;}
.lsc{letter-spacing:1.160000pt;}
.ls17{letter-spacing:1.224000pt;}
.lsd{letter-spacing:1.400000pt;}
.lsb{letter-spacing:1.452000pt;}
.lse{letter-spacing:1.480000pt;}
.ls24{letter-spacing:1.548000pt;}
.ls1f{letter-spacing:1.764000pt;}
.ls21{letter-spacing:1.800000pt;}
.ws1{word-spacing:-16.602667pt;}
.ws0{word-spacing:-13.373333pt;}
.ws1a{word-spacing:-12.520000pt;}
.ws33{word-spacing:-11.808000pt;}
.ws31{word-spacing:-11.772000pt;}
.ws37{word-spacing:-11.556000pt;}
.ws2a{word-spacing:-11.232000pt;}
.ws28{word-spacing:-11.160000pt;}
.ws1e{word-spacing:-10.980000pt;}
.ws30{word-spacing:-10.944000pt;}
.ws35{word-spacing:-10.908000pt;}
.ws36{word-spacing:-10.836000pt;}
.ws2c{word-spacing:-10.800000pt;}
.ws29{word-spacing:-10.764000pt;}
.ws32{word-spacing:-10.620000pt;}
.ws23{word-spacing:-10.584000pt;}
.ws2b{word-spacing:-10.512000pt;}
.ws2f{word-spacing:-10.404000pt;}
.ws2d{word-spacing:-10.080000pt;}
.ws27{word-spacing:-9.972000pt;}
.ws3{word-spacing:-9.888000pt;}
.ws2{word-spacing:-9.760000pt;}
.ws34{word-spacing:-9.360000pt;}
.ws2e{word-spacing:-8.748000pt;}
.ws38{word-spacing:-2.592000pt;}
.wsd{word-spacing:-2.581333pt;}
.ws39{word-spacing:-2.400000pt;}
.wsf{word-spacing:-2.346667pt;}
.ws13{word-spacing:-2.288000pt;}
.wsc{word-spacing:-1.877333pt;}
.ws3e{word-spacing:-1.872000pt;}
.ws11{word-spacing:-1.760000pt;}
.ws10{word-spacing:-1.642667pt;}
.ws40{word-spacing:-1.000000pt;}
.ws43{word-spacing:-0.720000pt;}
.ws16{word-spacing:-0.672000pt;}
.ws41{word-spacing:-0.619629pt;}
.ws15{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.293333pt;}
.ws3f{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.096000pt;}
.ws14{word-spacing:0.320000pt;}
.wsa{word-spacing:0.469333pt;}
.ws3a{word-spacing:1.056000pt;}
.ws12{word-spacing:1.349333pt;}
.ws3b{word-spacing:1.728000pt;}
.ws8{word-spacing:1.866667pt;}
.wsb{word-spacing:2.581333pt;}
.ws6{word-spacing:4.048000pt;}
.ws5{word-spacing:7.040000pt;}
.ws7{word-spacing:8.389333pt;}
.ws3c{word-spacing:8.736000pt;}
.ws9{word-spacing:9.680000pt;}
.ws42{word-spacing:10.008000pt;}
.ws1c{word-spacing:147.790800pt;}
.ws20{word-spacing:148.788000pt;}
.ws25{word-spacing:149.122800pt;}
.ws21{word-spacing:151.608000pt;}
.ws18{word-spacing:159.428000pt;}
.ws1d{word-spacing:159.778800pt;}
.ws19{word-spacing:162.248000pt;}
.ws22{word-spacing:180.547200pt;}
.ws1b{word-spacing:190.915200pt;}
.ws1f{word-spacing:246.100000pt;}
.ws17{word-spacing:253.429600pt;}
.ws24{word-spacing:862.603200pt;}
.ws26{word-spacing:894.283200pt;}
._4{margin-left:-22.997333pt;}
._5{margin-left:-17.734933pt;}
._6{margin-left:-16.315467pt;}
._c{margin-left:-13.969867pt;}
._d{margin-left:-12.700533pt;}
._a{margin-left:-9.449333pt;}
._3{margin-left:-6.633333pt;}
._7{margin-left:-5.143200pt;}
._9{margin-left:-4.243467pt;}
._1{margin-left:-2.956800pt;}
._2{margin-left:-1.603467pt;}
._0{width:1.509600pt;}
._8{width:3.206933pt;}
._b{width:8.624000pt;}
._13{width:9.716000pt;}
._12{width:11.743200pt;}
._10{width:142.035467pt;}
._e{width:152.695467pt;}
._11{width:161.140800pt;}
._f{width:171.760800pt;}
.fs4{font-size:32.000000pt;}
.fs8{font-size:36.000000pt;}
.fs9{font-size:36.448749pt;}
.fs7{font-size:40.000000pt;}
.fs6{font-size:44.000000pt;}
.fs0{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:28.532267pt;}
.y1e{bottom:39.196267pt;}
.y30{bottom:115.516800pt;}
.y2f{bottom:130.180800pt;}
.y2e{bottom:144.844800pt;}
.y1b{bottom:173.178400pt;}
.y3f{bottom:174.074000pt;}
.y3e{bottom:184.325000pt;}
.y1a{bottom:190.514400pt;}
.y3d{bottom:194.576000pt;}
.y3c{bottom:204.827000pt;}
.y19{bottom:207.850400pt;}
.y3b{bottom:215.078000pt;}
.y18{bottom:225.186400pt;}
.y3a{bottom:237.623600pt;}
.y17{bottom:251.186400pt;}
.y2d{bottom:267.244800pt;}
.y2c{bottom:301.647467pt;}
.y16{bottom:303.149067pt;}
.y2b{bottom:316.311467pt;}
.y15{bottom:320.485067pt;}
.y14{bottom:337.821067pt;}
.y39{bottom:347.066667pt;}
.y13{bottom:355.157067pt;}
.y38{bottom:369.612267pt;}
.y12{bottom:372.493067pt;}
.y2a{bottom:399.211467pt;}
.y11{bottom:407.165067pt;}
.y10{bottom:424.501067pt;}
.y29{bottom:433.622133pt;}
.yf{bottom:441.837067pt;}
.y28{bottom:448.286133pt;}
.y27{bottom:462.950133pt;}
.ye{bottom:476.509067pt;}
.y26{bottom:477.614133pt;}
.y25{bottom:492.278133pt;}
.yd{bottom:493.845067pt;}
.yc{bottom:511.181067pt;}
.yb{bottom:528.517067pt;}
.y34{bottom:530.096267pt;}
.ya{bottom:545.853067pt;}
.y33{bottom:553.365867pt;}
.y37{bottom:576.741200pt;}
.y9{bottom:580.519733pt;}
.y36{bottom:601.596267pt;}
.y35{bottom:624.865867pt;}
.y8{bottom:649.845067pt;}
.y24{bottom:657.878133pt;}
.y7{bottom:667.181067pt;}
.y6{bottom:684.517067pt;}
.y23{bottom:692.280800pt;}
.y5{bottom:701.853067pt;}
.y22{bottom:706.944800pt;}
.y32{bottom:737.687467pt;}
.y4{bottom:747.863600pt;}
.y31{bottom:760.233067pt;}
.y21{bottom:790.078133pt;}
.y3{bottom:797.186267pt;}
.y20{bottom:825.411467pt;}
.y1d{bottom:919.939733pt;}
.y2{bottom:920.034267pt;}
.y1c{bottom:933.936400pt;}
.y1{bottom:934.030933pt;}
.h7{height:23.584000pt;}
.hb{height:26.532000pt;}
.hd{height:26.862728pt;}
.hc{height:29.400000pt;}
.ha{height:32.340000pt;}
.h2{height:32.957333pt;}
.h8{height:35.280000pt;}
.h9{height:35.376000pt;}
.h5{height:43.237333pt;}
.h6{height:54.880000pt;}
.h3{height:123.392000pt;}
.h4{height:124.245333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x9{left:105.123733pt;}
.xb{left:115.852467pt;}
.xa{left:117.481467pt;}
.x6{left:130.382933pt;}
.x8{left:135.863067pt;}
.xc{left:137.659467pt;}
.x5{left:138.910400pt;}
.x7{left:144.890133pt;}
.xf{left:202.585467pt;}
.xe{left:203.494467pt;}
.xd{left:204.403467pt;}
.x3{left:205.910133pt;}
.x2{left:209.763733pt;}
.x10{left:210.739467pt;}
.x11{left:293.566467pt;}
.x12{left:294.943467pt;}
.x4{left:312.134133pt;}
.x13{left:385.564467pt;}
.x14{left:387.139467pt;}
.x15{left:394.663467pt;}
.x16{left:469.759467pt;}
.x17{left:471.469467pt;}
.x18{left:474.835467pt;}
}




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