
    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_42f77891b73bb508070c1472.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_49a5018a877a4746af5758a0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_9661a7b7a3fea8bb47a1b3a5.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bbcb69e70ffe57c2b71cf7a7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_01a5ecef019546fce8c5f4ae.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8a4c4b65d1e83c7bbaed789b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.992676;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_e04bbf3e2be6aeca0755fe8a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.819000;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_ce1dbee03a5432544eca5d96.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_66461bede6a9caba15b0ff77.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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_e8296a7a0c35fd79f3a22fc1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_61213091c2f87be3040bdf9c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944336;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_204dfdd3481cce24a56b5c1d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.028000;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;}
.v1{vertical-align:180.000000px;}
.lsd{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.504000px;}
.lse{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.ls1b{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.936000px;}
.ls16{letter-spacing:1.008000px;}
.ls17{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.296000px;}
.ls12{letter-spacing:1.368000px;}
.ls8{letter-spacing:1.512000px;}
.ls4{letter-spacing:1.584000px;}
.ls3{letter-spacing:1.872000px;}
.lsb{letter-spacing:2.016000px;}
.lsa{letter-spacing:2.592000px;}
.ls7{letter-spacing:3.168000px;}
.ls1c{letter-spacing:4.752000px;}
.ls14{letter-spacing:7.445400px;}
.ls1{letter-spacing:10.594332px;}
.ls0{letter-spacing:10.740000px;}
.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;}
}
.ws3{word-spacing:-72.936000px;}
.ws4{word-spacing:-72.000000px;}
.wsa{word-spacing:-49.104000px;}
.wsb{word-spacing:-49.032000px;}
.ws9{word-spacing:-48.960000px;}
.ws1{word-spacing:-48.528000px;}
.wsd{word-spacing:-32.352000px;}
.ws2{word-spacing:-21.168000px;}
.ws7{word-spacing:-20.952000px;}
.ws6{word-spacing:-20.592000px;}
.ws8{word-spacing:-20.232000px;}
.wsc{word-spacing:-7.584000px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:8.400000px;}
._1d{margin-left:-20.859600px;}
._18{margin-left:-19.442400px;}
._1{margin-left:-13.456200px;}
._2{margin-left:-11.280000px;}
._1b{margin-left:-9.166200px;}
._1a{margin-left:-7.920000px;}
._19{margin-left:-6.840000px;}
._15{margin-left:-5.448000px;}
._14{margin-left:-4.344000px;}
._0{margin-left:-3.120000px;}
._3{margin-left:-2.040000px;}
._4{margin-left:-1.008000px;}
._e{width:1.676400px;}
._12{width:3.507600px;}
._16{width:4.734000px;}
._8{width:5.832000px;}
._5{width:7.560000px;}
._1c{width:8.856000px;}
._9{width:10.296000px;}
._d{width:11.448000px;}
._10{width:14.040000px;}
._f{width:15.912000px;}
._7{width:17.568000px;}
._6{width:20.592000px;}
._13{width:23.854200px;}
._11{width:28.163400px;}
._a{width:30.096000px;}
._c{width:33.672000px;}
._b{width:34.872000px;}
._17{width:202.244400px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1{bottom:103.500000px;}
.y21{bottom:148.500000px;}
.y51{bottom:148.500150px;}
.y50{bottom:163.500150px;}
.y20{bottom:171.000000px;}
.y4f{bottom:178.500150px;}
.y1f{bottom:193.500000px;}
.y4e{bottom:193.500150px;}
.y4d{bottom:208.500150px;}
.y1e{bottom:216.000000px;}
.y4c{bottom:223.500150px;}
.y1d{bottom:238.500000px;}
.y4b{bottom:238.500150px;}
.y4a{bottom:253.500150px;}
.y1c{bottom:261.000000px;}
.y49{bottom:268.500150px;}
.y1b{bottom:283.500000px;}
.y48{bottom:283.500150px;}
.y47{bottom:298.500150px;}
.y1a{bottom:306.000000px;}
.y46{bottom:313.500150px;}
.y19{bottom:328.500000px;}
.y45{bottom:328.500150px;}
.y44{bottom:343.500150px;}
.y18{bottom:351.000000px;}
.y43{bottom:358.500150px;}
.y17{bottom:373.500000px;}
.y42{bottom:381.000150px;}
.y16{bottom:396.000000px;}
.y15{bottom:418.500000px;}
.y41{bottom:426.000150px;}
.y14{bottom:441.000000px;}
.y40{bottom:448.200000px;}
.y13{bottom:463.500000px;}
.y3f{bottom:470.400150px;}
.y63{bottom:482.250000px;}
.y12{bottom:486.000000px;}
.y3e{bottom:492.600150px;}
.y62{bottom:501.000000px;}
.y11{bottom:508.500000px;}
.y3d{bottom:514.800150px;}
.y61{bottom:519.750000px;}
.y10{bottom:531.000000px;}
.y3c{bottom:537.000150px;}
.yf{bottom:553.500000px;}
.y60{bottom:557.250000px;}
.y3b{bottom:559.200000px;}
.ye{bottom:576.000000px;}
.y3a{bottom:581.400150px;}
.yd{bottom:598.500000px;}
.y39{bottom:603.600150px;}
.y5f{bottom:617.250000px;}
.yc{bottom:621.000000px;}
.y38{bottom:625.800150px;}
.y5e{bottom:636.000000px;}
.yb{bottom:643.500000px;}
.y37{bottom:648.000150px;}
.y5d{bottom:654.750000px;}
.ya{bottom:666.000000px;}
.y36{bottom:670.200000px;}
.y5c{bottom:673.500000px;}
.y8{bottom:688.500000px;}
.y5b{bottom:692.250000px;}
.y35{bottom:692.400150px;}
.y9{bottom:711.000000px;}
.y34{bottom:714.600150px;}
.y5a{bottom:729.750000px;}
.y28{bottom:733.500000px;}
.y33{bottom:736.800150px;}
.y59{bottom:748.500000px;}
.y27{bottom:756.000000px;}
.y32{bottom:759.000150px;}
.y58{bottom:774.750000px;}
.y7{bottom:778.500000px;}
.y31{bottom:781.200000px;}
.y6{bottom:801.000000px;}
.y30{bottom:803.400000px;}
.y57{bottom:819.750000px;}
.y5{bottom:823.500000px;}
.y2f{bottom:825.600000px;}
.y56{bottom:838.500000px;}
.y26{bottom:846.000000px;}
.y2e{bottom:847.800150px;}
.y55{bottom:857.250000px;}
.y25{bottom:868.500000px;}
.y2d{bottom:870.000150px;}
.y54{bottom:876.000000px;}
.y4{bottom:891.000000px;}
.y2c{bottom:892.200000px;}
.y53{bottom:894.750000px;}
.y24{bottom:913.500000px;}
.y2b{bottom:914.400000px;}
.y3{bottom:921.000000px;}
.y52{bottom:932.250000px;}
.y23{bottom:936.000000px;}
.y2a{bottom:936.600000px;}
.y2{bottom:951.000000px;}
.y22{bottom:958.500000px;}
.y29{bottom:958.800000px;}
.h9{height:39.072000px;}
.h1{height:39.990234px;}
.ha{height:46.312500px;}
.h4{height:50.580000px;}
.h8{height:57.890625px;}
.h5{height:61.136719px;}
.h7{height:69.468750px;}
.h2{height:82.792969px;}
.h3{height:115.781250px;}
.h6{height:342.453024px;}
.h0{height:1080.000000px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x1{left:99.000000px;}
.x3{left:114.000000px;}
.x2{left:142.018200px;}
.x6{left:144.000000px;}
.x7{left:159.000000px;}
.x4{left:166.500000px;}
.x5{left:453.653250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:160.000000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.832000pt;}
.ls16{letter-spacing:0.896000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.152000pt;}
.ls12{letter-spacing:1.216000pt;}
.ls8{letter-spacing:1.344000pt;}
.ls4{letter-spacing:1.408000pt;}
.ls3{letter-spacing:1.664000pt;}
.lsb{letter-spacing:1.792000pt;}
.lsa{letter-spacing:2.304000pt;}
.ls7{letter-spacing:2.816000pt;}
.ls1c{letter-spacing:4.224000pt;}
.ls14{letter-spacing:6.618133pt;}
.ls1{letter-spacing:9.417184pt;}
.ls0{letter-spacing:9.546667pt;}
.ws3{word-spacing:-64.832000pt;}
.ws4{word-spacing:-64.000000pt;}
.wsa{word-spacing:-43.648000pt;}
.wsb{word-spacing:-43.584000pt;}
.ws9{word-spacing:-43.520000pt;}
.ws1{word-spacing:-43.136000pt;}
.wsd{word-spacing:-28.757333pt;}
.ws2{word-spacing:-18.816000pt;}
.ws7{word-spacing:-18.624000pt;}
.ws6{word-spacing:-18.304000pt;}
.ws8{word-spacing:-17.984000pt;}
.wsc{word-spacing:-6.741333pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:7.466667pt;}
._1d{margin-left:-18.541867pt;}
._18{margin-left:-17.282133pt;}
._1{margin-left:-11.961067pt;}
._2{margin-left:-10.026667pt;}
._1b{margin-left:-8.147733pt;}
._1a{margin-left:-7.040000pt;}
._19{margin-left:-6.080000pt;}
._15{margin-left:-4.842667pt;}
._14{margin-left:-3.861333pt;}
._0{margin-left:-2.773333pt;}
._3{margin-left:-1.813333pt;}
._4{margin-left:-0.896000pt;}
._e{width:1.490133pt;}
._12{width:3.117867pt;}
._16{width:4.208000pt;}
._8{width:5.184000pt;}
._5{width:6.720000pt;}
._1c{width:7.872000pt;}
._9{width:9.152000pt;}
._d{width:10.176000pt;}
._10{width:12.480000pt;}
._f{width:14.144000pt;}
._7{width:15.616000pt;}
._6{width:18.304000pt;}
._13{width:21.203733pt;}
._11{width:25.034133pt;}
._a{width:26.752000pt;}
._c{width:29.930667pt;}
._b{width:30.997333pt;}
._17{width:179.772800pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:92.000000pt;}
.y21{bottom:132.000000pt;}
.y51{bottom:132.000133pt;}
.y50{bottom:145.333467pt;}
.y20{bottom:152.000000pt;}
.y4f{bottom:158.666800pt;}
.y1f{bottom:172.000000pt;}
.y4e{bottom:172.000133pt;}
.y4d{bottom:185.333467pt;}
.y1e{bottom:192.000000pt;}
.y4c{bottom:198.666800pt;}
.y1d{bottom:212.000000pt;}
.y4b{bottom:212.000133pt;}
.y4a{bottom:225.333467pt;}
.y1c{bottom:232.000000pt;}
.y49{bottom:238.666800pt;}
.y1b{bottom:252.000000pt;}
.y48{bottom:252.000133pt;}
.y47{bottom:265.333467pt;}
.y1a{bottom:272.000000pt;}
.y46{bottom:278.666800pt;}
.y19{bottom:292.000000pt;}
.y45{bottom:292.000133pt;}
.y44{bottom:305.333467pt;}
.y18{bottom:312.000000pt;}
.y43{bottom:318.666800pt;}
.y17{bottom:332.000000pt;}
.y42{bottom:338.666800pt;}
.y16{bottom:352.000000pt;}
.y15{bottom:372.000000pt;}
.y41{bottom:378.666800pt;}
.y14{bottom:392.000000pt;}
.y40{bottom:398.400000pt;}
.y13{bottom:412.000000pt;}
.y3f{bottom:418.133467pt;}
.y63{bottom:428.666667pt;}
.y12{bottom:432.000000pt;}
.y3e{bottom:437.866800pt;}
.y62{bottom:445.333333pt;}
.y11{bottom:452.000000pt;}
.y3d{bottom:457.600133pt;}
.y61{bottom:462.000000pt;}
.y10{bottom:472.000000pt;}
.y3c{bottom:477.333467pt;}
.yf{bottom:492.000000pt;}
.y60{bottom:495.333333pt;}
.y3b{bottom:497.066667pt;}
.ye{bottom:512.000000pt;}
.y3a{bottom:516.800133pt;}
.yd{bottom:532.000000pt;}
.y39{bottom:536.533467pt;}
.y5f{bottom:548.666667pt;}
.yc{bottom:552.000000pt;}
.y38{bottom:556.266800pt;}
.y5e{bottom:565.333333pt;}
.yb{bottom:572.000000pt;}
.y37{bottom:576.000133pt;}
.y5d{bottom:582.000000pt;}
.ya{bottom:592.000000pt;}
.y36{bottom:595.733333pt;}
.y5c{bottom:598.666667pt;}
.y8{bottom:612.000000pt;}
.y5b{bottom:615.333333pt;}
.y35{bottom:615.466800pt;}
.y9{bottom:632.000000pt;}
.y34{bottom:635.200133pt;}
.y5a{bottom:648.666667pt;}
.y28{bottom:652.000000pt;}
.y33{bottom:654.933467pt;}
.y59{bottom:665.333333pt;}
.y27{bottom:672.000000pt;}
.y32{bottom:674.666800pt;}
.y58{bottom:688.666667pt;}
.y7{bottom:692.000000pt;}
.y31{bottom:694.400000pt;}
.y6{bottom:712.000000pt;}
.y30{bottom:714.133333pt;}
.y57{bottom:728.666667pt;}
.y5{bottom:732.000000pt;}
.y2f{bottom:733.866667pt;}
.y56{bottom:745.333333pt;}
.y26{bottom:752.000000pt;}
.y2e{bottom:753.600133pt;}
.y55{bottom:762.000000pt;}
.y25{bottom:772.000000pt;}
.y2d{bottom:773.333467pt;}
.y54{bottom:778.666667pt;}
.y4{bottom:792.000000pt;}
.y2c{bottom:793.066667pt;}
.y53{bottom:795.333333pt;}
.y24{bottom:812.000000pt;}
.y2b{bottom:812.800000pt;}
.y3{bottom:818.666667pt;}
.y52{bottom:828.666667pt;}
.y23{bottom:832.000000pt;}
.y2a{bottom:832.533333pt;}
.y2{bottom:845.333333pt;}
.y22{bottom:852.000000pt;}
.y29{bottom:852.266667pt;}
.h9{height:34.730667pt;}
.h1{height:35.546875pt;}
.ha{height:41.166667pt;}
.h4{height:44.960000pt;}
.h8{height:51.458333pt;}
.h5{height:54.343750pt;}
.h7{height:61.750000pt;}
.h2{height:73.593750pt;}
.h3{height:102.916667pt;}
.h6{height:304.402688pt;}
.h0{height:960.000000pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x1{left:88.000000pt;}
.x3{left:101.333333pt;}
.x2{left:126.238400pt;}
.x6{left:128.000000pt;}
.x7{left:141.333333pt;}
.x4{left:148.000000pt;}
.x5{left:403.247333pt;}
}




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