
    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_f13cd52295e7b64505430fc0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_18da17fb6065124e6cf25257.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_83ba6f1ad5dc4aae69cc38a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_67e512fdc719e9aac27eedff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.863770;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_7bc5bd567c399de900448b9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.867676;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_5a6898b31b110b3025d5bc7b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;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);}
.v2{vertical-align:-8.639997px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.239995px;}
.v4{vertical-align:15.839994px;}
.v3{vertical-align:17.999993px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.227520px;}
.ls5{letter-spacing:0.293760px;}
.ls2{letter-spacing:0.302400px;}
.ls4{letter-spacing:6.713277px;}
.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;}
}
.ws3d{word-spacing:-15.301434px;}
.ws5{word-spacing:-15.011994px;}
.ws3a{word-spacing:-11.609275px;}
.ws3e{word-spacing:-6.834237px;}
.wsa{word-spacing:-2.412017px;}
.ws24{word-spacing:-1.745981px;}
.ws2d{word-spacing:-1.691981px;}
.ws37{word-spacing:-1.116018px;}
.ws20{word-spacing:-1.097982px;}
.wsb{word-spacing:-0.629964px;}
.ws8{word-spacing:-0.395982px;}
.ws3b{word-spacing:-0.253441px;}
.ws3f{word-spacing:0.000000px;}
.ws33{word-spacing:0.125944px;}
.ws3c{word-spacing:0.194201px;}
.ws1a{word-spacing:0.288000px;}
.ws34{word-spacing:0.323838px;}
.ws7{word-spacing:0.324000px;}
.ws23{word-spacing:0.468018px;}
.ws1{word-spacing:1.019528px;}
.ws29{word-spacing:1.043982px;}
.ws0{word-spacing:1.172161px;}
.ws19{word-spacing:1.188000px;}
.ws3{word-spacing:1.261444px;}
.ws36{word-spacing:1.764017px;}
.ws4{word-spacing:1.892145px;}
.ws2{word-spacing:2.070711px;}
.ws1e{word-spacing:2.447999px;}
.ws1d{word-spacing:2.483999px;}
.ws14{word-spacing:5.363980px;}
.ws6{word-spacing:5.507998px;}
.ws28{word-spacing:6.084016px;}
.ws27{word-spacing:6.227980px;}
.ws35{word-spacing:6.803997px;}
.wsc{word-spacing:6.948015px;}
.ws2b{word-spacing:7.289997px;}
.ws39{word-spacing:7.325907px;}
.ws13{word-spacing:7.559997px;}
.wse{word-spacing:8.244015px;}
.ws26{word-spacing:9.108014px;}
.ws25{word-spacing:9.827996px;}
.ws10{word-spacing:11.609995px;}
.ws2a{word-spacing:11.843977px;}
.ws9{word-spacing:11.987995px;}
.ws21{word-spacing:13.283995px;}
.ws30{word-spacing:13.320013px;}
.ws15{word-spacing:14.147994px;}
.wsf{word-spacing:14.724012px;}
.ws18{word-spacing:15.443994px;}
.ws12{word-spacing:16.163976px;}
.ws31{word-spacing:16.776011px;}
.ws38{word-spacing:18.845659px;}
.wsd{word-spacing:19.763992px;}
.ws1c{word-spacing:20.286010px;}
.ws1f{word-spacing:21.204010px;}
.ws2f{word-spacing:27.684007px;}
.ws22{word-spacing:28.403989px;}
.ws1b{word-spacing:29.736006px;}
.ws16{word-spacing:29.844006px;}
.ws32{word-spacing:30.563988px;}
.ws2e{word-spacing:34.164004px;}
.ws2c{word-spacing:36.324003px;}
.ws11{word-spacing:37.043985px;}
.ws17{word-spacing:48.563801px;}
._9{margin-left:-4.769996px;}
._16{margin-left:-3.509751px;}
._2{margin-left:-2.453869px;}
._1{margin-left:-1.329101px;}
._0{width:1.234688px;}
._3{width:2.238588px;}
._17{width:3.656597px;}
._18{width:5.486364px;}
._15{width:6.661377px;}
._10{width:11.931050px;}
._6{width:13.327320px;}
._8{width:14.648648px;}
._5{width:16.402534px;}
._14{width:17.837975px;}
._4{width:19.368080px;}
._a{width:23.111995px;}
._11{width:25.577969px;}
._7{width:28.033353px;}
._c{width:30.294001px;}
._b{width:33.246013px;}
._f{width:35.009941px;}
._d{width:39.784522px;}
._13{width:41.309966px;}
._12{width:46.061982px;}
._e{width:72.287809px;}
.fc2{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(32,56,100);}
.fs3{font-size:20.159992px;}
.fs2{font-size:28.079989px;}
.fs4{font-size:30.239988px;}
.fs8{font-size:35.999986px;}
.fs7{font-size:39.599984px;}
.fs1{font-size:41.759983px;}
.fs5{font-size:53.999978px;}
.fs6{font-size:59.759976px;}
.fs0{font-size:97.199961px;}
.y0{bottom:0.000000px;}
.y4e{bottom:12.900295px;}
.y4d{bottom:21.900291px;}
.y4c{bottom:30.900288px;}
.y4b{bottom:39.900284px;}
.y4a{bottom:48.900280px;}
.y49{bottom:58.260277px;}
.y3e{bottom:81.839967px;}
.y3d{bottom:98.039961px;}
.y48{bottom:112.079955px;}
.y3c{bottom:114.239954px;}
.y47{bottom:128.279949px;}
.y3b{bottom:130.439948px;}
.y46{bottom:144.479942px;}
.y3a{bottom:146.639941px;}
.y45{bottom:160.679936px;}
.y39{bottom:162.839935px;}
.y38{bottom:179.039928px;}
.y44{bottom:193.079923px;}
.y37{bottom:195.239922px;}
.y43{bottom:209.279916px;}
.y36{bottom:211.439915px;}
.y42{bottom:225.479910px;}
.y35{bottom:227.639909px;}
.y41{bottom:241.679903px;}
.y34{bottom:243.839902px;}
.y33{bottom:260.039896px;}
.y32{bottom:276.239890px;}
.y31{bottom:292.439883px;}
.y30{bottom:308.639877px;}
.y2f{bottom:324.839870px;}
.y2e{bottom:341.039864px;}
.y63{bottom:349.319860px;}
.y2d{bottom:357.239857px;}
.y62{bottom:367.319853px;}
.y61{bottom:376.319849px;}
.y70{bottom:381.539847px;}
.y60{bottom:385.319846px;}
.y2c{bottom:389.639844px;}
.y5f{bottom:394.319842px;}
.y6f{bottom:399.539840px;}
.y5e{bottom:403.319839px;}
.y2b{bottom:405.839838px;}
.y6e{bottom:408.539837px;}
.y5d{bottom:412.319835px;}
.y6d{bottom:417.539833px;}
.y2a{bottom:422.039831px;}
.y6c{bottom:426.539829px;}
.y6b{bottom:435.539826px;}
.y29{bottom:438.239825px;}
.y6a{bottom:444.539822px;}
.y28{bottom:470.639812px;}
.y27{bottom:486.839805px;}
.y5c{bottom:502.679799px;}
.y26{bottom:503.039799px;}
.y25{bottom:519.239792px;}
.y5b{bottom:520.679792px;}
.y5a{bottom:529.679788px;}
.y24{bottom:535.439786px;}
.y59{bottom:538.679785px;}
.y69{bottom:539.039784px;}
.y58{bottom:547.679781px;}
.y23{bottom:551.639779px;}
.y57{bottom:556.679777px;}
.y68{bottom:557.039777px;}
.y56{bottom:565.679774px;}
.y67{bottom:566.039774px;}
.y22{bottom:567.839773px;}
.y66{bottom:575.039770px;}
.y21{bottom:584.039766px;}
.y65{bottom:593.039763px;}
.y64{bottom:602.039759px;}
.y20{bottom:616.439753px;}
.y1f{bottom:632.639747px;}
.y1e{bottom:648.839740px;}
.y55{bottom:649.019740px;}
.y1d{bottom:665.039734px;}
.y77{bottom:666.479733px;}
.y54{bottom:667.019733px;}
.y53{bottom:676.019730px;}
.y1c{bottom:681.239728px;}
.y76{bottom:684.479726px;}
.y52{bottom:685.019726px;}
.y75{bottom:693.479723px;}
.y51{bottom:694.019722px;}
.y1b{bottom:697.439721px;}
.y74{bottom:702.479719px;}
.y50{bottom:703.019719px;}
.y73{bottom:711.479715px;}
.y4f{bottom:712.019715px;}
.y1a{bottom:713.639715px;}
.y72{bottom:720.479712px;}
.y71{bottom:729.479708px;}
.y19{bottom:729.839708px;}
.y18{bottom:746.039702px;}
.y17{bottom:762.239695px;}
.y3f{bottom:768.719693px;}
.y40{bottom:775.019690px;}
.y16{bottom:794.639682px;}
.y15{bottom:826.319669px;}
.y14{bottom:842.519663px;}
.y13{bottom:858.719657px;}
.y12{bottom:874.919650px;}
.y11{bottom:891.119644px;}
.y10{bottom:907.319637px;}
.yf{bottom:923.519631px;}
.ye{bottom:939.719624px;}
.yd{bottom:955.919618px;}
.yc{bottom:987.239605px;}
.yb{bottom:1003.439599px;}
.ya{bottom:1019.639592px;}
.y9{bottom:1052.039579px;}
.y8{bottom:1068.239573px;}
.y7{bottom:1084.439566px;}
.y6{bottom:1100.639560px;}
.y5{bottom:1150.319540px;}
.y4{bottom:1159.319536px;}
.y3{bottom:1166.879533px;}
.y2{bottom:1195.319522px;}
.y1{bottom:1224.479510px;}
.h7{height:20.952413px;}
.h3{height:22.899366px;}
.h6{height:31.539362px;}
.h2{height:43.554358px;}
.h4{height:56.320290px;}
.h5{height:62.327788px;}
.h1{height:101.376522px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:34.199986px;}
.x6{left:42.659983px;}
.x7{left:43.919982px;}
.x3{left:185.579926px;}
.x2{left:235.979906px;}
.x1{left:271.979891px;}
.x4{left:313.019875px;}
.xa{left:334.259866px;}
.x5{left:385.559846px;}
.x9{left:389.159844px;}
.xe{left:559.439776px;}
.xc{left:560.879776px;}
.xd{left:562.139775px;}
.x8{left:675.359730px;}
.xf{left:850.319660px;}
.x10{left:851.579659px;}
.x11{left:853.019659px;}
.x12{left:854.279658px;}
@media print{
.v2{vertical-align:-7.679997pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.879996pt;}
.v4{vertical-align:14.079994pt;}
.v3{vertical-align:15.999994pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.202240pt;}
.ls5{letter-spacing:0.261120pt;}
.ls2{letter-spacing:0.268800pt;}
.ls4{letter-spacing:5.967358pt;}
.ws3d{word-spacing:-13.601275pt;}
.ws5{word-spacing:-13.343995pt;}
.ws3a{word-spacing:-10.319356pt;}
.ws3e{word-spacing:-6.074878pt;}
.wsa{word-spacing:-2.144015pt;}
.ws24{word-spacing:-1.551983pt;}
.ws2d{word-spacing:-1.503983pt;}
.ws37{word-spacing:-0.992016pt;}
.ws20{word-spacing:-0.975984pt;}
.wsb{word-spacing:-0.559968pt;}
.ws8{word-spacing:-0.351984pt;}
.ws3b{word-spacing:-0.225281pt;}
.ws3f{word-spacing:0.000000pt;}
.ws33{word-spacing:0.111950pt;}
.ws3c{word-spacing:0.172623pt;}
.ws1a{word-spacing:0.256000pt;}
.ws34{word-spacing:0.287856pt;}
.ws7{word-spacing:0.288000pt;}
.ws23{word-spacing:0.416016pt;}
.ws1{word-spacing:0.906247pt;}
.ws29{word-spacing:0.927984pt;}
.ws0{word-spacing:1.041921pt;}
.ws19{word-spacing:1.056000pt;}
.ws3{word-spacing:1.121283pt;}
.ws36{word-spacing:1.568015pt;}
.ws4{word-spacing:1.681907pt;}
.ws2{word-spacing:1.840632pt;}
.ws1e{word-spacing:2.175999pt;}
.ws1d{word-spacing:2.207999pt;}
.ws14{word-spacing:4.767982pt;}
.ws6{word-spacing:4.895998pt;}
.ws28{word-spacing:5.408014pt;}
.ws27{word-spacing:5.535982pt;}
.ws35{word-spacing:6.047998pt;}
.wsc{word-spacing:6.176014pt;}
.ws2b{word-spacing:6.479997pt;}
.ws39{word-spacing:6.511917pt;}
.ws13{word-spacing:6.719997pt;}
.wse{word-spacing:7.328013pt;}
.ws26{word-spacing:8.096013pt;}
.ws25{word-spacing:8.735997pt;}
.ws10{word-spacing:10.319996pt;}
.ws2a{word-spacing:10.527980pt;}
.ws9{word-spacing:10.655996pt;}
.ws21{word-spacing:11.807995pt;}
.ws30{word-spacing:11.840011pt;}
.ws15{word-spacing:12.575995pt;}
.wsf{word-spacing:13.088011pt;}
.ws18{word-spacing:13.727995pt;}
.ws12{word-spacing:14.367978pt;}
.ws31{word-spacing:14.912010pt;}
.ws38{word-spacing:16.751697pt;}
.wsd{word-spacing:17.567993pt;}
.ws1c{word-spacing:18.032009pt;}
.ws1f{word-spacing:18.848008pt;}
.ws2f{word-spacing:24.608006pt;}
.ws22{word-spacing:25.247990pt;}
.ws1b{word-spacing:26.432005pt;}
.ws16{word-spacing:26.528005pt;}
.ws32{word-spacing:27.167989pt;}
.ws2e{word-spacing:30.368004pt;}
.ws2c{word-spacing:32.288003pt;}
.ws11{word-spacing:32.927987pt;}
.ws17{word-spacing:43.167823pt;}
._9{margin-left:-4.239997pt;}
._16{margin-left:-3.119779pt;}
._2{margin-left:-2.181217pt;}
._1{margin-left:-1.181423pt;}
._0{width:1.097501pt;}
._3{width:1.989856pt;}
._17{width:3.250308pt;}
._18{width:4.876768pt;}
._15{width:5.921224pt;}
._10{width:10.605378pt;}
._6{width:11.846506pt;}
._8{width:13.021020pt;}
._5{width:14.580031pt;}
._14{width:15.855978pt;}
._4{width:17.216071pt;}
._a{width:20.543996pt;}
._11{width:22.735972pt;}
._7{width:24.918536pt;}
._c{width:26.928001pt;}
._b{width:29.552012pt;}
._f{width:31.119947pt;}
._d{width:35.364019pt;}
._13{width:36.719969pt;}
._12{width:40.943984pt;}
._e{width:64.255830pt;}
.fs3{font-size:17.919993pt;}
.fs2{font-size:24.959990pt;}
.fs4{font-size:26.879989pt;}
.fs8{font-size:31.999987pt;}
.fs7{font-size:35.199986pt;}
.fs1{font-size:37.119985pt;}
.fs5{font-size:47.999981pt;}
.fs6{font-size:53.119979pt;}
.fs0{font-size:86.399965pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:11.466929pt;}
.y4d{bottom:19.466926pt;}
.y4c{bottom:27.466922pt;}
.y4b{bottom:35.466919pt;}
.y4a{bottom:43.466916pt;}
.y49{bottom:51.786913pt;}
.y3e{bottom:72.746638pt;}
.y3d{bottom:87.146632pt;}
.y48{bottom:99.626627pt;}
.y3c{bottom:101.546626pt;}
.y47{bottom:114.026621pt;}
.y3b{bottom:115.946620pt;}
.y46{bottom:128.426615pt;}
.y3a{bottom:130.346615pt;}
.y45{bottom:142.826610pt;}
.y39{bottom:144.746609pt;}
.y38{bottom:159.146603pt;}
.y44{bottom:171.626598pt;}
.y37{bottom:173.546597pt;}
.y43{bottom:186.026592pt;}
.y36{bottom:187.946591pt;}
.y42{bottom:200.426586pt;}
.y35{bottom:202.346586pt;}
.y41{bottom:214.826581pt;}
.y34{bottom:216.746580pt;}
.y33{bottom:231.146574pt;}
.y32{bottom:245.546568pt;}
.y31{bottom:259.946563pt;}
.y30{bottom:274.346557pt;}
.y2f{bottom:288.746551pt;}
.y2e{bottom:303.146545pt;}
.y63{bottom:310.506542pt;}
.y2d{bottom:317.546540pt;}
.y62{bottom:326.506536pt;}
.y61{bottom:334.506533pt;}
.y70{bottom:339.146531pt;}
.y60{bottom:342.506530pt;}
.y2c{bottom:346.346528pt;}
.y5f{bottom:350.506526pt;}
.y6f{bottom:355.146525pt;}
.y5e{bottom:358.506523pt;}
.y2b{bottom:360.746522pt;}
.y6e{bottom:363.146521pt;}
.y5d{bottom:366.506520pt;}
.y6d{bottom:371.146518pt;}
.y2a{bottom:375.146517pt;}
.y6c{bottom:379.146515pt;}
.y6b{bottom:387.146512pt;}
.y29{bottom:389.546511pt;}
.y6a{bottom:395.146509pt;}
.y28{bottom:418.346499pt;}
.y27{bottom:432.746494pt;}
.y5c{bottom:446.826488pt;}
.y26{bottom:447.146488pt;}
.y25{bottom:461.546482pt;}
.y5b{bottom:462.826482pt;}
.y5a{bottom:470.826478pt;}
.y24{bottom:475.946476pt;}
.y59{bottom:478.826475pt;}
.y69{bottom:479.146475pt;}
.y58{bottom:486.826472pt;}
.y23{bottom:490.346471pt;}
.y57{bottom:494.826469pt;}
.y68{bottom:495.146469pt;}
.y56{bottom:502.826466pt;}
.y67{bottom:503.146465pt;}
.y22{bottom:504.746465pt;}
.y66{bottom:511.146462pt;}
.y21{bottom:519.146459pt;}
.y65{bottom:527.146456pt;}
.y64{bottom:535.146453pt;}
.y20{bottom:547.946447pt;}
.y1f{bottom:562.346442pt;}
.y1e{bottom:576.746436pt;}
.y55{bottom:576.906436pt;}
.y1d{bottom:591.146430pt;}
.y77{bottom:592.426430pt;}
.y54{bottom:592.906430pt;}
.y53{bottom:600.906426pt;}
.y1c{bottom:605.546424pt;}
.y76{bottom:608.426423pt;}
.y52{bottom:608.906423pt;}
.y75{bottom:616.426420pt;}
.y51{bottom:616.906420pt;}
.y1b{bottom:619.946419pt;}
.y74{bottom:624.426417pt;}
.y50{bottom:624.906417pt;}
.y73{bottom:632.426414pt;}
.y4f{bottom:632.906414pt;}
.y1a{bottom:634.346413pt;}
.y72{bottom:640.426410pt;}
.y71{bottom:648.426407pt;}
.y19{bottom:648.746407pt;}
.y18{bottom:663.146401pt;}
.y17{bottom:677.546396pt;}
.y3f{bottom:683.306393pt;}
.y40{bottom:688.906391pt;}
.y16{bottom:706.346384pt;}
.y15{bottom:734.506373pt;}
.y14{bottom:748.906367pt;}
.y13{bottom:763.306361pt;}
.y12{bottom:777.706356pt;}
.y11{bottom:792.106350pt;}
.y10{bottom:806.506344pt;}
.yf{bottom:820.906338pt;}
.ye{bottom:835.306333pt;}
.yd{bottom:849.706327pt;}
.yc{bottom:877.546316pt;}
.yb{bottom:891.946310pt;}
.ya{bottom:906.346304pt;}
.y9{bottom:935.146293pt;}
.y8{bottom:949.546287pt;}
.y7{bottom:963.946281pt;}
.y6{bottom:978.346275pt;}
.y5{bottom:1022.506258pt;}
.y4{bottom:1030.506254pt;}
.y3{bottom:1037.226252pt;}
.y2{bottom:1062.506242pt;}
.y1{bottom:1088.426231pt;}
.h7{height:18.624368pt;}
.h3{height:20.354992pt;}
.h6{height:28.034989pt;}
.h2{height:38.714985pt;}
.h4{height:50.062480pt;}
.h5{height:55.402478pt;}
.h1{height:90.112464pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:30.399988pt;}
.x6{left:37.919985pt;}
.x7{left:39.039984pt;}
.x3{left:164.959934pt;}
.x2{left:209.759916pt;}
.x1{left:241.759903pt;}
.x4{left:278.239889pt;}
.xa{left:297.119881pt;}
.x5{left:342.719863pt;}
.x9{left:345.919862pt;}
.xe{left:497.279801pt;}
.xc{left:498.559801pt;}
.xd{left:499.679800pt;}
.x8{left:600.319760pt;}
.xf{left:755.839698pt;}
.x10{left:756.959697pt;}
.x11{left:758.239697pt;}
.x12{left:759.359696pt;}
}




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