
    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_1ea897bf671402b47934731a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.020000;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_abc0cccee64ca3d4f8e35024.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_3f98a09f2ef7df52c0071a2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.081000;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_c33e06df0368f529a498f077.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_c502bfceae5b8e9cc1b41443.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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;}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.184800px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:1246.558800px;}
.ls0{letter-spacing:2313.342600px;}
.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:-24.000000px;}
.ws36{word-spacing:-12.000000px;}
.ws1{word-spacing:-9.120000px;}
.ws2f{word-spacing:-3.469200px;}
.ws23{word-spacing:-3.410400px;}
.ws5{word-spacing:-2.940000px;}
.ws30{word-spacing:-2.881200px;}
.ws18{word-spacing:-2.763600px;}
.ws3f{word-spacing:-2.528400px;}
.wsc{word-spacing:-2.293200px;}
.ws20{word-spacing:-2.175600px;}
.ws11{word-spacing:-1.587600px;}
.ws1e{word-spacing:-1.352400px;}
.ws27{word-spacing:-0.823200px;}
.ws3{word-spacing:-0.470400px;}
.wsb{word-spacing:-0.352800px;}
.ws31{word-spacing:-0.176400px;}
.wsd{word-spacing:-0.117600px;}
.ws2{word-spacing:0.000000px;}
.ws3c{word-spacing:0.058800px;}
.ws21{word-spacing:0.176400px;}
.ws8{word-spacing:0.294000px;}
.ws3b{word-spacing:0.705600px;}
.ws22{word-spacing:0.940800px;}
.ws15{word-spacing:0.999600px;}
.ws24{word-spacing:1.176000px;}
.wse{word-spacing:1.293600px;}
.ws1f{word-spacing:1.411200px;}
.ws13{word-spacing:1.528800px;}
.ws10{word-spacing:1.705200px;}
.ws1a{word-spacing:1.822800px;}
.ws4{word-spacing:2.116800px;}
.ws38{word-spacing:2.234400px;}
.ws29{word-spacing:2.528400px;}
.ws25{word-spacing:2.587200px;}
.ws16{word-spacing:2.881200px;}
.ws40{word-spacing:2.998800px;}
.ws32{word-spacing:3.057600px;}
.ws6{word-spacing:3.116400px;}
.ws12{word-spacing:3.175200px;}
.ws9{word-spacing:3.292800px;}
.ws7{word-spacing:3.469200px;}
.ws2d{word-spacing:3.528000px;}
.wsa{word-spacing:3.586800px;}
.ws35{word-spacing:3.763200px;}
.ws43{word-spacing:3.967200px;}
.ws41{word-spacing:4.292400px;}
.ws37{word-spacing:4.762800px;}
.ws14{word-spacing:4.821600px;}
.ws2b{word-spacing:4.939200px;}
.ws28{word-spacing:5.174400px;}
.ws2e{word-spacing:5.468400px;}
.wsf{word-spacing:5.997600px;}
.ws3d{word-spacing:6.526800px;}
.ws39{word-spacing:6.762000px;}
.ws1c{word-spacing:6.997200px;}
.ws1b{word-spacing:7.056000px;}
.ws34{word-spacing:7.350000px;}
.ws42{word-spacing:7.432800px;}
.ws2a{word-spacing:7.820400px;}
.ws2c{word-spacing:8.114400px;}
.ws3a{word-spacing:8.761200px;}
.ws19{word-spacing:9.525600px;}
.ws26{word-spacing:9.819600px;}
.ws3e{word-spacing:9.996000px;}
.ws33{word-spacing:10.054800px;}
.ws17{word-spacing:10.407600px;}
.ws1d{word-spacing:1632.753600px;}
._8{margin-left:-1632.736800px;}
._6{margin-left:-7.585200px;}
._4{margin-left:-5.556600px;}
._3{margin-left:-4.292400px;}
._5{margin-left:-3.234000px;}
._2{margin-left:-2.116800px;}
._1{margin-left:-1.058400px;}
._7{width:1.413600px;}
._0{width:3.480000px;}
._a{width:7.432800px;}
._9{width:2126.610600px;}
.fc4{color:rgb(0,80,152);}
.fc3{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fs5{font-size:26.584800px;}
.fs3{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs2{font-size:58.800000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:77.698800px;}
.y21{bottom:142.768800px;}
.y47{bottom:142.930800px;}
.y20{bottom:164.524800px;}
.y46{bottom:164.686800px;}
.y1f{bottom:186.280800px;}
.y45{bottom:186.442800px;}
.y1e{bottom:208.036800px;}
.y44{bottom:208.198800px;}
.y1d{bottom:229.792800px;}
.y43{bottom:229.852800px;}
.y1c{bottom:251.548800px;}
.y42{bottom:251.608800px;}
.y55{bottom:266.931600px;}
.y1b{bottom:273.304800px;}
.y41{bottom:273.364800px;}
.y54{bottom:283.427400px;}
.y1a{bottom:295.060800px;}
.y40{bottom:295.120800px;}
.y53{bottom:299.923200px;}
.y52{bottom:299.927400px;}
.y51{bottom:312.627000px;}
.y19{bottom:316.816800px;}
.y3f{bottom:316.876800px;}
.y18{bottom:338.572800px;}
.y3e{bottom:338.632800px;}
.y17{bottom:360.328800px;}
.y3d{bottom:360.388800px;}
.y16{bottom:382.084800px;}
.y3c{bottom:382.144800px;}
.y15{bottom:403.840800px;}
.y3b{bottom:403.900800px;}
.y50{bottom:412.186950px;}
.y14{bottom:425.596800px;}
.y3a{bottom:425.656800px;}
.y4f{bottom:432.939000px;}
.y13{bottom:447.352800px;}
.y39{bottom:447.412800px;}
.y12{bottom:469.108800px;}
.y38{bottom:469.168800px;}
.y11{bottom:490.864800px;}
.y37{bottom:490.924800px;}
.y4e{bottom:490.948800px;}
.y10{bottom:512.620800px;}
.y36{bottom:512.680800px;}
.y4d{bottom:512.695500px;}
.yf{bottom:534.376800px;}
.y35{bottom:534.436800px;}
.y4c{bottom:534.451500px;}
.ye{bottom:556.132800px;}
.y34{bottom:556.192800px;}
.yd{bottom:577.888800px;}
.y32{bottom:577.924800px;}
.y33{bottom:577.948800px;}
.y4b{bottom:599.602800px;}
.yc{bottom:599.644800px;}
.y31{bottom:599.680800px;}
.y4a{bottom:621.358800px;}
.yb{bottom:621.400800px;}
.y30{bottom:621.436800px;}
.y49{bottom:643.114800px;}
.ya{bottom:643.156800px;}
.y2f{bottom:643.192800px;}
.y48{bottom:664.870800px;}
.y9{bottom:664.912800px;}
.y2e{bottom:664.948800px;}
.y2d{bottom:686.626800px;}
.y8{bottom:686.668800px;}
.y2c{bottom:708.382800px;}
.y7{bottom:708.424800px;}
.y2b{bottom:730.138800px;}
.y6{bottom:730.180800px;}
.y2a{bottom:751.894800px;}
.y5{bottom:751.936800px;}
.y29{bottom:773.650800px;}
.y4{bottom:773.692800px;}
.y28{bottom:795.406800px;}
.y3{bottom:795.448800px;}
.y27{bottom:817.162800px;}
.y26{bottom:838.918800px;}
.y25{bottom:860.674800px;}
.y24{bottom:882.430800px;}
.y23{bottom:904.186800px;}
.y22{bottom:925.942800px;}
.y2{bottom:947.698800px;}
.h2{height:35.887200px;}
.h5{height:44.040000px;}
.h4{height:49.921200px;}
.h6{height:51.072000px;}
.h3{height:86.880000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x6{left:124.981800px;}
.x3{left:131.817690px;}
.x2{left:144.567000px;}
.x5{left:148.501950px;}
.x4{left:162.605850px;}
.x7{left:283.689300px;}
.x8{left:521.716500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.497600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1108.052267pt;}
.ls0{letter-spacing:2056.304533pt;}
.ws0{word-spacing:-21.333333pt;}
.ws36{word-spacing:-10.666667pt;}
.ws1{word-spacing:-8.106667pt;}
.ws2f{word-spacing:-3.083733pt;}
.ws23{word-spacing:-3.031467pt;}
.ws5{word-spacing:-2.613333pt;}
.ws30{word-spacing:-2.561067pt;}
.ws18{word-spacing:-2.456533pt;}
.ws3f{word-spacing:-2.247467pt;}
.wsc{word-spacing:-2.038400pt;}
.ws20{word-spacing:-1.933867pt;}
.ws11{word-spacing:-1.411200pt;}
.ws1e{word-spacing:-1.202133pt;}
.ws27{word-spacing:-0.731733pt;}
.ws3{word-spacing:-0.418133pt;}
.wsb{word-spacing:-0.313600pt;}
.ws31{word-spacing:-0.156800pt;}
.wsd{word-spacing:-0.104533pt;}
.ws2{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.052267pt;}
.ws21{word-spacing:0.156800pt;}
.ws8{word-spacing:0.261333pt;}
.ws3b{word-spacing:0.627200pt;}
.ws22{word-spacing:0.836267pt;}
.ws15{word-spacing:0.888533pt;}
.ws24{word-spacing:1.045333pt;}
.wse{word-spacing:1.149867pt;}
.ws1f{word-spacing:1.254400pt;}
.ws13{word-spacing:1.358933pt;}
.ws10{word-spacing:1.515733pt;}
.ws1a{word-spacing:1.620267pt;}
.ws4{word-spacing:1.881600pt;}
.ws38{word-spacing:1.986133pt;}
.ws29{word-spacing:2.247467pt;}
.ws25{word-spacing:2.299733pt;}
.ws16{word-spacing:2.561067pt;}
.ws40{word-spacing:2.665600pt;}
.ws32{word-spacing:2.717867pt;}
.ws6{word-spacing:2.770133pt;}
.ws12{word-spacing:2.822400pt;}
.ws9{word-spacing:2.926933pt;}
.ws7{word-spacing:3.083733pt;}
.ws2d{word-spacing:3.136000pt;}
.wsa{word-spacing:3.188267pt;}
.ws35{word-spacing:3.345067pt;}
.ws43{word-spacing:3.526400pt;}
.ws41{word-spacing:3.815467pt;}
.ws37{word-spacing:4.233600pt;}
.ws14{word-spacing:4.285867pt;}
.ws2b{word-spacing:4.390400pt;}
.ws28{word-spacing:4.599467pt;}
.ws2e{word-spacing:4.860800pt;}
.wsf{word-spacing:5.331200pt;}
.ws3d{word-spacing:5.801600pt;}
.ws39{word-spacing:6.010667pt;}
.ws1c{word-spacing:6.219733pt;}
.ws1b{word-spacing:6.272000pt;}
.ws34{word-spacing:6.533333pt;}
.ws42{word-spacing:6.606933pt;}
.ws2a{word-spacing:6.951467pt;}
.ws2c{word-spacing:7.212800pt;}
.ws3a{word-spacing:7.787733pt;}
.ws19{word-spacing:8.467200pt;}
.ws26{word-spacing:8.728533pt;}
.ws3e{word-spacing:8.885333pt;}
.ws33{word-spacing:8.937600pt;}
.ws17{word-spacing:9.251200pt;}
.ws1d{word-spacing:1451.336533pt;}
._8{margin-left:-1451.321600pt;}
._6{margin-left:-6.742400pt;}
._4{margin-left:-4.939200pt;}
._3{margin-left:-3.815467pt;}
._5{margin-left:-2.874667pt;}
._2{margin-left:-1.881600pt;}
._1{margin-left:-0.940800pt;}
._7{width:1.256533pt;}
._0{width:3.093333pt;}
._a{width:6.606933pt;}
._9{width:1890.320533pt;}
.fs5{font-size:23.630933pt;}
.fs3{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs2{font-size:52.266667pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:69.065600pt;}
.y21{bottom:126.905600pt;}
.y47{bottom:127.049600pt;}
.y20{bottom:146.244267pt;}
.y46{bottom:146.388267pt;}
.y1f{bottom:165.582933pt;}
.y45{bottom:165.726933pt;}
.y1e{bottom:184.921600pt;}
.y44{bottom:185.065600pt;}
.y1d{bottom:204.260267pt;}
.y43{bottom:204.313600pt;}
.y1c{bottom:223.598933pt;}
.y42{bottom:223.652267pt;}
.y55{bottom:237.272533pt;}
.y1b{bottom:242.937600pt;}
.y41{bottom:242.990933pt;}
.y54{bottom:251.935467pt;}
.y1a{bottom:262.276267pt;}
.y40{bottom:262.329600pt;}
.y53{bottom:266.598400pt;}
.y52{bottom:266.602133pt;}
.y51{bottom:277.890667pt;}
.y19{bottom:281.614933pt;}
.y3f{bottom:281.668267pt;}
.y18{bottom:300.953600pt;}
.y3e{bottom:301.006933pt;}
.y17{bottom:320.292267pt;}
.y3d{bottom:320.345600pt;}
.y16{bottom:339.630933pt;}
.y3c{bottom:339.684267pt;}
.y15{bottom:358.969600pt;}
.y3b{bottom:359.022933pt;}
.y50{bottom:366.388400pt;}
.y14{bottom:378.308267pt;}
.y3a{bottom:378.361600pt;}
.y4f{bottom:384.834667pt;}
.y13{bottom:397.646933pt;}
.y39{bottom:397.700267pt;}
.y12{bottom:416.985600pt;}
.y38{bottom:417.038933pt;}
.y11{bottom:436.324267pt;}
.y37{bottom:436.377600pt;}
.y4e{bottom:436.398933pt;}
.y10{bottom:455.662933pt;}
.y36{bottom:455.716267pt;}
.y4d{bottom:455.729333pt;}
.yf{bottom:475.001600pt;}
.y35{bottom:475.054933pt;}
.y4c{bottom:475.068000pt;}
.ye{bottom:494.340267pt;}
.y34{bottom:494.393600pt;}
.yd{bottom:513.678933pt;}
.y32{bottom:513.710933pt;}
.y33{bottom:513.732267pt;}
.y4b{bottom:532.980267pt;}
.yc{bottom:533.017600pt;}
.y31{bottom:533.049600pt;}
.y4a{bottom:552.318933pt;}
.yb{bottom:552.356267pt;}
.y30{bottom:552.388267pt;}
.y49{bottom:571.657600pt;}
.ya{bottom:571.694933pt;}
.y2f{bottom:571.726933pt;}
.y48{bottom:590.996267pt;}
.y9{bottom:591.033600pt;}
.y2e{bottom:591.065600pt;}
.y2d{bottom:610.334933pt;}
.y8{bottom:610.372267pt;}
.y2c{bottom:629.673600pt;}
.y7{bottom:629.710933pt;}
.y2b{bottom:649.012267pt;}
.y6{bottom:649.049600pt;}
.y2a{bottom:668.350933pt;}
.y5{bottom:668.388267pt;}
.y29{bottom:687.689600pt;}
.y4{bottom:687.726933pt;}
.y28{bottom:707.028267pt;}
.y3{bottom:707.065600pt;}
.y27{bottom:726.366933pt;}
.y26{bottom:745.705600pt;}
.y25{bottom:765.044267pt;}
.y24{bottom:784.382933pt;}
.y23{bottom:803.721600pt;}
.y22{bottom:823.060267pt;}
.y2{bottom:842.398933pt;}
.h2{height:31.899733pt;}
.h5{height:39.146667pt;}
.h4{height:44.374400pt;}
.h6{height:45.397333pt;}
.h3{height:77.226667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x6{left:111.094933pt;}
.x3{left:117.171280pt;}
.x2{left:128.504000pt;}
.x5{left:132.001733pt;}
.x4{left:144.538533pt;}
.x7{left:252.168267pt;}
.x8{left:463.748000pt;}
}




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