
    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_0ba4e5d34667b3c2e6b217a3.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3cfaf6328886af2ac01f2c5d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_fea0345b3ecb7fd3e80d6013.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2b32acc10da653793c331e3c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6634b4d54cd60ecf57104004.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_2e743642d54d5a6fef55918c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.968262;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_e31ee5b9a591cd05b1e1b5e8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls12{letter-spacing:-0.756000px;}
.ls7{letter-spacing:-0.684000px;}
.lsb{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.331800px;}
.ls8{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.037440px;}
.ls9{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.037440px;}
.ls10{letter-spacing:0.341280px;}
.ls3{letter-spacing:0.341400px;}
.lsa{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.369600px;}
.lsf{letter-spacing:0.378600px;}
.lse{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.540000px;}
.ls1{letter-spacing:18.540000px;}
.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;}
}
.wsc{word-spacing:-21.438600px;}
.ws1{word-spacing:-21.429600px;}
.ws9{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.410400px;}
.ws6{word-spacing:-21.097440px;}
.wsa{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.031920px;}
.ws5{word-spacing:-21.022560px;}
.ws8{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.376000px;}
.wsd{word-spacing:-20.304000px;}
.wsb{word-spacing:-13.860000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.015440px;}
._0{width:1.149120px;}
._f{width:2.220480px;}
._3{width:3.622320px;}
._2{width:5.728320px;}
._5{width:7.926720px;}
._4{width:8.999040px;}
._11{width:10.620000px;}
._b{width:11.793600px;}
._15{width:13.013040px;}
._c{width:14.307840px;}
._1c{width:15.500160px;}
._1a{width:16.511040px;}
._14{width:17.526480px;}
._10{width:18.701280px;}
._1e{width:19.810080px;}
._8{width:22.829040px;}
._9{width:24.181440px;}
._a{width:25.581600px;}
._1b{width:30.242160px;}
._e{width:32.942400px;}
._d{width:34.117200px;}
._1d{width:37.318320px;}
._13{width:38.912400px;}
._12{width:40.106640px;}
._7{width:44.754240px;}
._6{width:46.079280px;}
._18{width:89.755440px;}
._16{width:119.136000px;}
._19{width:158.700000px;}
._17{width:194.940000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1{bottom:34.200000px;}
.y61{bottom:59.580000px;}
.y94{bottom:59.940000px;}
.y4b{bottom:63.900000px;}
.y3b{bottom:65.880000px;}
.y29{bottom:68.400000px;}
.y9b{bottom:71.640000px;}
.y6c{bottom:81.000000px;}
.ya5{bottom:83.700000px;}
.y54{bottom:84.060000px;}
.y52{bottom:87.120000px;}
.y8a{bottom:88.920000px;}
.y3a{bottom:90.000000px;}
.y60{bottom:95.760000px;}
.y93{bottom:96.120000px;}
.y28{bottom:101.520000px;}
.y9a{bottom:103.140000px;}
.y4a{bottom:106.020000px;}
.y39{bottom:114.120000px;}
.y53{bottom:115.740000px;}
.y6b{bottom:117.180000px;}
.y51{bottom:123.300000px;}
.y89{bottom:125.100000px;}
.y5f{bottom:131.940000px;}
.y92{bottom:132.300000px;}
.y27{bottom:137.736000px;}
.y38{bottom:138.276000px;}
.y49{bottom:148.176000px;}
.y6a{bottom:153.390000px;}
.y50{bottom:159.510000px;}
.y88{bottom:161.310000px;}
.y26{bottom:161.850000px;}
.y37{bottom:162.390000px;}
.y5e{bottom:167.970000px;}
.y91{bottom:168.330000px;}
.y48{bottom:172.470000px;}
.y25{bottom:185.970000px;}
.y36{bottom:186.510000px;}
.y69{bottom:189.570000px;}
.y4f{bottom:191.010000px;}
.y47{bottom:196.590000px;}
.y87{bottom:197.490000px;}
.y5d{bottom:204.150000px;}
.y90{bottom:204.510000px;}
.y24{bottom:210.090000px;}
.y35{bottom:210.630000px;}
.y46{bottom:220.710000px;}
.y68{bottom:225.750000px;}
.y86{bottom:233.670000px;}
.y5c{bottom:240.330000px;}
.y8f{bottom:240.690000px;}
.y23{bottom:246.270000px;}
.y34{bottom:246.810000px;}
.y67{bottom:261.930000px;}
.y45{bottom:262.830000px;}
.y85{bottom:269.670000px;}
.y22{bottom:270.390000px;}
.y33{bottom:270.930000px;}
.y8e{bottom:272.370000px;}
.y5b{bottom:276.510000px;}
.ya4{bottom:283.710000px;}
.y21{bottom:294.510000px;}
.y32{bottom:295.230000px;}
.y44{bottom:295.950000px;}
.y66{bottom:297.930000px;}
.y84{bottom:305.850000px;}
.ya3{bottom:307.830000px;}
.y5a{bottom:312.690000px;}
.y20{bottom:318.630000px;}
.y31{bottom:319.350000px;}
.y43{bottom:329.070000px;}
.y65{bottom:334.110000px;}
.y6f{bottom:339.870000px;}
.y83{bottom:342.030000px;}
.y1f{bottom:342.750000px;}
.y30{bottom:343.470000px;}
.ya2{bottom:344.010000px;}
.y59{bottom:348.690000px;}
.y42{bottom:362.190000px;}
.y1e{bottom:367.050000px;}
.y64{bottom:370.290000px;}
.y99{bottom:371.550000px;}
.y6e{bottom:376.050000px;}
.y2f{bottom:376.590000px;}
.y82{bottom:378.210000px;}
.ya1{bottom:380.190000px;}
.y58{bottom:384.870000px;}
.y1d{bottom:391.215000px;}
.y41{bottom:398.415000px;}
.y63{bottom:406.515000px;}
.y6d{bottom:407.775000px;}
.ya0{bottom:411.915000px;}
.y2e{bottom:412.815000px;}
.y81{bottom:414.435000px;}
.y1c{bottom:415.335000px;}
.y57{bottom:421.095000px;}
.y40{bottom:429.915000px;}
.y62{bottom:438.195000px;}
.y80{bottom:438.555000px;}
.y98{bottom:439.455000px;}
.y2d{bottom:444.495000px;}
.y1b{bottom:451.515000px;}
.y56{bottom:457.275000px;}
.y7f{bottom:462.675000px;}
.y1a{bottom:475.635000px;}
.y7e{bottom:486.795000px;}
.y55{bottom:488.775000px;}
.y19{bottom:499.755000px;}
.y8d{bottom:503.175000px;}
.y7d{bottom:510.915000px;}
.y18{bottom:523.875000px;}
.y7c{bottom:535.215000px;}
.y8c{bottom:539.355000px;}
.y7b{bottom:559.335000px;}
.y17{bottom:560.055000px;}
.y8b{bottom:571.035000px;}
.y7a{bottom:583.455000px;}
.y16{bottom:584.175000px;}
.y79{bottom:607.575000px;}
.y15{bottom:608.295000px;}
.y78{bottom:631.695000px;}
.y14{bottom:632.415000px;}
.y77{bottom:655.845000px;}
.y13{bottom:668.625000px;}
.y76{bottom:679.965000px;}
.y12{bottom:692.745000px;}
.y97{bottom:702.105000px;}
.y75{bottom:704.265000px;}
.y11{bottom:717.045000px;}
.y9f{bottom:718.125000px;}
.y74{bottom:728.385000px;}
.y10{bottom:741.165000px;}
.y9e{bottom:742.245000px;}
.y73{bottom:752.505000px;}
.yf{bottom:777.345000px;}
.y9d{bottom:778.425000px;}
.y72{bottom:788.685000px;}
.ye{bottom:801.465000px;}
.y9c{bottom:809.925000px;}
.y71{bottom:824.865000px;}
.yd{bottom:825.585000px;}
.yc{bottom:849.705000px;}
.y70{bottom:856.365000px;}
.yb{bottom:873.825000px;}
.y96{bottom:902.850000px;}
.ya{bottom:916.710000px;}
.y95{bottom:939.030000px;}
.y9{bottom:970.710000px;}
.y8{bottom:994.830000px;}
.y7{bottom:1018.950000px;}
.y6{bottom:1043.070000px;}
.y4e{bottom:1071.150000px;}
.y5{bottom:1079.250000px;}
.y2c{bottom:1085.730000px;}
.y3f{bottom:1095.090000px;}
.y4d{bottom:1107.330000px;}
.y2b{bottom:1109.850000px;}
.y4{bottom:1115.430000px;}
.y3e{bottom:1119.210000px;}
.y2a{bottom:1133.970000px;}
.y4c{bottom:1143.510000px;}
.y3{bottom:1149.120000px;}
.y3d{bottom:1155.420000px;}
.y2{bottom:1176.660000px;}
.y3c{bottom:1179.540000px;}
.h4{height:74.820586px;}
.h2{height:75.519844px;}
.h5{height:78.201914px;}
.h3{height:86.642227px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:106.415987px;}
.x2a{left:107.855987px;}
.x2c{left:117.935987px;}
.x27{left:122.435987px;}
.x4{left:131.975987px;}
.x5{left:148.895987px;}
.x1d{left:155.729987px;}
.x11{left:157.349987px;}
.x21{left:160.409987px;}
.x23{left:162.209987px;}
.x2{left:169.769987px;}
.x13{left:170.849987px;}
.x6{left:174.449987px;}
.x14{left:183.989987px;}
.x2f{left:194.249987px;}
.xe{left:197.309987px;}
.x25{left:198.389987px;}
.x1a{left:210.089987px;}
.x10{left:214.409987px;}
.x28{left:217.109987px;}
.x3{left:222.509987px;}
.x2e{left:231.689987px;}
.x26{left:236.909987px;}
.x19{left:241.769987px;}
.xb{left:246.269987px;}
.x1b{left:261.749987px;}
.x15{left:265.889987px;}
.x9{left:311.834987px;}
.x29{left:313.814987px;}
.x8{left:328.754987px;}
.x12{left:344.234987px;}
.xd{left:366.374987px;}
.x22{left:436.034987px;}
.x1{left:441.434987px;}
.x17{left:446.654987px;}
.x20{left:459.434987px;}
.xc{left:560.984987px;}
.x1f{left:680.189987px;}
.x1e{left:681.809987px;}
.x24{left:682.889987px;}
.x2d{left:697.649987px;}
.x2b{left:700.709987px;}
.x16{left:706.649987px;}
.x18{left:722.489987px;}
.x30{left:732.929987px;}
.xa{left:759.029987px;}
.xf{left:770.909987px;}
.x1c{left:786.749987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls12{letter-spacing:-0.672000pt;}
.ls7{letter-spacing:-0.608000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.294933pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.033280pt;}
.ls9{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.033280pt;}
.ls10{letter-spacing:0.303360pt;}
.ls3{letter-spacing:0.303467pt;}
.lsa{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.328533pt;}
.lsf{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.480000pt;}
.ls1{letter-spacing:16.480000pt;}
.wsc{word-spacing:-19.056533pt;}
.ws1{word-spacing:-19.048533pt;}
.ws9{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.031467pt;}
.ws6{word-spacing:-18.753280pt;}
.wsa{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.695040pt;}
.ws5{word-spacing:-18.686720pt;}
.ws8{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.112000pt;}
.wsd{word-spacing:-18.048000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-0.902613pt;}
._0{width:1.021440pt;}
._f{width:1.973760pt;}
._3{width:3.219840pt;}
._2{width:5.091840pt;}
._5{width:7.045973pt;}
._4{width:7.999147pt;}
._11{width:9.440000pt;}
._b{width:10.483200pt;}
._15{width:11.567147pt;}
._c{width:12.718080pt;}
._1c{width:13.777920pt;}
._1a{width:14.676480pt;}
._14{width:15.579093pt;}
._10{width:16.623360pt;}
._1e{width:17.608960pt;}
._8{width:20.292480pt;}
._9{width:21.494613pt;}
._a{width:22.739200pt;}
._1b{width:26.881920pt;}
._e{width:29.282133pt;}
._d{width:30.326400pt;}
._1d{width:33.171840pt;}
._13{width:34.588800pt;}
._12{width:35.650347pt;}
._7{width:39.781547pt;}
._6{width:40.959360pt;}
._18{width:79.782613pt;}
._16{width:105.898667pt;}
._19{width:141.066667pt;}
._17{width:173.280000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:30.400000pt;}
.y61{bottom:52.960000pt;}
.y94{bottom:53.280000pt;}
.y4b{bottom:56.800000pt;}
.y3b{bottom:58.560000pt;}
.y29{bottom:60.800000pt;}
.y9b{bottom:63.680000pt;}
.y6c{bottom:72.000000pt;}
.ya5{bottom:74.400000pt;}
.y54{bottom:74.720000pt;}
.y52{bottom:77.440000pt;}
.y8a{bottom:79.040000pt;}
.y3a{bottom:80.000000pt;}
.y60{bottom:85.120000pt;}
.y93{bottom:85.440000pt;}
.y28{bottom:90.240000pt;}
.y9a{bottom:91.680000pt;}
.y4a{bottom:94.240000pt;}
.y39{bottom:101.440000pt;}
.y53{bottom:102.880000pt;}
.y6b{bottom:104.160000pt;}
.y51{bottom:109.600000pt;}
.y89{bottom:111.200000pt;}
.y5f{bottom:117.280000pt;}
.y92{bottom:117.600000pt;}
.y27{bottom:122.432000pt;}
.y38{bottom:122.912000pt;}
.y49{bottom:131.712000pt;}
.y6a{bottom:136.346667pt;}
.y50{bottom:141.786667pt;}
.y88{bottom:143.386667pt;}
.y26{bottom:143.866667pt;}
.y37{bottom:144.346667pt;}
.y5e{bottom:149.306667pt;}
.y91{bottom:149.626667pt;}
.y48{bottom:153.306667pt;}
.y25{bottom:165.306667pt;}
.y36{bottom:165.786667pt;}
.y69{bottom:168.506667pt;}
.y4f{bottom:169.786667pt;}
.y47{bottom:174.746667pt;}
.y87{bottom:175.546667pt;}
.y5d{bottom:181.466667pt;}
.y90{bottom:181.786667pt;}
.y24{bottom:186.746667pt;}
.y35{bottom:187.226667pt;}
.y46{bottom:196.186667pt;}
.y68{bottom:200.666667pt;}
.y86{bottom:207.706667pt;}
.y5c{bottom:213.626667pt;}
.y8f{bottom:213.946667pt;}
.y23{bottom:218.906667pt;}
.y34{bottom:219.386667pt;}
.y67{bottom:232.826667pt;}
.y45{bottom:233.626667pt;}
.y85{bottom:239.706667pt;}
.y22{bottom:240.346667pt;}
.y33{bottom:240.826667pt;}
.y8e{bottom:242.106667pt;}
.y5b{bottom:245.786667pt;}
.ya4{bottom:252.186667pt;}
.y21{bottom:261.786667pt;}
.y32{bottom:262.426667pt;}
.y44{bottom:263.066667pt;}
.y66{bottom:264.826667pt;}
.y84{bottom:271.866667pt;}
.ya3{bottom:273.626667pt;}
.y5a{bottom:277.946667pt;}
.y20{bottom:283.226667pt;}
.y31{bottom:283.866667pt;}
.y43{bottom:292.506667pt;}
.y65{bottom:296.986667pt;}
.y6f{bottom:302.106667pt;}
.y83{bottom:304.026667pt;}
.y1f{bottom:304.666667pt;}
.y30{bottom:305.306667pt;}
.ya2{bottom:305.786667pt;}
.y59{bottom:309.946667pt;}
.y42{bottom:321.946667pt;}
.y1e{bottom:326.266667pt;}
.y64{bottom:329.146667pt;}
.y99{bottom:330.266667pt;}
.y6e{bottom:334.266667pt;}
.y2f{bottom:334.746667pt;}
.y82{bottom:336.186667pt;}
.ya1{bottom:337.946667pt;}
.y58{bottom:342.106667pt;}
.y1d{bottom:347.746667pt;}
.y41{bottom:354.146667pt;}
.y63{bottom:361.346667pt;}
.y6d{bottom:362.466667pt;}
.ya0{bottom:366.146667pt;}
.y2e{bottom:366.946667pt;}
.y81{bottom:368.386667pt;}
.y1c{bottom:369.186667pt;}
.y57{bottom:374.306667pt;}
.y40{bottom:382.146667pt;}
.y62{bottom:389.506667pt;}
.y80{bottom:389.826667pt;}
.y98{bottom:390.626667pt;}
.y2d{bottom:395.106667pt;}
.y1b{bottom:401.346667pt;}
.y56{bottom:406.466667pt;}
.y7f{bottom:411.266667pt;}
.y1a{bottom:422.786667pt;}
.y7e{bottom:432.706667pt;}
.y55{bottom:434.466667pt;}
.y19{bottom:444.226667pt;}
.y8d{bottom:447.266667pt;}
.y7d{bottom:454.146667pt;}
.y18{bottom:465.666667pt;}
.y7c{bottom:475.746667pt;}
.y8c{bottom:479.426667pt;}
.y7b{bottom:497.186667pt;}
.y17{bottom:497.826667pt;}
.y8b{bottom:507.586667pt;}
.y7a{bottom:518.626667pt;}
.y16{bottom:519.266667pt;}
.y79{bottom:540.066667pt;}
.y15{bottom:540.706667pt;}
.y78{bottom:561.506667pt;}
.y14{bottom:562.146667pt;}
.y77{bottom:582.973333pt;}
.y13{bottom:594.333333pt;}
.y76{bottom:604.413333pt;}
.y12{bottom:615.773333pt;}
.y97{bottom:624.093333pt;}
.y75{bottom:626.013333pt;}
.y11{bottom:637.373333pt;}
.y9f{bottom:638.333333pt;}
.y74{bottom:647.453333pt;}
.y10{bottom:658.813333pt;}
.y9e{bottom:659.773333pt;}
.y73{bottom:668.893333pt;}
.yf{bottom:690.973333pt;}
.y9d{bottom:691.933333pt;}
.y72{bottom:701.053333pt;}
.ye{bottom:712.413333pt;}
.y9c{bottom:719.933333pt;}
.y71{bottom:733.213333pt;}
.yd{bottom:733.853333pt;}
.yc{bottom:755.293333pt;}
.y70{bottom:761.213333pt;}
.yb{bottom:776.733333pt;}
.y96{bottom:802.533333pt;}
.ya{bottom:814.853333pt;}
.y95{bottom:834.693333pt;}
.y9{bottom:862.853333pt;}
.y8{bottom:884.293333pt;}
.y7{bottom:905.733333pt;}
.y6{bottom:927.173333pt;}
.y4e{bottom:952.133333pt;}
.y5{bottom:959.333333pt;}
.y2c{bottom:965.093333pt;}
.y3f{bottom:973.413333pt;}
.y4d{bottom:984.293333pt;}
.y2b{bottom:986.533333pt;}
.y4{bottom:991.493333pt;}
.y3e{bottom:994.853333pt;}
.y2a{bottom:1007.973333pt;}
.y4c{bottom:1016.453333pt;}
.y3{bottom:1021.440000pt;}
.y3d{bottom:1027.040000pt;}
.y2{bottom:1045.920000pt;}
.y3c{bottom:1048.480000pt;}
.h4{height:66.507188pt;}
.h2{height:67.128750pt;}
.h5{height:69.512812pt;}
.h3{height:77.015312pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:94.591988pt;}
.x2a{left:95.871988pt;}
.x2c{left:104.831988pt;}
.x27{left:108.831988pt;}
.x4{left:117.311988pt;}
.x5{left:132.351988pt;}
.x1d{left:138.426655pt;}
.x11{left:139.866655pt;}
.x21{left:142.586655pt;}
.x23{left:144.186655pt;}
.x2{left:150.906655pt;}
.x13{left:151.866655pt;}
.x6{left:155.066655pt;}
.x14{left:163.546655pt;}
.x2f{left:172.666655pt;}
.xe{left:175.386655pt;}
.x25{left:176.346655pt;}
.x1a{left:186.746655pt;}
.x10{left:190.586655pt;}
.x28{left:192.986655pt;}
.x3{left:197.786655pt;}
.x2e{left:205.946655pt;}
.x26{left:210.586655pt;}
.x19{left:214.906655pt;}
.xb{left:218.906655pt;}
.x1b{left:232.666655pt;}
.x15{left:236.346655pt;}
.x9{left:277.186655pt;}
.x29{left:278.946655pt;}
.x8{left:292.226655pt;}
.x12{left:305.986655pt;}
.xd{left:325.666655pt;}
.x22{left:387.586655pt;}
.x1{left:392.386655pt;}
.x17{left:397.026655pt;}
.x20{left:408.386655pt;}
.xc{left:498.653322pt;}
.x1f{left:604.613322pt;}
.x1e{left:606.053322pt;}
.x24{left:607.013322pt;}
.x2d{left:620.133322pt;}
.x2b{left:622.853322pt;}
.x16{left:628.133322pt;}
.x18{left:642.213322pt;}
.x30{left:651.493322pt;}
.xa{left:674.693322pt;}
.xf{left:685.253322pt;}
.x1c{left:699.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; }
  