
    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_8839b98347b2d22673d07c13.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_60ed125767d2ce5316efd440.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_22d3ac01edd1fc6e5469c0dd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_fcac219c12417c23890ec799.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dd9876c25f95ffa6d31a0b2f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_e1cc80beec63f9d814e93bcd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_c416255370e00df5d69a2306.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_eee78511b04840aaf62b1f24.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_d7e1bd4bb0c3208d7e0d6846.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_0ea06d7dfb9532828c5313ba.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.808000px;}
.ls1a{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.780000px;}
.ls15{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.120000px;}
.ls14{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.060000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.720000px;}
.ls2{letter-spacing:7.614000px;}
.ls0{letter-spacing:8.436000px;}
.ls1{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;}
}
.ws16{word-spacing:-20.232000px;}
.ws15{word-spacing:-14.162400px;}
.ws0{word-spacing:-8.496000px;}
.ws9{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.600000px;}
.ws14{word-spacing:-0.576000px;}
.ws1a{word-spacing:-0.540000px;}
.ws1c{word-spacing:-0.480000px;}
.ws11{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.300000px;}
.wsa{word-spacing:-0.288000px;}
.ws12{word-spacing:-0.180000px;}
.ws2{word-spacing:0.000000px;}
.ws19{word-spacing:0.060000px;}
.ws17{word-spacing:0.072000px;}
.ws1d{word-spacing:0.120000px;}
.wsc{word-spacing:0.144000px;}
.ws6{word-spacing:0.240000px;}
.wsf{word-spacing:0.300000px;}
.wse{word-spacing:0.360000px;}
.wsd{word-spacing:0.432000px;}
.ws1b{word-spacing:0.480000px;}
.ws18{word-spacing:0.720000px;}
.ws10{word-spacing:0.780000px;}
.ws5{word-spacing:0.792000px;}
.ws1e{word-spacing:0.960000px;}
.ws3{word-spacing:1.800000px;}
.ws4{word-spacing:3.780000px;}
.ws1{word-spacing:4.200000px;}
.wsb{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._10{margin-left:-16.860000px;}
._b{margin-left:-12.348000px;}
._11{margin-left:-10.512000px;}
._7{margin-left:-7.630200px;}
._1{margin-left:-5.964000px;}
._a{margin-left:-4.284000px;}
._9{margin-left:-3.026400px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.432000px;}
._c{width:4.452000px;}
._6{width:5.467200px;}
._d{width:7.089600px;}
._4{width:8.568000px;}
._8{width:10.224000px;}
._e{width:11.520000px;}
._f{width:31.645500px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y45{bottom:119.792100px;}
.y21{bottom:120.564600px;}
.y64{bottom:121.207500px;}
.y20{bottom:142.614600px;}
.y44{bottom:142.742100px;}
.y1f{bottom:164.664600px;}
.y63{bottom:165.668100px;}
.y43{bottom:165.692100px;}
.y1e{bottom:186.714600px;}
.y62{bottom:188.474100px;}
.y42{bottom:188.642100px;}
.y61{bottom:211.280100px;}
.y1d{bottom:230.814600px;}
.y60{bottom:234.086100px;}
.y41{bottom:234.542100px;}
.y1c{bottom:250.164600px;}
.y83{bottom:254.192100px;}
.y40{bottom:254.792100px;}
.y5f{bottom:256.892100px;}
.y1b{bottom:269.514600px;}
.y82{bottom:272.942100px;}
.y3f{bottom:275.042100px;}
.y1a{bottom:288.864600px;}
.y81{bottom:291.692100px;}
.y3e{bottom:295.292100px;}
.y5e{bottom:302.492100px;}
.y19{bottom:308.214600px;}
.y80{bottom:310.442100px;}
.y3d{bottom:315.542100px;}
.y5d{bottom:322.592100px;}
.y18{bottom:327.564600px;}
.y3c{bottom:335.792100px;}
.y7f{bottom:340.442100px;}
.y5c{bottom:342.692100px;}
.y17{bottom:346.914600px;}
.y3b{bottom:356.042100px;}
.y5b{bottom:362.792100px;}
.y16{bottom:366.264600px;}
.y3a{bottom:376.292100px;}
.y7e{bottom:381.692100px;}
.y5a{bottom:382.892100px;}
.y15{bottom:385.614600px;}
.y7d{bottom:401.492100px;}
.y59{bottom:402.992100px;}
.y14{bottom:404.964600px;}
.y39{bottom:405.046050px;}
.y7c{bottom:421.292100px;}
.y13{bottom:424.314600px;}
.y38{bottom:427.996050px;}
.y58{bottom:431.584050px;}
.y7b{bottom:441.092100px;}
.y12{bottom:443.664600px;}
.y37{bottom:450.946050px;}
.y57{bottom:454.390050px;}
.y7a{bottom:460.892100px;}
.y11{bottom:463.014600px;}
.y36{bottom:473.896050px;}
.y56{bottom:477.196050px;}
.y79{bottom:480.692100px;}
.y10{bottom:482.364600px;}
.y35{bottom:496.846050px;}
.y78{bottom:500.492100px;}
.yf{bottom:501.714600px;}
.y34{bottom:519.796050px;}
.y77{bottom:520.292100px;}
.ye{bottom:521.064600px;}
.y55{bottom:522.796050px;}
.y76{bottom:540.092100px;}
.y33{bottom:542.746050px;}
.y54{bottom:542.896050px;}
.yd{bottom:548.918550px;}
.y53{bottom:562.996050px;}
.y75{bottom:568.396050px;}
.yc{bottom:570.968550px;}
.y52{bottom:583.096050px;}
.y32{bottom:588.496050px;}
.y74{bottom:590.896050px;}
.yb{bottom:593.018550px;}
.y51{bottom:603.196050px;}
.y31{bottom:608.596050px;}
.y73{bottom:613.396050px;}
.ya{bottom:615.068550px;}
.y50{bottom:623.296050px;}
.y30{bottom:628.696050px;}
.y9{bottom:637.118550px;}
.y4f{bottom:643.396050px;}
.y2f{bottom:648.796050px;}
.y72{bottom:658.396050px;}
.y8{bottom:659.168550px;}
.y4e{bottom:663.496050px;}
.y2e{bottom:668.896050px;}
.y71{bottom:678.196050px;}
.y7{bottom:681.218550px;}
.y4d{bottom:683.596050px;}
.y2d{bottom:688.996050px;}
.y70{bottom:697.996050px;}
.y6{bottom:703.268550px;}
.y4c{bottom:703.696050px;}
.y2c{bottom:709.096050px;}
.y6f{bottom:717.796050px;}
.y4b{bottom:723.796050px;}
.y5{bottom:725.318550px;}
.y2b{bottom:729.196050px;}
.y6e{bottom:737.596050px;}
.y4a{bottom:743.896050px;}
.y2a{bottom:749.296050px;}
.y6d{bottom:757.396050px;}
.y49{bottom:763.996050px;}
.y29{bottom:769.396050px;}
.y4{bottom:770.754300px;}
.y6c{bottom:777.196050px;}
.y48{bottom:784.096050px;}
.y28{bottom:789.496050px;}
.y3{bottom:792.804300px;}
.y6b{bottom:796.996050px;}
.y27{bottom:809.596050px;}
.y47{bottom:812.670000px;}
.y6a{bottom:816.796050px;}
.y26{bottom:829.696050px;}
.y46{bottom:835.476000px;}
.y69{bottom:836.596050px;}
.y68{bottom:856.396050px;}
.y25{bottom:858.282000px;}
.y2{bottom:859.500000px;}
.y67{bottom:876.196050px;}
.y24{bottom:881.088000px;}
.y23{bottom:903.894000px;}
.y66{bottom:904.500000px;}
.y22{bottom:926.700000px;}
.y65{bottom:927.000000px;}
.h9{height:23.927813px;}
.h5{height:35.991211px;}
.h1{height:39.990234px;}
.h4{height:47.988281px;}
.h3{height:50.580000px;}
.h7{height:50.947266px;}
.h6{height:61.136719px;}
.h8{height:61.184719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x6{left:82.381950px;}
.x7{left:97.263750px;}
.x2{left:112.500000px;}
.x3{left:127.381950px;}
.x8{left:135.528750px;}
.x4{left:142.263750px;}
.x1{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.162667pt;}
.ls1a{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:6.768000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls1{letter-spacing:9.546667pt;}
.ws16{word-spacing:-17.984000pt;}
.ws15{word-spacing:-12.588800pt;}
.ws0{word-spacing:-7.552000pt;}
.ws9{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.533333pt;}
.ws14{word-spacing:-0.512000pt;}
.ws1a{word-spacing:-0.480000pt;}
.ws1c{word-spacing:-0.426667pt;}
.ws11{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.266667pt;}
.wsa{word-spacing:-0.256000pt;}
.ws12{word-spacing:-0.160000pt;}
.ws2{word-spacing:0.000000pt;}
.ws19{word-spacing:0.053333pt;}
.ws17{word-spacing:0.064000pt;}
.ws1d{word-spacing:0.106667pt;}
.wsc{word-spacing:0.128000pt;}
.ws6{word-spacing:0.213333pt;}
.wsf{word-spacing:0.266667pt;}
.wse{word-spacing:0.320000pt;}
.wsd{word-spacing:0.384000pt;}
.ws1b{word-spacing:0.426667pt;}
.ws18{word-spacing:0.640000pt;}
.ws10{word-spacing:0.693333pt;}
.ws5{word-spacing:0.704000pt;}
.ws1e{word-spacing:0.853333pt;}
.ws3{word-spacing:1.600000pt;}
.ws4{word-spacing:3.360000pt;}
.ws1{word-spacing:3.733333pt;}
.wsb{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._10{margin-left:-14.986667pt;}
._b{margin-left:-10.976000pt;}
._11{margin-left:-9.344000pt;}
._7{margin-left:-6.782400pt;}
._1{margin-left:-5.301333pt;}
._a{margin-left:-3.808000pt;}
._9{margin-left:-2.690133pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.050667pt;}
._c{width:3.957333pt;}
._6{width:4.859733pt;}
._d{width:6.301867pt;}
._4{width:7.616000pt;}
._8{width:9.088000pt;}
._e{width:10.240000pt;}
._f{width:28.129333pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y45{bottom:106.481867pt;}
.y21{bottom:107.168533pt;}
.y64{bottom:107.740000pt;}
.y20{bottom:126.768533pt;}
.y44{bottom:126.881867pt;}
.y1f{bottom:146.368533pt;}
.y63{bottom:147.260533pt;}
.y43{bottom:147.281867pt;}
.y1e{bottom:165.968533pt;}
.y62{bottom:167.532533pt;}
.y42{bottom:167.681867pt;}
.y61{bottom:187.804533pt;}
.y1d{bottom:205.168533pt;}
.y60{bottom:208.076533pt;}
.y41{bottom:208.481867pt;}
.y1c{bottom:222.368533pt;}
.y83{bottom:225.948533pt;}
.y40{bottom:226.481867pt;}
.y5f{bottom:228.348533pt;}
.y1b{bottom:239.568533pt;}
.y82{bottom:242.615200pt;}
.y3f{bottom:244.481867pt;}
.y1a{bottom:256.768533pt;}
.y81{bottom:259.281867pt;}
.y3e{bottom:262.481867pt;}
.y5e{bottom:268.881867pt;}
.y19{bottom:273.968533pt;}
.y80{bottom:275.948533pt;}
.y3d{bottom:280.481867pt;}
.y5d{bottom:286.748533pt;}
.y18{bottom:291.168533pt;}
.y3c{bottom:298.481867pt;}
.y7f{bottom:302.615200pt;}
.y5c{bottom:304.615200pt;}
.y17{bottom:308.368533pt;}
.y3b{bottom:316.481867pt;}
.y5b{bottom:322.481867pt;}
.y16{bottom:325.568533pt;}
.y3a{bottom:334.481867pt;}
.y7e{bottom:339.281867pt;}
.y5a{bottom:340.348533pt;}
.y15{bottom:342.768533pt;}
.y7d{bottom:356.881867pt;}
.y59{bottom:358.215200pt;}
.y14{bottom:359.968533pt;}
.y39{bottom:360.040933pt;}
.y7c{bottom:374.481867pt;}
.y13{bottom:377.168533pt;}
.y38{bottom:380.440933pt;}
.y58{bottom:383.630267pt;}
.y7b{bottom:392.081867pt;}
.y12{bottom:394.368533pt;}
.y37{bottom:400.840933pt;}
.y57{bottom:403.902267pt;}
.y7a{bottom:409.681867pt;}
.y11{bottom:411.568533pt;}
.y36{bottom:421.240933pt;}
.y56{bottom:424.174267pt;}
.y79{bottom:427.281867pt;}
.y10{bottom:428.768533pt;}
.y35{bottom:441.640933pt;}
.y78{bottom:444.881867pt;}
.yf{bottom:445.968533pt;}
.y34{bottom:462.040933pt;}
.y77{bottom:462.481867pt;}
.ye{bottom:463.168533pt;}
.y55{bottom:464.707600pt;}
.y76{bottom:480.081867pt;}
.y33{bottom:482.440933pt;}
.y54{bottom:482.574267pt;}
.yd{bottom:487.927600pt;}
.y53{bottom:500.440933pt;}
.y75{bottom:505.240933pt;}
.yc{bottom:507.527600pt;}
.y52{bottom:518.307600pt;}
.y32{bottom:523.107600pt;}
.y74{bottom:525.240933pt;}
.yb{bottom:527.127600pt;}
.y51{bottom:536.174267pt;}
.y31{bottom:540.974267pt;}
.y73{bottom:545.240933pt;}
.ya{bottom:546.727600pt;}
.y50{bottom:554.040933pt;}
.y30{bottom:558.840933pt;}
.y9{bottom:566.327600pt;}
.y4f{bottom:571.907600pt;}
.y2f{bottom:576.707600pt;}
.y72{bottom:585.240933pt;}
.y8{bottom:585.927600pt;}
.y4e{bottom:589.774267pt;}
.y2e{bottom:594.574267pt;}
.y71{bottom:602.840933pt;}
.y7{bottom:605.527600pt;}
.y4d{bottom:607.640933pt;}
.y2d{bottom:612.440933pt;}
.y70{bottom:620.440933pt;}
.y6{bottom:625.127600pt;}
.y4c{bottom:625.507600pt;}
.y2c{bottom:630.307600pt;}
.y6f{bottom:638.040933pt;}
.y4b{bottom:643.374267pt;}
.y5{bottom:644.727600pt;}
.y2b{bottom:648.174267pt;}
.y6e{bottom:655.640933pt;}
.y4a{bottom:661.240933pt;}
.y2a{bottom:666.040933pt;}
.y6d{bottom:673.240933pt;}
.y49{bottom:679.107600pt;}
.y29{bottom:683.907600pt;}
.y4{bottom:685.114933pt;}
.y6c{bottom:690.840933pt;}
.y48{bottom:696.974267pt;}
.y28{bottom:701.774267pt;}
.y3{bottom:704.714933pt;}
.y6b{bottom:708.440933pt;}
.y27{bottom:719.640933pt;}
.y47{bottom:722.373333pt;}
.y6a{bottom:726.040933pt;}
.y26{bottom:737.507600pt;}
.y46{bottom:742.645333pt;}
.y69{bottom:743.640933pt;}
.y68{bottom:761.240933pt;}
.y25{bottom:762.917333pt;}
.y2{bottom:764.000000pt;}
.y67{bottom:778.840933pt;}
.y24{bottom:783.189333pt;}
.y23{bottom:803.461333pt;}
.y66{bottom:804.000000pt;}
.y22{bottom:823.733333pt;}
.y65{bottom:824.000000pt;}
.h9{height:21.269167pt;}
.h5{height:31.992188pt;}
.h1{height:35.546875pt;}
.h4{height:42.656250pt;}
.h3{height:44.960000pt;}
.h7{height:45.286458pt;}
.h6{height:54.343750pt;}
.h8{height:54.386417pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x6{left:73.228400pt;}
.x7{left:86.456667pt;}
.x2{left:100.000000pt;}
.x3{left:113.228400pt;}
.x8{left:120.470000pt;}
.x4{left:126.456667pt;}
.x1{left:556.250000pt;}
}




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