
    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_6fef0db7149bdf4280e54722.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0254c23351ecc7659f8e5107.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_b388bdf558bb125504306ec2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d586bea9c6a6c60f64c3a982.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.986766px;}
.ls3{letter-spacing:2.987675px;}
.ls4{letter-spacing:11.186850px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws1d{word-spacing:-14.920027px;}
.ws17{word-spacing:-13.449600px;}
.ws53{word-spacing:-11.955150px;}
.ws33{word-spacing:-0.777083px;}
.ws51{word-spacing:-0.771202px;}
.ws52{word-spacing:-0.765130px;}
.ws4e{word-spacing:-0.307267px;}
.ws4f{word-spacing:-0.286924px;}
.ws31{word-spacing:-0.239102px;}
.ws28{word-spacing:-0.119551px;}
.ws4{word-spacing:-0.053798px;}
.ws2e{word-spacing:-0.000369px;}
.ws46{word-spacing:0.000000px;}
.ws4b{word-spacing:0.020290px;}
.ws1f{word-spacing:0.059776px;}
.ws2b{word-spacing:0.119551px;}
.ws48{word-spacing:0.836858px;}
.ws39{word-spacing:2.211697px;}
.ws26{word-spacing:2.391024px;}
.ws5f{word-spacing:2.391030px;}
.ws4a{word-spacing:2.534492px;}
.ws3b{word-spacing:2.929004px;}
.ws16{word-spacing:2.958912px;}
.ws5a{word-spacing:3.012698px;}
.ws21{word-spacing:3.168107px;}
.ws9{word-spacing:3.335501px;}
.ws34{word-spacing:3.466985px;}
.ws23{word-spacing:3.526760px;}
.ws12{word-spacing:3.550694px;}
.wsf{word-spacing:3.658291px;}
.ws5e{word-spacing:3.921289px;}
.ws59{word-spacing:4.016930px;}
.ws4c{word-spacing:4.782060px;}
.ws10{word-spacing:4.788058px;}
.ws4d{word-spacing:4.925522px;}
.ws13{word-spacing:5.110848px;}
.ws2c{word-spacing:5.618906px;}
.ws25{word-spacing:5.917784px;}
.ws2{word-spacing:5.977560px;}
.ws8{word-spacing:6.186816px;}
.ws54{word-spacing:6.264499px;}
.wsa{word-spacing:6.402010px;}
.ws2f{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws1b{word-spacing:6.724800px;}
.ws3d{word-spacing:7.053521px;}
.ws3c{word-spacing:7.113296px;}
.wsd{word-spacing:7.208986px;}
.ws22{word-spacing:7.292623px;}
.ws3a{word-spacing:7.352399px;}
.ws57{word-spacing:7.412193px;}
.ws24{word-spacing:8.129482px;}
.ws37{word-spacing:8.428360px;}
.ws11{word-spacing:8.553946px;}
.ws15{word-spacing:8.607744px;}
.ws36{word-spacing:8.966340px;}
.ws2d{word-spacing:9.205442px;}
.ws56{word-spacing:9.372838px;}
.ws41{word-spacing:9.504320px;}
.ws7{word-spacing:9.576115px;}
.ws14{word-spacing:9.898906px;}
.wse{word-spacing:9.952704px;}
.ws44{word-spacing:10.221628px;}
.ws5b{word-spacing:10.616173px;}
.ws38{word-spacing:10.998710px;}
.ws58{word-spacing:11.333482px;}
.ws2a{word-spacing:11.357364px;}
.ws20{word-spacing:11.775793px;}
.wsb{word-spacing:11.835648px;}
.wsc{word-spacing:12.481229px;}
.ws49{word-spacing:13.007203px;}
.ws5c{word-spacing:13.309809px;}
.ws5d{word-spacing:13.341947px;}
.ws6{word-spacing:13.449600px;}
.ws3f{word-spacing:13.509286px;}
.ws32{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws42{word-spacing:14.585246px;}
.ws40{word-spacing:14.764573px;}
.ws55{word-spacing:14.824386px;}
.ws5{word-spacing:15.440141px;}
.ws1a{word-spacing:15.924326px;}
.ws29{word-spacing:16.079636px;}
.ws50{word-spacing:17.024134px;}
.ws1c{word-spacing:17.932680px;}
.ws3e{word-spacing:18.948865px;}
.ws45{word-spacing:19.785724px;}
.ws35{word-spacing:20.503031px;}
.ws27{word-spacing:20.682358px;}
.ws43{word-spacing:22.236523px;}
.ws1e{word-spacing:23.073382px;}
.ws47{word-spacing:23.312484px;}
.ws30{word-spacing:26.600142px;}
.ws19{word-spacing:33.785395px;}
.ws18{word-spacing:47.127398px;}
._1{margin-left:-15.780798px;}
._a{margin-left:-8.069706px;}
._3{margin-left:-6.455781px;}
._4{margin-left:-4.841820px;}
._2{margin-left:-3.586545px;}
._5{margin-left:-2.450792px;}
._0{margin-left:-1.434618px;}
._7{width:2.988780px;}
._6{width:21.686686px;}
._9{width:29.887800px;}
._8{width:32.039718px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y31{bottom:113.332500px;}
.y30{bottom:131.265000px;}
.y51{bottom:149.197500px;}
.y2f{bottom:149.199000px;}
.y2e{bottom:167.131500px;}
.y2d{bottom:185.064000px;}
.y2c{bottom:202.996500px;}
.y2b{bottom:220.929000px;}
.y50{bottom:225.321000px;}
.y2a{bottom:238.861500px;}
.y4f{bottom:251.451000px;}
.y29{bottom:256.795500px;}
.y4e{bottom:269.383500px;}
.y28{bottom:274.728000px;}
.y4d{bottom:287.316000px;}
.y27{bottom:295.315500px;}
.y4c{bottom:309.642000px;}
.y26{bottom:313.248000px;}
.y25{bottom:331.182000px;}
.y4b{bottom:335.772000px;}
.y24{bottom:349.114500px;}
.y4a{bottom:353.704500px;}
.y23{bottom:367.047000px;}
.y49{bottom:371.637000px;}
.y22{bottom:384.979500px;}
.y48{bottom:389.569500px;}
.y21{bottom:402.912000px;}
.y47{bottom:407.502000px;}
.y20{bottom:420.844500px;}
.y46{bottom:425.434500px;}
.y1f{bottom:438.778500px;}
.y45{bottom:447.760500px;}
.y44{bottom:473.890500px;}
.y1e{bottom:477.351000px;}
.y43{bottom:491.823000px;}
.y42{bottom:509.755500px;}
.y41{bottom:527.688000px;}
.y1d{bottom:532.096500px;}
.y40{bottom:545.620500px;}
.y1c{bottom:547.041000px;}
.y1b{bottom:561.985500px;}
.y3f{bottom:563.554500px;}
.y1a{bottom:579.585000px;}
.y3e{bottom:581.487000px;}
.y19{bottom:594.528000px;}
.y3d{bottom:603.811500px;}
.y18{bottom:609.472500px;}
.y17{bottom:624.417000px;}
.y3c{bottom:629.941500px;}
.y16{bottom:639.360000px;}
.y3b{bottom:647.874000px;}
.y15{bottom:654.304500px;}
.y6f{bottom:663.645000px;}
.y3a{bottom:665.806500px;}
.y14{bottom:669.249000px;}
.y6e{bottom:677.094000px;}
.y39{bottom:683.739000px;}
.y13{bottom:684.192000px;}
.y6d{bottom:690.544500px;}
.y12{bottom:699.136500px;}
.y6c{bottom:703.993500px;}
.y38{bottom:706.065000px;}
.y11{bottom:714.079500px;}
.y6b{bottom:717.442500px;}
.y10{bottom:729.024000px;}
.y6a{bottom:730.893000px;}
.y37{bottom:732.195000px;}
.yf{bottom:743.968500px;}
.y69{bottom:744.342000px;}
.y36{bottom:750.127500px;}
.y68{bottom:757.791000px;}
.ye{bottom:758.911500px;}
.y35{bottom:768.060000px;}
.y67{bottom:771.241500px;}
.yd{bottom:773.856000px;}
.y66{bottom:784.690500px;}
.y34{bottom:785.992500px;}
.yc{bottom:788.800500px;}
.y65{bottom:798.141000px;}
.yb{bottom:803.743500px;}
.y33{bottom:803.925000px;}
.y64{bottom:811.590000px;}
.ya{bottom:818.688000px;}
.y63{bottom:825.039000px;}
.y32{bottom:826.251000px;}
.y9{bottom:833.632500px;}
.y62{bottom:838.489500px;}
.y8{bottom:848.575500px;}
.y61{bottom:851.938500px;}
.y60{bottom:865.387500px;}
.y5f{bottom:878.838000px;}
.y5e{bottom:892.287000px;}
.y5d{bottom:905.737500px;}
.y7{bottom:918.042000px;}
.y5c{bottom:919.186500px;}
.y5b{bottom:932.635500px;}
.y6{bottom:936.534000px;}
.y5a{bottom:946.086000px;}
.y5{bottom:955.027500px;}
.y59{bottom:959.535000px;}
.y58{bottom:972.984000px;}
.y4{bottom:973.521000px;}
.y3{bottom:992.235000px;}
.y57{bottom:995.176500px;}
.y56{bottom:1023.196500px;}
.y2{bottom:1039.309500px;}
.y55{bottom:1041.129000px;}
.y54{bottom:1059.061500px;}
.y53{bottom:1076.994000px;}
.y1{bottom:1081.152000px;}
.y52{bottom:1099.635000px;}
.h7{height:32.900573px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:41.006062px;}
.h4{height:41.125613px;}
.h2{height:45.238339px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:73.446000px;}
.x17{left:79.423500px;}
.x4{left:86.292000px;}
.x10{left:88.389000px;}
.x2{left:95.434500px;}
.x18{left:100.834500px;}
.x6{left:119.989500px;}
.x1{left:121.203000px;}
.x5{left:139.050000px;}
.x3{left:155.031000px;}
.x12{left:203.428500px;}
.x16{left:219.897000px;}
.x9{left:340.884000px;}
.x8{left:377.877000px;}
.xb{left:413.197500px;}
.xa{left:419.308500px;}
.x7{left:429.760500px;}
.x14{left:467.967000px;}
.x15{left:482.910000px;}
.x13{left:577.072500px;}
.xd{left:623.571000px;}
.xe{left:659.524500px;}
.xf{left:668.955000px;}
.xc{left:687.070500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.654903pt;}
.ls3{letter-spacing:2.655711pt;}
.ls4{letter-spacing:9.943867pt;}
.ws3{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-13.262246pt;}
.ws17{word-spacing:-11.955200pt;}
.ws53{word-spacing:-10.626800pt;}
.ws33{word-spacing:-0.690740pt;}
.ws51{word-spacing:-0.685513pt;}
.ws52{word-spacing:-0.680115pt;}
.ws4e{word-spacing:-0.273126pt;}
.ws4f{word-spacing:-0.255043pt;}
.ws31{word-spacing:-0.212535pt;}
.ws28{word-spacing:-0.106268pt;}
.ws4{word-spacing:-0.047821pt;}
.ws2e{word-spacing:-0.000328pt;}
.ws46{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.018036pt;}
.ws1f{word-spacing:0.053134pt;}
.ws2b{word-spacing:0.106268pt;}
.ws48{word-spacing:0.743874pt;}
.ws39{word-spacing:1.965953pt;}
.ws26{word-spacing:2.125355pt;}
.ws5f{word-spacing:2.125360pt;}
.ws4a{word-spacing:2.252882pt;}
.ws3b{word-spacing:2.603559pt;}
.ws16{word-spacing:2.630144pt;}
.ws5a{word-spacing:2.677954pt;}
.ws21{word-spacing:2.816095pt;}
.ws9{word-spacing:2.964890pt;}
.ws34{word-spacing:3.081764pt;}
.ws23{word-spacing:3.134898pt;}
.ws12{word-spacing:3.156173pt;}
.wsf{word-spacing:3.251814pt;}
.ws5e{word-spacing:3.485590pt;}
.ws59{word-spacing:3.570605pt;}
.ws4c{word-spacing:4.250720pt;}
.ws10{word-spacing:4.256051pt;}
.ws4d{word-spacing:4.378242pt;}
.ws13{word-spacing:4.542976pt;}
.ws2c{word-spacing:4.994583pt;}
.ws25{word-spacing:5.260253pt;}
.ws2{word-spacing:5.313387pt;}
.ws8{word-spacing:5.499392pt;}
.ws54{word-spacing:5.568443pt;}
.wsa{word-spacing:5.690675pt;}
.ws2f{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws1b{word-spacing:5.977600pt;}
.ws3d{word-spacing:6.269796pt;}
.ws3c{word-spacing:6.322930pt;}
.wsd{word-spacing:6.407987pt;}
.ws22{word-spacing:6.482332pt;}
.ws3a{word-spacing:6.535466pt;}
.ws57{word-spacing:6.588616pt;}
.ws24{word-spacing:7.226206pt;}
.ws37{word-spacing:7.491875pt;}
.ws11{word-spacing:7.603507pt;}
.ws15{word-spacing:7.651328pt;}
.ws36{word-spacing:7.970080pt;}
.ws2d{word-spacing:8.182615pt;}
.ws56{word-spacing:8.331411pt;}
.ws41{word-spacing:8.448285pt;}
.ws7{word-spacing:8.512102pt;}
.ws14{word-spacing:8.799027pt;}
.wse{word-spacing:8.846848pt;}
.ws44{word-spacing:9.085891pt;}
.ws5b{word-spacing:9.436598pt;}
.ws38{word-spacing:9.776631pt;}
.ws58{word-spacing:10.074206pt;}
.ws2a{word-spacing:10.095435pt;}
.ws20{word-spacing:10.467372pt;}
.wsb{word-spacing:10.520576pt;}
.wsc{word-spacing:11.094426pt;}
.ws49{word-spacing:11.561958pt;}
.ws5c{word-spacing:11.830941pt;}
.ws5d{word-spacing:11.859509pt;}
.ws6{word-spacing:11.955200pt;}
.ws3f{word-spacing:12.008254pt;}
.ws32{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws42{word-spacing:12.964663pt;}
.ws40{word-spacing:13.124065pt;}
.ws55{word-spacing:13.177232pt;}
.ws5{word-spacing:13.724570pt;}
.ws1a{word-spacing:14.154957pt;}
.ws29{word-spacing:14.293010pt;}
.ws50{word-spacing:15.132563pt;}
.ws1c{word-spacing:15.940160pt;}
.ws3e{word-spacing:16.843436pt;}
.ws45{word-spacing:17.587310pt;}
.ws35{word-spacing:18.224916pt;}
.ws27{word-spacing:18.384318pt;}
.ws43{word-spacing:19.765798pt;}
.ws1e{word-spacing:20.509673pt;}
.ws47{word-spacing:20.722208pt;}
.ws30{word-spacing:23.644571pt;}
.ws19{word-spacing:30.031462pt;}
.ws18{word-spacing:41.891021pt;}
._1{margin-left:-14.027376pt;}
._a{margin-left:-7.173072pt;}
._3{margin-left:-5.738472pt;}
._4{margin-left:-4.303840pt;}
._2{margin-left:-3.188040pt;}
._5{margin-left:-2.178482pt;}
._0{margin-left:-1.275216pt;}
._7{width:2.656693pt;}
._6{width:19.277054pt;}
._9{width:26.566933pt;}
._8{width:28.479749pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:100.740000pt;}
.y30{bottom:116.680000pt;}
.y51{bottom:132.620000pt;}
.y2f{bottom:132.621333pt;}
.y2e{bottom:148.561333pt;}
.y2d{bottom:164.501333pt;}
.y2c{bottom:180.441333pt;}
.y2b{bottom:196.381333pt;}
.y50{bottom:200.285333pt;}
.y2a{bottom:212.321333pt;}
.y4f{bottom:223.512000pt;}
.y29{bottom:228.262667pt;}
.y4e{bottom:239.452000pt;}
.y28{bottom:244.202667pt;}
.y4d{bottom:255.392000pt;}
.y27{bottom:262.502667pt;}
.y4c{bottom:275.237333pt;}
.y26{bottom:278.442667pt;}
.y25{bottom:294.384000pt;}
.y4b{bottom:298.464000pt;}
.y24{bottom:310.324000pt;}
.y4a{bottom:314.404000pt;}
.y23{bottom:326.264000pt;}
.y49{bottom:330.344000pt;}
.y22{bottom:342.204000pt;}
.y48{bottom:346.284000pt;}
.y21{bottom:358.144000pt;}
.y47{bottom:362.224000pt;}
.y20{bottom:374.084000pt;}
.y46{bottom:378.164000pt;}
.y1f{bottom:390.025333pt;}
.y45{bottom:398.009333pt;}
.y44{bottom:421.236000pt;}
.y1e{bottom:424.312000pt;}
.y43{bottom:437.176000pt;}
.y42{bottom:453.116000pt;}
.y41{bottom:469.056000pt;}
.y1d{bottom:472.974667pt;}
.y40{bottom:484.996000pt;}
.y1c{bottom:486.258667pt;}
.y1b{bottom:499.542667pt;}
.y3f{bottom:500.937333pt;}
.y1a{bottom:515.186667pt;}
.y3e{bottom:516.877333pt;}
.y19{bottom:528.469333pt;}
.y3d{bottom:536.721333pt;}
.y18{bottom:541.753333pt;}
.y17{bottom:555.037333pt;}
.y3c{bottom:559.948000pt;}
.y16{bottom:568.320000pt;}
.y3b{bottom:575.888000pt;}
.y15{bottom:581.604000pt;}
.y6f{bottom:589.906667pt;}
.y3a{bottom:591.828000pt;}
.y14{bottom:594.888000pt;}
.y6e{bottom:601.861333pt;}
.y39{bottom:607.768000pt;}
.y13{bottom:608.170667pt;}
.y6d{bottom:613.817333pt;}
.y12{bottom:621.454667pt;}
.y6c{bottom:625.772000pt;}
.y38{bottom:627.613333pt;}
.y11{bottom:634.737333pt;}
.y6b{bottom:637.726667pt;}
.y10{bottom:648.021333pt;}
.y6a{bottom:649.682667pt;}
.y37{bottom:650.840000pt;}
.yf{bottom:661.305333pt;}
.y69{bottom:661.637333pt;}
.y36{bottom:666.780000pt;}
.y68{bottom:673.592000pt;}
.ye{bottom:674.588000pt;}
.y35{bottom:682.720000pt;}
.y67{bottom:685.548000pt;}
.yd{bottom:687.872000pt;}
.y66{bottom:697.502667pt;}
.y34{bottom:698.660000pt;}
.yc{bottom:701.156000pt;}
.y65{bottom:709.458667pt;}
.yb{bottom:714.438667pt;}
.y33{bottom:714.600000pt;}
.y64{bottom:721.413333pt;}
.ya{bottom:727.722667pt;}
.y63{bottom:733.368000pt;}
.y32{bottom:734.445333pt;}
.y9{bottom:741.006667pt;}
.y62{bottom:745.324000pt;}
.y8{bottom:754.289333pt;}
.y61{bottom:757.278667pt;}
.y60{bottom:769.233333pt;}
.y5f{bottom:781.189333pt;}
.y5e{bottom:793.144000pt;}
.y5d{bottom:805.100000pt;}
.y7{bottom:816.037333pt;}
.y5c{bottom:817.054667pt;}
.y5b{bottom:829.009333pt;}
.y6{bottom:832.474667pt;}
.y5a{bottom:840.965333pt;}
.y5{bottom:848.913333pt;}
.y59{bottom:852.920000pt;}
.y58{bottom:864.874667pt;}
.y4{bottom:865.352000pt;}
.y3{bottom:881.986667pt;}
.y57{bottom:884.601333pt;}
.y56{bottom:909.508000pt;}
.y2{bottom:923.830667pt;}
.y55{bottom:925.448000pt;}
.y54{bottom:941.388000pt;}
.y53{bottom:957.328000pt;}
.y1{bottom:961.024000pt;}
.y52{bottom:977.453333pt;}
.h7{height:29.244954pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.449833pt;}
.h4{height:36.556100pt;}
.h2{height:40.211857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:65.285333pt;}
.x17{left:70.598667pt;}
.x4{left:76.704000pt;}
.x10{left:78.568000pt;}
.x2{left:84.830667pt;}
.x18{left:89.630667pt;}
.x6{left:106.657333pt;}
.x1{left:107.736000pt;}
.x5{left:123.600000pt;}
.x3{left:137.805333pt;}
.x12{left:180.825333pt;}
.x16{left:195.464000pt;}
.x9{left:303.008000pt;}
.x8{left:335.890667pt;}
.xb{left:367.286667pt;}
.xa{left:372.718667pt;}
.x7{left:382.009333pt;}
.x14{left:415.970667pt;}
.x15{left:429.253333pt;}
.x13{left:512.953333pt;}
.xd{left:554.285333pt;}
.xe{left:586.244000pt;}
.xf{left:594.626667pt;}
.xc{left:610.729333pt;}
}




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