
    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_c7059a896cf694c112e30e28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_ab559438c6c4ed2581f478f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_8e5b98bf6f7881ed7aa2f96d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_3fe7c061030cde31c0296cbc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_04ae94990152f2e84eedbf01.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.685000;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_5613ee4dfe653bd9eda774a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675000;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_1eaed6fe3b98c513fd08b038.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_9f848aae8384b22411aeb685.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.877000;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:ff9;src:url('chunks/assets/font_0cac78c02831cf8d9c7321a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.383000;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:ffa;src:url('chunks/assets/font_6751541eb4131f3a795bbf13.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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:-10.764000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls13{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001171px;}
.ls19{letter-spacing:0.005098px;}
.ls14{letter-spacing:0.031198px;}
.ls1b{letter-spacing:0.032600px;}
.lsc{letter-spacing:0.033631px;}
.ls1a{letter-spacing:2.984915px;}
.lsd{letter-spacing:2.989289px;}
.ls6{letter-spacing:2.990915px;}
.ls11{letter-spacing:19.869542px;}
.ls1f{letter-spacing:19.941274px;}
.ls10{letter-spacing:23.384371px;}
.ls2{letter-spacing:24.173414px;}
.lsb{letter-spacing:24.388608px;}
.ls1e{letter-spacing:24.532070px;}
.ls5{letter-spacing:24.675533px;}
.ls15{letter-spacing:24.747264px;}
.lse{letter-spacing:26.038426px;}
.ls1d{letter-spacing:28.118630px;}
.lsa{letter-spacing:28.620749px;}
.ls8{letter-spacing:29.168915px;}
.ls9{letter-spacing:30.916147px;}
.ls18{letter-spacing:31.489997px;}
.ls0{letter-spacing:31.705190px;}
.ls16{letter-spacing:31.920384px;}
.ls4{letter-spacing:32.135578px;}
.ls3{letter-spacing:33.139814px;}
.ls1{letter-spacing:34.000589px;}
.lsf{letter-spacing:35.148288px;}
.ls17{letter-spacing:39.021773px;}
.ls1c{letter-spacing:39.882547px;}
.ls12{letter-spacing:152.428800px;}
.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;}
}
.ws12{word-spacing:-42.895258px;}
.ws1a{word-spacing:-33.211407px;}
.ws15{word-spacing:-19.510886px;}
.ws9{word-spacing:-17.932800px;}
.ws1f{word-spacing:-0.932506px;}
.ws23{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.143462px;}
.ws8{word-spacing:-0.071731px;}
.ws19{word-spacing:0.000000px;}
.ws17{word-spacing:0.071731px;}
.ws14{word-spacing:0.430387px;}
.ws25{word-spacing:1.147699px;}
.ws3{word-spacing:3.873485px;}
.ws11{word-spacing:3.945216px;}
.ws22{word-spacing:4.447334px;}
.ws6{word-spacing:4.662528px;}
.ws5{word-spacing:4.734259px;}
.ws1b{word-spacing:4.949453px;}
.wse{word-spacing:5.021184px;}
.ws26{word-spacing:5.379840px;}
.ws1e{word-spacing:5.881958px;}
.wsb{word-spacing:5.953690px;}
.ws10{word-spacing:6.527539px;}
.ws7{word-spacing:6.671002px;}
.ws16{word-spacing:6.742733px;}
.ws2a{word-spacing:7.173120px;}
.ws29{word-spacing:7.746970px;}
.ws20{word-spacing:7.818701px;}
.ws28{word-spacing:8.320819px;}
.wsc{word-spacing:8.464282px;}
.ws27{word-spacing:8.607744px;}
.wsa{word-spacing:9.109862px;}
.ws1d{word-spacing:10.687949px;}
.ws1c{word-spacing:10.759680px;}
.ws21{word-spacing:11.405261px;}
.ws18{word-spacing:11.835648px;}
.ws4{word-spacing:11.907379px;}
.ws2{word-spacing:15.207014px;}
.ws13{word-spacing:26.827469px;}
.wsd{word-spacing:32.135578px;}
.wsf{word-spacing:32.192873px;}
.ws0{word-spacing:46.366650px;}
.ws1{word-spacing:48.375386px;}
._d{margin-left:-23.384371px;}
._11{margin-left:-8.091257px;}
._1{margin-left:-5.422864px;}
._0{margin-left:-3.843225px;}
._2{margin-left:-1.936742px;}
._3{width:1.936742px;}
._5{width:3.586560px;}
._6{width:5.810227px;}
._13{width:6.814464px;}
._7{width:9.683712px;}
._e{width:23.456102px;}
._10{width:24.460339px;}
._8{width:27.459410px;}
._14{width:28.979405px;}
._a{width:30.108056px;}
._4{width:31.203072px;}
._f{width:34.257254px;}
._c{width:36.654643px;}
._9{width:38.470346px;}
._12{width:43.665253px;}
._b{width:48.461464px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:61.467000px;}
.y1b{bottom:106.299000px;}
.y1a{bottom:131.218500px;}
.y3c{bottom:149.092500px;}
.y19{bottom:173.895000px;}
.y3b{bottom:174.012000px;}
.y3a{bottom:213.874500px;}
.y18{bottom:230.853000px;}
.y39{bottom:238.794000px;}
.y17{bottom:255.772500px;}
.y38{bottom:278.656500px;}
.y16{bottom:301.314000px;}
.y37{bottom:303.574500px;}
.y36{bottom:343.438500px;}
.y15{bottom:346.855500px;}
.y35{bottom:368.356500px;}
.y14{bottom:380.914500px;}
.y34{bottom:411.034500px;}
.y13{bottom:418.842000px;}
.y12{bottom:456.771000px;}
.y33{bottom:468.991500px;}
.y11{bottom:490.830000px;}
.y32{bottom:493.911000px;}
.y10{bottom:515.749500px;}
.y31{bottom:518.829000px;}
.y30{bottom:543.748500px;}
.yf{bottom:558.426000px;}
.y2f{bottom:568.668000px;}
.y2e{bottom:604.756500px;}
.ye{bottom:615.384000px;}
.y2d{bottom:629.676000px;}
.yd{bottom:640.303500px;}
.y2c{bottom:654.595500px;}
.yc{bottom:665.221500px;}
.y2b{bottom:679.513500px;}
.yb{bottom:690.141000px;}
.y2a{bottom:704.433000px;}
.ya{bottom:715.060500px;}
.y29{bottom:729.351000px;}
.y9{bottom:739.978500px;}
.y8{bottom:764.898000px;}
.y28{bottom:772.029000px;}
.y7{bottom:789.816000px;}
.y27{bottom:829.986000px;}
.y6{bottom:835.357500px;}
.y45{bottom:845.602500px;}
.y26{bottom:854.905500px;}
.y44{bottom:870.522000px;}
.y25{bottom:879.823500px;}
.y5{bottom:880.899000px;}
.y24{bottom:904.743000px;}
.y4{bottom:905.818500px;}
.y43{bottom:913.372500px;}
.y42{bottom:938.292000px;}
.y23{bottom:941.244000px;}
.y3{bottom:948.496500px;}
.y41{bottom:963.211500px;}
.y40{bottom:988.129500px;}
.y22{bottom:991.255500px;}
.y21{bottom:1016.175000px;}
.y3f{bottom:1030.807500px;}
.y20{bottom:1041.094500px;}
.y2{bottom:1074.414000px;}
.y1f{bottom:1077.183000px;}
.y3e{bottom:1088.764500px;}
.y1e{bottom:1102.102500px;}
.y3d{bottom:1113.684000px;}
.y1{bottom:1117.378500px;}
.y1d{bottom:1138.602000px;}
.h6{height:50.498765px;}
.h4{height:53.798400px;}
.h5{height:58.312905px;}
.h3{height:64.557900px;}
.h2{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299000px;}
.x5{left:132.637500px;}
.xa{left:150.196500px;}
.x2{left:161.958000px;}
.x1{left:172.098000px;}
.x6{left:234.382500px;}
.x9{left:364.107000px;}
.x4{left:386.227500px;}
.x8{left:394.516500px;}
.x7{left:442.066500px;}
@media print{
.v2{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls13{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001041pt;}
.ls19{letter-spacing:0.004531pt;}
.ls14{letter-spacing:0.027732pt;}
.ls1b{letter-spacing:0.028977pt;}
.lsc{letter-spacing:0.029894pt;}
.ls1a{letter-spacing:2.653258pt;}
.lsd{letter-spacing:2.657146pt;}
.ls6{letter-spacing:2.658591pt;}
.ls11{letter-spacing:17.661815pt;}
.ls1f{letter-spacing:17.725577pt;}
.ls10{letter-spacing:20.786108pt;}
.ls2{letter-spacing:21.487479pt;}
.lsb{letter-spacing:21.678763pt;}
.ls1e{letter-spacing:21.806285pt;}
.ls5{letter-spacing:21.933807pt;}
.ls15{letter-spacing:21.997568pt;}
.lse{letter-spacing:23.145267pt;}
.ls1d{letter-spacing:24.994338pt;}
.lsa{letter-spacing:25.440666pt;}
.ls8{letter-spacing:25.927925pt;}
.ls9{letter-spacing:27.481020pt;}
.ls18{letter-spacing:27.991108pt;}
.ls0{letter-spacing:28.182391pt;}
.ls16{letter-spacing:28.373675pt;}
.ls4{letter-spacing:28.564958pt;}
.ls3{letter-spacing:29.457613pt;}
.ls1{letter-spacing:30.222746pt;}
.lsf{letter-spacing:31.242923pt;}
.ls17{letter-spacing:34.686020pt;}
.ls1c{letter-spacing:35.451153pt;}
.ls12{letter-spacing:135.492267pt;}
.ws12{word-spacing:-38.129118pt;}
.ws1a{word-spacing:-29.521250pt;}
.ws15{word-spacing:-17.343010pt;}
.ws9{word-spacing:-15.940267pt;}
.ws1f{word-spacing:-0.828894pt;}
.ws23{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.127522pt;}
.ws8{word-spacing:-0.063761pt;}
.ws19{word-spacing:0.000000pt;}
.ws17{word-spacing:0.063761pt;}
.ws14{word-spacing:0.382566pt;}
.ws25{word-spacing:1.020177pt;}
.ws3{word-spacing:3.443098pt;}
.ws11{word-spacing:3.506859pt;}
.ws22{word-spacing:3.953186pt;}
.ws6{word-spacing:4.144469pt;}
.ws5{word-spacing:4.208230pt;}
.ws1b{word-spacing:4.399514pt;}
.wse{word-spacing:4.463275pt;}
.ws26{word-spacing:4.782080pt;}
.ws1e{word-spacing:5.228407pt;}
.wsb{word-spacing:5.292169pt;}
.ws10{word-spacing:5.802257pt;}
.ws7{word-spacing:5.929779pt;}
.ws16{word-spacing:5.993540pt;}
.ws2a{word-spacing:6.376107pt;}
.ws29{word-spacing:6.886195pt;}
.ws20{word-spacing:6.949956pt;}
.ws28{word-spacing:7.396284pt;}
.wsc{word-spacing:7.523806pt;}
.ws27{word-spacing:7.651328pt;}
.wsa{word-spacing:8.097655pt;}
.ws1d{word-spacing:9.500399pt;}
.ws1c{word-spacing:9.564160pt;}
.ws21{word-spacing:10.138010pt;}
.ws18{word-spacing:10.520576pt;}
.ws4{word-spacing:10.584337pt;}
.ws2{word-spacing:13.517346pt;}
.ws13{word-spacing:23.846639pt;}
.wsd{word-spacing:28.564958pt;}
.wsf{word-spacing:28.615887pt;}
.ws0{word-spacing:41.214800pt;}
.ws1{word-spacing:43.000343pt;}
._d{margin-left:-20.786108pt;}
._11{margin-left:-7.192228pt;}
._1{margin-left:-4.820323pt;}
._0{margin-left:-3.416200pt;}
._2{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._5{width:3.188053pt;}
._6{width:5.164646pt;}
._13{width:6.057301pt;}
._7{width:8.607744pt;}
._e{width:20.849869pt;}
._10{width:21.742524pt;}
._8{width:24.408364pt;}
._14{width:25.759471pt;}
._a{width:26.762716pt;}
._4{width:27.736064pt;}
._f{width:30.450892pt;}
._c{width:32.581905pt;}
._9{width:34.195863pt;}
._12{width:38.813558pt;}
._b{width:43.076857pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:54.637333pt;}
.y1b{bottom:94.488000pt;}
.y1a{bottom:116.638667pt;}
.y3c{bottom:132.526667pt;}
.y19{bottom:154.573333pt;}
.y3b{bottom:154.677333pt;}
.y3a{bottom:190.110667pt;}
.y18{bottom:205.202667pt;}
.y39{bottom:212.261333pt;}
.y17{bottom:227.353333pt;}
.y38{bottom:247.694667pt;}
.y16{bottom:267.834667pt;}
.y37{bottom:269.844000pt;}
.y36{bottom:305.278667pt;}
.y15{bottom:308.316000pt;}
.y35{bottom:327.428000pt;}
.y14{bottom:338.590667pt;}
.y34{bottom:365.364000pt;}
.y13{bottom:372.304000pt;}
.y12{bottom:406.018667pt;}
.y33{bottom:416.881333pt;}
.y11{bottom:436.293333pt;}
.y32{bottom:439.032000pt;}
.y10{bottom:458.444000pt;}
.y31{bottom:461.181333pt;}
.y30{bottom:483.332000pt;}
.yf{bottom:496.378667pt;}
.y2f{bottom:505.482667pt;}
.y2e{bottom:537.561333pt;}
.ye{bottom:547.008000pt;}
.y2d{bottom:559.712000pt;}
.yd{bottom:569.158667pt;}
.y2c{bottom:581.862667pt;}
.yc{bottom:591.308000pt;}
.y2b{bottom:604.012000pt;}
.yb{bottom:613.458667pt;}
.y2a{bottom:626.162667pt;}
.ya{bottom:635.609333pt;}
.y29{bottom:648.312000pt;}
.y9{bottom:657.758667pt;}
.y8{bottom:679.909333pt;}
.y28{bottom:686.248000pt;}
.y7{bottom:702.058667pt;}
.y27{bottom:737.765333pt;}
.y6{bottom:742.540000pt;}
.y45{bottom:751.646667pt;}
.y26{bottom:759.916000pt;}
.y44{bottom:773.797333pt;}
.y25{bottom:782.065333pt;}
.y5{bottom:783.021333pt;}
.y24{bottom:804.216000pt;}
.y4{bottom:805.172000pt;}
.y43{bottom:811.886667pt;}
.y42{bottom:834.037333pt;}
.y23{bottom:836.661333pt;}
.y3{bottom:843.108000pt;}
.y41{bottom:856.188000pt;}
.y40{bottom:878.337333pt;}
.y22{bottom:881.116000pt;}
.y21{bottom:903.266667pt;}
.y3f{bottom:916.273333pt;}
.y20{bottom:925.417333pt;}
.y2{bottom:955.034667pt;}
.y1f{bottom:957.496000pt;}
.y3e{bottom:967.790667pt;}
.y1e{bottom:979.646667pt;}
.y3d{bottom:989.941333pt;}
.y1{bottom:993.225333pt;}
.y1d{bottom:1012.090667pt;}
.h6{height:44.887791pt;}
.h4{height:47.820800pt;}
.h5{height:51.833693pt;}
.h3{height:57.384800pt;}
.h2{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488000pt;}
.x5{left:117.900000pt;}
.xa{left:133.508000pt;}
.x2{left:143.962667pt;}
.x1{left:152.976000pt;}
.x6{left:208.340000pt;}
.x9{left:323.650667pt;}
.x4{left:343.313333pt;}
.x8{left:350.681333pt;}
.x7{left:392.948000pt;}
}




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