
    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_903d313a5f401f75d3058403.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ddbddaeeb534522bae0c0d38.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_138f882352d2aecadcad6265.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_46ff582b9d6fae7c461e11f1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064453;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_a8045b64da1d18cfabfd3657.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a651efe776951ddc64e7a78d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_519e829d5f4f02f760a248fc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_a35bed3fdd1f864b0369f362.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_37a2ef7298ac76a576c43f37.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.684000px;}
.ls8{letter-spacing:-0.288000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.540000px;}
.ls1{letter-spacing:8.640000px;}
.lsa{letter-spacing:10.620000px;}
.lsd{letter-spacing:13.500000px;}
.lse{letter-spacing:14.940000px;}
.lsf{letter-spacing:17.100000px;}
.ls9{letter-spacing:25.020000px;}
.ls4{letter-spacing:25.380000px;}
.ls13{letter-spacing:28.800000px;}
.ls11{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.ls5{letter-spacing:48.960000px;}
.ls3{letter-spacing:57.600000px;}
.ls2{letter-spacing:64.080000px;}
.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;}
}
.ws3{word-spacing:-21.097440px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.498560px;}
._2{width:1.452000px;}
._e{width:2.863680px;}
._1c{width:3.929520px;}
._1d{width:5.193840px;}
._13{width:6.432000px;}
._14{width:7.536000px;}
._1{width:8.544000px;}
._25{width:9.754080px;}
._30{width:10.782720px;}
._32{width:11.962080px;}
._b{width:13.944000px;}
._6{width:15.048000px;}
._29{width:16.932240px;}
._3a{width:18.195840px;}
._12{width:19.762560px;}
._11{width:21.432000px;}
._39{width:22.523280px;}
._15{width:23.544000px;}
._c{width:24.840000px;}
._d{width:26.112000px;}
._16{width:27.258480px;}
._17{width:29.338320px;}
._37{width:30.449280px;}
._4{width:31.680000px;}
._3{width:32.904000px;}
._34{width:34.285680px;}
._18{width:35.549280px;}
._5{width:37.368000px;}
._3d{width:39.425040px;}
._3b{width:40.669440px;}
._31{width:41.783040px;}
._f{width:42.984000px;}
._3f{width:44.508960px;}
._22{width:45.662160px;}
._20{width:47.577840px;}
._10{width:49.320000px;}
._33{width:50.628240px;}
._2c{width:51.874080px;}
._40{width:53.931840px;}
._19{width:55.193040px;}
._a{width:56.602560px;}
._9{width:58.512000px;}
._1b{width:59.914080px;}
._38{width:61.242480px;}
._8{width:63.216000px;}
._7{width:64.800000px;}
._2a{width:66.312720px;}
._24{width:68.385120px;}
._2f{width:69.396000px;}
._1e{width:71.182800px;}
._1f{width:72.410880px;}
._23{width:74.029200px;}
._26{width:75.882480px;}
._3c{width:84.408480px;}
._28{width:85.485840px;}
._2d{width:88.620480px;}
._21{width:90.558000px;}
._3e{width:91.888080px;}
._1a{width:99.403200px;}
._2b{width:100.986000px;}
._27{width:105.787680px;}
._35{width:109.680480px;}
._36{width:110.842080px;}
._2e{width:245.373360px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y54{bottom:79.956000px;}
.y30{bottom:84.456000px;}
.y74{bottom:103.536000px;}
.y52{bottom:107.496000px;}
.y53{bottom:107.676000px;}
.y2f{bottom:112.176000px;}
.y73{bottom:131.256000px;}
.y51{bottom:135.216000px;}
.y81{bottom:137.196000px;}
.y2e{bottom:139.896000px;}
.y72{bottom:159.150000px;}
.y50{bottom:163.110000px;}
.y80{bottom:164.370000px;}
.y2d{bottom:167.790000px;}
.y7f{bottom:183.990000px;}
.y71{bottom:186.870000px;}
.y4f{bottom:190.830000px;}
.y2c{bottom:195.510000px;}
.y7e{bottom:204.690000px;}
.y70{bottom:214.590000px;}
.y4e{bottom:218.550000px;}
.y2b{bottom:223.230000px;}
.y7d{bottom:225.390000px;}
.y6f{bottom:242.490000px;}
.y7c{bottom:246.090000px;}
.y4d{bottom:246.450000px;}
.y2a{bottom:250.950000px;}
.y7b{bottom:266.790000px;}
.y6e{bottom:270.210000px;}
.y4c{bottom:274.170000px;}
.y29{bottom:278.850000px;}
.y7a{bottom:287.535000px;}
.y6d{bottom:297.975000px;}
.y4b{bottom:301.935000px;}
.y28{bottom:306.615000px;}
.y79{bottom:308.235000px;}
.y6c{bottom:325.695000px;}
.y78{bottom:328.935000px;}
.y27{bottom:329.475000px;}
.y4a{bottom:329.655000px;}
.y26{bottom:347.475000px;}
.y77{bottom:349.635000px;}
.y6b{bottom:353.595000px;}
.y49{bottom:357.555000px;}
.y25{bottom:368.175000px;}
.y76{bottom:370.335000px;}
.y6a{bottom:381.315000px;}
.y48{bottom:385.275000px;}
.y24{bottom:388.875000px;}
.y75{bottom:392.295000px;}
.y69{bottom:409.035000px;}
.y23{bottom:409.575000px;}
.y47{bottom:412.995000px;}
.y22{bottom:430.275000px;}
.y68{bottom:436.755000px;}
.y46{bottom:440.895000px;}
.y21{bottom:450.975000px;}
.y67{bottom:464.655000px;}
.y45{bottom:468.615000px;}
.y20{bottom:470.955000px;}
.y1f{bottom:488.955000px;}
.y66{bottom:492.375000px;}
.y44{bottom:496.335000px;}
.y1e{bottom:509.655000px;}
.y65{bottom:520.095000px;}
.y43{bottom:524.055000px;}
.y1d{bottom:530.355000px;}
.y64{bottom:547.995000px;}
.y1c{bottom:551.055000px;}
.y42{bottom:551.955000px;}
.y1b{bottom:571.785000px;}
.y63{bottom:575.745000px;}
.y41{bottom:579.705000px;}
.y1a{bottom:592.485000px;}
.y62{bottom:603.465000px;}
.y40{bottom:607.425000px;}
.y19{bottom:613.185000px;}
.y61{bottom:631.185000px;}
.y18{bottom:633.885000px;}
.y3f{bottom:635.145000px;}
.y17{bottom:654.585000px;}
.y60{bottom:659.085000px;}
.y3e{bottom:663.045000px;}
.y16{bottom:675.285000px;}
.y5f{bottom:686.805000px;}
.y3d{bottom:690.765000px;}
.y15{bottom:695.985000px;}
.y5e{bottom:715.785000px;}
.y14{bottom:716.685000px;}
.y3c{bottom:718.485000px;}
.y13{bottom:737.205000px;}
.y3b{bottom:746.385000px;}
.y12{bottom:757.905000px;}
.y3a{bottom:774.105000px;}
.y11{bottom:778.605000px;}
.y10{bottom:799.305000px;}
.y39{bottom:801.825000px;}
.yf{bottom:820.005000px;}
.y38{bottom:829.545000px;}
.y5d{bottom:829.725000px;}
.ye{bottom:840.705000px;}
.y37{bottom:857.490000px;}
.y5c{bottom:857.670000px;}
.yd{bottom:882.150000px;}
.y36{bottom:885.210000px;}
.y5b{bottom:885.390000px;}
.yc{bottom:902.850000px;}
.y35{bottom:912.930000px;}
.y5a{bottom:913.110000px;}
.yb{bottom:923.550000px;}
.y34{bottom:940.830000px;}
.y59{bottom:941.010000px;}
.ya{bottom:944.250000px;}
.y9{bottom:964.950000px;}
.y33{bottom:968.550000px;}
.y58{bottom:968.730000px;}
.y8{bottom:984.930000px;}
.y32{bottom:996.270000px;}
.y57{bottom:996.450000px;}
.y7{bottom:1003.470000px;}
.y31{bottom:1023.990000px;}
.y56{bottom:1024.170000px;}
.y6{bottom:1027.770000px;}
.y5{bottom:1051.890000px;}
.y55{bottom:1052.070000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.he{height:52.998047px;}
.ha{height:58.621992px;}
.hb{height:58.651172px;}
.h6{height:60.226875px;}
.h9{height:61.101562px;}
.h11{height:65.884219px;}
.h8{height:70.628906px;}
.h10{height:70.664062px;}
.h7{height:72.562500px;}
.h5{height:72.846211px;}
.hf{height:74.004654px;}
.hc{height:74.244727px;}
.h2{height:82.676953px;}
.hd{height:84.397852px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.xd{left:90.035987px;}
.xe{left:117.035987px;}
.x4{left:136.115987px;}
.xb{left:138.095987px;}
.xf{left:165.089987px;}
.x5{left:196.949987px;}
.x8{left:321.914987px;}
.x6{left:344.414987px;}
.xc{left:356.294987px;}
.xa{left:360.254987px;}
.x9{left:363.674987px;}
.x2{left:409.035000px;}
.x7{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.608000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls1{letter-spacing:7.680000pt;}
.lsa{letter-spacing:9.440000pt;}
.lsd{letter-spacing:12.000000pt;}
.lse{letter-spacing:13.280000pt;}
.lsf{letter-spacing:15.200000pt;}
.ls9{letter-spacing:22.240000pt;}
.ls4{letter-spacing:22.560000pt;}
.ls13{letter-spacing:25.600000pt;}
.ls11{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls5{letter-spacing:43.520000pt;}
.ls3{letter-spacing:51.200000pt;}
.ls2{letter-spacing:56.960000pt;}
.ws3{word-spacing:-18.753280pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.332053pt;}
._2{width:1.290667pt;}
._e{width:2.545493pt;}
._1c{width:3.492907pt;}
._1d{width:4.616747pt;}
._13{width:5.717333pt;}
._14{width:6.698667pt;}
._1{width:7.594667pt;}
._25{width:8.670293pt;}
._30{width:9.584640pt;}
._32{width:10.632960pt;}
._b{width:12.394667pt;}
._6{width:13.376000pt;}
._29{width:15.050880pt;}
._3a{width:16.174080pt;}
._12{width:17.566720pt;}
._11{width:19.050667pt;}
._39{width:20.020693pt;}
._15{width:20.928000pt;}
._c{width:22.080000pt;}
._d{width:23.210667pt;}
._16{width:24.229760pt;}
._17{width:26.078507pt;}
._37{width:27.066027pt;}
._4{width:28.160000pt;}
._3{width:29.248000pt;}
._34{width:30.476160pt;}
._18{width:31.599360pt;}
._5{width:33.216000pt;}
._3d{width:35.044480pt;}
._3b{width:36.150613pt;}
._31{width:37.140480pt;}
._f{width:38.208000pt;}
._3f{width:39.563520pt;}
._22{width:40.588587pt;}
._20{width:42.291413pt;}
._10{width:43.840000pt;}
._33{width:45.002880pt;}
._2c{width:46.110293pt;}
._40{width:47.939413pt;}
._19{width:49.060480pt;}
._a{width:50.313387pt;}
._9{width:52.010667pt;}
._1b{width:53.256960pt;}
._38{width:54.437760pt;}
._8{width:56.192000pt;}
._7{width:57.600000pt;}
._2a{width:58.944640pt;}
._24{width:60.786773pt;}
._2f{width:61.685333pt;}
._1e{width:63.273600pt;}
._1f{width:64.365227pt;}
._23{width:65.803733pt;}
._26{width:67.451093pt;}
._3c{width:75.029760pt;}
._28{width:75.987413pt;}
._2d{width:78.773760pt;}
._21{width:80.496000pt;}
._3e{width:81.678293pt;}
._1a{width:88.358400pt;}
._2b{width:89.765333pt;}
._27{width:94.033493pt;}
._35{width:97.493760pt;}
._36{width:98.526293pt;}
._2e{width:218.109653pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y54{bottom:71.072000pt;}
.y30{bottom:75.072000pt;}
.y74{bottom:92.032000pt;}
.y52{bottom:95.552000pt;}
.y53{bottom:95.712000pt;}
.y2f{bottom:99.712000pt;}
.y73{bottom:116.672000pt;}
.y51{bottom:120.192000pt;}
.y81{bottom:121.952000pt;}
.y2e{bottom:124.352000pt;}
.y72{bottom:141.466667pt;}
.y50{bottom:144.986667pt;}
.y80{bottom:146.106667pt;}
.y2d{bottom:149.146667pt;}
.y7f{bottom:163.546667pt;}
.y71{bottom:166.106667pt;}
.y4f{bottom:169.626667pt;}
.y2c{bottom:173.786667pt;}
.y7e{bottom:181.946667pt;}
.y70{bottom:190.746667pt;}
.y4e{bottom:194.266667pt;}
.y2b{bottom:198.426667pt;}
.y7d{bottom:200.346667pt;}
.y6f{bottom:215.546667pt;}
.y7c{bottom:218.746667pt;}
.y4d{bottom:219.066667pt;}
.y2a{bottom:223.066667pt;}
.y7b{bottom:237.146667pt;}
.y6e{bottom:240.186667pt;}
.y4c{bottom:243.706667pt;}
.y29{bottom:247.866667pt;}
.y7a{bottom:255.586667pt;}
.y6d{bottom:264.866667pt;}
.y4b{bottom:268.386667pt;}
.y28{bottom:272.546667pt;}
.y79{bottom:273.986667pt;}
.y6c{bottom:289.506667pt;}
.y78{bottom:292.386667pt;}
.y27{bottom:292.866667pt;}
.y4a{bottom:293.026667pt;}
.y26{bottom:308.866667pt;}
.y77{bottom:310.786667pt;}
.y6b{bottom:314.306667pt;}
.y49{bottom:317.826667pt;}
.y25{bottom:327.266667pt;}
.y76{bottom:329.186667pt;}
.y6a{bottom:338.946667pt;}
.y48{bottom:342.466667pt;}
.y24{bottom:345.666667pt;}
.y75{bottom:348.706667pt;}
.y69{bottom:363.586667pt;}
.y23{bottom:364.066667pt;}
.y47{bottom:367.106667pt;}
.y22{bottom:382.466667pt;}
.y68{bottom:388.226667pt;}
.y46{bottom:391.906667pt;}
.y21{bottom:400.866667pt;}
.y67{bottom:413.026667pt;}
.y45{bottom:416.546667pt;}
.y20{bottom:418.626667pt;}
.y1f{bottom:434.626667pt;}
.y66{bottom:437.666667pt;}
.y44{bottom:441.186667pt;}
.y1e{bottom:453.026667pt;}
.y65{bottom:462.306667pt;}
.y43{bottom:465.826667pt;}
.y1d{bottom:471.426667pt;}
.y64{bottom:487.106667pt;}
.y1c{bottom:489.826667pt;}
.y42{bottom:490.626667pt;}
.y1b{bottom:508.253333pt;}
.y63{bottom:511.773333pt;}
.y41{bottom:515.293333pt;}
.y1a{bottom:526.653333pt;}
.y62{bottom:536.413333pt;}
.y40{bottom:539.933333pt;}
.y19{bottom:545.053333pt;}
.y61{bottom:561.053333pt;}
.y18{bottom:563.453333pt;}
.y3f{bottom:564.573333pt;}
.y17{bottom:581.853333pt;}
.y60{bottom:585.853333pt;}
.y3e{bottom:589.373333pt;}
.y16{bottom:600.253333pt;}
.y5f{bottom:610.493333pt;}
.y3d{bottom:614.013333pt;}
.y15{bottom:618.653333pt;}
.y5e{bottom:636.253333pt;}
.y14{bottom:637.053333pt;}
.y3c{bottom:638.653333pt;}
.y13{bottom:655.293333pt;}
.y3b{bottom:663.453333pt;}
.y12{bottom:673.693333pt;}
.y3a{bottom:688.093333pt;}
.y11{bottom:692.093333pt;}
.y10{bottom:710.493333pt;}
.y39{bottom:712.733333pt;}
.yf{bottom:728.893333pt;}
.y38{bottom:737.373333pt;}
.y5d{bottom:737.533333pt;}
.ye{bottom:747.293333pt;}
.y37{bottom:762.213333pt;}
.y5c{bottom:762.373333pt;}
.yd{bottom:784.133333pt;}
.y36{bottom:786.853333pt;}
.y5b{bottom:787.013333pt;}
.yc{bottom:802.533333pt;}
.y35{bottom:811.493333pt;}
.y5a{bottom:811.653333pt;}
.yb{bottom:820.933333pt;}
.y34{bottom:836.293333pt;}
.y59{bottom:836.453333pt;}
.ya{bottom:839.333333pt;}
.y9{bottom:857.733333pt;}
.y33{bottom:860.933333pt;}
.y58{bottom:861.093333pt;}
.y8{bottom:875.493333pt;}
.y32{bottom:885.573333pt;}
.y57{bottom:885.733333pt;}
.y7{bottom:891.973333pt;}
.y31{bottom:910.213333pt;}
.y56{bottom:910.373333pt;}
.y6{bottom:913.573333pt;}
.y5{bottom:935.013333pt;}
.y55{bottom:935.173333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.he{height:47.109375pt;}
.ha{height:52.108438pt;}
.hb{height:52.134375pt;}
.h6{height:53.535000pt;}
.h9{height:54.312500pt;}
.h11{height:58.563750pt;}
.h8{height:62.781250pt;}
.h10{height:62.812500pt;}
.h7{height:64.500000pt;}
.h5{height:64.752187pt;}
.hf{height:65.781915pt;}
.hc{height:65.995312pt;}
.h2{height:73.490625pt;}
.hd{height:75.020313pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.xd{left:80.031988pt;}
.xe{left:104.031988pt;}
.x4{left:120.991988pt;}
.xb{left:122.751988pt;}
.xf{left:146.746655pt;}
.x5{left:175.066655pt;}
.x8{left:286.146655pt;}
.x6{left:306.146655pt;}
.xc{left:316.706655pt;}
.xa{left:320.226655pt;}
.x9{left:323.266655pt;}
.x2{left:363.586667pt;}
.x7{left:396.866655pt;}
}




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