
    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_4f0995c149a9a50b9017da75.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_8aecfef572d3ffcf3db70915.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.920410;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_7d77482b466efecb21544a72.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.881836;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_5ec183249bf54bdf96391a59.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101562;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_de3f126db0d47c20a0f9d2a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_aaa88c1be7732e699a75e150.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_7fef6ac01c6b14fa9207f932.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_1b75a788cd328ca5af30d0a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.905762;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_2c44624a5937c8671c8feef0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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);}
.v8{vertical-align:-36.000006px;}
.va{vertical-align:-33.120060px;}
.v3{vertical-align:-30.239880px;}
.v5{vertical-align:-27.360000px;}
.v4{vertical-align:-24.480000px;}
.vb{vertical-align:-14.399940px;}
.v7{vertical-align:-11.519880px;}
.v9{vertical-align:-8.640012px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:14.399940px;}
.v6{vertical-align:24.480060px;}
.v2{vertical-align:30.239880px;}
.v1{vertical-align:33.120120px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000001px;}
.ls10{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.504001px;}
.ls13{letter-spacing:0.504061px;}
.ls14{letter-spacing:0.504121px;}
.ls6{letter-spacing:0.719821px;}
.ls11{letter-spacing:0.719941px;}
.lsc{letter-spacing:0.719971px;}
.ls8{letter-spacing:0.720001px;}
.ls4{letter-spacing:0.720007px;}
.lsb{letter-spacing:0.720013px;}
.ls3{letter-spacing:0.720019px;}
.ls9{letter-spacing:0.720061px;}
.ls7{letter-spacing:0.720121px;}
.ls12{letter-spacing:0.720181px;}
.ls1{letter-spacing:0.720241px;}
.ls0{letter-spacing:3.599941px;}
.ls2{letter-spacing:4.464001px;}
.lsd{letter-spacing:39.023977px;}
.lsf{letter-spacing:79.344001px;}
.lse{letter-spacing:143.426875px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-18.143999px;}
.ws0{word-spacing:-17.999999px;}
.ws7{word-spacing:-16.199999px;}
.ws8{word-spacing:-15.480000px;}
.ws2{word-spacing:-14.759999px;}
.ws6{word-spacing:-14.039999px;}
.ws4{word-spacing:-11.880000px;}
.wsa{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
._1e{margin-left:-10.725140px;}
._5{margin-left:-3.600047px;}
._3{margin-left:-2.056292px;}
._1{margin-left:-1.008000px;}
._0{width:1.261440px;}
._6{width:2.304000px;}
._10{width:6.480007px;}
._11{width:11.266567px;}
._4{width:21.600082px;}
._1c{width:23.258859px;}
._9{width:24.480006px;}
._d{width:31.322858px;}
._e{width:34.378566px;}
._1b{width:35.804166px;}
._c{width:42.480005px;}
._f{width:47.266565px;}
._13{width:48.277445px;}
._a{width:60.480004px;}
._1f{width:69.480060px;}
._1a{width:84.778563px;}
._19{width:104.935690px;}
._2{width:114.480002px;}
._14{width:126.000001px;}
._15{width:131.469129px;}
._8{width:132.480002px;}
._18{width:134.640001px;}
._16{width:138.597128px;}
._b{width:149.040001px;}
._7{width:150.480001px;}
._17{width:152.280001px;}
._20{width:198.000001px;}
._12{width:317.520001px;}
._1d{width:450.000002px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.999999px;}
.fs7{font-size:38.879998px;}
.fs4{font-size:41.759998px;}
.fs8{font-size:47.519998px;}
.fs3{font-size:50.399998px;}
.fs9{font-size:56.159998px;}
.fs6{font-size:59.039998px;}
.fs0{font-size:64.799997px;}
.fs1{font-size:71.999997px;}
.fs2{font-size:83.519997px;}
.y3{bottom:-2.159999px;}
.y0{bottom:0.000000px;}
.y32{bottom:51.479994px;}
.yad{bottom:51.840002px;}
.ye5{bottom:58.320002px;}
.y1{bottom:60.120088px;}
.y10d{bottom:68.039996px;}
.y6d{bottom:68.400003px;}
.y31{bottom:68.760000px;}
.y5f{bottom:69.119997px;}
.y8c{bottom:69.479994px;}
.ye4{bottom:71.639997px;}
.yac{bottom:71.999994px;}
.y30{bottom:86.039996px;}
.yd0{bottom:86.760000px;}
.y6c{bottom:88.919993px;}
.yab{bottom:89.280002px;}
.y8b{bottom:90.360001px;}
.ye3{bottom:92.520002px;}
.y65{bottom:92.880002px;}
.y5e{bottom:93.240002px;}
.y2f{bottom:103.320002px;}
.y5d{bottom:103.680002px;}
.yaa{bottom:107.280002px;}
.y10c{bottom:109.080001px;}
.y6b{bottom:109.800002px;}
.yf8{bottom:110.160002px;}
.y8a{bottom:110.880002px;}
.yf7{bottom:111.240002px;}
.ycf{bottom:112.680002px;}
.ye2{bottom:113.399986px;}
.y2e{bottom:120.600002px;}
.y5c{bottom:120.959986px;}
.yce{bottom:125.280002px;}
.y6a{bottom:129.240002px;}
.y10b{bottom:129.959987px;}
.y64{bottom:130.680002px;}
.y89{bottom:131.760001px;}
.ya9{bottom:134.279986px;}
.y2d{bottom:137.520001px;}
.y5b{bottom:138.239986px;}
.y8d{bottom:144.359986px;}
.y69{bottom:147.960001px;}
.y10a{bottom:150.479986px;}
.y63{bottom:151.560001px;}
.y88{bottom:152.640001px;}
.ya8{bottom:153.359986px;}
.y2c{bottom:154.800002px;}
.y5a{bottom:155.520001px;}
.y68{bottom:158.399987px;}
.y109{bottom:171.359986px;}
.y2b{bottom:172.080001px;}
.ya7{bottom:172.439986px;}
.y59{bottom:172.800002px;}
.y87{bottom:173.520001px;}
.y67{bottom:175.680001px;}
.ya6{bottom:191.520001px;}
.y62{bottom:192.960001px;}
.y66{bottom:193.319986px;}
.y86{bottom:194.040001px;}
.yf6{bottom:194.399987px;}
.y2a{bottom:196.199987px;}
.ycd{bottom:196.560001px;}
.y58{bottom:196.920002px;}
.y29{bottom:206.640001px;}
.y57{bottom:207.720001px;}
.ya5{bottom:210.600002px;}
.y61{bottom:213.840001px;}
.y108{bottom:214.199987px;}
.y85{bottom:214.920002px;}
.ycc{bottom:217.439986px;}
.y28{bottom:223.920002px;}
.ya4{bottom:229.319986px;}
.y60{bottom:234.720001px;}
.y107{bottom:235.079986px;}
.y84{bottom:235.800001px;}
.ycb{bottom:237.960001px;}
.y27{bottom:241.199987px;}
.ya3{bottom:248.399987px;}
.y56{bottom:255.239986px;}
.y106{bottom:255.960001px;}
.y83{bottom:256.680001px;}
.y26{bottom:258.479986px;}
.yca{bottom:258.840001px;}
.ya2{bottom:267.479986px;}
.y25{bottom:275.760001px;}
.y55{bottom:276.119986px;}
.y105{bottom:276.840001px;}
.y82{bottom:277.199987px;}
.yf5{bottom:277.560001px;}
.yc9{bottom:279.720001px;}
.ya1{bottom:286.560001px;}
.y24{bottom:293.039986px;}
.y54{bottom:296.999986px;}
.y104{bottom:297.359986px;}
.y81{bottom:298.079986px;}
.yc8{bottom:300.239986px;}
.ya0{bottom:305.640001px;}
.y23{bottom:317.159987px;}
.y53{bottom:317.880001px;}
.y103{bottom:318.239986px;}
.y80{bottom:318.959986px;}
.yc7{bottom:321.119986px;}
.y9f{bottom:324.720002px;}
.y22{bottom:329.399987px;}
.y52{bottom:338.399987px;}
.y102{bottom:339.120002px;}
.y7f{bottom:339.839987px;}
.yc6{bottom:341.999986px;}
.y9e{bottom:343.800001px;}
.y51{bottom:359.280017px;}
.y101{bottom:359.999986px;}
.y7e{bottom:360.360016px;}
.yf4{bottom:360.720002px;}
.y9d{bottom:362.880001px;}
.y50{bottom:380.159986px;}
.y100{bottom:380.519971px;}
.y7d{bottom:381.239986px;}
.y9c{bottom:381.960001px;}
.yc5{bottom:383.399987px;}
.y21{bottom:396.360016px;}
.y4f{bottom:401.040002px;}
.yff{bottom:401.399987px;}
.y7c{bottom:402.120002px;}
.yc4{bottom:404.280017px;}
.y20{bottom:417.239986px;}
.y9b{bottom:420.120002px;}
.y4e{bottom:421.560002px;}
.yfe{bottom:422.280017px;}
.y7b{bottom:422.640002px;}
.yf3{bottom:422.999986px;}
.yc3{bottom:425.159986px;}
.y1f{bottom:438.120002px;}
.y9a{bottom:439.200017px;}
.y4d{bottom:442.439972px;}
.yfd{bottom:443.159986px;}
.y7a{bottom:443.519971px;}
.yc2{bottom:446.040002px;}
.y1e{bottom:458.640002px;}
.y99{bottom:459.720002px;}
.y4c{bottom:463.319986px;}
.y79{bottom:464.040002px;}
.yf2{bottom:464.399987px;}
.yc1{bottom:466.560002px;}
.y98{bottom:478.800001px;}
.y1d{bottom:479.519971px;}
.yfc{bottom:483.839987px;}
.y4b{bottom:484.200017px;}
.y78{bottom:484.560002px;}
.yf1{bottom:485.279972px;}
.ye1{bottom:485.640002px;}
.yc0{bottom:487.439972px;}
.y97{bottom:497.880001px;}
.y1c{bottom:500.399987px;}
.y4a{bottom:504.720002px;}
.y77{bottom:505.439972px;}
.ye0{bottom:506.519971px;}
.ybf{bottom:508.319986px;}
.y96{bottom:516.960001px;}
.y1b{bottom:521.279972px;}
.yfb{bottom:525.239987px;}
.y49{bottom:525.599972px;}
.y76{bottom:525.960001px;}
.yf0{bottom:526.319987px;}
.ydf{bottom:527.399987px;}
.ybe{bottom:529.200017px;}
.y95{bottom:536.040002px;}
.y1a{bottom:541.800002px;}
.yfa{bottom:546.120002px;}
.y48{bottom:546.479986px;}
.y75{bottom:546.839987px;}
.yde{bottom:548.279972px;}
.ybd{bottom:549.720002px;}
.y94{bottom:555.120002px;}
.y19{bottom:562.679972px;}
.yf9{bottom:566.640002px;}
.y47{bottom:566.999986px;}
.y74{bottom:567.359972px;}
.yef{bottom:567.720002px;}
.ydd{bottom:568.800002px;}
.ybc{bottom:570.599972px;}
.y93{bottom:574.199972px;}
.y18{bottom:583.560002px;}
.y46{bottom:587.880002px;}
.y73{bottom:588.239987px;}
.ydc{bottom:589.679972px;}
.ybb{bottom:591.120002px;}
.y92{bottom:593.640002px;}
.y17{bottom:604.079987px;}
.y45{bottom:608.759972px;}
.yee{bottom:609.120002px;}
.yba{bottom:610.199972px;}
.ydb{bottom:610.560002px;}
.y16{bottom:624.960001px;}
.yb9{bottom:629.279972px;}
.y44{bottom:629.640002px;}
.yda{bottom:631.439972px;}
.y91{bottom:632.159986px;}
.y15{bottom:645.839987px;}
.yb8{bottom:648.359972px;}
.y43{bottom:650.159986px;}
.yed{bottom:650.519971px;}
.yd9{bottom:651.960001px;}
.y90{bottom:653.040002px;}
.y14{bottom:666.720002px;}
.yb7{bottom:667.439972px;}
.y42{bottom:671.040002px;}
.yec{bottom:671.759972px;}
.yd8{bottom:672.839987px;}
.y8f{bottom:673.919987px;}
.yb6{bottom:686.519971px;}
.y13{bottom:687.239987px;}
.y72{bottom:691.560002px;}
.y41{bottom:691.919987px;}
.yeb{bottom:692.279972px;}
.yd7{bottom:693.720002px;}
.y8e{bottom:694.800002px;}
.yb5{bottom:705.599972px;}
.y12{bottom:708.119957px;}
.y40{bottom:712.799957px;}
.yea{bottom:713.159941px;}
.yd6{bottom:714.239987px;}
.yb4{bottom:724.680017px;}
.y11{bottom:729.000032px;}
.y3f{bottom:733.319941px;}
.y71{bottom:733.680017px;}
.ye9{bottom:734.040001px;}
.yd5{bottom:735.119957px;}
.yb3{bottom:743.399987px;}
.y10{bottom:749.880002px;}
.y3e{bottom:754.200017px;}
.yd4{bottom:756.000032px;}
.yb2{bottom:762.479941px;}
.yf{bottom:770.399987px;}
.y3d{bottom:775.079987px;}
.yd3{bottom:776.880002px;}
.yb1{bottom:781.560001px;}
.ye{bottom:791.279972px;}
.ye8{bottom:795.599972px;}
.y3c{bottom:795.959957px;}
.yd2{bottom:797.399987px;}
.yb0{bottom:800.639957px;}
.yd{bottom:812.159941px;}
.y3b{bottom:816.479941px;}
.y70{bottom:816.840032px;}
.yd1{bottom:817.919986px;}
.yaf{bottom:819.720001px;}
.yc{bottom:833.040001px;}
.ye7{bottom:836.999942px;}
.y3a{bottom:837.360017px;}
.yae{bottom:838.799957px;}
.yb{bottom:853.560001px;}
.ye6{bottom:857.880002px;}
.y39{bottom:858.239987px;}
.ya{bottom:874.439972px;}
.y38{bottom:879.119957px;}
.y9{bottom:895.319941px;}
.y37{bottom:899.639957px;}
.y6f{bottom:899.999942px;}
.y8{bottom:916.200017px;}
.y10e{bottom:920.159941px;}
.y36{bottom:920.520017px;}
.y7{bottom:936.720001px;}
.y35{bottom:941.399987px;}
.y6{bottom:957.599972px;}
.y6e{bottom:961.919986px;}
.y34{bottom:962.279972px;}
.y5{bottom:979.919986px;}
.y33{bottom:982.799957px;}
.y4{bottom:1003.680017px;}
.y2{bottom:1058.759971px;}
.h4{height:14.399998px;}
.h9{height:25.382811px;}
.hb{height:27.014764px;}
.hf{height:33.018045px;}
.h14{height:40.993592px;}
.ha{height:41.022420px;}
.h2{height:45.024607px;}
.h12{height:45.277732px;}
.h13{height:46.195311px;}
.h3{height:50.027342px;}
.h15{height:50.308592px;}
.h5{height:51.328123px;}
.hc{height:52.121248px;}
.h11{height:57.206248px;}
.h7{height:63.562497px;}
.h8{height:67.106128px;}
.hd{height:67.106188px;}
.h10{height:67.106248px;}
.he{height:67.106308px;}
.h16{height:67.106488px;}
.h6{height:68.656056px;}
.h1{height:1100.879970px;}
.h0{height:1188.000000px;}
.w2{width:9.359985px;}
.w3{width:18.000000px;}
.w1{width:864.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:27.000003px;}
.x3{left:80.999997px;}
.x6{left:108.720002px;}
.xa{left:123.119997px;}
.x8{left:134.999997px;}
.x9{left:161.999997px;}
.xb{left:177.119997px;}
.x7{left:310.319997px;}
.x5{left:431.999997px;}
.xc{left:450.000000px;}
.x4{left:454.320000px;}
.x2{left:782.999997px;}
@media print{
.v8{vertical-align:-32.000005pt;}
.va{vertical-align:-29.440053pt;}
.v3{vertical-align:-26.879893pt;}
.v5{vertical-align:-24.320000pt;}
.v4{vertical-align:-21.760000pt;}
.vb{vertical-align:-12.799947pt;}
.v7{vertical-align:-10.239893pt;}
.v9{vertical-align:-7.680011pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:12.799947pt;}
.v6{vertical-align:21.760053pt;}
.v2{vertical-align:26.879893pt;}
.v1{vertical-align:29.440107pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000001pt;}
.ls10{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.448001pt;}
.ls13{letter-spacing:0.448054pt;}
.ls14{letter-spacing:0.448108pt;}
.ls6{letter-spacing:0.639841pt;}
.ls11{letter-spacing:0.639947pt;}
.lsc{letter-spacing:0.639974pt;}
.ls8{letter-spacing:0.640001pt;}
.ls4{letter-spacing:0.640006pt;}
.lsb{letter-spacing:0.640012pt;}
.ls3{letter-spacing:0.640017pt;}
.ls9{letter-spacing:0.640054pt;}
.ls7{letter-spacing:0.640107pt;}
.ls12{letter-spacing:0.640161pt;}
.ls1{letter-spacing:0.640214pt;}
.ls0{letter-spacing:3.199948pt;}
.ls2{letter-spacing:3.968001pt;}
.lsd{letter-spacing:34.687979pt;}
.lsf{letter-spacing:70.528001pt;}
.lse{letter-spacing:127.490555pt;}
.ws9{word-spacing:-16.127999pt;}
.ws0{word-spacing:-15.999999pt;}
.ws7{word-spacing:-14.399999pt;}
.ws8{word-spacing:-13.760000pt;}
.ws2{word-spacing:-13.119999pt;}
.ws6{word-spacing:-12.479999pt;}
.ws4{word-spacing:-10.560000pt;}
.wsa{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
._1e{margin-left:-9.533458pt;}
._5{margin-left:-3.200042pt;}
._3{margin-left:-1.827815pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.121280pt;}
._6{width:2.048000pt;}
._10{width:5.760006pt;}
._11{width:10.014726pt;}
._4{width:19.200073pt;}
._1c{width:20.674541pt;}
._9{width:21.760005pt;}
._d{width:27.842541pt;}
._e{width:30.558725pt;}
._1b{width:31.825925pt;}
._c{width:37.760005pt;}
._f{width:42.014724pt;}
._13{width:42.913285pt;}
._a{width:53.760004pt;}
._1f{width:61.760053pt;}
._1a{width:75.358723pt;}
._19{width:93.276169pt;}
._2{width:101.760002pt;}
._14{width:112.000001pt;}
._15{width:116.861448pt;}
._8{width:117.760001pt;}
._18{width:119.680001pt;}
._16{width:123.197447pt;}
._b{width:132.480001pt;}
._7{width:133.760001pt;}
._17{width:135.360001pt;}
._20{width:176.000001pt;}
._12{width:282.240001pt;}
._1d{width:400.000002pt;}
.fs5{font-size:31.999999pt;}
.fs7{font-size:34.559999pt;}
.fs4{font-size:37.119998pt;}
.fs8{font-size:42.239998pt;}
.fs3{font-size:44.799998pt;}
.fs9{font-size:49.919998pt;}
.fs6{font-size:52.479998pt;}
.fs0{font-size:57.599998pt;}
.fs1{font-size:63.999997pt;}
.fs2{font-size:74.239997pt;}
.y3{bottom:-1.919999pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:45.759995pt;}
.yad{bottom:46.080001pt;}
.ye5{bottom:51.840001pt;}
.y1{bottom:53.440079pt;}
.y10d{bottom:60.479996pt;}
.y6d{bottom:60.800003pt;}
.y31{bottom:61.120000pt;}
.y5f{bottom:61.439997pt;}
.y8c{bottom:61.759995pt;}
.ye4{bottom:63.679997pt;}
.yac{bottom:63.999995pt;}
.y30{bottom:76.479996pt;}
.yd0{bottom:77.120000pt;}
.y6c{bottom:79.039993pt;}
.yab{bottom:79.360001pt;}
.y8b{bottom:80.320001pt;}
.ye3{bottom:82.240001pt;}
.y65{bottom:82.560001pt;}
.y5e{bottom:82.880001pt;}
.y2f{bottom:91.840001pt;}
.y5d{bottom:92.160001pt;}
.yaa{bottom:95.360001pt;}
.y10c{bottom:96.960001pt;}
.y6b{bottom:97.600001pt;}
.yf8{bottom:97.920001pt;}
.y8a{bottom:98.560001pt;}
.yf7{bottom:98.880001pt;}
.ycf{bottom:100.160001pt;}
.ye2{bottom:100.799988pt;}
.y2e{bottom:107.200001pt;}
.y5c{bottom:107.519988pt;}
.yce{bottom:111.360001pt;}
.y6a{bottom:114.880001pt;}
.y10b{bottom:115.519988pt;}
.y64{bottom:116.160001pt;}
.y89{bottom:117.120001pt;}
.ya9{bottom:119.359988pt;}
.y2d{bottom:122.240001pt;}
.y5b{bottom:122.879988pt;}
.y8d{bottom:128.319988pt;}
.y69{bottom:131.520001pt;}
.y10a{bottom:133.759988pt;}
.y63{bottom:134.720001pt;}
.y88{bottom:135.680001pt;}
.ya8{bottom:136.319988pt;}
.y2c{bottom:137.600001pt;}
.y5a{bottom:138.240001pt;}
.y68{bottom:140.799988pt;}
.y109{bottom:152.319988pt;}
.y2b{bottom:152.960001pt;}
.ya7{bottom:153.279988pt;}
.y59{bottom:153.600001pt;}
.y87{bottom:154.240001pt;}
.y67{bottom:156.160001pt;}
.ya6{bottom:170.240001pt;}
.y62{bottom:171.520001pt;}
.y66{bottom:171.839988pt;}
.y86{bottom:172.480001pt;}
.yf6{bottom:172.799988pt;}
.y2a{bottom:174.399988pt;}
.ycd{bottom:174.720001pt;}
.y58{bottom:175.040001pt;}
.y29{bottom:183.680001pt;}
.y57{bottom:184.640001pt;}
.ya5{bottom:187.200001pt;}
.y61{bottom:190.080001pt;}
.y108{bottom:190.399988pt;}
.y85{bottom:191.040001pt;}
.ycc{bottom:193.279988pt;}
.y28{bottom:199.040001pt;}
.ya4{bottom:203.839988pt;}
.y60{bottom:208.640001pt;}
.y107{bottom:208.959988pt;}
.y84{bottom:209.600001pt;}
.ycb{bottom:211.520001pt;}
.y27{bottom:214.399988pt;}
.ya3{bottom:220.799988pt;}
.y56{bottom:226.879988pt;}
.y106{bottom:227.520001pt;}
.y83{bottom:228.160001pt;}
.y26{bottom:229.759988pt;}
.yca{bottom:230.080001pt;}
.ya2{bottom:237.759988pt;}
.y25{bottom:245.120001pt;}
.y55{bottom:245.439988pt;}
.y105{bottom:246.080001pt;}
.y82{bottom:246.399988pt;}
.yf5{bottom:246.720001pt;}
.yc9{bottom:248.640001pt;}
.ya1{bottom:254.720001pt;}
.y24{bottom:260.479988pt;}
.y54{bottom:263.999988pt;}
.y104{bottom:264.319988pt;}
.y81{bottom:264.959988pt;}
.yc8{bottom:266.879988pt;}
.ya0{bottom:271.680001pt;}
.y23{bottom:281.919988pt;}
.y53{bottom:282.560001pt;}
.y103{bottom:282.879988pt;}
.y80{bottom:283.519988pt;}
.yc7{bottom:285.439988pt;}
.y9f{bottom:288.640001pt;}
.y22{bottom:292.799988pt;}
.y52{bottom:300.799988pt;}
.y102{bottom:301.440001pt;}
.y7f{bottom:302.079988pt;}
.yc6{bottom:303.999988pt;}
.y9e{bottom:305.600001pt;}
.y51{bottom:319.360015pt;}
.y101{bottom:319.999988pt;}
.y7e{bottom:320.320015pt;}
.yf4{bottom:320.640001pt;}
.y9d{bottom:322.560001pt;}
.y50{bottom:337.919988pt;}
.y100{bottom:338.239975pt;}
.y7d{bottom:338.879988pt;}
.y9c{bottom:339.520001pt;}
.yc5{bottom:340.799988pt;}
.y21{bottom:352.320015pt;}
.y4f{bottom:356.480001pt;}
.yff{bottom:356.799988pt;}
.y7c{bottom:357.440001pt;}
.yc4{bottom:359.360015pt;}
.y20{bottom:370.879988pt;}
.y9b{bottom:373.440001pt;}
.y4e{bottom:374.720001pt;}
.yfe{bottom:375.360015pt;}
.y7b{bottom:375.680001pt;}
.yf3{bottom:375.999988pt;}
.yc3{bottom:377.919988pt;}
.y1f{bottom:389.440001pt;}
.y9a{bottom:390.400015pt;}
.y4d{bottom:393.279975pt;}
.yfd{bottom:393.919988pt;}
.y7a{bottom:394.239975pt;}
.yc2{bottom:396.480001pt;}
.y1e{bottom:407.680001pt;}
.y99{bottom:408.640001pt;}
.y4c{bottom:411.839988pt;}
.y79{bottom:412.480001pt;}
.yf2{bottom:412.799988pt;}
.yc1{bottom:414.720001pt;}
.y98{bottom:425.600001pt;}
.y1d{bottom:426.239975pt;}
.yfc{bottom:430.079988pt;}
.y4b{bottom:430.400015pt;}
.y78{bottom:430.720001pt;}
.yf1{bottom:431.359975pt;}
.ye1{bottom:431.680001pt;}
.yc0{bottom:433.279975pt;}
.y97{bottom:442.560001pt;}
.y1c{bottom:444.799988pt;}
.y4a{bottom:448.640001pt;}
.y77{bottom:449.279975pt;}
.ye0{bottom:450.239975pt;}
.ybf{bottom:451.839988pt;}
.y96{bottom:459.520001pt;}
.y1b{bottom:463.359975pt;}
.yfb{bottom:466.879988pt;}
.y49{bottom:467.199975pt;}
.y76{bottom:467.520001pt;}
.yf0{bottom:467.839988pt;}
.ydf{bottom:468.799988pt;}
.ybe{bottom:470.400015pt;}
.y95{bottom:476.480001pt;}
.y1a{bottom:481.600001pt;}
.yfa{bottom:485.440001pt;}
.y48{bottom:485.759988pt;}
.y75{bottom:486.079988pt;}
.yde{bottom:487.359975pt;}
.ybd{bottom:488.640001pt;}
.y94{bottom:493.440001pt;}
.y19{bottom:500.159975pt;}
.yf9{bottom:503.680001pt;}
.y47{bottom:503.999988pt;}
.y74{bottom:504.319975pt;}
.yef{bottom:504.640001pt;}
.ydd{bottom:505.600001pt;}
.ybc{bottom:507.199975pt;}
.y93{bottom:510.399975pt;}
.y18{bottom:518.720001pt;}
.y46{bottom:522.560001pt;}
.y73{bottom:522.879988pt;}
.ydc{bottom:524.159975pt;}
.ybb{bottom:525.440001pt;}
.y92{bottom:527.680001pt;}
.y17{bottom:536.959988pt;}
.y45{bottom:541.119975pt;}
.yee{bottom:541.440001pt;}
.yba{bottom:542.399975pt;}
.ydb{bottom:542.720001pt;}
.y16{bottom:555.520001pt;}
.yb9{bottom:559.359975pt;}
.y44{bottom:559.680001pt;}
.yda{bottom:561.279975pt;}
.y91{bottom:561.919988pt;}
.y15{bottom:574.079988pt;}
.yb8{bottom:576.319975pt;}
.y43{bottom:577.919988pt;}
.yed{bottom:578.239975pt;}
.yd9{bottom:579.520001pt;}
.y90{bottom:580.480001pt;}
.y14{bottom:592.640001pt;}
.yb7{bottom:593.279975pt;}
.y42{bottom:596.480001pt;}
.yec{bottom:597.119975pt;}
.yd8{bottom:598.079988pt;}
.y8f{bottom:599.039988pt;}
.yb6{bottom:610.239975pt;}
.y13{bottom:610.879988pt;}
.y72{bottom:614.720001pt;}
.y41{bottom:615.039988pt;}
.yeb{bottom:615.359975pt;}
.yd7{bottom:616.640001pt;}
.y8e{bottom:617.600001pt;}
.yb5{bottom:627.199975pt;}
.y12{bottom:629.439961pt;}
.y40{bottom:633.599961pt;}
.yea{bottom:633.919948pt;}
.yd6{bottom:634.879988pt;}
.yb4{bottom:644.160015pt;}
.y11{bottom:648.000028pt;}
.y3f{bottom:651.839948pt;}
.y71{bottom:652.160015pt;}
.ye9{bottom:652.480001pt;}
.yd5{bottom:653.439961pt;}
.yb3{bottom:660.799988pt;}
.y10{bottom:666.560001pt;}
.y3e{bottom:670.400015pt;}
.yd4{bottom:672.000028pt;}
.yb2{bottom:677.759948pt;}
.yf{bottom:684.799988pt;}
.y3d{bottom:688.959988pt;}
.yd3{bottom:690.560001pt;}
.yb1{bottom:694.720001pt;}
.ye{bottom:703.359975pt;}
.ye8{bottom:707.199975pt;}
.y3c{bottom:707.519961pt;}
.yd2{bottom:708.799988pt;}
.yb0{bottom:711.679961pt;}
.yd{bottom:721.919948pt;}
.y3b{bottom:725.759948pt;}
.y70{bottom:726.080028pt;}
.yd1{bottom:727.039988pt;}
.yaf{bottom:728.640001pt;}
.yc{bottom:740.480001pt;}
.ye7{bottom:743.999948pt;}
.y3a{bottom:744.320015pt;}
.yae{bottom:745.599961pt;}
.yb{bottom:758.720001pt;}
.ye6{bottom:762.560001pt;}
.y39{bottom:762.879988pt;}
.ya{bottom:777.279975pt;}
.y38{bottom:781.439961pt;}
.y9{bottom:795.839948pt;}
.y37{bottom:799.679961pt;}
.y6f{bottom:799.999948pt;}
.y8{bottom:814.400015pt;}
.y10e{bottom:817.919948pt;}
.y36{bottom:818.240015pt;}
.y7{bottom:832.640001pt;}
.y35{bottom:836.799988pt;}
.y6{bottom:851.199975pt;}
.y6e{bottom:855.039988pt;}
.y34{bottom:855.359975pt;}
.y5{bottom:871.039988pt;}
.y33{bottom:873.599961pt;}
.y4{bottom:892.160015pt;}
.y2{bottom:941.119975pt;}
.h4{height:12.799998pt;}
.h9{height:22.562499pt;}
.hb{height:24.013124pt;}
.hf{height:29.349374pt;}
.h14{height:36.438748pt;}
.ha{height:36.464373pt;}
.h2{height:40.021873pt;}
.h12{height:40.246873pt;}
.h13{height:41.062498pt;}
.h3{height:44.468748pt;}
.h15{height:44.718748pt;}
.h5{height:45.624998pt;}
.hc{height:46.329998pt;}
.h11{height:50.849998pt;}
.h7{height:56.499998pt;}
.h8{height:59.649892pt;}
.hd{height:59.649945pt;}
.h10{height:59.649999pt;}
.he{height:59.650052pt;}
.h16{height:59.650212pt;}
.h6{height:61.027605pt;}
.h1{height:978.559973pt;}
.h0{height:1056.000000pt;}
.w2{width:8.319987pt;}
.w3{width:16.000000pt;}
.w1{width:768.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:24.000003pt;}
.x3{left:71.999997pt;}
.x6{left:96.640001pt;}
.xa{left:109.439997pt;}
.x8{left:119.999997pt;}
.x9{left:143.999997pt;}
.xb{left:157.439997pt;}
.x7{left:275.839997pt;}
.x5{left:383.999997pt;}
.xc{left:400.000000pt;}
.x4{left:403.840000pt;}
.x2{left:695.999997pt;}
}




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