
    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_27081a683b60e9a21fba8803.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.748000;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_c9b87bb56ea669bb220d830d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_dfac64749074d7808161a318.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.749000;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_be93825f908b763c2baa51af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_20afd704a9771e6a5b625fc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_7d2a256c0b29b3ce9984f274.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_0b3c7474492ee5e7ca0c3760.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_87d322eef209368ef95d6fdd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-66.000000px;}
.ws4{word-spacing:-36.000000px;}
.ws0{word-spacing:-16.680000px;}
.ws2{word-spacing:-16.500000px;}
.ws39{word-spacing:-7.458000px;}
.ws41{word-spacing:-6.534000px;}
.ws3b{word-spacing:-6.270000px;}
.ws2d{word-spacing:-4.026000px;}
.ws33{word-spacing:-3.894000px;}
.ws32{word-spacing:-3.696000px;}
.ws34{word-spacing:-2.838000px;}
.ws3e{word-spacing:-2.442000px;}
.ws36{word-spacing:-1.452000px;}
.wsd{word-spacing:-1.122000px;}
.ws29{word-spacing:-0.990000px;}
.ws12{word-spacing:-0.462000px;}
.ws3a{word-spacing:-0.396000px;}
.ws1{word-spacing:-0.042000px;}
.ws6{word-spacing:0.000000px;}
.ws11{word-spacing:0.132000px;}
.ws31{word-spacing:0.462000px;}
.ws43{word-spacing:0.528000px;}
.ws1e{word-spacing:0.726000px;}
.ws44{word-spacing:0.792000px;}
.wsc{word-spacing:0.858000px;}
.ws9{word-spacing:0.990000px;}
.ws19{word-spacing:1.122000px;}
.ws2e{word-spacing:1.188000px;}
.ws28{word-spacing:1.980000px;}
.ws2f{word-spacing:2.046000px;}
.wsa{word-spacing:2.508000px;}
.ws20{word-spacing:2.706000px;}
.ws3f{word-spacing:2.838000px;}
.ws1f{word-spacing:2.904000px;}
.ws13{word-spacing:2.970000px;}
.ws42{word-spacing:3.036000px;}
.wsb{word-spacing:3.168000px;}
.ws25{word-spacing:3.630000px;}
.ws18{word-spacing:4.224000px;}
.ws10{word-spacing:4.290000px;}
.ws1d{word-spacing:4.422000px;}
.ws14{word-spacing:4.554000px;}
.ws2b{word-spacing:4.620000px;}
.ws3c{word-spacing:4.686000px;}
.ws17{word-spacing:4.818000px;}
.ws21{word-spacing:4.950000px;}
.ws8{word-spacing:5.346000px;}
.ws2c{word-spacing:5.544000px;}
.ws40{word-spacing:5.676000px;}
.ws35{word-spacing:5.808000px;}
.ws15{word-spacing:6.270000px;}
.ws2a{word-spacing:7.194000px;}
.ws1c{word-spacing:7.788000px;}
.ws27{word-spacing:8.778000px;}
.ws16{word-spacing:9.504000px;}
.ws24{word-spacing:9.636000px;}
.ws30{word-spacing:9.702000px;}
.ws37{word-spacing:11.022000px;}
.wsf{word-spacing:11.418000px;}
.ws23{word-spacing:11.550000px;}
.ws38{word-spacing:12.012000px;}
.ws7{word-spacing:12.078000px;}
.ws22{word-spacing:12.342000px;}
.ws1b{word-spacing:13.530000px;}
.ws26{word-spacing:13.992000px;}
.ws3d{word-spacing:14.256000px;}
.ws1a{word-spacing:15.708000px;}
.wse{word-spacing:16.566000px;}
.ws5{word-spacing:1806.958800px;}
._9{margin-left:-2211.029400px;}
._7{margin-left:-718.380000px;}
._8{margin-left:-240.192000px;}
._b{margin-left:-8.569200px;}
._e{margin-left:-7.374000px;}
._2{margin-left:-6.045600px;}
._a{margin-left:-4.905600px;}
._1{margin-left:-3.775200px;}
._3{margin-left:-2.329800px;}
._4{margin-left:-1.027200px;}
._f{width:1.749000px;}
._d{width:3.066000px;}
._5{width:4.181400px;}
._c{width:7.048800px;}
._6{width:9.601200px;}
._0{width:1615.715400px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(248,248,248);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.y2e{bottom:-25.015800px;}
.y0{bottom:0.000000px;}
.y5{bottom:42.428250px;}
.y2d{bottom:74.981550px;}
.y5e{bottom:75.476850px;}
.y2c{bottom:92.981550px;}
.y5d{bottom:93.476850px;}
.y2b{bottom:110.981550px;}
.y5c{bottom:111.476850px;}
.y2a{bottom:128.981550px;}
.y29{bottom:146.981550px;}
.y5b{bottom:147.476850px;}
.y28{bottom:164.981550px;}
.y5a{bottom:165.476850px;}
.y27{bottom:182.981550px;}
.y59{bottom:183.476850px;}
.y26{bottom:200.981550px;}
.y58{bottom:201.476850px;}
.y25{bottom:218.981550px;}
.y57{bottom:219.476850px;}
.y24{bottom:236.981550px;}
.y56{bottom:237.476850px;}
.y23{bottom:254.981550px;}
.y55{bottom:255.476850px;}
.y22{bottom:272.981550px;}
.y54{bottom:273.476850px;}
.y21{bottom:290.981550px;}
.y53{bottom:291.476850px;}
.y20{bottom:308.981550px;}
.y52{bottom:309.476850px;}
.y1f{bottom:326.981550px;}
.y51{bottom:327.476850px;}
.y1e{bottom:344.981550px;}
.y50{bottom:345.476850px;}
.y1d{bottom:362.981550px;}
.y4f{bottom:363.476850px;}
.y1c{bottom:380.981550px;}
.y4e{bottom:381.476850px;}
.y1b{bottom:398.981550px;}
.y4d{bottom:399.476850px;}
.y1a{bottom:416.981550px;}
.y4c{bottom:417.476850px;}
.y19{bottom:434.981550px;}
.y4b{bottom:435.476850px;}
.y18{bottom:452.981550px;}
.y4a{bottom:453.476850px;}
.y17{bottom:470.981550px;}
.y49{bottom:471.476850px;}
.y16{bottom:488.981550px;}
.y48{bottom:489.476850px;}
.y15{bottom:506.981550px;}
.y47{bottom:507.476850px;}
.y14{bottom:524.981550px;}
.y46{bottom:525.476850px;}
.y13{bottom:542.981550px;}
.y45{bottom:543.476850px;}
.y12{bottom:560.981550px;}
.y44{bottom:561.476850px;}
.y11{bottom:578.981550px;}
.y43{bottom:579.476850px;}
.y10{bottom:596.981550px;}
.y42{bottom:597.476850px;}
.yf{bottom:614.981550px;}
.y41{bottom:615.476850px;}
.ye{bottom:632.981550px;}
.y40{bottom:633.476850px;}
.yd{bottom:650.981550px;}
.y3f{bottom:651.476850px;}
.yc{bottom:668.981550px;}
.y3e{bottom:669.476850px;}
.yb{bottom:686.981550px;}
.y3d{bottom:687.476850px;}
.ya{bottom:704.981550px;}
.y3c{bottom:705.476850px;}
.y9{bottom:722.981550px;}
.y3b{bottom:723.476850px;}
.y3a{bottom:741.476850px;}
.y39{bottom:759.476850px;}
.y8{bottom:763.481550px;}
.y38{bottom:777.476850px;}
.y7{bottom:781.481550px;}
.y37{bottom:795.476850px;}
.y6{bottom:799.481550px;}
.y36{bottom:813.476850px;}
.y35{bottom:831.476850px;}
.y34{bottom:849.476850px;}
.y3{bottom:866.525700px;}
.y33{bottom:867.476850px;}
.y32{bottom:885.476850px;}
.y2{bottom:895.325700px;}
.y31{bottom:903.476850px;}
.y1{bottom:909.725700px;}
.y30{bottom:921.476850px;}
.y4{bottom:942.987900px;}
.y2f{bottom:960.555000px;}
.h7{height:26.490234px;}
.h4{height:38.724000px;}
.h3{height:44.256000px;}
.h2{height:55.320000px;}
.h6{height:57.911133px;}
.h5{height:58.072266px;}
.h0{height:1015.441200px;}
.h1{height:1015.500000px;}
.w1{width:717.750000px;}
.w0{width:717.803700px;}
.x0{left:0.000000px;}
.x5{left:12.484200px;}
.x3{left:82.523550px;}
.x1{left:92.090550px;}
.x4{left:103.783350px;}
.x6{left:457.683900px;}
.x7{left:479.488200px;}
.x8{left:482.235600px;}
.x2{left:557.371950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-58.666667pt;}
.ws4{word-spacing:-32.000000pt;}
.ws0{word-spacing:-14.826667pt;}
.ws2{word-spacing:-14.666667pt;}
.ws39{word-spacing:-6.629333pt;}
.ws41{word-spacing:-5.808000pt;}
.ws3b{word-spacing:-5.573333pt;}
.ws2d{word-spacing:-3.578667pt;}
.ws33{word-spacing:-3.461333pt;}
.ws32{word-spacing:-3.285333pt;}
.ws34{word-spacing:-2.522667pt;}
.ws3e{word-spacing:-2.170667pt;}
.ws36{word-spacing:-1.290667pt;}
.wsd{word-spacing:-0.997333pt;}
.ws29{word-spacing:-0.880000pt;}
.ws12{word-spacing:-0.410667pt;}
.ws3a{word-spacing:-0.352000pt;}
.ws1{word-spacing:-0.037333pt;}
.ws6{word-spacing:0.000000pt;}
.ws11{word-spacing:0.117333pt;}
.ws31{word-spacing:0.410667pt;}
.ws43{word-spacing:0.469333pt;}
.ws1e{word-spacing:0.645333pt;}
.ws44{word-spacing:0.704000pt;}
.wsc{word-spacing:0.762667pt;}
.ws9{word-spacing:0.880000pt;}
.ws19{word-spacing:0.997333pt;}
.ws2e{word-spacing:1.056000pt;}
.ws28{word-spacing:1.760000pt;}
.ws2f{word-spacing:1.818667pt;}
.wsa{word-spacing:2.229333pt;}
.ws20{word-spacing:2.405333pt;}
.ws3f{word-spacing:2.522667pt;}
.ws1f{word-spacing:2.581333pt;}
.ws13{word-spacing:2.640000pt;}
.ws42{word-spacing:2.698667pt;}
.wsb{word-spacing:2.816000pt;}
.ws25{word-spacing:3.226667pt;}
.ws18{word-spacing:3.754667pt;}
.ws10{word-spacing:3.813333pt;}
.ws1d{word-spacing:3.930667pt;}
.ws14{word-spacing:4.048000pt;}
.ws2b{word-spacing:4.106667pt;}
.ws3c{word-spacing:4.165333pt;}
.ws17{word-spacing:4.282667pt;}
.ws21{word-spacing:4.400000pt;}
.ws8{word-spacing:4.752000pt;}
.ws2c{word-spacing:4.928000pt;}
.ws40{word-spacing:5.045333pt;}
.ws35{word-spacing:5.162667pt;}
.ws15{word-spacing:5.573333pt;}
.ws2a{word-spacing:6.394667pt;}
.ws1c{word-spacing:6.922667pt;}
.ws27{word-spacing:7.802667pt;}
.ws16{word-spacing:8.448000pt;}
.ws24{word-spacing:8.565333pt;}
.ws30{word-spacing:8.624000pt;}
.ws37{word-spacing:9.797333pt;}
.wsf{word-spacing:10.149333pt;}
.ws23{word-spacing:10.266667pt;}
.ws38{word-spacing:10.677333pt;}
.ws7{word-spacing:10.736000pt;}
.ws22{word-spacing:10.970667pt;}
.ws1b{word-spacing:12.026667pt;}
.ws26{word-spacing:12.437333pt;}
.ws3d{word-spacing:12.672000pt;}
.ws1a{word-spacing:13.962667pt;}
.wse{word-spacing:14.725333pt;}
.ws5{word-spacing:1606.185600pt;}
._9{margin-left:-1965.359467pt;}
._7{margin-left:-638.560000pt;}
._8{margin-left:-213.504000pt;}
._b{margin-left:-7.617067pt;}
._e{margin-left:-6.554667pt;}
._2{margin-left:-5.373867pt;}
._a{margin-left:-4.360533pt;}
._1{margin-left:-3.355733pt;}
._3{margin-left:-2.070933pt;}
._4{margin-left:-0.913067pt;}
._f{width:1.554667pt;}
._d{width:2.725333pt;}
._5{width:3.716800pt;}
._c{width:6.265600pt;}
._6{width:8.534400pt;}
._0{width:1436.191467pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.y2e{bottom:-22.236267pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:37.714000pt;}
.y2d{bottom:66.650267pt;}
.y5e{bottom:67.090533pt;}
.y2c{bottom:82.650267pt;}
.y5d{bottom:83.090533pt;}
.y2b{bottom:98.650267pt;}
.y5c{bottom:99.090533pt;}
.y2a{bottom:114.650267pt;}
.y29{bottom:130.650267pt;}
.y5b{bottom:131.090533pt;}
.y28{bottom:146.650267pt;}
.y5a{bottom:147.090533pt;}
.y27{bottom:162.650267pt;}
.y59{bottom:163.090533pt;}
.y26{bottom:178.650267pt;}
.y58{bottom:179.090533pt;}
.y25{bottom:194.650267pt;}
.y57{bottom:195.090533pt;}
.y24{bottom:210.650267pt;}
.y56{bottom:211.090533pt;}
.y23{bottom:226.650267pt;}
.y55{bottom:227.090533pt;}
.y22{bottom:242.650267pt;}
.y54{bottom:243.090533pt;}
.y21{bottom:258.650267pt;}
.y53{bottom:259.090533pt;}
.y20{bottom:274.650267pt;}
.y52{bottom:275.090533pt;}
.y1f{bottom:290.650267pt;}
.y51{bottom:291.090533pt;}
.y1e{bottom:306.650267pt;}
.y50{bottom:307.090533pt;}
.y1d{bottom:322.650267pt;}
.y4f{bottom:323.090533pt;}
.y1c{bottom:338.650267pt;}
.y4e{bottom:339.090533pt;}
.y1b{bottom:354.650267pt;}
.y4d{bottom:355.090533pt;}
.y1a{bottom:370.650267pt;}
.y4c{bottom:371.090533pt;}
.y19{bottom:386.650267pt;}
.y4b{bottom:387.090533pt;}
.y18{bottom:402.650267pt;}
.y4a{bottom:403.090533pt;}
.y17{bottom:418.650267pt;}
.y49{bottom:419.090533pt;}
.y16{bottom:434.650267pt;}
.y48{bottom:435.090533pt;}
.y15{bottom:450.650267pt;}
.y47{bottom:451.090533pt;}
.y14{bottom:466.650267pt;}
.y46{bottom:467.090533pt;}
.y13{bottom:482.650267pt;}
.y45{bottom:483.090533pt;}
.y12{bottom:498.650267pt;}
.y44{bottom:499.090533pt;}
.y11{bottom:514.650267pt;}
.y43{bottom:515.090533pt;}
.y10{bottom:530.650267pt;}
.y42{bottom:531.090533pt;}
.yf{bottom:546.650267pt;}
.y41{bottom:547.090533pt;}
.ye{bottom:562.650267pt;}
.y40{bottom:563.090533pt;}
.yd{bottom:578.650267pt;}
.y3f{bottom:579.090533pt;}
.yc{bottom:594.650267pt;}
.y3e{bottom:595.090533pt;}
.yb{bottom:610.650267pt;}
.y3d{bottom:611.090533pt;}
.ya{bottom:626.650267pt;}
.y3c{bottom:627.090533pt;}
.y9{bottom:642.650267pt;}
.y3b{bottom:643.090533pt;}
.y3a{bottom:659.090533pt;}
.y39{bottom:675.090533pt;}
.y8{bottom:678.650267pt;}
.y38{bottom:691.090533pt;}
.y7{bottom:694.650267pt;}
.y37{bottom:707.090533pt;}
.y6{bottom:710.650267pt;}
.y36{bottom:723.090533pt;}
.y35{bottom:739.090533pt;}
.y34{bottom:755.090533pt;}
.y3{bottom:770.245067pt;}
.y33{bottom:771.090533pt;}
.y32{bottom:787.090533pt;}
.y2{bottom:795.845067pt;}
.y31{bottom:803.090533pt;}
.y1{bottom:808.645067pt;}
.y30{bottom:819.090533pt;}
.y4{bottom:838.211467pt;}
.y2f{bottom:853.826667pt;}
.h7{height:23.546875pt;}
.h4{height:34.421333pt;}
.h3{height:39.338667pt;}
.h2{height:49.173333pt;}
.h6{height:51.476562pt;}
.h5{height:51.619792pt;}
.h0{height:902.614400pt;}
.h1{height:902.666667pt;}
.w1{width:638.000000pt;}
.w0{width:638.047733pt;}
.x0{left:0.000000pt;}
.x5{left:11.097067pt;}
.x3{left:73.354267pt;}
.x1{left:81.858267pt;}
.x4{left:92.251867pt;}
.x6{left:406.830133pt;}
.x7{left:426.211733pt;}
.x8{left:428.653867pt;}
.x2{left:495.441733pt;}
}




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