
    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_3d138207dab4c5086e233967.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_5f8179cf72b56552a3480938.woff')format("woff");}.ff2{font-family:ff2;line-height:0.701660;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_417469de452c86b8c6a1b103.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_35e4b77d40dcc6f0269ea167.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_9385a2eff6997880af72607a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.677246;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_1667faa811a70bd1fdc3db22.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_7002f27061cbb816faf3c2ca.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_e9f9743f9fd6f76427823152.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_d898d2597f6643906eab18b3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_c844e4f0875ad450dc0cd366.woff')format("woff");}.ffa{font-family:ffa;line-height:0.717285;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:18.720000px;}
.lse{letter-spacing:-0.481536px;}
.ls14{letter-spacing:-0.459648px;}
.ls1c{letter-spacing:-0.417312px;}
.ls21{letter-spacing:-0.399168px;}
.lsa{letter-spacing:-0.393984px;}
.ls19{letter-spacing:-0.381024px;}
.lsb{letter-spacing:-0.361152px;}
.ls15{letter-spacing:-0.338688px;}
.ls1f{letter-spacing:-0.320544px;}
.ls16{letter-spacing:-0.302400px;}
.ls1e{letter-spacing:-0.260064px;}
.ls18{letter-spacing:-0.241920px;}
.ls1a{letter-spacing:-0.223776px;}
.lsd{letter-spacing:-0.180576px;}
.ls1d{letter-spacing:-0.175392px;}
.ls20{letter-spacing:-0.157248px;}
.ls10{letter-spacing:-0.153360px;}
.ls17{letter-spacing:-0.145152px;}
.ls1b{letter-spacing:-0.120960px;}
.lsf{letter-spacing:-0.007200px;}
.lsc{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.233856px;}
.ls12{letter-spacing:0.275616px;}
.ls11{letter-spacing:0.317376px;}
.ls13{letter-spacing:0.400896px;}
.ls31{letter-spacing:0.870048px;}
.ls2d{letter-spacing:0.990432px;}
.ls2a{letter-spacing:1.017792px;}
.ls2f{letter-spacing:1.050624px;}
.ls32{letter-spacing:1.105344px;}
.ls24{letter-spacing:1.138176px;}
.ls27{letter-spacing:1.139040px;}
.ls23{letter-spacing:1.139904px;}
.ls25{letter-spacing:1.140048px;}
.ls29{letter-spacing:1.149120px;}
.ls2c{letter-spacing:1.171008px;}
.ls2e{letter-spacing:1.231200px;}
.ls22{letter-spacing:1.260000px;}
.ls26{letter-spacing:1.260576px;}
.ls28{letter-spacing:1.260720px;}
.ls30{letter-spacing:1.291392px;}
.ls2b{letter-spacing:1.318752px;}
.ls1{letter-spacing:1.814400px;}
.ls6{letter-spacing:3.074832px;}
.ls5{letter-spacing:4.501440px;}
.ls4{letter-spacing:4.502880px;}
.ls2{letter-spacing:4.579200px;}
.ls3{letter-spacing:4.580640px;}
.ls9{letter-spacing:4.616640px;}
.ls7{letter-spacing:8.814240px;}
.ls8{letter-spacing:8.815680px;}
.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;}
}
.ws5{word-spacing:-21.280896px;}
.ws7{word-spacing:-19.814400px;}
.ws8{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.974848px;}
.ws10{word-spacing:-14.944608px;}
.ws9{word-spacing:-14.896224px;}
.wsb{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.ws12{word-spacing:-14.818176px;}
.wsd{word-spacing:-14.817600px;}
.wsa{word-spacing:-14.799456px;}
.ws6{word-spacing:-14.781312px;}
.wse{word-spacing:-14.738976px;}
.ws0{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.318848px;}
.ws1{word-spacing:-13.198464px;}
.ws4{word-spacing:-0.400896px;}
.ws3{word-spacing:-0.028800px;}
.wsf{word-spacing:0.000000px;}
._8{margin-left:-3.749904px;}
._7{margin-left:-2.493360px;}
._1{margin-left:-1.028880px;}
._0{width:1.039680px;}
._a{width:2.216880px;}
._9{width:3.524688px;}
._3{width:4.536000px;}
._2{width:5.679648px;}
._4{width:7.076160px;}
._5{width:8.187120px;}
._b{width:9.923040px;}
._c{width:11.128320px;}
._6{width:12.882240px;}
._d{width:17.236800px;}
._e{width:18.433152px;}
._f{width:83.831040px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs6{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.231450px;}
.y30{bottom:4.371450px;}
.y2f{bottom:52.500000px;}
.y2{bottom:56.511450px;}
.y2e{bottom:56.871450px;}
.y1{bottom:71.991450px;}
.y2d{bottom:123.831450px;}
.y2c{bottom:140.031450px;}
.y5f{bottom:153.711450px;}
.y2b{bottom:156.591450px;}
.y5e{bottom:170.991450px;}
.y2a{bottom:173.151450px;}
.y5d{bottom:188.271450px;}
.y29{bottom:189.711450px;}
.y5c{bottom:205.551450px;}
.y28{bottom:206.271450px;}
.y27{bottom:222.831450px;}
.y26{bottom:239.031450px;}
.y5b{bottom:239.751450px;}
.y25{bottom:255.591450px;}
.y24{bottom:272.151450px;}
.y5a{bottom:278.271450px;}
.y23{bottom:288.711450px;}
.y59{bottom:295.551450px;}
.y22{bottom:305.271450px;}
.y58{bottom:312.831450px;}
.y21{bottom:321.831450px;}
.y57{bottom:329.751450px;}
.y20{bottom:346.311450px;}
.y56{bottom:347.031450px;}
.y55{bottom:364.311450px;}
.y1f{bottom:371.151450px;}
.y54{bottom:381.591450px;}
.y53{bottom:398.871450px;}
.y1e{bottom:403.551450px;}
.y52{bottom:437.031450px;}
.y1d{bottom:440.991450px;}
.y7c{bottom:461.151450px;}
.y51{bottom:461.871450px;}
.y1c{bottom:479.151450px;}
.y7b{bottom:484.551450px;}
.y50{bottom:486.711450px;}
.y1b{bottom:496.431450px;}
.y7a{bottom:508.311450px;}
.y4f{bottom:511.551450px;}
.y1a{bottom:513.711450px;}
.y79{bottom:522.711450px;}
.y4e{bottom:528.831450px;}
.y19{bottom:530.991450px;}
.y4d{bottom:545.751450px;}
.y78{bottom:546.471450px;}
.y18{bottom:548.271450px;}
.y77{bottom:561.231450px;}
.y4c{bottom:563.031450px;}
.y17{bottom:565.551450px;}
.y4b{bottom:580.311450px;}
.y76{bottom:584.631450px;}
.y4a{bottom:597.591450px;}
.y75{bottom:599.391450px;}
.y16{bottom:603.711450px;}
.y74{bottom:613.791450px;}
.y49{bottom:614.871450px;}
.y15{bottom:620.991450px;}
.y73{bottom:628.551450px;}
.y48{bottom:632.151450px;}
.y14{bottom:638.271450px;}
.y47{bottom:649.431450px;}
.y72{bottom:652.311450px;}
.y13{bottom:655.551450px;}
.y46{bottom:666.711450px;}
.y12{bottom:672.831450px;}
.y45{bottom:683.991450px;}
.y11{bottom:689.751450px;}
.y71{bottom:690.471450px;}
.y44{bottom:701.271450px;}
.y70{bottom:704.871450px;}
.y10{bottom:707.031450px;}
.y43{bottom:718.551450px;}
.y6f{bottom:719.631450px;}
.yf{bottom:724.311450px;}
.y42{bottom:735.471450px;}
.ye{bottom:741.591450px;}
.y6e{bottom:743.391450px;}
.y6d{bottom:757.791450px;}
.y41{bottom:760.311450px;}
.y6c{bottom:772.551450px;}
.yd{bottom:779.751450px;}
.y40{bottom:785.151450px;}
.y6b{bottom:786.951450px;}
.yc{bottom:797.391450px;}
.y3f{bottom:802.431450px;}
.y6a{bottom:810.711450px;}
.y3e{bottom:819.711450px;}
.y69{bottom:826.551450px;}
.y3d{bottom:836.991450px;}
.ya{bottom:846.000000px;}
.y3c{bottom:854.271450px;}
.y68{bottom:865.071450px;}
.y9{bottom:865.791450px;}
.y3b{bottom:871.551450px;}
.y8{bottom:882.351450px;}
.y3a{bottom:888.471450px;}
.y7{bottom:898.911450px;}
.y67{bottom:902.871450px;}
.y39{bottom:905.751450px;}
.y6{bottom:915.471450px;}
.y66{bottom:920.151450px;}
.y38{bottom:923.031450px;}
.y5{bottom:932.031450px;}
.y65{bottom:937.431450px;}
.y37{bottom:940.311450px;}
.y64{bottom:954.711450px;}
.y36{bottom:957.591450px;}
.y63{bottom:971.991450px;}
.y35{bottom:974.871450px;}
.y4{bottom:977.031450px;}
.y34{bottom:992.151450px;}
.y33{bottom:1009.431450px;}
.y62{bottom:1010.151450px;}
.y3{bottom:1028.871450px;}
.y32{bottom:1034.271450px;}
.y61{bottom:1048.311450px;}
.y60{bottom:1065.591450px;}
.y31{bottom:1066.311450px;}
.h8{height:16.500000px;}
.ha{height:19.500000px;}
.hb{height:34.085391px;}
.h1{height:38.020781px;}
.h5{height:40.989375px;}
.h7{height:41.993438px;}
.h6{height:42.022969px;}
.h2{height:43.716094px;}
.h9{height:48.761719px;}
.h4{height:56.604375px;}
.h3{height:69.291563px;}
.h0{height:1188.000000px;}
.w2{width:9.000000px;}
.w1{width:541.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:1.268550px;}
.x9{left:8.288586px;}
.x1{left:162.368550px;}
.x3{left:171.541386px;}
.x2{left:192.384306px;}
.x7{left:356.639058px;}
.x5{left:395.219430px;}
.x6{left:397.288350px;}
.x4{left:410.830830px;}
.xa{left:424.077390px;}
.xb{left:454.500000px;}
.x8{left:459.368550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.lse{letter-spacing:-0.428032pt;}
.ls14{letter-spacing:-0.408576pt;}
.ls1c{letter-spacing:-0.370944pt;}
.ls21{letter-spacing:-0.354816pt;}
.lsa{letter-spacing:-0.350208pt;}
.ls19{letter-spacing:-0.338688pt;}
.lsb{letter-spacing:-0.321024pt;}
.ls15{letter-spacing:-0.301056pt;}
.ls1f{letter-spacing:-0.284928pt;}
.ls16{letter-spacing:-0.268800pt;}
.ls1e{letter-spacing:-0.231168pt;}
.ls18{letter-spacing:-0.215040pt;}
.ls1a{letter-spacing:-0.198912pt;}
.lsd{letter-spacing:-0.160512pt;}
.ls1d{letter-spacing:-0.155904pt;}
.ls20{letter-spacing:-0.139776pt;}
.ls10{letter-spacing:-0.136320pt;}
.ls17{letter-spacing:-0.129024pt;}
.ls1b{letter-spacing:-0.107520pt;}
.lsf{letter-spacing:-0.006400pt;}
.lsc{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.207872pt;}
.ls12{letter-spacing:0.244992pt;}
.ls11{letter-spacing:0.282112pt;}
.ls13{letter-spacing:0.356352pt;}
.ls31{letter-spacing:0.773376pt;}
.ls2d{letter-spacing:0.880384pt;}
.ls2a{letter-spacing:0.904704pt;}
.ls2f{letter-spacing:0.933888pt;}
.ls32{letter-spacing:0.982528pt;}
.ls24{letter-spacing:1.011712pt;}
.ls27{letter-spacing:1.012480pt;}
.ls23{letter-spacing:1.013248pt;}
.ls25{letter-spacing:1.013376pt;}
.ls29{letter-spacing:1.021440pt;}
.ls2c{letter-spacing:1.040896pt;}
.ls2e{letter-spacing:1.094400pt;}
.ls22{letter-spacing:1.120000pt;}
.ls26{letter-spacing:1.120512pt;}
.ls28{letter-spacing:1.120640pt;}
.ls30{letter-spacing:1.147904pt;}
.ls2b{letter-spacing:1.172224pt;}
.ls1{letter-spacing:1.612800pt;}
.ls6{letter-spacing:2.733184pt;}
.ls5{letter-spacing:4.001280pt;}
.ls4{letter-spacing:4.002560pt;}
.ls2{letter-spacing:4.070400pt;}
.ls3{letter-spacing:4.071680pt;}
.ls9{letter-spacing:4.103680pt;}
.ls7{letter-spacing:7.834880pt;}
.ls8{letter-spacing:7.836160pt;}
.ws5{word-spacing:-18.916352pt;}
.ws7{word-spacing:-17.612800pt;}
.ws8{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.310976pt;}
.ws10{word-spacing:-13.284096pt;}
.ws9{word-spacing:-13.241088pt;}
.wsb{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.ws12{word-spacing:-13.171712pt;}
.wsd{word-spacing:-13.171200pt;}
.wsa{word-spacing:-13.155072pt;}
.ws6{word-spacing:-13.138944pt;}
.wse{word-spacing:-13.101312pt;}
.ws0{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.838976pt;}
.ws1{word-spacing:-11.731968pt;}
.ws4{word-spacing:-0.356352pt;}
.ws3{word-spacing:-0.025600pt;}
.wsf{word-spacing:0.000000pt;}
._8{margin-left:-3.333248pt;}
._7{margin-left:-2.216320pt;}
._1{margin-left:-0.914560pt;}
._0{width:0.924160pt;}
._a{width:1.970560pt;}
._9{width:3.133056pt;}
._3{width:4.032000pt;}
._2{width:5.048576pt;}
._4{width:6.289920pt;}
._5{width:7.277440pt;}
._b{width:8.820480pt;}
._c{width:9.891840pt;}
._6{width:11.450880pt;}
._d{width:15.321600pt;}
._e{width:16.385024pt;}
._f{width:74.516480pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.872400pt;}
.y30{bottom:3.885733pt;}
.y2f{bottom:46.666667pt;}
.y2{bottom:50.232400pt;}
.y2e{bottom:50.552400pt;}
.y1{bottom:63.992400pt;}
.y2d{bottom:110.072400pt;}
.y2c{bottom:124.472400pt;}
.y5f{bottom:136.632400pt;}
.y2b{bottom:139.192400pt;}
.y5e{bottom:151.992400pt;}
.y2a{bottom:153.912400pt;}
.y5d{bottom:167.352400pt;}
.y29{bottom:168.632400pt;}
.y5c{bottom:182.712400pt;}
.y28{bottom:183.352400pt;}
.y27{bottom:198.072400pt;}
.y26{bottom:212.472400pt;}
.y5b{bottom:213.112400pt;}
.y25{bottom:227.192400pt;}
.y24{bottom:241.912400pt;}
.y5a{bottom:247.352400pt;}
.y23{bottom:256.632400pt;}
.y59{bottom:262.712400pt;}
.y22{bottom:271.352400pt;}
.y58{bottom:278.072400pt;}
.y21{bottom:286.072400pt;}
.y57{bottom:293.112400pt;}
.y20{bottom:307.832400pt;}
.y56{bottom:308.472400pt;}
.y55{bottom:323.832400pt;}
.y1f{bottom:329.912400pt;}
.y54{bottom:339.192400pt;}
.y53{bottom:354.552400pt;}
.y1e{bottom:358.712400pt;}
.y52{bottom:388.472400pt;}
.y1d{bottom:391.992400pt;}
.y7c{bottom:409.912400pt;}
.y51{bottom:410.552400pt;}
.y1c{bottom:425.912400pt;}
.y7b{bottom:430.712400pt;}
.y50{bottom:432.632400pt;}
.y1b{bottom:441.272400pt;}
.y7a{bottom:451.832400pt;}
.y4f{bottom:454.712400pt;}
.y1a{bottom:456.632400pt;}
.y79{bottom:464.632400pt;}
.y4e{bottom:470.072400pt;}
.y19{bottom:471.992400pt;}
.y4d{bottom:485.112400pt;}
.y78{bottom:485.752400pt;}
.y18{bottom:487.352400pt;}
.y77{bottom:498.872400pt;}
.y4c{bottom:500.472400pt;}
.y17{bottom:502.712400pt;}
.y4b{bottom:515.832400pt;}
.y76{bottom:519.672400pt;}
.y4a{bottom:531.192400pt;}
.y75{bottom:532.792400pt;}
.y16{bottom:536.632400pt;}
.y74{bottom:545.592400pt;}
.y49{bottom:546.552400pt;}
.y15{bottom:551.992400pt;}
.y73{bottom:558.712400pt;}
.y48{bottom:561.912400pt;}
.y14{bottom:567.352400pt;}
.y47{bottom:577.272400pt;}
.y72{bottom:579.832400pt;}
.y13{bottom:582.712400pt;}
.y46{bottom:592.632400pt;}
.y12{bottom:598.072400pt;}
.y45{bottom:607.992400pt;}
.y11{bottom:613.112400pt;}
.y71{bottom:613.752400pt;}
.y44{bottom:623.352400pt;}
.y70{bottom:626.552400pt;}
.y10{bottom:628.472400pt;}
.y43{bottom:638.712400pt;}
.y6f{bottom:639.672400pt;}
.yf{bottom:643.832400pt;}
.y42{bottom:653.752400pt;}
.ye{bottom:659.192400pt;}
.y6e{bottom:660.792400pt;}
.y6d{bottom:673.592400pt;}
.y41{bottom:675.832400pt;}
.y6c{bottom:686.712400pt;}
.yd{bottom:693.112400pt;}
.y40{bottom:697.912400pt;}
.y6b{bottom:699.512400pt;}
.yc{bottom:708.792400pt;}
.y3f{bottom:713.272400pt;}
.y6a{bottom:720.632400pt;}
.y3e{bottom:728.632400pt;}
.y69{bottom:734.712400pt;}
.y3d{bottom:743.992400pt;}
.ya{bottom:752.000000pt;}
.y3c{bottom:759.352400pt;}
.y68{bottom:768.952400pt;}
.y9{bottom:769.592400pt;}
.y3b{bottom:774.712400pt;}
.y8{bottom:784.312400pt;}
.y3a{bottom:789.752400pt;}
.y7{bottom:799.032400pt;}
.y67{bottom:802.552400pt;}
.y39{bottom:805.112400pt;}
.y6{bottom:813.752400pt;}
.y66{bottom:817.912400pt;}
.y38{bottom:820.472400pt;}
.y5{bottom:828.472400pt;}
.y65{bottom:833.272400pt;}
.y37{bottom:835.832400pt;}
.y64{bottom:848.632400pt;}
.y36{bottom:851.192400pt;}
.y63{bottom:863.992400pt;}
.y35{bottom:866.552400pt;}
.y4{bottom:868.472400pt;}
.y34{bottom:881.912400pt;}
.y33{bottom:897.272400pt;}
.y62{bottom:897.912400pt;}
.y3{bottom:914.552400pt;}
.y32{bottom:919.352400pt;}
.y61{bottom:931.832400pt;}
.y60{bottom:947.192400pt;}
.y31{bottom:947.832400pt;}
.h8{height:14.666667pt;}
.ha{height:17.333333pt;}
.hb{height:30.298125pt;}
.h1{height:33.796250pt;}
.h5{height:36.435000pt;}
.h7{height:37.327500pt;}
.h6{height:37.353750pt;}
.h2{height:38.858750pt;}
.h9{height:43.343750pt;}
.h4{height:50.315000pt;}
.h3{height:61.592500pt;}
.h0{height:1056.000000pt;}
.w2{width:8.000000pt;}
.w1{width:481.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.127600pt;}
.x9{left:7.367632pt;}
.x1{left:144.327600pt;}
.x3{left:152.481232pt;}
.x2{left:171.008272pt;}
.x7{left:317.012496pt;}
.x5{left:351.306160pt;}
.x6{left:353.145200pt;}
.x4{left:365.182960pt;}
.xa{left:376.957680pt;}
.xb{left:404.000000pt;}
.x8{left:408.327600pt;}
}




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