
    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_e36256de41aea1901e23a85f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_846ee476af12bab58f7684f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_5b1e0ff40190abd00c258c27.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_08b6f5615a73d8ca4dd77a3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068848;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_4eb8a563040b8e8fadbafc51.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.086426;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:50.832000px;}
.v1{vertical-align:99.900000px;}
.lsf{letter-spacing:-0.295800px;}
.lse{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.037440px;}
.ls8{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.016140px;}
.ls2{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.064080px;}
.ls5{letter-spacing:0.064200px;}
.ls6{letter-spacing:0.197400px;}
.lsb{letter-spacing:0.245400px;}
.lsa{letter-spacing:0.247968px;}
.lsc{letter-spacing:97.509600px;}
.lsd{letter-spacing:97.560000px;}
.ls3{letter-spacing:148.716000px;}
.ls1{letter-spacing:232.200000px;}
.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;}
}
.ws1a{word-spacing:-80.104032px;}
.ws16{word-spacing:-80.064000px;}
.ws1d{word-spacing:-73.498752px;}
.wse{word-spacing:-73.421280px;}
.ws8{word-spacing:-53.640120px;}
.ws2{word-spacing:-53.482752px;}
.wsb{word-spacing:-53.442720px;}
.ws1e{word-spacing:-53.146920px;}
.ws11{word-spacing:-46.922712px;}
.ws10{word-spacing:-46.677312px;}
.ws12{word-spacing:-46.637280px;}
.ws17{word-spacing:-40.072032px;}
.ws19{word-spacing:-40.032000px;}
.ws5{word-spacing:-36.629280px;}
.ws6{word-spacing:-33.466752px;}
.ws4{word-spacing:-33.426720px;}
.wsf{word-spacing:-30.064032px;}
.ws1{word-spacing:-30.024000px;}
.ws18{word-spacing:-26.621280px;}
.ws3{word-spacing:-25.020000px;}
.ws7{word-spacing:-2.760672px;}
.wsd{word-spacing:-2.025120px;}
.wsc{word-spacing:-1.778208px;}
.ws9{word-spacing:-1.548960px;}
.wsa{word-spacing:-1.393440px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.132000px;}
.ws1b{word-spacing:0.576000px;}
.ws13{word-spacing:1.365840px;}
.ws15{word-spacing:2.492352px;}
.ws14{word-spacing:1726.239840px;}
._4{margin-left:-3.024000px;}
._0{margin-left:-1.728864px;}
._1{width:1.440000px;}
._5{width:2.928000px;}
._2{width:4.320000px;}
._7{width:31.356864px;}
._6{width:51.580464px;}
._3{width:365.357712px;}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(216,168,92);}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(230,27,31);}
.fc5{color:rgb(0,138,103);}
.fc1{color:rgb(42,76,223);}
.fc9{color:rgb(64,64,64);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:90.000000px;}
.fsb{font-size:90.144000px;}
.fs14{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fsa{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fse{font-size:131.760000px;}
.fsd{font-size:131.904000px;}
.fs3{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs11{font-size:167.760000px;}
.fs12{font-size:167.904000px;}
.fs8{font-size:192.240000px;}
.fs2{font-size:192.384000px;}
.fs10{font-size:264.240000px;}
.fs4{font-size:264.384000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:288.144000px;}
.fs13{font-size:480.384000px;}
.y30{bottom:-659.550000px;}
.y2f{bottom:-580.320000px;}
.y2e{bottom:-501.120000px;}
.y2d{bottom:-421.890000px;}
.y0{bottom:0.000000px;}
.y34{bottom:12.528000px;}
.y10{bottom:26.892000px;}
.y41{bottom:34.704000px;}
.y6c{bottom:49.104000px;}
.y40{bottom:58.032000px;}
.yf{bottom:59.292000px;}
.y19{bottom:66.024000px;}
.y39{bottom:71.784000px;}
.y6b{bottom:81.540000px;}
.y5e{bottom:89.496000px;}
.ye{bottom:91.728000px;}
.y3f{bottom:94.032000px;}
.y6a{bottom:113.940000px;}
.yd{bottom:124.128000px;}
.y18{bottom:131.724000px;}
.y4c{bottom:135.504000px;}
.y69{bottom:148.320000px;}
.y5d{bottom:152.535000px;}
.y67{bottom:152.925000px;}
.y3a{bottom:155.085000px;}
.yc{bottom:156.525000px;}
.y21{bottom:170.565000px;}
.y66{bottom:185.325000px;}
.yb{bottom:188.925000px;}
.y68{bottom:191.520000px;}
.y17{bottom:197.430000px;}
.y4b{bottom:198.510000px;}
.y28{bottom:208.230000px;}
.y65{bottom:217.725000px;}
.y72{bottom:237.675000px;}
.y38{bottom:237.750000px;}
.y5c{bottom:238.935000px;}
.y11{bottom:243.540000px;}
.y64{bottom:252.105000px;}
.y5{bottom:257.790000px;}
.y16{bottom:263.160000px;}
.y27{bottom:273.750000px;}
.y4a{bottom:284.940000px;}
.y48{bottom:286.815000px;}
.y63{bottom:295.305000px;}
.y71{bottom:313.275000px;}
.y3b{bottom:320.430000px;}
.y5b{bottom:325.365000px;}
.y4{bottom:325.830000px;}
.y26{bottom:339.480000px;}
.y43{bottom:350.895000px;}
.y49{bottom:371.340000px;}
.y42{bottom:386.895000px;}
.y70{bottom:388.905000px;}
.y3c{bottom:403.095000px;}
.y25{bottom:405.180000px;}
.y3{bottom:406.950000px;}
.y15{bottom:424.470000px;}
.y1e{bottom:426.525000px;}
.y3e{bottom:430.815000px;}
.y47{bottom:430.845000px;}
.y52{bottom:453.525000px;}
.y1d{bottom:454.965000px;}
.y6f{bottom:464.505000px;}
.y3d{bottom:466.815000px;}
.y24{bottom:470.910000px;}
.y51{bottom:482.325000px;}
.y1c{bottom:483.765000px;}
.y2{bottom:484.710000px;}
.y20{bottom:489.675000px;}
.y14{bottom:490.170000px;}
.y33{bottom:498.600000px;}
.y37{bottom:500.865000px;}
.y50{bottom:511.125000px;}
.ya{bottom:517.170000px;}
.y1b{bottom:519.765000px;}
.y44{bottom:519.990000px;}
.y55{bottom:523.800000px;}
.y1f{bottom:529.305000px;}
.y2a{bottom:529.710000px;}
.y2c{bottom:532.005000px;}
.y59{bottom:535.245000px;}
.y9{bottom:535.395000px;}
.y23{bottom:536.610000px;}
.y6e{bottom:540.150000px;}
.y62{bottom:543.600000px;}
.y36{bottom:551.265000px;}
.y32{bottom:551.370000px;}
.y1a{bottom:553.965000px;}
.y13{bottom:555.915000px;}
.y54{bottom:556.200000px;}
.y1{bottom:562.500000px;}
.y4f{bottom:567.000000px;}
.y58{bottom:567.645000px;}
.y61{bottom:576.000000px;}
.y31{bottom:583.770000px;}
.y8{bottom:584.535000px;}
.y29{bottom:587.310000px;}
.y2b{bottom:589.650000px;}
.y53{bottom:590.580000px;}
.y4e{bottom:599.400000px;}
.y57{bottom:600.090000px;}
.y35{bottom:601.710000px;}
.y22{bottom:602.175000px;}
.y60{bottom:608.400000px;}
.y46{bottom:609.870000px;}
.y12{bottom:621.435000px;}
.y4d{bottom:633.810000px;}
.y7{bottom:633.855000px;}
.y56{bottom:634.470000px;}
.y5f{bottom:642.810000px;}
.y45{bottom:645.870000px;}
.y6{bottom:715.245000px;}
.y5a{bottom:732.885000px;}
.y6d{bottom:738.645000px;}
.hc{height:80.727539px;}
.h20{height:85.894102px;}
.he{height:86.023266px;}
.h9{height:94.447266px;}
.h7{height:96.873047px;}
.h8{height:97.002211px;}
.hd{height:105.151289px;}
.h11{height:105.277219px;}
.hf{height:115.351594px;}
.h10{height:118.185117px;}
.h21{height:125.929688px;}
.h1f{height:126.055617px;}
.h4{height:129.164062px;}
.h19{height:146.708086px;}
.h1c{height:146.834016px;}
.h1b{height:150.476133px;}
.h1a{height:150.605297px;}
.h1d{height:156.109219px;}
.h13{height:165.018516px;}
.h14{height:165.142125px;}
.h16{height:168.116133px;}
.h3{height:168.242063px;}
.h15{height:168.397734px;}
.h12{height:168.523875px;}
.ha{height:172.434023px;}
.hb{height:172.563188px;}
.h6{height:229.064063px;}
.h5{height:231.206906px;}
.h17{height:237.016055px;}
.h18{height:237.145219px;}
.h2{height:258.328125px;}
.h1{height:258.457289px;}
.h1e{height:430.891313px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:24.911979px;}
.x32{left:34.091979px;}
.x14{left:42.191979px;}
.x18{left:47.231979px;}
.x1d{left:64.799979px;}
.xb{left:78.911979px;}
.x1c{left:91.799979px;}
.x22{left:159.014979px;}
.x15{left:165.854979px;}
.x20{left:168.554979px;}
.x2{left:178.664979px;}
.x25{left:197.024979px;}
.x1f{left:220.934979px;}
.x3{left:227.084979px;}
.x39{left:249.404979px;}
.x1{left:253.724979px;}
.x21{left:263.954979px;}
.x1e{left:288.794979px;}
.x26{left:320.324979px;}
.x2e{left:397.334979px;}
.x24{left:413.204979px;}
.x2d{left:420.554979px;}
.x23{left:446.684979px;}
.x38{left:519.509979px;}
.x4{left:523.949979px;}
.x33{left:533.774979px;}
.x5{left:594.569979px;}
.x2f{left:691.049979px;}
.x36{left:709.994979px;}
.x30{left:717.329979px;}
.x10{left:733.649979px;}
.xc{left:748.769979px;}
.xe{left:755.789979px;}
.xd{left:760.649979px;}
.xf{left:780.089979px;}
.x27{left:788.654979px;}
.x7{left:796.214979px;}
.x8{left:799.454979px;}
.x17{left:816.809979px;}
.x35{left:845.894979px;}
.x31{left:859.529979px;}
.x16{left:864.329979px;}
.x9{left:866.954979px;}
.x37{left:871.994979px;}
.x2b{left:893.519979px;}
.x2c{left:962.459979px;}
.x2a{left:1004.684979px;}
.x34{left:1046.954979px;}
.x13{left:1107.359979px;}
.x1a{left:1109.489979px;}
.x19{left:1124.429979px;}
.x28{left:1140.299979px;}
.x29{left:1160.279979px;}
.x1b{left:1182.929979px;}
.x12{left:1199.489979px;}
.x11{left:1204.889979px;}
.xa{left:1252.049979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:45.184000pt;}
.v1{vertical-align:88.800000pt;}
.lsf{letter-spacing:-0.262933pt;}
.lse{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.033280pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.014347pt;}
.ls2{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.056960pt;}
.ls5{letter-spacing:0.057067pt;}
.ls6{letter-spacing:0.175467pt;}
.lsb{letter-spacing:0.218133pt;}
.lsa{letter-spacing:0.220416pt;}
.lsc{letter-spacing:86.675200pt;}
.lsd{letter-spacing:86.720000pt;}
.ls3{letter-spacing:132.192000pt;}
.ls1{letter-spacing:206.400000pt;}
.ws1a{word-spacing:-71.203584pt;}
.ws16{word-spacing:-71.168000pt;}
.ws1d{word-spacing:-65.332224pt;}
.wse{word-spacing:-65.263360pt;}
.ws8{word-spacing:-47.680107pt;}
.ws2{word-spacing:-47.540224pt;}
.wsb{word-spacing:-47.504640pt;}
.ws1e{word-spacing:-47.241707pt;}
.ws11{word-spacing:-41.709077pt;}
.ws10{word-spacing:-41.490944pt;}
.ws12{word-spacing:-41.455360pt;}
.ws17{word-spacing:-35.619584pt;}
.ws19{word-spacing:-35.584000pt;}
.ws5{word-spacing:-32.559360pt;}
.ws6{word-spacing:-29.748224pt;}
.ws4{word-spacing:-29.712640pt;}
.wsf{word-spacing:-26.723584pt;}
.ws1{word-spacing:-26.688000pt;}
.ws18{word-spacing:-23.663360pt;}
.ws3{word-spacing:-22.240000pt;}
.ws7{word-spacing:-2.453931pt;}
.wsd{word-spacing:-1.800107pt;}
.wsc{word-spacing:-1.580629pt;}
.ws9{word-spacing:-1.376853pt;}
.wsa{word-spacing:-1.238613pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.117333pt;}
.ws1b{word-spacing:0.512000pt;}
.ws13{word-spacing:1.214080pt;}
.ws15{word-spacing:2.215424pt;}
.ws14{word-spacing:1534.435413pt;}
._4{margin-left:-2.688000pt;}
._0{margin-left:-1.536768pt;}
._1{width:1.280000pt;}
._5{width:2.602667pt;}
._2{width:3.840000pt;}
._7{width:27.872768pt;}
._6{width:45.849301pt;}
._3{width:324.762411pt;}
.fs9{font-size:80.000000pt;}
.fsb{font-size:80.128000pt;}
.fs14{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fsa{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fse{font-size:117.120000pt;}
.fsd{font-size:117.248000pt;}
.fs3{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs11{font-size:149.120000pt;}
.fs12{font-size:149.248000pt;}
.fs8{font-size:170.880000pt;}
.fs2{font-size:171.008000pt;}
.fs10{font-size:234.880000pt;}
.fs4{font-size:235.008000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:256.128000pt;}
.fs13{font-size:427.008000pt;}
.y30{bottom:-586.266667pt;}
.y2f{bottom:-515.840000pt;}
.y2e{bottom:-445.440000pt;}
.y2d{bottom:-375.013333pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:11.136000pt;}
.y10{bottom:23.904000pt;}
.y41{bottom:30.848000pt;}
.y6c{bottom:43.648000pt;}
.y40{bottom:51.584000pt;}
.yf{bottom:52.704000pt;}
.y19{bottom:58.688000pt;}
.y39{bottom:63.808000pt;}
.y6b{bottom:72.480000pt;}
.y5e{bottom:79.552000pt;}
.ye{bottom:81.536000pt;}
.y3f{bottom:83.584000pt;}
.y6a{bottom:101.280000pt;}
.yd{bottom:110.336000pt;}
.y18{bottom:117.088000pt;}
.y4c{bottom:120.448000pt;}
.y69{bottom:131.840000pt;}
.y5d{bottom:135.586667pt;}
.y67{bottom:135.933333pt;}
.y3a{bottom:137.853333pt;}
.yc{bottom:139.133333pt;}
.y21{bottom:151.613333pt;}
.y66{bottom:164.733333pt;}
.yb{bottom:167.933333pt;}
.y68{bottom:170.240000pt;}
.y17{bottom:175.493333pt;}
.y4b{bottom:176.453333pt;}
.y28{bottom:185.093333pt;}
.y65{bottom:193.533333pt;}
.y72{bottom:211.266667pt;}
.y38{bottom:211.333333pt;}
.y5c{bottom:212.386667pt;}
.y11{bottom:216.480000pt;}
.y64{bottom:224.093333pt;}
.y5{bottom:229.146667pt;}
.y16{bottom:233.920000pt;}
.y27{bottom:243.333333pt;}
.y4a{bottom:253.280000pt;}
.y48{bottom:254.946667pt;}
.y63{bottom:262.493333pt;}
.y71{bottom:278.466667pt;}
.y3b{bottom:284.826667pt;}
.y5b{bottom:289.213333pt;}
.y4{bottom:289.626667pt;}
.y26{bottom:301.760000pt;}
.y43{bottom:311.906667pt;}
.y49{bottom:330.080000pt;}
.y42{bottom:343.906667pt;}
.y70{bottom:345.693333pt;}
.y3c{bottom:358.306667pt;}
.y25{bottom:360.160000pt;}
.y3{bottom:361.733333pt;}
.y15{bottom:377.306667pt;}
.y1e{bottom:379.133333pt;}
.y3e{bottom:382.946667pt;}
.y47{bottom:382.973333pt;}
.y52{bottom:403.133333pt;}
.y1d{bottom:404.413333pt;}
.y6f{bottom:412.893333pt;}
.y3d{bottom:414.946667pt;}
.y24{bottom:418.586667pt;}
.y51{bottom:428.733333pt;}
.y1c{bottom:430.013333pt;}
.y2{bottom:430.853333pt;}
.y20{bottom:435.266667pt;}
.y14{bottom:435.706667pt;}
.y33{bottom:443.200000pt;}
.y37{bottom:445.213333pt;}
.y50{bottom:454.333333pt;}
.ya{bottom:459.706667pt;}
.y1b{bottom:462.013333pt;}
.y44{bottom:462.213333pt;}
.y55{bottom:465.600000pt;}
.y1f{bottom:470.493333pt;}
.y2a{bottom:470.853333pt;}
.y2c{bottom:472.893333pt;}
.y59{bottom:475.773333pt;}
.y9{bottom:475.906667pt;}
.y23{bottom:476.986667pt;}
.y6e{bottom:480.133333pt;}
.y62{bottom:483.200000pt;}
.y36{bottom:490.013333pt;}
.y32{bottom:490.106667pt;}
.y1a{bottom:492.413333pt;}
.y13{bottom:494.146667pt;}
.y54{bottom:494.400000pt;}
.y1{bottom:500.000000pt;}
.y4f{bottom:504.000000pt;}
.y58{bottom:504.573333pt;}
.y61{bottom:512.000000pt;}
.y31{bottom:518.906667pt;}
.y8{bottom:519.586667pt;}
.y29{bottom:522.053333pt;}
.y2b{bottom:524.133333pt;}
.y53{bottom:524.960000pt;}
.y4e{bottom:532.800000pt;}
.y57{bottom:533.413333pt;}
.y35{bottom:534.853333pt;}
.y22{bottom:535.266667pt;}
.y60{bottom:540.800000pt;}
.y46{bottom:542.106667pt;}
.y12{bottom:552.386667pt;}
.y4d{bottom:563.386667pt;}
.y7{bottom:563.426667pt;}
.y56{bottom:563.973333pt;}
.y5f{bottom:571.386667pt;}
.y45{bottom:574.106667pt;}
.y6{bottom:635.773333pt;}
.y5a{bottom:651.453333pt;}
.y6d{bottom:656.573333pt;}
.hc{height:71.757812pt;}
.h20{height:76.350312pt;}
.he{height:76.465125pt;}
.h9{height:83.953125pt;}
.h7{height:86.109375pt;}
.h8{height:86.224187pt;}
.hd{height:93.467812pt;}
.h11{height:93.579750pt;}
.hf{height:102.534750pt;}
.h10{height:105.053437pt;}
.h21{height:111.937500pt;}
.h1f{height:112.049437pt;}
.h4{height:114.812500pt;}
.h19{height:130.407187pt;}
.h1c{height:130.519125pt;}
.h1b{height:133.756563pt;}
.h1a{height:133.871375pt;}
.h1d{height:138.763750pt;}
.h13{height:146.683125pt;}
.h14{height:146.793000pt;}
.h16{height:149.436563pt;}
.h3{height:149.548500pt;}
.h15{height:149.686875pt;}
.h12{height:149.799000pt;}
.ha{height:153.274687pt;}
.hb{height:153.389500pt;}
.h6{height:203.612500pt;}
.h5{height:205.517250pt;}
.h17{height:210.680937pt;}
.h18{height:210.795750pt;}
.h2{height:229.625000pt;}
.h1{height:229.739812pt;}
.h1e{height:383.014500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:22.143981pt;}
.x32{left:30.303981pt;}
.x14{left:37.503981pt;}
.x18{left:41.983981pt;}
.x1d{left:57.599981pt;}
.xb{left:70.143981pt;}
.x1c{left:81.599981pt;}
.x22{left:141.346648pt;}
.x15{left:147.426648pt;}
.x20{left:149.826648pt;}
.x2{left:158.813314pt;}
.x25{left:175.133314pt;}
.x1f{left:196.386648pt;}
.x3{left:201.853314pt;}
.x39{left:221.693314pt;}
.x1{left:225.533314pt;}
.x21{left:234.626648pt;}
.x1e{left:256.706648pt;}
.x26{left:284.733314pt;}
.x2e{left:353.186648pt;}
.x24{left:367.293314pt;}
.x2d{left:373.826648pt;}
.x23{left:397.053314pt;}
.x38{left:461.786648pt;}
.x4{left:465.733314pt;}
.x33{left:474.466648pt;}
.x5{left:528.506648pt;}
.x2f{left:614.266648pt;}
.x36{left:631.106648pt;}
.x30{left:637.626648pt;}
.x10{left:652.133314pt;}
.xc{left:665.573314pt;}
.xe{left:671.813314pt;}
.xd{left:676.133314pt;}
.xf{left:693.413314pt;}
.x27{left:701.026648pt;}
.x7{left:707.746648pt;}
.x8{left:710.626648pt;}
.x17{left:726.053314pt;}
.x35{left:751.906648pt;}
.x31{left:764.026648pt;}
.x16{left:768.293314pt;}
.x9{left:770.626648pt;}
.x37{left:775.106648pt;}
.x2b{left:794.239981pt;}
.x2c{left:855.519981pt;}
.x2a{left:893.053314pt;}
.x34{left:930.626648pt;}
.x13{left:984.319981pt;}
.x1a{left:986.213314pt;}
.x19{left:999.493314pt;}
.x28{left:1013.599981pt;}
.x29{left:1031.359981pt;}
.x1b{left:1051.493314pt;}
.x12{left:1066.213314pt;}
.x11{left:1071.013314pt;}
.xa{left:1112.933314pt;}
}




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