
    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_c5ecb7952e45a7d3e77f699f.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_b3ac37f2c755cf2d237cc0a9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3831d5343574b70fffdc7c95.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_ddf00da3ce2a559b6cd7eddf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_84782d352a522ce1259f70ac.woff')format("woff");}.ff5{font-family:ff5;line-height:0.940430;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_ac0145cbca325199fd9457df.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;}
.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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-2.736000px;}
.lsb{letter-spacing:-2.376000px;}
.ls12{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.288000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.466800px;}
.ls10{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.296000px;}
.lsc{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.458000px;}
.ls13{letter-spacing:1.584000px;}
.lsa{letter-spacing:2.160000px;}
.lsd{letter-spacing:5.040000px;}
.ls2{letter-spacing:11.232000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.wsd{word-spacing:-19.584000px;}
.ws6{word-spacing:-19.440000px;}
.ws11{word-spacing:-19.296000px;}
.ws9{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.496000px;}
.ws10{word-spacing:-17.208000px;}
.wsa{word-spacing:-16.704000px;}
.ws3{word-spacing:-16.578000px;}
.wsc{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.627000px;}
.wsb{word-spacing:-15.264000px;}
.ws0{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.184000px;}
.ws5{word-spacing:-12.744000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-3.327840px;}
._0{margin-left:-2.219040px;}
._4{margin-left:-1.157760px;}
._3{width:1.736640px;}
._a{width:2.970240px;}
._13{width:4.523520px;}
._12{width:6.029760px;}
._7{width:7.219200px;}
._8{width:8.629920px;}
._9{width:9.842880px;}
._10{width:10.947360px;}
._6{width:12.454080px;}
._5{width:13.651680px;}
._16{width:14.904000px;}
._b{width:16.388640px;}
._c{width:17.579520px;}
._d{width:18.790560px;}
._e{width:20.198880px;}
._f{width:21.453120px;}
._26{width:22.667040px;}
._1a{width:23.840640px;}
._1b{width:25.711200px;}
._23{width:27.417600px;}
._22{width:28.455840px;}
._19{width:30.415200px;}
._17{width:31.569600px;}
._18{width:33.117600px;}
._1f{width:34.259040px;}
._15{width:35.768160px;}
._14{width:37.283040px;}
._24{width:45.243360px;}
._25{width:46.817280px;}
._1d{width:54.537120px;}
._28{width:66.558240px;}
._27{width:67.636800px;}
._1{width:83.937600px;}
._2{width:85.384800px;}
._21{width:112.076640px;}
._20{width:113.450400px;}
._1e{width:198.180000px;}
._29{width:229.077600px;}
._1c{width:1470.960000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y72{bottom:113.076000px;}
.y8a{bottom:113.796000px;}
.yab{bottom:117.756000px;}
.y89{bottom:134.676000px;}
.y35{bottom:135.756000px;}
.y71{bottom:138.672000px;}
.y88{bottom:155.235000px;}
.y34{bottom:156.675000px;}
.y56{bottom:158.475000px;}
.yaa{bottom:159.195000px;}
.y87{bottom:176.115000px;}
.y33{bottom:177.555000px;}
.y55{bottom:179.355000px;}
.ya9{bottom:180.075000px;}
.y86{bottom:196.635000px;}
.y32{bottom:198.075000px;}
.y54{bottom:199.875000px;}
.y85{bottom:217.515000px;}
.ya8{bottom:218.595000px;}
.y31{bottom:218.955000px;}
.y53{bottom:220.755000px;}
.y84{bottom:238.035000px;}
.y30{bottom:239.475000px;}
.y52{bottom:241.275000px;}
.y83{bottom:258.915000px;}
.y2f{bottom:259.995000px;}
.y51{bottom:262.155000px;}
.y82{bottom:279.465000px;}
.ya7{bottom:280.905000px;}
.y50{bottom:282.705000px;}
.y2e{bottom:301.785000px;}
.y4f{bottom:303.585000px;}
.y81{bottom:310.065000px;}
.ya6{bottom:319.425000px;}
.y2d{bottom:322.665000px;}
.y4e{bottom:324.105000px;}
.y70{bottom:331.665000px;}
.y80{bottom:335.625000px;}
.ya5{bottom:340.305000px;}
.y2c{bottom:343.185000px;}
.y4d{bottom:344.985000px;}
.y6f{bottom:352.545000px;}
.ya4{bottom:360.825000px;}
.y2b{bottom:364.065000px;}
.y4c{bottom:365.505000px;}
.y6e{bottom:373.065000px;}
.ya3{bottom:381.705000px;}
.y4b{bottom:382.425000px;}
.y2a{bottom:384.585000px;}
.y6d{bottom:393.945000px;}
.y29{bottom:405.510000px;}
.y6c{bottom:414.510000px;}
.ya2{bottom:420.270000px;}
.y28{bottom:426.030000px;}
.y6b{bottom:435.390000px;}
.ya1{bottom:441.150000px;}
.y27{bottom:446.910000px;}
.y6a{bottom:455.910000px;}
.ya0{bottom:461.670000px;}
.y26{bottom:467.430000px;}
.y69{bottom:476.790000px;}
.y9f{bottom:482.550000px;}
.y25{bottom:488.310000px;}
.y9e{bottom:503.070000px;}
.y68{bottom:507.390000px;}
.y24{bottom:508.110000px;}
.y9d{bottom:523.950000px;}
.y23{bottom:525.390000px;}
.y67{bottom:538.380000px;}
.y22{bottom:542.700000px;}
.y9c{bottom:544.500000px;}
.y7f{bottom:549.900000px;}
.y66{bottom:559.620000px;}
.y21{bottom:559.980000px;}
.y9b{bottom:565.380000px;}
.y7e{bottom:571.140000px;}
.y20{bottom:577.260000px;}
.y65{bottom:580.140000px;}
.y9a{bottom:585.900000px;}
.y7d{bottom:591.660000px;}
.y1f{bottom:594.180000px;}
.y64{bottom:601.020000px;}
.y99{bottom:606.780000px;}
.y1e{bottom:611.460000px;}
.y7c{bottom:612.540000px;}
.y63{bottom:621.540000px;}
.y98{bottom:627.300000px;}
.y1d{bottom:628.740000px;}
.y7b{bottom:633.060000px;}
.y62{bottom:642.420000px;}
.y1c{bottom:646.020000px;}
.y97{bottom:648.180000px;}
.y7a{bottom:653.940000px;}
.y61{bottom:662.940000px;}
.y1b{bottom:663.300000px;}
.y96{bottom:668.730000px;}
.y79{bottom:674.490000px;}
.y1a{bottom:680.610000px;}
.y4a{bottom:683.490000px;}
.y60{bottom:683.850000px;}
.y95{bottom:689.610000px;}
.y78{bottom:695.370000px;}
.y19{bottom:697.890000px;}
.y49{bottom:704.370000px;}
.y18{bottom:715.170000px;}
.y77{bottom:715.890000px;}
.y48{bottom:724.890000px;}
.y5f{bottom:725.250000px;}
.y94{bottom:728.130000px;}
.y17{bottom:732.450000px;}
.y47{bottom:745.770000px;}
.y76{bottom:746.490000px;}
.y93{bottom:749.010000px;}
.y16{bottom:749.730000px;}
.y46{bottom:766.290000px;}
.y5e{bottom:766.650000px;}
.y15{bottom:767.010000px;}
.y92{bottom:769.530000px;}
.y75{bottom:772.050000px;}
.y14{bottom:783.930000px;}
.y45{bottom:786.810000px;}
.y5d{bottom:787.170000px;}
.y13{bottom:801.210000px;}
.y44{bottom:807.735000px;}
.y5c{bottom:808.095000px;}
.y91{bottom:808.455000px;}
.y12{bottom:818.535000px;}
.y5b{bottom:828.615000px;}
.y90{bottom:828.975000px;}
.y11{bottom:835.815000px;}
.y43{bottom:849.135000px;}
.y5a{bottom:849.495000px;}
.y8f{bottom:849.855000px;}
.y10{bottom:853.095000px;}
.y42{bottom:870.015000px;}
.yf{bottom:870.375000px;}
.ye{bottom:887.655000px;}
.y41{bottom:890.895000px;}
.y8e{bottom:891.255000px;}
.yd{bottom:904.935000px;}
.y40{bottom:911.415000px;}
.y8d{bottom:911.775000px;}
.yc{bottom:922.215000px;}
.y3f{bottom:932.295000px;}
.y8c{bottom:932.655000px;}
.yb{bottom:941.325000px;}
.y3e{bottom:952.845000px;}
.y8b{bottom:953.205000px;}
.ya{bottom:966.885000px;}
.y3d{bottom:973.725000px;}
.y74{bottom:974.085000px;}
.y9{bottom:984.165000px;}
.y59{bottom:994.245000px;}
.y73{bottom:994.605000px;}
.y8{bottom:1001.445000px;}
.y3c{bottom:1015.125000px;}
.y58{bottom:1015.485000px;}
.y7{bottom:1018.005000px;}
.y6{bottom:1035.285000px;}
.y3b{bottom:1036.005000px;}
.y5{bottom:1052.565000px;}
.y3a{bottom:1056.885000px;}
.y4{bottom:1069.530000px;}
.y39{bottom:1077.450000px;}
.y3{bottom:1086.810000px;}
.y38{bottom:1098.330000px;}
.y2{bottom:1105.890000px;}
.y37{bottom:1118.850000px;}
.y1{bottom:1133.610000px;}
.y57{bottom:1139.370000px;}
.y36{bottom:1139.730000px;}
.h8{height:40.310156px;}
.h5{height:42.672656px;}
.h6{height:50.800781px;}
.h4{height:51.637500px;}
.h3{height:54.219375px;}
.h7{height:64.546875px;}
.h2{height:68.073047px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.995987px;}
.x8{left:98.675987px;}
.x3{left:148.751987px;}
.x1{left:152.714987px;}
.x5{left:420.269987px;}
.x7{left:422.429987px;}
.x4{left:439.379987px;}
.x6{left:448.379987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-2.432000pt;}
.lsb{letter-spacing:-2.112000pt;}
.ls12{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.414933pt;}
.ls10{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls16{letter-spacing:1.152000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.296000pt;}
.ls13{letter-spacing:1.408000pt;}
.lsa{letter-spacing:1.920000pt;}
.lsd{letter-spacing:4.480000pt;}
.ls2{letter-spacing:9.984000pt;}
.wse{word-spacing:-64.000000pt;}
.wsd{word-spacing:-17.408000pt;}
.ws6{word-spacing:-17.280000pt;}
.ws11{word-spacing:-17.152000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.552000pt;}
.ws10{word-spacing:-15.296000pt;}
.wsa{word-spacing:-14.848000pt;}
.ws3{word-spacing:-14.736000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.890667pt;}
.wsb{word-spacing:-13.568000pt;}
.ws0{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws4{word-spacing:-12.608000pt;}
.ws5{word-spacing:-11.328000pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-2.958080pt;}
._0{margin-left:-1.972480pt;}
._4{margin-left:-1.029120pt;}
._3{width:1.543680pt;}
._a{width:2.640213pt;}
._13{width:4.020907pt;}
._12{width:5.359787pt;}
._7{width:6.417067pt;}
._8{width:7.671040pt;}
._9{width:8.749227pt;}
._10{width:9.730987pt;}
._6{width:11.070293pt;}
._5{width:12.134827pt;}
._16{width:13.248000pt;}
._b{width:14.567680pt;}
._c{width:15.626240pt;}
._d{width:16.702720pt;}
._e{width:17.954560pt;}
._f{width:19.069440pt;}
._26{width:20.148480pt;}
._1a{width:21.191680pt;}
._1b{width:22.854400pt;}
._23{width:24.371200pt;}
._22{width:25.294080pt;}
._19{width:27.035733pt;}
._17{width:28.061867pt;}
._18{width:29.437867pt;}
._1f{width:30.452480pt;}
._15{width:31.793920pt;}
._14{width:33.140480pt;}
._24{width:40.216320pt;}
._25{width:41.615360pt;}
._1d{width:48.477440pt;}
._28{width:59.162880pt;}
._27{width:60.121600pt;}
._1{width:74.611200pt;}
._2{width:75.897600pt;}
._21{width:99.623680pt;}
._20{width:100.844800pt;}
._1e{width:176.160000pt;}
._29{width:203.624533pt;}
._1c{width:1307.520000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:100.512000pt;}
.y8a{bottom:101.152000pt;}
.yab{bottom:104.672000pt;}
.y89{bottom:119.712000pt;}
.y35{bottom:120.672000pt;}
.y71{bottom:123.264000pt;}
.y88{bottom:137.986667pt;}
.y34{bottom:139.266667pt;}
.y56{bottom:140.866667pt;}
.yaa{bottom:141.506667pt;}
.y87{bottom:156.546667pt;}
.y33{bottom:157.826667pt;}
.y55{bottom:159.426667pt;}
.ya9{bottom:160.066667pt;}
.y86{bottom:174.786667pt;}
.y32{bottom:176.066667pt;}
.y54{bottom:177.666667pt;}
.y85{bottom:193.346667pt;}
.ya8{bottom:194.306667pt;}
.y31{bottom:194.626667pt;}
.y53{bottom:196.226667pt;}
.y84{bottom:211.586667pt;}
.y30{bottom:212.866667pt;}
.y52{bottom:214.466667pt;}
.y83{bottom:230.146667pt;}
.y2f{bottom:231.106667pt;}
.y51{bottom:233.026667pt;}
.y82{bottom:248.413333pt;}
.ya7{bottom:249.693333pt;}
.y50{bottom:251.293333pt;}
.y2e{bottom:268.253333pt;}
.y4f{bottom:269.853333pt;}
.y81{bottom:275.613333pt;}
.ya6{bottom:283.933333pt;}
.y2d{bottom:286.813333pt;}
.y4e{bottom:288.093333pt;}
.y70{bottom:294.813333pt;}
.y80{bottom:298.333333pt;}
.ya5{bottom:302.493333pt;}
.y2c{bottom:305.053333pt;}
.y4d{bottom:306.653333pt;}
.y6f{bottom:313.373333pt;}
.ya4{bottom:320.733333pt;}
.y2b{bottom:323.613333pt;}
.y4c{bottom:324.893333pt;}
.y6e{bottom:331.613333pt;}
.ya3{bottom:339.293333pt;}
.y4b{bottom:339.933333pt;}
.y2a{bottom:341.853333pt;}
.y6d{bottom:350.173333pt;}
.y29{bottom:360.453333pt;}
.y6c{bottom:368.453333pt;}
.ya2{bottom:373.573333pt;}
.y28{bottom:378.693333pt;}
.y6b{bottom:387.013333pt;}
.ya1{bottom:392.133333pt;}
.y27{bottom:397.253333pt;}
.y6a{bottom:405.253333pt;}
.ya0{bottom:410.373333pt;}
.y26{bottom:415.493333pt;}
.y69{bottom:423.813333pt;}
.y9f{bottom:428.933333pt;}
.y25{bottom:434.053333pt;}
.y9e{bottom:447.173333pt;}
.y68{bottom:451.013333pt;}
.y24{bottom:451.653333pt;}
.y9d{bottom:465.733333pt;}
.y23{bottom:467.013333pt;}
.y67{bottom:478.560000pt;}
.y22{bottom:482.400000pt;}
.y9c{bottom:484.000000pt;}
.y7f{bottom:488.800000pt;}
.y66{bottom:497.440000pt;}
.y21{bottom:497.760000pt;}
.y9b{bottom:502.560000pt;}
.y7e{bottom:507.680000pt;}
.y20{bottom:513.120000pt;}
.y65{bottom:515.680000pt;}
.y9a{bottom:520.800000pt;}
.y7d{bottom:525.920000pt;}
.y1f{bottom:528.160000pt;}
.y64{bottom:534.240000pt;}
.y99{bottom:539.360000pt;}
.y1e{bottom:543.520000pt;}
.y7c{bottom:544.480000pt;}
.y63{bottom:552.480000pt;}
.y98{bottom:557.600000pt;}
.y1d{bottom:558.880000pt;}
.y7b{bottom:562.720000pt;}
.y62{bottom:571.040000pt;}
.y1c{bottom:574.240000pt;}
.y97{bottom:576.160000pt;}
.y7a{bottom:581.280000pt;}
.y61{bottom:589.280000pt;}
.y1b{bottom:589.600000pt;}
.y96{bottom:594.426667pt;}
.y79{bottom:599.546667pt;}
.y1a{bottom:604.986667pt;}
.y4a{bottom:607.546667pt;}
.y60{bottom:607.866667pt;}
.y95{bottom:612.986667pt;}
.y78{bottom:618.106667pt;}
.y19{bottom:620.346667pt;}
.y49{bottom:626.106667pt;}
.y18{bottom:635.706667pt;}
.y77{bottom:636.346667pt;}
.y48{bottom:644.346667pt;}
.y5f{bottom:644.666667pt;}
.y94{bottom:647.226667pt;}
.y17{bottom:651.066667pt;}
.y47{bottom:662.906667pt;}
.y76{bottom:663.546667pt;}
.y93{bottom:665.786667pt;}
.y16{bottom:666.426667pt;}
.y46{bottom:681.146667pt;}
.y5e{bottom:681.466667pt;}
.y15{bottom:681.786667pt;}
.y92{bottom:684.026667pt;}
.y75{bottom:686.266667pt;}
.y14{bottom:696.826667pt;}
.y45{bottom:699.386667pt;}
.y5d{bottom:699.706667pt;}
.y13{bottom:712.186667pt;}
.y44{bottom:717.986667pt;}
.y5c{bottom:718.306667pt;}
.y91{bottom:718.626667pt;}
.y12{bottom:727.586667pt;}
.y5b{bottom:736.546667pt;}
.y90{bottom:736.866667pt;}
.y11{bottom:742.946667pt;}
.y43{bottom:754.786667pt;}
.y5a{bottom:755.106667pt;}
.y8f{bottom:755.426667pt;}
.y10{bottom:758.306667pt;}
.y42{bottom:773.346667pt;}
.yf{bottom:773.666667pt;}
.ye{bottom:789.026667pt;}
.y41{bottom:791.906667pt;}
.y8e{bottom:792.226667pt;}
.yd{bottom:804.386667pt;}
.y40{bottom:810.146667pt;}
.y8d{bottom:810.466667pt;}
.yc{bottom:819.746667pt;}
.y3f{bottom:828.706667pt;}
.y8c{bottom:829.026667pt;}
.yb{bottom:836.733333pt;}
.y3e{bottom:846.973333pt;}
.y8b{bottom:847.293333pt;}
.ya{bottom:859.453333pt;}
.y3d{bottom:865.533333pt;}
.y74{bottom:865.853333pt;}
.y9{bottom:874.813333pt;}
.y59{bottom:883.773333pt;}
.y73{bottom:884.093333pt;}
.y8{bottom:890.173333pt;}
.y3c{bottom:902.333333pt;}
.y58{bottom:902.653333pt;}
.y7{bottom:904.893333pt;}
.y6{bottom:920.253333pt;}
.y3b{bottom:920.893333pt;}
.y5{bottom:935.613333pt;}
.y3a{bottom:939.453333pt;}
.y4{bottom:950.693333pt;}
.y39{bottom:957.733333pt;}
.y3{bottom:966.053333pt;}
.y38{bottom:976.293333pt;}
.y2{bottom:983.013333pt;}
.y37{bottom:994.533333pt;}
.y1{bottom:1007.653333pt;}
.y57{bottom:1012.773333pt;}
.y36{bottom:1013.093333pt;}
.h8{height:35.831250pt;}
.h5{height:37.931250pt;}
.h6{height:45.156250pt;}
.h4{height:45.900000pt;}
.h3{height:48.195000pt;}
.h7{height:57.375000pt;}
.h2{height:60.509375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.551988pt;}
.x8{left:87.711988pt;}
.x3{left:132.223988pt;}
.x1{left:135.746655pt;}
.x5{left:373.573322pt;}
.x7{left:375.493322pt;}
.x4{left:390.559988pt;}
.x6{left:398.559988pt;}
}




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