
    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_ba16f3268b812bdf494921a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4b6b3bb81df5738e93d15504.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101000;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_ccec19c8b047e94e87d160a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.086000;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_1079ebc5530c2019e1176d3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_40d9e161caa1c035a7492e23.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.101000;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_e25c817f63d3aed205764f53.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.841000;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_a5a514e76a5294e7ff76e78c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_5cdb33b869de0622f1cc4c0b.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;}
.m2{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,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;}
.lse{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.882000px;}
.ls7{letter-spacing:-0.642000px;}
.ls17{letter-spacing:-0.340800px;}
.ls12{letter-spacing:-0.331200px;}
.ls9{letter-spacing:-0.294600px;}
.ls1d{letter-spacing:-0.226200px;}
.ls8{letter-spacing:-0.204600px;}
.ls3{letter-spacing:-0.182400px;}
.ls16{letter-spacing:-0.139800px;}
.ls14{letter-spacing:-0.115800px;}
.ls1f{letter-spacing:-0.112800px;}
.ls6{letter-spacing:-0.105000px;}
.ls1e{letter-spacing:-0.072600px;}
.ls18{letter-spacing:-0.069600px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.075600px;}
.ls13{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.130800px;}
.ls2{letter-spacing:0.131040px;}
.ls4{letter-spacing:0.133200px;}
.ls1a{letter-spacing:0.216720px;}
.ls10{letter-spacing:0.243600px;}
.ls1{letter-spacing:0.333600px;}
.ls11{letter-spacing:0.355800px;}
.ls15{letter-spacing:0.379200px;}
.lsd{letter-spacing:0.425400px;}
.ls5{letter-spacing:0.720000px;}
.ls1c{letter-spacing:4.206960px;}
.ls1b{letter-spacing:7.947360px;}
.lsb{letter-spacing:2544.307440px;}
.lsa{letter-spacing:2557.267440px;}
.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;}
}
.wsf{word-spacing:-15.793680px;}
.wsc{word-spacing:-15.770280px;}
.ws1{word-spacing:-15.748080px;}
.wsb{word-spacing:-15.658080px;}
.ws8{word-spacing:-15.545280px;}
.ws12{word-spacing:-15.490080px;}
.ws3{word-spacing:-15.414480px;}
.wse{word-spacing:-15.298680px;}
.ws10{word-spacing:-15.274680px;}
.ws2{word-spacing:-15.232080px;}
.ws7{word-spacing:-15.209880px;}
.wsd{word-spacing:-15.083280px;}
.ws11{word-spacing:-15.073680px;}
.ws6{word-spacing:-14.772480px;}
.wsa{word-spacing:-14.532480px;}
.ws9{word-spacing:-14.514480px;}
.ws13{word-spacing:-13.073040px;}
.ws15{word-spacing:-13.000440px;}
.ws14{word-spacing:-12.846840px;}
.ws4{word-spacing:-12.425760px;}
.ws5{word-spacing:-12.187560px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-2.352240px;}
._1{margin-left:-1.202400px;}
._0{width:1.162560px;}
._2{width:2.445120px;}
._4{width:3399.425520px;}
.fc4{color:rgb(0,46,94);}
.fc3{color:rgb(0,71,120);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.360000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:63.360000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y92{bottom:2.376000px;}
.y8f{bottom:3.240000px;}
.y2a{bottom:3.780000px;}
.y8e{bottom:19.800000px;}
.y90{bottom:33.876000px;}
.y6{bottom:35.925007px;}
.y8d{bottom:36.174000px;}
.y8c{bottom:52.734000px;}
.y4e{bottom:54.756000px;}
.yb5{bottom:56.205000px;}
.y26{bottom:56.556000px;}
.y5{bottom:66.525004px;}
.yb4{bottom:72.765000px;}
.y91{bottom:76.500000px;}
.yb3{bottom:89.325000px;}
.y4{bottom:97.125005px;}
.y4d{bottom:112.896000px;}
.yb2{bottom:122.445000px;}
.y4c{bottom:126.396000px;}
.y8b{bottom:127.476000px;}
.yb1{bottom:138.825000px;}
.y24{bottom:139.264499px;}
.yb0{bottom:155.205000px;}
.y4b{bottom:165.450000px;}
.y7c{bottom:165.810000px;}
.yaf{bottom:171.765000px;}
.y4a{bottom:185.070000px;}
.y7b{bottom:185.250000px;}
.yae{bottom:188.325000px;}
.y1b{bottom:196.933500px;}
.y49{bottom:204.510000px;}
.y7a{bottom:204.690000px;}
.yad{bottom:204.705000px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y93{bottom:223.230000px;}
.y48{bottom:223.950000px;}
.y83{bottom:224.310000px;}
.y28{bottom:228.810000px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.yac{bottom:237.825000px;}
.y79{bottom:240.690000px;}
.y47{bottom:243.570000px;}
.y82{bottom:243.750000px;}
.yab{bottom:254.205000px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y46{bottom:263.010000px;}
.y81{bottom:263.190000px;}
.yaa{bottom:270.765000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y45{bottom:282.495000px;}
.y78{bottom:282.855000px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.ya9{bottom:287.325000px;}
.y44{bottom:302.115000px;}
.y77{bottom:302.295000px;}
.ya8{bottom:303.705000px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.ya7{bottom:320.265000px;}
.y43{bottom:321.555000px;}
.y76{bottom:321.735000px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y42{bottom:340.995000px;}
.y8a{bottom:341.175000px;}
.y75{bottom:341.355000px;}
.y12{bottom:348.133500px;}
.ya6{bottom:353.415000px;}
.y41{bottom:360.615000px;}
.y74{bottom:360.795000px;}
.ya5{bottom:369.795000px;}
.y88{bottom:370.485000px;}
.y40{bottom:380.055000px;}
.y73{bottom:380.235000px;}
.ya4{bottom:386.355000px;}
.y11{bottom:386.785499px;}
.y80{bottom:396.795000px;}
.y3f{bottom:399.495000px;}
.y72{bottom:399.855000px;}
.ya3{bottom:402.735000px;}
.y10{bottom:408.044999px;}
.y87{bottom:412.065000px;}
.y3e{bottom:419.115000px;}
.y71{bottom:419.295000px;}
.y84{bottom:435.495000px;}
.ya2{bottom:435.855000px;}
.y3d{bottom:438.555000px;}
.y70{bottom:438.735000px;}
.y86{bottom:451.335000px;}
.ya1{bottom:452.235000px;}
.y3c{bottom:457.995000px;}
.y6f{bottom:458.355000px;}
.ya0{bottom:468.795000px;}
.y3b{bottom:477.615000px;}
.y6e{bottom:477.795000px;}
.yf{bottom:484.864502px;}
.y9f{bottom:485.355000px;}
.y3a{bottom:497.055000px;}
.y6d{bottom:497.235000px;}
.y9e{bottom:501.735000px;}
.ye{bottom:502.864502px;}
.y39{bottom:516.495000px;}
.y6c{bottom:516.855000px;}
.yd{bottom:520.864502px;}
.y9d{bottom:534.855000px;}
.y38{bottom:536.115000px;}
.y6b{bottom:536.295000px;}
.yc{bottom:538.864499px;}
.y9c{bottom:551.235000px;}
.y37{bottom:555.555000px;}
.y6a{bottom:555.765000px;}
.yb{bottom:556.864499px;}
.y9b{bottom:567.795000px;}
.y36{bottom:575.025000px;}
.y69{bottom:575.385000px;}
.y9a{bottom:584.355000px;}
.y35{bottom:594.645000px;}
.y68{bottom:594.825000px;}
.y34{bottom:614.085000px;}
.y67{bottom:614.265000px;}
.y99{bottom:617.520000px;}
.ya{bottom:626.610001px;}
.y33{bottom:633.525000px;}
.y66{bottom:633.885000px;}
.y98{bottom:633.900000px;}
.y9{bottom:645.510000px;}
.y97{bottom:650.280000px;}
.y32{bottom:653.145000px;}
.y65{bottom:653.325000px;}
.y8{bottom:666.771000px;}
.y31{bottom:672.585000px;}
.y64{bottom:672.765000px;}
.y96{bottom:682.860000px;}
.y85{bottom:690.045000px;}
.y30{bottom:692.025000px;}
.y63{bottom:692.385000px;}
.y95{bottom:699.600000px;}
.y2f{bottom:711.645000px;}
.y7f{bottom:711.825000px;}
.y94{bottom:713.460000px;}
.y7{bottom:726.298500px;}
.y62{bottom:731.265000px;}
.y89{bottom:747.825000px;}
.y7e{bottom:750.885000px;}
.y3{bottom:752.599495px;}
.y2e{bottom:754.305000px;}
.y7d{bottom:770.325000px;}
.y2d{bottom:773.745000px;}
.y61{bottom:789.765000px;}
.y2c{bottom:801.105000px;}
.y60{bottom:809.385000px;}
.y5f{bottom:828.825000px;}
.y2b{bottom:837.105000px;}
.y5e{bottom:848.310000px;}
.y5d{bottom:867.930000px;}
.y2{bottom:879.369000px;}
.y5c{bottom:887.370000px;}
.y29{bottom:891.690000px;}
.y5b{bottom:906.810000px;}
.y27{bottom:912.030000px;}
.y5a{bottom:926.430000px;}
.y59{bottom:945.870000px;}
.y58{bottom:965.310000px;}
.y1{bottom:966.726000px;}
.y57{bottom:984.930000px;}
.y56{bottom:1004.370000px;}
.y55{bottom:1023.810000px;}
.y54{bottom:1043.430000px;}
.y53{bottom:1062.870000px;}
.y52{bottom:1082.310000px;}
.y51{bottom:1101.930000px;}
.y50{bottom:1121.370000px;}
.y4f{bottom:1140.840000px;}
.y25{bottom:1203.300000px;}
.hc{height:19.440000px;}
.h7{height:32.130000px;}
.h12{height:32.659200px;}
.h1a{height:33.875988px;}
.h1c{height:34.732800px;}
.h19{height:34.911360px;}
.h11{height:39.372480px;}
.h17{height:40.328640px;}
.h9{height:41.872320px;}
.h6{height:45.900000px;}
.h10{height:47.551680px;}
.h3{height:48.195000px;}
.hf{height:48.746160px;}
.ha{height:49.371840px;}
.h14{height:54.299520px;}
.h2{height:55.080000px;}
.h15{height:58.463677px;}
.hd{height:59.235840px;}
.h16{height:66.054000px;}
.h5{height:78.030000px;}
.h18{height:93.600000px;}
.he{height:103.045680px;}
.h4{height:119.055004px;}
.hb{height:244.470000px;}
.h13{height:467.895000px;}
.h1b{height:732.165000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:0.360015px;}
.w9{width:0.540000px;}
.w7{width:19.800000px;}
.w6{width:25.596000px;}
.w8{width:132.480000px;}
.wb{width:174.450000px;}
.we{width:178.770000px;}
.wd{width:578.445000px;}
.w5{width:599.865000px;}
.w2{width:637.794021px;}
.wc{width:791.250000px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x6{left:-63.900013px;}
.x0{left:0.000000px;}
.x8{left:10.620000px;}
.x26{left:49.896000px;}
.x25{left:50.940000px;}
.x7{left:65.880000px;}
.x5{left:76.499987px;}
.x1b{left:84.960000px;}
.xc{left:89.865000px;}
.x1c{left:93.599987px;}
.x17{left:97.739987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:121.896000px;}
.x21{left:147.465000px;}
.x22{left:148.725000px;}
.x23{left:151.425000px;}
.x24{left:152.865000px;}
.xd{left:184.169987px;}
.xe{left:185.789987px;}
.xf{left:188.849987px;}
.x10{left:190.469987px;}
.x4{left:203.484001px;}
.x18{left:238.169987px;}
.xa{left:254.370000px;}
.xb{left:255.810000px;}
.x11{left:288.749987px;}
.x12{left:290.369987px;}
.x13{left:293.609987px;}
.x14{left:295.229987px;}
.x1d{left:343.155000px;}
.x1e{left:344.415000px;}
.x1f{left:347.115000px;}
.x20{left:348.555000px;}
.x16{left:374.294987px;}
.x15{left:391.394987px;}
.x3{left:454.959000px;}
.x19{left:535.784987px;}
.x1a{left:552.884987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.784000pt;}
.ls7{letter-spacing:-0.570667pt;}
.ls17{letter-spacing:-0.302933pt;}
.ls12{letter-spacing:-0.294400pt;}
.ls9{letter-spacing:-0.261867pt;}
.ls1d{letter-spacing:-0.201067pt;}
.ls8{letter-spacing:-0.181867pt;}
.ls3{letter-spacing:-0.162133pt;}
.ls16{letter-spacing:-0.124267pt;}
.ls14{letter-spacing:-0.102933pt;}
.ls1f{letter-spacing:-0.100267pt;}
.ls6{letter-spacing:-0.093333pt;}
.ls1e{letter-spacing:-0.064533pt;}
.ls18{letter-spacing:-0.061867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.067200pt;}
.ls13{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.116267pt;}
.ls2{letter-spacing:0.116480pt;}
.ls4{letter-spacing:0.118400pt;}
.ls1a{letter-spacing:0.192640pt;}
.ls10{letter-spacing:0.216533pt;}
.ls1{letter-spacing:0.296533pt;}
.ls11{letter-spacing:0.316267pt;}
.ls15{letter-spacing:0.337067pt;}
.lsd{letter-spacing:0.378133pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:3.739520pt;}
.ls1b{letter-spacing:7.064320pt;}
.lsb{letter-spacing:2261.606613pt;}
.lsa{letter-spacing:2273.126613pt;}
.wsf{word-spacing:-14.038827pt;}
.wsc{word-spacing:-14.018027pt;}
.ws1{word-spacing:-13.998293pt;}
.wsb{word-spacing:-13.918293pt;}
.ws8{word-spacing:-13.818027pt;}
.ws12{word-spacing:-13.768960pt;}
.ws3{word-spacing:-13.701760pt;}
.wse{word-spacing:-13.598827pt;}
.ws10{word-spacing:-13.577493pt;}
.ws2{word-spacing:-13.539627pt;}
.ws7{word-spacing:-13.519893pt;}
.wsd{word-spacing:-13.407360pt;}
.ws11{word-spacing:-13.398827pt;}
.ws6{word-spacing:-13.131093pt;}
.wsa{word-spacing:-12.917760pt;}
.ws9{word-spacing:-12.901760pt;}
.ws13{word-spacing:-11.620480pt;}
.ws15{word-spacing:-11.555947pt;}
.ws14{word-spacing:-11.419413pt;}
.ws4{word-spacing:-11.045120pt;}
.ws5{word-spacing:-10.833387pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-2.090880pt;}
._1{margin-left:-1.068800pt;}
._0{width:1.033387pt;}
._2{width:2.173440pt;}
._4{width:3021.711573pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.320000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:56.320000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:2.112000pt;}
.y8f{bottom:2.880000pt;}
.y2a{bottom:3.360000pt;}
.y8e{bottom:17.600000pt;}
.y90{bottom:30.112000pt;}
.y6{bottom:31.933340pt;}
.y8d{bottom:32.154667pt;}
.y8c{bottom:46.874667pt;}
.y4e{bottom:48.672000pt;}
.yb5{bottom:49.960000pt;}
.y26{bottom:50.272000pt;}
.y5{bottom:59.133337pt;}
.yb4{bottom:64.680000pt;}
.y91{bottom:68.000000pt;}
.yb3{bottom:79.400000pt;}
.y4{bottom:86.333337pt;}
.y4d{bottom:100.352000pt;}
.yb2{bottom:108.840000pt;}
.y4c{bottom:112.352000pt;}
.y8b{bottom:113.312000pt;}
.yb1{bottom:123.400000pt;}
.y24{bottom:123.790666pt;}
.yb0{bottom:137.960000pt;}
.y4b{bottom:147.066667pt;}
.y7c{bottom:147.386667pt;}
.yaf{bottom:152.680000pt;}
.y4a{bottom:164.506667pt;}
.y7b{bottom:164.666667pt;}
.yae{bottom:167.400000pt;}
.y1b{bottom:175.052000pt;}
.y49{bottom:181.786667pt;}
.y7a{bottom:181.946667pt;}
.yad{bottom:181.960000pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y93{bottom:198.426667pt;}
.y48{bottom:199.066667pt;}
.y83{bottom:199.386667pt;}
.y28{bottom:203.386667pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.yac{bottom:211.400000pt;}
.y79{bottom:213.946667pt;}
.y47{bottom:216.506667pt;}
.y82{bottom:216.666667pt;}
.yab{bottom:225.960000pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y46{bottom:233.786667pt;}
.y81{bottom:233.946667pt;}
.yaa{bottom:240.680000pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y45{bottom:251.106667pt;}
.y78{bottom:251.426667pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.ya9{bottom:255.400000pt;}
.y44{bottom:268.546667pt;}
.y77{bottom:268.706667pt;}
.ya8{bottom:269.960000pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.ya7{bottom:284.680000pt;}
.y43{bottom:285.826667pt;}
.y76{bottom:285.986667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y42{bottom:303.106667pt;}
.y8a{bottom:303.266667pt;}
.y75{bottom:303.426667pt;}
.y12{bottom:309.452000pt;}
.ya6{bottom:314.146667pt;}
.y41{bottom:320.546667pt;}
.y74{bottom:320.706667pt;}
.ya5{bottom:328.706667pt;}
.y88{bottom:329.320000pt;}
.y40{bottom:337.826667pt;}
.y73{bottom:337.986667pt;}
.ya4{bottom:343.426667pt;}
.y11{bottom:343.809333pt;}
.y80{bottom:352.706667pt;}
.y3f{bottom:355.106667pt;}
.y72{bottom:355.426667pt;}
.ya3{bottom:357.986667pt;}
.y10{bottom:362.706666pt;}
.y87{bottom:366.280000pt;}
.y3e{bottom:372.546667pt;}
.y71{bottom:372.706667pt;}
.y84{bottom:387.106667pt;}
.ya2{bottom:387.426667pt;}
.y3d{bottom:389.826667pt;}
.y70{bottom:389.986667pt;}
.y86{bottom:401.186667pt;}
.ya1{bottom:401.986667pt;}
.y3c{bottom:407.106667pt;}
.y6f{bottom:407.426667pt;}
.ya0{bottom:416.706667pt;}
.y3b{bottom:424.546667pt;}
.y6e{bottom:424.706667pt;}
.yf{bottom:430.990669pt;}
.y9f{bottom:431.426667pt;}
.y3a{bottom:441.826667pt;}
.y6d{bottom:441.986667pt;}
.y9e{bottom:445.986667pt;}
.ye{bottom:446.990669pt;}
.y39{bottom:459.106667pt;}
.y6c{bottom:459.426667pt;}
.yd{bottom:462.990669pt;}
.y9d{bottom:475.426667pt;}
.y38{bottom:476.546667pt;}
.y6b{bottom:476.706667pt;}
.yc{bottom:478.990666pt;}
.y9c{bottom:489.986667pt;}
.y37{bottom:493.826667pt;}
.y6a{bottom:494.013333pt;}
.yb{bottom:494.990666pt;}
.y9b{bottom:504.706667pt;}
.y36{bottom:511.133333pt;}
.y69{bottom:511.453333pt;}
.y9a{bottom:519.426667pt;}
.y35{bottom:528.573333pt;}
.y68{bottom:528.733333pt;}
.y34{bottom:545.853333pt;}
.y67{bottom:546.013333pt;}
.y99{bottom:548.906667pt;}
.ya{bottom:556.986668pt;}
.y33{bottom:563.133333pt;}
.y66{bottom:563.453333pt;}
.y98{bottom:563.466667pt;}
.y9{bottom:573.786667pt;}
.y97{bottom:578.026667pt;}
.y32{bottom:580.573333pt;}
.y65{bottom:580.733333pt;}
.y8{bottom:592.685334pt;}
.y31{bottom:597.853333pt;}
.y64{bottom:598.013333pt;}
.y96{bottom:606.986667pt;}
.y85{bottom:613.373333pt;}
.y30{bottom:615.133333pt;}
.y63{bottom:615.453333pt;}
.y95{bottom:621.866667pt;}
.y2f{bottom:632.573333pt;}
.y7f{bottom:632.733333pt;}
.y94{bottom:634.186667pt;}
.y7{bottom:645.598667pt;}
.y62{bottom:650.013333pt;}
.y89{bottom:664.733333pt;}
.y7e{bottom:667.453333pt;}
.y3{bottom:668.977329pt;}
.y2e{bottom:670.493333pt;}
.y7d{bottom:684.733333pt;}
.y2d{bottom:687.773333pt;}
.y61{bottom:702.013333pt;}
.y2c{bottom:712.093333pt;}
.y60{bottom:719.453333pt;}
.y5f{bottom:736.733333pt;}
.y2b{bottom:744.093333pt;}
.y5e{bottom:754.053333pt;}
.y5d{bottom:771.493333pt;}
.y2{bottom:781.661334pt;}
.y5c{bottom:788.773333pt;}
.y29{bottom:792.613333pt;}
.y5b{bottom:806.053333pt;}
.y27{bottom:810.693333pt;}
.y5a{bottom:823.493333pt;}
.y59{bottom:840.773333pt;}
.y58{bottom:858.053333pt;}
.y1{bottom:859.312000pt;}
.y57{bottom:875.493333pt;}
.y56{bottom:892.773333pt;}
.y55{bottom:910.053333pt;}
.y54{bottom:927.493333pt;}
.y53{bottom:944.773333pt;}
.y52{bottom:962.053333pt;}
.y51{bottom:979.493333pt;}
.y50{bottom:996.773333pt;}
.y4f{bottom:1014.080000pt;}
.y25{bottom:1069.600000pt;}
.hc{height:17.280000pt;}
.h7{height:28.560000pt;}
.h12{height:29.030400pt;}
.h1a{height:30.111989pt;}
.h1c{height:30.873600pt;}
.h19{height:31.032320pt;}
.h11{height:34.997760pt;}
.h17{height:35.847680pt;}
.h9{height:37.219840pt;}
.h6{height:40.800000pt;}
.h10{height:42.268160pt;}
.h3{height:42.840000pt;}
.hf{height:43.329920pt;}
.ha{height:43.886080pt;}
.h14{height:48.266240pt;}
.h2{height:48.960000pt;}
.h15{height:51.967713pt;}
.hd{height:52.654080pt;}
.h16{height:58.714667pt;}
.h5{height:69.360000pt;}
.h18{height:83.200000pt;}
.he{height:91.596160pt;}
.h4{height:105.826671pt;}
.hb{height:217.306667pt;}
.h13{height:415.906667pt;}
.h1b{height:650.813333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:0.320013pt;}
.w9{width:0.480000pt;}
.w7{width:17.600000pt;}
.w6{width:22.752000pt;}
.w8{width:117.760000pt;}
.wb{width:155.066667pt;}
.we{width:158.906667pt;}
.wd{width:514.173333pt;}
.w5{width:533.213333pt;}
.w2{width:566.928019pt;}
.wc{width:703.333333pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x6{left:-56.800012pt;}
.x0{left:0.000000pt;}
.x8{left:9.440000pt;}
.x26{left:44.352000pt;}
.x25{left:45.280000pt;}
.x7{left:58.560000pt;}
.x5{left:67.999988pt;}
.x1b{left:75.520000pt;}
.xc{left:79.880000pt;}
.x1c{left:83.199988pt;}
.x17{left:86.879988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:108.352000pt;}
.x21{left:131.080000pt;}
.x22{left:132.200000pt;}
.x23{left:134.600000pt;}
.x24{left:135.880000pt;}
.xd{left:163.706655pt;}
.xe{left:165.146655pt;}
.xf{left:167.866655pt;}
.x10{left:169.306655pt;}
.x4{left:180.874667pt;}
.x18{left:211.706655pt;}
.xa{left:226.106667pt;}
.xb{left:227.386667pt;}
.x11{left:256.666655pt;}
.x12{left:258.106655pt;}
.x13{left:260.986655pt;}
.x14{left:262.426655pt;}
.x1d{left:305.026667pt;}
.x1e{left:306.146667pt;}
.x1f{left:308.546667pt;}
.x20{left:309.826667pt;}
.x16{left:332.706655pt;}
.x15{left:347.906655pt;}
.x3{left:404.408000pt;}
.x19{left:476.253322pt;}
.x1a{left:491.453322pt;}
}




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