
    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_fa582c9b4d560ffe47d7cf62.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_bb46e755a1a9cf914f820496.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_676a20a563d0838fd994385c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.810000;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_43a0a8a180ba46abbfc46eac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_e567bab1849927ed203c12bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_7bb74410805e65d06e3454da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_dd503047b43f0834c4352452.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.889000;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_a29ca3b23582e31d8a19b8ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.429000;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;}
.ls14{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.002725px;}
.ls0{letter-spacing:0.207062px;}
.ls11{letter-spacing:0.230069px;}
.ls1{letter-spacing:0.258828px;}
.ls13{letter-spacing:0.287586px;}
.ls7{letter-spacing:0.402620px;}
.ls5{letter-spacing:0.460138px;}
.ls4{letter-spacing:0.575172px;}
.lsc{letter-spacing:0.632689px;}
.lsa{letter-spacing:0.747724px;}
.ls12{letter-spacing:2.070619px;}
.ls3{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.988780px;}
.ls2{letter-spacing:15.050400px;}
.ls10{letter-spacing:15.340800px;}
.lsf{letter-spacing:20.234725px;}
.lse{letter-spacing:20.918725px;}
.ls8{letter-spacing:25.786200px;}
.lsb{letter-spacing:31.814100px;}
.lsd{letter-spacing:35.875962px;}
.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;}
}
.ws0{word-spacing:-138.041400px;}
.ws37{word-spacing:-59.587819px;}
.ws1d{word-spacing:-58.264924px;}
.ws1e{word-spacing:-58.149889px;}
.ws15{word-spacing:-58.092372px;}
.ws16{word-spacing:-57.977338px;}
.ws1a{word-spacing:-57.919820px;}
.ws40{word-spacing:-57.804786px;}
.ws36{word-spacing:-57.747269px;}
.ws14{word-spacing:-57.517200px;}
.wsa{word-spacing:-52.024428px;}
.ws7{word-spacing:-51.972662px;}
.ws6{word-spacing:-51.765600px;}
.ws2f{word-spacing:-44.585592px;}
.ws2d{word-spacing:-44.554387px;}
.ws29{word-spacing:-43.738553px;}
.ws2b{word-spacing:-43.736611px;}
.ws33{word-spacing:-43.138800px;}
.ws22{word-spacing:-43.137600px;}
.ws26{word-spacing:-42.152524px;}
.ws3a{word-spacing:-41.821453px;}
.ws11{word-spacing:-41.082000px;}
.ws18{word-spacing:-41.079600px;}
.ws20{word-spacing:-41.077200px;}
.ws21{word-spacing:-36.595200px;}
.ws3c{word-spacing:-36.017339px;}
.ws3e{word-spacing:-34.357199px;}
.ws1c{word-spacing:-31.705324px;}
.ws13{word-spacing:-3.012698px;}
.ws12{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws19{word-spacing:-0.047821px;}
.ws42{word-spacing:0.000000px;}
.ws31{word-spacing:12.148682px;}
.ws2c{word-spacing:12.914624px;}
.ws30{word-spacing:12.916682px;}
.ws2e{word-spacing:12.918275px;}
.ws2a{word-spacing:13.738682px;}
.ws34{word-spacing:14.318658px;}
.ws32{word-spacing:14.322275px;}
.ws35{word-spacing:14.917099px;}
.wsc{word-spacing:14.997802px;}
.wsb{word-spacing:15.001402px;}
.ws25{word-spacing:15.278624px;}
.ws24{word-spacing:15.281024px;}
.ws27{word-spacing:15.284624px;}
.ws3b{word-spacing:15.338316px;}
.wse{word-spacing:16.300915px;}
.wsd{word-spacing:16.354714px;}
.ws8{word-spacing:17.000294px;}
.ws9{word-spacing:18.291456px;}
.ws3d{word-spacing:20.059002px;}
.wsf{word-spacing:20.120602px;}
.ws28{word-spacing:20.801909px;}
.ws4{word-spacing:20.860699px;}
.ws3{word-spacing:20.861684px;}
.ws3f{word-spacing:21.881020px;}
.ws2{word-spacing:22.882183px;}
.ws17{word-spacing:25.348655px;}
.ws1b{word-spacing:29.827433px;}
.ws23{word-spacing:31.264783px;}
.ws38{word-spacing:31.322614px;}
.ws10{word-spacing:31.324270px;}
.ws1f{word-spacing:31.381936px;}
.ws41{word-spacing:31.383282px;}
.ws39{word-spacing:35.809150px;}
.ws1{word-spacing:50.068168px;}
._0{margin-left:-65.715793px;}
._6{margin-left:-27.736295px;}
._5{margin-left:-23.827571px;}
._9{margin-left:-7.141648px;}
._1{margin-left:-5.678682px;}
._4{margin-left:-4.326979px;}
._3{margin-left:-3.287658px;}
._2{margin-left:-1.494390px;}
._8{width:1.437930px;}
._7{width:2.988780px;}
._b{width:24.032050px;}
._a{width:29.828024px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:51.765600px;}
.fs4{font-size:53.798400px;}
.fs6{font-size:57.517200px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs0{font-size:138.041400px;}
.fs1{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y2d{bottom:113.332500px;}
.y2c{bottom:131.266500px;}
.y2b{bottom:149.199000px;}
.y2a{bottom:171.574500px;}
.y29{bottom:198.007500px;}
.y28{bottom:215.940000px;}
.y27{bottom:233.872500px;}
.y26{bottom:253.942500px;}
.y49{bottom:261.652500px;}
.y25{bottom:276.318000px;}
.y48{bottom:279.585000px;}
.y47{bottom:302.224500px;}
.y24{bottom:302.751000px;}
.y23{bottom:320.683500px;}
.y46{bottom:330.244500px;}
.y22{bottom:343.059000px;}
.y45{bottom:348.178500px;}
.y44{bottom:366.111000px;}
.y21{bottom:369.492000px;}
.y20{bottom:387.426000px;}
.y43{bottom:388.750500px;}
.y1f{bottom:405.358500px;}
.y42{bottom:416.770500px;}
.y1e{bottom:427.734000px;}
.y41{bottom:434.703000px;}
.y40{bottom:452.635500px;}
.y1d{bottom:454.167000px;}
.y3f{bottom:470.568000px;}
.y1c{bottom:472.099500px;}
.y3e{bottom:488.502000px;}
.y1b{bottom:494.475000px;}
.y3d{bottom:506.434500px;}
.y1a{bottom:520.908000px;}
.y3c{bottom:524.367000px;}
.y19{bottom:538.842000px;}
.y3b{bottom:542.299500px;}
.y18{bottom:556.774500px;}
.y3a{bottom:560.232000px;}
.y17{bottom:574.707000px;}
.y39{bottom:578.166000px;}
.y16{bottom:592.639500px;}
.y38{bottom:599.086500px;}
.y15{bottom:610.572000px;}
.y37{bottom:617.019000px;}
.y14{bottom:628.504500px;}
.y36{bottom:639.660000px;}
.y13{bottom:650.880000px;}
.y35{bottom:667.680000px;}
.y12{bottom:681.468000px;}
.y34{bottom:685.612500px;}
.y11{bottom:696.412500px;}
.y33{bottom:703.545000px;}
.y10{bottom:711.091500px;}
.yf{bottom:726.036000px;}
.y32{bottom:726.184500px;}
.ye{bottom:740.979000px;}
.y31{bottom:754.204500px;}
.yd{bottom:755.923500px;}
.yc{bottom:770.868000px;}
.y30{bottom:772.137000px;}
.yb{bottom:785.811000px;}
.y2f{bottom:790.071000px;}
.ya{bottom:800.755500px;}
.y2e{bottom:808.003500px;}
.y9{bottom:815.698500px;}
.y8{bottom:830.643000px;}
.y7{bottom:891.262500px;}
.y6{bottom:909.756000px;}
.y5{bottom:928.249500px;}
.y4{bottom:946.963500px;}
.y3{bottom:994.038000px;}
.y2{bottom:1035.880500px;}
.y1{bottom:1077.723000px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:41.125613px;}
.h2{height:45.238339px;}
.h4{height:45.553728px;}
.h7{height:50.615136px;}
.h1{height:121.476432px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:66.598500px;}
.x9{left:73.446000px;}
.x2{left:79.386000px;}
.x8{left:88.390500px;}
.xd{left:116.193000px;}
.xe{left:119.055000px;}
.x1{left:128.857500px;}
.xc{left:146.002500px;}
.xa{left:167.079000px;}
.x5{left:292.743000px;}
.x6{left:311.116500px;}
.x7{left:326.245500px;}
.x3{left:407.235000px;}
.x4{left:410.967000px;}
.xf{left:467.967000px;}
.x10{left:482.910000px;}
.x12{left:504.325500px;}
.x14{left:568.746000px;}
.x13{left:576.846000px;}
.x11{left:585.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.002422pt;}
.ls0{letter-spacing:0.184055pt;}
.ls11{letter-spacing:0.204506pt;}
.ls1{letter-spacing:0.230069pt;}
.ls13{letter-spacing:0.255632pt;}
.ls7{letter-spacing:0.357885pt;}
.ls5{letter-spacing:0.409011pt;}
.ls4{letter-spacing:0.511264pt;}
.lsc{letter-spacing:0.562390pt;}
.lsa{letter-spacing:0.664643pt;}
.ls12{letter-spacing:1.840550pt;}
.ls3{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.656693pt;}
.ls2{letter-spacing:13.378133pt;}
.ls10{letter-spacing:13.636267pt;}
.lsf{letter-spacing:17.986422pt;}
.lse{letter-spacing:18.594422pt;}
.ls8{letter-spacing:22.921067pt;}
.lsb{letter-spacing:28.279200pt;}
.lsd{letter-spacing:31.889744pt;}
.ws0{word-spacing:-122.703467pt;}
.ws37{word-spacing:-52.966950pt;}
.ws1d{word-spacing:-51.791043pt;}
.ws1e{word-spacing:-51.688790pt;}
.ws15{word-spacing:-51.637664pt;}
.ws16{word-spacing:-51.535411pt;}
.ws1a{word-spacing:-51.484285pt;}
.ws40{word-spacing:-51.382032pt;}
.ws36{word-spacing:-51.330906pt;}
.ws14{word-spacing:-51.126400pt;}
.wsa{word-spacing:-46.243936pt;}
.ws7{word-spacing:-46.197922pt;}
.ws6{word-spacing:-46.013867pt;}
.ws2f{word-spacing:-39.631637pt;}
.ws2d{word-spacing:-39.603900pt;}
.ws29{word-spacing:-38.878714pt;}
.ws2b{word-spacing:-38.876988pt;}
.ws33{word-spacing:-38.345600pt;}
.ws22{word-spacing:-38.344533pt;}
.ws26{word-spacing:-37.468910pt;}
.ws3a{word-spacing:-37.174625pt;}
.ws11{word-spacing:-36.517333pt;}
.ws18{word-spacing:-36.515200pt;}
.ws20{word-spacing:-36.513067pt;}
.ws21{word-spacing:-32.529067pt;}
.ws3c{word-spacing:-32.015412pt;}
.ws3e{word-spacing:-30.539732pt;}
.ws1c{word-spacing:-28.182510pt;}
.ws13{word-spacing:-2.677954pt;}
.ws12{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws19{word-spacing:-0.042507pt;}
.ws42{word-spacing:0.000000pt;}
.ws31{word-spacing:10.798829pt;}
.ws2c{word-spacing:11.479666pt;}
.ws30{word-spacing:11.481495pt;}
.ws2e{word-spacing:11.482911pt;}
.ws2a{word-spacing:12.212162pt;}
.ws34{word-spacing:12.727696pt;}
.ws32{word-spacing:12.730911pt;}
.ws35{word-spacing:13.259644pt;}
.wsc{word-spacing:13.331379pt;}
.wsb{word-spacing:13.334579pt;}
.ws25{word-spacing:13.580999pt;}
.ws24{word-spacing:13.583133pt;}
.ws27{word-spacing:13.586333pt;}
.ws3b{word-spacing:13.634059pt;}
.wse{word-spacing:14.489702pt;}
.wsd{word-spacing:14.537523pt;}
.ws8{word-spacing:15.111373pt;}
.ws9{word-spacing:16.259072pt;}
.ws3d{word-spacing:17.830224pt;}
.wsf{word-spacing:17.884979pt;}
.ws28{word-spacing:18.490586pt;}
.ws4{word-spacing:18.542844pt;}
.ws3{word-spacing:18.543719pt;}
.ws3f{word-spacing:19.449795pt;}
.ws2{word-spacing:20.339718pt;}
.ws17{word-spacing:22.532138pt;}
.ws1b{word-spacing:26.513274pt;}
.ws23{word-spacing:27.790918pt;}
.ws38{word-spacing:27.842323pt;}
.ws10{word-spacing:27.843795pt;}
.ws1f{word-spacing:27.895054pt;}
.ws41{word-spacing:27.896251pt;}
.ws39{word-spacing:31.830355pt;}
.ws1{word-spacing:44.505038pt;}
._0{margin-left:-58.414038pt;}
._6{margin-left:-24.654484pt;}
._5{margin-left:-21.180063pt;}
._9{margin-left:-6.348131pt;}
._1{margin-left:-5.047717pt;}
._4{margin-left:-3.846204pt;}
._3{margin-left:-2.922363pt;}
._2{margin-left:-1.328347pt;}
._8{width:1.278160pt;}
._7{width:2.656693pt;}
._b{width:21.361822pt;}
._a{width:26.513799pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:46.013867pt;}
.fs4{font-size:47.820800pt;}
.fs6{font-size:51.126400pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs0{font-size:122.703467pt;}
.fs1{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:100.740000pt;}
.y2c{bottom:116.681333pt;}
.y2b{bottom:132.621333pt;}
.y2a{bottom:152.510667pt;}
.y29{bottom:176.006667pt;}
.y28{bottom:191.946667pt;}
.y27{bottom:207.886667pt;}
.y26{bottom:225.726667pt;}
.y49{bottom:232.580000pt;}
.y25{bottom:245.616000pt;}
.y48{bottom:248.520000pt;}
.y47{bottom:268.644000pt;}
.y24{bottom:269.112000pt;}
.y23{bottom:285.052000pt;}
.y46{bottom:293.550667pt;}
.y22{bottom:304.941333pt;}
.y45{bottom:309.492000pt;}
.y44{bottom:325.432000pt;}
.y21{bottom:328.437333pt;}
.y20{bottom:344.378667pt;}
.y43{bottom:345.556000pt;}
.y1f{bottom:360.318667pt;}
.y42{bottom:370.462667pt;}
.y1e{bottom:380.208000pt;}
.y41{bottom:386.402667pt;}
.y40{bottom:402.342667pt;}
.y1d{bottom:403.704000pt;}
.y3f{bottom:418.282667pt;}
.y1c{bottom:419.644000pt;}
.y3e{bottom:434.224000pt;}
.y1b{bottom:439.533333pt;}
.y3d{bottom:450.164000pt;}
.y1a{bottom:463.029333pt;}
.y3c{bottom:466.104000pt;}
.y19{bottom:478.970667pt;}
.y3b{bottom:482.044000pt;}
.y18{bottom:494.910667pt;}
.y3a{bottom:497.984000pt;}
.y17{bottom:510.850667pt;}
.y39{bottom:513.925333pt;}
.y16{bottom:526.790667pt;}
.y38{bottom:532.521333pt;}
.y15{bottom:542.730667pt;}
.y37{bottom:548.461333pt;}
.y14{bottom:558.670667pt;}
.y36{bottom:568.586667pt;}
.y13{bottom:578.560000pt;}
.y35{bottom:593.493333pt;}
.y12{bottom:605.749333pt;}
.y34{bottom:609.433333pt;}
.y11{bottom:619.033333pt;}
.y33{bottom:625.373333pt;}
.y10{bottom:632.081333pt;}
.yf{bottom:645.365333pt;}
.y32{bottom:645.497333pt;}
.ye{bottom:658.648000pt;}
.y31{bottom:670.404000pt;}
.yd{bottom:671.932000pt;}
.yc{bottom:685.216000pt;}
.y30{bottom:686.344000pt;}
.yb{bottom:698.498667pt;}
.y2f{bottom:702.285333pt;}
.ya{bottom:711.782667pt;}
.y2e{bottom:718.225333pt;}
.y9{bottom:725.065333pt;}
.y8{bottom:738.349333pt;}
.y7{bottom:792.233333pt;}
.y6{bottom:808.672000pt;}
.y5{bottom:825.110667pt;}
.y4{bottom:841.745333pt;}
.y3{bottom:883.589333pt;}
.y2{bottom:920.782667pt;}
.y1{bottom:957.976000pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.556100pt;}
.h2{height:40.211857pt;}
.h4{height:40.492203pt;}
.h7{height:44.991232pt;}
.h1{height:107.979051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:59.198667pt;}
.x9{left:65.285333pt;}
.x2{left:70.565333pt;}
.x8{left:78.569333pt;}
.xd{left:103.282667pt;}
.xe{left:105.826667pt;}
.x1{left:114.540000pt;}
.xc{left:129.780000pt;}
.xa{left:148.514667pt;}
.x5{left:260.216000pt;}
.x6{left:276.548000pt;}
.x7{left:289.996000pt;}
.x3{left:361.986667pt;}
.x4{left:365.304000pt;}
.xf{left:415.970667pt;}
.x10{left:429.253333pt;}
.x12{left:448.289333pt;}
.x14{left:505.552000pt;}
.x13{left:512.752000pt;}
.x11{left:520.400000pt;}
}




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