
    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_f946481808f88907d145a6dc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_dd50bca200ba28711afb4fcc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_89a4a6e1100e64a63b0aef7b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_a296d228094a2dcccfcfaed0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_38162349ea0cb259a637b01e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1dcc970c1139b8c35e22269e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_2cc54685ef6cfe09a04fff37.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_21e5b94e278e47a576f2c47c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_61f24db97f2dc6313066b0a3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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_34f08fbbc138a00c21f88e92.woff')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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_322ee910905c1a41eb911086.woff')format("woff");}.ffb{font-family:ffb;line-height:0.855469;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_dc5baf3364ea82112ef1e820.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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;}
.v3{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.078600px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000001px;}
.lsb{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.077760px;}
.ls3{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.720000px;}
.lse{letter-spacing:1.728000px;}
.ls5{letter-spacing:10.254240px;}
.ls2{letter-spacing:12.420000px;}
.ls6{letter-spacing:14.580000px;}
.ls12{letter-spacing:46.002720px;}
.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:-72.000000px;}
.wsa{word-spacing:-51.041400px;}
.ws6{word-spacing:-18.000001px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-9.732960px;}
.ws0{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-6.840000px;}
._17{margin-left:-5.631600px;}
._b{margin-left:-4.601520px;}
._3{margin-left:-3.572640px;}
._2{margin-left:-2.241600px;}
._0{margin-left:-1.152000px;}
._1{width:1.860000px;}
._7{width:3.468960px;}
._8{width:4.541760px;}
._a{width:6.500640px;}
._9{width:7.709040px;}
._6{width:9.566640px;}
._5{width:11.291280px;}
._4{width:12.961680px;}
._15{width:14.522880px;}
._16{width:16.194960px;}
._11{width:17.688960px;}
._f{width:19.115760px;}
._10{width:20.146560px;}
._18{width:21.333600px;}
._e{width:22.410000px;}
._c{width:23.545440px;}
._d{width:24.780720px;}
._12{width:34.056000px;}
._13{width:36.000000px;}
.fc5{color:rgb(0,29,53);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs4{font-size:38.880000px;}
.fs5{font-size:51.120000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.420000px;}
.y2b{bottom:113.976000px;}
.y4a{bottom:118.476000px;}
.y64{bottom:122.256000px;}
.y2a{bottom:142.416000px;}
.y63{bottom:148.176000px;}
.y49{bottom:149.436000px;}
.y29{bottom:169.950000px;}
.y62{bottom:174.090000px;}
.y48{bottom:180.750000px;}
.y28{bottom:195.870000px;}
.y61{bottom:199.830000px;}
.y47{bottom:212.250000px;}
.y27{bottom:221.610000px;}
.y60{bottom:225.750000px;}
.y46{bottom:243.210000px;}
.y26{bottom:247.530000px;}
.y5f{bottom:251.670000px;}
.y25{bottom:273.450000px;}
.y45{bottom:274.350000px;}
.y5e{bottom:277.590000px;}
.y24{bottom:299.370000px;}
.y5d{bottom:303.330000px;}
.y44{bottom:305.310000px;}
.y23{bottom:325.110000px;}
.y5c{bottom:329.250000px;}
.y43{bottom:336.495000px;}
.y22{bottom:351.075000px;}
.y5b{bottom:355.215000px;}
.y42{bottom:361.515000px;}
.y21{bottom:376.995000px;}
.y5a{bottom:382.035000px;}
.y20{bottom:402.735000px;}
.y59{bottom:409.215000px;}
.y1f{bottom:428.655000px;}
.y58{bottom:435.315000px;}
.y1e{bottom:455.475000px;}
.y57{bottom:461.235000px;}
.y1d{bottom:483.015000px;}
.y56{bottom:487.155000px;}
.y1c{bottom:508.935000px;}
.y55{bottom:513.075000px;}
.y1b{bottom:534.855000px;}
.y54{bottom:538.815000px;}
.y1a{bottom:560.595000px;}
.y53{bottom:565.635000px;}
.y41{bottom:581.475000px;}
.y19{bottom:586.515000px;}
.y52{bottom:601.995000px;}
.y40{bottom:602.175000px;}
.y18{bottom:612.465000px;}
.y3f{bottom:628.125000px;}
.y17{bottom:638.385000px;}
.y3e{bottom:653.865000px;}
.y16{bottom:664.125000px;}
.y3d{bottom:679.785000px;}
.y15{bottom:690.045000px;}
.y3c{bottom:705.705000px;}
.y14{bottom:715.965000px;}
.y3b{bottom:731.625000px;}
.y13{bottom:741.705000px;}
.y3a{bottom:757.365000px;}
.y12{bottom:768.705000px;}
.y51{bottom:783.285000px;}
.y39{bottom:792.105000px;}
.y11{bottom:795.705000px;}
.y50{bottom:809.205000px;}
.y38{bottom:818.205000px;}
.y10{bottom:825.585000px;}
.y4f{bottom:835.125000px;}
.y37{bottom:843.945000px;}
.yf{bottom:851.685000px;}
.y4e{bottom:860.865000px;}
.y36{bottom:869.865000px;}
.ye{bottom:877.470000px;}
.y4d{bottom:886.830000px;}
.y35{bottom:895.830000px;}
.yd{bottom:909.510000px;}
.y4c{bottom:912.750000px;}
.y34{bottom:921.750000px;}
.yc{bottom:930.930000px;}
.y4b{bottom:947.310000px;}
.y33{bottom:947.490000px;}
.yb{bottom:956.670000px;}
.y32{bottom:973.410000px;}
.ya{bottom:982.590000px;}
.y31{bottom:999.330000px;}
.y9{bottom:1017.330000px;}
.y30{bottom:1025.250000px;}
.y69{bottom:1027.770000px;}
.y8{bottom:1043.250000px;}
.y2f{bottom:1050.990000px;}
.y68{bottom:1053.690000px;}
.y7{bottom:1063.950000px;}
.y2e{bottom:1076.910000px;}
.y67{bottom:1079.430000px;}
.y6{bottom:1092.930000px;}
.y2d{bottom:1102.830000px;}
.y66{bottom:1105.350000px;}
.y5{bottom:1126.590000px;}
.y2c{bottom:1129.650000px;}
.y65{bottom:1131.270000px;}
.y3{bottom:1149.480000px;}
.y2{bottom:1170.720000px;}
.y1{bottom:1193.040000px;}
.h9{height:34.855313px;}
.h7{height:37.771172px;}
.hf{height:38.158594px;}
.h3{height:53.302500px;}
.ha{height:53.573906px;}
.h4{height:54.864844px;}
.hb{height:58.651172px;}
.h6{height:59.038594px;}
.he{height:59.158594px;}
.h8{height:60.226875px;}
.h12{height:61.423863px;}
.h10{height:64.546875px;}
.hd{height:66.757500px;}
.h11{height:70.664062px;}
.h2{height:72.562500px;}
.hc{height:76.317188px;}
.h5{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x2{left:112.895987px;}
.x5{left:135.035987px;}
.x6{left:162.029987px;}
.x3{left:394.814987px;}
.x4{left:598.424987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.069867pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000001pt;}
.lsb{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.069120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.536000pt;}
.ls5{letter-spacing:9.114880pt;}
.ls2{letter-spacing:11.040000pt;}
.ls6{letter-spacing:12.960000pt;}
.ls12{letter-spacing:40.891307pt;}
.ws9{word-spacing:-64.000000pt;}
.wsa{word-spacing:-45.370133pt;}
.ws6{word-spacing:-16.000001pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-8.651520pt;}
.ws0{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-6.080000pt;}
._17{margin-left:-5.005867pt;}
._b{margin-left:-4.090240pt;}
._3{margin-left:-3.175680pt;}
._2{margin-left:-1.992533pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.653333pt;}
._7{width:3.083520pt;}
._8{width:4.037120pt;}
._a{width:5.778347pt;}
._9{width:6.852480pt;}
._6{width:8.503680pt;}
._5{width:10.036693pt;}
._4{width:11.521493pt;}
._15{width:12.909227pt;}
._16{width:14.395520pt;}
._11{width:15.723520pt;}
._f{width:16.991787pt;}
._10{width:17.908053pt;}
._18{width:18.963200pt;}
._e{width:19.920000pt;}
._c{width:20.929280pt;}
._d{width:22.027307pt;}
._12{width:30.272000pt;}
._13{width:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:45.440000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.040000pt;}
.y2b{bottom:101.312000pt;}
.y4a{bottom:105.312000pt;}
.y64{bottom:108.672000pt;}
.y2a{bottom:126.592000pt;}
.y63{bottom:131.712000pt;}
.y49{bottom:132.832000pt;}
.y29{bottom:151.066667pt;}
.y62{bottom:154.746667pt;}
.y48{bottom:160.666667pt;}
.y28{bottom:174.106667pt;}
.y61{bottom:177.626667pt;}
.y47{bottom:188.666667pt;}
.y27{bottom:196.986667pt;}
.y60{bottom:200.666667pt;}
.y46{bottom:216.186667pt;}
.y26{bottom:220.026667pt;}
.y5f{bottom:223.706667pt;}
.y25{bottom:243.066667pt;}
.y45{bottom:243.866667pt;}
.y5e{bottom:246.746667pt;}
.y24{bottom:266.106667pt;}
.y5d{bottom:269.626667pt;}
.y44{bottom:271.386667pt;}
.y23{bottom:288.986667pt;}
.y5c{bottom:292.666667pt;}
.y43{bottom:299.106667pt;}
.y22{bottom:312.066667pt;}
.y5b{bottom:315.746667pt;}
.y42{bottom:321.346667pt;}
.y21{bottom:335.106667pt;}
.y5a{bottom:339.586667pt;}
.y20{bottom:357.986667pt;}
.y59{bottom:363.746667pt;}
.y1f{bottom:381.026667pt;}
.y58{bottom:386.946667pt;}
.y1e{bottom:404.866667pt;}
.y57{bottom:409.986667pt;}
.y1d{bottom:429.346667pt;}
.y56{bottom:433.026667pt;}
.y1c{bottom:452.386667pt;}
.y55{bottom:456.066667pt;}
.y1b{bottom:475.426667pt;}
.y54{bottom:478.946667pt;}
.y1a{bottom:498.306667pt;}
.y53{bottom:502.786667pt;}
.y41{bottom:516.866667pt;}
.y19{bottom:521.346667pt;}
.y52{bottom:535.106667pt;}
.y40{bottom:535.266667pt;}
.y18{bottom:544.413333pt;}
.y3f{bottom:558.333333pt;}
.y17{bottom:567.453333pt;}
.y3e{bottom:581.213333pt;}
.y16{bottom:590.333333pt;}
.y3d{bottom:604.253333pt;}
.y15{bottom:613.373333pt;}
.y3c{bottom:627.293333pt;}
.y14{bottom:636.413333pt;}
.y3b{bottom:650.333333pt;}
.y13{bottom:659.293333pt;}
.y3a{bottom:673.213333pt;}
.y12{bottom:683.293333pt;}
.y51{bottom:696.253333pt;}
.y39{bottom:704.093333pt;}
.y11{bottom:707.293333pt;}
.y50{bottom:719.293333pt;}
.y38{bottom:727.293333pt;}
.y10{bottom:733.853333pt;}
.y4f{bottom:742.333333pt;}
.y37{bottom:750.173333pt;}
.yf{bottom:757.053333pt;}
.y4e{bottom:765.213333pt;}
.y36{bottom:773.213333pt;}
.ye{bottom:779.973333pt;}
.y4d{bottom:788.293333pt;}
.y35{bottom:796.293333pt;}
.yd{bottom:808.453333pt;}
.y4c{bottom:811.333333pt;}
.y34{bottom:819.333333pt;}
.yc{bottom:827.493333pt;}
.y4b{bottom:842.053333pt;}
.y33{bottom:842.213333pt;}
.yb{bottom:850.373333pt;}
.y32{bottom:865.253333pt;}
.ya{bottom:873.413333pt;}
.y31{bottom:888.293333pt;}
.y9{bottom:904.293333pt;}
.y30{bottom:911.333333pt;}
.y69{bottom:913.573333pt;}
.y8{bottom:927.333333pt;}
.y2f{bottom:934.213333pt;}
.y68{bottom:936.613333pt;}
.y7{bottom:945.733333pt;}
.y2e{bottom:957.253333pt;}
.y67{bottom:959.493333pt;}
.y6{bottom:971.493333pt;}
.y2d{bottom:980.293333pt;}
.y66{bottom:982.533333pt;}
.y5{bottom:1001.413333pt;}
.y2c{bottom:1004.133333pt;}
.y65{bottom:1005.573333pt;}
.y3{bottom:1021.760000pt;}
.y2{bottom:1040.640000pt;}
.y1{bottom:1060.480000pt;}
.h9{height:30.982500pt;}
.h7{height:33.574375pt;}
.hf{height:33.918750pt;}
.h3{height:47.380000pt;}
.ha{height:47.621250pt;}
.h4{height:48.768750pt;}
.hb{height:52.134375pt;}
.h6{height:52.478750pt;}
.he{height:52.585417pt;}
.h8{height:53.535000pt;}
.h12{height:54.598989pt;}
.h10{height:57.375000pt;}
.hd{height:59.340000pt;}
.h11{height:62.812500pt;}
.h2{height:64.500000pt;}
.hc{height:67.837500pt;}
.h5{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:100.351988pt;}
.x5{left:120.031988pt;}
.x6{left:144.026655pt;}
.x3{left:350.946655pt;}
.x4{left:531.933322pt;}
}




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