
    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_d629939c197775258252ee8f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_bb7cc92cd323ad2e0891e7d3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_43579bf334f4c966e34fa98b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.019000;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_a5f14cf5e0191b751864dd52.woff')format("woff");}.ff4{font-family:ff4;line-height:1.042000;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_d43dbc9ad76cbd2e34d8ca35.woff')format("woff");}.ff5{font-family:ff5;line-height:0.944000;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_3411e8a33634974c6637fd75.woff')format("woff");}.ff6{font-family:ff6;line-height:1.041000;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_eabfd089547dba46b60be2a3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.945000;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_bd938f60de1a976aeb7d48f7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_341695a15fc39ad3d0175dcf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.681641;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_1ee716aff6861d8bd383dd54.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_78ed91d2e9410325ab5d8e3b.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v1{vertical-align:14.566404px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000090px;}
.ls2{letter-spacing:0.015600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-82.121790px;}
.ws3{word-spacing:-30.551265px;}
.ws4{word-spacing:-30.029130px;}
.wsa{word-spacing:-19.500000px;}
.ws5{word-spacing:-18.864090px;}
.wsc{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.716070px;}
.ws7{word-spacing:-12.576274px;}
.ws8{word-spacing:-11.886020px;}
.wsb{word-spacing:-11.000001px;}
.ws2{word-spacing:-8.086927px;}
.ws1{word-spacing:-7.486837px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-7.289437px;}
._5{margin-left:-5.670000px;}
._6{margin-left:-4.049550px;}
._4{margin-left:-2.430000px;}
._0{margin-left:-1.402718px;}
._2{width:1.359810px;}
._3{width:2.862620px;}
._1{width:4.765230px;}
._a{width:5.940968px;}
._17{width:7.868700px;}
._1c{width:9.389993px;}
._14{width:10.480320px;}
._22{width:11.949728px;}
._21{width:13.176000px;}
._26{width:15.627285px;}
._1d{width:17.251830px;}
._27{width:18.672174px;}
._19{width:19.982205px;}
._18{width:21.055410px;}
._c{width:22.378185px;}
._d{width:24.068543px;}
._8{width:25.383150px;}
._9{width:26.916750px;}
._29{width:27.984750px;}
._e{width:29.391075px;}
._23{width:32.242005px;}
._16{width:33.439140px;}
._28{width:34.528312px;}
._25{width:36.245407px;}
._24{width:37.391850px;}
._1b{width:38.790450px;}
._1a{width:39.871350px;}
._12{width:41.407020px;}
._13{width:42.693030px;}
._11{width:53.522865px;}
._10{width:55.085085px;}
._15{width:56.188282px;}
._20{width:64.511888px;}
._f{width:65.569748px;}
._1f{width:72.970200px;}
._1e{width:91.757925px;}
._b{width:152.636490px;}
.fc2{color:rgb(166,23,100);}
.fc1{color:rgb(46,68,56);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:28.575713px;}
.fs8{font-size:42.000070px;}
.fsc{font-size:44.000004px;}
.fs7{font-size:48.001046px;}
.fs0{font-size:59.985000px;}
.fsb{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs6{font-size:82.121790px;}
.fs9{font-size:95.985000px;}
.fs5{font-size:106.110000px;}
.fs3{font-size:107.955000px;}
.fs2{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000023px;}
.y95{bottom:15.975585px;}
.y65{bottom:18.799777px;}
.y64{bottom:32.799801px;}
.y94{bottom:33.975585px;}
.y63{bottom:46.799824px;}
.y93{bottom:51.975585px;}
.y62{bottom:60.799847px;}
.y92{bottom:69.975600px;}
.y61{bottom:74.799870px;}
.y5{bottom:78.687608px;}
.y68{bottom:84.295650px;}
.y91{bottom:87.975600px;}
.y60{bottom:88.799893px;}
.y4{bottom:98.937608px;}
.y5f{bottom:102.799917px;}
.y48{bottom:126.899827px;}
.y58{bottom:128.674986px;}
.y57{bottom:144.675334px;}
.y47{bottom:155.024827px;}
.y56{bottom:160.675683px;}
.y90{bottom:164.300400px;}
.y55{bottom:176.676032px;}
.y46{bottom:183.149827px;}
.y8f{bottom:186.625050px;}
.y54{bottom:192.676381px;}
.y53{bottom:208.676730px;}
.y8e{bottom:208.949850px;}
.y45{bottom:211.274827px;}
.y52{bottom:224.677079px;}
.y8d{bottom:231.274650px;}
.y44{bottom:239.399827px;}
.y51{bottom:240.677427px;}
.y8c{bottom:253.599450px;}
.y50{bottom:259.677841px;}
.y43{bottom:267.524827px;}
.y8b{bottom:275.924250px;}
.y42{bottom:295.649827px;}
.y8a{bottom:298.248900px;}
.y89{bottom:320.573700px;}
.y41{bottom:323.774827px;}
.y8{bottom:340.424827px;}
.y88{bottom:342.898500px;}
.y40{bottom:351.899827px;}
.y7{bottom:360.674827px;}
.y87{bottom:365.223300px;}
.y3f{bottom:380.024827px;}
.y6{bottom:380.924827px;}
.y86{bottom:387.548100px;}
.y3e{bottom:408.149827px;}
.y85{bottom:409.872750px;}
.y84{bottom:432.197550px;}
.y3d{bottom:436.274827px;}
.y83{bottom:454.522350px;}
.y3c{bottom:464.399827px;}
.y82{bottom:476.847150px;}
.y3b{bottom:492.524828px;}
.y81{bottom:499.171800px;}
.y3a{bottom:520.649828px;}
.y80{bottom:521.496600px;}
.y7f{bottom:543.821400px;}
.y39{bottom:548.774828px;}
.y7e{bottom:566.146200px;}
.y38{bottom:576.899828px;}
.y7d{bottom:588.471000px;}
.y37{bottom:605.024828px;}
.y7c{bottom:610.795650px;}
.y7b{bottom:633.120450px;}
.y36{bottom:633.149828px;}
.y3{bottom:636.141728px;}
.y7a{bottom:655.445250px;}
.y2{bottom:656.391728px;}
.y35{bottom:663.524828px;}
.y79{bottom:677.770050px;}
.y34{bottom:713.118727px;}
.y78{bottom:713.770050px;}
.y33{bottom:740.118727px;}
.y77{bottom:749.770050px;}
.y32{bottom:767.118727px;}
.y76{bottom:767.770050px;}
.y75{bottom:785.770050px;}
.y31{bottom:794.118727px;}
.y74{bottom:803.770050px;}
.y30{bottom:821.118727px;}
.y73{bottom:821.770050px;}
.y72{bottom:839.770050px;}
.y2f{bottom:848.118727px;}
.y71{bottom:857.770050px;}
.y2e{bottom:875.118727px;}
.y70{bottom:893.770050px;}
.y2d{bottom:902.118727px;}
.y6f{bottom:911.770050px;}
.y2c{bottom:929.118727px;}
.y6e{bottom:929.770050px;}
.y6d{bottom:947.770050px;}
.y2b{bottom:956.118727px;}
.y6c{bottom:965.770050px;}
.y2a{bottom:983.118727px;}
.y6b{bottom:1002.546450px;}
.y29{bottom:1011.243727px;}
.y6a{bottom:1026.546450px;}
.y4f{bottom:1053.163778px;}
.y5e{bottom:1063.138778px;}
.y69{bottom:1074.546450px;}
.y4e{bottom:1081.288778px;}
.y5d{bottom:1083.388778px;}
.y4d{bottom:1109.413778px;}
.y4c{bottom:1137.538778px;}
.y4b{bottom:1165.663778px;}
.y4a{bottom:1193.788778px;}
.y49{bottom:1226.413778px;}
.y28{bottom:1267.813478px;}
.y27{bottom:1294.813478px;}
.y26{bottom:1321.813478px;}
.y25{bottom:1348.813478px;}
.y24{bottom:1375.813478px;}
.y23{bottom:1402.813478px;}
.y5b{bottom:1411.086278px;}
.y22{bottom:1429.813478px;}
.y5a{bottom:1431.336278px;}
.y59{bottom:1451.586278px;}
.y21{bottom:1456.813478px;}
.y20{bottom:1483.813478px;}
.y1f{bottom:1510.813478px;}
.y5c{bottom:1523.678978px;}
.y1e{bottom:1537.813478px;}
.y1d{bottom:1564.813478px;}
.y1c{bottom:1591.813478px;}
.y1b{bottom:1618.813478px;}
.y1a{bottom:1645.813478px;}
.y19{bottom:1672.813478px;}
.y18{bottom:1699.813478px;}
.y17{bottom:1726.813478px;}
.y16{bottom:1753.813478px;}
.y15{bottom:1783.063478px;}
.y67{bottom:1852.336478px;}
.y66{bottom:1884.961478px;}
.y11{bottom:1903.948476px;}
.y10{bottom:1913.473713px;}
.yf{bottom:1922.998951px;}
.ye{bottom:1932.524189px;}
.y14{bottom:1940.068477px;}
.yd{bottom:1942.049426px;}
.yc{bottom:1951.574664px;}
.yb{bottom:1961.099901px;}
.ya{bottom:1970.625139px;}
.y9{bottom:1980.150377px;}
.y13{bottom:1996.318477px;}
.y12{bottom:2052.568477px;}
.h4{height:22.489086px;}
.h3{height:24.060750px;}
.hb{height:33.054055px;}
.hc{height:35.364059px;}
.ha{height:40.416881px;}
.h13{height:44.730469px;}
.h2{height:44.808795px;}
.h12{height:45.826172px;}
.h11{height:52.863281px;}
.h7{height:60.624000px;}
.h9{height:60.934368px;}
.hd{height:71.604810px;}
.h8{height:83.508570px;}
.h6{height:84.960585px;}
.h5{height:134.946000px;}
.h10{height:1098.898650px;}
.he{height:1262.835000px;}
.hf{height:1263.000000px;}
.h1{height:2159.999978px;}
.h0{height:2160.000000px;}
.w3{width:733.638600px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.w0{width:1215.000000px;}
.x0{left:0.000000px;}
.x1e{left:5.398680px;}
.xf{left:50.892780px;}
.xc{left:52.703327px;}
.xd{left:70.351770px;}
.x1d{left:79.640700px;}
.x1{left:86.800929px;}
.x3{left:94.312359px;}
.x4{left:108.339697px;}
.x14{left:121.500000px;}
.x2{left:129.656393px;}
.xe{left:175.328355px;}
.xb{left:178.562730px;}
.x13{left:390.410213px;}
.x5{left:421.893150px;}
.x16{left:442.854000px;}
.x6{left:458.104087px;}
.x15{left:478.151649px;}
.x7{left:489.024015px;}
.x17{left:572.030766px;}
.x18{left:584.036625px;}
.x10{left:661.006200px;}
.x19{left:676.919437px;}
.x12{left:783.503250px;}
.x1c{left:815.964028px;}
.x1b{left:828.620273px;}
.x11{left:886.915365px;}
.xa{left:900.225952px;}
.x8{left:901.704968px;}
.x9{left:906.514094px;}
.x1a{left:1040.204100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.947915pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000080pt;}
.ls2{letter-spacing:0.013867pt;}
.ws6{word-spacing:-72.997147pt;}
.ws3{word-spacing:-27.156680pt;}
.ws4{word-spacing:-26.692560pt;}
.wsa{word-spacing:-17.333333pt;}
.ws5{word-spacing:-16.768080pt;}
.wsc{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.969840pt;}
.ws7{word-spacing:-11.178910pt;}
.ws8{word-spacing:-10.565351pt;}
.wsb{word-spacing:-9.777779pt;}
.ws2{word-spacing:-7.188379pt;}
.ws1{word-spacing:-6.654966pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-6.479500pt;}
._5{margin-left:-5.040000pt;}
._6{margin-left:-3.599600pt;}
._4{margin-left:-2.160000pt;}
._0{margin-left:-1.246860pt;}
._2{width:1.208720pt;}
._3{width:2.544551pt;}
._1{width:4.235760pt;}
._a{width:5.280860pt;}
._17{width:6.994400pt;}
._1c{width:8.346660pt;}
._14{width:9.315840pt;}
._22{width:10.621980pt;}
._21{width:11.712000pt;}
._26{width:13.890920pt;}
._1d{width:15.334960pt;}
._27{width:16.597488pt;}
._19{width:17.761960pt;}
._18{width:18.715920pt;}
._c{width:19.891720pt;}
._d{width:21.394260pt;}
._8{width:22.562800pt;}
._9{width:23.926000pt;}
._29{width:24.875333pt;}
._e{width:26.125400pt;}
._23{width:28.659560pt;}
._16{width:29.723680pt;}
._28{width:30.691833pt;}
._25{width:32.218140pt;}
._24{width:33.237200pt;}
._1b{width:34.480400pt;}
._1a{width:35.441200pt;}
._12{width:36.806240pt;}
._13{width:37.949360pt;}
._11{width:47.575880pt;}
._10{width:48.964520pt;}
._15{width:49.945140pt;}
._20{width:57.343900pt;}
._f{width:58.284220pt;}
._1f{width:64.862400pt;}
._1e{width:81.562600pt;}
._b{width:135.676880pt;}
.fs1{font-size:25.400634pt;}
.fs8{font-size:37.333395pt;}
.fsc{font-size:39.111115pt;}
.fs7{font-size:42.667597pt;}
.fs0{font-size:53.320000pt;}
.fsb{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs6{font-size:72.997147pt;}
.fs9{font-size:85.320000pt;}
.fs5{font-size:94.320000pt;}
.fs3{font-size:95.960000pt;}
.fs2{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000020pt;}
.y95{bottom:14.200520pt;}
.y65{bottom:16.710913pt;}
.y64{bottom:29.155378pt;}
.y94{bottom:30.200520pt;}
.y63{bottom:41.599843pt;}
.y93{bottom:46.200520pt;}
.y62{bottom:54.044308pt;}
.y92{bottom:62.200533pt;}
.y61{bottom:66.488773pt;}
.y5{bottom:69.944540pt;}
.y68{bottom:74.929467pt;}
.y91{bottom:78.200533pt;}
.y60{bottom:78.933239pt;}
.y4{bottom:87.944540pt;}
.y5f{bottom:91.377704pt;}
.y48{bottom:112.799847pt;}
.y58{bottom:114.377765pt;}
.y57{bottom:128.600297pt;}
.y47{bottom:137.799847pt;}
.y56{bottom:142.822830pt;}
.y90{bottom:146.044800pt;}
.y55{bottom:157.045362pt;}
.y46{bottom:162.799847pt;}
.y8f{bottom:165.888933pt;}
.y54{bottom:171.267894pt;}
.y53{bottom:185.490426pt;}
.y8e{bottom:185.733200pt;}
.y45{bottom:187.799847pt;}
.y52{bottom:199.712959pt;}
.y8d{bottom:205.577467pt;}
.y44{bottom:212.799847pt;}
.y51{bottom:213.935491pt;}
.y8c{bottom:225.421733pt;}
.y50{bottom:230.824748pt;}
.y43{bottom:237.799847pt;}
.y8b{bottom:245.266000pt;}
.y42{bottom:262.799847pt;}
.y8a{bottom:265.110133pt;}
.y89{bottom:284.954400pt;}
.y41{bottom:287.799847pt;}
.y8{bottom:302.599847pt;}
.y88{bottom:304.798667pt;}
.y40{bottom:312.799847pt;}
.y7{bottom:320.599847pt;}
.y87{bottom:324.642933pt;}
.y3f{bottom:337.799847pt;}
.y6{bottom:338.599847pt;}
.y86{bottom:344.487200pt;}
.y3e{bottom:362.799847pt;}
.y85{bottom:364.331333pt;}
.y84{bottom:384.175600pt;}
.y3d{bottom:387.799847pt;}
.y83{bottom:404.019867pt;}
.y3c{bottom:412.799847pt;}
.y82{bottom:423.864133pt;}
.y3b{bottom:437.799847pt;}
.y81{bottom:443.708267pt;}
.y3a{bottom:462.799847pt;}
.y80{bottom:463.552533pt;}
.y7f{bottom:483.396800pt;}
.y39{bottom:487.799847pt;}
.y7e{bottom:503.241067pt;}
.y38{bottom:512.799847pt;}
.y7d{bottom:523.085333pt;}
.y37{bottom:537.799847pt;}
.y7c{bottom:542.929467pt;}
.y7b{bottom:562.773733pt;}
.y36{bottom:562.799847pt;}
.y3{bottom:565.459313pt;}
.y7a{bottom:582.618000pt;}
.y2{bottom:583.459313pt;}
.y35{bottom:589.799847pt;}
.y79{bottom:602.462267pt;}
.y34{bottom:633.883313pt;}
.y78{bottom:634.462267pt;}
.y33{bottom:657.883313pt;}
.y77{bottom:666.462267pt;}
.y32{bottom:681.883313pt;}
.y76{bottom:682.462267pt;}
.y75{bottom:698.462267pt;}
.y31{bottom:705.883313pt;}
.y74{bottom:714.462267pt;}
.y30{bottom:729.883313pt;}
.y73{bottom:730.462267pt;}
.y72{bottom:746.462267pt;}
.y2f{bottom:753.883313pt;}
.y71{bottom:762.462267pt;}
.y2e{bottom:777.883313pt;}
.y70{bottom:794.462267pt;}
.y2d{bottom:801.883313pt;}
.y6f{bottom:810.462267pt;}
.y2c{bottom:825.883313pt;}
.y6e{bottom:826.462267pt;}
.y6d{bottom:842.462267pt;}
.y2b{bottom:849.883313pt;}
.y6c{bottom:858.462267pt;}
.y2a{bottom:873.883313pt;}
.y6b{bottom:891.152400pt;}
.y29{bottom:898.883313pt;}
.y6a{bottom:912.485733pt;}
.y4f{bottom:936.145580pt;}
.y5e{bottom:945.012247pt;}
.y69{bottom:955.152400pt;}
.y4e{bottom:961.145580pt;}
.y5d{bottom:963.012247pt;}
.y4d{bottom:986.145580pt;}
.y4c{bottom:1011.145580pt;}
.y4b{bottom:1036.145580pt;}
.y4a{bottom:1061.145580pt;}
.y49{bottom:1090.145580pt;}
.y28{bottom:1126.945313pt;}
.y27{bottom:1150.945313pt;}
.y26{bottom:1174.945313pt;}
.y25{bottom:1198.945313pt;}
.y24{bottom:1222.945313pt;}
.y23{bottom:1246.945313pt;}
.y5b{bottom:1254.298913pt;}
.y22{bottom:1270.945313pt;}
.y5a{bottom:1272.298913pt;}
.y59{bottom:1290.298913pt;}
.y21{bottom:1294.945313pt;}
.y20{bottom:1318.945313pt;}
.y1f{bottom:1342.945313pt;}
.y5c{bottom:1354.381313pt;}
.y1e{bottom:1366.945313pt;}
.y1d{bottom:1390.945313pt;}
.y1c{bottom:1414.945313pt;}
.y1b{bottom:1438.945313pt;}
.y1a{bottom:1462.945313pt;}
.y19{bottom:1486.945313pt;}
.y18{bottom:1510.945313pt;}
.y17{bottom:1534.945313pt;}
.y16{bottom:1558.945313pt;}
.y15{bottom:1584.945313pt;}
.y67{bottom:1646.521313pt;}
.y66{bottom:1675.521313pt;}
.y11{bottom:1692.398645pt;}
.y10{bottom:1700.865523pt;}
.yf{bottom:1709.332401pt;}
.ye{bottom:1717.799279pt;}
.y14{bottom:1724.505313pt;}
.yd{bottom:1726.266157pt;}
.yc{bottom:1734.733035pt;}
.yb{bottom:1743.199912pt;}
.ya{bottom:1751.666790pt;}
.y9{bottom:1760.133668pt;}
.y13{bottom:1774.505313pt;}
.y12{bottom:1824.505313pt;}
.h4{height:19.990299pt;}
.h3{height:21.387333pt;}
.hb{height:29.381382pt;}
.hc{height:31.434719pt;}
.ha{height:35.926117pt;}
.h13{height:39.760417pt;}
.h2{height:39.830040pt;}
.h12{height:40.734375pt;}
.h11{height:46.989583pt;}
.h7{height:53.888000pt;}
.h9{height:54.163883pt;}
.hd{height:63.648720pt;}
.h8{height:74.229840pt;}
.h6{height:75.520520pt;}
.h5{height:119.952000pt;}
.h10{height:976.798800pt;}
.he{height:1122.520000pt;}
.hf{height:1122.666667pt;}
.h1{height:1919.999980pt;}
.h0{height:1920.000000pt;}
.w3{width:652.123200pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.w0{width:1080.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:4.798827pt;}
.xf{left:45.238027pt;}
.xc{left:46.847402pt;}
.xd{left:62.534907pt;}
.x1d{left:70.791733pt;}
.x1{left:77.156382pt;}
.x3{left:83.833208pt;}
.x4{left:96.301953pt;}
.x14{left:108.000000pt;}
.x2{left:115.250127pt;}
.xe{left:155.847427pt;}
.xb{left:158.722427pt;}
.x13{left:347.031300pt;}
.x5{left:375.016133pt;}
.x16{left:393.648000pt;}
.x6{left:407.203633pt;}
.x15{left:425.023688pt;}
.x7{left:434.688013pt;}
.x17{left:508.471792pt;}
.x18{left:519.143667pt;}
.x10{left:587.561067pt;}
.x19{left:601.706167pt;}
.x12{left:696.447333pt;}
.x1c{left:725.301358pt;}
.x1b{left:736.551353pt;}
.x11{left:788.369213pt;}
.xa{left:800.200846pt;}
.x8{left:801.515527pt;}
.x9{left:805.790306pt;}
.x1a{left:924.625867pt;}
}




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