
    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_28ec8d8b44201cc037f6404a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_587747b8ec847a79a8682185.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6870fc0742c735afd58f913d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_adcf3d29b7f651c911247b60.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bcb645fe92936b7bf106fb59.woff')format("woff");}.ff5{font-family:ff5;line-height:1.123047;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_f3e590f241b47e9338cc0587.woff')format("woff");}.ff6{font-family:ff6;line-height:1.132324;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_f15a6cdf233c4b6a1d036a0f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.101074;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);}
.v2{vertical-align:-84.240000px;}
.v5{vertical-align:-82.800000px;}
.v4{vertical-align:-55.440000px;}
.v6{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v7{vertical-align:27.360000px;}
.v1{vertical-align:51.120000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.043920px;}
.ls3{letter-spacing:0.099600px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:1.080000px;}
.lsc{letter-spacing:3.600000px;}
.ls6{letter-spacing:6.480000px;}
.ls9{letter-spacing:36.720000px;}
.ls4{letter-spacing:61.920000px;}
.lsb{letter-spacing:1342.236000px;}
.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;}
}
.ws0{word-spacing:-36.000000px;}
.ws2{word-spacing:-33.300000px;}
.ws1{word-spacing:-23.319600px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-4.536000px;}
._8{margin-left:-3.508800px;}
._5{margin-left:-2.229120px;}
._1{margin-left:-1.198080px;}
._0{width:1.915200px;}
._3{width:3.672000px;}
._4{width:4.824000px;}
._f{width:6.270720px;}
._e{width:7.272000px;}
._a{width:8.352000px;}
._b{width:9.414720px;}
._d{width:11.321280px;}
._13{width:12.600000px;}
._c{width:13.608000px;}
._6{width:14.904000px;}
._7{width:16.128000px;}
._10{width:20.664000px;}
._11{width:21.888000px;}
._12{width:23.112000px;}
._19{width:24.600000px;}
._16{width:25.848000px;}
._17{width:27.461760px;}
._14{width:30.888000px;}
._15{width:32.497920px;}
._18{width:33.696000px;}
._1b{width:34.905600px;}
._2{width:846.516000px;}
._1a{width:1567.716000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs7{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:92.880000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:68.256000px;}
.y3{bottom:88.956000px;}
.y1d{bottom:105.336000px;}
.y1c{bottom:115.596000px;}
.y1b{bottom:136.296000px;}
.y6b{bottom:146.736000px;}
.y1a{bottom:156.630000px;}
.y6a{bottom:167.430000px;}
.y19{bottom:173.910000px;}
.y3e{bottom:182.730000px;}
.yaf{bottom:187.950000px;}
.y69{bottom:188.130000px;}
.y18{bottom:193.530000px;}
.yae{bottom:208.650000px;}
.y68{bottom:208.830000px;}
.y3d{bottom:213.690000px;}
.y17{bottom:218.550000px;}
.yad{bottom:229.350000px;}
.y67{bottom:229.530000px;}
.y3c{bottom:244.830000px;}
.yac{bottom:250.050000px;}
.y66{bottom:250.230000px;}
.yab{bottom:270.750000px;}
.y65{bottom:270.930000px;}
.y3b{bottom:275.790000px;}
.y9e{bottom:287.895000px;}
.yaa{bottom:291.495000px;}
.y64{bottom:291.675000px;}
.y3a{bottom:306.975000px;}
.y9d{bottom:308.595000px;}
.ya9{bottom:312.195000px;}
.y63{bottom:312.375000px;}
.y8f{bottom:323.535000px;}
.ya8{bottom:332.895000px;}
.y62{bottom:333.075000px;}
.y39{bottom:337.935000px;}
.y8e{bottom:344.235000px;}
.y9c{bottom:349.635000px;}
.ya7{bottom:353.595000px;}
.y61{bottom:353.775000px;}
.y8d{bottom:364.935000px;}
.y38{bottom:369.075000px;}
.y9b{bottom:370.695000px;}
.ya6{bottom:374.295000px;}
.y60{bottom:374.475000px;}
.y8c{bottom:385.455000px;}
.y9a{bottom:391.035000px;}
.y75{bottom:394.815000px;}
.ya5{bottom:394.995000px;}
.y5f{bottom:395.175000px;}
.y37{bottom:400.035000px;}
.y8b{bottom:406.155000px;}
.y99{bottom:407.595000px;}
.ya4{bottom:415.695000px;}
.y5e{bottom:415.875000px;}
.y8a{bottom:426.855000px;}
.y36{bottom:431.175000px;}
.y5d{bottom:436.395000px;}
.y89{bottom:447.555000px;}
.y5c{bottom:457.095000px;}
.y35{bottom:462.135000px;}
.y88{bottom:468.255000px;}
.y5b{bottom:477.795000px;}
.y87{bottom:488.955000px;}
.y34{bottom:493.275000px;}
.ya3{bottom:498.135000px;}
.y5a{bottom:498.495000px;}
.y86{bottom:509.655000px;}
.y59{bottom:519.195000px;}
.y33{bottom:524.235000px;}
.y85{bottom:530.355000px;}
.y58{bottom:539.895000px;}
.y84{bottom:551.055000px;}
.y32{bottom:555.375000px;}
.y57{bottom:560.595000px;}
.y16{bottom:562.575000px;}
.y83{bottom:571.785000px;}
.y56{bottom:581.325000px;}
.y31{bottom:586.365000px;}
.y82{bottom:592.485000px;}
.y15{bottom:593.745000px;}
.y98{bottom:601.125000px;}
.y55{bottom:602.025000px;}
.y81{bottom:613.185000px;}
.y30{bottom:617.505000px;}
.y97{bottom:621.825000px;}
.y54{bottom:622.725000px;}
.y14{bottom:625.425000px;}
.y80{bottom:633.885000px;}
.y96{bottom:642.525000px;}
.y53{bottom:643.425000px;}
.y2f{bottom:648.465000px;}
.y7f{bottom:654.585000px;}
.y95{bottom:658.725000px;}
.y13{bottom:663.405000px;}
.ya2{bottom:663.765000px;}
.y52{bottom:664.125000px;}
.y7e{bottom:675.285000px;}
.y2e{bottom:679.605000px;}
.y51{bottom:684.465000px;}
.y74{bottom:684.825000px;}
.y7d{bottom:695.985000px;}
.y12{bottom:701.385000px;}
.y50{bottom:705.525000px;}
.y2d{bottom:711.105000px;}
.y7c{bottom:716.685000px;}
.y4f{bottom:726.225000px;}
.y7b{bottom:737.385000px;}
.y11{bottom:739.365000px;}
.y2c{bottom:742.245000px;}
.y73{bottom:746.565000px;}
.y4e{bottom:746.925000px;}
.y7a{bottom:758.085000px;}
.y4d{bottom:767.625000px;}
.y2b{bottom:772.665000px;}
.y10{bottom:774.465000px;}
.y79{bottom:778.785000px;}
.y4c{bottom:788.325000px;}
.yf{bottom:794.805000px;}
.y78{bottom:799.485000px;}
.y2a{bottom:803.625000px;}
.y4b{bottom:809.025000px;}
.ye{bottom:819.285000px;}
.y4a{bottom:829.725000px;}
.y29{bottom:832.785000px;}
.y77{bottom:840.885000px;}
.ya1{bottom:850.110000px;}
.y49{bottom:850.470000px;}
.y28{bottom:853.530000px;}
.y76{bottom:857.310000px;}
.yd{bottom:860.730000px;}
.y94{bottom:861.090000px;}
.ya0{bottom:870.810000px;}
.y48{bottom:871.170000px;}
.y27{bottom:874.230000px;}
.y93{bottom:882.150000px;}
.y47{bottom:891.870000px;}
.y26{bottom:897.450000px;}
.yc{bottom:898.350000px;}
.y92{bottom:902.850000px;}
.y46{bottom:912.570000px;}
.yb{bottom:919.050000px;}
.y91{bottom:923.190000px;}
.y25{bottom:928.410000px;}
.y45{bottom:932.910000px;}
.y72{bottom:933.270000px;}
.y90{bottom:939.750000px;}
.ya{bottom:943.530000px;}
.y9f{bottom:949.470000px;}
.y44{bottom:953.610000px;}
.y71{bottom:953.970000px;}
.y24{bottom:959.550000px;}
.y43{bottom:974.670000px;}
.y9{bottom:984.930000px;}
.y23{bottom:989.970000px;}
.y70{bottom:995.370000px;}
.y42{bottom:1002.210000px;}
.y41{bottom:1016.070000px;}
.y22{bottom:1021.110000px;}
.y8{bottom:1026.870000px;}
.y6f{bottom:1036.770000px;}
.y21{bottom:1052.070000px;}
.y40{bottom:1057.470000px;}
.y7{bottom:1067.370000px;}
.y6e{bottom:1078.170000px;}
.y20{bottom:1084.470000px;}
.y6{bottom:1088.070000px;}
.y3f{bottom:1098.870000px;}
.y5{bottom:1108.770000px;}
.y1f{bottom:1119.210000px;}
.y6d{bottom:1119.570000px;}
.y2{bottom:1136.880000px;}
.y1e{bottom:1139.940000px;}
.y6c{bottom:1140.300000px;}
.y1{bottom:1178.100000px;}
.hf{height:47.321367px;}
.h2{height:58.621992px;}
.hb{height:58.651172px;}
.h11{height:64.546875px;}
.h4{height:70.628906px;}
.h3{height:70.664062px;}
.hc{height:72.562500px;}
.h10{height:74.704922px;}
.h9{height:105.943359px;}
.he{height:105.996094px;}
.ha{height:108.843750px;}
.h8{height:129.250898px;}
.hd{height:132.789375px;}
.h6{height:141.257812px;}
.h7{height:142.231289px;}
.h5{height:153.264727px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.415987px;}
.x19{left:113.255987px;}
.x21{left:117.395987px;}
.x6{left:123.335987px;}
.x10{left:145.835987px;}
.x16{left:178.229987px;}
.x2{left:215.489987px;}
.x5{left:224.669987px;}
.x17{left:234.569987px;}
.x1f{left:242.129987px;}
.x4{left:247.349987px;}
.x18{left:269.489987px;}
.x1d{left:273.629987px;}
.x8{left:294.734987px;}
.xc{left:302.654987px;}
.x12{left:305.894987px;}
.x1b{left:328.034987px;}
.x7{left:330.014987px;}
.x14{left:348.194987px;}
.xf{left:362.234987px;}
.xe{left:378.614987px;}
.x22{left:384.734987px;}
.xd{left:386.174987px;}
.x11{left:399.314987px;}
.x13{left:416.054987px;}
.x15{left:432.974987px;}
.xb{left:441.974987px;}
.x1{left:446.474987px;}
.x9{left:587.264987px;}
.x1e{left:679.469987px;}
.x1c{left:725.009987px;}
.x1a{left:741.569987px;}
.x20{left:768.209987px;}
.xa{left:770.549987px;}
@media print{
.v2{vertical-align:-74.880000pt;}
.v5{vertical-align:-73.600000pt;}
.v4{vertical-align:-49.280000pt;}
.v6{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v7{vertical-align:24.320000pt;}
.v1{vertical-align:45.440000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.039040pt;}
.ls3{letter-spacing:0.088533pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.960000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls9{letter-spacing:32.640000pt;}
.ls4{letter-spacing:55.040000pt;}
.lsb{letter-spacing:1193.098667pt;}
.ws0{word-spacing:-32.000000pt;}
.ws2{word-spacing:-29.600000pt;}
.ws1{word-spacing:-20.728533pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-4.032000pt;}
._8{margin-left:-3.118933pt;}
._5{margin-left:-1.981440pt;}
._1{margin-left:-1.064960pt;}
._0{width:1.702400pt;}
._3{width:3.264000pt;}
._4{width:4.288000pt;}
._f{width:5.573973pt;}
._e{width:6.464000pt;}
._a{width:7.424000pt;}
._b{width:8.368640pt;}
._d{width:10.063360pt;}
._13{width:11.200000pt;}
._c{width:12.096000pt;}
._6{width:13.248000pt;}
._7{width:14.336000pt;}
._10{width:18.368000pt;}
._11{width:19.456000pt;}
._12{width:20.544000pt;}
._19{width:21.866667pt;}
._16{width:22.976000pt;}
._17{width:24.410453pt;}
._14{width:27.456000pt;}
._15{width:28.887040pt;}
._18{width:29.952000pt;}
._1b{width:31.027200pt;}
._2{width:752.458667pt;}
._1a{width:1393.525333pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:82.560000pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:60.672000pt;}
.y3{bottom:79.072000pt;}
.y1d{bottom:93.632000pt;}
.y1c{bottom:102.752000pt;}
.y1b{bottom:121.152000pt;}
.y6b{bottom:130.432000pt;}
.y1a{bottom:139.226667pt;}
.y6a{bottom:148.826667pt;}
.y19{bottom:154.586667pt;}
.y3e{bottom:162.426667pt;}
.yaf{bottom:167.066667pt;}
.y69{bottom:167.226667pt;}
.y18{bottom:172.026667pt;}
.yae{bottom:185.466667pt;}
.y68{bottom:185.626667pt;}
.y3d{bottom:189.946667pt;}
.y17{bottom:194.266667pt;}
.yad{bottom:203.866667pt;}
.y67{bottom:204.026667pt;}
.y3c{bottom:217.626667pt;}
.yac{bottom:222.266667pt;}
.y66{bottom:222.426667pt;}
.yab{bottom:240.666667pt;}
.y65{bottom:240.826667pt;}
.y3b{bottom:245.146667pt;}
.y9e{bottom:255.906667pt;}
.yaa{bottom:259.106667pt;}
.y64{bottom:259.266667pt;}
.y3a{bottom:272.866667pt;}
.y9d{bottom:274.306667pt;}
.ya9{bottom:277.506667pt;}
.y63{bottom:277.666667pt;}
.y8f{bottom:287.586667pt;}
.ya8{bottom:295.906667pt;}
.y62{bottom:296.066667pt;}
.y39{bottom:300.386667pt;}
.y8e{bottom:305.986667pt;}
.y9c{bottom:310.786667pt;}
.ya7{bottom:314.306667pt;}
.y61{bottom:314.466667pt;}
.y8d{bottom:324.386667pt;}
.y38{bottom:328.066667pt;}
.y9b{bottom:329.506667pt;}
.ya6{bottom:332.706667pt;}
.y60{bottom:332.866667pt;}
.y8c{bottom:342.626667pt;}
.y9a{bottom:347.586667pt;}
.y75{bottom:350.946667pt;}
.ya5{bottom:351.106667pt;}
.y5f{bottom:351.266667pt;}
.y37{bottom:355.586667pt;}
.y8b{bottom:361.026667pt;}
.y99{bottom:362.306667pt;}
.ya4{bottom:369.506667pt;}
.y5e{bottom:369.666667pt;}
.y8a{bottom:379.426667pt;}
.y36{bottom:383.266667pt;}
.y5d{bottom:387.906667pt;}
.y89{bottom:397.826667pt;}
.y5c{bottom:406.306667pt;}
.y35{bottom:410.786667pt;}
.y88{bottom:416.226667pt;}
.y5b{bottom:424.706667pt;}
.y87{bottom:434.626667pt;}
.y34{bottom:438.466667pt;}
.ya3{bottom:442.786667pt;}
.y5a{bottom:443.106667pt;}
.y86{bottom:453.026667pt;}
.y59{bottom:461.506667pt;}
.y33{bottom:465.986667pt;}
.y85{bottom:471.426667pt;}
.y58{bottom:479.906667pt;}
.y84{bottom:489.826667pt;}
.y32{bottom:493.666667pt;}
.y57{bottom:498.306667pt;}
.y16{bottom:500.066667pt;}
.y83{bottom:508.253333pt;}
.y56{bottom:516.733333pt;}
.y31{bottom:521.213333pt;}
.y82{bottom:526.653333pt;}
.y15{bottom:527.773333pt;}
.y98{bottom:534.333333pt;}
.y55{bottom:535.133333pt;}
.y81{bottom:545.053333pt;}
.y30{bottom:548.893333pt;}
.y97{bottom:552.733333pt;}
.y54{bottom:553.533333pt;}
.y14{bottom:555.933333pt;}
.y80{bottom:563.453333pt;}
.y96{bottom:571.133333pt;}
.y53{bottom:571.933333pt;}
.y2f{bottom:576.413333pt;}
.y7f{bottom:581.853333pt;}
.y95{bottom:585.533333pt;}
.y13{bottom:589.693333pt;}
.ya2{bottom:590.013333pt;}
.y52{bottom:590.333333pt;}
.y7e{bottom:600.253333pt;}
.y2e{bottom:604.093333pt;}
.y51{bottom:608.413333pt;}
.y74{bottom:608.733333pt;}
.y7d{bottom:618.653333pt;}
.y12{bottom:623.453333pt;}
.y50{bottom:627.133333pt;}
.y2d{bottom:632.093333pt;}
.y7c{bottom:637.053333pt;}
.y4f{bottom:645.533333pt;}
.y7b{bottom:655.453333pt;}
.y11{bottom:657.213333pt;}
.y2c{bottom:659.773333pt;}
.y73{bottom:663.613333pt;}
.y4e{bottom:663.933333pt;}
.y7a{bottom:673.853333pt;}
.y4d{bottom:682.333333pt;}
.y2b{bottom:686.813333pt;}
.y10{bottom:688.413333pt;}
.y79{bottom:692.253333pt;}
.y4c{bottom:700.733333pt;}
.yf{bottom:706.493333pt;}
.y78{bottom:710.653333pt;}
.y2a{bottom:714.333333pt;}
.y4b{bottom:719.133333pt;}
.ye{bottom:728.253333pt;}
.y4a{bottom:737.533333pt;}
.y29{bottom:740.253333pt;}
.y77{bottom:747.453333pt;}
.ya1{bottom:755.653333pt;}
.y49{bottom:755.973333pt;}
.y28{bottom:758.693333pt;}
.y76{bottom:762.053333pt;}
.yd{bottom:765.093333pt;}
.y94{bottom:765.413333pt;}
.ya0{bottom:774.053333pt;}
.y48{bottom:774.373333pt;}
.y27{bottom:777.093333pt;}
.y93{bottom:784.133333pt;}
.y47{bottom:792.773333pt;}
.y26{bottom:797.733333pt;}
.yc{bottom:798.533333pt;}
.y92{bottom:802.533333pt;}
.y46{bottom:811.173333pt;}
.yb{bottom:816.933333pt;}
.y91{bottom:820.613333pt;}
.y25{bottom:825.253333pt;}
.y45{bottom:829.253333pt;}
.y72{bottom:829.573333pt;}
.y90{bottom:835.333333pt;}
.ya{bottom:838.693333pt;}
.y9f{bottom:843.973333pt;}
.y44{bottom:847.653333pt;}
.y71{bottom:847.973333pt;}
.y24{bottom:852.933333pt;}
.y43{bottom:866.373333pt;}
.y9{bottom:875.493333pt;}
.y23{bottom:879.973333pt;}
.y70{bottom:884.773333pt;}
.y42{bottom:890.853333pt;}
.y41{bottom:903.173333pt;}
.y22{bottom:907.653333pt;}
.y8{bottom:912.773333pt;}
.y6f{bottom:921.573333pt;}
.y21{bottom:935.173333pt;}
.y40{bottom:939.973333pt;}
.y7{bottom:948.773333pt;}
.y6e{bottom:958.373333pt;}
.y20{bottom:963.973333pt;}
.y6{bottom:967.173333pt;}
.y3f{bottom:976.773333pt;}
.y5{bottom:985.573333pt;}
.y1f{bottom:994.853333pt;}
.y6d{bottom:995.173333pt;}
.y2{bottom:1010.560000pt;}
.y1e{bottom:1013.280000pt;}
.y6c{bottom:1013.600000pt;}
.y1{bottom:1047.200000pt;}
.hf{height:42.063437pt;}
.h2{height:52.108438pt;}
.hb{height:52.134375pt;}
.h11{height:57.375000pt;}
.h4{height:62.781250pt;}
.h3{height:62.812500pt;}
.hc{height:64.500000pt;}
.h10{height:66.404375pt;}
.h9{height:94.171875pt;}
.he{height:94.218750pt;}
.ha{height:96.750000pt;}
.h8{height:114.889687pt;}
.hd{height:118.035000pt;}
.h6{height:125.562500pt;}
.h7{height:126.427812pt;}
.h5{height:136.235313pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.591988pt;}
.x19{left:100.671988pt;}
.x21{left:104.351988pt;}
.x6{left:109.631988pt;}
.x10{left:129.631988pt;}
.x16{left:158.426655pt;}
.x2{left:191.546655pt;}
.x5{left:199.706655pt;}
.x17{left:208.506655pt;}
.x1f{left:215.226655pt;}
.x4{left:219.866655pt;}
.x18{left:239.546655pt;}
.x1d{left:243.226655pt;}
.x8{left:261.986655pt;}
.xc{left:269.026655pt;}
.x12{left:271.906655pt;}
.x1b{left:291.586655pt;}
.x7{left:293.346655pt;}
.x14{left:309.506655pt;}
.xf{left:321.986655pt;}
.xe{left:336.546655pt;}
.x22{left:341.986655pt;}
.xd{left:343.266655pt;}
.x11{left:354.946655pt;}
.x13{left:369.826655pt;}
.x15{left:384.866655pt;}
.xb{left:392.866655pt;}
.x1{left:396.866655pt;}
.x9{left:522.013322pt;}
.x1e{left:603.973322pt;}
.x1c{left:644.453322pt;}
.x1a{left:659.173322pt;}
.x20{left:682.853322pt;}
.xa{left:684.933322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  