
    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_f2be46783f8cb4b5481d5231.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_8bc7817c3d390b2699d3b9f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b7eccf23971d8738b3d4739d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966797;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_b88fb34cd049d10e4dc1cd30.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ffe522ddc19bde6ba3898a24.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_bf18ff1186c1668dbf596de7.woff2')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_badf5b918f8db320abe9f9dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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:ff9;src:url('chunks/assets/font_505c1580e14157d9aa25f80d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-77.760000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.069600px;}
.ls3{letter-spacing:-0.037440px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.186600px;}
.ls0{letter-spacing:0.288000px;}
.lsc{letter-spacing:2238.216000px;}
.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:-84.240000px;}
.ws6{word-spacing:-20.160000px;}
.ws1{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.296000px;}
.ws5{word-spacing:-16.272000px;}
.ws9{word-spacing:-14.970240px;}
.ws3{word-spacing:-13.692360px;}
.ws8{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.436160px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-5.732640px;}
._1b{margin-left:-4.680000px;}
._f{margin-left:-3.528000px;}
._10{margin-left:-2.249280px;}
._0{margin-left:-1.179360px;}
._1{width:1.131360px;}
._3{width:2.808000px;}
._2{width:4.032000px;}
._4{width:5.912640px;}
._9{width:7.122720px;}
._8{width:8.208000px;}
._7{width:9.216000px;}
._a{width:11.016000px;}
._b{width:12.672000px;}
._c{width:13.824000px;}
._d{width:14.832000px;}
._6{width:15.840000px;}
._5{width:17.064000px;}
._e{width:18.936000px;}
._12{width:21.548640px;}
._1c{width:22.638720px;}
._20{width:23.928480px;}
._13{width:25.056000px;}
._14{width:26.444640px;}
._17{width:28.008000px;}
._1e{width:29.880000px;}
._1f{width:30.960000px;}
._16{width:32.112000px;}
._15{width:33.336000px;}
._11{width:38.520000px;}
._1d{width:40.608000px;}
._1a{width:57.135360px;}
._19{width:58.896000px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(7,42,84);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.456000px;}
.y2{bottom:77.616000px;}
.y21{bottom:113.796000px;}
.y53{bottom:115.056000px;}
.y83{bottom:120.096000px;}
.ya6{bottom:128.916000px;}
.y20{bottom:134.496000px;}
.y52{bottom:135.756000px;}
.y82{bottom:140.976000px;}
.ya5{bottom:149.616000px;}
.y1f{bottom:155.190000px;}
.y51{bottom:156.450000px;}
.y81{bottom:161.670000px;}
.ya4{bottom:170.310000px;}
.y1e{bottom:175.890000px;}
.y50{bottom:177.150000px;}
.y80{bottom:182.370000px;}
.ya3{bottom:191.010000px;}
.y1d{bottom:196.590000px;}
.y4f{bottom:198.930000px;}
.y7f{bottom:203.070000px;}
.ya2{bottom:212.790000px;}
.y1c{bottom:217.290000px;}
.y4e{bottom:221.070000px;}
.y7e{bottom:223.770000px;}
.ya1{bottom:234.750000px;}
.y1b{bottom:237.990000px;}
.y4d{bottom:241.950000px;}
.y7d{bottom:244.470000px;}
.ya0{bottom:256.350000px;}
.y1a{bottom:258.690000px;}
.y4c{bottom:262.650000px;}
.y7c{bottom:265.170000px;}
.y9f{bottom:275.790000px;}
.y19{bottom:279.390000px;}
.y4b{bottom:283.350000px;}
.y7b{bottom:285.870000px;}
.y9e{bottom:296.535000px;}
.y18{bottom:300.135000px;}
.y4a{bottom:304.095000px;}
.y7a{bottom:306.615000px;}
.y9d{bottom:317.235000px;}
.y17{bottom:320.835000px;}
.y49{bottom:324.615000px;}
.y79{bottom:327.315000px;}
.y9c{bottom:337.935000px;}
.y16{bottom:342.615000px;}
.y48{bottom:345.315000px;}
.y78{bottom:348.015000px;}
.y9b{bottom:358.635000px;}
.y47{bottom:366.015000px;}
.y77{bottom:368.715000px;}
.y15{bottom:378.615000px;}
.y9a{bottom:379.335000px;}
.y46{bottom:386.715000px;}
.y76{bottom:390.495000px;}
.y14{bottom:393.015000px;}
.y99{bottom:400.035000px;}
.y45{bottom:407.415000px;}
.y75{bottom:412.455000px;}
.y98{bottom:420.735000px;}
.y44{bottom:428.115000px;}
.y74{bottom:433.335000px;}
.y97{bottom:441.435000px;}
.y43{bottom:448.815000px;}
.y73{bottom:454.035000px;}
.y96{bottom:462.135000px;}
.y42{bottom:469.515000px;}
.y72{bottom:474.735000px;}
.y95{bottom:482.835000px;}
.y41{bottom:491.295000px;}
.y71{bottom:495.435000px;}
.y94{bottom:504.615000px;}
.y40{bottom:513.435000px;}
.y70{bottom:516.135000px;}
.y93{bottom:526.575000px;}
.y3f{bottom:534.315000px;}
.y6f{bottom:536.835000px;}
.y92{bottom:547.455000px;}
.y3e{bottom:555.015000px;}
.y6e{bottom:557.535000px;}
.y91{bottom:568.155000px;}
.y3d{bottom:575.745000px;}
.y6d{bottom:578.265000px;}
.y90{bottom:588.885000px;}
.y3c{bottom:596.445000px;}
.y6c{bottom:598.965000px;}
.y8f{bottom:609.585000px;}
.y3b{bottom:617.145000px;}
.y6b{bottom:619.665000px;}
.y8e{bottom:628.845000px;}
.y3a{bottom:637.845000px;}
.y6a{bottom:640.365000px;}
.y8d{bottom:641.445000px;}
.y39{bottom:658.365000px;}
.y8c{bottom:659.805000px;}
.y69{bottom:661.065000px;}
.y8b{bottom:674.205000px;}
.y38{bottom:679.065000px;}
.y68{bottom:681.765000px;}
.y37{bottom:699.765000px;}
.y67{bottom:702.465000px;}
.y36{bottom:720.465000px;}
.y66{bottom:723.165000px;}
.y35{bottom:741.165000px;}
.y65{bottom:743.865000px;}
.y34{bottom:763.125000px;}
.y64{bottom:764.565000px;}
.y33{bottom:785.085000px;}
.y63{bottom:786.345000px;}
.y32{bottom:805.965000px;}
.y62{bottom:808.305000px;}
.y13{bottom:819.825000px;}
.y31{bottom:826.665000px;}
.y61{bottom:829.185000px;}
.y12{bottom:840.525000px;}
.y30{bottom:847.365000px;}
.y60{bottom:849.885000px;}
.y11{bottom:861.270000px;}
.y2f{bottom:868.110000px;}
.y5f{bottom:870.630000px;}
.y10{bottom:881.970000px;}
.y2e{bottom:888.810000px;}
.y5e{bottom:891.330000px;}
.yf{bottom:902.670000px;}
.y2d{bottom:909.510000px;}
.y5d{bottom:912.030000px;}
.ye{bottom:923.370000px;}
.yaa{bottom:927.510000px;}
.y2c{bottom:930.210000px;}
.y5c{bottom:932.730000px;}
.yd{bottom:944.070000px;}
.y2b{bottom:950.910000px;}
.y5b{bottom:953.430000px;}
.yc{bottom:964.770000px;}
.ya9{bottom:971.430000px;}
.y2a{bottom:971.610000px;}
.y5a{bottom:974.130000px;}
.yb{bottom:985.470000px;}
.ya8{bottom:992.130000px;}
.y29{bottom:992.310000px;}
.y59{bottom:994.830000px;}
.ya{bottom:1006.170000px;}
.y28{bottom:1012.830000px;}
.y8a{bottom:1014.270000px;}
.y58{bottom:1015.530000px;}
.y9{bottom:1026.870000px;}
.y27{bottom:1033.530000px;}
.y89{bottom:1034.970000px;}
.y57{bottom:1036.230000px;}
.y8{bottom:1048.290000px;}
.y26{bottom:1054.230000px;}
.y88{bottom:1055.670000px;}
.y56{bottom:1056.930000px;}
.y7{bottom:1068.450000px;}
.ya7{bottom:1074.930000px;}
.y25{bottom:1076.190000px;}
.y87{bottom:1076.370000px;}
.y55{bottom:1077.630000px;}
.y6{bottom:1088.610000px;}
.y86{bottom:1097.070000px;}
.y24{bottom:1098.150000px;}
.y54{bottom:1098.330000px;}
.y5{bottom:1112.730000px;}
.y85{bottom:1117.770000px;}
.y23{bottom:1119.030000px;}
.y4{bottom:1137.060000px;}
.y84{bottom:1139.580000px;}
.y22{bottom:1139.760000px;}
.y1{bottom:1194.120000px;}
.ha{height:35.806641px;}
.h7{height:59.439023px;}
.h9{height:64.582031px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h8{height:71.613281px;}
.h6{height:74.004654px;}
.hb{height:74.953125px;}
.h5{height:75.093750px;}
.h3{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x4{left:109.115987px;}
.x3{left:294.734987px;}
.x5{left:346.034987px;}
.x2{left:442.364987px;}
.x7{left:730.589987px;}
.x6{left:817.379987px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.061867pt;}
.ls3{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.165867pt;}
.ls0{letter-spacing:0.256000pt;}
.lsc{letter-spacing:1989.525333pt;}
.ws0{word-spacing:-74.880000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.152000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws9{word-spacing:-13.306880pt;}
.ws3{word-spacing:-12.170987pt;}
.ws8{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.943253pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-5.095680pt;}
._1b{margin-left:-4.160000pt;}
._f{margin-left:-3.136000pt;}
._10{margin-left:-1.999360pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.005653pt;}
._3{width:2.496000pt;}
._2{width:3.584000pt;}
._4{width:5.255680pt;}
._9{width:6.331307pt;}
._8{width:7.296000pt;}
._7{width:8.192000pt;}
._a{width:9.792000pt;}
._b{width:11.264000pt;}
._c{width:12.288000pt;}
._d{width:13.184000pt;}
._6{width:14.080000pt;}
._5{width:15.168000pt;}
._e{width:16.832000pt;}
._12{width:19.154347pt;}
._1c{width:20.123307pt;}
._20{width:21.269760pt;}
._13{width:22.272000pt;}
._14{width:23.506347pt;}
._17{width:24.896000pt;}
._1e{width:26.560000pt;}
._1f{width:27.520000pt;}
._16{width:28.544000pt;}
._15{width:29.632000pt;}
._11{width:34.240000pt;}
._1d{width:36.096000pt;}
._1a{width:50.786987pt;}
._19{width:52.352000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.072000pt;}
.y2{bottom:68.992000pt;}
.y21{bottom:101.152000pt;}
.y53{bottom:102.272000pt;}
.y83{bottom:106.752000pt;}
.ya6{bottom:114.592000pt;}
.y20{bottom:119.552000pt;}
.y52{bottom:120.672000pt;}
.y82{bottom:125.312000pt;}
.ya5{bottom:132.992000pt;}
.y1f{bottom:137.946667pt;}
.y51{bottom:139.066667pt;}
.y81{bottom:143.706667pt;}
.ya4{bottom:151.386667pt;}
.y1e{bottom:156.346667pt;}
.y50{bottom:157.466667pt;}
.y80{bottom:162.106667pt;}
.ya3{bottom:169.786667pt;}
.y1d{bottom:174.746667pt;}
.y4f{bottom:176.826667pt;}
.y7f{bottom:180.506667pt;}
.ya2{bottom:189.146667pt;}
.y1c{bottom:193.146667pt;}
.y4e{bottom:196.506667pt;}
.y7e{bottom:198.906667pt;}
.ya1{bottom:208.666667pt;}
.y1b{bottom:211.546667pt;}
.y4d{bottom:215.066667pt;}
.y7d{bottom:217.306667pt;}
.ya0{bottom:227.866667pt;}
.y1a{bottom:229.946667pt;}
.y4c{bottom:233.466667pt;}
.y7c{bottom:235.706667pt;}
.y9f{bottom:245.146667pt;}
.y19{bottom:248.346667pt;}
.y4b{bottom:251.866667pt;}
.y7b{bottom:254.106667pt;}
.y9e{bottom:263.586667pt;}
.y18{bottom:266.786667pt;}
.y4a{bottom:270.306667pt;}
.y7a{bottom:272.546667pt;}
.y9d{bottom:281.986667pt;}
.y17{bottom:285.186667pt;}
.y49{bottom:288.546667pt;}
.y79{bottom:290.946667pt;}
.y9c{bottom:300.386667pt;}
.y16{bottom:304.546667pt;}
.y48{bottom:306.946667pt;}
.y78{bottom:309.346667pt;}
.y9b{bottom:318.786667pt;}
.y47{bottom:325.346667pt;}
.y77{bottom:327.746667pt;}
.y15{bottom:336.546667pt;}
.y9a{bottom:337.186667pt;}
.y46{bottom:343.746667pt;}
.y76{bottom:347.106667pt;}
.y14{bottom:349.346667pt;}
.y99{bottom:355.586667pt;}
.y45{bottom:362.146667pt;}
.y75{bottom:366.626667pt;}
.y98{bottom:373.986667pt;}
.y44{bottom:380.546667pt;}
.y74{bottom:385.186667pt;}
.y97{bottom:392.386667pt;}
.y43{bottom:398.946667pt;}
.y73{bottom:403.586667pt;}
.y96{bottom:410.786667pt;}
.y42{bottom:417.346667pt;}
.y72{bottom:421.986667pt;}
.y95{bottom:429.186667pt;}
.y41{bottom:436.706667pt;}
.y71{bottom:440.386667pt;}
.y94{bottom:448.546667pt;}
.y40{bottom:456.386667pt;}
.y70{bottom:458.786667pt;}
.y93{bottom:468.066667pt;}
.y3f{bottom:474.946667pt;}
.y6f{bottom:477.186667pt;}
.y92{bottom:486.626667pt;}
.y3e{bottom:493.346667pt;}
.y6e{bottom:495.586667pt;}
.y91{bottom:505.026667pt;}
.y3d{bottom:511.773333pt;}
.y6d{bottom:514.013333pt;}
.y90{bottom:523.453333pt;}
.y3c{bottom:530.173333pt;}
.y6c{bottom:532.413333pt;}
.y8f{bottom:541.853333pt;}
.y3b{bottom:548.573333pt;}
.y6b{bottom:550.813333pt;}
.y8e{bottom:558.973333pt;}
.y3a{bottom:566.973333pt;}
.y6a{bottom:569.213333pt;}
.y8d{bottom:570.173333pt;}
.y39{bottom:585.213333pt;}
.y8c{bottom:586.493333pt;}
.y69{bottom:587.613333pt;}
.y8b{bottom:599.293333pt;}
.y38{bottom:603.613333pt;}
.y68{bottom:606.013333pt;}
.y37{bottom:622.013333pt;}
.y67{bottom:624.413333pt;}
.y36{bottom:640.413333pt;}
.y66{bottom:642.813333pt;}
.y35{bottom:658.813333pt;}
.y65{bottom:661.213333pt;}
.y34{bottom:678.333333pt;}
.y64{bottom:679.613333pt;}
.y33{bottom:697.853333pt;}
.y63{bottom:698.973333pt;}
.y32{bottom:716.413333pt;}
.y62{bottom:718.493333pt;}
.y13{bottom:728.733333pt;}
.y31{bottom:734.813333pt;}
.y61{bottom:737.053333pt;}
.y12{bottom:747.133333pt;}
.y30{bottom:753.213333pt;}
.y60{bottom:755.453333pt;}
.y11{bottom:765.573333pt;}
.y2f{bottom:771.653333pt;}
.y5f{bottom:773.893333pt;}
.y10{bottom:783.973333pt;}
.y2e{bottom:790.053333pt;}
.y5e{bottom:792.293333pt;}
.yf{bottom:802.373333pt;}
.y2d{bottom:808.453333pt;}
.y5d{bottom:810.693333pt;}
.ye{bottom:820.773333pt;}
.yaa{bottom:824.453333pt;}
.y2c{bottom:826.853333pt;}
.y5c{bottom:829.093333pt;}
.yd{bottom:839.173333pt;}
.y2b{bottom:845.253333pt;}
.y5b{bottom:847.493333pt;}
.yc{bottom:857.573333pt;}
.ya9{bottom:863.493333pt;}
.y2a{bottom:863.653333pt;}
.y5a{bottom:865.893333pt;}
.yb{bottom:875.973333pt;}
.ya8{bottom:881.893333pt;}
.y29{bottom:882.053333pt;}
.y59{bottom:884.293333pt;}
.ya{bottom:894.373333pt;}
.y28{bottom:900.293333pt;}
.y8a{bottom:901.573333pt;}
.y58{bottom:902.693333pt;}
.y9{bottom:912.773333pt;}
.y27{bottom:918.693333pt;}
.y89{bottom:919.973333pt;}
.y57{bottom:921.093333pt;}
.y8{bottom:931.813333pt;}
.y26{bottom:937.093333pt;}
.y88{bottom:938.373333pt;}
.y56{bottom:939.493333pt;}
.y7{bottom:949.733333pt;}
.ya7{bottom:955.493333pt;}
.y25{bottom:956.613333pt;}
.y87{bottom:956.773333pt;}
.y55{bottom:957.893333pt;}
.y6{bottom:967.653333pt;}
.y86{bottom:975.173333pt;}
.y24{bottom:976.133333pt;}
.y54{bottom:976.293333pt;}
.y5{bottom:989.093333pt;}
.y85{bottom:993.573333pt;}
.y23{bottom:994.693333pt;}
.y4{bottom:1010.720000pt;}
.y84{bottom:1012.960000pt;}
.y22{bottom:1013.120000pt;}
.y1{bottom:1061.440000pt;}
.ha{height:31.828125pt;}
.h7{height:52.834688pt;}
.h9{height:57.406250pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h8{height:63.656250pt;}
.h6{height:65.781915pt;}
.hb{height:66.625000pt;}
.h5{height:66.750000pt;}
.h3{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x4{left:96.991988pt;}
.x3{left:261.986655pt;}
.x5{left:307.586655pt;}
.x2{left:393.213322pt;}
.x7{left:649.413322pt;}
.x6{left:726.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; }
  