
    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_1a83b34595be24539399a8a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_6c74192b9ce6ff283f6e3f31.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0245c6992357401f8c30c33c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_e76dcb6ccebb1702ec6b61e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_06af78bd363c4a07559d34a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_84f236a3ea55d69fb81bc25c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_bb9988e76a71dba148f8dbe2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_585162a4a000127e3bef2a77.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_a77bf2660bd3cb4f68fad518.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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:ffa;src:url('chunks/assets/font_4e6c0dedfbcfc8e414cd8928.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a07ead14fca22aaf7690d18c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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:ffc;src:url('chunks/assets/font_32af3abcfdefa3f1694b0db6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.ls0{letter-spacing:4.320000px;}
.ls10{letter-spacing:33.960000px;}
.ls6{letter-spacing:143.976000px;}
.ls8{letter-spacing:172.776000px;}
.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;}
}
.ws2{word-spacing:-63.360000px;}
.ws0{word-spacing:-55.296000px;}
.ws9{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.840000px;}
.ws4{word-spacing:0.000000px;}
._3a{margin-left:-9.648000px;}
._6{margin-left:-7.617360px;}
._0{margin-left:-6.094080px;}
._8{margin-left:-4.901280px;}
._7{margin-left:-3.657600px;}
._2{margin-left:-2.205120px;}
._1{margin-left:-1.173120px;}
._3{width:1.152000px;}
._5{width:2.753760px;}
._c{width:4.078560px;}
._14{width:5.209440px;}
._d{width:6.336000px;}
._e{width:7.344000px;}
._16{width:8.352000px;}
._15{width:9.450240px;}
._b{width:10.605120px;}
._a{width:11.736000px;}
._9{width:13.032000px;}
._18{width:14.085120px;}
._17{width:15.192000px;}
._19{width:16.761120px;}
._4{width:18.000000px;}
._1c{width:19.029600px;}
._1b{width:20.075520px;}
._1a{width:21.549120px;}
._1f{width:23.925120px;}
._11{width:25.344000px;}
._f{width:26.568000px;}
._10{width:27.597120px;}
._3b{width:29.165280px;}
._12{width:30.384000px;}
._13{width:31.629120px;}
._40{width:32.976000px;}
._1d{width:33.984000px;}
._1e{width:35.312160px;}
._26{width:37.620000px;}
._34{width:38.700000px;}
._2c{width:40.248000px;}
._31{width:45.955200px;}
._38{width:48.528000px;}
._33{width:50.244000px;}
._2e{width:51.552000px;}
._32{width:52.653120px;}
._25{width:56.088000px;}
._36{width:58.176000px;}
._35{width:59.472000px;}
._39{width:65.016000px;}
._28{width:74.088000px;}
._37{width:82.728000px;}
._2d{width:91.125120px;}
._42{width:92.138880px;}
._41{width:93.837120px;}
._30{width:97.344000px;}
._3e{width:98.424000px;}
._24{width:115.128000px;}
._3f{width:119.304000px;}
._21{width:121.799040px;}
._22{width:126.169920px;}
._20{width:127.270080px;}
._3c{width:129.240000px;}
._3d{width:131.877120px;}
._2b{width:157.608000px;}
._23{width:173.448000px;}
._27{width:179.496000px;}
._29{width:186.069120px;}
._2a{width:215.424000px;}
._2f{width:223.128000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(32,90,36);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y93{bottom:4.125000px;}
.ycb{bottom:4.140000px;}
.y9b{bottom:4.485000px;}
.ya2{bottom:4.500000px;}
.y92{bottom:24.825000px;}
.yca{bottom:24.840000px;}
.ycf{bottom:24.870000px;}
.y9a{bottom:25.185000px;}
.ya1{bottom:25.200000px;}
.yd0{bottom:25.230000px;}
.yd2{bottom:45.525000px;}
.y9e{bottom:45.540000px;}
.yce{bottom:45.570000px;}
.y99{bottom:45.885000px;}
.ya0{bottom:45.900000px;}
.yac{bottom:45.930000px;}
.y3{bottom:58.896000px;}
.y96{bottom:66.225000px;}
.y9d{bottom:66.270000px;}
.y98{bottom:66.585000px;}
.ya8{bottom:66.600000px;}
.y9f{bottom:66.630000px;}
.y95{bottom:86.925000px;}
.ya5{bottom:86.940000px;}
.yaa{bottom:86.970000px;}
.y97{bottom:87.285000px;}
.ya7{bottom:87.300000px;}
.yab{bottom:87.330000px;}
.ya4{bottom:107.640000px;}
.ya6{bottom:108.000000px;}
.y25{bottom:114.336000px;}
.yee{bottom:116.316000px;}
.y4c{bottom:116.496000px;}
.yc2{bottom:126.576000px;}
.ye2{bottom:128.376000px;}
.y24{bottom:138.276000px;}
.y8a{bottom:140.256000px;}
.y4b{bottom:140.436000px;}
.yc1{bottom:150.510000px;}
.y69{bottom:152.310000px;}
.y7a{bottom:152.490000px;}
.y23{bottom:162.210000px;}
.yd3{bottom:162.765000px;}
.y89{bottom:164.190000px;}
.y4a{bottom:164.370000px;}
.ye8{bottom:164.550000px;}
.y94{bottom:166.185000px;}
.y68{bottom:176.250000px;}
.yf6{bottom:176.430000px;}
.yc0{bottom:186.690000px;}
.y49{bottom:188.310000px;}
.y79{bottom:188.490000px;}
.y22{bottom:198.030000px;}
.y67{bottom:200.190000px;}
.yf0{bottom:200.370000px;}
.ybf{bottom:210.450000px;}
.y48{bottom:212.250000px;}
.y66{bottom:224.130000px;}
.ye1{bottom:224.310000px;}
.yd1{bottom:225.585000px;}
.y21{bottom:234.390000px;}
.y47{bottom:236.190000px;}
.y65{bottom:248.250000px;}
.y20{bottom:258.150000px;}
.ybe{bottom:258.510000px;}
.y78{bottom:260.130000px;}
.y46{bottom:260.310000px;}
.ye0{bottom:260.490000px;}
.y91{bottom:270.405000px;}
.yf5{bottom:272.190000px;}
.ybd{bottom:282.450000px;}
.y64{bottom:283.890000px;}
.y88{bottom:284.070000px;}
.y45{bottom:284.250000px;}
.yef{bottom:284.430000px;}
.ycd{bottom:288.405000px;}
.y1f{bottom:294.330000px;}
.yed{bottom:296.310000px;}
.ybc{bottom:306.390000px;}
.y44{bottom:308.190000px;}
.y1e{bottom:318.135000px;}
.y63{bottom:320.295000px;}
.ybb{bottom:330.375000px;}
.ydf{bottom:332.175000px;}
.y90{bottom:332.355000px;}
.y1d{bottom:342.075000px;}
.y87{bottom:344.055000px;}
.y62{bottom:344.235000px;}
.y43{bottom:344.415000px;}
.ycc{bottom:351.435000px;}
.y8f{bottom:355.755000px;}
.yde{bottom:356.115000px;}
.y1c{bottom:366.195000px;}
.yba{bottom:366.555000px;}
.y42{bottom:368.175000px;}
.y86{bottom:380.235000px;}
.ye7{bottom:380.415000px;}
.y1b{bottom:390.135000px;}
.yb9{bottom:390.315000px;}
.y41{bottom:392.115000px;}
.y8e{bottom:392.295000px;}
.ydd{bottom:404.175000px;}
.y61{bottom:404.355000px;}
.y1a{bottom:414.075000px;}
.yb8{bottom:414.255000px;}
.y77{bottom:416.055000px;}
.y40{bottom:416.235000px;}
.y60{bottom:428.115000px;}
.y19{bottom:438.015000px;}
.yb7{bottom:438.375000px;}
.y76{bottom:439.995000px;}
.y3f{bottom:440.175000px;}
.ydc{bottom:452.055000px;}
.y18{bottom:461.955000px;}
.yb6{bottom:462.315000px;}
.y3e{bottom:464.115000px;}
.y5f{bottom:464.295000px;}
.ydb{bottom:475.995000px;}
.yc9{bottom:477.075000px;}
.y17{bottom:486.075000px;}
.y3d{bottom:488.055000px;}
.yb5{bottom:498.495000px;}
.yda{bottom:500.115000px;}
.yec{bottom:500.295000px;}
.y16{bottom:510.015000px;}
.y3c{bottom:511.995000px;}
.yb4{bottom:522.255000px;}
.yd9{bottom:524.055000px;}
.y5e{bottom:524.235000px;}
.y15{bottom:533.955000px;}
.y3b{bottom:536.115000px;}
.yc8{bottom:538.995000px;}
.yb3{bottom:546.195000px;}
.y85{bottom:547.815000px;}
.y5d{bottom:547.995000px;}
.y75{bottom:548.175000px;}
.y14{bottom:557.895000px;}
.y3a{bottom:560.055000px;}
.yd8{bottom:560.235000px;}
.yc7{bottom:562.425000px;}
.yb2{bottom:570.165000px;}
.y74{bottom:571.965000px;}
.y8d{bottom:572.145000px;}
.y13{bottom:581.865000px;}
.y39{bottom:584.025000px;}
.y5c{bottom:584.205000px;}
.yb1{bottom:594.105000px;}
.yc6{bottom:594.465000px;}
.y73{bottom:595.905000px;}
.y8c{bottom:596.085000px;}
.y12{bottom:605.985000px;}
.y38{bottom:607.965000px;}
.yb0{bottom:618.225000px;}
.y72{bottom:620.025000px;}
.y11{bottom:629.925000px;}
.y84{bottom:631.905000px;}
.ye6{bottom:632.085000px;}
.y71{bottom:643.965000px;}
.y37{bottom:644.145000px;}
.y10{bottom:653.865000px;}
.yaf{bottom:654.405000px;}
.yd7{bottom:655.845000px;}
.ye5{bottom:656.025000px;}
.y36{bottom:667.905000px;}
.y83{bottom:668.085000px;}
.yf{bottom:677.805000px;}
.yae{bottom:678.165000px;}
.yd6{bottom:679.965000px;}
.y5b{bottom:680.145000px;}
.y35{bottom:691.845000px;}
.ye{bottom:701.745000px;}
.y5a{bottom:703.905000px;}
.yeb{bottom:704.085000px;}
.yad{bottom:713.985000px;}
.y82{bottom:715.785000px;}
.y34{bottom:715.965000px;}
.yd{bottom:725.865000px;}
.yf3{bottom:727.665000px;}
.y59{bottom:727.845000px;}
.y70{bottom:728.025000px;}
.y81{bottom:739.725000px;}
.y33{bottom:739.905000px;}
.yea{bottom:740.085000px;}
.yc{bottom:749.805000px;}
.y58{bottom:751.785000px;}
.yd5{bottom:751.965000px;}
.y32{bottom:763.845000px;}
.yf2{bottom:764.025000px;}
.ya9{bottom:767.280000px;}
.yb{bottom:773.745000px;}
.y57{bottom:775.725000px;}
.yf4{bottom:775.905000px;}
.y31{bottom:787.785000px;}
.y6f{bottom:787.965000px;}
.y56{bottom:799.845000px;}
.ya{bottom:808.665000px;}
.y30{bottom:811.770000px;}
.y55{bottom:823.830000px;}
.y6e{bottom:824.010000px;}
.y80{bottom:835.710000px;}
.y2f{bottom:835.890000px;}
.y9{bottom:841.650000px;}
.y6d{bottom:847.770000px;}
.y2e{bottom:859.830000px;}
.y54{bottom:860.010000px;}
.ya3{bottom:871.530000px;}
.y6c{bottom:871.710000px;}
.y7f{bottom:871.890000px;}
.y8{bottom:874.590000px;}
.y53{bottom:883.770000px;}
.ye4{bottom:883.950000px;}
.y6b{bottom:895.650000px;}
.y8b{bottom:895.830000px;}
.y2d{bottom:896.010000px;}
.y52{bottom:907.710000px;}
.y7e{bottom:907.890000px;}
.y2c{bottom:919.770000px;}
.ye3{bottom:919.950000px;}
.y7{bottom:924.630000px;}
.y51{bottom:931.650000px;}
.yc5{bottom:931.830000px;}
.y2b{bottom:943.710000px;}
.y7d{bottom:943.890000px;}
.yc4{bottom:955.410000px;}
.y50{bottom:955.770000px;}
.y2a{bottom:967.650000px;}
.ye9{bottom:967.830000px;}
.y6{bottom:968.190000px;}
.yd4{bottom:979.530000px;}
.y4f{bottom:979.710000px;}
.y7c{bottom:979.890000px;}
.y29{bottom:991.590000px;}
.yc3{bottom:991.770000px;}
.y9c{bottom:996.450000px;}
.yf1{bottom:1003.470000px;}
.y4e{bottom:1003.650000px;}
.y6a{bottom:1003.830000px;}
.y28{bottom:1015.710000px;}
.y7b{bottom:1015.890000px;}
.y5{bottom:1018.950000px;}
.y27{bottom:1039.650000px;}
.y4d{bottom:1039.830000px;}
.y4{bottom:1054.950000px;}
.y26{bottom:1063.620000px;}
.y2{bottom:1085.940000px;}
.y1{bottom:1118.700000px;}
.h13{height:41.385000px;}
.hd{height:41.421000px;}
.he{height:50.800781px;}
.h17{height:59.343750px;}
.h14{height:62.085000px;}
.h15{height:62.121000px;}
.h7{height:62.184375px;}
.ha{height:64.546875px;}
.h9{height:65.124096px;}
.h8{height:65.958750px;}
.hb{height:70.664062px;}
.h1{height:71.613281px;}
.h2{height:73.722656px;}
.h16{height:74.004654px;}
.hc{height:74.953125px;}
.h3{height:76.201172px;}
.h6{height:82.676953px;}
.h10{height:82.830000px;}
.hf{height:103.485000px;}
.h12{height:103.521000px;}
.h4{height:112.429688px;}
.h11{height:124.185000px;}
.h5{height:125.171719px;}
.h0{height:1188.000000px;}
.w3{width:98.100000px;}
.w6{width:98.451000px;}
.w1{width:120.951000px;}
.w5{width:145.461000px;}
.w2{width:152.835000px;}
.w4{width:180.390000px;}
.w8{width:309.075000px;}
.w7{width:335.760000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:7.731000px;}
.x2{left:108.036000px;}
.x3{left:127.476000px;}
.x11{left:135.036000px;}
.x1{left:141.156000px;}
.x12{left:162.030000px;}
.x7{left:173.730000px;}
.xf{left:207.945000px;}
.xa{left:230.445000px;}
.x4{left:239.970000px;}
.x8{left:343.155000px;}
.x6{left:372.495000px;}
.xb{left:384.015000px;}
.x5{left:459.075000px;}
.xc{left:482.835000px;}
.x10{left:544.440000px;}
.xd{left:663.960000px;}
.xe{left:742.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.ls0{letter-spacing:3.840000pt;}
.ls10{letter-spacing:30.186667pt;}
.ls6{letter-spacing:127.978667pt;}
.ls8{letter-spacing:153.578667pt;}
.ws2{word-spacing:-56.320000pt;}
.ws0{word-spacing:-49.152000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws4{word-spacing:0.000000pt;}
._3a{margin-left:-8.576000pt;}
._6{margin-left:-6.770987pt;}
._0{margin-left:-5.416960pt;}
._8{margin-left:-4.356693pt;}
._7{margin-left:-3.251200pt;}
._2{margin-left:-1.960107pt;}
._1{margin-left:-1.042773pt;}
._3{width:1.024000pt;}
._5{width:2.447787pt;}
._c{width:3.625387pt;}
._14{width:4.630613pt;}
._d{width:5.632000pt;}
._e{width:6.528000pt;}
._16{width:7.424000pt;}
._15{width:8.400213pt;}
._b{width:9.426773pt;}
._a{width:10.432000pt;}
._9{width:11.584000pt;}
._18{width:12.520107pt;}
._17{width:13.504000pt;}
._19{width:14.898773pt;}
._4{width:16.000000pt;}
._1c{width:16.915200pt;}
._1b{width:17.844907pt;}
._1a{width:19.154773pt;}
._1f{width:21.266773pt;}
._11{width:22.528000pt;}
._f{width:23.616000pt;}
._10{width:24.530773pt;}
._3b{width:25.924693pt;}
._12{width:27.008000pt;}
._13{width:28.114773pt;}
._40{width:29.312000pt;}
._1d{width:30.208000pt;}
._1e{width:31.388587pt;}
._26{width:33.440000pt;}
._34{width:34.400000pt;}
._2c{width:35.776000pt;}
._31{width:40.849067pt;}
._38{width:43.136000pt;}
._33{width:44.661333pt;}
._2e{width:45.824000pt;}
._32{width:46.802773pt;}
._25{width:49.856000pt;}
._36{width:51.712000pt;}
._35{width:52.864000pt;}
._39{width:57.792000pt;}
._28{width:65.856000pt;}
._37{width:73.536000pt;}
._2d{width:81.000107pt;}
._42{width:81.901227pt;}
._41{width:83.410773pt;}
._30{width:86.528000pt;}
._3e{width:87.488000pt;}
._24{width:102.336000pt;}
._3f{width:106.048000pt;}
._21{width:108.265813pt;}
._22{width:112.151040pt;}
._20{width:113.128960pt;}
._3c{width:114.880000pt;}
._3d{width:117.224107pt;}
._2b{width:140.096000pt;}
._23{width:154.176000pt;}
._27{width:159.552000pt;}
._29{width:165.394773pt;}
._2a{width:191.488000pt;}
._2f{width:198.336000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:3.666667pt;}
.ycb{bottom:3.680000pt;}
.y9b{bottom:3.986667pt;}
.ya2{bottom:4.000000pt;}
.y92{bottom:22.066667pt;}
.yca{bottom:22.080000pt;}
.ycf{bottom:22.106667pt;}
.y9a{bottom:22.386667pt;}
.ya1{bottom:22.400000pt;}
.yd0{bottom:22.426667pt;}
.yd2{bottom:40.466667pt;}
.y9e{bottom:40.480000pt;}
.yce{bottom:40.506667pt;}
.y99{bottom:40.786667pt;}
.ya0{bottom:40.800000pt;}
.yac{bottom:40.826667pt;}
.y3{bottom:52.352000pt;}
.y96{bottom:58.866667pt;}
.y9d{bottom:58.906667pt;}
.y98{bottom:59.186667pt;}
.ya8{bottom:59.200000pt;}
.y9f{bottom:59.226667pt;}
.y95{bottom:77.266667pt;}
.ya5{bottom:77.280000pt;}
.yaa{bottom:77.306667pt;}
.y97{bottom:77.586667pt;}
.ya7{bottom:77.600000pt;}
.yab{bottom:77.626667pt;}
.ya4{bottom:95.680000pt;}
.ya6{bottom:96.000000pt;}
.y25{bottom:101.632000pt;}
.yee{bottom:103.392000pt;}
.y4c{bottom:103.552000pt;}
.yc2{bottom:112.512000pt;}
.ye2{bottom:114.112000pt;}
.y24{bottom:122.912000pt;}
.y8a{bottom:124.672000pt;}
.y4b{bottom:124.832000pt;}
.yc1{bottom:133.786667pt;}
.y69{bottom:135.386667pt;}
.y7a{bottom:135.546667pt;}
.y23{bottom:144.186667pt;}
.yd3{bottom:144.680000pt;}
.y89{bottom:145.946667pt;}
.y4a{bottom:146.106667pt;}
.ye8{bottom:146.266667pt;}
.y94{bottom:147.720000pt;}
.y68{bottom:156.666667pt;}
.yf6{bottom:156.826667pt;}
.yc0{bottom:165.946667pt;}
.y49{bottom:167.386667pt;}
.y79{bottom:167.546667pt;}
.y22{bottom:176.026667pt;}
.y67{bottom:177.946667pt;}
.yf0{bottom:178.106667pt;}
.ybf{bottom:187.066667pt;}
.y48{bottom:188.666667pt;}
.y66{bottom:199.226667pt;}
.ye1{bottom:199.386667pt;}
.yd1{bottom:200.520000pt;}
.y21{bottom:208.346667pt;}
.y47{bottom:209.946667pt;}
.y65{bottom:220.666667pt;}
.y20{bottom:229.466667pt;}
.ybe{bottom:229.786667pt;}
.y78{bottom:231.226667pt;}
.y46{bottom:231.386667pt;}
.ye0{bottom:231.546667pt;}
.y91{bottom:240.360000pt;}
.yf5{bottom:241.946667pt;}
.ybd{bottom:251.066667pt;}
.y64{bottom:252.346667pt;}
.y88{bottom:252.506667pt;}
.y45{bottom:252.666667pt;}
.yef{bottom:252.826667pt;}
.ycd{bottom:256.360000pt;}
.y1f{bottom:261.626667pt;}
.yed{bottom:263.386667pt;}
.ybc{bottom:272.346667pt;}
.y44{bottom:273.946667pt;}
.y1e{bottom:282.786667pt;}
.y63{bottom:284.706667pt;}
.ybb{bottom:293.666667pt;}
.ydf{bottom:295.266667pt;}
.y90{bottom:295.426667pt;}
.y1d{bottom:304.066667pt;}
.y87{bottom:305.826667pt;}
.y62{bottom:305.986667pt;}
.y43{bottom:306.146667pt;}
.ycc{bottom:312.386667pt;}
.y8f{bottom:316.226667pt;}
.yde{bottom:316.546667pt;}
.y1c{bottom:325.506667pt;}
.yba{bottom:325.826667pt;}
.y42{bottom:327.266667pt;}
.y86{bottom:337.986667pt;}
.ye7{bottom:338.146667pt;}
.y1b{bottom:346.786667pt;}
.yb9{bottom:346.946667pt;}
.y41{bottom:348.546667pt;}
.y8e{bottom:348.706667pt;}
.ydd{bottom:359.266667pt;}
.y61{bottom:359.426667pt;}
.y1a{bottom:368.066667pt;}
.yb8{bottom:368.226667pt;}
.y77{bottom:369.826667pt;}
.y40{bottom:369.986667pt;}
.y60{bottom:380.546667pt;}
.y19{bottom:389.346667pt;}
.yb7{bottom:389.666667pt;}
.y76{bottom:391.106667pt;}
.y3f{bottom:391.266667pt;}
.ydc{bottom:401.826667pt;}
.y18{bottom:410.626667pt;}
.yb6{bottom:410.946667pt;}
.y3e{bottom:412.546667pt;}
.y5f{bottom:412.706667pt;}
.ydb{bottom:423.106667pt;}
.yc9{bottom:424.066667pt;}
.y17{bottom:432.066667pt;}
.y3d{bottom:433.826667pt;}
.yb5{bottom:443.106667pt;}
.yda{bottom:444.546667pt;}
.yec{bottom:444.706667pt;}
.y16{bottom:453.346667pt;}
.y3c{bottom:455.106667pt;}
.yb4{bottom:464.226667pt;}
.yd9{bottom:465.826667pt;}
.y5e{bottom:465.986667pt;}
.y15{bottom:474.626667pt;}
.y3b{bottom:476.546667pt;}
.yc8{bottom:479.106667pt;}
.yb3{bottom:485.506667pt;}
.y85{bottom:486.946667pt;}
.y5d{bottom:487.106667pt;}
.y75{bottom:487.266667pt;}
.y14{bottom:495.906667pt;}
.y3a{bottom:497.826667pt;}
.yd8{bottom:497.986667pt;}
.yc7{bottom:499.933333pt;}
.yb2{bottom:506.813333pt;}
.y74{bottom:508.413333pt;}
.y8d{bottom:508.573333pt;}
.y13{bottom:517.213333pt;}
.y39{bottom:519.133333pt;}
.y5c{bottom:519.293333pt;}
.yb1{bottom:528.093333pt;}
.yc6{bottom:528.413333pt;}
.y73{bottom:529.693333pt;}
.y8c{bottom:529.853333pt;}
.y12{bottom:538.653333pt;}
.y38{bottom:540.413333pt;}
.yb0{bottom:549.533333pt;}
.y72{bottom:551.133333pt;}
.y11{bottom:559.933333pt;}
.y84{bottom:561.693333pt;}
.ye6{bottom:561.853333pt;}
.y71{bottom:572.413333pt;}
.y37{bottom:572.573333pt;}
.y10{bottom:581.213333pt;}
.yaf{bottom:581.693333pt;}
.yd7{bottom:582.973333pt;}
.ye5{bottom:583.133333pt;}
.y36{bottom:593.693333pt;}
.y83{bottom:593.853333pt;}
.yf{bottom:602.493333pt;}
.yae{bottom:602.813333pt;}
.yd6{bottom:604.413333pt;}
.y5b{bottom:604.573333pt;}
.y35{bottom:614.973333pt;}
.ye{bottom:623.773333pt;}
.y5a{bottom:625.693333pt;}
.yeb{bottom:625.853333pt;}
.yad{bottom:634.653333pt;}
.y82{bottom:636.253333pt;}
.y34{bottom:636.413333pt;}
.yd{bottom:645.213333pt;}
.yf3{bottom:646.813333pt;}
.y59{bottom:646.973333pt;}
.y70{bottom:647.133333pt;}
.y81{bottom:657.533333pt;}
.y33{bottom:657.693333pt;}
.yea{bottom:657.853333pt;}
.yc{bottom:666.493333pt;}
.y58{bottom:668.253333pt;}
.yd5{bottom:668.413333pt;}
.y32{bottom:678.973333pt;}
.yf2{bottom:679.133333pt;}
.ya9{bottom:682.026667pt;}
.yb{bottom:687.773333pt;}
.y57{bottom:689.533333pt;}
.yf4{bottom:689.693333pt;}
.y31{bottom:700.253333pt;}
.y6f{bottom:700.413333pt;}
.y56{bottom:710.973333pt;}
.ya{bottom:718.813333pt;}
.y30{bottom:721.573333pt;}
.y55{bottom:732.293333pt;}
.y6e{bottom:732.453333pt;}
.y80{bottom:742.853333pt;}
.y2f{bottom:743.013333pt;}
.y9{bottom:748.133333pt;}
.y6d{bottom:753.573333pt;}
.y2e{bottom:764.293333pt;}
.y54{bottom:764.453333pt;}
.ya3{bottom:774.693333pt;}
.y6c{bottom:774.853333pt;}
.y7f{bottom:775.013333pt;}
.y8{bottom:777.413333pt;}
.y53{bottom:785.573333pt;}
.ye4{bottom:785.733333pt;}
.y6b{bottom:796.133333pt;}
.y8b{bottom:796.293333pt;}
.y2d{bottom:796.453333pt;}
.y52{bottom:806.853333pt;}
.y7e{bottom:807.013333pt;}
.y2c{bottom:817.573333pt;}
.ye3{bottom:817.733333pt;}
.y7{bottom:821.893333pt;}
.y51{bottom:828.133333pt;}
.yc5{bottom:828.293333pt;}
.y2b{bottom:838.853333pt;}
.y7d{bottom:839.013333pt;}
.yc4{bottom:849.253333pt;}
.y50{bottom:849.573333pt;}
.y2a{bottom:860.133333pt;}
.ye9{bottom:860.293333pt;}
.y6{bottom:860.613333pt;}
.yd4{bottom:870.693333pt;}
.y4f{bottom:870.853333pt;}
.y7c{bottom:871.013333pt;}
.y29{bottom:881.413333pt;}
.yc3{bottom:881.573333pt;}
.y9c{bottom:885.733333pt;}
.yf1{bottom:891.973333pt;}
.y4e{bottom:892.133333pt;}
.y6a{bottom:892.293333pt;}
.y28{bottom:902.853333pt;}
.y7b{bottom:903.013333pt;}
.y5{bottom:905.733333pt;}
.y27{bottom:924.133333pt;}
.y4d{bottom:924.293333pt;}
.y4{bottom:937.733333pt;}
.y26{bottom:945.440000pt;}
.y2{bottom:965.280000pt;}
.y1{bottom:994.400000pt;}
.h13{height:36.786667pt;}
.hd{height:36.818667pt;}
.he{height:45.156250pt;}
.h17{height:52.750000pt;}
.h14{height:55.186667pt;}
.h15{height:55.218667pt;}
.h7{height:55.275000pt;}
.ha{height:57.375000pt;}
.h9{height:57.888085pt;}
.h8{height:58.630000pt;}
.hb{height:62.812500pt;}
.h1{height:63.656250pt;}
.h2{height:65.531250pt;}
.h16{height:65.781915pt;}
.hc{height:66.625000pt;}
.h3{height:67.734375pt;}
.h6{height:73.490625pt;}
.h10{height:73.626667pt;}
.hf{height:91.986667pt;}
.h12{height:92.018667pt;}
.h4{height:99.937500pt;}
.h11{height:110.386667pt;}
.h5{height:111.263750pt;}
.h0{height:1056.000000pt;}
.w3{width:87.200000pt;}
.w6{width:87.512000pt;}
.w1{width:107.512000pt;}
.w5{width:129.298667pt;}
.w2{width:135.853333pt;}
.w4{width:160.346667pt;}
.w8{width:274.733333pt;}
.w7{width:298.453333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.872000pt;}
.x2{left:96.032000pt;}
.x3{left:113.312000pt;}
.x11{left:120.032000pt;}
.x1{left:125.472000pt;}
.x12{left:144.026667pt;}
.x7{left:154.426667pt;}
.xf{left:184.840000pt;}
.xa{left:204.840000pt;}
.x4{left:213.306667pt;}
.x8{left:305.026667pt;}
.x6{left:331.106667pt;}
.xb{left:341.346667pt;}
.x5{left:408.066667pt;}
.xc{left:429.186667pt;}
.x10{left:483.946667pt;}
.xd{left:590.186667pt;}
.xe{left:660.293333pt;}
}




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