
    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_dbf6e6ba5bb861a9ce370230.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_0b397f6784ee811c4474d22d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.865723;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_f3f3676eba5686930bb4c5f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119140;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_dbf6e6ba5bb861a9ce370230.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104000;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_b79a9752834f39e62ea78b2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104361;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_1d2904361c62828667b9f4c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050737;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_e915abd938b7692db109c987.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.076696;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.035000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.069000px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.172500px;}
.ls12{letter-spacing:0.207000px;}
.ls4{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.270000px;}
.lsa{letter-spacing:0.345000px;}
.ls8{letter-spacing:0.552000px;}
.ls14{letter-spacing:0.655500px;}
.ls9{letter-spacing:0.690000px;}
.ls10{letter-spacing:0.793500px;}
.ls13{letter-spacing:1.035000px;}
.ls6{letter-spacing:1.725000px;}
.lsc{letter-spacing:2.967000px;}
.ls11{letter-spacing:7.483200px;}
.lse{letter-spacing:303.239400px;}
.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;}
}
.ws1e{word-spacing:-13.800000px;}
.ws20{word-spacing:-12.765000px;}
.ws2a{word-spacing:-12.627000px;}
.ws25{word-spacing:-12.144000px;}
.ws1d{word-spacing:-12.075000px;}
.ws2c{word-spacing:-9.333000px;}
.ws2e{word-spacing:-8.925000px;}
.ws2d{word-spacing:-6.999750px;}
.ws1f{word-spacing:-1.725000px;}
.ws2b{word-spacing:-1.035000px;}
.ws3{word-spacing:-0.900000px;}
.ws29{word-spacing:-0.828000px;}
.ws23{word-spacing:-0.690000px;}
.wsc{word-spacing:-0.612000px;}
.ws22{word-spacing:-0.552000px;}
.ws24{word-spacing:-0.345000px;}
.wsb{word-spacing:-0.252000px;}
.ws10{word-spacing:-0.216000px;}
.ws28{word-spacing:-0.207000px;}
.ws11{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.138000px;}
.wsa{word-spacing:-0.072000px;}
.ws26{word-spacing:-0.069000px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:0.720000px;}
.ws7{word-spacing:0.864000px;}
.ws27{word-spacing:1.035000px;}
.ws1a{word-spacing:1.152000px;}
.ws1c{word-spacing:1.368000px;}
.ws16{word-spacing:1.404000px;}
.ws2{word-spacing:1.440000px;}
.ws17{word-spacing:1.512000px;}
.ws1b{word-spacing:1.656000px;}
.ws0{word-spacing:1.728000px;}
.ws13{word-spacing:2.016000px;}
.ws6{word-spacing:2.304000px;}
.ws1{word-spacing:3.024000px;}
.ws8{word-spacing:5.076000px;}
.ws19{word-spacing:5.440500px;}
.ws18{word-spacing:5.859000px;}
.wsd{word-spacing:6.372000px;}
.wsf{word-spacing:6.552000px;}
.ws14{word-spacing:8.928000px;}
.ws9{word-spacing:10.368000px;}
.ws15{word-spacing:10.728000px;}
.ws5{word-spacing:12.960000px;}
.ws12{word-spacing:33.876000px;}
._9{margin-left:-21.817800px;}
._3{margin-left:-13.712400px;}
._20{margin-left:-12.606600px;}
._1{margin-left:-6.648000px;}
._e{margin-left:-5.296500px;}
._c{margin-left:-3.985200px;}
._2{margin-left:-2.660400px;}
._0{margin-left:-1.288800px;}
._d{width:1.397400px;}
._f{width:3.047100px;}
._a{width:4.212000px;}
._8{width:5.700600px;}
._7{width:7.021800px;}
._18{width:8.562900px;}
._5{width:10.287000px;}
._4{width:11.306400px;}
._6{width:13.063800px;}
._1a{width:14.138700px;}
._19{width:15.738900px;}
._17{width:17.532900px;}
._1b{width:19.078500px;}
._1d{width:20.244600px;}
._1c{width:21.810900px;}
._3a{width:24.978000px;}
._2a{width:29.842500px;}
._b{width:33.012000px;}
._16{width:36.252000px;}
._12{width:70.478550px;}
._13{width:94.669200px;}
._39{width:121.593000px;}
._1e{width:125.730300px;}
._15{width:126.849600px;}
._14{width:157.844250px;}
._37{width:160.155600px;}
._10{width:165.990150px;}
._33{width:169.507800px;}
._11{width:200.549250px;}
._1f{width:205.440600px;}
._2e{width:212.930400px;}
._2b{width:229.155600px;}
._29{width:230.733000px;}
._21{width:233.510400px;}
._30{width:255.950400px;}
._2d{width:262.370400px;}
._24{width:269.330400px;}
._32{width:271.138200px;}
._31{width:274.267800px;}
._2f{width:280.550400px;}
._35{width:301.447800px;}
._38{width:309.050400px;}
._36{width:316.190400px;}
._27{width:328.447800px;}
._28{width:334.850400px;}
._2c{width:337.010400px;}
._23{width:351.830400px;}
._26{width:359.990400px;}
._34{width:381.367800px;}
._22{width:533.982600px;}
._25{width:542.185200px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:36.000000px;}
.fsb{font-size:38.250000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs8{font-size:57.000000px;}
.fs5{font-size:58.500000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs4{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:75.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:86.420100px;}
.y24{bottom:107.799150px;}
.y23{bottom:119.799150px;}
.y58{bottom:129.259800px;}
.y59{bottom:129.259950px;}
.y22{bottom:131.799150px;}
.y21{bottom:143.799150px;}
.y57{bottom:150.519600px;}
.y32{bottom:150.519750px;}
.y20{bottom:155.799150px;}
.y31{bottom:171.779550px;}
.y1f{bottom:179.799150px;}
.y1e{bottom:191.799150px;}
.y30{bottom:193.039350px;}
.y1d{bottom:203.799150px;}
.y56{bottom:214.299150px;}
.y49{bottom:214.299300px;}
.y1c{bottom:227.799150px;}
.y55{bottom:235.558950px;}
.y2f{bottom:235.559100px;}
.y1b{bottom:239.799150px;}
.y1a{bottom:251.799150px;}
.y2e{bottom:256.818900px;}
.y19{bottom:275.799150px;}
.y54{bottom:278.078700px;}
.y2d{bottom:278.078850px;}
.y18{bottom:287.799150px;}
.y53{bottom:299.338500px;}
.y41{bottom:299.338650px;}
.y17{bottom:299.799150px;}
.y16{bottom:311.799150px;}
.y52{bottom:320.598300px;}
.y2c{bottom:320.598450px;}
.y15{bottom:323.799150px;}
.y14{bottom:335.799150px;}
.y2b{bottom:341.858250px;}
.y13{bottom:359.799150px;}
.y51{bottom:363.118050px;}
.y48{bottom:363.118200px;}
.y12{bottom:371.799150px;}
.y11{bottom:383.799150px;}
.y50{bottom:384.377850px;}
.y2a{bottom:384.378000px;}
.y10{bottom:395.799150px;}
.y40{bottom:405.637800px;}
.yf{bottom:407.799150px;}
.ye{bottom:419.799150px;}
.y3f{bottom:426.897600px;}
.yd{bottom:431.799150px;}
.yc{bottom:443.799150px;}
.y4f{bottom:448.157400px;}
.y29{bottom:448.157550px;}
.yb{bottom:455.799150px;}
.ya{bottom:467.799150px;}
.y28{bottom:469.417350px;}
.y3e{bottom:490.677150px;}
.y27{bottom:511.937100px;}
.y4e{bottom:533.196750px;}
.y26{bottom:533.196900px;}
.y74{bottom:538.618200px;}
.y73{bottom:552.118200px;}
.y47{bottom:554.456700px;}
.y72{bottom:565.618200px;}
.y3d{bottom:575.716500px;}
.y71{bottom:579.118200px;}
.y70{bottom:592.618200px;}
.y3c{bottom:596.976450px;}
.y6f{bottom:606.118200px;}
.y46{bottom:618.236250px;}
.y6e{bottom:619.618200px;}
.y6d{bottom:633.118200px;}
.y45{bottom:639.496050px;}
.y5{bottom:645.417750px;}
.y6c{bottom:646.618200px;}
.y6b{bottom:660.118200px;}
.y3b{bottom:660.756000px;}
.y4{bottom:666.417750px;}
.y6a{bottom:673.618200px;}
.y3a{bottom:682.015800px;}
.y69{bottom:687.118200px;}
.y68{bottom:700.618200px;}
.y39{bottom:703.275600px;}
.y3{bottom:708.417750px;}
.y67{bottom:714.118200px;}
.y44{bottom:724.535550px;}
.y66{bottom:727.618200px;}
.y65{bottom:741.118200px;}
.y4c{bottom:745.795200px;}
.y38{bottom:745.795350px;}
.y64{bottom:754.618200px;}
.y37{bottom:767.055150px;}
.y63{bottom:768.118050px;}
.y62{bottom:781.618050px;}
.y43{bottom:788.314950px;}
.y61{bottom:795.118050px;}
.y60{bottom:808.618050px;}
.y4b{bottom:809.574750px;}
.y36{bottom:809.574900px;}
.y5f{bottom:822.118050px;}
.y4a{bottom:830.834550px;}
.y35{bottom:830.834700px;}
.y5e{bottom:835.618050px;}
.y2{bottom:843.712950px;}
.y5d{bottom:849.118050px;}
.y34{bottom:852.094500px;}
.y5c{bottom:862.618050px;}
.y1{bottom:870.712950px;}
.y42{bottom:873.354300px;}
.y9{bottom:875.799150px;}
.y5b{bottom:876.118050px;}
.y8{bottom:887.799150px;}
.y5a{bottom:889.618050px;}
.y33{bottom:894.614100px;}
.y7{bottom:899.799150px;}
.y6{bottom:911.799150px;}
.y25{bottom:915.873900px;}
.h5{height:32.148000px;}
.ha{height:42.864000px;}
.h10{height:43.283478px;}
.hb{height:50.901000px;}
.h9{height:50.921739px;}
.h7{height:52.240500px;}
.h4{height:53.580000px;}
.h8{height:56.259000px;}
.he{height:57.596842px;}
.hd{height:58.560000px;}
.hf{height:60.101053px;}
.h6{height:61.617000px;}
.hc{height:63.652174px;}
.h2{height:64.296000px;}
.h3{height:112.518000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x5{left:86.539350px;}
.xe{left:91.417350px;}
.x6{left:97.169250px;}
.xa{left:108.425250px;}
.x1{left:167.455650px;}
.x2{left:213.500550px;}
.x3{left:221.605650px;}
.x4{left:227.920200px;}
.x9{left:463.333050px;}
.xb{left:590.269500px;}
.x8{left:591.334500px;}
.xd{left:592.339500px;}
.xc{left:593.419350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.920000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.061333pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.153333pt;}
.ls12{letter-spacing:0.184000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.240000pt;}
.lsa{letter-spacing:0.306667pt;}
.ls8{letter-spacing:0.490667pt;}
.ls14{letter-spacing:0.582667pt;}
.ls9{letter-spacing:0.613333pt;}
.ls10{letter-spacing:0.705333pt;}
.ls13{letter-spacing:0.920000pt;}
.ls6{letter-spacing:1.533333pt;}
.lsc{letter-spacing:2.637333pt;}
.ls11{letter-spacing:6.651733pt;}
.lse{letter-spacing:269.546133pt;}
.ws1e{word-spacing:-12.266667pt;}
.ws20{word-spacing:-11.346667pt;}
.ws2a{word-spacing:-11.224000pt;}
.ws25{word-spacing:-10.794667pt;}
.ws1d{word-spacing:-10.733333pt;}
.ws2c{word-spacing:-8.296000pt;}
.ws2e{word-spacing:-7.933333pt;}
.ws2d{word-spacing:-6.222000pt;}
.ws1f{word-spacing:-1.533333pt;}
.ws2b{word-spacing:-0.920000pt;}
.ws3{word-spacing:-0.800000pt;}
.ws29{word-spacing:-0.736000pt;}
.ws23{word-spacing:-0.613333pt;}
.wsc{word-spacing:-0.544000pt;}
.ws22{word-spacing:-0.490667pt;}
.ws24{word-spacing:-0.306667pt;}
.wsb{word-spacing:-0.224000pt;}
.ws10{word-spacing:-0.192000pt;}
.ws28{word-spacing:-0.184000pt;}
.ws11{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.122667pt;}
.wsa{word-spacing:-0.064000pt;}
.ws26{word-spacing:-0.061333pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:0.640000pt;}
.ws7{word-spacing:0.768000pt;}
.ws27{word-spacing:0.920000pt;}
.ws1a{word-spacing:1.024000pt;}
.ws1c{word-spacing:1.216000pt;}
.ws16{word-spacing:1.248000pt;}
.ws2{word-spacing:1.280000pt;}
.ws17{word-spacing:1.344000pt;}
.ws1b{word-spacing:1.472000pt;}
.ws0{word-spacing:1.536000pt;}
.ws13{word-spacing:1.792000pt;}
.ws6{word-spacing:2.048000pt;}
.ws1{word-spacing:2.688000pt;}
.ws8{word-spacing:4.512000pt;}
.ws19{word-spacing:4.836000pt;}
.ws18{word-spacing:5.208000pt;}
.wsd{word-spacing:5.664000pt;}
.wsf{word-spacing:5.824000pt;}
.ws14{word-spacing:7.936000pt;}
.ws9{word-spacing:9.216000pt;}
.ws15{word-spacing:9.536000pt;}
.ws5{word-spacing:11.520000pt;}
.ws12{word-spacing:30.112000pt;}
._9{margin-left:-19.393600pt;}
._3{margin-left:-12.188800pt;}
._20{margin-left:-11.205867pt;}
._1{margin-left:-5.909333pt;}
._e{margin-left:-4.708000pt;}
._c{margin-left:-3.542400pt;}
._2{margin-left:-2.364800pt;}
._0{margin-left:-1.145600pt;}
._d{width:1.242133pt;}
._f{width:2.708533pt;}
._a{width:3.744000pt;}
._8{width:5.067200pt;}
._7{width:6.241600pt;}
._18{width:7.611467pt;}
._5{width:9.144000pt;}
._4{width:10.050133pt;}
._6{width:11.612267pt;}
._1a{width:12.567733pt;}
._19{width:13.990133pt;}
._17{width:15.584800pt;}
._1b{width:16.958667pt;}
._1d{width:17.995200pt;}
._1c{width:19.387467pt;}
._3a{width:22.202667pt;}
._2a{width:26.526667pt;}
._b{width:29.344000pt;}
._16{width:32.224000pt;}
._12{width:62.647600pt;}
._13{width:84.150400pt;}
._39{width:108.082667pt;}
._1e{width:111.760267pt;}
._15{width:112.755200pt;}
._14{width:140.306000pt;}
._37{width:142.360533pt;}
._10{width:147.546800pt;}
._33{width:150.673600pt;}
._11{width:178.266000pt;}
._1f{width:182.613867pt;}
._2e{width:189.271467pt;}
._2b{width:203.693867pt;}
._29{width:205.096000pt;}
._21{width:207.564800pt;}
._30{width:227.511467pt;}
._2d{width:233.218133pt;}
._24{width:239.404800pt;}
._32{width:241.011733pt;}
._31{width:243.793600pt;}
._2f{width:249.378133pt;}
._35{width:267.953600pt;}
._38{width:274.711467pt;}
._36{width:281.058133pt;}
._27{width:291.953600pt;}
._28{width:297.644800pt;}
._2c{width:299.564800pt;}
._23{width:312.738133pt;}
._26{width:319.991467pt;}
._34{width:338.993600pt;}
._22{width:474.651200pt;}
._25{width:481.942400pt;}
.fs3{font-size:32.000000pt;}
.fsb{font-size:34.000000pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs8{font-size:50.666667pt;}
.fs5{font-size:52.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs4{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:66.666667pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:76.817867pt;}
.y24{bottom:95.821467pt;}
.y23{bottom:106.488133pt;}
.y58{bottom:114.897600pt;}
.y59{bottom:114.897733pt;}
.y22{bottom:117.154800pt;}
.y21{bottom:127.821467pt;}
.y57{bottom:133.795200pt;}
.y32{bottom:133.795333pt;}
.y20{bottom:138.488133pt;}
.y31{bottom:152.692933pt;}
.y1f{bottom:159.821467pt;}
.y1e{bottom:170.488133pt;}
.y30{bottom:171.590533pt;}
.y1d{bottom:181.154800pt;}
.y56{bottom:190.488133pt;}
.y49{bottom:190.488267pt;}
.y1c{bottom:202.488133pt;}
.y55{bottom:209.385733pt;}
.y2f{bottom:209.385867pt;}
.y1b{bottom:213.154800pt;}
.y1a{bottom:223.821467pt;}
.y2e{bottom:228.283467pt;}
.y19{bottom:245.154800pt;}
.y54{bottom:247.181067pt;}
.y2d{bottom:247.181200pt;}
.y18{bottom:255.821467pt;}
.y53{bottom:266.078667pt;}
.y41{bottom:266.078800pt;}
.y17{bottom:266.488133pt;}
.y16{bottom:277.154800pt;}
.y52{bottom:284.976267pt;}
.y2c{bottom:284.976400pt;}
.y15{bottom:287.821467pt;}
.y14{bottom:298.488133pt;}
.y2b{bottom:303.874000pt;}
.y13{bottom:319.821467pt;}
.y51{bottom:322.771600pt;}
.y48{bottom:322.771733pt;}
.y12{bottom:330.488133pt;}
.y11{bottom:341.154800pt;}
.y50{bottom:341.669200pt;}
.y2a{bottom:341.669333pt;}
.y10{bottom:351.821467pt;}
.y40{bottom:360.566933pt;}
.yf{bottom:362.488133pt;}
.ye{bottom:373.154800pt;}
.y3f{bottom:379.464533pt;}
.yd{bottom:383.821467pt;}
.yc{bottom:394.488133pt;}
.y4f{bottom:398.362133pt;}
.y29{bottom:398.362267pt;}
.yb{bottom:405.154800pt;}
.ya{bottom:415.821467pt;}
.y28{bottom:417.259867pt;}
.y3e{bottom:436.157467pt;}
.y27{bottom:455.055200pt;}
.y4e{bottom:473.952667pt;}
.y26{bottom:473.952800pt;}
.y74{bottom:478.771733pt;}
.y73{bottom:490.771733pt;}
.y47{bottom:492.850400pt;}
.y72{bottom:502.771733pt;}
.y3d{bottom:511.748000pt;}
.y71{bottom:514.771733pt;}
.y70{bottom:526.771733pt;}
.y3c{bottom:530.645733pt;}
.y6f{bottom:538.771733pt;}
.y46{bottom:549.543333pt;}
.y6e{bottom:550.771733pt;}
.y6d{bottom:562.771733pt;}
.y45{bottom:568.440933pt;}
.y5{bottom:573.704667pt;}
.y6c{bottom:574.771733pt;}
.y6b{bottom:586.771733pt;}
.y3b{bottom:587.338667pt;}
.y4{bottom:592.371333pt;}
.y6a{bottom:598.771733pt;}
.y3a{bottom:606.236267pt;}
.y69{bottom:610.771733pt;}
.y68{bottom:622.771733pt;}
.y39{bottom:625.133867pt;}
.y3{bottom:629.704667pt;}
.y67{bottom:634.771733pt;}
.y44{bottom:644.031600pt;}
.y66{bottom:646.771733pt;}
.y65{bottom:658.771733pt;}
.y4c{bottom:662.929067pt;}
.y38{bottom:662.929200pt;}
.y64{bottom:670.771733pt;}
.y37{bottom:681.826800pt;}
.y63{bottom:682.771600pt;}
.y62{bottom:694.771600pt;}
.y43{bottom:700.724400pt;}
.y61{bottom:706.771600pt;}
.y60{bottom:718.771600pt;}
.y4b{bottom:719.622000pt;}
.y36{bottom:719.622133pt;}
.y5f{bottom:730.771600pt;}
.y4a{bottom:738.519600pt;}
.y35{bottom:738.519733pt;}
.y5e{bottom:742.771600pt;}
.y2{bottom:749.967067pt;}
.y5d{bottom:754.771600pt;}
.y34{bottom:757.417333pt;}
.y5c{bottom:766.771600pt;}
.y1{bottom:773.967067pt;}
.y42{bottom:776.314933pt;}
.y9{bottom:778.488133pt;}
.y5b{bottom:778.771600pt;}
.y8{bottom:789.154800pt;}
.y5a{bottom:790.771600pt;}
.y33{bottom:795.212533pt;}
.y7{bottom:799.821467pt;}
.y6{bottom:810.488133pt;}
.y25{bottom:814.110133pt;}
.h5{height:28.576000pt;}
.ha{height:38.101333pt;}
.h10{height:38.474203pt;}
.hb{height:45.245333pt;}
.h9{height:45.263768pt;}
.h7{height:46.436000pt;}
.h4{height:47.626667pt;}
.h8{height:50.008000pt;}
.he{height:51.197193pt;}
.hd{height:52.053333pt;}
.hf{height:53.423158pt;}
.h6{height:54.770667pt;}
.hc{height:56.579710pt;}
.h2{height:57.152000pt;}
.h3{height:100.016000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x5{left:76.923867pt;}
.xe{left:81.259867pt;}
.x6{left:86.372667pt;}
.xa{left:96.378000pt;}
.x1{left:148.849467pt;}
.x2{left:189.778267pt;}
.x3{left:196.982800pt;}
.x4{left:202.595733pt;}
.x9{left:411.851600pt;}
.xb{left:524.684000pt;}
.x8{left:525.630667pt;}
.xd{left:526.524000pt;}
.xc{left:527.483867pt;}
}




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