
    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_4b0cc5cb30f719c798a43cc3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_6a6a9453be2c3f50d39b7b62.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_b696f48ee051f83126a0a5d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.902000;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_6f4047c6a3ac17e310ebb9c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_18f4bfe0a6c6510d496436d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_1345a47e04c7199ebc87174a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_27ec5b84a63372ac07c80212.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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:-16.878003px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696004px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.652131px;}
.ls4{letter-spacing:2.668394px;}
.ls6{letter-spacing:2.689556px;}
.ls7{letter-spacing:2.691178px;}
.ls3{letter-spacing:2.692090px;}
.ls1{letter-spacing:2.983560px;}
.ls0{letter-spacing:2.987469px;}
.ls2{letter-spacing:2.989287px;}
.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;}
}
.ws1{word-spacing:-22.015102px;}
.ws40{word-spacing:-18.345835px;}
.ws2{word-spacing:-14.943903px;}
.ws48{word-spacing:-13.449603px;}
.ws41{word-spacing:-13.428046px;}
.ws43{word-spacing:-10.759652px;}
.ws2a{word-spacing:-2.905114px;}
.ws11{word-spacing:-2.367130px;}
.ws2d{word-spacing:-2.151936px;}
.ws1b{word-spacing:-1.775348px;}
.ws10{word-spacing:-1.344960px;}
.ws12{word-spacing:-1.075968px;}
.ws4b{word-spacing:-1.022170px;}
.ws38{word-spacing:-0.645581px;}
.ws8{word-spacing:-0.591783px;}
.ws28{word-spacing:-0.268992px;}
.ws13{word-spacing:-0.215194px;}
.ws2e{word-spacing:-0.004157px;}
.ws0{word-spacing:0.000000px;}
.ws47{word-spacing:0.161395px;}
.ws20{word-spacing:0.322790px;}
.ws3e{word-spacing:0.430387px;}
.ws21{word-spacing:0.484186px;}
.ws1d{word-spacing:0.537984px;}
.ws18{word-spacing:0.806976px;}
.ws46{word-spacing:0.914573px;}
.ws33{word-spacing:1.183565px;}
.ws7{word-spacing:1.398759px;}
.wsc{word-spacing:1.506356px;}
.ws4c{word-spacing:1.829146px;}
.ws9{word-spacing:1.936743px;}
.wsf{word-spacing:1.990541px;}
.ws39{word-spacing:2.044340px;}
.ws3f{word-spacing:2.151936px;}
.ws30{word-spacing:2.259533px;}
.ws1c{word-spacing:2.636122px;}
.ws32{word-spacing:2.797517px;}
.ws2b{word-spacing:2.869237px;}
.ws17{word-spacing:2.905114px;}
.ws23{word-spacing:2.958913px;}
.wsd{word-spacing:3.174106px;}
.ws1e{word-spacing:3.227905px;}
.ws19{word-spacing:3.281703px;}
.ws24{word-spacing:3.335501px;}
.ws14{word-spacing:3.389300px;}
.ws37{word-spacing:3.712090px;}
.ws1a{word-spacing:3.873486px;}
.ws3d{word-spacing:4.250074px;}
.wse{word-spacing:4.465268px;}
.ws15{word-spacing:4.519067px;}
.ws25{word-spacing:4.626663px;}
.ws16{word-spacing:5.110849px;}
.ws6{word-spacing:5.164647px;}
.wsb{word-spacing:5.218446px;}
.ws29{word-spacing:5.433639px;}
.ws3c{word-spacing:5.595035px;}
.ws34{word-spacing:5.648833px;}
.ws22{word-spacing:6.186817px;}
.ws5{word-spacing:6.294414px;}
.ws26{word-spacing:6.348212px;}
.ws35{word-spacing:6.509608px;}
.ws27{word-spacing:6.563406px;}
.ws4{word-spacing:6.617205px;}
.ws1f{word-spacing:6.939995px;}
.ws3a{word-spacing:7.155189px;}
.ws31{word-spacing:7.800770px;}
.ws2f{word-spacing:8.069762px;}
.ws3b{word-spacing:8.284955px;}
.wsa{word-spacing:8.769141px;}
.ws36{word-spacing:9.576117px;}
.ws49{word-spacing:10.436892px;}
.ws44{word-spacing:11.511564px;}
.ws42{word-spacing:11.512860px;}
.ws4a{word-spacing:11.570997px;}
.ws45{word-spacing:12.422997px;}
.ws2c{word-spacing:13.933788px;}
.ws3{word-spacing:47.646378px;}
._4{margin-left:-6.635093px;}
._5{margin-left:-4.184293px;}
._1{margin-left:-2.123641px;}
._0{margin-left:-1.044000px;}
._15{width:1.858387px;}
._3{width:3.321326px;}
._2{width:4.988359px;}
._b{width:15.655338px;}
._9{width:17.444204px;}
._e{width:19.285334px;}
._c{width:20.468899px;}
._14{width:21.573163px;}
._7{width:23.228930px;}
._11{width:24.424478px;}
._f{width:25.500447px;}
._8{width:26.899205px;}
._d{width:28.351762px;}
._a{width:30.019513px;}
._13{width:33.408813px;}
._6{width:36.393228px;}
._10{width:40.964557px;}
._12{width:45.298262px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865607px;}
.fs0{font-size:36.000000px;}
.fs4{font-size:41.842808px;}
.fs9{font-size:43.038609px;}
.fs8{font-size:47.820610px;}
.fs6{font-size:53.798411px;}
.fs3{font-size:59.775612px;}
.fs5{font-size:65.992213px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:79.191016px;}
.y0{bottom:0.000000px;}
.y3{bottom:54.189000px;}
.y2{bottom:66.249000px;}
.y1{bottom:78.219000px;}
.y3f{bottom:112.219522px;}
.y62{bottom:114.199523px;}
.y3e{bottom:126.924025px;}
.y61{bottom:129.142526px;}
.y3d{bottom:141.628528px;}
.y60{bottom:144.087029px;}
.y3c{bottom:156.334531px;}
.y5f{bottom:159.031532px;}
.y3b{bottom:171.039034px;}
.y5e{bottom:182.941537px;}
.y3a{bottom:192.990039px;}
.y5d{bottom:197.884540px;}
.y39{bottom:207.934542px;}
.y5c{bottom:212.829043px;}
.y38{bottom:222.879045px;}
.y5b{bottom:227.773546px;}
.y37{bottom:237.822048px;}
.y36{bottom:252.766551px;}
.y5a{bottom:257.736052px;}
.y35{bottom:276.676555px;}
.y34{bottom:291.621058px;}
.y59{bottom:293.676059px;}
.y33{bottom:306.565561px;}
.y58{bottom:308.620562px;}
.y32{bottom:321.508564px;}
.y57{bottom:323.563565px;}
.y31{bottom:336.453067px;}
.y56{bottom:338.508068px;}
.y30{bottom:351.397570px;}
.y55{bottom:353.451071px;}
.y2f{bottom:366.340573px;}
.y54{bottom:368.395574px;}
.y2e{bottom:381.285076px;}
.y53{bottom:383.340077px;}
.y2d{bottom:396.228079px;}
.y52{bottom:398.283080px;}
.y2c{bottom:411.172582px;}
.y51{bottom:413.227583px;}
.y2b{bottom:435.082587px;}
.y50{bottom:437.137587px;}
.y2a{bottom:450.027090px;}
.y4f{bottom:452.082090px;}
.y29{bottom:464.971593px;}
.y4e{bottom:467.026593px;}
.y28{bottom:479.914596px;}
.y4d{bottom:481.969596px;}
.y27{bottom:494.859099px;}
.y4c{bottom:496.914099px;}
.y26{bottom:509.803602px;}
.y4b{bottom:511.858602px;}
.y25{bottom:524.746605px;}
.y4a{bottom:535.768607px;}
.y24{bottom:539.691108px;}
.y49{bottom:550.711610px;}
.y23{bottom:554.634111px;}
.y48{bottom:565.656113px;}
.y22{bottom:569.578614px;}
.y47{bottom:580.600616px;}
.y21{bottom:584.523117px;}
.y46{bottom:595.543619px;}
.y20{bottom:599.466120px;}
.y1f{bottom:614.410623px;}
.y45{bottom:619.455124px;}
.y1e{bottom:629.355126px;}
.y44{bottom:634.398127px;}
.y1d{bottom:644.298129px;}
.y43{bottom:649.342630px;}
.y1c{bottom:659.242632px;}
.y1b{bottom:674.187135px;}
.y1a{bottom:689.130138px;}
.y42{bottom:698.658140px;}
.y19{bottom:704.074641px;}
.y41{bottom:713.601143px;}
.y18{bottom:719.019144px;}
.y40{bottom:728.545646px;}
.y17{bottom:742.929149px;}
.y16{bottom:757.872152px;}
.y15{bottom:772.816655px;}
.y14{bottom:787.761158px;}
.y13{bottom:811.671162px;}
.y12{bottom:826.615665px;}
.y11{bottom:841.558668px;}
.y10{bottom:856.503171px;}
.yf{bottom:871.446174px;}
.ye{bottom:886.390677px;}
.yd{bottom:901.335180px;}
.yc{bottom:931.297686px;}
.y9{bottom:978.621196px;}
.yb{bottom:978.756196px;}
.y8{bottom:996.553699px;}
.ya{bottom:996.688699px;}
.y7{bottom:1014.621203px;}
.y6{bottom:1032.553707px;}
.y5{bottom:1065.430713px;}
.y4{bottom:1092.330218px;}
.h9{height:25.249387px;}
.h1{height:26.525391px;}
.h8{height:36.798113px;}
.ha{height:37.174702px;}
.h6{height:40.886519px;}
.h4{height:41.186519px;}
.h7{height:48.900230px;}
.h5{height:51.153341px;}
.h2{height:53.050781px;}
.h3{height:58.680543px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:80.613000px;}
.x18{left:94.881019px;}
.x17{left:96.043519px;}
.x2{left:125.046025px;}
.xa{left:158.731532px;}
.x11{left:188.814038px;}
.x4{left:195.180039px;}
.xb{left:206.163041px;}
.x7{left:222.453044px;}
.xc{left:247.648550px;}
.x8{left:266.850053px;}
.xd{left:274.218055px;}
.x5{left:295.228559px;}
.x6{left:310.171562px;}
.xe{left:314.491563px;}
.xf{left:339.373568px;}
.x9{left:365.241073px;}
.x10{left:382.545077px;}
.x3{left:406.536081px;}
.x19{left:476.932595px;}
.x16{left:487.620098px;}
.x1a{left:492.213098px;}
.x13{left:573.852115px;}
.x15{left:577.245115px;}
.x12{left:581.325116px;}
.x14{left:644.821629px;}
@media print{
.v2{vertical-align:-15.002670pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285337pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.357450pt;}
.ls4{letter-spacing:2.371906pt;}
.ls6{letter-spacing:2.390716pt;}
.ls7{letter-spacing:2.392158pt;}
.ls3{letter-spacing:2.392969pt;}
.ls1{letter-spacing:2.652053pt;}
.ls0{letter-spacing:2.655528pt;}
.ls2{letter-spacing:2.657144pt;}
.ws1{word-spacing:-19.568980pt;}
.ws40{word-spacing:-16.307409pt;}
.ws2{word-spacing:-13.283469pt;}
.ws48{word-spacing:-11.955202pt;}
.ws41{word-spacing:-11.936041pt;}
.ws43{word-spacing:-9.564135pt;}
.ws2a{word-spacing:-2.582324pt;}
.ws11{word-spacing:-2.104116pt;}
.ws2d{word-spacing:-1.912832pt;}
.ws1b{word-spacing:-1.578087pt;}
.ws10{word-spacing:-1.195520pt;}
.ws12{word-spacing:-0.956416pt;}
.ws4b{word-spacing:-0.908595pt;}
.ws38{word-spacing:-0.573850pt;}
.ws8{word-spacing:-0.526029pt;}
.ws28{word-spacing:-0.239104pt;}
.ws13{word-spacing:-0.191283pt;}
.ws2e{word-spacing:-0.003695pt;}
.ws0{word-spacing:0.000000pt;}
.ws47{word-spacing:0.143462pt;}
.ws20{word-spacing:0.286925pt;}
.ws3e{word-spacing:0.382566pt;}
.ws21{word-spacing:0.430387pt;}
.ws1d{word-spacing:0.478208pt;}
.ws18{word-spacing:0.717312pt;}
.ws46{word-spacing:0.812954pt;}
.ws33{word-spacing:1.052058pt;}
.ws7{word-spacing:1.243341pt;}
.wsc{word-spacing:1.338983pt;}
.ws4c{word-spacing:1.625908pt;}
.ws9{word-spacing:1.721549pt;}
.wsf{word-spacing:1.769370pt;}
.ws39{word-spacing:1.817191pt;}
.ws3f{word-spacing:1.912832pt;}
.ws30{word-spacing:2.008474pt;}
.ws1c{word-spacing:2.343220pt;}
.ws32{word-spacing:2.486682pt;}
.ws2b{word-spacing:2.550433pt;}
.ws17{word-spacing:2.582324pt;}
.ws23{word-spacing:2.630145pt;}
.wsd{word-spacing:2.821428pt;}
.ws1e{word-spacing:2.869249pt;}
.ws19{word-spacing:2.917069pt;}
.ws24{word-spacing:2.964890pt;}
.ws14{word-spacing:3.012711pt;}
.ws37{word-spacing:3.299636pt;}
.ws1a{word-spacing:3.443098pt;}
.ws3d{word-spacing:3.777844pt;}
.wse{word-spacing:3.969127pt;}
.ws15{word-spacing:4.016948pt;}
.ws25{word-spacing:4.112590pt;}
.ws16{word-spacing:4.542977pt;}
.ws6{word-spacing:4.590798pt;}
.wsb{word-spacing:4.638619pt;}
.ws29{word-spacing:4.829902pt;}
.ws3c{word-spacing:4.973364pt;}
.ws34{word-spacing:5.021185pt;}
.ws22{word-spacing:5.499393pt;}
.ws5{word-spacing:5.595035pt;}
.ws26{word-spacing:5.642856pt;}
.ws35{word-spacing:5.786318pt;}
.ws27{word-spacing:5.834139pt;}
.ws4{word-spacing:5.881960pt;}
.ws1f{word-spacing:6.168884pt;}
.ws3a{word-spacing:6.360168pt;}
.ws31{word-spacing:6.934017pt;}
.ws2f{word-spacing:7.173121pt;}
.ws3b{word-spacing:7.364405pt;}
.wsa{word-spacing:7.794792pt;}
.ws36{word-spacing:8.512104pt;}
.ws49{word-spacing:9.277237pt;}
.ws44{word-spacing:10.232501pt;}
.ws42{word-spacing:10.233653pt;}
.ws4a{word-spacing:10.285331pt;}
.ws45{word-spacing:11.042664pt;}
.ws2c{word-spacing:12.385590pt;}
.ws3{word-spacing:42.352336pt;}
._4{margin-left:-5.897860pt;}
._5{margin-left:-3.719371pt;}
._1{margin-left:-1.887681pt;}
._0{margin-left:-0.928000pt;}
._15{width:1.651900pt;}
._3{width:2.952290pt;}
._2{width:4.434097pt;}
._b{width:13.915856pt;}
._9{width:15.505960pt;}
._e{width:17.142519pt;}
._c{width:18.194577pt;}
._14{width:19.176145pt;}
._7{width:20.647938pt;}
._11{width:21.710648pt;}
._f{width:22.667064pt;}
._8{width:23.910405pt;}
._d{width:25.201567pt;}
._a{width:26.684012pt;}
._13{width:29.696723pt;}
._6{width:32.349536pt;}
._10{width:36.412940pt;}
._12{width:40.265122pt;}
.fs7{font-size:31.880540pt;}
.fs0{font-size:32.000000pt;}
.fs4{font-size:37.193607pt;}
.fs9{font-size:38.256541pt;}
.fs8{font-size:42.507209pt;}
.fs6{font-size:47.820810pt;}
.fs3{font-size:53.133877pt;}
.fs5{font-size:58.659745pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:70.392014pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:48.168000pt;}
.y2{bottom:58.888000pt;}
.y1{bottom:69.528000pt;}
.y3f{bottom:99.750687pt;}
.y62{bottom:101.510687pt;}
.y3e{bottom:112.821356pt;}
.y61{bottom:114.793356pt;}
.y3d{bottom:125.892025pt;}
.y60{bottom:128.077359pt;}
.y3c{bottom:138.964028pt;}
.y5f{bottom:141.361362pt;}
.y3b{bottom:152.034697pt;}
.y5e{bottom:162.614699pt;}
.y3a{bottom:171.546701pt;}
.y5d{bottom:175.897369pt;}
.y39{bottom:184.830704pt;}
.y5c{bottom:189.181371pt;}
.y38{bottom:198.114706pt;}
.y5b{bottom:202.465374pt;}
.y37{bottom:211.397376pt;}
.y36{bottom:224.681378pt;}
.y5a{bottom:229.098712pt;}
.y35{bottom:245.934716pt;}
.y34{bottom:259.218719pt;}
.y59{bottom:261.045386pt;}
.y33{bottom:272.502721pt;}
.y58{bottom:274.329388pt;}
.y32{bottom:285.785390pt;}
.y57{bottom:287.612058pt;}
.y31{bottom:299.069393pt;}
.y56{bottom:300.896060pt;}
.y30{bottom:312.353396pt;}
.y55{bottom:314.178730pt;}
.y2f{bottom:325.636065pt;}
.y54{bottom:327.462732pt;}
.y2e{bottom:338.920068pt;}
.y53{bottom:340.746735pt;}
.y2d{bottom:352.202737pt;}
.y52{bottom:354.029404pt;}
.y2c{bottom:365.486740pt;}
.y51{bottom:367.313407pt;}
.y2b{bottom:386.740077pt;}
.y50{bottom:388.566744pt;}
.y2a{bottom:400.024080pt;}
.y4f{bottom:401.850747pt;}
.y29{bottom:413.308083pt;}
.y4e{bottom:415.134750pt;}
.y28{bottom:426.590752pt;}
.y4d{bottom:428.417419pt;}
.y27{bottom:439.874755pt;}
.y4c{bottom:441.701422pt;}
.y26{bottom:453.158757pt;}
.y4b{bottom:454.985424pt;}
.y25{bottom:466.441427pt;}
.y4a{bottom:476.238762pt;}
.y24{bottom:479.725429pt;}
.y49{bottom:489.521431pt;}
.y23{bottom:493.008099pt;}
.y48{bottom:502.805434pt;}
.y22{bottom:506.292101pt;}
.y47{bottom:516.089437pt;}
.y21{bottom:519.576104pt;}
.y46{bottom:529.372106pt;}
.y20{bottom:532.858773pt;}
.y1f{bottom:546.142776pt;}
.y45{bottom:550.626777pt;}
.y1e{bottom:559.426779pt;}
.y44{bottom:563.909446pt;}
.y1d{bottom:572.709448pt;}
.y43{bottom:577.193449pt;}
.y1c{bottom:585.993451pt;}
.y1b{bottom:599.277453pt;}
.y1a{bottom:612.560123pt;}
.y42{bottom:621.029458pt;}
.y19{bottom:625.844125pt;}
.y41{bottom:634.312127pt;}
.y18{bottom:639.128128pt;}
.y40{bottom:647.596130pt;}
.y17{bottom:660.381465pt;}
.y16{bottom:673.664135pt;}
.y15{bottom:686.948137pt;}
.y14{bottom:700.232140pt;}
.y13{bottom:721.485478pt;}
.y12{bottom:734.769480pt;}
.y11{bottom:748.052150pt;}
.y10{bottom:761.336152pt;}
.yf{bottom:774.618822pt;}
.ye{bottom:787.902824pt;}
.yd{bottom:801.186827pt;}
.yc{bottom:827.820166pt;}
.y9{bottom:869.885507pt;}
.yb{bottom:870.005507pt;}
.y8{bottom:885.825510pt;}
.ya{bottom:885.945511pt;}
.y7{bottom:901.885514pt;}
.y6{bottom:917.825517pt;}
.y5{bottom:947.049523pt;}
.y4{bottom:970.960194pt;}
.h9{height:22.443900pt;}
.h1{height:23.578125pt;}
.h8{height:32.709434pt;}
.ha{height:33.044179pt;}
.h6{height:36.343572pt;}
.h4{height:36.610239pt;}
.h7{height:43.466871pt;}
.h5{height:45.469637pt;}
.h2{height:47.156250pt;}
.h3{height:52.160482pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.656000pt;}
.x18{left:84.338684pt;}
.x17{left:85.372017pt;}
.x2{left:111.152022pt;}
.xa{left:141.094695pt;}
.x11{left:167.834700pt;}
.x4{left:173.493368pt;}
.xb{left:183.256037pt;}
.x7{left:197.736040pt;}
.xc{left:220.132044pt;}
.x8{left:237.200047pt;}
.xd{left:243.749382pt;}
.x5{left:262.425386pt;}
.x6{left:275.708055pt;}
.xe{left:279.548056pt;}
.xf{left:301.665394pt;}
.x9{left:324.658732pt;}
.x10{left:340.040068pt;}
.x3{left:361.365406pt;}
.x19{left:423.940085pt;}
.x16{left:433.440087pt;}
.x1a{left:437.522754pt;}
.x13{left:510.090769pt;}
.x15{left:513.106769pt;}
.x12{left:516.733437pt;}
.x14{left:573.174781pt;}
}




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