
    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_b7546b565deaa6ce1d754982.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_3ecf20f654ab909d3442fdde.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_e9ebf3aabece63c8ebcaf5e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.784180;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_f4c77b35a1709b32d2a2a586.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.878418;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:10.817144px;}
.ls3{letter-spacing:26.759766px;}
.ls1{letter-spacing:68.135741px;}
.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;}
}
.ws16{word-spacing:-27.747071px;}
.wsc{word-spacing:-25.497084px;}
.wsa{word-spacing:-25.224609px;}
.ws0{word-spacing:-23.358014px;}
.wsd{word-spacing:-21.703126px;}
.ws13{word-spacing:-14.920899px;}
.ws4{word-spacing:-13.564453px;}
.wsb{word-spacing:-13.349594px;}
.ws15{word-spacing:-12.874216px;}
.ws2d{word-spacing:-12.861498px;}
.ws2f{word-spacing:-12.861488px;}
.ws3b{word-spacing:-12.861418px;}
.ws1f{word-spacing:-12.861398px;}
.ws22{word-spacing:-12.861364px;}
.ws32{word-spacing:-12.861263px;}
.ws1b{word-spacing:-12.860101px;}
.ws18{word-spacing:-12.860094px;}
.ws23{word-spacing:-12.860092px;}
.ws39{word-spacing:-12.859957px;}
.ws14{word-spacing:-12.859230px;}
.ws19{word-spacing:-12.859225px;}
.ws3c{word-spacing:-12.859224px;}
.ws2b{word-spacing:-12.855105px;}
.ws21{word-spacing:-12.855103px;}
.ws2c{word-spacing:-12.855101px;}
.ws17{word-spacing:-12.853308px;}
.ws3d{word-spacing:-12.853111px;}
.ws35{word-spacing:-12.853109px;}
.ws11{word-spacing:-11.678947px;}
.ws41{word-spacing:-11.677780px;}
.ws40{word-spacing:-11.677779px;}
.ws7{word-spacing:-11.677731px;}
.ws8{word-spacing:-11.677045px;}
.wsf{word-spacing:-11.676841px;}
.ws10{word-spacing:-11.676839px;}
.ws42{word-spacing:-11.676610px;}
.ws9{word-spacing:-11.676608px;}
.wse{word-spacing:-11.671302px;}
.ws25{word-spacing:-9.361893px;}
.ws24{word-spacing:-9.350555px;}
.ws1a{word-spacing:-8.374374px;}
.ws34{word-spacing:-8.366361px;}
.ws3a{word-spacing:-8.361532px;}
.ws30{word-spacing:-8.361409px;}
.ws2a{word-spacing:-8.361398px;}
.ws1d{word-spacing:-8.360256px;}
.ws1e{word-spacing:-8.360092px;}
.ws2e{word-spacing:-8.359117px;}
.ws29{word-spacing:-8.355097px;}
.ws20{word-spacing:-8.355070px;}
.ws31{word-spacing:-8.347527px;}
.ws28{word-spacing:-3.861499px;}
.ws37{word-spacing:-3.855070px;}
.ws3e{word-spacing:-0.039002px;}
.ws36{word-spacing:-0.033810px;}
.ws1{word-spacing:-0.033808px;}
.ws27{word-spacing:-0.033805px;}
.ws3f{word-spacing:-0.025741px;}
.ws3{word-spacing:-0.017805px;}
.ws5{word-spacing:-0.017802px;}
.ws2{word-spacing:-0.017030px;}
.ws6{word-spacing:-0.016799px;}
.ws26{word-spacing:0.000000px;}
.ws38{word-spacing:0.651397px;}
.ws33{word-spacing:18.638602px;}
.ws1c{word-spacing:60.023757px;}
.ws12{word-spacing:66.011880px;}
._3{margin-left:-14.372512px;}
._2{margin-left:-9.456455px;}
._11{margin-left:-7.726597px;}
._9{margin-left:-6.016972px;}
._4{margin-left:-4.865462px;}
._1{margin-left:-3.030802px;}
._18{margin-left:-2.026727px;}
._0{margin-left:-1.015219px;}
._5{width:1.741578px;}
._7{width:5.340730px;}
._6{width:8.203278px;}
._12{width:14.878532px;}
._c{width:15.895077px;}
._a{width:18.390193px;}
._8{width:19.448210px;}
._e{width:21.539204px;}
._19{width:22.543293px;}
._b{width:23.660768px;}
._10{width:27.535329px;}
._13{width:29.916685px;}
._17{width:47.663150px;}
._14{width:50.373512px;}
._16{width:51.959865px;}
._15{width:56.787328px;}
._f{width:74.920897px;}
._d{width:1654.037204px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,123,192);}
.fc1{color:rgb(79,129,189);}
.fc5{color:rgb(34,42,53);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(126,126,126);}
.fs5{font-size:48.000002px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs3{font-size:96.000003px;}
.fs0{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y10{bottom:2.860840px;}
.ye{bottom:3.178711px;}
.yc{bottom:3.750000px;}
.ya{bottom:6.496667px;}
.y59{bottom:11.625000px;}
.y55{bottom:12.749991px;}
.y4{bottom:12.749999px;}
.y7{bottom:12.750003px;}
.y9{bottom:27.553711px;}
.y6{bottom:31.060547px;}
.y54{bottom:31.060551px;}
.y57{bottom:34.125001px;}
.y53{bottom:49.371096px;}
.y5d{bottom:64.724858px;}
.y2c{bottom:64.725218px;}
.y52{bottom:67.681640px;}
.y8{bottom:154.285497px;}
.yb{bottom:167.687443px;}
.y5{bottom:200.524841px;}
.y3{bottom:209.680019px;}
.y2b{bottom:218.450678px;}
.y2a{bottom:241.613528px;}
.y29{bottom:273.776363px;}
.y4b{bottom:290.781008px;}
.y28{bottom:296.939213px;}
.y4a{bottom:322.943843px;}
.y27{bottom:329.102049px;}
.y49{bottom:355.106693px;}
.y48{bottom:378.269528px;}
.y26{bottom:379.264898px;}
.y47{bottom:401.432378px;}
.y25{bottom:402.427733px;}
.y46{bottom:424.595213px;}
.y24{bottom:425.590583px;}
.y45{bottom:447.758063px;}
.y23{bottom:457.753419px;}
.y44{bottom:479.920899px;}
.y22{bottom:507.916253px;}
.y43{bottom:530.083733px;}
.y21{bottom:531.079103px;}
.y42{bottom:553.246583px;}
.y20{bottom:554.241938px;}
.y1f{bottom:577.404788px;}
.y41{bottom:585.409419px;}
.y1e{bottom:609.567623px;}
.y2{bottom:627.808047px;}
.y1d{bottom:632.730473px;}
.y40{bottom:635.572268px;}
.y3f{bottom:658.735103px;}
.y1c{bottom:664.893308px;}
.y3e{bottom:681.897953px;}
.y1b{bottom:688.056158px;}
.y5b{bottom:698.176753px;}
.y3d{bottom:705.060788px;}
.y1a{bottom:711.218993px;}
.y5a{bottom:719.551754px;}
.y5c{bottom:727.051753px;}
.y3c{bottom:728.223638px;}
.y19{bottom:740.360589px;}
.y3b{bottom:760.386473px;}
.y51{bottom:778.362308px;}
.y3a{bottom:783.549323px;}
.y56{bottom:784.453123px;}
.y50{bottom:805.828123px;}
.y39{bottom:806.712158px;}
.y58{bottom:806.953123px;}
.y1{bottom:817.812882px;}
.y38{bottom:829.874993px;}
.y18{bottom:837.015387px;}
.y37{bottom:853.037843px;}
.y17{bottom:862.572507px;}
.y4f{bottom:870.729490px;}
.y36{bottom:876.200678px;}
.y4e{bottom:879.884759px;}
.y16{bottom:888.129642px;}
.y35{bottom:899.363528px;}
.y15{bottom:913.686762px;}
.y34{bottom:922.526363px;}
.y4d{bottom:926.475584px;}
.y14{bottom:939.243897px;}
.y33{bottom:954.689213px;}
.y13{bottom:964.801017px;}
.y32{bottom:977.852048px;}
.y12{bottom:990.358153px;}
.y31{bottom:1001.014892px;}
.y4c{bottom:1009.198975px;}
.y30{bottom:1024.177735px;}
.y11{bottom:1049.060393px;}
.y2f{bottom:1056.340576px;}
.y2e{bottom:1103.256225px;}
.yf{bottom:1103.256318px;}
.y2d{bottom:1138.393799px;}
.yd{bottom:1138.393891px;}
.h9{height:15.523682px;}
.h7{height:17.248535px;}
.h6{height:18.310547px;}
.h12{height:21.310547px;}
.h11{height:34.060546px;}
.h2{height:36.310546px;}
.ha{height:38.812500px;}
.he{height:39.585939px;}
.h8{height:43.710936px;}
.h5{height:45.114258px;}
.h3{height:49.482421px;}
.hc{height:54.430665px;}
.h4{height:54.621094px;}
.h10{height:79.060546px;}
.hb{height:79.171877px;}
.hf{height:91.242188px;}
.h1{height:98.964841px;}
.hd{height:105.899775px;}
.h13{height:105.900150px;}
.h0{height:1263.000000px;}
.w8{width:61.874988px;}
.wc{width:104.625047px;}
.wa{width:115.875000px;}
.w3{width:153.000000px;}
.w4{width:156.375047px;}
.wb{width:158.625000px;}
.w2{width:189.000000px;}
.w1{width:198.000000px;}
.w9{width:264.374970px;}
.w5{width:509.625045px;}
.w7{width:709.875045px;}
.w6{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xf{left:8.702210px;}
.x1c{left:11.116336px;}
.xc{left:13.103522px;}
.x27{left:14.695209px;}
.x26{left:15.750000px;}
.x28{left:18.373020px;}
.x21{left:19.622406px;}
.x24{left:21.296868px;}
.x25{left:22.321506px;}
.x6{left:26.200333px;}
.xb{left:30.892868px;}
.x4{left:36.593957px;}
.x20{left:38.577479px;}
.x10{left:41.435520px;}
.x9{left:45.001124px;}
.xe{left:48.445209px;}
.x7{left:60.171630px;}
.xd{left:71.421733px;}
.x1e{left:97.763678px;}
.x1a{left:101.850003px;}
.x14{left:106.350003px;}
.x3{left:107.475003px;}
.x12{left:114.787715px;}
.x19{left:133.350003px;}
.x17{left:143.475003px;}
.x15{left:160.350003px;}
.x1d{left:164.850014px;}
.x1{left:167.788893px;}
.x18{left:170.475003px;}
.x16{left:187.350003px;}
.x13{left:195.539063px;}
.x1b{left:286.403479px;}
.x11{left:294.224985px;}
.x5{left:306.599985px;}
.x2{left:344.520468px;}
.x1f{left:430.349985px;}
.x8{left:496.724985px;}
.x22{left:547.349985px;}
.xa{left:650.849985px;}
.x23{left:707.099985px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:9.615239pt;}
.ls3{letter-spacing:23.786459pt;}
.ls1{letter-spacing:60.565103pt;}
.ws16{word-spacing:-24.664063pt;}
.wsc{word-spacing:-22.664074pt;}
.wsa{word-spacing:-22.421875pt;}
.ws0{word-spacing:-20.762679pt;}
.wsd{word-spacing:-19.291667pt;}
.ws13{word-spacing:-13.263021pt;}
.ws4{word-spacing:-12.057291pt;}
.wsb{word-spacing:-11.866306pt;}
.ws15{word-spacing:-11.443748pt;}
.ws2d{word-spacing:-11.432442pt;}
.ws2f{word-spacing:-11.432434pt;}
.ws3b{word-spacing:-11.432372pt;}
.ws1f{word-spacing:-11.432353pt;}
.ws22{word-spacing:-11.432324pt;}
.ws32{word-spacing:-11.432233pt;}
.ws1b{word-spacing:-11.431201pt;}
.ws18{word-spacing:-11.431194pt;}
.ws23{word-spacing:-11.431193pt;}
.ws39{word-spacing:-11.431073pt;}
.ws14{word-spacing:-11.430427pt;}
.ws19{word-spacing:-11.430422pt;}
.ws3c{word-spacing:-11.430421pt;}
.ws2b{word-spacing:-11.426760pt;}
.ws21{word-spacing:-11.426758pt;}
.ws2c{word-spacing:-11.426757pt;}
.ws17{word-spacing:-11.425163pt;}
.ws3d{word-spacing:-11.424987pt;}
.ws35{word-spacing:-11.424986pt;}
.ws11{word-spacing:-10.381286pt;}
.ws41{word-spacing:-10.380249pt;}
.ws40{word-spacing:-10.380248pt;}
.ws7{word-spacing:-10.380206pt;}
.ws8{word-spacing:-10.379596pt;}
.wsf{word-spacing:-10.379414pt;}
.ws10{word-spacing:-10.379413pt;}
.ws42{word-spacing:-10.379209pt;}
.ws9{word-spacing:-10.379207pt;}
.wse{word-spacing:-10.374491pt;}
.ws25{word-spacing:-8.321683pt;}
.ws24{word-spacing:-8.311605pt;}
.ws1a{word-spacing:-7.443888pt;}
.ws34{word-spacing:-7.436765pt;}
.ws3a{word-spacing:-7.432473pt;}
.ws30{word-spacing:-7.432364pt;}
.ws2a{word-spacing:-7.432354pt;}
.ws1d{word-spacing:-7.431338pt;}
.ws1e{word-spacing:-7.431193pt;}
.ws2e{word-spacing:-7.430326pt;}
.ws29{word-spacing:-7.426753pt;}
.ws20{word-spacing:-7.426729pt;}
.ws31{word-spacing:-7.420024pt;}
.ws28{word-spacing:-3.432444pt;}
.ws37{word-spacing:-3.426729pt;}
.ws3e{word-spacing:-0.034669pt;}
.ws36{word-spacing:-0.030053pt;}
.ws1{word-spacing:-0.030052pt;}
.ws27{word-spacing:-0.030049pt;}
.ws3f{word-spacing:-0.022881pt;}
.ws3{word-spacing:-0.015827pt;}
.ws5{word-spacing:-0.015824pt;}
.ws2{word-spacing:-0.015138pt;}
.ws6{word-spacing:-0.014932pt;}
.ws26{word-spacing:0.000000pt;}
.ws38{word-spacing:0.579019pt;}
.ws33{word-spacing:16.567646pt;}
.ws1c{word-spacing:53.354451pt;}
.ws12{word-spacing:58.677227pt;}
._3{margin-left:-12.775566pt;}
._2{margin-left:-8.405738pt;}
._11{margin-left:-6.868087pt;}
._9{margin-left:-5.348420pt;}
._4{margin-left:-4.324855pt;}
._1{margin-left:-2.694046pt;}
._18{margin-left:-1.801536pt;}
._0{margin-left:-0.902417pt;}
._5{width:1.548069pt;}
._7{width:4.747315pt;}
._6{width:7.291803pt;}
._12{width:13.225362pt;}
._c{width:14.128957pt;}
._a{width:16.346838pt;}
._8{width:17.287297pt;}
._e{width:19.145959pt;}
._19{width:20.038482pt;}
._b{width:21.031794pt;}
._10{width:24.475848pt;}
._13{width:26.592609pt;}
._17{width:42.367244pt;}
._14{width:44.776455pt;}
._16{width:46.186546pt;}
._15{width:50.477625pt;}
._f{width:66.596353pt;}
._d{width:1470.255293pt;}
.fs5{font-size:42.666668pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs3{font-size:85.333336pt;}
.fs0{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:2.542969pt;}
.ye{bottom:2.825520pt;}
.yc{bottom:3.333334pt;}
.ya{bottom:5.774815pt;}
.y59{bottom:10.333333pt;}
.y55{bottom:11.333325pt;}
.y4{bottom:11.333332pt;}
.y7{bottom:11.333336pt;}
.y9{bottom:24.492188pt;}
.y6{bottom:27.609375pt;}
.y54{bottom:27.609379pt;}
.y57{bottom:30.333334pt;}
.y53{bottom:43.885419pt;}
.y5d{bottom:57.533207pt;}
.y2c{bottom:57.533527pt;}
.y52{bottom:60.161458pt;}
.y8{bottom:137.142664pt;}
.yb{bottom:149.055505pt;}
.y5{bottom:178.244303pt;}
.y3{bottom:186.382239pt;}
.y2b{bottom:194.178380pt;}
.y2a{bottom:214.767580pt;}
.y29{bottom:243.356767pt;}
.y4b{bottom:258.472007pt;}
.y28{bottom:263.945967pt;}
.y4a{bottom:287.061194pt;}
.y27{bottom:292.535154pt;}
.y49{bottom:315.650394pt;}
.y48{bottom:336.239581pt;}
.y26{bottom:337.124354pt;}
.y47{bottom:356.828780pt;}
.y25{bottom:357.713541pt;}
.y46{bottom:377.417967pt;}
.y24{bottom:378.302741pt;}
.y45{bottom:398.007167pt;}
.y23{bottom:406.891928pt;}
.y44{bottom:426.596354pt;}
.y22{bottom:451.481114pt;}
.y43{bottom:471.185541pt;}
.y21{bottom:472.070314pt;}
.y42{bottom:491.774741pt;}
.y20{bottom:492.659500pt;}
.y1f{bottom:513.248700pt;}
.y41{bottom:520.363928pt;}
.y1e{bottom:541.837887pt;}
.y2{bottom:558.051597pt;}
.y1d{bottom:562.427087pt;}
.y40{bottom:564.953127pt;}
.y3f{bottom:585.542314pt;}
.y1c{bottom:591.016274pt;}
.y3e{bottom:606.131514pt;}
.y1b{bottom:611.605474pt;}
.y5b{bottom:620.601559pt;}
.y3d{bottom:626.720701pt;}
.y1a{bottom:632.194660pt;}
.y5a{bottom:639.601559pt;}
.y5c{bottom:646.268225pt;}
.y3c{bottom:647.309900pt;}
.y19{bottom:658.098301pt;}
.y3b{bottom:675.899087pt;}
.y51{bottom:691.877607pt;}
.y3a{bottom:696.488287pt;}
.y56{bottom:697.291665pt;}
.y50{bottom:716.291665pt;}
.y39{bottom:717.077474pt;}
.y58{bottom:717.291665pt;}
.y1{bottom:726.944784pt;}
.y38{bottom:737.666660pt;}
.y18{bottom:744.013678pt;}
.y37{bottom:758.255860pt;}
.y17{bottom:766.731118pt;}
.y4f{bottom:773.981769pt;}
.y36{bottom:778.845047pt;}
.y4e{bottom:782.119785pt;}
.y16{bottom:789.448571pt;}
.y35{bottom:799.434247pt;}
.y15{bottom:812.166011pt;}
.y34{bottom:820.023434pt;}
.y4d{bottom:823.533852pt;}
.y14{bottom:834.883464pt;}
.y33{bottom:848.612634pt;}
.y13{bottom:857.600904pt;}
.y32{bottom:869.201820pt;}
.y12{bottom:880.318359pt;}
.y31{bottom:889.791015pt;}
.y4c{bottom:897.065756pt;}
.y30{bottom:910.380208pt;}
.y11{bottom:932.498127pt;}
.y2f{bottom:938.969401pt;}
.y2e{bottom:980.672200pt;}
.yf{bottom:980.672283pt;}
.y2d{bottom:1011.905599pt;}
.yd{bottom:1011.905681pt;}
.h9{height:13.798828pt;}
.h7{height:15.332031pt;}
.h6{height:16.276042pt;}
.h12{height:18.942708pt;}
.h11{height:30.276041pt;}
.h2{height:32.276041pt;}
.ha{height:34.500000pt;}
.he{height:35.187501pt;}
.h8{height:38.854166pt;}
.h5{height:40.101563pt;}
.h3{height:43.984374pt;}
.hc{height:48.382814pt;}
.h4{height:48.552084pt;}
.h10{height:70.276041pt;}
.hb{height:70.375002pt;}
.hf{height:81.104167pt;}
.h1{height:87.968748pt;}
.hd{height:94.133133pt;}
.h13{height:94.133467pt;}
.h0{height:1122.666667pt;}
.w8{width:54.999989pt;}
.wc{width:93.000041pt;}
.wa{width:103.000000pt;}
.w3{width:136.000000pt;}
.w4{width:139.000041pt;}
.wb{width:141.000000pt;}
.w2{width:168.000000pt;}
.w1{width:176.000000pt;}
.w9{width:234.999973pt;}
.w5{width:453.000040pt;}
.w7{width:631.000040pt;}
.w6{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xf{left:7.735298pt;}
.x1c{left:9.881187pt;}
.xc{left:11.647575pt;}
.x27{left:13.062408pt;}
.x26{left:14.000000pt;}
.x28{left:16.331573pt;}
.x21{left:17.442139pt;}
.x24{left:18.930550pt;}
.x25{left:19.841339pt;}
.x6{left:23.289185pt;}
.xb{left:27.460327pt;}
.x4{left:32.527962pt;}
.x20{left:34.291092pt;}
.x10{left:36.831573pt;}
.x9{left:40.000999pt;}
.xe{left:43.062408pt;}
.x7{left:53.485893pt;}
.xd{left:63.485985pt;}
.x1e{left:86.901047pt;}
.x1a{left:90.533336pt;}
.x14{left:94.533336pt;}
.x3{left:95.533336pt;}
.x12{left:102.033524pt;}
.x19{left:118.533336pt;}
.x17{left:127.533336pt;}
.x15{left:142.533336pt;}
.x1d{left:146.533345pt;}
.x1{left:149.145683pt;}
.x18{left:151.533336pt;}
.x16{left:166.533336pt;}
.x13{left:173.812500pt;}
.x1b{left:254.580870pt;}
.x11{left:261.533320pt;}
.x5{left:272.533320pt;}
.x2{left:306.240416pt;}
.x1f{left:382.533320pt;}
.x8{left:441.533320pt;}
.x22{left:486.533320pt;}
.xa{left:578.533320pt;}
.x23{left:628.533320pt;}
}




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