
    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_d606b5080906196d6aa1b4e7.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_f57a9ed1add587d92dba73cb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_f9748d9c2ca3c81b7293696f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f70d0b4c6c3f5a36d0426ed1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_508893b1fc92d08cbe092c27.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_20a6008da71e8d1e4c4b9579.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5d9313b1796ab2eaea701c38.woff')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-4.782000px;}
.ls19{letter-spacing:-1.134000px;}
.ls14{letter-spacing:-0.666000px;}
.ls17{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.153600px;}
.lsd{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.511800px;}
.ls5{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.587520px;}
.lsf{letter-spacing:0.978000px;}
.ls9{letter-spacing:0.984000px;}
.ls10{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.512000px;}
.ls13{letter-spacing:11.466720px;}
.lse{letter-spacing:22.986720px;}
.ls12{letter-spacing:41.850720px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.093600px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.274000px;}
.ws9{word-spacing:-13.806000px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1578.070080px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-930.967920px;}
._d{margin-left:-721.224720px;}
._e{margin-left:-693.074160px;}
._19{margin-left:-595.620000px;}
._1a{margin-left:-579.160800px;}
._a{margin-left:-574.927920px;}
._16{margin-left:-538.559640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._17{margin-left:-428.114160px;}
._f{margin-left:-182.160000px;}
._14{margin-left:-174.240000px;}
._15{margin-left:-159.807360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-143.280000px;}
._13{margin-left:-130.625280px;}
._12{margin-left:-129.600000px;}
._10{margin-left:-115.920000px;}
._18{margin-left:-66.240000px;}
._11{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._29{margin-left:-6.137040px;}
._4{margin-left:-5.071200px;}
._24{margin-left:-3.935760px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._25{width:3.824640px;}
._26{width:4.876800px;}
._23{width:6.154560px;}
._21{width:8.072640px;}
._22{width:10.049760px;}
._28{width:11.369760px;}
._27{width:12.968160px;}
._1f{width:14.568960px;}
._20{width:15.997680px;}
._1e{width:17.911440px;}
._2b{width:19.481760px;}
._1d{width:20.779920px;}
._2a{width:22.111200px;}
._2e{width:23.433840px;}
._2d{width:25.008000px;}
._2c{width:26.011200px;}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:59.940000px;}
.y81{bottom:91.656000px;}
.y9b{bottom:92.376000px;}
.y7b{bottom:101.556000px;}
.y80{bottom:111.456000px;}
.y9c{bottom:111.816000px;}
.y9a{bottom:112.176000px;}
.y33{bottom:115.236000px;}
.y7a{bottom:121.536000px;}
.y7f{bottom:131.616000px;}
.y99{bottom:131.976000px;}
.y32{bottom:135.036000px;}
.y79{bottom:141.336000px;}
.y7e{bottom:151.590000px;}
.y98{bottom:151.950000px;}
.y31{bottom:154.830000px;}
.y78{bottom:161.130000px;}
.y67{bottom:171.390000px;}
.y97{bottom:171.750000px;}
.y30{bottom:174.630000px;}
.y77{bottom:180.930000px;}
.y66{bottom:191.190000px;}
.y96{bottom:191.550000px;}
.y2f{bottom:194.430000px;}
.y76{bottom:200.730000px;}
.y65{bottom:210.990000px;}
.y95{bottom:211.350000px;}
.y2e{bottom:214.410000px;}
.y75{bottom:220.710000px;}
.y64{bottom:230.790000px;}
.y94{bottom:231.150000px;}
.y2d{bottom:234.210000px;}
.y74{bottom:240.510000px;}
.y63{bottom:250.770000px;}
.y2c{bottom:254.010000px;}
.y73{bottom:260.310000px;}
.y62{bottom:270.570000px;}
.y2b{bottom:273.810000px;}
.y72{bottom:280.110000px;}
.y93{bottom:281.370000px;}
.y61{bottom:290.370000px;}
.y2a{bottom:293.610000px;}
.y71{bottom:299.910000px;}
.y92{bottom:302.970000px;}
.y60{bottom:310.170000px;}
.y29{bottom:313.590000px;}
.y70{bottom:319.890000px;}
.y91{bottom:322.950000px;}
.y5f{bottom:330.015000px;}
.y28{bottom:333.435000px;}
.y6f{bottom:339.735000px;}
.y90{bottom:342.435000px;}
.y5e{bottom:349.995000px;}
.y27{bottom:353.235000px;}
.y6e{bottom:359.535000px;}
.y5d{bottom:369.795000px;}
.y8f{bottom:371.595000px;}
.y26{bottom:373.035000px;}
.y6d{bottom:379.335000px;}
.y5c{bottom:389.595000px;}
.y8e{bottom:391.395000px;}
.y25{bottom:392.835000px;}
.y6c{bottom:399.135000px;}
.y5b{bottom:409.395000px;}
.y8d{bottom:411.195000px;}
.y24{bottom:412.815000px;}
.y6b{bottom:418.755000px;}
.y5a{bottom:429.195000px;}
.y8c{bottom:430.815000px;}
.y23{bottom:432.615000px;}
.y6a{bottom:438.915000px;}
.y59{bottom:449.175000px;}
.y22{bottom:452.415000px;}
.y69{bottom:455.115000px;}
.y8b{bottom:459.975000px;}
.y58{bottom:468.975000px;}
.y21{bottom:472.215000px;}
.y8a{bottom:479.775000px;}
.y57{bottom:488.775000px;}
.y20{bottom:492.015000px;}
.y89{bottom:499.575000px;}
.y56{bottom:508.575000px;}
.y1f{bottom:511.995000px;}
.y88{bottom:519.375000px;}
.y55{bottom:528.375000px;}
.y1e{bottom:531.795000px;}
.y87{bottom:538.995000px;}
.y54{bottom:548.355000px;}
.y1d{bottom:551.595000px;}
.y53{bottom:568.155000px;}
.y1c{bottom:571.395000px;}
.y52{bottom:587.955000px;}
.y1b{bottom:590.835000px;}
.y51{bottom:607.785000px;}
.y1a{bottom:610.845000px;}
.y50{bottom:627.585000px;}
.y19{bottom:633.165000px;}
.y86{bottom:647.205000px;}
.y4f{bottom:647.565000px;}
.y18{bottom:661.965000px;}
.y85{bottom:667.005000px;}
.y4e{bottom:667.365000px;}
.y17{bottom:681.945000px;}
.y4d{bottom:687.165000px;}
.y16{bottom:701.745000px;}
.y4c{bottom:706.965000px;}
.y15{bottom:721.545000px;}
.y4b{bottom:726.765000px;}
.y14{bottom:741.345000px;}
.y4a{bottom:746.745000px;}
.y13{bottom:761.145000px;}
.y49{bottom:766.545000px;}
.y68{bottom:769.425000px;}
.y12{bottom:781.125000px;}
.y48{bottom:785.985000px;}
.y7d{bottom:786.345000px;}
.y11{bottom:800.925000px;}
.y47{bottom:806.145000px;}
.y10{bottom:820.725000px;}
.y46{bottom:825.945000px;}
.yf{bottom:840.525000px;}
.y84{bottom:845.565000px;}
.y45{bottom:845.925000px;}
.ye{bottom:860.505000px;}
.y83{bottom:865.410000px;}
.y44{bottom:865.770000px;}
.yd{bottom:882.510000px;}
.y43{bottom:885.570000px;}
.yc{bottom:902.310000px;}
.y42{bottom:905.370000px;}
.yb{bottom:922.650000px;}
.y41{bottom:925.170000px;}
.ya{bottom:943.710000px;}
.y40{bottom:945.150000px;}
.y3f{bottom:964.950000px;}
.y9{bottom:967.110000px;}
.y3e{bottom:984.750000px;}
.y8{bottom:998.790000px;}
.y3d{bottom:1004.550000px;}
.y3c{bottom:1024.350000px;}
.y7{bottom:1030.650000px;}
.y3b{bottom:1044.330000px;}
.y3a{bottom:1064.130000px;}
.y5{bottom:1069.530000px;}
.y7c{bottom:1083.570000px;}
.y39{bottom:1083.930000px;}
.y4{bottom:1100.310000px;}
.y38{bottom:1103.730000px;}
.y37{bottom:1123.530000px;}
.y3{bottom:1131.300000px;}
.y82{bottom:1143.180000px;}
.y36{bottom:1143.540000px;}
.y2{bottom:1162.080000px;}
.y35{bottom:1172.700000px;}
.y1{bottom:1193.040000px;}
.y34{bottom:1194.480000px;}
.ha{height:46.736719px;}
.h9{height:53.573906px;}
.h8{height:58.651172px;}
.hb{height:61.423863px;}
.h6{height:62.211094px;}
.h3{height:65.010937px;}
.hc{height:65.884219px;}
.h4{height:67.565039px;}
.h7{height:68.956875px;}
.h2{height:74.953125px;}
.h5{height:93.983203px;}
.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:54.179987px;}
.x5{left:80.999987px;}
.x6{left:108.035987px;}
.x4{left:734.549987px;}
.x3{left:757.049987px;}
.x2{left:795.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-4.250667pt;}
.ls19{letter-spacing:-1.008000pt;}
.ls14{letter-spacing:-0.592000pt;}
.ls17{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.136533pt;}
.lsd{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.454933pt;}
.ls5{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.522240pt;}
.lsf{letter-spacing:0.869333pt;}
.ls9{letter-spacing:0.874667pt;}
.ls10{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls13{letter-spacing:10.192640pt;}
.lse{letter-spacing:20.432640pt;}
.ls12{letter-spacing:37.200640pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.688000pt;}
.ws9{word-spacing:-12.272000pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1402.728960pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-827.527040pt;}
._d{margin-left:-641.088640pt;}
._e{margin-left:-616.065920pt;}
._19{margin-left:-529.440000pt;}
._1a{margin-left:-514.809600pt;}
._a{margin-left:-511.047040pt;}
._16{margin-left:-478.719680pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._17{margin-left:-380.545920pt;}
._f{margin-left:-161.920000pt;}
._14{margin-left:-154.880000pt;}
._15{margin-left:-142.050987pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-127.360000pt;}
._13{margin-left:-116.111360pt;}
._12{margin-left:-115.200000pt;}
._10{margin-left:-103.040000pt;}
._18{margin-left:-58.880000pt;}
._11{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._29{margin-left:-5.455147pt;}
._4{margin-left:-4.507733pt;}
._24{margin-left:-3.498453pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._25{width:3.399680pt;}
._26{width:4.334933pt;}
._23{width:5.470720pt;}
._21{width:7.175680pt;}
._22{width:8.933120pt;}
._28{width:10.106453pt;}
._27{width:11.527253pt;}
._1f{width:12.950187pt;}
._20{width:14.220160pt;}
._1e{width:15.921280pt;}
._2b{width:17.317120pt;}
._1d{width:18.471040pt;}
._2a{width:19.654400pt;}
._2e{width:20.830080pt;}
._2d{width:22.229333pt;}
._2c{width:23.121067pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.280000pt;}
.y81{bottom:81.472000pt;}
.y9b{bottom:82.112000pt;}
.y7b{bottom:90.272000pt;}
.y80{bottom:99.072000pt;}
.y9c{bottom:99.392000pt;}
.y9a{bottom:99.712000pt;}
.y33{bottom:102.432000pt;}
.y7a{bottom:108.032000pt;}
.y7f{bottom:116.992000pt;}
.y99{bottom:117.312000pt;}
.y32{bottom:120.032000pt;}
.y79{bottom:125.632000pt;}
.y7e{bottom:134.746667pt;}
.y98{bottom:135.066667pt;}
.y31{bottom:137.626667pt;}
.y78{bottom:143.226667pt;}
.y67{bottom:152.346667pt;}
.y97{bottom:152.666667pt;}
.y30{bottom:155.226667pt;}
.y77{bottom:160.826667pt;}
.y66{bottom:169.946667pt;}
.y96{bottom:170.266667pt;}
.y2f{bottom:172.826667pt;}
.y76{bottom:178.426667pt;}
.y65{bottom:187.546667pt;}
.y95{bottom:187.866667pt;}
.y2e{bottom:190.586667pt;}
.y75{bottom:196.186667pt;}
.y64{bottom:205.146667pt;}
.y94{bottom:205.466667pt;}
.y2d{bottom:208.186667pt;}
.y74{bottom:213.786667pt;}
.y63{bottom:222.906667pt;}
.y2c{bottom:225.786667pt;}
.y73{bottom:231.386667pt;}
.y62{bottom:240.506667pt;}
.y2b{bottom:243.386667pt;}
.y72{bottom:248.986667pt;}
.y93{bottom:250.106667pt;}
.y61{bottom:258.106667pt;}
.y2a{bottom:260.986667pt;}
.y71{bottom:266.586667pt;}
.y92{bottom:269.306667pt;}
.y60{bottom:275.706667pt;}
.y29{bottom:278.746667pt;}
.y70{bottom:284.346667pt;}
.y91{bottom:287.066667pt;}
.y5f{bottom:293.346667pt;}
.y28{bottom:296.386667pt;}
.y6f{bottom:301.986667pt;}
.y90{bottom:304.386667pt;}
.y5e{bottom:311.106667pt;}
.y27{bottom:313.986667pt;}
.y6e{bottom:319.586667pt;}
.y5d{bottom:328.706667pt;}
.y8f{bottom:330.306667pt;}
.y26{bottom:331.586667pt;}
.y6d{bottom:337.186667pt;}
.y5c{bottom:346.306667pt;}
.y8e{bottom:347.906667pt;}
.y25{bottom:349.186667pt;}
.y6c{bottom:354.786667pt;}
.y5b{bottom:363.906667pt;}
.y8d{bottom:365.506667pt;}
.y24{bottom:366.946667pt;}
.y6b{bottom:372.226667pt;}
.y5a{bottom:381.506667pt;}
.y8c{bottom:382.946667pt;}
.y23{bottom:384.546667pt;}
.y6a{bottom:390.146667pt;}
.y59{bottom:399.266667pt;}
.y22{bottom:402.146667pt;}
.y69{bottom:404.546667pt;}
.y8b{bottom:408.866667pt;}
.y58{bottom:416.866667pt;}
.y21{bottom:419.746667pt;}
.y8a{bottom:426.466667pt;}
.y57{bottom:434.466667pt;}
.y20{bottom:437.346667pt;}
.y89{bottom:444.066667pt;}
.y56{bottom:452.066667pt;}
.y1f{bottom:455.106667pt;}
.y88{bottom:461.666667pt;}
.y55{bottom:469.666667pt;}
.y1e{bottom:472.706667pt;}
.y87{bottom:479.106667pt;}
.y54{bottom:487.426667pt;}
.y1d{bottom:490.306667pt;}
.y53{bottom:505.026667pt;}
.y1c{bottom:507.906667pt;}
.y52{bottom:522.626667pt;}
.y1b{bottom:525.186667pt;}
.y51{bottom:540.253333pt;}
.y1a{bottom:542.973333pt;}
.y50{bottom:557.853333pt;}
.y19{bottom:562.813333pt;}
.y86{bottom:575.293333pt;}
.y4f{bottom:575.613333pt;}
.y18{bottom:588.413333pt;}
.y85{bottom:592.893333pt;}
.y4e{bottom:593.213333pt;}
.y17{bottom:606.173333pt;}
.y4d{bottom:610.813333pt;}
.y16{bottom:623.773333pt;}
.y4c{bottom:628.413333pt;}
.y15{bottom:641.373333pt;}
.y4b{bottom:646.013333pt;}
.y14{bottom:658.973333pt;}
.y4a{bottom:663.773333pt;}
.y13{bottom:676.573333pt;}
.y49{bottom:681.373333pt;}
.y68{bottom:683.933333pt;}
.y12{bottom:694.333333pt;}
.y48{bottom:698.653333pt;}
.y7d{bottom:698.973333pt;}
.y11{bottom:711.933333pt;}
.y47{bottom:716.573333pt;}
.y10{bottom:729.533333pt;}
.y46{bottom:734.173333pt;}
.yf{bottom:747.133333pt;}
.y84{bottom:751.613333pt;}
.y45{bottom:751.933333pt;}
.ye{bottom:764.893333pt;}
.y83{bottom:769.253333pt;}
.y44{bottom:769.573333pt;}
.yd{bottom:784.453333pt;}
.y43{bottom:787.173333pt;}
.yc{bottom:802.053333pt;}
.y42{bottom:804.773333pt;}
.yb{bottom:820.133333pt;}
.y41{bottom:822.373333pt;}
.ya{bottom:838.853333pt;}
.y40{bottom:840.133333pt;}
.y3f{bottom:857.733333pt;}
.y9{bottom:859.653333pt;}
.y3e{bottom:875.333333pt;}
.y8{bottom:887.813333pt;}
.y3d{bottom:892.933333pt;}
.y3c{bottom:910.533333pt;}
.y7{bottom:916.133333pt;}
.y3b{bottom:928.293333pt;}
.y3a{bottom:945.893333pt;}
.y5{bottom:950.693333pt;}
.y7c{bottom:963.173333pt;}
.y39{bottom:963.493333pt;}
.y4{bottom:978.053333pt;}
.y38{bottom:981.093333pt;}
.y37{bottom:998.693333pt;}
.y3{bottom:1005.600000pt;}
.y82{bottom:1016.160000pt;}
.y36{bottom:1016.480000pt;}
.y2{bottom:1032.960000pt;}
.y35{bottom:1042.400000pt;}
.y1{bottom:1060.480000pt;}
.y34{bottom:1061.760000pt;}
.ha{height:41.543750pt;}
.h9{height:47.621250pt;}
.h8{height:52.134375pt;}
.hb{height:54.598989pt;}
.h6{height:55.298750pt;}
.h3{height:57.787500pt;}
.hc{height:58.563750pt;}
.h4{height:60.057813pt;}
.h7{height:61.295000pt;}
.h2{height:66.625000pt;}
.h5{height:83.540625pt;}
.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:48.159988pt;}
.x5{left:71.999988pt;}
.x6{left:96.031988pt;}
.x4{left:652.933322pt;}
.x3{left:672.933322pt;}
.x2{left:707.333322pt;}
}




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