
    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_5669f9ad5ea2667c8e4e98d8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.213379;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_75c6ff39f8ca9f90af430fbe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.213379;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_4f464574261e38cf1cba56b9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_495cbbc80058cecb58aaa145.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_e5c60687a3f396916459ba5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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(0.368425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368425,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.620000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.016000px;}
.ls3{letter-spacing:-1.500000px;}
.ls9{letter-spacing:-0.978000px;}
.ls6{letter-spacing:-0.516000px;}
.ls13{letter-spacing:-0.492000px;}
.lsb{letter-spacing:-0.468000px;}
.ls8{letter-spacing:-0.348000px;}
.ls4{letter-spacing:-0.228000px;}
.ls7{letter-spacing:-0.174000px;}
.lsf{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.348000px;}
.ls5{letter-spacing:0.468000px;}
.ls15{letter-spacing:0.516000px;}
.lsa{letter-spacing:0.696000px;}
.ls11{letter-spacing:1.032000px;}
.ls12{letter-spacing:1.500000px;}
.lsd{letter-spacing:3.000000px;}
.lsc{letter-spacing:4.500000px;}
.ls14{letter-spacing:15.000000px;}
.ls16{letter-spacing:24.120000px;}
.ls10{letter-spacing:205.650000px;}
.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;}
}
.ws2{word-spacing:-65.772000px;}
.ws10{word-spacing:-19.032000px;}
.ws13{word-spacing:-18.516000px;}
.ws3{word-spacing:-18.468000px;}
.wsc{word-spacing:-18.024000px;}
.ws12{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.976000px;}
.wsb{word-spacing:-17.532000px;}
.ws11{word-spacing:-17.508000px;}
.ws4{word-spacing:-17.484000px;}
.ws9{word-spacing:-17.196000px;}
.ws0{word-spacing:-16.848000px;}
.wsa{word-spacing:-16.500000px;}
.ws5{word-spacing:-16.326000px;}
.ws7{word-spacing:-16.152000px;}
.wse{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.522000px;}
.ws1{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.250000px;}
.wsd{word-spacing:0.000000px;}
._1c{margin-left:-10.500000px;}
._15{margin-left:-5.466000px;}
._3{margin-left:-3.792000px;}
._0{margin-left:-2.706000px;}
._2{margin-left:-1.056000px;}
._1{width:1.716000px;}
._8{width:2.838000px;}
._9{width:3.894000px;}
._5{width:5.346000px;}
._4{width:6.534000px;}
._10{width:7.770000px;}
._e{width:9.504000px;}
._d{width:10.848000px;}
._a{width:11.928000px;}
._b{width:12.936000px;}
._c{width:14.220000px;}
._12{width:15.312000px;}
._f{width:16.464000px;}
._7{width:17.688000px;}
._6{width:18.810000px;}
._11{width:20.316000px;}
._14{width:21.876000px;}
._13{width:23.580000px;}
._18{width:25.032000px;}
._19{width:26.904000px;}
._1a{width:28.044000px;}
._1b{width:29.928000px;}
._17{width:31.188000px;}
._16{width:32.376000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.750000px;}
.y5{bottom:5.250000px;}
.y4{bottom:25.875000px;}
.y8{bottom:28.875000px;}
.y9{bottom:29.625000px;}
.y7{bottom:33.375000px;}
.y3{bottom:46.125000px;}
.y2{bottom:64.920000px;}
.y44{bottom:118.537500px;}
.y5f{bottom:118.912500px;}
.y2c{bottom:129.787500px;}
.y84{bottom:130.162500px;}
.y9d{bottom:141.412500px;}
.yaa{bottom:142.162500px;}
.y56{bottom:142.537500px;}
.y75{bottom:153.420000px;}
.y43{bottom:159.795000px;}
.y5e{bottom:160.170000px;}
.y2b{bottom:171.420000px;}
.y9c{bottom:183.075000px;}
.y55{bottom:183.825000px;}
.y74{bottom:194.700000px;}
.y42{bottom:201.450000px;}
.y5d{bottom:201.825000px;}
.y2a{bottom:212.700000px;}
.y9b{bottom:224.325000px;}
.y90{bottom:224.700000px;}
.y54{bottom:225.450000px;}
.y73{bottom:236.325000px;}
.y41{bottom:242.700000px;}
.y5c{bottom:243.075000px;}
.ya9{bottom:245.700000px;}
.y29{bottom:253.950000px;}
.y83{bottom:254.325000px;}
.y5b{bottom:263.700000px;}
.y9a{bottom:265.575000px;}
.y8f{bottom:265.950000px;}
.ya8{bottom:266.325000px;}
.y53{bottom:266.700000px;}
.y72{bottom:277.575000px;}
.y40{bottom:283.950000px;}
.y5a{bottom:284.325000px;}
.y28{bottom:295.575000px;}
.y59{bottom:305.370000px;}
.y99{bottom:307.230000px;}
.y8e{bottom:307.605000px;}
.y52{bottom:307.980000px;}
.y71{bottom:318.870000px;}
.y3f{bottom:325.620000px;}
.ya4{bottom:325.995000px;}
.y27{bottom:336.870000px;}
.ya3{bottom:346.620000px;}
.y98{bottom:348.480000px;}
.y8d{bottom:348.870000px;}
.y51{bottom:349.245000px;}
.y82{bottom:357.855000px;}
.y3e{bottom:366.870000px;}
.ya2{bottom:367.245000px;}
.y97{bottom:369.120000px;}
.y70{bottom:372.495000px;}
.y26{bottom:378.480000px;}
.y81{bottom:384.495000px;}
.ya1{bottom:388.230000px;}
.y8c{bottom:390.495000px;}
.ya7{bottom:390.870000px;}
.y50{bottom:391.245000px;}
.y3d{bottom:408.495000px;}
.y6f{bottom:413.745000px;}
.y25{bottom:419.370000px;}
.ya0{bottom:429.120000px;}
.y8b{bottom:431.400000px;}
.y80{bottom:431.775000px;}
.y4f{bottom:432.150000px;}
.y96{bottom:443.775000px;}
.y3c{bottom:449.775000px;}
.y6e{bottom:455.025000px;}
.y24{bottom:461.400000px;}
.y7f{bottom:473.025000px;}
.y4e{bottom:473.400000px;}
.y8a{bottom:479.400000px;}
.y95{bottom:485.025000px;}
.y3b{bottom:491.025000px;}
.y9f{bottom:491.400000px;}
.y6d{bottom:496.650000px;}
.y23{bottom:502.650000px;}
.y4d{bottom:514.650000px;}
.y89{bottom:520.650000px;}
.y94{bottom:526.650000px;}
.y9e{bottom:532.275000px;}
.y3a{bottom:532.650000px;}
.ya6{bottom:535.275000px;}
.y6c{bottom:537.900000px;}
.y22{bottom:543.900000px;}
.y4c{bottom:555.900000px;}
.y88{bottom:562.320000px;}
.y93{bottom:567.945000px;}
.y39{bottom:573.945000px;}
.y6b{bottom:579.570000px;}
.y21{bottom:585.570000px;}
.y4b{bottom:597.570000px;}
.y7e{bottom:603.570000px;}
.y92{bottom:609.195000px;}
.y58{bottom:615.195000px;}
.y38{bottom:615.570000px;}
.y6a{bottom:620.445000px;}
.y20{bottom:626.820000px;}
.y4a{bottom:638.820000px;}
.y69{bottom:641.445000px;}
.y7d{bottom:644.820000px;}
.y91{bottom:650.820000px;}
.y37{bottom:656.820000px;}
.y1f{bottom:668.070000px;}
.y68{bottom:674.445000px;}
.y49{bottom:680.070000px;}
.y87{bottom:686.070000px;}
.y7c{bottom:686.445000px;}
.y1e{bottom:692.100000px;}
.ya5{bottom:697.725000px;}
.y36{bottom:698.100000px;}
.y1d{bottom:712.725000px;}
.y48{bottom:721.725000px;}
.y7b{bottom:727.350000px;}
.y67{bottom:727.725000px;}
.y1c{bottom:731.850000px;}
.y86{bottom:733.350000px;}
.y35{bottom:739.350000px;}
.y57{bottom:739.725000px;}
.y1b{bottom:750.975000px;}
.y47{bottom:762.975000px;}
.y66{bottom:768.975000px;}
.y1a{bottom:769.725000px;}
.y7a{bottom:774.975000px;}
.y34{bottom:780.975000px;}
.y19{bottom:788.850000px;}
.y46{bottom:804.600000px;}
.y18{bottom:807.600000px;}
.y65{bottom:810.600000px;}
.y79{bottom:816.225000px;}
.y33{bottom:822.630000px;}
.y45{bottom:825.270000px;}
.y17{bottom:826.755000px;}
.y16{bottom:845.880000px;}
.y64{bottom:851.880000px;}
.y78{bottom:857.880000px;}
.y32{bottom:863.880000px;}
.y15{bottom:864.630000px;}
.y14{bottom:883.755000px;}
.y63{bottom:893.505000px;}
.y85{bottom:898.755000px;}
.y77{bottom:899.130000px;}
.y13{bottom:902.505000px;}
.y31{bottom:905.130000px;}
.y12{bottom:921.630000px;}
.y62{bottom:934.755000px;}
.y76{bottom:940.380000px;}
.y30{bottom:946.800000px;}
.y11{bottom:947.925000px;}
.y10{bottom:960.675000px;}
.y61{bottom:976.050000px;}
.y2f{bottom:988.050000px;}
.yf{bottom:996.675000px;}
.y60{bottom:1017.675000px;}
.y2e{bottom:1029.675000px;}
.ye{bottom:1033.800000px;}
.yd{bottom:1070.925000px;}
.yc{bottom:1091.580000px;}
.y2d{bottom:1112.205000px;}
.yb{bottom:1112.580000px;}
.y1{bottom:1148.580000px;}
.y6{bottom:1235.250000px;}
.h6{height:18.787500px;}
.ha{height:32.765625px;}
.h5{height:41.660156px;}
.h4{height:45.826172px;}
.hb{height:50.414062px;}
.h8{height:50.800781px;}
.h3{height:54.609375px;}
.h9{height:57.339844px;}
.h2{height:60.070312px;}
.h7{height:65.531250px;}
.h1{height:81.037500px;}
.h0{height:1263.000000px;}
.w3{width:16.875000px;}
.w1{width:491.070000px;}
.w2{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.000000px;}
.x6{left:106.162487px;}
.xc{left:108.037487px;}
.x10{left:111.787487px;}
.x11{left:112.912487px;}
.x5{left:114.405000px;}
.x12{left:132.449987px;}
.x8{left:134.699987px;}
.xe{left:139.949987px;}
.xf{left:146.324987px;}
.x16{left:150.449987px;}
.x4{left:151.950000px;}
.xd{left:162.074987px;}
.x15{left:164.324987px;}
.x14{left:167.324987px;}
.x3{left:176.325000px;}
.xb{left:211.199987px;}
.x1{left:262.995000px;}
.xa{left:347.774987px;}
.x9{left:392.774987px;}
.x7{left:770.595000px;}
.x13{left:785.579987px;}
@media print{
.v1{vertical-align:-73.440000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.792000pt;}
.ls3{letter-spacing:-1.333333pt;}
.ls9{letter-spacing:-0.869333pt;}
.ls6{letter-spacing:-0.458667pt;}
.ls13{letter-spacing:-0.437333pt;}
.lsb{letter-spacing:-0.416000pt;}
.ls8{letter-spacing:-0.309333pt;}
.ls4{letter-spacing:-0.202667pt;}
.ls7{letter-spacing:-0.154667pt;}
.lsf{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.309333pt;}
.ls5{letter-spacing:0.416000pt;}
.ls15{letter-spacing:0.458667pt;}
.lsa{letter-spacing:0.618667pt;}
.ls11{letter-spacing:0.917333pt;}
.ls12{letter-spacing:1.333333pt;}
.lsd{letter-spacing:2.666667pt;}
.lsc{letter-spacing:4.000000pt;}
.ls14{letter-spacing:13.333333pt;}
.ls16{letter-spacing:21.440000pt;}
.ls10{letter-spacing:182.800000pt;}
.ws2{word-spacing:-58.464000pt;}
.ws10{word-spacing:-16.917333pt;}
.ws13{word-spacing:-16.458667pt;}
.ws3{word-spacing:-16.416000pt;}
.wsc{word-spacing:-16.021333pt;}
.ws12{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.978667pt;}
.wsb{word-spacing:-15.584000pt;}
.ws11{word-spacing:-15.562667pt;}
.ws4{word-spacing:-15.541333pt;}
.ws9{word-spacing:-15.285333pt;}
.ws0{word-spacing:-14.976000pt;}
.wsa{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.512000pt;}
.ws7{word-spacing:-14.357333pt;}
.wse{word-spacing:-14.208000pt;}
.ws8{word-spacing:-13.797333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws6{word-spacing:-12.666667pt;}
.wsd{word-spacing:0.000000pt;}
._1c{margin-left:-9.333333pt;}
._15{margin-left:-4.858667pt;}
._3{margin-left:-3.370667pt;}
._0{margin-left:-2.405333pt;}
._2{margin-left:-0.938667pt;}
._1{width:1.525333pt;}
._8{width:2.522667pt;}
._9{width:3.461333pt;}
._5{width:4.752000pt;}
._4{width:5.808000pt;}
._10{width:6.906667pt;}
._e{width:8.448000pt;}
._d{width:9.642667pt;}
._a{width:10.602667pt;}
._b{width:11.498667pt;}
._c{width:12.640000pt;}
._12{width:13.610667pt;}
._f{width:14.634667pt;}
._7{width:15.722667pt;}
._6{width:16.720000pt;}
._11{width:18.058667pt;}
._14{width:19.445333pt;}
._13{width:20.960000pt;}
._18{width:22.250667pt;}
._19{width:23.914667pt;}
._1a{width:24.928000pt;}
._1b{width:26.602667pt;}
._17{width:27.722667pt;}
._16{width:28.778667pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.333333pt;}
.y5{bottom:4.666667pt;}
.y4{bottom:23.000000pt;}
.y8{bottom:25.666667pt;}
.y9{bottom:26.333333pt;}
.y7{bottom:29.666667pt;}
.y3{bottom:41.000000pt;}
.y2{bottom:57.706667pt;}
.y44{bottom:105.366667pt;}
.y5f{bottom:105.700000pt;}
.y2c{bottom:115.366667pt;}
.y84{bottom:115.700000pt;}
.y9d{bottom:125.700000pt;}
.yaa{bottom:126.366667pt;}
.y56{bottom:126.700000pt;}
.y75{bottom:136.373333pt;}
.y43{bottom:142.040000pt;}
.y5e{bottom:142.373333pt;}
.y2b{bottom:152.373333pt;}
.y9c{bottom:162.733333pt;}
.y55{bottom:163.400000pt;}
.y74{bottom:173.066667pt;}
.y42{bottom:179.066667pt;}
.y5d{bottom:179.400000pt;}
.y2a{bottom:189.066667pt;}
.y9b{bottom:199.400000pt;}
.y90{bottom:199.733333pt;}
.y54{bottom:200.400000pt;}
.y73{bottom:210.066667pt;}
.y41{bottom:215.733333pt;}
.y5c{bottom:216.066667pt;}
.ya9{bottom:218.400000pt;}
.y29{bottom:225.733333pt;}
.y83{bottom:226.066667pt;}
.y5b{bottom:234.400000pt;}
.y9a{bottom:236.066667pt;}
.y8f{bottom:236.400000pt;}
.ya8{bottom:236.733333pt;}
.y53{bottom:237.066667pt;}
.y72{bottom:246.733333pt;}
.y40{bottom:252.400000pt;}
.y5a{bottom:252.733333pt;}
.y28{bottom:262.733333pt;}
.y59{bottom:271.440000pt;}
.y99{bottom:273.093333pt;}
.y8e{bottom:273.426667pt;}
.y52{bottom:273.760000pt;}
.y71{bottom:283.440000pt;}
.y3f{bottom:289.440000pt;}
.ya4{bottom:289.773333pt;}
.y27{bottom:299.440000pt;}
.ya3{bottom:308.106667pt;}
.y98{bottom:309.760000pt;}
.y8d{bottom:310.106667pt;}
.y51{bottom:310.440000pt;}
.y82{bottom:318.093333pt;}
.y3e{bottom:326.106667pt;}
.ya2{bottom:326.440000pt;}
.y97{bottom:328.106667pt;}
.y70{bottom:331.106667pt;}
.y26{bottom:336.426667pt;}
.y81{bottom:341.773333pt;}
.ya1{bottom:345.093333pt;}
.y8c{bottom:347.106667pt;}
.ya7{bottom:347.440000pt;}
.y50{bottom:347.773333pt;}
.y3d{bottom:363.106667pt;}
.y6f{bottom:367.773333pt;}
.y25{bottom:372.773333pt;}
.ya0{bottom:381.440000pt;}
.y8b{bottom:383.466667pt;}
.y80{bottom:383.800000pt;}
.y4f{bottom:384.133333pt;}
.y96{bottom:394.466667pt;}
.y3c{bottom:399.800000pt;}
.y6e{bottom:404.466667pt;}
.y24{bottom:410.133333pt;}
.y7f{bottom:420.466667pt;}
.y4e{bottom:420.800000pt;}
.y8a{bottom:426.133333pt;}
.y95{bottom:431.133333pt;}
.y3b{bottom:436.466667pt;}
.y9f{bottom:436.800000pt;}
.y6d{bottom:441.466667pt;}
.y23{bottom:446.800000pt;}
.y4d{bottom:457.466667pt;}
.y89{bottom:462.800000pt;}
.y94{bottom:468.133333pt;}
.y9e{bottom:473.133333pt;}
.y3a{bottom:473.466667pt;}
.ya6{bottom:475.800000pt;}
.y6c{bottom:478.133333pt;}
.y22{bottom:483.466667pt;}
.y4c{bottom:494.133333pt;}
.y88{bottom:499.840000pt;}
.y93{bottom:504.840000pt;}
.y39{bottom:510.173333pt;}
.y6b{bottom:515.173333pt;}
.y21{bottom:520.506667pt;}
.y4b{bottom:531.173333pt;}
.y7e{bottom:536.506667pt;}
.y92{bottom:541.506667pt;}
.y58{bottom:546.840000pt;}
.y38{bottom:547.173333pt;}
.y6a{bottom:551.506667pt;}
.y20{bottom:557.173333pt;}
.y4a{bottom:567.840000pt;}
.y69{bottom:570.173333pt;}
.y7d{bottom:573.173333pt;}
.y91{bottom:578.506667pt;}
.y37{bottom:583.840000pt;}
.y1f{bottom:593.840000pt;}
.y68{bottom:599.506667pt;}
.y49{bottom:604.506667pt;}
.y87{bottom:609.840000pt;}
.y7c{bottom:610.173333pt;}
.y1e{bottom:615.200000pt;}
.ya5{bottom:620.200000pt;}
.y36{bottom:620.533333pt;}
.y1d{bottom:633.533333pt;}
.y48{bottom:641.533333pt;}
.y7b{bottom:646.533333pt;}
.y67{bottom:646.866667pt;}
.y1c{bottom:650.533333pt;}
.y86{bottom:651.866667pt;}
.y35{bottom:657.200000pt;}
.y57{bottom:657.533333pt;}
.y1b{bottom:667.533333pt;}
.y47{bottom:678.200000pt;}
.y66{bottom:683.533333pt;}
.y1a{bottom:684.200000pt;}
.y7a{bottom:688.866667pt;}
.y34{bottom:694.200000pt;}
.y19{bottom:701.200000pt;}
.y46{bottom:715.200000pt;}
.y18{bottom:717.866667pt;}
.y65{bottom:720.533333pt;}
.y79{bottom:725.533333pt;}
.y33{bottom:731.226667pt;}
.y45{bottom:733.573333pt;}
.y17{bottom:734.893333pt;}
.y16{bottom:751.893333pt;}
.y64{bottom:757.226667pt;}
.y78{bottom:762.560000pt;}
.y32{bottom:767.893333pt;}
.y15{bottom:768.560000pt;}
.y14{bottom:785.560000pt;}
.y63{bottom:794.226667pt;}
.y85{bottom:798.893333pt;}
.y77{bottom:799.226667pt;}
.y13{bottom:802.226667pt;}
.y31{bottom:804.560000pt;}
.y12{bottom:819.226667pt;}
.y62{bottom:830.893333pt;}
.y76{bottom:835.893333pt;}
.y30{bottom:841.600000pt;}
.y11{bottom:842.600000pt;}
.y10{bottom:853.933333pt;}
.y61{bottom:867.600000pt;}
.y2f{bottom:878.266667pt;}
.yf{bottom:885.933333pt;}
.y60{bottom:904.600000pt;}
.y2e{bottom:915.266667pt;}
.ye{bottom:918.933333pt;}
.yd{bottom:951.933333pt;}
.yc{bottom:970.293333pt;}
.y2d{bottom:988.626667pt;}
.yb{bottom:988.960000pt;}
.y1{bottom:1020.960000pt;}
.y6{bottom:1098.000000pt;}
.h6{height:16.700000pt;}
.ha{height:29.125000pt;}
.h5{height:37.031250pt;}
.h4{height:40.734375pt;}
.hb{height:44.812500pt;}
.h8{height:45.156250pt;}
.h3{height:48.541667pt;}
.h9{height:50.968750pt;}
.h2{height:53.395833pt;}
.h7{height:58.250000pt;}
.h1{height:72.033333pt;}
.h0{height:1122.666667pt;}
.w3{width:15.000000pt;}
.w1{width:436.506667pt;}
.w2{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:2.666667pt;}
.x6{left:94.366655pt;}
.xc{left:96.033322pt;}
.x10{left:99.366655pt;}
.x11{left:100.366655pt;}
.x5{left:101.693333pt;}
.x12{left:117.733322pt;}
.x8{left:119.733322pt;}
.xe{left:124.399988pt;}
.xf{left:130.066655pt;}
.x16{left:133.733322pt;}
.x4{left:135.066667pt;}
.xd{left:144.066655pt;}
.x15{left:146.066655pt;}
.x14{left:148.733322pt;}
.x3{left:156.733333pt;}
.xb{left:187.733322pt;}
.x1{left:233.773333pt;}
.xa{left:309.133322pt;}
.x9{left:349.133322pt;}
.x7{left:684.973333pt;}
.x13{left:698.293322pt;}
}




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