
    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_03310f06d0148de6d937ef22.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_6f5026199e353278993262e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_a07f28fda4e5d1d3df58a9c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.029785;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_0693b880054a6aadc66221c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972168;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_d4b408d5aed3b817902fdb44.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_097b6dfceae8d31eee1be415.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_aa8b3cb58dcc000b93317d88.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.029785;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;}
.v1{vertical-align:1.350000px;}
.ls7{letter-spacing:-1.608000px;}
.ls1{letter-spacing:-1.212000px;}
.ls11{letter-spacing:-0.870000px;}
.ls10{letter-spacing:-0.473400px;}
.ls12{letter-spacing:-0.394800px;}
.ls13{letter-spacing:-0.244800px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.200700px;}
.ls4{letter-spacing:1.008000px;}
.ls9{letter-spacing:1.105050px;}
.ls3{letter-spacing:1.158000px;}
.lsa{letter-spacing:2.706000px;}
.lsf{letter-spacing:119.490000px;}
.lsc{letter-spacing:119.520000px;}
.lse{letter-spacing:119.542500px;}
.lsb{letter-spacing:119.572500px;}
.ls8{letter-spacing:129.052500px;}
.lsd{letter-spacing:132.142500px;}
.ls6{letter-spacing:132.202500px;}
.ls5{letter-spacing:132.255000px;}
.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;}
}
.ws6{word-spacing:-144.150000px;}
.ws2{word-spacing:-90.954900px;}
.ws4{word-spacing:-90.903600px;}
.ws5{word-spacing:-66.279600px;}
.ws3{word-spacing:-49.299300px;}
.wsa{word-spacing:-42.820800px;}
.ws9{word-spacing:-35.076300px;}
.ws0{word-spacing:-33.316800px;}
.ws8{word-spacing:-30.096000px;}
.ws7{word-spacing:-25.396800px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-12.141000px;}
._c{margin-left:-7.558200px;}
._9{margin-left:-6.135750px;}
._7{margin-left:-5.007000px;}
._6{margin-left:-3.687900px;}
._1{margin-left:-2.524200px;}
._2{margin-left:-1.442400px;}
._0{width:1.442400px;}
._3{width:2.524200px;}
._4{width:3.921300px;}
._5{width:5.016450px;}
._8{width:10.801950px;}
._e{width:436.183650px;}
._a{width:2797.400850px;}
._b{width:3065.263950px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(198,175,245);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fs7{font-size:76.650000px;}
.fsf{font-size:85.500000px;}
.fs10{font-size:85.650000px;}
.fs11{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fsd{font-size:108.150000px;}
.fs13{font-size:121.650000px;}
.fs14{font-size:121.800000px;}
.fs9{font-size:144.150000px;}
.fs3{font-size:144.300000px;}
.fs15{font-size:166.650000px;}
.fs16{font-size:193.650000px;}
.fs4{font-size:193.800000px;}
.fs12{font-size:216.300000px;}
.fse{font-size:238.800000px;}
.fsa{font-size:247.800000px;}
.fsb{font-size:247.950000px;}
.fs5{font-size:265.800000px;}
.fs6{font-size:265.950000px;}
.fs1{font-size:288.300000px;}
.fs0{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y60{bottom:8.812500px;}
.y48{bottom:18.112500px;}
.yd{bottom:22.912500px;}
.y47{bottom:26.137500px;}
.y1e{bottom:26.887500px;}
.y16{bottom:27.862500px;}
.y17{bottom:28.762500px;}
.y28{bottom:29.250000px;}
.y44{bottom:34.387500px;}
.y1f{bottom:37.987500px;}
.y14{bottom:44.512500px;}
.yc{bottom:45.450000px;}
.y15{bottom:51.525000px;}
.y5b{bottom:56.737500px;}
.y43{bottom:67.050000px;}
.y4f{bottom:67.312500px;}
.y27{bottom:72.075000px;}
.y7{bottom:75.000000px;}
.y13{bottom:88.462500px;}
.y66{bottom:90.337500px;}
.y4a{bottom:92.287500px;}
.y5a{bottom:92.775000px;}
.y4e{bottom:103.387500px;}
.y6{bottom:118.950000px;}
.y65{bottom:123.000000px;}
.y49{bottom:128.325000px;}
.y59{bottom:128.850000px;}
.y12{bottom:131.250000px;}
.y4d{bottom:139.425000px;}
.y42{bottom:153.345000px;}
.y25{bottom:158.970000px;}
.y5{bottom:161.745000px;}
.y37{bottom:163.170000px;}
.y58{bottom:164.895000px;}
.y41{bottom:196.155000px;}
.y36{bottom:200.370000px;}
.y4{bottom:205.695000px;}
.y11{bottom:216.150000px;}
.y24{bottom:224.280000px;}
.y4c{bottom:228.405000px;}
.y57{bottom:233.580000px;}
.y40{bottom:237.870000px;}
.y35{bottom:238.650000px;}
.y64{bottom:247.845000px;}
.y10{bottom:258.945000px;}
.y3{bottom:273.255000px;}
.y3f{bottom:276.150000px;}
.y34{bottom:276.975000px;}
.y5f{bottom:308.595000px;}
.y1d{bottom:309.150000px;}
.y33{bottom:314.130000px;}
.y3e{bottom:314.445000px;}
.y2c{bottom:323.520000px;}
.y56{bottom:345.120000px;}
.y3d{bottom:351.630000px;}
.y23{bottom:352.125000px;}
.y32{bottom:352.425000px;}
.yf{bottom:364.980000px;}
.y1c{bottom:367.725000px;}
.y55{bottom:371.025000px;}
.y22{bottom:384.780000px;}
.y5e{bottom:389.250000px;}
.y31{bottom:389.625000px;}
.y63{bottom:390.900000px;}
.y3c{bottom:391.050000px;}
.y54{bottom:395.820000px;}
.ye{bottom:407.775000px;}
.y53{bottom:420.600000px;}
.y5d{bottom:425.325000px;}
.y21{bottom:425.370000px;}
.y30{bottom:427.905000px;}
.y3b{bottom:432.750000px;}
.y52{bottom:446.505000px;}
.y2f{bottom:466.245000px;}
.y3a{bottom:471.030000px;}
.y51{bottom:471.300000px;}
.y2{bottom:485.220000px;}
.y20{bottom:490.695000px;}
.y4b{bottom:492.600000px;}
.y2e{bottom:503.400000px;}
.y39{bottom:508.200000px;}
.y5c{bottom:515.445000px;}
.y62{bottom:517.500000px;}
.y50{bottom:520.830000px;}
.y8{bottom:527.970000px;}
.y2d{bottom:541.695000px;}
.y38{bottom:547.650000px;}
.y61{bottom:550.155000px;}
.y1{bottom:588.870000px;}
.y29{bottom:611.625000px;}
.y19{bottom:612.225000px;}
.y1b{bottom:616.380000px;}
.yb{bottom:630.255000px;}
.y2b{bottom:636.150000px;}
.y46{bottom:640.905000px;}
.y26{bottom:666.675000px;}
.y1a{bottom:682.845000px;}
.y18{bottom:684.345000px;}
.y45{bottom:699.525000px;}
.y2a{bottom:700.350000px;}
.ya{bottom:702.345000px;}
.y9{bottom:748.695000px;}
.hf{height:55.054688px;}
.h18{height:55.169385px;}
.h9{height:58.610303px;}
.h11{height:58.921875px;}
.ha{height:59.044629px;}
.h14{height:69.969727px;}
.h15{height:70.092480px;}
.h1f{height:71.319727px;}
.h16{height:72.259277px;}
.h3{height:72.373975px;}
.h4{height:79.999585px;}
.h12{height:82.696729px;}
.h19{height:93.019482px;}
.h1a{height:93.134180px;}
.h1c{height:99.553418px;}
.h1d{height:99.676172px;}
.hb{height:110.224072px;}
.h5{height:110.338770px;}
.h10{height:121.485791px;}
.h1b{height:127.428662px;}
.h1e{height:148.074170px;}
.hc{height:148.188867px;}
.h6{height:158.598047px;}
.h17{height:165.393457px;}
.h13{height:182.598047px;}
.hd{height:189.479883px;}
.he{height:189.594580px;}
.h7{height:203.243555px;}
.h8{height:203.358252px;}
.h2{height:220.448145px;}
.h1{height:275.732227px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3f{left:10.799979px;}
.x34{left:26.624979px;}
.x39{left:43.574979px;}
.x12{left:50.774979px;}
.x3{left:53.587479px;}
.x1{left:59.774979px;}
.x2{left:68.512479px;}
.x38{left:71.812479px;}
.x13{left:73.349979px;}
.x3d{left:76.987479px;}
.xa{left:80.699979px;}
.x1f{left:83.399979px;}
.x41{left:86.962479px;}
.x42{left:89.137479px;}
.xc{left:100.762479px;}
.xe{left:111.374979px;}
.x4{left:123.749979px;}
.x16{left:130.499979px;}
.x40{left:131.812479px;}
.x2a{left:136.949979px;}
.x2b{left:138.149979px;}
.x2c{left:142.612479px;}
.xd{left:145.349979px;}
.x32{left:148.162479px;}
.x6{left:158.729979px;}
.x28{left:161.549979px;}
.x19{left:166.949979px;}
.x10{left:170.279979px;}
.x11{left:203.699979px;}
.xb{left:206.519979px;}
.x35{left:224.774979px;}
.x1c{left:237.794979px;}
.x27{left:255.674979px;}
.x18{left:281.924979px;}
.x1d{left:300.704979px;}
.x1e{left:308.849979px;}
.xf{left:313.274979px;}
.x14{left:326.324979px;}
.x36{left:333.599979px;}
.x43{left:478.949979px;}
.x2d{left:484.754979px;}
.x20{left:514.244979px;}
.x15{left:520.229979px;}
.x3e{left:543.779979px;}
.x7{left:548.849979px;}
.x17{left:569.204979px;}
.x23{left:586.769979px;}
.x25{left:591.029979px;}
.x2f{left:625.724979px;}
.x29{left:653.729979px;}
.x30{left:666.269979px;}
.x31{left:673.379979px;}
.x21{left:763.574979px;}
.x37{left:769.124979px;}
.x22{left:795.119979px;}
.x1a{left:798.374979px;}
.x3b{left:804.674979px;}
.x3a{left:857.399979px;}
.x26{left:860.774979px;}
.x3c{left:883.949979px;}
.x8{left:927.569979px;}
.x24{left:935.924979px;}
.x1b{left:991.199979px;}
.x9{left:993.749979px;}
.x33{left:1160.729979px;}
.x2e{left:1363.694979px;}
.x5{left:1378.724979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.200000pt;}
.ls7{letter-spacing:-1.429333pt;}
.ls1{letter-spacing:-1.077333pt;}
.ls11{letter-spacing:-0.773333pt;}
.ls10{letter-spacing:-0.420800pt;}
.ls12{letter-spacing:-0.350933pt;}
.ls13{letter-spacing:-0.217600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.178400pt;}
.ls4{letter-spacing:0.896000pt;}
.ls9{letter-spacing:0.982267pt;}
.ls3{letter-spacing:1.029333pt;}
.lsa{letter-spacing:2.405333pt;}
.lsf{letter-spacing:106.213333pt;}
.lsc{letter-spacing:106.240000pt;}
.lse{letter-spacing:106.260000pt;}
.lsb{letter-spacing:106.286667pt;}
.ls8{letter-spacing:114.713333pt;}
.lsd{letter-spacing:117.460000pt;}
.ls6{letter-spacing:117.513333pt;}
.ls5{letter-spacing:117.560000pt;}
.ws6{word-spacing:-128.133333pt;}
.ws2{word-spacing:-80.848800pt;}
.ws4{word-spacing:-80.803200pt;}
.ws5{word-spacing:-58.915200pt;}
.ws3{word-spacing:-43.821600pt;}
.wsa{word-spacing:-38.062933pt;}
.ws9{word-spacing:-31.178933pt;}
.ws0{word-spacing:-29.614933pt;}
.ws8{word-spacing:-26.752000pt;}
.ws7{word-spacing:-22.574933pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-10.792000pt;}
._c{margin-left:-6.718400pt;}
._9{margin-left:-5.454000pt;}
._7{margin-left:-4.450667pt;}
._6{margin-left:-3.278133pt;}
._1{margin-left:-2.243733pt;}
._2{margin-left:-1.282133pt;}
._0{width:1.282133pt;}
._3{width:2.243733pt;}
._4{width:3.485600pt;}
._5{width:4.459067pt;}
._8{width:9.601733pt;}
._e{width:387.718800pt;}
._a{width:2486.578533pt;}
._b{width:2724.679067pt;}
.fsc{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fs7{font-size:68.133333pt;}
.fsf{font-size:76.000000pt;}
.fs10{font-size:76.133333pt;}
.fs11{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fsd{font-size:96.133333pt;}
.fs13{font-size:108.133333pt;}
.fs14{font-size:108.266667pt;}
.fs9{font-size:128.133333pt;}
.fs3{font-size:128.266667pt;}
.fs15{font-size:148.133333pt;}
.fs16{font-size:172.133333pt;}
.fs4{font-size:172.266667pt;}
.fs12{font-size:192.266667pt;}
.fse{font-size:212.266667pt;}
.fsa{font-size:220.266667pt;}
.fsb{font-size:220.400000pt;}
.fs5{font-size:236.266667pt;}
.fs6{font-size:236.400000pt;}
.fs1{font-size:256.266667pt;}
.fs0{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:7.833333pt;}
.y48{bottom:16.100000pt;}
.yd{bottom:20.366667pt;}
.y47{bottom:23.233333pt;}
.y1e{bottom:23.900000pt;}
.y16{bottom:24.766667pt;}
.y17{bottom:25.566667pt;}
.y28{bottom:26.000000pt;}
.y44{bottom:30.566667pt;}
.y1f{bottom:33.766667pt;}
.y14{bottom:39.566667pt;}
.yc{bottom:40.400000pt;}
.y15{bottom:45.800000pt;}
.y5b{bottom:50.433333pt;}
.y43{bottom:59.600000pt;}
.y4f{bottom:59.833333pt;}
.y27{bottom:64.066667pt;}
.y7{bottom:66.666667pt;}
.y13{bottom:78.633333pt;}
.y66{bottom:80.300000pt;}
.y4a{bottom:82.033333pt;}
.y5a{bottom:82.466667pt;}
.y4e{bottom:91.900000pt;}
.y6{bottom:105.733333pt;}
.y65{bottom:109.333333pt;}
.y49{bottom:114.066667pt;}
.y59{bottom:114.533333pt;}
.y12{bottom:116.666667pt;}
.y4d{bottom:123.933333pt;}
.y42{bottom:136.306667pt;}
.y25{bottom:141.306667pt;}
.y5{bottom:143.773333pt;}
.y37{bottom:145.040000pt;}
.y58{bottom:146.573333pt;}
.y41{bottom:174.360000pt;}
.y36{bottom:178.106667pt;}
.y4{bottom:182.840000pt;}
.y11{bottom:192.133333pt;}
.y24{bottom:199.360000pt;}
.y4c{bottom:203.026667pt;}
.y57{bottom:207.626667pt;}
.y40{bottom:211.440000pt;}
.y35{bottom:212.133333pt;}
.y64{bottom:220.306667pt;}
.y10{bottom:230.173333pt;}
.y3{bottom:242.893333pt;}
.y3f{bottom:245.466667pt;}
.y34{bottom:246.200000pt;}
.y5f{bottom:274.306667pt;}
.y1d{bottom:274.800000pt;}
.y33{bottom:279.226667pt;}
.y3e{bottom:279.506667pt;}
.y2c{bottom:287.573333pt;}
.y56{bottom:306.773333pt;}
.y3d{bottom:312.560000pt;}
.y23{bottom:313.000000pt;}
.y32{bottom:313.266667pt;}
.yf{bottom:324.426667pt;}
.y1c{bottom:326.866667pt;}
.y55{bottom:329.800000pt;}
.y22{bottom:342.026667pt;}
.y5e{bottom:346.000000pt;}
.y31{bottom:346.333333pt;}
.y63{bottom:347.466667pt;}
.y3c{bottom:347.600000pt;}
.y54{bottom:351.840000pt;}
.ye{bottom:362.466667pt;}
.y53{bottom:373.866667pt;}
.y5d{bottom:378.066667pt;}
.y21{bottom:378.106667pt;}
.y30{bottom:380.360000pt;}
.y3b{bottom:384.666667pt;}
.y52{bottom:396.893333pt;}
.y2f{bottom:414.440000pt;}
.y3a{bottom:418.693333pt;}
.y51{bottom:418.933333pt;}
.y2{bottom:431.306667pt;}
.y20{bottom:436.173333pt;}
.y4b{bottom:437.866667pt;}
.y2e{bottom:447.466667pt;}
.y39{bottom:451.733333pt;}
.y5c{bottom:458.173333pt;}
.y62{bottom:460.000000pt;}
.y50{bottom:462.960000pt;}
.y8{bottom:469.306667pt;}
.y2d{bottom:481.506667pt;}
.y38{bottom:486.800000pt;}
.y61{bottom:489.026667pt;}
.y1{bottom:523.440000pt;}
.y29{bottom:543.666667pt;}
.y19{bottom:544.200000pt;}
.y1b{bottom:547.893333pt;}
.yb{bottom:560.226667pt;}
.y2b{bottom:565.466667pt;}
.y46{bottom:569.693333pt;}
.y26{bottom:592.600000pt;}
.y1a{bottom:606.973333pt;}
.y18{bottom:608.306667pt;}
.y45{bottom:621.800000pt;}
.y2a{bottom:622.533333pt;}
.ya{bottom:624.306667pt;}
.y9{bottom:665.506667pt;}
.hf{height:48.937500pt;}
.h18{height:49.039453pt;}
.h9{height:52.098047pt;}
.h11{height:52.375000pt;}
.ha{height:52.484115pt;}
.h14{height:62.195312pt;}
.h15{height:62.304427pt;}
.h1f{height:63.395312pt;}
.h16{height:64.230469pt;}
.h3{height:64.332422pt;}
.h4{height:71.110742pt;}
.h12{height:73.508203pt;}
.h19{height:82.683984pt;}
.h1a{height:82.785938pt;}
.h1c{height:88.491927pt;}
.h1d{height:88.601042pt;}
.hb{height:97.976953pt;}
.h5{height:98.078906pt;}
.h10{height:107.987370pt;}
.h1b{height:113.269922pt;}
.h1e{height:131.621484pt;}
.hc{height:131.723437pt;}
.h6{height:140.976042pt;}
.h17{height:147.016406pt;}
.h13{height:162.309375pt;}
.hd{height:168.426562pt;}
.he{height:168.528516pt;}
.h7{height:180.660937pt;}
.h8{height:180.762891pt;}
.h2{height:195.953906pt;}
.h1{height:245.095313pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:9.599981pt;}
.x34{left:23.666648pt;}
.x39{left:38.733314pt;}
.x12{left:45.133314pt;}
.x3{left:47.633314pt;}
.x1{left:53.133314pt;}
.x2{left:60.899981pt;}
.x38{left:63.833314pt;}
.x13{left:65.199981pt;}
.x3d{left:68.433314pt;}
.xa{left:71.733314pt;}
.x1f{left:74.133314pt;}
.x41{left:77.299981pt;}
.x42{left:79.233314pt;}
.xc{left:89.566648pt;}
.xe{left:98.999981pt;}
.x4{left:109.999981pt;}
.x16{left:115.999981pt;}
.x40{left:117.166648pt;}
.x2a{left:121.733314pt;}
.x2b{left:122.799981pt;}
.x2c{left:126.766648pt;}
.xd{left:129.199981pt;}
.x32{left:131.699981pt;}
.x6{left:141.093314pt;}
.x28{left:143.599981pt;}
.x19{left:148.399981pt;}
.x10{left:151.359981pt;}
.x11{left:181.066648pt;}
.xb{left:183.573314pt;}
.x35{left:199.799981pt;}
.x1c{left:211.373314pt;}
.x27{left:227.266648pt;}
.x18{left:250.599981pt;}
.x1d{left:267.293314pt;}
.x1e{left:274.533314pt;}
.xf{left:278.466648pt;}
.x14{left:290.066648pt;}
.x36{left:296.533314pt;}
.x43{left:425.733314pt;}
.x2d{left:430.893314pt;}
.x20{left:457.106648pt;}
.x15{left:462.426648pt;}
.x3e{left:483.359981pt;}
.x7{left:487.866648pt;}
.x17{left:505.959981pt;}
.x23{left:521.573314pt;}
.x25{left:525.359981pt;}
.x2f{left:556.199981pt;}
.x29{left:581.093314pt;}
.x30{left:592.239981pt;}
.x31{left:598.559981pt;}
.x21{left:678.733314pt;}
.x37{left:683.666648pt;}
.x22{left:706.773314pt;}
.x1a{left:709.666648pt;}
.x3b{left:715.266648pt;}
.x3a{left:762.133314pt;}
.x26{left:765.133314pt;}
.x3c{left:785.733314pt;}
.x8{left:824.506648pt;}
.x24{left:831.933314pt;}
.x1b{left:881.066648pt;}
.x9{left:883.333314pt;}
.x33{left:1031.759981pt;}
.x2e{left:1212.173314pt;}
.x5{left:1225.533314pt;}
}




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