
    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_5f3ecf08745ebbce0e1ae0a3.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_4dd095ee23b5b16cbac8bd41.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_4b4272a5d24c2adfdbabf1c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_edff3de32f53c156a58b003c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e04bbf3e2be6aeca0755fe8a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_56da30ba2d8c5e6c2e0f94e5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8b6a6f5e8d79c402a319e531.woff')format("woff");}.ff8{font-family:ff8;line-height:0.845703;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_84047ef780a8c15084d898f6.woff')format("woff");}.ff9{font-family:ff9;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);}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000600px;}
.ls23{letter-spacing:0.009000px;}
.ls5{letter-spacing:0.012000px;}
.lse{letter-spacing:0.013200px;}
.lsb{letter-spacing:0.013800px;}
.ls17{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.100800px;}
.ls18{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.201600px;}
.ls3{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.232200px;}
.ls12{letter-spacing:0.252000px;}
.ls21{letter-spacing:0.267600px;}
.lsf{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.352800px;}
.ls13{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.382800px;}
.ls1f{letter-spacing:0.403200px;}
.ls9{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.453600px;}
.ls8{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.648000px;}
.ls14{letter-spacing:3.480600px;}
.ls22{letter-spacing:4.752000px;}
.ls1e{letter-spacing:6.163200px;}
.ls19{letter-spacing:6.837600px;}
.ls15{letter-spacing:7.067400px;}
.lsd{letter-spacing:8.127600px;}
.ls0{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.594824px;}
.ls1{letter-spacing:10.740000px;}
.ls16{letter-spacing:11.952000px;}
.ls20{letter-spacing:18.188160px;}
.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;}
}
.ws15{word-spacing:-60.480000px;}
.wse{word-spacing:-49.032000px;}
.wsb{word-spacing:-48.960000px;}
.ws17{word-spacing:-48.888000px;}
.ws11{word-spacing:-48.816000px;}
.wsf{word-spacing:-48.744000px;}
.wsa{word-spacing:-48.672000px;}
.ws16{word-spacing:-48.600000px;}
.ws3{word-spacing:-48.528000px;}
.ws20{word-spacing:-40.740000px;}
.ws1{word-spacing:-40.440000px;}
.ws19{word-spacing:-36.576000px;}
.ws8{word-spacing:-32.352000px;}
.ws1c{word-spacing:-25.320000px;}
.ws1d{word-spacing:-20.592000px;}
.ws7{word-spacing:-20.232000px;}
.ws14{word-spacing:-17.784000px;}
.ws21{word-spacing:-17.160000px;}
.ws2{word-spacing:-16.860000px;}
.ws18{word-spacing:-14.616000px;}
.ws1a{word-spacing:-14.565600px;}
.wsc{word-spacing:-14.515200px;}
.ws12{word-spacing:-14.414400px;}
.ws10{word-spacing:-14.364000px;}
.ws9{word-spacing:-14.263200px;}
.ws6{word-spacing:-14.162400px;}
.ws5{word-spacing:-13.757760px;}
.ws1e{word-spacing:-13.488000px;}
.ws1f{word-spacing:-12.336000px;}
.wsd{word-spacing:-9.441600px;}
.ws1b{word-spacing:-9.171840px;}
.ws0{word-spacing:-8.520000px;}
.ws13{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-568.536600px;}
._14{margin-left:-17.952000px;}
._4{margin-left:-14.532000px;}
._1b{margin-left:-13.524000px;}
._d{margin-left:-12.168000px;}
._2{margin-left:-10.920000px;}
._0{margin-left:-8.460000px;}
._f{margin-left:-6.768000px;}
._3{margin-left:-5.520000px;}
._c{margin-left:-4.272000px;}
._1{margin-left:-3.120000px;}
._5{margin-left:-2.040000px;}
._b{margin-left:-1.008000px;}
._a{width:1.008000px;}
._6{width:2.340000px;}
._7{width:3.660000px;}
._11{width:4.668000px;}
._9{width:5.880000px;}
._8{width:7.080000px;}
._e{width:8.100000px;}
._19{width:9.504000px;}
._16{width:11.069400px;}
._15{width:12.143400px;}
._18{width:14.112000px;}
._1a{width:16.161600px;}
._17{width:19.219800px;}
._12{width:34.508160px;}
._10{width:164.100000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:32.640000px;}
.fs8{font-size:33.600000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:48.960000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y21{bottom:102.750750px;}
.y1{bottom:103.500000px;}
.y20{bottom:148.500000px;}
.y3a{bottom:152.460000px;}
.y38{bottom:163.500000px;}
.y34{bottom:167.460000px;}
.y1f{bottom:171.000000px;}
.y39{bottom:174.960000px;}
.y37{bottom:178.500000px;}
.y60{bottom:182.250000px;}
.y33{bottom:186.000000px;}
.y1e{bottom:193.500000px;}
.y32{bottom:201.000000px;}
.y36{bottom:208.500000px;}
.y1d{bottom:216.000000px;}
.y5f{bottom:219.750000px;}
.y35{bottom:227.460000px;}
.y31{bottom:231.000000px;}
.y1c{bottom:238.500000px;}
.y30{bottom:246.000000px;}
.y5e{bottom:257.250000px;}
.y1b{bottom:261.000000px;}
.y2f{bottom:276.000000px;}
.y1a{bottom:283.500000px;}
.y5d{bottom:294.750000px;}
.y2e{bottom:294.960000px;}
.y41{bottom:298.500000px;}
.y19{bottom:306.000000px;}
.y5c{bottom:313.500000px;}
.y18{bottom:328.500000px;}
.y5b{bottom:332.250000px;}
.y40{bottom:336.000000px;}
.y17{bottom:351.000000px;}
.y3f{bottom:366.000000px;}
.y5a{bottom:369.750000px;}
.y16{bottom:373.500000px;}
.y3e{bottom:381.000000px;}
.y59{bottom:388.500000px;}
.y15{bottom:396.000000px;}
.y58{bottom:407.250000px;}
.y14{bottom:418.500000px;}
.y57{bottom:426.000000px;}
.y13{bottom:441.000000px;}
.y56{bottom:444.750000px;}
.y12{bottom:463.500000px;}
.y3d{bottom:471.000000px;}
.y55{bottom:482.250000px;}
.y11{bottom:486.000000px;}
.y3c{bottom:501.000000px;}
.y10{bottom:508.500000px;}
.y3b{bottom:516.000000px;}
.y54{bottom:519.750000px;}
.yf{bottom:531.000000px;}
.y53{bottom:538.500000px;}
.ye{bottom:553.500000px;}
.y52{bottom:557.250000px;}
.yc{bottom:576.000000px;}
.y51{bottom:594.750000px;}
.yd{bottom:598.500000px;}
.y50{bottom:613.500000px;}
.y2d{bottom:621.000000px;}
.y4f{bottom:632.250000px;}
.y2c{bottom:643.500000px;}
.y4e{bottom:651.000000px;}
.yb{bottom:666.000000px;}
.y4d{bottom:669.750000px;}
.ya{bottom:688.500000px;}
.y4c{bottom:707.250000px;}
.y2b{bottom:711.000000px;}
.y4b{bottom:726.000000px;}
.y9{bottom:733.500000px;}
.y4a{bottom:744.750000px;}
.y8{bottom:751.500000px;}
.y2a{bottom:756.000000px;}
.y49{bottom:763.500000px;}
.y7{bottom:769.500000px;}
.y29{bottom:778.500000px;}
.y48{bottom:782.250000px;}
.y6{bottom:787.500000px;}
.y67{bottom:789.750000px;}
.y28{bottom:801.000000px;}
.y66{bottom:808.500000px;}
.y47{bottom:819.750000px;}
.y27{bottom:823.500000px;}
.y65{bottom:827.250000px;}
.y5{bottom:828.000000px;}
.y46{bottom:838.500000px;}
.y26{bottom:846.000000px;}
.y45{bottom:857.250000px;}
.y25{bottom:868.500000px;}
.y44{bottom:876.000000px;}
.y64{bottom:883.500000px;}
.y4{bottom:891.000000px;}
.y43{bottom:894.750000px;}
.y24{bottom:913.500000px;}
.y3{bottom:921.000000px;}
.y63{bottom:924.750000px;}
.y42{bottom:932.250000px;}
.y23{bottom:936.000000px;}
.y62{bottom:943.500000px;}
.y2{bottom:951.000000px;}
.y22{bottom:958.500000px;}
.y61{bottom:962.250000px;}
.ha{height:30.472500px;}
.he{height:31.492500px;}
.hf{height:39.072000px;}
.h1{height:39.990234px;}
.hc{height:40.757812px;}
.hb{height:46.312500px;}
.h6{height:50.580000px;}
.h4{height:50.947266px;}
.h5{height:57.890625px;}
.h7{height:61.136719px;}
.h9{height:69.468750px;}
.hd{height:70.998750px;}
.h2{height:82.792969px;}
.h3{height:115.781250px;}
.h8{height:342.453024px;}
.h0{height:1080.000000px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x1{left:99.000000px;}
.x5{left:114.000000px;}
.x4{left:143.183850px;}
.x8{left:159.000000px;}
.x6{left:166.500000px;}
.x9{left:211.500000px;}
.x2{left:319.500000px;}
.x7{left:453.653250px;}
.x3{left:524.676300px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000533pt;}
.ls23{letter-spacing:0.008000pt;}
.ls5{letter-spacing:0.010667pt;}
.lse{letter-spacing:0.011733pt;}
.lsb{letter-spacing:0.012267pt;}
.ls17{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.089600pt;}
.ls18{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.179200pt;}
.ls3{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.206400pt;}
.ls12{letter-spacing:0.224000pt;}
.ls21{letter-spacing:0.237867pt;}
.lsf{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.313600pt;}
.ls13{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.340267pt;}
.ls1f{letter-spacing:0.358400pt;}
.ls9{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.403200pt;}
.ls8{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls14{letter-spacing:3.093867pt;}
.ls22{letter-spacing:4.224000pt;}
.ls1e{letter-spacing:5.478400pt;}
.ls19{letter-spacing:6.077867pt;}
.ls15{letter-spacing:6.282133pt;}
.lsd{letter-spacing:7.224533pt;}
.ls0{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.417621pt;}
.ls1{letter-spacing:9.546667pt;}
.ls16{letter-spacing:10.624000pt;}
.ls20{letter-spacing:16.167253pt;}
.ws15{word-spacing:-53.760000pt;}
.wse{word-spacing:-43.584000pt;}
.wsb{word-spacing:-43.520000pt;}
.ws17{word-spacing:-43.456000pt;}
.ws11{word-spacing:-43.392000pt;}
.wsf{word-spacing:-43.328000pt;}
.wsa{word-spacing:-43.264000pt;}
.ws16{word-spacing:-43.200000pt;}
.ws3{word-spacing:-43.136000pt;}
.ws20{word-spacing:-36.213333pt;}
.ws1{word-spacing:-35.946667pt;}
.ws19{word-spacing:-32.512000pt;}
.ws8{word-spacing:-28.757333pt;}
.ws1c{word-spacing:-22.506667pt;}
.ws1d{word-spacing:-18.304000pt;}
.ws7{word-spacing:-17.984000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws21{word-spacing:-15.253333pt;}
.ws2{word-spacing:-14.986667pt;}
.ws18{word-spacing:-12.992000pt;}
.ws1a{word-spacing:-12.947200pt;}
.wsc{word-spacing:-12.902400pt;}
.ws12{word-spacing:-12.812800pt;}
.ws10{word-spacing:-12.768000pt;}
.ws9{word-spacing:-12.678400pt;}
.ws6{word-spacing:-12.588800pt;}
.ws5{word-spacing:-12.229120pt;}
.ws1e{word-spacing:-11.989333pt;}
.ws1f{word-spacing:-10.965333pt;}
.wsd{word-spacing:-8.392533pt;}
.ws1b{word-spacing:-8.152747pt;}
.ws0{word-spacing:-7.573333pt;}
.ws13{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-505.365867pt;}
._14{margin-left:-15.957333pt;}
._4{margin-left:-12.917333pt;}
._1b{margin-left:-12.021333pt;}
._d{margin-left:-10.816000pt;}
._2{margin-left:-9.706667pt;}
._0{margin-left:-7.520000pt;}
._f{margin-left:-6.016000pt;}
._3{margin-left:-4.906667pt;}
._c{margin-left:-3.797333pt;}
._1{margin-left:-2.773333pt;}
._5{margin-left:-1.813333pt;}
._b{margin-left:-0.896000pt;}
._a{width:0.896000pt;}
._6{width:2.080000pt;}
._7{width:3.253333pt;}
._11{width:4.149333pt;}
._9{width:5.226667pt;}
._8{width:6.293333pt;}
._e{width:7.200000pt;}
._19{width:8.448000pt;}
._16{width:9.839467pt;}
._15{width:10.794133pt;}
._18{width:12.544000pt;}
._1a{width:14.365867pt;}
._17{width:17.084267pt;}
._12{width:30.673920pt;}
._10{width:145.866667pt;}
.fs6{font-size:29.013333pt;}
.fs8{font-size:29.866667pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:43.520000pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:91.334000pt;}
.y1{bottom:92.000000pt;}
.y20{bottom:132.000000pt;}
.y3a{bottom:135.520000pt;}
.y38{bottom:145.333333pt;}
.y34{bottom:148.853333pt;}
.y1f{bottom:152.000000pt;}
.y39{bottom:155.520000pt;}
.y37{bottom:158.666667pt;}
.y60{bottom:162.000000pt;}
.y33{bottom:165.333333pt;}
.y1e{bottom:172.000000pt;}
.y32{bottom:178.666667pt;}
.y36{bottom:185.333333pt;}
.y1d{bottom:192.000000pt;}
.y5f{bottom:195.333333pt;}
.y35{bottom:202.186667pt;}
.y31{bottom:205.333333pt;}
.y1c{bottom:212.000000pt;}
.y30{bottom:218.666667pt;}
.y5e{bottom:228.666667pt;}
.y1b{bottom:232.000000pt;}
.y2f{bottom:245.333333pt;}
.y1a{bottom:252.000000pt;}
.y5d{bottom:262.000000pt;}
.y2e{bottom:262.186667pt;}
.y41{bottom:265.333333pt;}
.y19{bottom:272.000000pt;}
.y5c{bottom:278.666667pt;}
.y18{bottom:292.000000pt;}
.y5b{bottom:295.333333pt;}
.y40{bottom:298.666667pt;}
.y17{bottom:312.000000pt;}
.y3f{bottom:325.333333pt;}
.y5a{bottom:328.666667pt;}
.y16{bottom:332.000000pt;}
.y3e{bottom:338.666667pt;}
.y59{bottom:345.333333pt;}
.y15{bottom:352.000000pt;}
.y58{bottom:362.000000pt;}
.y14{bottom:372.000000pt;}
.y57{bottom:378.666667pt;}
.y13{bottom:392.000000pt;}
.y56{bottom:395.333333pt;}
.y12{bottom:412.000000pt;}
.y3d{bottom:418.666667pt;}
.y55{bottom:428.666667pt;}
.y11{bottom:432.000000pt;}
.y3c{bottom:445.333333pt;}
.y10{bottom:452.000000pt;}
.y3b{bottom:458.666667pt;}
.y54{bottom:462.000000pt;}
.yf{bottom:472.000000pt;}
.y53{bottom:478.666667pt;}
.ye{bottom:492.000000pt;}
.y52{bottom:495.333333pt;}
.yc{bottom:512.000000pt;}
.y51{bottom:528.666667pt;}
.yd{bottom:532.000000pt;}
.y50{bottom:545.333333pt;}
.y2d{bottom:552.000000pt;}
.y4f{bottom:562.000000pt;}
.y2c{bottom:572.000000pt;}
.y4e{bottom:578.666667pt;}
.yb{bottom:592.000000pt;}
.y4d{bottom:595.333333pt;}
.ya{bottom:612.000000pt;}
.y4c{bottom:628.666667pt;}
.y2b{bottom:632.000000pt;}
.y4b{bottom:645.333333pt;}
.y9{bottom:652.000000pt;}
.y4a{bottom:662.000000pt;}
.y8{bottom:668.000000pt;}
.y2a{bottom:672.000000pt;}
.y49{bottom:678.666667pt;}
.y7{bottom:684.000000pt;}
.y29{bottom:692.000000pt;}
.y48{bottom:695.333333pt;}
.y6{bottom:700.000000pt;}
.y67{bottom:702.000000pt;}
.y28{bottom:712.000000pt;}
.y66{bottom:718.666667pt;}
.y47{bottom:728.666667pt;}
.y27{bottom:732.000000pt;}
.y65{bottom:735.333333pt;}
.y5{bottom:736.000000pt;}
.y46{bottom:745.333333pt;}
.y26{bottom:752.000000pt;}
.y45{bottom:762.000000pt;}
.y25{bottom:772.000000pt;}
.y44{bottom:778.666667pt;}
.y64{bottom:785.333333pt;}
.y4{bottom:792.000000pt;}
.y43{bottom:795.333333pt;}
.y24{bottom:812.000000pt;}
.y3{bottom:818.666667pt;}
.y63{bottom:822.000000pt;}
.y42{bottom:828.666667pt;}
.y23{bottom:832.000000pt;}
.y62{bottom:838.666667pt;}
.y2{bottom:845.333333pt;}
.y22{bottom:852.000000pt;}
.y61{bottom:855.333333pt;}
.ha{height:27.086667pt;}
.he{height:27.993333pt;}
.hf{height:34.730667pt;}
.h1{height:35.546875pt;}
.hc{height:36.229167pt;}
.hb{height:41.166667pt;}
.h6{height:44.960000pt;}
.h4{height:45.286458pt;}
.h5{height:51.458333pt;}
.h7{height:54.343750pt;}
.h9{height:61.750000pt;}
.hd{height:63.110000pt;}
.h2{height:73.593750pt;}
.h3{height:102.916667pt;}
.h8{height:304.402688pt;}
.h0{height:960.000000pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x1{left:88.000000pt;}
.x5{left:101.333333pt;}
.x4{left:127.274533pt;}
.x8{left:141.333333pt;}
.x6{left:148.000000pt;}
.x9{left:188.000000pt;}
.x2{left:284.000000pt;}
.x7{left:403.247333pt;}
.x3{left:466.378933pt;}
}




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