
    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_6b0bc1dd5c0c864bd26878df.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_d6947ab887640c8cfa7948e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.929199;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_06aab99b7b1ab70f5edf2065.woff')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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_2119b8ddb9040617987294b0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_006c7d76a712257edbe348ee.woff')format("woff");}.ff5{font-family:ff5;line-height:0.913086;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_e814692b85ef2010a08126cc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_4f6fed3aa6f82afe2caa76e0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_54c36bd47b20f1205d19184f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_08cb64cc868ac5d730be032b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_4107fe90ce29b5513b2a5295.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_f41648046eaec45883033c8f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_c589d39feb538a3b3383041f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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:-59.328000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:107.280000px;}
.lsb{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.117600px;}
.ls13{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.037440px;}
.ls12{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.247800px;}
.lsa{letter-spacing:0.288000px;}
.ls6{letter-spacing:39.456000px;}
.ls3{letter-spacing:92.937024px;}
.ls4{letter-spacing:93.024000px;}
.ls2{letter-spacing:93.081024px;}
.ls7{letter-spacing:93.117024px;}
.ls1{letter-spacing:93.168000px;}
.ls5{letter-spacing:93.204000px;}
.ls17{letter-spacing:93.536064px;}
.ls16{letter-spacing:93.623040px;}
.ls15{letter-spacing:93.680064px;}
.ls14{letter-spacing:93.767040px;}
.ls10{letter-spacing:98.457984px;}
.lsf{letter-spacing:98.544960px;}
.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:-50.040000px;}
.ws7{word-spacing:-40.072032px;}
.ws1{word-spacing:-40.032000px;}
.wsb{word-spacing:-36.036000px;}
.wsc{word-spacing:-36.000000px;}
.wse{word-spacing:-35.964000px;}
.ws9{word-spacing:-0.560256px;}
.wsa{word-spacing:-0.540240px;}
.ws5{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.084240px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.079656px;}
.ws8{word-spacing:1.884000px;}
.ws6{word-spacing:40.032000px;}
.ws3{word-spacing:40.320000px;}
._3{margin-left:-2.159424px;}
._1{margin-left:-1.009008px;}
._0{width:1.439424px;}
._4{width:41.052000px;}
._5{width:698.868720px;}
._6{width:1885.895280px;}
._2{width:2287.680576px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:84.240000px;}
.fs9{font-size:84.384000px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs8{font-size:108.000000px;}
.fsd{font-size:138.240000px;}
.fse{font-size:138.384000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs7{font-size:180.000000px;}
.fsc{font-size:204.480000px;}
.fs5{font-size:216.000000px;}
.fs6{font-size:216.144000px;}
.fs1{font-size:239.760000px;}
.fs0{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:32.400000px;}
.y12{bottom:42.084000px;}
.y6{bottom:43.020000px;}
.y50{bottom:57.852000px;}
.y66{bottom:68.940000px;}
.y5e{bottom:81.720000px;}
.y58{bottom:84.312000px;}
.y7b{bottom:91.800000px;}
.y1b{bottom:92.700000px;}
.y3b{bottom:101.232000px;}
.y1a{bottom:111.168000px;}
.y4f{bottom:111.852000px;}
.y25{bottom:118.800000px;}
.y65{bottom:122.940000px;}
.y6e{bottom:125.496000px;}
.y7a{bottom:126.360000px;}
.y5{bottom:130.212000px;}
.y48{bottom:130.356000px;}
.y31{bottom:135.360000px;}
.y5d{bottom:135.720000px;}
.y57{bottom:138.348000px;}
.y3a{bottom:144.432000px;}
.y3d{bottom:153.720000px;}
.y19{bottom:154.410000px;}
.y79{bottom:160.950000px;}
.y4e{bottom:165.885000px;}
.y4{bottom:173.415000px;}
.y64{bottom:176.970000px;}
.y30{bottom:178.920000px;}
.y6d{bottom:179.490000px;}
.y23{bottom:180.390000px;}
.y47{bottom:184.350000px;}
.y39{bottom:187.635000px;}
.y5c{bottom:189.720000px;}
.y56{bottom:192.345000px;}
.y78{bottom:195.510000px;}
.y11{bottom:196.950000px;}
.y18{bottom:197.610000px;}
.ya{bottom:206.670000px;}
.y22{bottom:214.950000px;}
.y4d{bottom:219.885000px;}
.y2f{bottom:222.150000px;}
.y77{bottom:230.070000px;}
.y38{bottom:230.865000px;}
.y63{bottom:230.970000px;}
.y6c{bottom:233.535000px;}
.y46{bottom:238.395000px;}
.y10{bottom:240.150000px;}
.y17{bottom:240.810000px;}
.y24{bottom:241.380000px;}
.y5b{bottom:243.750000px;}
.y55{bottom:246.390000px;}
.y21{bottom:249.555000px;}
.y2a{bottom:254.880000px;}
.y76{bottom:264.630000px;}
.y2e{bottom:265.350000px;}
.y40{bottom:265.395000px;}
.y3{bottom:270.150000px;}
.y9{bottom:271.470000px;}
.y4c{bottom:273.885000px;}
.y37{bottom:274.065000px;}
.yf{bottom:283.350000px;}
.y16{bottom:284.040000px;}
.y20{bottom:284.115000px;}
.y62{bottom:284.970000px;}
.y6b{bottom:287.535000px;}
.y45{bottom:292.395000px;}
.y5a{bottom:297.750000px;}
.y29{bottom:298.110000px;}
.y75{bottom:299.235000px;}
.y54{bottom:300.390000px;}
.y2d{bottom:308.550000px;}
.y36{bottom:317.265000px;}
.y1f{bottom:318.675000px;}
.ye{bottom:326.595000px;}
.y15{bottom:327.240000px;}
.y4b{bottom:327.930000px;}
.y3f{bottom:329.685000px;}
.y74{bottom:333.795000px;}
.y8{bottom:336.315000px;}
.y61{bottom:339.015000px;}
.y28{bottom:341.310000px;}
.y6a{bottom:341.565000px;}
.y2{bottom:342.150000px;}
.y44{bottom:346.425000px;}
.y2c{bottom:351.795000px;}
.y1e{bottom:353.235000px;}
.y53{bottom:354.420000px;}
.y35{bottom:360.510000px;}
.y73{bottom:368.355000px;}
.yd{bottom:369.795000px;}
.y14{bottom:370.470000px;}
.y4a{bottom:381.930000px;}
.y27{bottom:384.510000px;}
.y1d{bottom:387.825000px;}
.y60{bottom:393.015000px;}
.y2b{bottom:394.995000px;}
.y69{bottom:395.565000px;}
.y43{bottom:400.425000px;}
.y7{bottom:401.115000px;}
.y72{bottom:402.945000px;}
.y34{bottom:403.710000px;}
.y59{bottom:405.795000px;}
.y52{bottom:408.420000px;}
.yc{bottom:412.995000px;}
.y1{bottom:414.180000px;}
.y1c{bottom:422.385000px;}
.y26{bottom:427.755000px;}
.y13{bottom:431.670000px;}
.y49{bottom:435.960000px;}
.y71{bottom:437.505000px;}
.y33{bottom:446.910000px;}
.y5f{bottom:447.045000px;}
.y68{bottom:449.565000px;}
.y42{bottom:454.470000px;}
.y51{bottom:462.420000px;}
.y70{bottom:472.065000px;}
.yb{bottom:502.350000px;}
.y3e{bottom:515.730000px;}
.y67{bottom:515.985000px;}
.y41{bottom:520.845000px;}
.y32{bottom:523.725000px;}
.y6f{bottom:523.875000px;}
.h5{height:61.329023px;}
.hc{height:61.433859px;}
.ha{height:100.548000px;}
.h3{height:105.257812px;}
.h4{height:105.363070px;}
.hf{height:109.757812px;}
.h10{height:126.351562px;}
.he{height:126.477914px;}
.h8{height:131.572266px;}
.hb{height:145.260000px;}
.hd{height:149.466094px;}
.h6{height:157.886719px;}
.h7{height:157.991977px;}
.h9{height:168.609023px;}
.h2{height:175.254258px;}
.h1{height:175.359516px;}
.h0{height:607.500000px;}
.w2{width:356.760000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x16{left:60.083984px;}
.x13{left:65.843984px;}
.x15{left:75.131984px;}
.x10{left:87.047984px;}
.x5{left:95.039984px;}
.xd{left:100.440000px;}
.x6{left:104.039984px;}
.x11{left:109.979984px;}
.x1{left:121.355984px;}
.x2{left:127.259984px;}
.x4{left:143.387984px;}
.x7{left:149.075984px;}
.xe{left:160.995000px;}
.x18{left:166.319984px;}
.x14{left:292.244984px;}
.x17{left:532.694984px;}
.xb{left:535.529984px;}
.x19{left:537.734984px;}
.x8{left:550.874984px;}
.x9{left:559.874984px;}
.xc{left:580.574984px;}
.x1a{left:582.014984px;}
.xa{left:604.874984px;}
.x12{left:1014.449984px;}
.xf{left:1016.459984px;}
.x3{left:1035.104984px;}
@media print{
.v2{vertical-align:-52.736000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:95.360000pt;}
.lsb{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.104533pt;}
.ls13{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.033280pt;}
.ls12{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.220267pt;}
.lsa{letter-spacing:0.256000pt;}
.ls6{letter-spacing:35.072000pt;}
.ls3{letter-spacing:82.610688pt;}
.ls4{letter-spacing:82.688000pt;}
.ls2{letter-spacing:82.738688pt;}
.ls7{letter-spacing:82.770688pt;}
.ls1{letter-spacing:82.816000pt;}
.ls5{letter-spacing:82.848000pt;}
.ls17{letter-spacing:83.143168pt;}
.ls16{letter-spacing:83.220480pt;}
.ls15{letter-spacing:83.271168pt;}
.ls14{letter-spacing:83.348480pt;}
.ls10{letter-spacing:87.518208pt;}
.lsf{letter-spacing:87.595520pt;}
.ws2{word-spacing:-44.480000pt;}
.ws7{word-spacing:-35.619584pt;}
.ws1{word-spacing:-35.584000pt;}
.wsb{word-spacing:-32.032000pt;}
.wsc{word-spacing:-32.000000pt;}
.wse{word-spacing:-31.968000pt;}
.ws9{word-spacing:-0.498005pt;}
.wsa{word-spacing:-0.480213pt;}
.ws5{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.074880pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.070805pt;}
.ws8{word-spacing:1.674667pt;}
.ws6{word-spacing:35.584000pt;}
.ws3{word-spacing:35.840000pt;}
._3{margin-left:-1.919488pt;}
._1{margin-left:-0.896896pt;}
._0{width:1.279488pt;}
._4{width:36.490667pt;}
._5{width:621.216640pt;}
._6{width:1676.351360pt;}
._2{width:2033.493845pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:75.008000pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs8{font-size:96.000000pt;}
.fsd{font-size:122.880000pt;}
.fse{font-size:123.008000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs7{font-size:160.000000pt;}
.fsc{font-size:181.760000pt;}
.fs5{font-size:192.000000pt;}
.fs6{font-size:192.128000pt;}
.fs1{font-size:213.120000pt;}
.fs0{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:28.800000pt;}
.y12{bottom:37.408000pt;}
.y6{bottom:38.240000pt;}
.y50{bottom:51.424000pt;}
.y66{bottom:61.280000pt;}
.y5e{bottom:72.640000pt;}
.y58{bottom:74.944000pt;}
.y7b{bottom:81.600000pt;}
.y1b{bottom:82.400000pt;}
.y3b{bottom:89.984000pt;}
.y1a{bottom:98.816000pt;}
.y4f{bottom:99.424000pt;}
.y25{bottom:105.600000pt;}
.y65{bottom:109.280000pt;}
.y6e{bottom:111.552000pt;}
.y7a{bottom:112.320000pt;}
.y5{bottom:115.744000pt;}
.y48{bottom:115.872000pt;}
.y31{bottom:120.320000pt;}
.y5d{bottom:120.640000pt;}
.y57{bottom:122.976000pt;}
.y3a{bottom:128.384000pt;}
.y3d{bottom:136.640000pt;}
.y19{bottom:137.253333pt;}
.y79{bottom:143.066667pt;}
.y4e{bottom:147.453333pt;}
.y4{bottom:154.146667pt;}
.y64{bottom:157.306667pt;}
.y30{bottom:159.040000pt;}
.y6d{bottom:159.546667pt;}
.y23{bottom:160.346667pt;}
.y47{bottom:163.866667pt;}
.y39{bottom:166.786667pt;}
.y5c{bottom:168.640000pt;}
.y56{bottom:170.973333pt;}
.y78{bottom:173.786667pt;}
.y11{bottom:175.066667pt;}
.y18{bottom:175.653333pt;}
.ya{bottom:183.706667pt;}
.y22{bottom:191.066667pt;}
.y4d{bottom:195.453333pt;}
.y2f{bottom:197.466667pt;}
.y77{bottom:204.506667pt;}
.y38{bottom:205.213333pt;}
.y63{bottom:205.306667pt;}
.y6c{bottom:207.586667pt;}
.y46{bottom:211.906667pt;}
.y10{bottom:213.466667pt;}
.y17{bottom:214.053333pt;}
.y24{bottom:214.560000pt;}
.y5b{bottom:216.666667pt;}
.y55{bottom:219.013333pt;}
.y21{bottom:221.826667pt;}
.y2a{bottom:226.560000pt;}
.y76{bottom:235.226667pt;}
.y2e{bottom:235.866667pt;}
.y40{bottom:235.906667pt;}
.y3{bottom:240.133333pt;}
.y9{bottom:241.306667pt;}
.y4c{bottom:243.453333pt;}
.y37{bottom:243.613333pt;}
.yf{bottom:251.866667pt;}
.y16{bottom:252.480000pt;}
.y20{bottom:252.546667pt;}
.y62{bottom:253.306667pt;}
.y6b{bottom:255.586667pt;}
.y45{bottom:259.906667pt;}
.y5a{bottom:264.666667pt;}
.y29{bottom:264.986667pt;}
.y75{bottom:265.986667pt;}
.y54{bottom:267.013333pt;}
.y2d{bottom:274.266667pt;}
.y36{bottom:282.013333pt;}
.y1f{bottom:283.266667pt;}
.ye{bottom:290.306667pt;}
.y15{bottom:290.880000pt;}
.y4b{bottom:291.493333pt;}
.y3f{bottom:293.053333pt;}
.y74{bottom:296.706667pt;}
.y8{bottom:298.946667pt;}
.y61{bottom:301.346667pt;}
.y28{bottom:303.386667pt;}
.y6a{bottom:303.613333pt;}
.y2{bottom:304.133333pt;}
.y44{bottom:307.933333pt;}
.y2c{bottom:312.706667pt;}
.y1e{bottom:313.986667pt;}
.y53{bottom:315.040000pt;}
.y35{bottom:320.453333pt;}
.y73{bottom:327.426667pt;}
.yd{bottom:328.706667pt;}
.y14{bottom:329.306667pt;}
.y4a{bottom:339.493333pt;}
.y27{bottom:341.786667pt;}
.y1d{bottom:344.733333pt;}
.y60{bottom:349.346667pt;}
.y2b{bottom:351.106667pt;}
.y69{bottom:351.613333pt;}
.y43{bottom:355.933333pt;}
.y7{bottom:356.546667pt;}
.y72{bottom:358.173333pt;}
.y34{bottom:358.853333pt;}
.y59{bottom:360.706667pt;}
.y52{bottom:363.040000pt;}
.yc{bottom:367.106667pt;}
.y1{bottom:368.160000pt;}
.y1c{bottom:375.453333pt;}
.y26{bottom:380.226667pt;}
.y13{bottom:383.706667pt;}
.y49{bottom:387.520000pt;}
.y71{bottom:388.893333pt;}
.y33{bottom:397.253333pt;}
.y5f{bottom:397.373333pt;}
.y68{bottom:399.613333pt;}
.y42{bottom:403.973333pt;}
.y51{bottom:411.040000pt;}
.y70{bottom:419.613333pt;}
.yb{bottom:446.533333pt;}
.y3e{bottom:458.426667pt;}
.y67{bottom:458.653333pt;}
.y41{bottom:462.973333pt;}
.y32{bottom:465.533333pt;}
.y6f{bottom:465.666667pt;}
.h5{height:54.514687pt;}
.hc{height:54.607875pt;}
.ha{height:89.376000pt;}
.h3{height:93.562500pt;}
.h4{height:93.656062pt;}
.hf{height:97.562500pt;}
.h10{height:112.312500pt;}
.he{height:112.424813pt;}
.h8{height:116.953125pt;}
.hb{height:129.120000pt;}
.hd{height:132.858750pt;}
.h6{height:140.343750pt;}
.h7{height:140.437313pt;}
.h9{height:149.874687pt;}
.h2{height:155.781562pt;}
.h1{height:155.875125pt;}
.h0{height:540.000000pt;}
.w2{width:317.120000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x16{left:53.407986pt;}
.x13{left:58.527986pt;}
.x15{left:66.783986pt;}
.x10{left:77.375986pt;}
.x5{left:84.479986pt;}
.xd{left:89.280000pt;}
.x6{left:92.479986pt;}
.x11{left:97.759986pt;}
.x1{left:107.871986pt;}
.x2{left:113.119986pt;}
.x4{left:127.455986pt;}
.x7{left:132.511986pt;}
.xe{left:143.106667pt;}
.x18{left:147.839986pt;}
.x14{left:259.773319pt;}
.x17{left:473.506652pt;}
.xb{left:476.026652pt;}
.x19{left:477.986652pt;}
.x8{left:489.666652pt;}
.x9{left:497.666652pt;}
.xc{left:516.066652pt;}
.x1a{left:517.346652pt;}
.xa{left:537.666652pt;}
.x12{left:901.733319pt;}
.xf{left:903.519986pt;}
.x3{left:920.093319pt;}
}




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