
    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_3900895fc054991de9b4ef89.woff')format("woff");}.ff1{font-family:ff1;line-height:0.913086;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_f8f433a2c817d88821ebb2e3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_8f6780901e5a344d0407764a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_aa2e420d9722dfff2a1ec6c7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911133;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_8f1962be8a8044b02b4fd22d.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d44d441873b1eee2792d7bb0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_3b6c6c9d36951a5906765ed9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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;}
.ls1e{letter-spacing:-1.181952px;}
.ls16{letter-spacing:-0.640224px;}
.ls25{letter-spacing:-0.596448px;}
.ls26{letter-spacing:-0.536256px;}
.ls2a{letter-spacing:-0.530784px;}
.ls23{letter-spacing:-0.492480px;}
.ls20{letter-spacing:-0.487008px;}
.lse{letter-spacing:-0.476064px;}
.ls19{letter-spacing:-0.454176px;}
.ls1a{letter-spacing:-0.448704px;}
.ls7{letter-spacing:-0.437760px;}
.ls21{letter-spacing:-0.421344px;}
.ls11{letter-spacing:-0.415872px;}
.lsc{letter-spacing:-0.410400px;}
.ls1d{letter-spacing:-0.404928px;}
.lsd{letter-spacing:-0.399456px;}
.ls18{letter-spacing:-0.393984px;}
.ls1b{letter-spacing:-0.383040px;}
.ls22{letter-spacing:-0.377568px;}
.ls2b{letter-spacing:-0.366624px;}
.lsf{letter-spacing:-0.361152px;}
.ls1c{letter-spacing:-0.350208px;}
.lsa{letter-spacing:-0.333792px;}
.lsb{letter-spacing:-0.328320px;}
.ls14{letter-spacing:-0.322848px;}
.ls9{letter-spacing:-0.284544px;}
.ls29{letter-spacing:-0.273600px;}
.ls10{letter-spacing:-0.246240px;}
.ls1f{letter-spacing:-0.229824px;}
.ls12{letter-spacing:-0.224352px;}
.ls27{letter-spacing:-0.218880px;}
.ls17{letter-spacing:-0.207936px;}
.ls24{letter-spacing:-0.169632px;}
.ls13{letter-spacing:-0.147744px;}
.ls8{letter-spacing:-0.142272px;}
.ls15{letter-spacing:-0.028800px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.019296px;}
.ls3{letter-spacing:0.019440px;}
.ls1{letter-spacing:0.036000px;}
.ls5{letter-spacing:1.162080px;}
.ls4{letter-spacing:3.624480px;}
.ls28{letter-spacing:23.131008px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-11.108160px;}
.ws26{word-spacing:-10.708704px;}
.ws21{word-spacing:-10.621152px;}
.ws0{word-spacing:-0.108000px;}
.ws2{word-spacing:-0.086400px;}
.ws1{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.054720px;}
.ws15{word-spacing:-0.043200px;}
.ws1f{word-spacing:0.000000px;}
.ws4{word-spacing:0.087552px;}
.ws10{word-spacing:0.093024px;}
.ws23{word-spacing:0.114912px;}
.ws17{word-spacing:0.153216px;}
.ws27{word-spacing:0.164160px;}
.wsf{word-spacing:0.169632px;}
.ws28{word-spacing:0.175104px;}
.wsd{word-spacing:0.191520px;}
.ws2a{word-spacing:0.218880px;}
.ws5{word-spacing:0.229824px;}
.ws11{word-spacing:0.268128px;}
.ws7{word-spacing:0.273600px;}
.ws6{word-spacing:0.279072px;}
.ws1c{word-spacing:0.295488px;}
.wsc{word-spacing:0.306432px;}
.ws2d{word-spacing:0.311904px;}
.ws22{word-spacing:0.322848px;}
.ws1b{word-spacing:0.328320px;}
.ws18{word-spacing:0.339264px;}
.ws9{word-spacing:0.344736px;}
.ws1d{word-spacing:0.350208px;}
.ws8{word-spacing:0.355680px;}
.wse{word-spacing:0.361152px;}
.ws20{word-spacing:0.366624px;}
.ws3{word-spacing:0.383040px;}
.ws1a{word-spacing:0.393984px;}
.ws19{word-spacing:0.399456px;}
.wsb{word-spacing:0.421344px;}
.ws2b{word-spacing:0.476064px;}
.ws25{word-spacing:0.481536px;}
.ws24{word-spacing:0.541728px;}
.ws16{word-spacing:0.585504px;}
.ws29{word-spacing:13.756608px;}
.ws2c{word-spacing:23.556960px;}
.ws12{word-spacing:295.302528px;}
.ws13{word-spacing:380.262240px;}
.ws14{word-spacing:455.183856px;}
._9{margin-left:-3.873888px;}
._8{margin-left:-2.398464px;}
._0{margin-left:-1.258560px;}
._1{width:1.094400px;}
._3{width:2.188800px;}
._2{width:3.939840px;}
._4{width:5.307840px;}
._5{width:6.521904px;}
._6{width:526.902336px;}
._7{width:593.361504px;}
.fc1{color:rgb(14,40,65);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.720000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:18.932100px;}
.y35{bottom:19.292100px;}
.y30{bottom:19.652100px;}
.y31{bottom:20.012100px;}
.y33{bottom:31.892100px;}
.y2f{bottom:32.612100px;}
.y2c{bottom:126.752100px;}
.y2b{bottom:139.352100px;}
.y4c{bottom:140.072100px;}
.y4b{bottom:155.912100px;}
.y4a{bottom:171.752100px;}
.y49{bottom:187.592100px;}
.y48{bottom:203.432100px;}
.y2a{bottom:216.032100px;}
.y47{bottom:219.272100px;}
.y29{bottom:231.872100px;}
.y46{bottom:235.112100px;}
.y28{bottom:247.712100px;}
.y45{bottom:250.952100px;}
.y27{bottom:263.552100px;}
.y44{bottom:266.792100px;}
.y26{bottom:279.392100px;}
.y43{bottom:282.632100px;}
.y25{bottom:295.232100px;}
.y42{bottom:299.552100px;}
.y24{bottom:311.072100px;}
.y41{bottom:319.712100px;}
.y23{bottom:326.912100px;}
.y5e{bottom:330.512100px;}
.y22{bottom:342.752100px;}
.y5d{bottom:346.352100px;}
.y40{bottom:351.392100px;}
.y21{bottom:358.592100px;}
.y3f{bottom:363.992100px;}
.y20{bottom:374.432100px;}
.y5c{bottom:378.032100px;}
.y1f{bottom:390.272100px;}
.y5b{bottom:395.672100px;}
.y1e{bottom:406.112100px;}
.y5a{bottom:412.592100px;}
.y1d{bottom:423.032100px;}
.y1c{bottom:443.192100px;}
.y1b{bottom:456.152100px;}
.y3e{bottom:494.312100px;}
.y3d{bottom:510.152100px;}
.y3c{bottom:525.992100px;}
.y1a{bottom:540.032100px;}
.y3b{bottom:541.832100px;}
.y19{bottom:555.872100px;}
.y3a{bottom:557.672100px;}
.y18{bottom:571.712100px;}
.y39{bottom:573.512100px;}
.y17{bottom:584.312100px;}
.y38{bottom:589.352100px;}
.y37{bottom:605.192100px;}
.y36{bottom:621.032100px;}
.y32{bottom:634.500000px;}
.y16{bottom:676.112100px;}
.y15{bottom:821.552100px;}
.y14{bottom:837.392100px;}
.y13{bottom:853.232100px;}
.y12{bottom:869.072100px;}
.y11{bottom:884.912100px;}
.y2e{bottom:886.500000px;}
.y10{bottom:900.752100px;}
.yf{bottom:916.592100px;}
.ye{bottom:932.432100px;}
.y59{bottom:937.472100px;}
.yd{bottom:948.272100px;}
.y58{bottom:953.312100px;}
.yc{bottom:964.112100px;}
.y57{bottom:969.152100px;}
.yb{bottom:979.952100px;}
.y56{bottom:984.992100px;}
.ya{bottom:995.792100px;}
.y55{bottom:1000.832100px;}
.y9{bottom:1011.272100px;}
.y54{bottom:1016.672100px;}
.y8{bottom:1027.112100px;}
.y53{bottom:1032.512100px;}
.y7{bottom:1042.952100px;}
.y52{bottom:1048.352100px;}
.y6{bottom:1058.792100px;}
.y51{bottom:1064.192100px;}
.y5{bottom:1074.632100px;}
.y50{bottom:1080.032100px;}
.y4{bottom:1090.472100px;}
.y4f{bottom:1095.872100px;}
.y3{bottom:1106.312100px;}
.y4e{bottom:1111.712100px;}
.y2{bottom:1122.152100px;}
.y4d{bottom:1127.552100px;}
.y1{bottom:1139.072100px;}
.y2d{bottom:1143.392100px;}
.h7{height:36.471094px;}
.h8{height:38.207813px;}
.h4{height:38.368125px;}
.h2{height:38.822344px;}
.h5{height:47.988281px;}
.h1{height:50.449219px;}
.h3{height:50.484375px;}
.h9{height:253.500000px;}
.h6{height:1246.500000px;}
.h0{height:1263.000000px;}
.w2{width:340.500000px;}
.w1{width:876.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:16.500000px;}
.xa{left:18.853380px;}
.xc{left:103.791780px;}
.x1{left:106.647936px;}
.xe{left:117.138756px;}
.x11{left:167.991168px;}
.x6{left:288.456276px;}
.xb{left:316.040340px;}
.x8{left:317.660340px;}
.x3{left:388.888260px;}
.x9{left:447.000000px;}
.x7{left:588.739740px;}
.x10{left:672.567900px;}
.x4{left:706.407900px;}
.x12{left:709.204740px;}
.xf{left:760.057260px;}
.xd{left:787.407900px;}
.x2{left:805.767900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.050624pt;}
.ls16{letter-spacing:-0.569088pt;}
.ls25{letter-spacing:-0.530176pt;}
.ls26{letter-spacing:-0.476672pt;}
.ls2a{letter-spacing:-0.471808pt;}
.ls23{letter-spacing:-0.437760pt;}
.ls20{letter-spacing:-0.432896pt;}
.lse{letter-spacing:-0.423168pt;}
.ls19{letter-spacing:-0.403712pt;}
.ls1a{letter-spacing:-0.398848pt;}
.ls7{letter-spacing:-0.389120pt;}
.ls21{letter-spacing:-0.374528pt;}
.ls11{letter-spacing:-0.369664pt;}
.lsc{letter-spacing:-0.364800pt;}
.ls1d{letter-spacing:-0.359936pt;}
.lsd{letter-spacing:-0.355072pt;}
.ls18{letter-spacing:-0.350208pt;}
.ls1b{letter-spacing:-0.340480pt;}
.ls22{letter-spacing:-0.335616pt;}
.ls2b{letter-spacing:-0.325888pt;}
.lsf{letter-spacing:-0.321024pt;}
.ls1c{letter-spacing:-0.311296pt;}
.lsa{letter-spacing:-0.296704pt;}
.lsb{letter-spacing:-0.291840pt;}
.ls14{letter-spacing:-0.286976pt;}
.ls9{letter-spacing:-0.252928pt;}
.ls29{letter-spacing:-0.243200pt;}
.ls10{letter-spacing:-0.218880pt;}
.ls1f{letter-spacing:-0.204288pt;}
.ls12{letter-spacing:-0.199424pt;}
.ls27{letter-spacing:-0.194560pt;}
.ls17{letter-spacing:-0.184832pt;}
.ls24{letter-spacing:-0.150784pt;}
.ls13{letter-spacing:-0.131328pt;}
.ls8{letter-spacing:-0.126464pt;}
.ls15{letter-spacing:-0.025600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.017152pt;}
.ls3{letter-spacing:0.017280pt;}
.ls1{letter-spacing:0.032000pt;}
.ls5{letter-spacing:1.032960pt;}
.ls4{letter-spacing:3.221760pt;}
.ls28{letter-spacing:20.560896pt;}
.ws1e{word-spacing:-9.873920pt;}
.ws26{word-spacing:-9.518848pt;}
.ws21{word-spacing:-9.441024pt;}
.ws0{word-spacing:-0.096000pt;}
.ws2{word-spacing:-0.076800pt;}
.ws1{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.048640pt;}
.ws15{word-spacing:-0.038400pt;}
.ws1f{word-spacing:0.000000pt;}
.ws4{word-spacing:0.077824pt;}
.ws10{word-spacing:0.082688pt;}
.ws23{word-spacing:0.102144pt;}
.ws17{word-spacing:0.136192pt;}
.ws27{word-spacing:0.145920pt;}
.wsf{word-spacing:0.150784pt;}
.ws28{word-spacing:0.155648pt;}
.wsd{word-spacing:0.170240pt;}
.ws2a{word-spacing:0.194560pt;}
.ws5{word-spacing:0.204288pt;}
.ws11{word-spacing:0.238336pt;}
.ws7{word-spacing:0.243200pt;}
.ws6{word-spacing:0.248064pt;}
.ws1c{word-spacing:0.262656pt;}
.wsc{word-spacing:0.272384pt;}
.ws2d{word-spacing:0.277248pt;}
.ws22{word-spacing:0.286976pt;}
.ws1b{word-spacing:0.291840pt;}
.ws18{word-spacing:0.301568pt;}
.ws9{word-spacing:0.306432pt;}
.ws1d{word-spacing:0.311296pt;}
.ws8{word-spacing:0.316160pt;}
.wse{word-spacing:0.321024pt;}
.ws20{word-spacing:0.325888pt;}
.ws3{word-spacing:0.340480pt;}
.ws1a{word-spacing:0.350208pt;}
.ws19{word-spacing:0.355072pt;}
.wsb{word-spacing:0.374528pt;}
.ws2b{word-spacing:0.423168pt;}
.ws25{word-spacing:0.428032pt;}
.ws24{word-spacing:0.481536pt;}
.ws16{word-spacing:0.520448pt;}
.ws29{word-spacing:12.228096pt;}
.ws2c{word-spacing:20.939520pt;}
.ws12{word-spacing:262.491136pt;}
.ws13{word-spacing:338.010880pt;}
.ws14{word-spacing:404.607872pt;}
._9{margin-left:-3.443456pt;}
._8{margin-left:-2.131968pt;}
._0{margin-left:-1.118720pt;}
._1{width:0.972800pt;}
._3{width:1.945600pt;}
._2{width:3.502080pt;}
._4{width:4.718080pt;}
._5{width:5.797248pt;}
._6{width:468.357632pt;}
._7{width:527.432448pt;}
.fs1{font-size:48.640000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:16.828533pt;}
.y35{bottom:17.148533pt;}
.y30{bottom:17.468533pt;}
.y31{bottom:17.788533pt;}
.y33{bottom:28.348533pt;}
.y2f{bottom:28.988533pt;}
.y2c{bottom:112.668533pt;}
.y2b{bottom:123.868533pt;}
.y4c{bottom:124.508533pt;}
.y4b{bottom:138.588533pt;}
.y4a{bottom:152.668533pt;}
.y49{bottom:166.748533pt;}
.y48{bottom:180.828533pt;}
.y2a{bottom:192.028533pt;}
.y47{bottom:194.908533pt;}
.y29{bottom:206.108533pt;}
.y46{bottom:208.988533pt;}
.y28{bottom:220.188533pt;}
.y45{bottom:223.068533pt;}
.y27{bottom:234.268533pt;}
.y44{bottom:237.148533pt;}
.y26{bottom:248.348533pt;}
.y43{bottom:251.228533pt;}
.y25{bottom:262.428533pt;}
.y42{bottom:266.268533pt;}
.y24{bottom:276.508533pt;}
.y41{bottom:284.188533pt;}
.y23{bottom:290.588533pt;}
.y5e{bottom:293.788533pt;}
.y22{bottom:304.668533pt;}
.y5d{bottom:307.868533pt;}
.y40{bottom:312.348533pt;}
.y21{bottom:318.748533pt;}
.y3f{bottom:323.548533pt;}
.y20{bottom:332.828533pt;}
.y5c{bottom:336.028533pt;}
.y1f{bottom:346.908533pt;}
.y5b{bottom:351.708533pt;}
.y1e{bottom:360.988533pt;}
.y5a{bottom:366.748533pt;}
.y1d{bottom:376.028533pt;}
.y1c{bottom:393.948533pt;}
.y1b{bottom:405.468533pt;}
.y3e{bottom:439.388533pt;}
.y3d{bottom:453.468533pt;}
.y3c{bottom:467.548533pt;}
.y1a{bottom:480.028533pt;}
.y3b{bottom:481.628533pt;}
.y19{bottom:494.108533pt;}
.y3a{bottom:495.708533pt;}
.y18{bottom:508.188533pt;}
.y39{bottom:509.788533pt;}
.y17{bottom:519.388533pt;}
.y38{bottom:523.868533pt;}
.y37{bottom:537.948533pt;}
.y36{bottom:552.028533pt;}
.y32{bottom:564.000000pt;}
.y16{bottom:600.988533pt;}
.y15{bottom:730.268533pt;}
.y14{bottom:744.348533pt;}
.y13{bottom:758.428533pt;}
.y12{bottom:772.508533pt;}
.y11{bottom:786.588533pt;}
.y2e{bottom:788.000000pt;}
.y10{bottom:800.668533pt;}
.yf{bottom:814.748533pt;}
.ye{bottom:828.828533pt;}
.y59{bottom:833.308533pt;}
.yd{bottom:842.908533pt;}
.y58{bottom:847.388533pt;}
.yc{bottom:856.988533pt;}
.y57{bottom:861.468533pt;}
.yb{bottom:871.068533pt;}
.y56{bottom:875.548533pt;}
.ya{bottom:885.148533pt;}
.y55{bottom:889.628533pt;}
.y9{bottom:898.908533pt;}
.y54{bottom:903.708533pt;}
.y8{bottom:912.988533pt;}
.y53{bottom:917.788533pt;}
.y7{bottom:927.068533pt;}
.y52{bottom:931.868533pt;}
.y6{bottom:941.148533pt;}
.y51{bottom:945.948533pt;}
.y5{bottom:955.228533pt;}
.y50{bottom:960.028533pt;}
.y4{bottom:969.308533pt;}
.y4f{bottom:974.108533pt;}
.y3{bottom:983.388533pt;}
.y4e{bottom:988.188533pt;}
.y2{bottom:997.468533pt;}
.y4d{bottom:1002.268533pt;}
.y1{bottom:1012.508533pt;}
.y2d{bottom:1016.348533pt;}
.h7{height:32.418750pt;}
.h8{height:33.962500pt;}
.h4{height:34.105000pt;}
.h2{height:34.508750pt;}
.h5{height:42.656250pt;}
.h1{height:44.843750pt;}
.h3{height:44.875000pt;}
.h9{height:225.333333pt;}
.h6{height:1108.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:302.666667pt;}
.w1{width:778.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:14.666667pt;}
.xa{left:16.758560pt;}
.xc{left:92.259360pt;}
.x1{left:94.798165pt;}
.xe{left:104.123339pt;}
.x11{left:149.325483pt;}
.x6{left:256.405579pt;}
.xb{left:280.924747pt;}
.x8{left:282.364747pt;}
.x3{left:345.678453pt;}
.x9{left:397.333333pt;}
.x7{left:523.324213pt;}
.x10{left:597.838133pt;}
.x4{left:627.918133pt;}
.x12{left:630.404213pt;}
.xf{left:675.606453pt;}
.xd{left:699.918133pt;}
.x2{left:716.238133pt;}
}




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