
    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_74023a5745f5e5039d742d80.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b188e4e816740cb4f877075d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_1066a98e24191eb2427fc999.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5c26cc6e47197116faa1fe65.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_4ca8205823ec3f17346cf567.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_3cc18ca1531b4c7af260864c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_73936a70cb6f0650c4981858.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_a73b9508b77e6a39bb301e1b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.080000px;}
.ls1{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls16{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.156000px;}
.ls9{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.540000px;}
.ls13{letter-spacing:16.506720px;}
.ls15{letter-spacing:21.054240px;}
.lsf{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.479800px;}
.ws6{word-spacing:-14.328000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.715680px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-3.759840px;}
._13{margin-left:-2.505600px;}
._0{margin-left:-1.080000px;}
._f{width:1.053360px;}
._1{width:2.220000px;}
._10{width:3.597840px;}
._14{width:5.101920px;}
._15{width:6.186720px;}
._12{width:7.294320px;}
._11{width:8.751120px;}
._1c{width:9.751680px;}
._6{width:10.800000px;}
._1a{width:12.191040px;}
._1b{width:13.895280px;}
._1d{width:16.482240px;}
._17{width:21.894480px;}
._18{width:22.910880px;}
._16{width:24.006720px;}
._20{width:28.408320px;}
._1e{width:30.558240px;}
._1f{width:33.389520px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:rgb(51,58,63);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yb{bottom:60.300000px;}
.y4{bottom:68.400000px;}
.yd{bottom:77.940000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y3b{bottom:107.100000px;}
.y6d{bottom:115.380000px;}
.y6a{bottom:117.540000px;}
.y2{bottom:125.670000px;}
.y3a{bottom:126.900000px;}
.y6c{bottom:135.180000px;}
.y69{bottom:137.340000px;}
.y39{bottom:146.880000px;}
.y6b{bottom:155.010000px;}
.y68{bottom:157.350000px;}
.y38{bottom:166.710000px;}
.y67{bottom:177.150000px;}
.y37{bottom:186.510000px;}
.y66{bottom:196.950000px;}
.y36{bottom:206.310000px;}
.y65{bottom:216.750000px;}
.y35{bottom:226.110000px;}
.y64{bottom:236.550000px;}
.y34{bottom:246.090000px;}
.y63{bottom:256.530000px;}
.y33{bottom:265.890000px;}
.y62{bottom:276.330000px;}
.y32{bottom:285.690000px;}
.y61{bottom:296.130000px;}
.y31{bottom:305.490000px;}
.y60{bottom:315.930000px;}
.y30{bottom:325.290000px;}
.y5f{bottom:335.730000px;}
.y2f{bottom:345.270000px;}
.y5e{bottom:355.710000px;}
.y2e{bottom:365.070000px;}
.y5d{bottom:375.510000px;}
.y2d{bottom:384.870000px;}
.y5c{bottom:395.310000px;}
.y2c{bottom:404.715000px;}
.y5b{bottom:415.155000px;}
.y2b{bottom:424.515000px;}
.y5a{bottom:434.955000px;}
.y2a{bottom:444.495000px;}
.y59{bottom:454.935000px;}
.y29{bottom:464.295000px;}
.y58{bottom:474.735000px;}
.y28{bottom:484.095000px;}
.y57{bottom:494.535000px;}
.y27{bottom:503.895000px;}
.y56{bottom:514.335000px;}
.y26{bottom:523.695000px;}
.y55{bottom:534.135000px;}
.y25{bottom:543.675000px;}
.y54{bottom:554.115000px;}
.y24{bottom:563.475000px;}
.y53{bottom:573.915000px;}
.y23{bottom:583.275000px;}
.y52{bottom:593.715000px;}
.y22{bottom:603.075000px;}
.y51{bottom:613.515000px;}
.y21{bottom:622.875000px;}
.y50{bottom:633.315000px;}
.y20{bottom:642.855000px;}
.y4f{bottom:653.325000px;}
.y1f{bottom:662.685000px;}
.y4e{bottom:673.125000px;}
.y1e{bottom:682.485000px;}
.y4d{bottom:692.925000px;}
.y1d{bottom:702.285000px;}
.y4c{bottom:712.725000px;}
.y1c{bottom:722.085000px;}
.y4b{bottom:732.525000px;}
.y1b{bottom:742.065000px;}
.y4a{bottom:752.505000px;}
.y1a{bottom:761.865000px;}
.y49{bottom:772.305000px;}
.y19{bottom:781.665000px;}
.y48{bottom:792.105000px;}
.y18{bottom:801.465000px;}
.y47{bottom:811.905000px;}
.y17{bottom:821.265000px;}
.y46{bottom:831.705000px;}
.y16{bottom:838.545000px;}
.y45{bottom:851.685000px;}
.y15{bottom:858.345000px;}
.y44{bottom:871.485000px;}
.y14{bottom:883.545000px;}
.y43{bottom:891.285000px;}
.y13{bottom:898.710000px;}
.y42{bottom:911.130000px;}
.y12{bottom:919.950000px;}
.y41{bottom:930.930000px;}
.y11{bottom:943.350000px;}
.y40{bottom:950.910000px;}
.y3f{bottom:970.710000px;}
.y10{bottom:975.210000px;}
.y3e{bottom:990.510000px;}
.yf{bottom:1006.710000px;}
.y3d{bottom:1010.310000px;}
.y3c{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.ha{height:21.780000px;}
.hd{height:27.147656px;}
.h7{height:33.480000px;}
.h8{height:41.726953px;}
.he{height:42.164648px;}
.h11{height:43.506914px;}
.h13{height:45.024258px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.hf{height:48.027656px;}
.h10{height:49.255313px;}
.h9{height:53.224453px;}
.h12{height:59.439023px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w3{width:131.976000px;}
.w2{width:654.450000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.460000px;}
.xb{left:78.839987px;}
.xd{left:80.999987px;}
.x7{left:90.215987px;}
.xf{left:97.235987px;}
.x6{left:105.875987px;}
.xe{left:108.035987px;}
.x4{left:118.290000px;}
.xa{left:339.914987px;}
.xc{left:382.934987px;}
.x8{left:409.214987px;}
.x9{left:446.504987px;}
.x3{left:707.910000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls16{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.138667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.480000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls15{letter-spacing:18.714880pt;}
.lsf{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.870933pt;}
.ws6{word-spacing:-12.736000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.636160pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-3.342080pt;}
._13{margin-left:-2.227200pt;}
._0{margin-left:-0.960000pt;}
._f{width:0.936320pt;}
._1{width:1.973333pt;}
._10{width:3.198080pt;}
._14{width:4.535040pt;}
._15{width:5.499307pt;}
._12{width:6.483840pt;}
._11{width:7.778773pt;}
._1c{width:8.668160pt;}
._6{width:9.600000pt;}
._1a{width:10.836480pt;}
._1b{width:12.351360pt;}
._1d{width:14.650880pt;}
._17{width:19.461760pt;}
._18{width:20.365227pt;}
._16{width:21.339307pt;}
._20{width:25.251840pt;}
._1e{width:27.162880pt;}
._1f{width:29.679573pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.600000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.280000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y3b{bottom:95.200000pt;}
.y6d{bottom:102.560000pt;}
.y6a{bottom:104.480000pt;}
.y2{bottom:111.706667pt;}
.y3a{bottom:112.800000pt;}
.y6c{bottom:120.160000pt;}
.y69{bottom:122.080000pt;}
.y39{bottom:130.560000pt;}
.y6b{bottom:137.786667pt;}
.y68{bottom:139.866667pt;}
.y38{bottom:148.186667pt;}
.y67{bottom:157.466667pt;}
.y37{bottom:165.786667pt;}
.y66{bottom:175.066667pt;}
.y36{bottom:183.386667pt;}
.y65{bottom:192.666667pt;}
.y35{bottom:200.986667pt;}
.y64{bottom:210.266667pt;}
.y34{bottom:218.746667pt;}
.y63{bottom:228.026667pt;}
.y33{bottom:236.346667pt;}
.y62{bottom:245.626667pt;}
.y32{bottom:253.946667pt;}
.y61{bottom:263.226667pt;}
.y31{bottom:271.546667pt;}
.y60{bottom:280.826667pt;}
.y30{bottom:289.146667pt;}
.y5f{bottom:298.426667pt;}
.y2f{bottom:306.906667pt;}
.y5e{bottom:316.186667pt;}
.y2e{bottom:324.506667pt;}
.y5d{bottom:333.786667pt;}
.y2d{bottom:342.106667pt;}
.y5c{bottom:351.386667pt;}
.y2c{bottom:359.746667pt;}
.y5b{bottom:369.026667pt;}
.y2b{bottom:377.346667pt;}
.y5a{bottom:386.626667pt;}
.y2a{bottom:395.106667pt;}
.y59{bottom:404.386667pt;}
.y29{bottom:412.706667pt;}
.y58{bottom:421.986667pt;}
.y28{bottom:430.306667pt;}
.y57{bottom:439.586667pt;}
.y27{bottom:447.906667pt;}
.y56{bottom:457.186667pt;}
.y26{bottom:465.506667pt;}
.y55{bottom:474.786667pt;}
.y25{bottom:483.266667pt;}
.y54{bottom:492.546667pt;}
.y24{bottom:500.866667pt;}
.y53{bottom:510.146667pt;}
.y23{bottom:518.466667pt;}
.y52{bottom:527.746667pt;}
.y22{bottom:536.066667pt;}
.y51{bottom:545.346667pt;}
.y21{bottom:553.666667pt;}
.y50{bottom:562.946667pt;}
.y20{bottom:571.426667pt;}
.y4f{bottom:580.733333pt;}
.y1f{bottom:589.053333pt;}
.y4e{bottom:598.333333pt;}
.y1e{bottom:606.653333pt;}
.y4d{bottom:615.933333pt;}
.y1d{bottom:624.253333pt;}
.y4c{bottom:633.533333pt;}
.y1c{bottom:641.853333pt;}
.y4b{bottom:651.133333pt;}
.y1b{bottom:659.613333pt;}
.y4a{bottom:668.893333pt;}
.y1a{bottom:677.213333pt;}
.y49{bottom:686.493333pt;}
.y19{bottom:694.813333pt;}
.y48{bottom:704.093333pt;}
.y18{bottom:712.413333pt;}
.y47{bottom:721.693333pt;}
.y17{bottom:730.013333pt;}
.y46{bottom:739.293333pt;}
.y16{bottom:745.373333pt;}
.y45{bottom:757.053333pt;}
.y15{bottom:762.973333pt;}
.y44{bottom:774.653333pt;}
.y14{bottom:785.373333pt;}
.y43{bottom:792.253333pt;}
.y13{bottom:798.853333pt;}
.y42{bottom:809.893333pt;}
.y12{bottom:817.733333pt;}
.y41{bottom:827.493333pt;}
.y11{bottom:838.533333pt;}
.y40{bottom:845.253333pt;}
.y3f{bottom:862.853333pt;}
.y10{bottom:866.853333pt;}
.y3e{bottom:880.453333pt;}
.yf{bottom:894.853333pt;}
.y3d{bottom:898.053333pt;}
.y3c{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.ha{height:19.360000pt;}
.hd{height:24.131250pt;}
.h7{height:29.760000pt;}
.h8{height:37.090625pt;}
.he{height:37.479688pt;}
.h11{height:38.672812pt;}
.h13{height:40.021563pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.hf{height:42.691250pt;}
.h10{height:43.782500pt;}
.h9{height:47.310625pt;}
.h12{height:52.834688pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w3{width:117.312000pt;}
.w2{width:581.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.520000pt;}
.xb{left:70.079988pt;}
.xd{left:71.999988pt;}
.x7{left:80.191988pt;}
.xf{left:86.431988pt;}
.x6{left:94.111988pt;}
.xe{left:96.031988pt;}
.x4{left:105.146667pt;}
.xa{left:302.146655pt;}
.xc{left:340.386655pt;}
.x8{left:363.746655pt;}
.x9{left:396.893322pt;}
.x3{left:629.253333pt;}
.x5{left:737.280000pt;}
}




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