
    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_d69269c11a59654de9ac7497.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.712000;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_8bffa83739ebdde7a1a3a2a3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_797df012f3a4120dfdfae276.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7cf3a2409a3e4090bea33644.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eae57bf23b00992a67035e1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_2a16d6efe35c970546816875.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.635000;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_926b8d29a735f9d460582a6f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d84376ecbfa5a51bd8fce14b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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_7d9cd255714062a6d72fa20b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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_6306247a663c7e6d2cd96e15.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909000;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:ffb;src:url('chunks/assets/font_ca69475479784817ca809505.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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:ffc;src:url('chunks/assets/font_e8b129311afdf48cc92321fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.636000;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:ffd;src:url('chunks/assets/font_7b055dcac98653682045e6ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.846000;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:ffe;src:url('chunks/assets/font_5956f4261622665dbd82b35c.woff2')format("woff");}.ffe{font-family:ffe;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);}
.v6{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.980000px;}
.v5{vertical-align:6.972000px;}
.v1{vertical-align:15.108000px;}
.v3{vertical-align:17.730000px;}
.v2{vertical-align:26.034000px;}
.v4{vertical-align:43.764000px;}
.ls26{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000472px;}
.ls4{letter-spacing:0.000760px;}
.ls0{letter-spacing:0.001288px;}
.ls7{letter-spacing:0.001809px;}
.ls13{letter-spacing:0.002759px;}
.ls17{letter-spacing:0.004800px;}
.ls23{letter-spacing:0.004896px;}
.ls5{letter-spacing:2.986059px;}
.lsb{letter-spacing:2.992059px;}
.ls6{letter-spacing:5.641227px;}
.ls16{letter-spacing:11.953114px;}
.ls22{letter-spacing:19.922338px;}
.ls15{letter-spacing:19.922809px;}
.ls14{letter-spacing:19.927288px;}
.ls8{letter-spacing:20.870759px;}
.ls9{letter-spacing:20.870809px;}
.ls1e{letter-spacing:24.482809px;}
.ls20{letter-spacing:24.487114px;}
.ls19{letter-spacing:24.488759px;}
.ls1a{letter-spacing:24.488809px;}
.ls1d{letter-spacing:24.492760px;}
.ls18{letter-spacing:25.328915px;}
.ls21{letter-spacing:26.093727px;}
.ls1f{letter-spacing:26.099299px;}
.ls25{letter-spacing:26.564338px;}
.ls1{letter-spacing:26.819299px;}
.ls3{letter-spacing:26.954915px;}
.ls1b{letter-spacing:29.085543px;}
.ls1c{letter-spacing:29.086059px;}
.ls24{letter-spacing:29.438338px;}
.ls11{letter-spacing:29.915299px;}
.ls2{letter-spacing:32.461227px;}
.lsf{letter-spacing:33.125299px;}
.ls12{letter-spacing:35.551227px;}
.lsc{letter-spacing:36.112059px;}
.lsd{letter-spacing:36.456760px;}
.ls10{letter-spacing:36.457114px;}
.lse{letter-spacing:36.458809px;}
.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;}
}
.ws9{word-spacing:-71.731200px;}
.ws15{word-spacing:-47.270861px;}
.ws13{word-spacing:-45.664082px;}
.wsb{word-spacing:-35.291750px;}
.wsa{word-spacing:-33.684972px;}
.ws6{word-spacing:-19.510886px;}
.ws3{word-spacing:-16.605662px;}
.ws1c{word-spacing:-3.873485px;}
.ws1a{word-spacing:-2.295398px;}
.wse{word-spacing:-0.071731px;}
.ws1f{word-spacing:-0.059776px;}
.ws26{word-spacing:0.000000px;}
.ws11{word-spacing:2.797517px;}
.ws2{word-spacing:3.299613px;}
.ws23{word-spacing:3.359389px;}
.ws1b{word-spacing:3.873485px;}
.ws7{word-spacing:4.447334px;}
.ws19{word-spacing:4.734259px;}
.ws14{word-spacing:6.527539px;}
.ws16{word-spacing:6.556777px;}
.ws17{word-spacing:6.573972px;}
.ws12{word-spacing:6.599270px;}
.ws18{word-spacing:6.742733px;}
.ws4{word-spacing:7.295560px;}
.ws5{word-spacing:7.316582px;}
.ws10{word-spacing:10.401024px;}
.ws1d{word-spacing:13.277215px;}
.wsc{word-spacing:13.597119px;}
.wsd{word-spacing:13.605972px;}
.ws8{word-spacing:13.609263px;}
.wsf{word-spacing:13.628928px;}
.ws25{word-spacing:15.541656px;}
.ws20{word-spacing:21.339889px;}
.ws1e{word-spacing:22.535401px;}
.ws22{word-spacing:28.333634px;}
.ws24{word-spacing:28.453186px;}
.ws21{word-spacing:30.545332px;}
.ws1{word-spacing:34.861363px;}
.ws0{word-spacing:34.933094px;}
._1{margin-left:-6.671002px;}
._d{margin-left:-5.320028px;}
._9{margin-left:-3.966534px;}
._0{margin-left:-2.295398px;}
._a{margin-left:-1.255288px;}
._5{width:2.291023px;}
._8{width:3.873485px;}
._6{width:5.451571px;}
._2{width:7.551525px;}
._c{width:17.676551px;}
._b{width:30.007351px;}
._4{width:31.489997px;}
._7{width:33.785395px;}
._3{width:60.363621px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y1e{bottom:124.816500px;}
.y1d{bottom:407.922000px;}
.y1c{bottom:425.854500px;}
.y1b{bottom:443.787000px;}
.y1a{bottom:474.273000px;}
.y19{bottom:492.205500px;}
.y18{bottom:510.139500px;}
.y17{bottom:543.762000px;}
.y16{bottom:561.696000px;}
.y15{bottom:579.628500px;}
.y14{bottom:608.022000px;}
.y13{bottom:658.233000px;}
.y12{bottom:679.155000px;}
.y11{bottom:700.077000px;}
.y10{bottom:720.997500px;}
.yf{bottom:741.919500px;}
.ye{bottom:762.841500px;}
.yd{bottom:779.329500px;}
.yc{bottom:783.762000px;}
.yb{bottom:800.251500px;}
.ya{bottom:804.684000px;}
.y9{bottom:825.606000px;}
.y8{bottom:842.094000px;}
.y7{bottom:846.528000px;}
.y6{bottom:863.016000px;}
.y5{bottom:867.448500px;}
.y4{bottom:888.370500px;}
.y3{bottom:957.486000px;}
.y2{bottom:1003.522500px;}
.y1{bottom:1024.443000px;}
.hc{height:35.829734px;}
.hb{height:42.799330px;}
.h5{height:44.831700px;}
.ha{height:47.779330px;}
.h2{height:50.211840px;}
.h3{height:51.216077px;}
.h9{height:51.359539px;}
.h6{height:53.798400px;}
.h4{height:59.939700px;}
.h7{height:71.528400px;}
.h8{height:71.534400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:177.465000px;}
.xd{left:184.938000px;}
.x6{left:195.397500px;}
.x1{left:206.224500px;}
.xe{left:208.183500px;}
.x2{left:226.230000px;}
.x9{left:239.871000px;}
.x3{left:255.765000px;}
.x8{left:353.088000px;}
.xc{left:394.173000px;}
.xb{left:406.054500px;}
.xf{left:443.001000px;}
.x4{left:505.350000px;}
.x5{left:588.165000px;}
.xa{left:606.675000px;}
@media print{
.v6{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.426667pt;}
.v5{vertical-align:6.197333pt;}
.v1{vertical-align:13.429333pt;}
.v3{vertical-align:15.760000pt;}
.v2{vertical-align:23.141333pt;}
.v4{vertical-align:38.901333pt;}
.ls26{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000420pt;}
.ls4{letter-spacing:0.000676pt;}
.ls0{letter-spacing:0.001145pt;}
.ls7{letter-spacing:0.001608pt;}
.ls13{letter-spacing:0.002452pt;}
.ls17{letter-spacing:0.004267pt;}
.ls23{letter-spacing:0.004352pt;}
.ls5{letter-spacing:2.654275pt;}
.lsb{letter-spacing:2.659608pt;}
.ls6{letter-spacing:5.014424pt;}
.ls16{letter-spacing:10.624990pt;}
.ls22{letter-spacing:17.708745pt;}
.ls15{letter-spacing:17.709164pt;}
.ls14{letter-spacing:17.713145pt;}
.ls8{letter-spacing:18.551786pt;}
.ls9{letter-spacing:18.551830pt;}
.ls1e{letter-spacing:21.762497pt;}
.ls20{letter-spacing:21.766323pt;}
.ls19{letter-spacing:21.767786pt;}
.ls1a{letter-spacing:21.767830pt;}
.ls1d{letter-spacing:21.771343pt;}
.ls18{letter-spacing:22.514591pt;}
.ls21{letter-spacing:23.194424pt;}
.ls1f{letter-spacing:23.199377pt;}
.ls25{letter-spacing:23.612745pt;}
.ls1{letter-spacing:23.839377pt;}
.ls3{letter-spacing:23.959925pt;}
.ls1b{letter-spacing:25.853816pt;}
.ls1c{letter-spacing:25.854275pt;}
.ls24{letter-spacing:26.167412pt;}
.ls11{letter-spacing:26.591377pt;}
.ls2{letter-spacing:28.854424pt;}
.lsf{letter-spacing:29.444710pt;}
.ls12{letter-spacing:31.601091pt;}
.lsc{letter-spacing:32.099608pt;}
.lsd{letter-spacing:32.406009pt;}
.ls10{letter-spacing:32.406323pt;}
.lse{letter-spacing:32.407830pt;}
.ws9{word-spacing:-63.761067pt;}
.ws15{word-spacing:-42.018543pt;}
.ws13{word-spacing:-40.590295pt;}
.wsb{word-spacing:-31.370445pt;}
.wsa{word-spacing:-29.942197pt;}
.ws6{word-spacing:-17.343010pt;}
.ws3{word-spacing:-14.760588pt;}
.ws1c{word-spacing:-3.443098pt;}
.ws1a{word-spacing:-2.040354pt;}
.wse{word-spacing:-0.063761pt;}
.ws1f{word-spacing:-0.053134pt;}
.ws26{word-spacing:0.000000pt;}
.ws11{word-spacing:2.486682pt;}
.ws2{word-spacing:2.932989pt;}
.ws23{word-spacing:2.986123pt;}
.ws1b{word-spacing:3.443098pt;}
.ws7{word-spacing:3.953186pt;}
.ws19{word-spacing:4.208230pt;}
.ws14{word-spacing:5.802257pt;}
.ws16{word-spacing:5.828246pt;}
.ws17{word-spacing:5.843531pt;}
.ws12{word-spacing:5.866018pt;}
.ws18{word-spacing:5.993540pt;}
.ws4{word-spacing:6.484943pt;}
.ws5{word-spacing:6.503629pt;}
.ws10{word-spacing:9.245355pt;}
.ws1d{word-spacing:11.801969pt;}
.wsc{word-spacing:12.086328pt;}
.wsd{word-spacing:12.094198pt;}
.ws8{word-spacing:12.097123pt;}
.wsf{word-spacing:12.114603pt;}
.ws25{word-spacing:13.814805pt;}
.ws20{word-spacing:18.968790pt;}
.ws1e{word-spacing:20.031468pt;}
.ws22{word-spacing:25.185453pt;}
.ws24{word-spacing:25.291721pt;}
.ws21{word-spacing:27.151406pt;}
.ws1{word-spacing:30.987878pt;}
.ws0{word-spacing:31.051639pt;}
._1{margin-left:-5.929779pt;}
._d{margin-left:-4.728914pt;}
._9{margin-left:-3.525808pt;}
._0{margin-left:-2.040354pt;}
._a{margin-left:-1.115811pt;}
._5{width:2.036465pt;}
._8{width:3.443098pt;}
._6{width:4.845841pt;}
._2{width:6.712467pt;}
._c{width:15.712490pt;}
._b{width:26.673201pt;}
._4{width:27.991108pt;}
._7{width:30.031462pt;}
._3{width:53.656552pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:110.948000pt;}
.y1d{bottom:362.597333pt;}
.y1c{bottom:378.537333pt;}
.y1b{bottom:394.477333pt;}
.y1a{bottom:421.576000pt;}
.y19{bottom:437.516000pt;}
.y18{bottom:453.457333pt;}
.y17{bottom:483.344000pt;}
.y16{bottom:499.285333pt;}
.y15{bottom:515.225333pt;}
.y14{bottom:540.464000pt;}
.y13{bottom:585.096000pt;}
.y12{bottom:603.693333pt;}
.y11{bottom:622.290667pt;}
.y10{bottom:640.886667pt;}
.yf{bottom:659.484000pt;}
.ye{bottom:678.081333pt;}
.yd{bottom:692.737333pt;}
.yc{bottom:696.677333pt;}
.yb{bottom:711.334667pt;}
.ya{bottom:715.274667pt;}
.y9{bottom:733.872000pt;}
.y8{bottom:748.528000pt;}
.y7{bottom:752.469333pt;}
.y6{bottom:767.125333pt;}
.y5{bottom:771.065333pt;}
.y4{bottom:789.662667pt;}
.y3{bottom:851.098667pt;}
.y2{bottom:892.020000pt;}
.y1{bottom:910.616000pt;}
.hc{height:31.848653pt;}
.hb{height:38.043849pt;}
.h5{height:39.850400pt;}
.ha{height:42.470515pt;}
.h2{height:44.632747pt;}
.h3{height:45.525402pt;}
.h9{height:45.652924pt;}
.h6{height:47.820800pt;}
.h4{height:53.279733pt;}
.h7{height:63.580800pt;}
.h8{height:63.586133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:157.746667pt;}
.xd{left:164.389333pt;}
.x6{left:173.686667pt;}
.x1{left:183.310667pt;}
.xe{left:185.052000pt;}
.x2{left:201.093333pt;}
.x9{left:213.218667pt;}
.x3{left:227.346667pt;}
.x8{left:313.856000pt;}
.xc{left:350.376000pt;}
.xb{left:360.937333pt;}
.xf{left:393.778667pt;}
.x4{left:449.200000pt;}
.x5{left:522.813333pt;}
.xa{left:539.266667pt;}
}




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