
    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_366f2def5e129201731fdde0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_a4fe09e340bed2dd4da6f298.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bf7068f9624f328bcd8da3be.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_919ea19b41255f5f139cf6f7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_96a9e5111ca44d8461b28d17.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0dda1ce77c1ef5f77078228d.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6f1598b4b2d5412a8a99770c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_566422e414d4db483637afcc.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.334240px;}
.lsc{letter-spacing:103.104000px;}
.ls6{letter-spacing:139.104000px;}
.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;}
}
.ws4{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.568000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._22{margin-left:-5.287200px;}
._12{margin-left:-4.003200px;}
._2{margin-left:-2.445120px;}
._1{margin-left:-1.333440px;}
._0{width:1.484640px;}
._5{width:3.133440px;}
._6{width:4.314720px;}
._7{width:6.264000px;}
._3{width:7.560000px;}
._4{width:8.595360px;}
._11{width:9.692640px;}
._a{width:11.376000px;}
._b{width:12.519840px;}
._19{width:13.571520px;}
._e{width:14.688000px;}
._f{width:15.884640px;}
._21{width:16.947360px;}
._8{width:19.440000px;}
._9{width:20.664000px;}
._10{width:21.699360px;}
._c{width:23.616000px;}
._d{width:25.035840px;}
._16{width:26.043840px;}
._23{width:27.144000px;}
._1a{width:28.800000px;}
._1c{width:30.096000px;}
._13{width:31.656000px;}
._1b{width:33.051360px;}
._1f{width:34.776000px;}
._14{width:36.576000px;}
._15{width:37.851840px;}
._17{width:39.456000px;}
._18{width:40.680000px;}
._31{width:41.760000px;}
._30{width:42.888000px;}
._20{width:44.472000px;}
._24{width:46.690560px;}
._1d{width:47.808000px;}
._1e{width:48.888000px;}
._28{width:50.040000px;}
._29{width:51.264000px;}
._33{width:54.216000px;}
._32{width:56.304000px;}
._25{width:61.056000px;}
._27{width:62.412000px;}
._26{width:63.516000px;}
._2c{width:81.288000px;}
._2d{width:82.561440px;}
._39{width:85.176000px;}
._3a{width:86.256000px;}
._2a{width:98.496000px;}
._2b{width:99.504000px;}
._35{width:116.640000px;}
._2e{width:136.872000px;}
._2f{width:137.892000px;}
._36{width:224.424000px;}
._38{width:230.836800px;}
._37{width:232.032000px;}
._34{width:290.677440px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(31,55,99);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(33,33,33);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:7.020000px;}
.y59{bottom:7.380000px;}
.y54{bottom:7.425000px;}
.y61{bottom:7.560000px;}
.y4e{bottom:30.960000px;}
.y58{bottom:31.140000px;}
.y60{bottom:31.320000px;}
.y53{bottom:31.365000px;}
.y4d{bottom:54.720000px;}
.y5c{bottom:54.900000px;}
.y57{bottom:55.080000px;}
.y52{bottom:55.125000px;}
.y7{bottom:57.600000px;}
.y4c{bottom:78.480000px;}
.y5e{bottom:78.690000px;}
.y56{bottom:78.840000px;}
.y51{bottom:78.885000px;}
.y3f{bottom:95.220000px;}
.y4b{bottom:102.240000px;}
.y5b{bottom:102.600000px;}
.y70{bottom:107.820000px;}
.y49{bottom:110.160000px;}
.y6a{bottom:112.140000px;}
.y32{bottom:118.980000px;}
.y6f{bottom:131.220000px;}
.y48{bottom:133.920000px;}
.y69{bottom:136.080000px;}
.y31{bottom:142.740000px;}
.y6e{bottom:154.980000px;}
.y47{bottom:157.680000px;}
.y68{bottom:159.840000px;}
.y30{bottom:166.500000px;}
.y6d{bottom:178.950000px;}
.y46{bottom:181.470000px;}
.y67{bottom:183.630000px;}
.y2f{bottom:190.470000px;}
.y6c{bottom:202.710000px;}
.y45{bottom:205.410000px;}
.y66{bottom:207.390000px;}
.y2e{bottom:214.230000px;}
.y6b{bottom:222.690000px;}
.y44{bottom:228.810000px;}
.y65{bottom:231.150000px;}
.y2d{bottom:237.990000px;}
.y43{bottom:252.570000px;}
.y64{bottom:255.090000px;}
.y2c{bottom:261.750000px;}
.y63{bottom:272.190000px;}
.y42{bottom:276.330000px;}
.y2b{bottom:285.510000px;}
.y41{bottom:300.270000px;}
.y2a{bottom:309.450000px;}
.y40{bottom:320.070000px;}
.y29{bottom:333.210000px;}
.y28{bottom:356.970000px;}
.y27{bottom:380.730000px;}
.y62{bottom:391.890000px;}
.y26{bottom:404.670000px;}
.y25{bottom:428.475000px;}
.y24{bottom:452.235000px;}
.y23{bottom:475.995000px;}
.y5f{bottom:487.875000px;}
.y22{bottom:499.935000px;}
.y21{bottom:523.695000px;}
.y72{bottom:547.095000px;}
.y20{bottom:547.455000px;}
.y71{bottom:570.855000px;}
.y1f{bottom:571.215000px;}
.y5d{bottom:583.995000px;}
.y1e{bottom:595.155000px;}
.y1d{bottom:618.915000px;}
.y1c{bottom:642.675000px;}
.y1b{bottom:666.465000px;}
.y5a{bottom:679.965000px;}
.y1a{bottom:690.405000px;}
.y19{bottom:714.165000px;}
.y18{bottom:737.565000px;}
.y3b{bottom:737.925000px;}
.y17{bottom:761.685000px;}
.y16{bottom:785.445000px;}
.y55{bottom:799.665000px;}
.y15{bottom:809.385000px;}
.y14{bottom:833.145000px;}
.y13{bottom:856.905000px;}
.y3e{bottom:880.305000px;}
.y12{bottom:880.665000px;}
.y50{bottom:895.605000px;}
.y3d{bottom:904.290000px;}
.y11{bottom:904.650000px;}
.y3a{bottom:928.050000px;}
.y10{bottom:928.410000px;}
.yf{bottom:951.810000px;}
.y3c{bottom:952.170000px;}
.ye{bottom:975.570000px;}
.y39{bottom:975.930000px;}
.y4a{bottom:991.590000px;}
.yd{bottom:999.510000px;}
.y38{bottom:999.870000px;}
.yc{bottom:1023.270000px;}
.y37{bottom:1023.630000px;}
.yb{bottom:1047.030000px;}
.y36{bottom:1047.390000px;}
.ya{bottom:1070.790000px;}
.y35{bottom:1071.150000px;}
.y9{bottom:1094.730000px;}
.y34{bottom:1095.090000px;}
.y8{bottom:1118.490000px;}
.y33{bottom:1118.850000px;}
.y6{bottom:1144.080000px;}
.y5{bottom:1164.780000px;}
.y4{bottom:1183.140000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.680000px;}
.y1{bottom:1238.040000px;}
.h2{height:61.189805px;}
.h4{height:65.884219px;}
.h7{height:70.664062px;}
.h6{height:72.376875px;}
.h5{height:72.562500px;}
.h8{height:74.004654px;}
.h3{height:84.898125px;}
.hc{height:95.076000px;}
.hb{height:95.220000px;}
.ha{height:95.256000px;}
.h9{height:118.980000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:68.796000px;}
.w5{width:117.720000px;}
.w6{width:123.876000px;}
.w7{width:129.960000px;}
.w8{width:135.396000px;}
.w3{width:141.876000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x29{left:9.720000px;}
.x1f{left:10.800000px;}
.x1d{left:12.060000px;}
.x1a{left:13.320000px;}
.x28{left:14.760000px;}
.x22{left:16.380000px;}
.x17{left:18.720000px;}
.x2c{left:19.800000px;}
.x32{left:21.960000px;}
.x24{left:23.085000px;}
.x2b{left:24.525000px;}
.x2d{left:25.560000px;}
.x1c{left:27.000000px;}
.x2a{left:28.440000px;}
.x27{left:30.240000px;}
.x25{left:31.896000px;}
.x31{left:33.840000px;}
.x33{left:35.460000px;}
.x21{left:36.540000px;}
.x2f{left:39.240000px;}
.x34{left:40.500000px;}
.x30{left:42.345000px;}
.x19{left:43.380000px;}
.x15{left:45.936000px;}
.x26{left:47.016000px;}
.x2e{left:48.960000px;}
.x1e{left:52.740000px;}
.x12{left:84.959987px;}
.xb{left:93.419987px;}
.x7{left:96.659987px;}
.x10{left:97.955987px;}
.xd{left:103.715987px;}
.x9{left:117.395987px;}
.x11{left:138.095987px;}
.x16{left:228.630000px;}
.xf{left:236.549987px;}
.xa{left:253.109987px;}
.xe{left:271.649987px;}
.xc{left:292.034987px;}
.x18{left:298.155000px;}
.x3{left:350.534987px;}
.x35{left:385.994987px;}
.x1b{left:416.595000px;}
.x4{left:433.874987px;}
.x8{left:446.474987px;}
.x2{left:457.094987px;}
.x1{left:510.404987px;}
.x20{left:541.185000px;}
.x23{left:671.865000px;}
.x5{left:707.909987px;}
.x13{left:787.109987px;}
.x6{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.074880pt;}
.lsc{letter-spacing:91.648000pt;}
.ls6{letter-spacing:123.648000pt;}
.ws4{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.616000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._22{margin-left:-4.699733pt;}
._12{margin-left:-3.558400pt;}
._2{margin-left:-2.173440pt;}
._1{margin-left:-1.185280pt;}
._0{width:1.319680pt;}
._5{width:2.785280pt;}
._6{width:3.835307pt;}
._7{width:5.568000pt;}
._3{width:6.720000pt;}
._4{width:7.640320pt;}
._11{width:8.615680pt;}
._a{width:10.112000pt;}
._b{width:11.128747pt;}
._19{width:12.063573pt;}
._e{width:13.056000pt;}
._f{width:14.119680pt;}
._21{width:15.064320pt;}
._8{width:17.280000pt;}
._9{width:18.368000pt;}
._10{width:19.288320pt;}
._c{width:20.992000pt;}
._d{width:22.254080pt;}
._16{width:23.150080pt;}
._23{width:24.128000pt;}
._1a{width:25.600000pt;}
._1c{width:26.752000pt;}
._13{width:28.138667pt;}
._1b{width:29.378987pt;}
._1f{width:30.912000pt;}
._14{width:32.512000pt;}
._15{width:33.646080pt;}
._17{width:35.072000pt;}
._18{width:36.160000pt;}
._31{width:37.120000pt;}
._30{width:38.122667pt;}
._20{width:39.530667pt;}
._24{width:41.502720pt;}
._1d{width:42.496000pt;}
._1e{width:43.456000pt;}
._28{width:44.480000pt;}
._29{width:45.568000pt;}
._33{width:48.192000pt;}
._32{width:50.048000pt;}
._25{width:54.272000pt;}
._27{width:55.477333pt;}
._26{width:56.458667pt;}
._2c{width:72.256000pt;}
._2d{width:73.387947pt;}
._39{width:75.712000pt;}
._3a{width:76.672000pt;}
._2a{width:87.552000pt;}
._2b{width:88.448000pt;}
._35{width:103.680000pt;}
._2e{width:121.664000pt;}
._2f{width:122.570667pt;}
._36{width:199.488000pt;}
._38{width:205.188267pt;}
._37{width:206.250667pt;}
._34{width:258.379947pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:6.240000pt;}
.y59{bottom:6.560000pt;}
.y54{bottom:6.600000pt;}
.y61{bottom:6.720000pt;}
.y4e{bottom:27.520000pt;}
.y58{bottom:27.680000pt;}
.y60{bottom:27.840000pt;}
.y53{bottom:27.880000pt;}
.y4d{bottom:48.640000pt;}
.y5c{bottom:48.800000pt;}
.y57{bottom:48.960000pt;}
.y52{bottom:49.000000pt;}
.y7{bottom:51.200000pt;}
.y4c{bottom:69.760000pt;}
.y5e{bottom:69.946667pt;}
.y56{bottom:70.080000pt;}
.y51{bottom:70.120000pt;}
.y3f{bottom:84.640000pt;}
.y4b{bottom:90.880000pt;}
.y5b{bottom:91.200000pt;}
.y70{bottom:95.840000pt;}
.y49{bottom:97.920000pt;}
.y6a{bottom:99.680000pt;}
.y32{bottom:105.760000pt;}
.y6f{bottom:116.640000pt;}
.y48{bottom:119.040000pt;}
.y69{bottom:120.960000pt;}
.y31{bottom:126.880000pt;}
.y6e{bottom:137.760000pt;}
.y47{bottom:140.160000pt;}
.y68{bottom:142.080000pt;}
.y30{bottom:148.000000pt;}
.y6d{bottom:159.066667pt;}
.y46{bottom:161.306667pt;}
.y67{bottom:163.226667pt;}
.y2f{bottom:169.306667pt;}
.y6c{bottom:180.186667pt;}
.y45{bottom:182.586667pt;}
.y66{bottom:184.346667pt;}
.y2e{bottom:190.426667pt;}
.y6b{bottom:197.946667pt;}
.y44{bottom:203.386667pt;}
.y65{bottom:205.466667pt;}
.y2d{bottom:211.546667pt;}
.y43{bottom:224.506667pt;}
.y64{bottom:226.746667pt;}
.y2c{bottom:232.666667pt;}
.y63{bottom:241.946667pt;}
.y42{bottom:245.626667pt;}
.y2b{bottom:253.786667pt;}
.y41{bottom:266.906667pt;}
.y2a{bottom:275.066667pt;}
.y40{bottom:284.506667pt;}
.y29{bottom:296.186667pt;}
.y28{bottom:317.306667pt;}
.y27{bottom:338.426667pt;}
.y62{bottom:348.346667pt;}
.y26{bottom:359.706667pt;}
.y25{bottom:380.866667pt;}
.y24{bottom:401.986667pt;}
.y23{bottom:423.106667pt;}
.y5f{bottom:433.666667pt;}
.y22{bottom:444.386667pt;}
.y21{bottom:465.506667pt;}
.y72{bottom:486.306667pt;}
.y20{bottom:486.626667pt;}
.y71{bottom:507.426667pt;}
.y1f{bottom:507.746667pt;}
.y5d{bottom:519.106667pt;}
.y1e{bottom:529.026667pt;}
.y1d{bottom:550.146667pt;}
.y1c{bottom:571.266667pt;}
.y1b{bottom:592.413333pt;}
.y5a{bottom:604.413333pt;}
.y1a{bottom:613.693333pt;}
.y19{bottom:634.813333pt;}
.y18{bottom:655.613333pt;}
.y3b{bottom:655.933333pt;}
.y17{bottom:677.053333pt;}
.y16{bottom:698.173333pt;}
.y55{bottom:710.813333pt;}
.y15{bottom:719.453333pt;}
.y14{bottom:740.573333pt;}
.y13{bottom:761.693333pt;}
.y3e{bottom:782.493333pt;}
.y12{bottom:782.813333pt;}
.y50{bottom:796.093333pt;}
.y3d{bottom:803.813333pt;}
.y11{bottom:804.133333pt;}
.y3a{bottom:824.933333pt;}
.y10{bottom:825.253333pt;}
.yf{bottom:846.053333pt;}
.y3c{bottom:846.373333pt;}
.ye{bottom:867.173333pt;}
.y39{bottom:867.493333pt;}
.y4a{bottom:881.413333pt;}
.yd{bottom:888.453333pt;}
.y38{bottom:888.773333pt;}
.yc{bottom:909.573333pt;}
.y37{bottom:909.893333pt;}
.yb{bottom:930.693333pt;}
.y36{bottom:931.013333pt;}
.ya{bottom:951.813333pt;}
.y35{bottom:952.133333pt;}
.y9{bottom:973.093333pt;}
.y34{bottom:973.413333pt;}
.y8{bottom:994.213333pt;}
.y33{bottom:994.533333pt;}
.y6{bottom:1016.960000pt;}
.y5{bottom:1035.360000pt;}
.y4{bottom:1051.680000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.160000pt;}
.y1{bottom:1100.480000pt;}
.h2{height:54.390938pt;}
.h4{height:58.563750pt;}
.h7{height:62.812500pt;}
.h6{height:64.335000pt;}
.h5{height:64.500000pt;}
.h8{height:65.781915pt;}
.h3{height:75.465000pt;}
.hc{height:84.512000pt;}
.hb{height:84.640000pt;}
.ha{height:84.672000pt;}
.h9{height:105.760000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:61.152000pt;}
.w5{width:104.640000pt;}
.w6{width:110.112000pt;}
.w7{width:115.520000pt;}
.w8{width:120.352000pt;}
.w3{width:126.112000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x29{left:8.640000pt;}
.x1f{left:9.600000pt;}
.x1d{left:10.720000pt;}
.x1a{left:11.840000pt;}
.x28{left:13.120000pt;}
.x22{left:14.560000pt;}
.x17{left:16.640000pt;}
.x2c{left:17.600000pt;}
.x32{left:19.520000pt;}
.x24{left:20.520000pt;}
.x2b{left:21.800000pt;}
.x2d{left:22.720000pt;}
.x1c{left:24.000000pt;}
.x2a{left:25.280000pt;}
.x27{left:26.880000pt;}
.x25{left:28.352000pt;}
.x31{left:30.080000pt;}
.x33{left:31.520000pt;}
.x21{left:32.480000pt;}
.x2f{left:34.880000pt;}
.x34{left:36.000000pt;}
.x30{left:37.640000pt;}
.x19{left:38.560000pt;}
.x15{left:40.832000pt;}
.x26{left:41.792000pt;}
.x2e{left:43.520000pt;}
.x1e{left:46.880000pt;}
.x12{left:75.519988pt;}
.xb{left:83.039988pt;}
.x7{left:85.919988pt;}
.x10{left:87.071988pt;}
.xd{left:92.191988pt;}
.x9{left:104.351988pt;}
.x11{left:122.751988pt;}
.x16{left:203.226667pt;}
.xf{left:210.266655pt;}
.xa{left:224.986655pt;}
.xe{left:241.466655pt;}
.xc{left:259.586655pt;}
.x18{left:265.026667pt;}
.x3{left:311.586655pt;}
.x35{left:343.106655pt;}
.x1b{left:370.306667pt;}
.x4{left:385.666655pt;}
.x8{left:396.866655pt;}
.x2{left:406.306655pt;}
.x1{left:453.693322pt;}
.x20{left:481.053333pt;}
.x23{left:597.213333pt;}
.x5{left:629.253322pt;}
.x13{left:699.653322pt;}
.x6{left:718.213322pt;}
}




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