
    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_f67dcb04f7ca1cf2201ce42e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_af06cfcebb30fc04f26c42e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_eab9bd39184ff752aaea01ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_d72d8acbcef61efc149579a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_8e84fb140ec3aead96f745c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912500;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_e063281e8c9cda5b161989ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_537f8a1f54cfc0e335f51df7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913000;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_7a2e66021d3ac05a25fcf8b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.820801;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_9dc6cf2b0a7366dcf625df3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_532948bcf78d97e777e02a7d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.051758;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:23.976000px;}
.ls3{letter-spacing:-21.168000px;}
.ls5{letter-spacing:-10.051200px;}
.ls6{letter-spacing:-7.876800px;}
.ls7{letter-spacing:-1.294260px;}
.ls8{letter-spacing:-1.164834px;}
.ls2{letter-spacing:-0.960000px;}
.ls4{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.014400px;}
.ls15{letter-spacing:0.125928px;}
.lsf{letter-spacing:0.210600px;}
.ls9{letter-spacing:0.216000px;}
.ls1{letter-spacing:1.320000px;}
.lsd{letter-spacing:2.052000px;}
.lse{letter-spacing:2.106000px;}
.ls10{letter-spacing:2.111400px;}
.ls11{letter-spacing:2.116800px;}
.ls12{letter-spacing:4.050000px;}
.ls13{letter-spacing:4.104000px;}
.ls14{letter-spacing:4.109400px;}
.lsb{letter-spacing:6.588000px;}
.lsa{letter-spacing:6.642000px;}
.lsc{letter-spacing:6.696000px;}
.ls17{letter-spacing:40.500000px;}
.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;}
}
.ws0{word-spacing:-121.320000px;}
.ws1{word-spacing:-120.000000px;}
.ws2{word-spacing:-119.040000px;}
.ws7{word-spacing:-72.000000px;}
.ws9{word-spacing:-71.928000px;}
.ws16{word-spacing:-60.642000px;}
.ws12{word-spacing:-60.048000px;}
.ws11{word-spacing:-60.000000px;}
.wsd{word-spacing:-59.688000px;}
.ws13{word-spacing:-59.472000px;}
.wsf{word-spacing:-57.744000px;}
.wsb{word-spacing:-57.312000px;}
.ws18{word-spacing:-56.106000px;}
.ws17{word-spacing:-54.216000px;}
.ws19{word-spacing:-54.210600px;}
.ws5{word-spacing:-54.000000px;}
.wsc{word-spacing:-18.000000px;}
.ws15{word-spacing:-13.716000px;}
.wsa{word-spacing:-13.500000px;}
.ws8{word-spacing:-10.494000px;}
.ws3{word-spacing:-8.745000px;}
.ws14{word-spacing:-7.996428px;}
.ws4{word-spacing:-7.870500px;}
.wse{word-spacing:-7.450740px;}
.ws10{word-spacing:-6.705666px;}
.ws1a{word-spacing:-0.158400px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-18.489600px;}
._9{margin-left:-9.000000px;}
._17{margin-left:-7.652400px;}
._2{margin-left:-6.278400px;}
._1{margin-left:-5.263200px;}
._8{margin-left:-4.060800px;}
._3{margin-left:-2.606400px;}
._0{margin-left:-1.008000px;}
._4{width:1.101600px;}
._5{width:2.548800px;}
._7{width:3.812400px;}
._a{width:5.274000px;}
._e{width:6.915600px;}
._10{width:7.920000px;}
._d{width:9.072000px;}
._b{width:10.944000px;}
._c{width:12.096000px;}
._f{width:13.464000px;}
._13{width:14.558400px;}
._14{width:16.272000px;}
._16{width:19.008000px;}
._15{width:21.096000px;}
._18{width:22.514400px;}
._11{width:37.530000px;}
._6{width:40.500000px;}
.fc1{color:rgb(128,130,133);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:31.482000px;}
.fs3{font-size:34.980000px;}
.fs8{font-size:41.976000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:127.558950px;}
.yb{bottom:127.559100px;}
.ybf{bottom:127.559250px;}
.y6a{bottom:132.054600px;}
.y9e{bottom:143.758950px;}
.ya{bottom:143.759100px;}
.y3d{bottom:148.254450px;}
.y69{bottom:148.254600px;}
.ybe{bottom:148.254750px;}
.y3c{bottom:159.958950px;}
.y68{bottom:159.959100px;}
.ybd{bottom:159.959400px;}
.y9d{bottom:164.454450px;}
.y9{bottom:164.454600px;}
.y9c{bottom:176.158950px;}
.y67{bottom:176.159100px;}
.ybc{bottom:176.159400px;}
.y3b{bottom:180.654450px;}
.y3a{bottom:192.358950px;}
.yf2{bottom:192.359100px;}
.y9b{bottom:196.854450px;}
.y66{bottom:196.854600px;}
.ybb{bottom:196.854900px;}
.y7d{bottom:200.023500px;}
.y39{bottom:208.558950px;}
.y65{bottom:208.559100px;}
.yf1{bottom:213.054600px;}
.ye9{bottom:213.054750px;}
.yba{bottom:213.055050px;}
.y7c{bottom:222.523500px;}
.y38{bottom:224.758950px;}
.y64{bottom:224.759100px;}
.ye8{bottom:224.759400px;}
.y9a{bottom:229.254450px;}
.yf0{bottom:229.254600px;}
.yb9{bottom:229.255200px;}
.y8{bottom:239.583000px;}
.ye7{bottom:240.959400px;}
.y7b{bottom:245.023500px;}
.y37{bottom:245.454450px;}
.yef{bottom:245.454600px;}
.yb8{bottom:245.455350px;}
.yee{bottom:257.159100px;}
.ye6{bottom:257.159400px;}
.y7{bottom:262.083000px;}
.y7a{bottom:267.523500px;}
.yed{bottom:273.359100px;}
.ye5{bottom:273.359400px;}
.ye4{bottom:289.559400px;}
.y79{bottom:290.023500px;}
.y63{bottom:291.535350px;}
.yf7{bottom:293.779350px;}
.yec{bottom:294.054600px;}
.yeb{bottom:305.759100px;}
.ye3{bottom:305.759400px;}
.y99{bottom:306.523350px;}
.y6{bottom:307.083000px;}
.y78{bottom:312.523500px;}
.yf6{bottom:313.279350px;}
.y36{bottom:314.035200px;}
.y62{bottom:314.035350px;}
.yea{bottom:326.454600px;}
.ye2{bottom:326.454900px;}
.y5{bottom:326.583000px;}
.y98{bottom:329.023350px;}
.yf5{bottom:332.779350px;}
.y77{bottom:335.023500px;}
.y35{bottom:336.535200px;}
.y61{bottom:336.535350px;}
.yb7{bottom:341.271450px;}
.ye1{bottom:342.655050px;}
.y4{bottom:346.083000px;}
.y97{bottom:351.523350px;}
.yf4{bottom:352.279350px;}
.y76{bottom:357.523500px;}
.y34{bottom:359.035200px;}
.y60{bottom:359.035350px;}
.yb6{bottom:363.771450px;}
.yf3{bottom:371.779350px;}
.y96{bottom:374.023350px;}
.y3{bottom:374.086950px;}
.y75{bottom:380.023500px;}
.y33{bottom:381.535200px;}
.y5f{bottom:381.535350px;}
.yb5{bottom:386.271450px;}
.y95{bottom:396.523350px;}
.y74{bottom:402.523500px;}
.y32{bottom:404.035200px;}
.y5e{bottom:404.035350px;}
.yb4{bottom:408.771450px;}
.ye0{bottom:412.859400px;}
.y94{bottom:419.023350px;}
.y73{bottom:425.023500px;}
.y31{bottom:426.535200px;}
.y5d{bottom:426.535350px;}
.yb3{bottom:431.271450px;}
.ydf{bottom:435.359400px;}
.y93{bottom:441.523350px;}
.y30{bottom:449.035200px;}
.y5c{bottom:449.035350px;}
.yb2{bottom:453.771450px;}
.yde{bottom:457.859400px;}
.y72{bottom:460.279350px;}
.y92{bottom:464.023350px;}
.y2f{bottom:471.535200px;}
.y5b{bottom:471.535350px;}
.yb1{bottom:476.271450px;}
.y71{bottom:479.779350px;}
.ydd{bottom:480.359400px;}
.y91{bottom:486.523350px;}
.y2e{bottom:494.035200px;}
.y5a{bottom:494.035350px;}
.yb0{bottom:498.771450px;}
.y70{bottom:499.279350px;}
.ydc{bottom:502.859400px;}
.y90{bottom:509.023350px;}
.y2d{bottom:516.535200px;}
.y59{bottom:516.535350px;}
.y6f{bottom:518.779350px;}
.yaf{bottom:521.271450px;}
.ydb{bottom:525.359400px;}
.y8f{bottom:531.523350px;}
.y6e{bottom:538.279350px;}
.y2c{bottom:539.035200px;}
.y58{bottom:539.035350px;}
.yae{bottom:543.771450px;}
.yda{bottom:547.859400px;}
.y8e{bottom:554.023350px;}
.y6d{bottom:557.779350px;}
.y2b{bottom:561.535200px;}
.y57{bottom:561.535350px;}
.yad{bottom:566.271450px;}
.yd9{bottom:570.359400px;}
.y8d{bottom:576.523350px;}
.y6c{bottom:577.279350px;}
.y2a{bottom:584.035200px;}
.y56{bottom:584.035350px;}
.yac{bottom:588.771450px;}
.yd8{bottom:592.859400px;}
.y6b{bottom:596.779350px;}
.y8c{bottom:599.023350px;}
.y29{bottom:606.535200px;}
.y55{bottom:606.535350px;}
.yab{bottom:611.271450px;}
.yd7{bottom:615.359400px;}
.y8b{bottom:621.523350px;}
.y28{bottom:629.035200px;}
.y54{bottom:629.035350px;}
.yaa{bottom:633.771450px;}
.yd6{bottom:637.859400px;}
.y8a{bottom:644.023350px;}
.y27{bottom:651.535200px;}
.y53{bottom:651.535350px;}
.ya9{bottom:656.271450px;}
.yd5{bottom:660.359400px;}
.y89{bottom:666.523350px;}
.y26{bottom:674.035200px;}
.y52{bottom:674.035350px;}
.ya8{bottom:678.771450px;}
.yd4{bottom:682.859400px;}
.y88{bottom:689.023350px;}
.y25{bottom:696.535200px;}
.y51{bottom:696.535350px;}
.ya7{bottom:701.271450px;}
.yd3{bottom:705.359400px;}
.y87{bottom:711.523350px;}
.y24{bottom:719.035200px;}
.y50{bottom:719.035350px;}
.ya6{bottom:723.771450px;}
.yd2{bottom:727.859400px;}
.y86{bottom:734.023350px;}
.y23{bottom:741.535200px;}
.y4f{bottom:741.535350px;}
.ya5{bottom:746.271450px;}
.yd1{bottom:750.359400px;}
.y85{bottom:756.523350px;}
.y22{bottom:764.035200px;}
.y4e{bottom:764.035350px;}
.ya4{bottom:768.771450px;}
.yd0{bottom:772.859400px;}
.y84{bottom:779.023350px;}
.y21{bottom:786.535200px;}
.y4d{bottom:786.535350px;}
.ycf{bottom:795.359400px;}
.y20{bottom:809.035200px;}
.y4c{bottom:809.035350px;}
.ya3{bottom:813.771450px;}
.y83{bottom:814.279350px;}
.yce{bottom:830.615250px;}
.y1f{bottom:831.535200px;}
.y4b{bottom:831.535350px;}
.ya2{bottom:833.271450px;}
.y82{bottom:833.779350px;}
.ycd{bottom:850.115250px;}
.ya1{bottom:852.771450px;}
.y81{bottom:853.279350px;}
.y1e{bottom:854.035200px;}
.y4a{bottom:854.035350px;}
.ycc{bottom:869.615250px;}
.ya0{bottom:872.271450px;}
.y80{bottom:872.779350px;}
.y1d{bottom:876.535200px;}
.y49{bottom:876.535350px;}
.ycb{bottom:889.115250px;}
.y7f{bottom:892.279350px;}
.y1c{bottom:899.035200px;}
.y48{bottom:899.035350px;}
.y9f{bottom:900.277350px;}
.y2{bottom:903.102600px;}
.yca{bottom:908.615250px;}
.y7e{bottom:911.779350px;}
.y1b{bottom:921.535200px;}
.y47{bottom:921.535350px;}
.yc9{bottom:928.115250px;}
.y1a{bottom:944.035200px;}
.y46{bottom:944.035350px;}
.yc8{bottom:947.615250px;}
.y19{bottom:966.535200px;}
.y45{bottom:966.535350px;}
.yc7{bottom:967.115250px;}
.yc6{bottom:986.615250px;}
.y18{bottom:989.035200px;}
.y44{bottom:989.035350px;}
.yc5{bottom:1006.115250px;}
.yfd{bottom:1006.115400px;}
.y17{bottom:1011.535200px;}
.y43{bottom:1011.535350px;}
.y1{bottom:1018.614600px;}
.yc4{bottom:1025.615250px;}
.yfc{bottom:1025.615400px;}
.y16{bottom:1034.035200px;}
.y42{bottom:1034.035350px;}
.yc3{bottom:1045.115250px;}
.yfb{bottom:1045.115400px;}
.y15{bottom:1056.535200px;}
.y41{bottom:1056.535350px;}
.yc2{bottom:1064.615250px;}
.yfa{bottom:1064.615400px;}
.y14{bottom:1079.035200px;}
.y40{bottom:1079.035350px;}
.yc1{bottom:1084.115250px;}
.yf9{bottom:1084.115400px;}
.y11{bottom:1096.552350px;}
.y13{bottom:1101.535200px;}
.y3f{bottom:1101.535350px;}
.yc0{bottom:1103.615250px;}
.yf8{bottom:1103.615400px;}
.y10{bottom:1116.352350px;}
.yf{bottom:1136.152350px;}
.ye{bottom:1155.952350px;}
.y12{bottom:1166.275950px;}
.yd{bottom:1175.752350px;}
.yc{bottom:1195.552350px;}
.hb{height:29.399836px;}
.h7{height:29.531672px;}
.h8{height:47.381836px;}
.hc{height:47.513672px;}
.h9{height:48.015000px;}
.h4{height:49.289062px;}
.h5{height:52.646484px;}
.h6{height:63.175781px;}
.hd{height:63.351562px;}
.h2{height:69.984000px;}
.ha{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.559100px;}
.xe{left:148.818900px;}
.x2{left:174.616500px;}
.xd{left:217.098450px;}
.x1{left:380.856450px;}
.x10{left:382.916250px;}
.xf{left:426.311250px;}
.x5{left:446.265900px;}
.x7{left:485.675850px;}
.x4{left:512.055900px;}
.xa{left:539.597850px;}
.x6{left:553.530900px;}
.x8{left:611.455350px;}
.xb{left:628.417350px;}
.xc{left:641.551350px;}
.x9{left:698.047350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:21.312000pt;}
.ls3{letter-spacing:-18.816000pt;}
.ls5{letter-spacing:-8.934400pt;}
.ls6{letter-spacing:-7.001600pt;}
.ls7{letter-spacing:-1.150453pt;}
.ls8{letter-spacing:-1.035408pt;}
.ls2{letter-spacing:-0.853333pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.012800pt;}
.ls15{letter-spacing:0.111936pt;}
.lsf{letter-spacing:0.187200pt;}
.ls9{letter-spacing:0.192000pt;}
.ls1{letter-spacing:1.173333pt;}
.lsd{letter-spacing:1.824000pt;}
.lse{letter-spacing:1.872000pt;}
.ls10{letter-spacing:1.876800pt;}
.ls11{letter-spacing:1.881600pt;}
.ls12{letter-spacing:3.600000pt;}
.ls13{letter-spacing:3.648000pt;}
.ls14{letter-spacing:3.652800pt;}
.lsb{letter-spacing:5.856000pt;}
.lsa{letter-spacing:5.904000pt;}
.lsc{letter-spacing:5.952000pt;}
.ls17{letter-spacing:36.000000pt;}
.ws0{word-spacing:-107.840000pt;}
.ws1{word-spacing:-106.666667pt;}
.ws2{word-spacing:-105.813333pt;}
.ws7{word-spacing:-64.000000pt;}
.ws9{word-spacing:-63.936000pt;}
.ws16{word-spacing:-53.904000pt;}
.ws12{word-spacing:-53.376000pt;}
.ws11{word-spacing:-53.333333pt;}
.wsd{word-spacing:-53.056000pt;}
.ws13{word-spacing:-52.864000pt;}
.wsf{word-spacing:-51.328000pt;}
.wsb{word-spacing:-50.944000pt;}
.ws18{word-spacing:-49.872000pt;}
.ws17{word-spacing:-48.192000pt;}
.ws19{word-spacing:-48.187200pt;}
.ws5{word-spacing:-48.000000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws15{word-spacing:-12.192000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws8{word-spacing:-9.328000pt;}
.ws3{word-spacing:-7.773333pt;}
.ws14{word-spacing:-7.107936pt;}
.ws4{word-spacing:-6.996000pt;}
.wse{word-spacing:-6.622880pt;}
.ws10{word-spacing:-5.960592pt;}
.ws1a{word-spacing:-0.140800pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-16.435200pt;}
._9{margin-left:-8.000000pt;}
._17{margin-left:-6.802133pt;}
._2{margin-left:-5.580800pt;}
._1{margin-left:-4.678400pt;}
._8{margin-left:-3.609600pt;}
._3{margin-left:-2.316800pt;}
._0{margin-left:-0.896000pt;}
._4{width:0.979200pt;}
._5{width:2.265600pt;}
._7{width:3.388800pt;}
._a{width:4.688000pt;}
._e{width:6.147200pt;}
._10{width:7.040000pt;}
._d{width:8.064000pt;}
._b{width:9.728000pt;}
._c{width:10.752000pt;}
._f{width:11.968000pt;}
._13{width:12.940800pt;}
._14{width:14.464000pt;}
._16{width:16.896000pt;}
._15{width:18.752000pt;}
._18{width:20.012800pt;}
._11{width:33.360000pt;}
._6{width:36.000000pt;}
.fs4{font-size:27.984000pt;}
.fs3{font-size:31.093333pt;}
.fs8{font-size:37.312000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:113.385733pt;}
.yb{bottom:113.385867pt;}
.ybf{bottom:113.386000pt;}
.y6a{bottom:117.381867pt;}
.y9e{bottom:127.785733pt;}
.ya{bottom:127.785867pt;}
.y3d{bottom:131.781733pt;}
.y69{bottom:131.781867pt;}
.ybe{bottom:131.782000pt;}
.y3c{bottom:142.185733pt;}
.y68{bottom:142.185867pt;}
.ybd{bottom:142.186133pt;}
.y9d{bottom:146.181733pt;}
.y9{bottom:146.181867pt;}
.y9c{bottom:156.585733pt;}
.y67{bottom:156.585867pt;}
.ybc{bottom:156.586133pt;}
.y3b{bottom:160.581733pt;}
.y3a{bottom:170.985733pt;}
.yf2{bottom:170.985867pt;}
.y9b{bottom:174.981733pt;}
.y66{bottom:174.981867pt;}
.ybb{bottom:174.982133pt;}
.y7d{bottom:177.798667pt;}
.y39{bottom:185.385733pt;}
.y65{bottom:185.385867pt;}
.yf1{bottom:189.381867pt;}
.ye9{bottom:189.382000pt;}
.yba{bottom:189.382267pt;}
.y7c{bottom:197.798667pt;}
.y38{bottom:199.785733pt;}
.y64{bottom:199.785867pt;}
.ye8{bottom:199.786133pt;}
.y9a{bottom:203.781733pt;}
.yf0{bottom:203.781867pt;}
.yb9{bottom:203.782400pt;}
.y8{bottom:212.962667pt;}
.ye7{bottom:214.186133pt;}
.y7b{bottom:217.798667pt;}
.y37{bottom:218.181733pt;}
.yef{bottom:218.181867pt;}
.yb8{bottom:218.182533pt;}
.yee{bottom:228.585867pt;}
.ye6{bottom:228.586133pt;}
.y7{bottom:232.962667pt;}
.y7a{bottom:237.798667pt;}
.yed{bottom:242.985867pt;}
.ye5{bottom:242.986133pt;}
.ye4{bottom:257.386133pt;}
.y79{bottom:257.798667pt;}
.y63{bottom:259.142533pt;}
.yf7{bottom:261.137200pt;}
.yec{bottom:261.381867pt;}
.yeb{bottom:271.785867pt;}
.ye3{bottom:271.786133pt;}
.y99{bottom:272.465200pt;}
.y6{bottom:272.962667pt;}
.y78{bottom:277.798667pt;}
.yf6{bottom:278.470533pt;}
.y36{bottom:279.142400pt;}
.y62{bottom:279.142533pt;}
.yea{bottom:290.181867pt;}
.ye2{bottom:290.182133pt;}
.y5{bottom:290.296000pt;}
.y98{bottom:292.465200pt;}
.yf5{bottom:295.803867pt;}
.y77{bottom:297.798667pt;}
.y35{bottom:299.142400pt;}
.y61{bottom:299.142533pt;}
.yb7{bottom:303.352400pt;}
.ye1{bottom:304.582267pt;}
.y4{bottom:307.629333pt;}
.y97{bottom:312.465200pt;}
.yf4{bottom:313.137200pt;}
.y76{bottom:317.798667pt;}
.y34{bottom:319.142400pt;}
.y60{bottom:319.142533pt;}
.yb6{bottom:323.352400pt;}
.yf3{bottom:330.470533pt;}
.y96{bottom:332.465200pt;}
.y3{bottom:332.521733pt;}
.y75{bottom:337.798667pt;}
.y33{bottom:339.142400pt;}
.y5f{bottom:339.142533pt;}
.yb5{bottom:343.352400pt;}
.y95{bottom:352.465200pt;}
.y74{bottom:357.798667pt;}
.y32{bottom:359.142400pt;}
.y5e{bottom:359.142533pt;}
.yb4{bottom:363.352400pt;}
.ye0{bottom:366.986133pt;}
.y94{bottom:372.465200pt;}
.y73{bottom:377.798667pt;}
.y31{bottom:379.142400pt;}
.y5d{bottom:379.142533pt;}
.yb3{bottom:383.352400pt;}
.ydf{bottom:386.986133pt;}
.y93{bottom:392.465200pt;}
.y30{bottom:399.142400pt;}
.y5c{bottom:399.142533pt;}
.yb2{bottom:403.352400pt;}
.yde{bottom:406.986133pt;}
.y72{bottom:409.137200pt;}
.y92{bottom:412.465200pt;}
.y2f{bottom:419.142400pt;}
.y5b{bottom:419.142533pt;}
.yb1{bottom:423.352400pt;}
.y71{bottom:426.470533pt;}
.ydd{bottom:426.986133pt;}
.y91{bottom:432.465200pt;}
.y2e{bottom:439.142400pt;}
.y5a{bottom:439.142533pt;}
.yb0{bottom:443.352400pt;}
.y70{bottom:443.803867pt;}
.ydc{bottom:446.986133pt;}
.y90{bottom:452.465200pt;}
.y2d{bottom:459.142400pt;}
.y59{bottom:459.142533pt;}
.y6f{bottom:461.137200pt;}
.yaf{bottom:463.352400pt;}
.ydb{bottom:466.986133pt;}
.y8f{bottom:472.465200pt;}
.y6e{bottom:478.470533pt;}
.y2c{bottom:479.142400pt;}
.y58{bottom:479.142533pt;}
.yae{bottom:483.352400pt;}
.yda{bottom:486.986133pt;}
.y8e{bottom:492.465200pt;}
.y6d{bottom:495.803867pt;}
.y2b{bottom:499.142400pt;}
.y57{bottom:499.142533pt;}
.yad{bottom:503.352400pt;}
.yd9{bottom:506.986133pt;}
.y8d{bottom:512.465200pt;}
.y6c{bottom:513.137200pt;}
.y2a{bottom:519.142400pt;}
.y56{bottom:519.142533pt;}
.yac{bottom:523.352400pt;}
.yd8{bottom:526.986133pt;}
.y6b{bottom:530.470533pt;}
.y8c{bottom:532.465200pt;}
.y29{bottom:539.142400pt;}
.y55{bottom:539.142533pt;}
.yab{bottom:543.352400pt;}
.yd7{bottom:546.986133pt;}
.y8b{bottom:552.465200pt;}
.y28{bottom:559.142400pt;}
.y54{bottom:559.142533pt;}
.yaa{bottom:563.352400pt;}
.yd6{bottom:566.986133pt;}
.y8a{bottom:572.465200pt;}
.y27{bottom:579.142400pt;}
.y53{bottom:579.142533pt;}
.ya9{bottom:583.352400pt;}
.yd5{bottom:586.986133pt;}
.y89{bottom:592.465200pt;}
.y26{bottom:599.142400pt;}
.y52{bottom:599.142533pt;}
.ya8{bottom:603.352400pt;}
.yd4{bottom:606.986133pt;}
.y88{bottom:612.465200pt;}
.y25{bottom:619.142400pt;}
.y51{bottom:619.142533pt;}
.ya7{bottom:623.352400pt;}
.yd3{bottom:626.986133pt;}
.y87{bottom:632.465200pt;}
.y24{bottom:639.142400pt;}
.y50{bottom:639.142533pt;}
.ya6{bottom:643.352400pt;}
.yd2{bottom:646.986133pt;}
.y86{bottom:652.465200pt;}
.y23{bottom:659.142400pt;}
.y4f{bottom:659.142533pt;}
.ya5{bottom:663.352400pt;}
.yd1{bottom:666.986133pt;}
.y85{bottom:672.465200pt;}
.y22{bottom:679.142400pt;}
.y4e{bottom:679.142533pt;}
.ya4{bottom:683.352400pt;}
.yd0{bottom:686.986133pt;}
.y84{bottom:692.465200pt;}
.y21{bottom:699.142400pt;}
.y4d{bottom:699.142533pt;}
.ycf{bottom:706.986133pt;}
.y20{bottom:719.142400pt;}
.y4c{bottom:719.142533pt;}
.ya3{bottom:723.352400pt;}
.y83{bottom:723.803867pt;}
.yce{bottom:738.324667pt;}
.y1f{bottom:739.142400pt;}
.y4b{bottom:739.142533pt;}
.ya2{bottom:740.685733pt;}
.y82{bottom:741.137200pt;}
.ycd{bottom:755.658000pt;}
.ya1{bottom:758.019067pt;}
.y81{bottom:758.470533pt;}
.y1e{bottom:759.142400pt;}
.y4a{bottom:759.142533pt;}
.ycc{bottom:772.991333pt;}
.ya0{bottom:775.352400pt;}
.y80{bottom:775.803867pt;}
.y1d{bottom:779.142400pt;}
.y49{bottom:779.142533pt;}
.ycb{bottom:790.324667pt;}
.y7f{bottom:793.137200pt;}
.y1c{bottom:799.142400pt;}
.y48{bottom:799.142533pt;}
.y9f{bottom:800.246533pt;}
.y2{bottom:802.757867pt;}
.yca{bottom:807.658000pt;}
.y7e{bottom:810.470533pt;}
.y1b{bottom:819.142400pt;}
.y47{bottom:819.142533pt;}
.yc9{bottom:824.991333pt;}
.y1a{bottom:839.142400pt;}
.y46{bottom:839.142533pt;}
.yc8{bottom:842.324667pt;}
.y19{bottom:859.142400pt;}
.y45{bottom:859.142533pt;}
.yc7{bottom:859.658000pt;}
.yc6{bottom:876.991333pt;}
.y18{bottom:879.142400pt;}
.y44{bottom:879.142533pt;}
.yc5{bottom:894.324667pt;}
.yfd{bottom:894.324800pt;}
.y17{bottom:899.142400pt;}
.y43{bottom:899.142533pt;}
.y1{bottom:905.435200pt;}
.yc4{bottom:911.658000pt;}
.yfc{bottom:911.658133pt;}
.y16{bottom:919.142400pt;}
.y42{bottom:919.142533pt;}
.yc3{bottom:928.991333pt;}
.yfb{bottom:928.991467pt;}
.y15{bottom:939.142400pt;}
.y41{bottom:939.142533pt;}
.yc2{bottom:946.324667pt;}
.yfa{bottom:946.324800pt;}
.y14{bottom:959.142400pt;}
.y40{bottom:959.142533pt;}
.yc1{bottom:963.658000pt;}
.yf9{bottom:963.658133pt;}
.y11{bottom:974.713200pt;}
.y13{bottom:979.142400pt;}
.y3f{bottom:979.142533pt;}
.yc0{bottom:980.991333pt;}
.yf8{bottom:980.991467pt;}
.y10{bottom:992.313200pt;}
.yf{bottom:1009.913200pt;}
.ye{bottom:1027.513200pt;}
.y12{bottom:1036.689733pt;}
.yd{bottom:1045.113200pt;}
.yc{bottom:1062.713200pt;}
.hb{height:26.133187pt;}
.h7{height:26.250375pt;}
.h8{height:42.117188pt;}
.hc{height:42.234375pt;}
.h9{height:42.680000pt;}
.h4{height:43.812500pt;}
.h5{height:46.796875pt;}
.h6{height:56.156250pt;}
.hd{height:56.312500pt;}
.h2{height:62.208000pt;}
.ha{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.385867pt;}
.xe{left:132.283467pt;}
.x2{left:155.214667pt;}
.xd{left:192.976400pt;}
.x1{left:338.539067pt;}
.x10{left:340.370000pt;}
.xf{left:378.943333pt;}
.x5{left:396.680800pt;}
.x7{left:431.711867pt;}
.x4{left:455.160800pt;}
.xa{left:479.642533pt;}
.x6{left:492.027467pt;}
.x8{left:543.515867pt;}
.xb{left:558.593200pt;}
.xc{left:570.267867pt;}
.x9{left:620.486533pt;}
}




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