
    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_bdbc059ed25f89698a06f946.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.935547;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_ed873d4fe4839ab469f36d5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_2c6edabf9d27ad169e876ef2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_da5db3d6a03b22bb04f7a5e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913574;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;}
.m1{transform:matrix(0.123863,-0.217159,0.217159,0.123863,0,0);-ms-transform:matrix(0.123863,-0.217159,0.217159,0.123863,0,0);-webkit-transform:matrix(0.123863,-0.217159,0.217159,0.123863,0,0);}
.m2{transform:matrix(0.129506,-0.213842,0.213842,0.129506,0,0);-ms-transform:matrix(0.129506,-0.213842,0.213842,0.129506,0,0);-webkit-transform:matrix(0.129506,-0.213842,0.213842,0.129506,0,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);}
.m3{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;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.032888px;}
.ls9{letter-spacing:0.048794px;}
.ls5{letter-spacing:0.100444px;}
.lsb{letter-spacing:0.161043px;}
.lsc{letter-spacing:0.187360px;}
.ls1{letter-spacing:0.233823px;}
.lsd{letter-spacing:0.288403px;}
.ls11{letter-spacing:0.312000px;}
.ls2{letter-spacing:0.330160px;}
.lsa{letter-spacing:0.359608px;}
.ls3{letter-spacing:0.397715px;}
.ls8{letter-spacing:0.494052px;}
.ls7{letter-spacing:0.717961px;}
.lse{letter-spacing:0.872828px;}
.ls6{letter-spacing:0.918896px;}
.ls10{letter-spacing:0.973872px;}
.lsf{letter-spacing:1.161232px;}
.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;}
}
.ws5{word-spacing:-79.776000px;}
.ws2{word-spacing:-53.184000px;}
.ws1{word-spacing:-39.888000px;}
.ws3{word-spacing:-33.240000px;}
.ws4{word-spacing:-29.916000px;}
.ws7{word-spacing:-23.267869px;}
.ws6{word-spacing:-16.620000px;}
.ws8{word-spacing:-16.619879px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-15.840000px;}
._6{margin-left:-13.800000px;}
._a{margin-left:-11.208000px;}
._2{margin-left:-8.352000px;}
._7{margin-left:-6.840000px;}
._3{margin-left:-5.664000px;}
._8{margin-left:-4.479334px;}
._4{margin-left:-2.688000px;}
._0{margin-left:-1.536000px;}
._1{width:1.134600px;}
._9{width:2.465400px;}
._c{width:27.678600px;}
._b{width:28.769400px;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(255,51,51);}
.fc2{color:rgb(0,0,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:59.999563px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:83.999529px;}
.fs9{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fsa{font-size:132.000000px;}
.fs1{font-size:133.800000px;}
.fs2{font-size:144.000000px;}
.fs0{font-size:192.000000px;}
.fs5{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:12.450000px;}
.y5c{bottom:23.400000px;}
.y8a{bottom:26.100000px;}
.y29{bottom:44.400000px;}
.y33{bottom:45.450000px;}
.y85{bottom:46.350000px;}
.y3{bottom:54.150000px;}
.y51{bottom:55.200000px;}
.y61{bottom:64.950000px;}
.y6c{bottom:66.600000px;}
.y5a{bottom:76.950000px;}
.y49{bottom:78.450000px;}
.y8c{bottom:80.400000px;}
.y39{bottom:82.950000px;}
.y32{bottom:85.500000px;}
.y84{bottom:86.400000px;}
.yb{bottom:91.500000px;}
.y54{bottom:93.300000px;}
.y6b{bottom:93.450000px;}
.y9d{bottom:93.600000px;}
.y50{bottom:95.400000px;}
.y3f{bottom:97.500000px;}
.y94{bottom:97.650000px;}
.y75{bottom:99.750000px;}
.y68{bottom:100.050000px;}
.y15{bottom:108.300000px;}
.y10{bottom:108.450000px;}
.y83{bottom:113.100000px;}
.y38{bottom:116.700000px;}
.y28{bottom:117.000000px;}
.y6a{bottom:120.150000px;}
.y48{bottom:122.850000px;}
.y53{bottom:123.600000px;}
.y62{bottom:124.500000px;}
.y31{bottom:125.700000px;}
.y74{bottom:126.600000px;}
.y9e{bottom:130.350000px;}
.y4f{bottom:135.600000px;}
.y99{bottom:139.200000px;}
.y8b{bottom:139.800000px;}
.y82{bottom:139.950000px;}
.y69{bottom:147.600000px;}
.y37{bottom:150.300000px;}
.y27{bottom:150.600000px;}
.y73{bottom:153.450000px;}
.y17{bottom:158.550000px;}
.y2{bottom:163.200000px;}
.ya{bottom:163.800000px;}
.y30{bottom:165.900000px;}
.y81{bottom:166.800000px;}
.y47{bottom:167.100000px;}
.y9c{bottom:170.100000px;}
.y60{bottom:174.750000px;}
.y63{bottom:175.500000px;}
.y4e{bottom:179.850000px;}
.y72{bottom:180.300000px;}
.y55{bottom:180.750000px;}
.y93{bottom:182.700000px;}
.y36{bottom:184.050000px;}
.y26{bottom:184.350000px;}
.y91{bottom:184.950000px;}
.yf{bottom:193.500000px;}
.y80{bottom:193.650000px;}
.y16{bottom:194.400000px;}
.y98{bottom:201.150000px;}
.y87{bottom:202.050000px;}
.y2f{bottom:205.950000px;}
.y19{bottom:208.650000px;}
.y46{bottom:211.500000px;}
.y5f{bottom:214.800000px;}
.y35{bottom:217.650000px;}
.y25{bottom:217.950000px;}
.y3e{bottom:218.100000px;}
.y4d{bottom:220.050000px;}
.y1{bottom:220.800000px;}
.y9{bottom:231.900000px;}
.y14{bottom:234.600000px;}
.y64{bottom:235.050000px;}
.y56{bottom:237.750000px;}
.y9b{bottom:238.200000px;}
.yd{bottom:240.300000px;}
.y97{bottom:241.350000px;}
.y18{bottom:244.500000px;}
.y34{bottom:251.400000px;}
.y24{bottom:251.700000px;}
.y45{bottom:255.900000px;}
.y1b{bottom:258.750000px;}
.y4c{bottom:260.250000px;}
.y92{bottom:263.550000px;}
.y3b{bottom:266.400000px;}
.y90{bottom:270.000000px;}
.y13{bottom:274.650000px;}
.ye{bottom:282.900000px;}
.y2e{bottom:285.000000px;}
.y23{bottom:285.300000px;}
.y57{bottom:286.350000px;}
.y5e{bottom:289.650000px;}
.y8{bottom:293.700000px;}
.y1a{bottom:294.600000px;}
.y3d{bottom:298.350000px;}
.y44{bottom:300.300000px;}
.y65{bottom:303.000000px;}
.y4b{bottom:304.650000px;}
.y9a{bottom:306.300000px;}
.y1d{bottom:308.850000px;}
.y96{bottom:309.450000px;}
.y12{bottom:314.850000px;}
.y2d{bottom:319.950000px;}
.y22{bottom:320.250000px;}
.y5d{bottom:329.700000px;}
.y7a{bottom:333.450000px;}
.y7{bottom:333.900000px;}
.y89{bottom:334.800000px;}
.y58{bottom:337.650000px;}
.y43{bottom:340.500000px;}
.y1c{bottom:344.700000px;}
.y3a{bottom:346.650000px;}
.y7f{bottom:346.800000px;}
.y8f{bottom:350.850000px;}
.y79{bottom:360.150000px;}
.y86{bottom:363.600000px;}
.yc{bottom:367.950000px;}
.y71{bottom:368.250000px;}
.y66{bottom:371.100000px;}
.y3c{bottom:372.150000px;}
.y7e{bottom:373.650000px;}
.y6e{bottom:377.400000px;}
.y88{bottom:384.750000px;}
.y42{bottom:384.900000px;}
.y59{bottom:385.200000px;}
.y78{bottom:387.000000px;}
.y2c{bottom:392.550000px;}
.y21{bottom:392.850000px;}
.y6{bottom:393.450000px;}
.y1e{bottom:394.950000px;}
.y70{bottom:395.100000px;}
.y7d{bottom:400.500000px;}
.y6d{bottom:404.250000px;}
.y77{bottom:413.850000px;}
.y52{bottom:414.750000px;}
.y95{bottom:419.100000px;}
.y6f{bottom:421.950000px;}
.y8e{bottom:425.250000px;}
.y20{bottom:426.600000px;}
.y7c{bottom:427.350000px;}
.y2b{bottom:427.500000px;}
.y5b{bottom:436.200000px;}
.y11{bottom:440.250000px;}
.y76{bottom:440.700000px;}
.y7b{bottom:454.200000px;}
.y41{bottom:460.350000px;}
.y1f{bottom:461.400000px;}
.y8d{bottom:465.300000px;}
.y5{bottom:465.750000px;}
.y4a{bottom:469.350000px;}
.y40{bottom:490.650000px;}
.y2a{bottom:532.800000px;}
.y4{bottom:535.650000px;}
.h7{height:43.740234px;}
.h9{height:44.216152px;}
.h8{height:61.681367px;}
.ha{height:69.984375px;}
.h5{height:78.732422px;}
.h4{height:87.480469px;}
.h2{height:97.540723px;}
.hb{height:104.835938px;}
.h3{height:104.976562px;}
.h1{height:139.781250px;}
.h6{height:209.953125px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3f{left:25.950000px;}
.x31{left:31.950000px;}
.x25{left:41.100000px;}
.x30{left:45.300000px;}
.x23{left:57.600000px;}
.xe{left:60.900000px;}
.x43{left:62.400000px;}
.xc{left:70.200000px;}
.x5{left:82.950000px;}
.x24{left:89.550000px;}
.x18{left:96.000000px;}
.x46{left:102.750000px;}
.x3e{left:113.400000px;}
.xf{left:118.950000px;}
.x47{left:129.900000px;}
.x8{left:133.950000px;}
.x42{left:138.750000px;}
.x7{left:141.450000px;}
.xa{left:147.450000px;}
.x39{left:150.900000px;}
.xb{left:166.800000px;}
.xd{left:170.850000px;}
.x1e{left:187.950000px;}
.x1a{left:201.450000px;}
.x6{left:202.650000px;}
.x3c{left:208.050000px;}
.x45{left:212.100000px;}
.x21{left:234.900000px;}
.x10{left:250.500000px;}
.x1f{left:264.150000px;}
.x1{left:270.000000px;}
.x3d{left:274.200000px;}
.x4a{left:281.250000px;}
.x11{left:316.650000px;}
.x20{left:322.800000px;}
.x9{left:325.500000px;}
.x1d{left:330.750000px;}
.x19{left:358.800000px;}
.x22{left:363.600000px;}
.x1c{left:369.450000px;}
.x4{left:397.350000px;}
.x2{left:417.750000px;}
.x12{left:451.950000px;}
.x40{left:491.100000px;}
.x44{left:500.400000px;}
.x13{left:508.050000px;}
.x38{left:576.000000px;}
.x3{left:629.700000px;}
.x14{left:637.050000px;}
.x3b{left:648.450000px;}
.x3a{left:652.650000px;}
.x2c{left:662.100000px;}
.x2b{left:663.600000px;}
.x2e{left:665.700000px;}
.x2a{left:691.050000px;}
.x29{left:705.300000px;}
.x33{left:709.350000px;}
.x15{left:714.300000px;}
.x48{left:725.250000px;}
.x28{left:726.600000px;}
.x32{left:730.950000px;}
.x35{left:736.500000px;}
.x36{left:739.950000px;}
.x34{left:744.900000px;}
.x49{left:750.750000px;}
.x37{left:753.150000px;}
.x26{left:763.350000px;}
.x27{left:783.600000px;}
.x16{left:847.350000px;}
.x2f{left:860.100000px;}
.x2d{left:866.250000px;}
.x41{left:878.400000px;}
.x1b{left:895.050000px;}
.x17{left:922.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.029234pt;}
.ls9{letter-spacing:0.043373pt;}
.ls5{letter-spacing:0.089283pt;}
.lsb{letter-spacing:0.143149pt;}
.lsc{letter-spacing:0.166542pt;}
.ls1{letter-spacing:0.207843pt;}
.lsd{letter-spacing:0.256359pt;}
.ls11{letter-spacing:0.277333pt;}
.ls2{letter-spacing:0.293475pt;}
.lsa{letter-spacing:0.319652pt;}
.ls3{letter-spacing:0.353525pt;}
.ls8{letter-spacing:0.439157pt;}
.ls7{letter-spacing:0.638188pt;}
.lse{letter-spacing:0.775847pt;}
.ls6{letter-spacing:0.816797pt;}
.ls10{letter-spacing:0.865664pt;}
.lsf{letter-spacing:1.032206pt;}
.ws5{word-spacing:-70.912000pt;}
.ws2{word-spacing:-47.274667pt;}
.ws1{word-spacing:-35.456000pt;}
.ws3{word-spacing:-29.546667pt;}
.ws4{word-spacing:-26.592000pt;}
.ws7{word-spacing:-20.682551pt;}
.ws6{word-spacing:-14.773333pt;}
.ws8{word-spacing:-14.773226pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-14.080000pt;}
._6{margin-left:-12.266667pt;}
._a{margin-left:-9.962667pt;}
._2{margin-left:-7.424000pt;}
._7{margin-left:-6.080000pt;}
._3{margin-left:-5.034667pt;}
._8{margin-left:-3.981630pt;}
._4{margin-left:-2.389333pt;}
._0{margin-left:-1.365333pt;}
._1{width:1.008533pt;}
._9{width:2.191467pt;}
._c{width:24.603200pt;}
._b{width:25.572800pt;}
.fs8{font-size:53.332945pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:74.666248pt;}
.fs9{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fsa{font-size:117.333333pt;}
.fs1{font-size:118.933333pt;}
.fs2{font-size:128.000000pt;}
.fs0{font-size:170.666667pt;}
.fs5{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:11.066667pt;}
.y5c{bottom:20.800000pt;}
.y8a{bottom:23.200000pt;}
.y29{bottom:39.466667pt;}
.y33{bottom:40.400000pt;}
.y85{bottom:41.200000pt;}
.y3{bottom:48.133333pt;}
.y51{bottom:49.066667pt;}
.y61{bottom:57.733333pt;}
.y6c{bottom:59.200000pt;}
.y5a{bottom:68.400000pt;}
.y49{bottom:69.733333pt;}
.y8c{bottom:71.466667pt;}
.y39{bottom:73.733333pt;}
.y32{bottom:76.000000pt;}
.y84{bottom:76.800000pt;}
.yb{bottom:81.333333pt;}
.y54{bottom:82.933333pt;}
.y6b{bottom:83.066667pt;}
.y9d{bottom:83.200000pt;}
.y50{bottom:84.800000pt;}
.y3f{bottom:86.666667pt;}
.y94{bottom:86.800000pt;}
.y75{bottom:88.666667pt;}
.y68{bottom:88.933333pt;}
.y15{bottom:96.266667pt;}
.y10{bottom:96.400000pt;}
.y83{bottom:100.533333pt;}
.y38{bottom:103.733333pt;}
.y28{bottom:104.000000pt;}
.y6a{bottom:106.800000pt;}
.y48{bottom:109.200000pt;}
.y53{bottom:109.866667pt;}
.y62{bottom:110.666667pt;}
.y31{bottom:111.733333pt;}
.y74{bottom:112.533333pt;}
.y9e{bottom:115.866667pt;}
.y4f{bottom:120.533333pt;}
.y99{bottom:123.733333pt;}
.y8b{bottom:124.266667pt;}
.y82{bottom:124.400000pt;}
.y69{bottom:131.200000pt;}
.y37{bottom:133.600000pt;}
.y27{bottom:133.866667pt;}
.y73{bottom:136.400000pt;}
.y17{bottom:140.933333pt;}
.y2{bottom:145.066667pt;}
.ya{bottom:145.600000pt;}
.y30{bottom:147.466667pt;}
.y81{bottom:148.266667pt;}
.y47{bottom:148.533333pt;}
.y9c{bottom:151.200000pt;}
.y60{bottom:155.333333pt;}
.y63{bottom:156.000000pt;}
.y4e{bottom:159.866667pt;}
.y72{bottom:160.266667pt;}
.y55{bottom:160.666667pt;}
.y93{bottom:162.400000pt;}
.y36{bottom:163.600000pt;}
.y26{bottom:163.866667pt;}
.y91{bottom:164.400000pt;}
.yf{bottom:172.000000pt;}
.y80{bottom:172.133333pt;}
.y16{bottom:172.800000pt;}
.y98{bottom:178.800000pt;}
.y87{bottom:179.600000pt;}
.y2f{bottom:183.066667pt;}
.y19{bottom:185.466667pt;}
.y46{bottom:188.000000pt;}
.y5f{bottom:190.933333pt;}
.y35{bottom:193.466667pt;}
.y25{bottom:193.733333pt;}
.y3e{bottom:193.866667pt;}
.y4d{bottom:195.600000pt;}
.y1{bottom:196.266667pt;}
.y9{bottom:206.133333pt;}
.y14{bottom:208.533333pt;}
.y64{bottom:208.933333pt;}
.y56{bottom:211.333333pt;}
.y9b{bottom:211.733333pt;}
.yd{bottom:213.600000pt;}
.y97{bottom:214.533333pt;}
.y18{bottom:217.333333pt;}
.y34{bottom:223.466667pt;}
.y24{bottom:223.733333pt;}
.y45{bottom:227.466667pt;}
.y1b{bottom:230.000000pt;}
.y4c{bottom:231.333333pt;}
.y92{bottom:234.266667pt;}
.y3b{bottom:236.800000pt;}
.y90{bottom:240.000000pt;}
.y13{bottom:244.133333pt;}
.ye{bottom:251.466667pt;}
.y2e{bottom:253.333333pt;}
.y23{bottom:253.600000pt;}
.y57{bottom:254.533333pt;}
.y5e{bottom:257.466667pt;}
.y8{bottom:261.066667pt;}
.y1a{bottom:261.866667pt;}
.y3d{bottom:265.200000pt;}
.y44{bottom:266.933333pt;}
.y65{bottom:269.333333pt;}
.y4b{bottom:270.800000pt;}
.y9a{bottom:272.266667pt;}
.y1d{bottom:274.533333pt;}
.y96{bottom:275.066667pt;}
.y12{bottom:279.866667pt;}
.y2d{bottom:284.400000pt;}
.y22{bottom:284.666667pt;}
.y5d{bottom:293.066667pt;}
.y7a{bottom:296.400000pt;}
.y7{bottom:296.800000pt;}
.y89{bottom:297.600000pt;}
.y58{bottom:300.133333pt;}
.y43{bottom:302.666667pt;}
.y1c{bottom:306.400000pt;}
.y3a{bottom:308.133333pt;}
.y7f{bottom:308.266667pt;}
.y8f{bottom:311.866667pt;}
.y79{bottom:320.133333pt;}
.y86{bottom:323.200000pt;}
.yc{bottom:327.066667pt;}
.y71{bottom:327.333333pt;}
.y66{bottom:329.866667pt;}
.y3c{bottom:330.800000pt;}
.y7e{bottom:332.133333pt;}
.y6e{bottom:335.466667pt;}
.y88{bottom:342.000000pt;}
.y42{bottom:342.133333pt;}
.y59{bottom:342.400000pt;}
.y78{bottom:344.000000pt;}
.y2c{bottom:348.933333pt;}
.y21{bottom:349.200000pt;}
.y6{bottom:349.733333pt;}
.y1e{bottom:351.066667pt;}
.y70{bottom:351.200000pt;}
.y7d{bottom:356.000000pt;}
.y6d{bottom:359.333333pt;}
.y77{bottom:367.866667pt;}
.y52{bottom:368.666667pt;}
.y95{bottom:372.533333pt;}
.y6f{bottom:375.066667pt;}
.y8e{bottom:378.000000pt;}
.y20{bottom:379.200000pt;}
.y7c{bottom:379.866667pt;}
.y2b{bottom:380.000000pt;}
.y5b{bottom:387.733333pt;}
.y11{bottom:391.333333pt;}
.y76{bottom:391.733333pt;}
.y7b{bottom:403.733333pt;}
.y41{bottom:409.200000pt;}
.y1f{bottom:410.133333pt;}
.y8d{bottom:413.600000pt;}
.y5{bottom:414.000000pt;}
.y4a{bottom:417.200000pt;}
.y40{bottom:436.133333pt;}
.y2a{bottom:473.600000pt;}
.y4{bottom:476.133333pt;}
.h7{height:38.880208pt;}
.h9{height:39.303246pt;}
.h8{height:54.827882pt;}
.ha{height:62.208333pt;}
.h5{height:69.984375pt;}
.h4{height:77.760417pt;}
.h2{height:86.702865pt;}
.hb{height:93.187500pt;}
.h3{height:93.312500pt;}
.h1{height:124.250000pt;}
.h6{height:186.625000pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:23.066667pt;}
.x31{left:28.400000pt;}
.x25{left:36.533333pt;}
.x30{left:40.266667pt;}
.x23{left:51.200000pt;}
.xe{left:54.133333pt;}
.x43{left:55.466667pt;}
.xc{left:62.400000pt;}
.x5{left:73.733333pt;}
.x24{left:79.600000pt;}
.x18{left:85.333333pt;}
.x46{left:91.333333pt;}
.x3e{left:100.800000pt;}
.xf{left:105.733333pt;}
.x47{left:115.466667pt;}
.x8{left:119.066667pt;}
.x42{left:123.333333pt;}
.x7{left:125.733333pt;}
.xa{left:131.066667pt;}
.x39{left:134.133333pt;}
.xb{left:148.266667pt;}
.xd{left:151.866667pt;}
.x1e{left:167.066667pt;}
.x1a{left:179.066667pt;}
.x6{left:180.133333pt;}
.x3c{left:184.933333pt;}
.x45{left:188.533333pt;}
.x21{left:208.800000pt;}
.x10{left:222.666667pt;}
.x1f{left:234.800000pt;}
.x1{left:240.000000pt;}
.x3d{left:243.733333pt;}
.x4a{left:250.000000pt;}
.x11{left:281.466667pt;}
.x20{left:286.933333pt;}
.x9{left:289.333333pt;}
.x1d{left:294.000000pt;}
.x19{left:318.933333pt;}
.x22{left:323.200000pt;}
.x1c{left:328.400000pt;}
.x4{left:353.200000pt;}
.x2{left:371.333333pt;}
.x12{left:401.733333pt;}
.x40{left:436.533333pt;}
.x44{left:444.800000pt;}
.x13{left:451.600000pt;}
.x38{left:512.000000pt;}
.x3{left:559.733333pt;}
.x14{left:566.266667pt;}
.x3b{left:576.400000pt;}
.x3a{left:580.133333pt;}
.x2c{left:588.533333pt;}
.x2b{left:589.866667pt;}
.x2e{left:591.733333pt;}
.x2a{left:614.266667pt;}
.x29{left:626.933333pt;}
.x33{left:630.533333pt;}
.x15{left:634.933333pt;}
.x48{left:644.666667pt;}
.x28{left:645.866667pt;}
.x32{left:649.733333pt;}
.x35{left:654.666667pt;}
.x36{left:657.733333pt;}
.x34{left:662.133333pt;}
.x49{left:667.333333pt;}
.x37{left:669.466667pt;}
.x26{left:678.533333pt;}
.x27{left:696.533333pt;}
.x16{left:753.200000pt;}
.x2f{left:764.533333pt;}
.x2d{left:770.000000pt;}
.x41{left:780.800000pt;}
.x1b{left:795.600000pt;}
.x17{left:820.133333pt;}
}




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