
    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_3eb4c912ffde406d59b9a714.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_ccac078b666c1f3c2fc8f623.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.689453;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_7fed78336093b6360c1404c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_5f7ab2160420ef88367c9509.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_f17ed11a169945a024121408.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_8036c362b50281760b3bd217.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_069753eba3e0dce2f09ad480.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.256000;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_3eb4c912ffde406d59b9a714.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.197000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.256000;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_3eb4c912ffde406d59b9a714.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.197000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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:ffd;src:url('chunks/assets/font_4653e87e2a8d804589d3f56a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.230000;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:ffe;src:url('chunks/assets/font_a626e87412f696ca84f3be08.woff2')format("woff");}.ffe{font-family:ffe;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);}
.v1{vertical-align:-19.199982px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.799927px;}
.lsc{letter-spacing:-14.250000px;}
.ls10{letter-spacing:-12.000000px;}
.lsb{letter-spacing:-6.327000px;}
.lsd{letter-spacing:-6.000000px;}
.ls6{letter-spacing:-5.244000px;}
.lsf{letter-spacing:-2.109000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000007px;}
.lsa{letter-spacing:0.000018px;}
.ls7{letter-spacing:0.000073px;}
.lse{letter-spacing:0.000092px;}
.ls5{letter-spacing:0.000583px;}
.ls8{letter-spacing:0.000606px;}
.ls0{letter-spacing:30.703189px;}
.ls1{letter-spacing:53.015387px;}
.ls2{letter-spacing:53.015390px;}
.ls3{letter-spacing:53.015481px;}
.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:-14.250000px;}
.ws1d{word-spacing:-13.332000px;}
.ws14{word-spacing:-12.141000px;}
.ws8{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.514000px;}
.ws18{word-spacing:-11.340000px;}
.ws7{word-spacing:-9.975000px;}
.ws2{word-spacing:-9.408000px;}
.ws17{word-spacing:-9.216000px;}
.wsa{word-spacing:-9.006000px;}
.ws0{word-spacing:-8.400000px;}
.wsc{word-spacing:-7.923000px;}
.ws19{word-spacing:-1.200000px;}
.ws1e{word-spacing:-0.288000px;}
.ws25{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.ws11{word-spacing:0.096000px;}
.ws29{word-spacing:0.144000px;}
.ws1a{word-spacing:0.432000px;}
.wsd{word-spacing:0.480000px;}
.ws15{word-spacing:0.528000px;}
.ws1f{word-spacing:1.200000px;}
.ws13{word-spacing:2.064000px;}
.ws28{word-spacing:2.208000px;}
.ws20{word-spacing:2.256000px;}
.ws27{word-spacing:2.352000px;}
.ws26{word-spacing:2.640000px;}
.ws9{word-spacing:2.832000px;}
.wsf{word-spacing:2.976000px;}
.ws2a{word-spacing:3.408000px;}
.ws21{word-spacing:3.744000px;}
.ws16{word-spacing:3.888000px;}
.ws12{word-spacing:4.176000px;}
.ws1c{word-spacing:4.992000px;}
.ws22{word-spacing:5.328000px;}
.ws23{word-spacing:5.616000px;}
.ws10{word-spacing:6.000000px;}
.ws24{word-spacing:6.768000px;}
.ws1b{word-spacing:12.000000px;}
.wse{word-spacing:14.250000px;}
.wsb{word-spacing:18.660000px;}
.ws5{word-spacing:19.668000px;}
.ws1{word-spacing:45.353364px;}
._1{margin-left:-66.350989px;}
._16{margin-left:-14.861376px;}
._15{margin-left:-13.638624px;}
._17{margin-left:-12.184472px;}
._18{margin-left:-11.077641px;}
._5{margin-left:-6.177600px;}
._4{margin-left:-4.732800px;}
._13{margin-left:-3.727800px;}
._3{margin-left:-2.688000px;}
._0{margin-left:-1.104000px;}
._6{width:1.892138px;}
._b{width:2.929800px;}
._7{width:3.972900px;}
._d{width:5.010301px;}
._f{width:6.116100px;}
._c{width:7.187699px;}
._9{width:8.561401px;}
._8{width:9.900900px;}
._a{width:11.485501px;}
._10{width:12.885296px;}
._11{width:15.526800px;}
._e{width:16.641612px;}
._14{width:18.660000px;}
._12{width:19.668000px;}
._2{width:56.255995px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:33.600000px;}
.fs4{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:33.647400px;}
.y50{bottom:36.141749px;}
.y70{bottom:76.535402px;}
.y4f{bottom:76.535550px;}
.yb{bottom:78.661348px;}
.y8f{bottom:78.802952px;}
.yc1{bottom:86.675102px;}
.y6f{bottom:90.410402px;}
.y4e{bottom:90.410550px;}
.y59{bottom:90.425102px;}
.y8e{bottom:92.677952px;}
.y5a{bottom:95.210552px;}
.ya{bottom:97.336349px;}
.yc0{bottom:100.550102px;}
.y4d{bottom:104.285545px;}
.y8d{bottom:106.552952px;}
.y58{bottom:108.425102px;}
.y9{bottom:113.911354px;}
.ybf{bottom:114.425102px;}
.y4c{bottom:118.160545px;}
.y8c{bottom:120.427952px;}
.y57{bottom:126.425102px;}
.ybe{bottom:128.300102px;}
.y4b{bottom:132.035545px;}
.y8{bottom:132.586349px;}
.y8b{bottom:134.302952px;}
.ybd{bottom:142.175102px;}
.y56{bottom:144.425102px;}
.y8a{bottom:148.177952px;}
.y4a{bottom:150.710552px;}
.y7{bottom:153.961349px;}
.ybc{bottom:156.050102px;}
.y89{bottom:162.052952px;}
.y55{bottom:162.425102px;}
.ybb{bottom:169.925102px;}
.y6{bottom:170.536354px;}
.y88{bottom:175.927952px;}
.y54{bottom:180.425102px;}
.y5{bottom:189.211349px;}
.y49{bottom:198.425102px;}
.yba{bottom:199.550102px;}
.y87{bottom:207.801590px;}
.y4{bottom:213.168297px;}
.yb9{bottom:213.425102px;}
.y48{bottom:216.425102px;}
.y3{bottom:227.043297px;}
.yb8{bottom:227.300102px;}
.y47{bottom:234.425102px;}
.y86{bottom:239.675102px;}
.yb7{bottom:241.175102px;}
.y46{bottom:252.425102px;}
.yb6{bottom:255.050102px;}
.y6c{bottom:258.385941px;}
.y5c{bottom:266.650955px;}
.yb5{bottom:268.925102px;}
.y45{bottom:270.425102px;}
.y6b{bottom:272.260941px;}
.y85{bottom:274.175102px;}
.y5b{bottom:280.525955px;}
.yb4{bottom:282.800102px;}
.y84{bottom:288.050102px;}
.y44{bottom:288.425102px;}
.y23{bottom:288.425240px;}
.y71{bottom:304.550400px;}
.y43{bottom:306.425102px;}
.y22{bottom:306.425240px;}
.yb3{bottom:312.425102px;}
.y83{bottom:319.925102px;}
.y42{bottom:324.425102px;}
.y21{bottom:324.425240px;}
.yb2{bottom:326.300102px;}
.y68{bottom:326.620949px;}
.y82{bottom:333.800102px;}
.y65{bottom:334.361092px;}
.yb1{bottom:340.175102px;}
.y41{bottom:342.425102px;}
.y81{bottom:347.675102px;}
.y77{bottom:353.179207px;}
.yb0{bottom:354.050102px;}
.y40{bottom:360.425102px;}
.y20{bottom:360.425240px;}
.y80{bottom:361.550102px;}
.y76{bottom:367.054207px;}
.yaf{bottom:367.925102px;}
.y61{bottom:371.786110px;}
.y7f{bottom:375.425102px;}
.y3f{bottom:378.425102px;}
.y75{bottom:380.929207px;}
.yae{bottom:381.800102px;}
.y7e{bottom:389.300079px;}
.y74{bottom:394.804184px;}
.y53{bottom:396.425079px;}
.yad{bottom:411.425079px;}
.y3e{bottom:414.425079px;}
.y1f{bottom:417.355820px;}
.y7d{bottom:421.175079px;}
.yac{bottom:425.300079px;}
.y52{bottom:432.425079px;}
.y1e{bottom:434.605820px;}
.y7c{bottom:435.050079px;}
.y73{bottom:445.909332px;}
.y7b{bottom:448.925079px;}
.y51{bottom:450.425079px;}
.yab{bottom:453.050079px;}
.y72{bottom:459.784332px;}
.y7a{bottom:462.800079px;}
.yaa{bottom:466.925079px;}
.y3d{bottom:468.425079px;}
.y1d{bottom:469.855820px;}
.ya9{bottom:480.800079px;}
.y3c{bottom:486.425079px;}
.y1c{bottom:487.105820px;}
.y79{bottom:494.675079px;}
.y1b{bottom:504.355820px;}
.y3b{bottom:504.425079px;}
.y78{bottom:508.550079px;}
.y1a{bottom:521.605820px;}
.y3a{bottom:522.425079px;}
.ya8{bottom:536.300079px;}
.y19{bottom:538.855820px;}
.y39{bottom:540.425079px;}
.ya7{bottom:550.175079px;}
.y18{bottom:556.105820px;}
.y38{bottom:558.425079px;}
.ya6{bottom:564.050079px;}
.y6d{bottom:565.060959px;}
.y17{bottom:573.355820px;}
.y37{bottom:576.425079px;}
.ya5{bottom:577.925079px;}
.y5d{bottom:582.506104px;}
.y66{bottom:586.481094px;}
.y16{bottom:590.605820px;}
.ya4{bottom:591.800079px;}
.y69{bottom:593.321091px;}
.y36{bottom:594.425079px;}
.ya3{bottom:605.675079px;}
.y15{bottom:607.855820px;}
.y6e{bottom:611.344666px;}
.y35{bottom:612.425079px;}
.ya2{bottom:619.550079px;}
.y14{bottom:625.105820px;}
.y5f{bottom:628.789673px;}
.y34{bottom:630.425079px;}
.y67{bottom:632.764664px;}
.ya1{bottom:633.425079px;}
.y6a{bottom:639.604660px;}
.y13{bottom:642.355820px;}
.y5e{bottom:642.664673px;}
.ya0{bottom:647.300079px;}
.y33{bottom:648.425079px;}
.y62{bottom:652.526230px;}
.y12{bottom:659.605820px;}
.y9f{bottom:661.175079px;}
.y32{bottom:666.425079px;}
.y9e{bottom:675.050079px;}
.y11{bottom:676.855820px;}
.y31{bottom:684.425079px;}
.y9d{bottom:688.925079px;}
.y64{bottom:698.809799px;}
.y30{bottom:702.425079px;}
.y9c{bottom:702.800079px;}
.y63{bottom:712.684799px;}
.y9b{bottom:716.675079px;}
.y2f{bottom:720.425079px;}
.y2{bottom:725.471420px;}
.yce{bottom:727.175079px;}
.y9a{bottom:730.550079px;}
.y2e{bottom:738.425079px;}
.y1{bottom:739.346420px;}
.ycd{bottom:741.050079px;}
.y99{bottom:744.425079px;}
.ycc{bottom:754.925079px;}
.y2d{bottom:756.425079px;}
.y98{bottom:758.300079px;}
.ycb{bottom:768.800079px;}
.y97{bottom:772.175079px;}
.y2c{bottom:774.425079px;}
.ye{bottom:781.987244px;}
.yca{bottom:782.675079px;}
.y96{bottom:786.050079px;}
.y2b{bottom:792.425079px;}
.yc9{bottom:796.550079px;}
.y95{bottom:799.925079px;}
.y2a{bottom:810.425079px;}
.y94{bottom:813.800079px;}
.yd{bottom:823.686035px;}
.yc8{bottom:826.175079px;}
.y93{bottom:827.675079px;}
.y29{bottom:828.425079px;}
.yc7{bottom:840.050079px;}
.y92{bottom:841.550079px;}
.yc{bottom:846.186035px;}
.y28{bottom:846.425079px;}
.yc6{bottom:853.925079px;}
.y91{bottom:855.425079px;}
.y27{bottom:864.425079px;}
.yc5{bottom:867.800079px;}
.y90{bottom:869.300079px;}
.yc4{bottom:881.675079px;}
.y26{bottom:882.425079px;}
.yc3{bottom:895.550079px;}
.y25{bottom:900.425079px;}
.y60{bottom:905.944611px;}
.yc2{bottom:909.425079px;}
.y10{bottom:925.313965px;}
.yf{bottom:939.188965px;}
.hd{height:22.823410px;}
.hf{height:22.823429px;}
.h5{height:22.823433px;}
.h4{height:22.823456px;}
.h3{height:42.023438px;}
.h2{height:45.456000px;}
.h10{height:46.224000px;}
.h12{height:47.472000px;}
.h11{height:48.656250px;}
.h9{height:49.902832px;}
.ha{height:54.891000px;}
.h8{height:56.373000px;}
.he{height:58.800000px;}
.h7{height:61.223627px;}
.hb{height:65.274000px;}
.hc{height:72.000000px;}
.h6{height:75.114000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:70.583702px;}
.x2{left:83.745300px;}
.x6{left:87.059097px;}
.x3{left:91.417350px;}
.x7{left:95.669249px;}
.x5{left:504.854095px;}
.x4{left:527.540680px;}
@media print{
.v1{vertical-align:-17.066650pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.266602pt;}
.lsc{letter-spacing:-12.666667pt;}
.ls10{letter-spacing:-10.666667pt;}
.lsb{letter-spacing:-5.624000pt;}
.lsd{letter-spacing:-5.333333pt;}
.ls6{letter-spacing:-4.661333pt;}
.lsf{letter-spacing:-1.874667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000006pt;}
.lsa{letter-spacing:0.000016pt;}
.ls7{letter-spacing:0.000065pt;}
.lse{letter-spacing:0.000081pt;}
.ls5{letter-spacing:0.000518pt;}
.ls8{letter-spacing:0.000538pt;}
.ls0{letter-spacing:27.291724pt;}
.ls1{letter-spacing:47.124788pt;}
.ls2{letter-spacing:47.124791pt;}
.ls3{letter-spacing:47.124872pt;}
.ws6{word-spacing:-12.666667pt;}
.ws1d{word-spacing:-11.850667pt;}
.ws14{word-spacing:-10.792000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.234667pt;}
.ws18{word-spacing:-10.080000pt;}
.ws7{word-spacing:-8.866667pt;}
.ws2{word-spacing:-8.362667pt;}
.ws17{word-spacing:-8.192000pt;}
.wsa{word-spacing:-8.005333pt;}
.ws0{word-spacing:-7.466667pt;}
.wsc{word-spacing:-7.042667pt;}
.ws19{word-spacing:-1.066667pt;}
.ws1e{word-spacing:-0.256000pt;}
.ws25{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.ws11{word-spacing:0.085333pt;}
.ws29{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.384000pt;}
.wsd{word-spacing:0.426667pt;}
.ws15{word-spacing:0.469333pt;}
.ws1f{word-spacing:1.066667pt;}
.ws13{word-spacing:1.834667pt;}
.ws28{word-spacing:1.962667pt;}
.ws20{word-spacing:2.005333pt;}
.ws27{word-spacing:2.090667pt;}
.ws26{word-spacing:2.346667pt;}
.ws9{word-spacing:2.517333pt;}
.wsf{word-spacing:2.645333pt;}
.ws2a{word-spacing:3.029333pt;}
.ws21{word-spacing:3.328000pt;}
.ws16{word-spacing:3.456000pt;}
.ws12{word-spacing:3.712000pt;}
.ws1c{word-spacing:4.437333pt;}
.ws22{word-spacing:4.736000pt;}
.ws23{word-spacing:4.992000pt;}
.ws10{word-spacing:5.333333pt;}
.ws24{word-spacing:6.016000pt;}
.ws1b{word-spacing:10.666667pt;}
.wse{word-spacing:12.666667pt;}
.wsb{word-spacing:16.586667pt;}
.ws5{word-spacing:17.482667pt;}
.ws1{word-spacing:40.314102pt;}
._1{margin-left:-58.978657pt;}
._16{margin-left:-13.210112pt;}
._15{margin-left:-12.123222pt;}
._17{margin-left:-10.830642pt;}
._18{margin-left:-9.846792pt;}
._5{margin-left:-5.491200pt;}
._4{margin-left:-4.206933pt;}
._13{margin-left:-3.313600pt;}
._3{margin-left:-2.389333pt;}
._0{margin-left:-0.981333pt;}
._6{width:1.681900pt;}
._b{width:2.604267pt;}
._7{width:3.531467pt;}
._d{width:4.453600pt;}
._f{width:5.436533pt;}
._c{width:6.389065pt;}
._9{width:7.610134pt;}
._8{width:8.800800pt;}
._a{width:10.209334pt;}
._10{width:11.453597pt;}
._11{width:13.801600pt;}
._e{width:14.792544pt;}
._14{width:16.586667pt;}
._12{width:17.482667pt;}
._2{width:50.005329pt;}
.fs1{font-size:29.866667pt;}
.fs4{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:29.908800pt;}
.y50{bottom:32.125999pt;}
.y70{bottom:68.031469pt;}
.y4f{bottom:68.031600pt;}
.yb{bottom:69.921199pt;}
.y8f{bottom:70.047068pt;}
.yc1{bottom:77.044535pt;}
.y6f{bottom:80.364802pt;}
.y4e{bottom:80.364933pt;}
.y59{bottom:80.377869pt;}
.y8e{bottom:82.380402pt;}
.y5a{bottom:84.631602pt;}
.ya{bottom:86.521200pt;}
.yc0{bottom:89.377869pt;}
.y4d{bottom:92.698263pt;}
.y8d{bottom:94.713735pt;}
.y58{bottom:96.377869pt;}
.y9{bottom:101.254537pt;}
.ybf{bottom:101.711202pt;}
.y4c{bottom:105.031596pt;}
.y8c{bottom:107.047068pt;}
.y57{bottom:112.377869pt;}
.ybe{bottom:114.044535pt;}
.y4b{bottom:117.364929pt;}
.y8{bottom:117.854533pt;}
.y8b{bottom:119.380402pt;}
.ybd{bottom:126.377869pt;}
.y56{bottom:128.377869pt;}
.y8a{bottom:131.713735pt;}
.y4a{bottom:133.964935pt;}
.y7{bottom:136.854533pt;}
.ybc{bottom:138.711202pt;}
.y89{bottom:144.047068pt;}
.y55{bottom:144.377869pt;}
.ybb{bottom:151.044535pt;}
.y6{bottom:151.587870pt;}
.y88{bottom:156.380402pt;}
.y54{bottom:160.377869pt;}
.y5{bottom:168.187866pt;}
.y49{bottom:176.377869pt;}
.yba{bottom:177.377869pt;}
.y87{bottom:184.712524pt;}
.y4{bottom:189.482931pt;}
.yb9{bottom:189.711202pt;}
.y48{bottom:192.377869pt;}
.y3{bottom:201.816264pt;}
.yb8{bottom:202.044535pt;}
.y47{bottom:208.377869pt;}
.y86{bottom:213.044535pt;}
.yb7{bottom:214.377869pt;}
.y46{bottom:224.377869pt;}
.yb6{bottom:226.711202pt;}
.y6c{bottom:229.676392pt;}
.y5c{bottom:237.023071pt;}
.yb5{bottom:239.044535pt;}
.y45{bottom:240.377869pt;}
.y6b{bottom:242.009725pt;}
.y85{bottom:243.711202pt;}
.y5b{bottom:249.356405pt;}
.yb4{bottom:251.377869pt;}
.y84{bottom:256.044535pt;}
.y44{bottom:256.377869pt;}
.y23{bottom:256.377991pt;}
.y71{bottom:270.711466pt;}
.y43{bottom:272.377869pt;}
.y22{bottom:272.377991pt;}
.yb3{bottom:277.711202pt;}
.y83{bottom:284.377869pt;}
.y42{bottom:288.377869pt;}
.y21{bottom:288.377991pt;}
.yb2{bottom:290.044535pt;}
.y68{bottom:290.329732pt;}
.y82{bottom:296.711202pt;}
.y65{bottom:297.209859pt;}
.yb1{bottom:302.377869pt;}
.y41{bottom:304.377869pt;}
.y81{bottom:309.044535pt;}
.y77{bottom:313.937073pt;}
.yb0{bottom:314.711202pt;}
.y40{bottom:320.377869pt;}
.y20{bottom:320.377991pt;}
.y80{bottom:321.377869pt;}
.y76{bottom:326.270406pt;}
.yaf{bottom:327.044535pt;}
.y61{bottom:330.476542pt;}
.y7f{bottom:333.711202pt;}
.y3f{bottom:336.377869pt;}
.y75{bottom:338.603739pt;}
.yae{bottom:339.377869pt;}
.y7e{bottom:346.044515pt;}
.y74{bottom:350.937052pt;}
.y53{bottom:352.377848pt;}
.yad{bottom:365.711182pt;}
.y3e{bottom:368.377848pt;}
.y1f{bottom:370.982951pt;}
.y7d{bottom:374.377848pt;}
.yac{bottom:378.044515pt;}
.y52{bottom:384.377848pt;}
.y1e{bottom:386.316284pt;}
.y7c{bottom:386.711182pt;}
.y73{bottom:396.363851pt;}
.y7b{bottom:399.044515pt;}
.y51{bottom:400.377848pt;}
.yab{bottom:402.711182pt;}
.y72{bottom:408.697184pt;}
.y7a{bottom:411.377848pt;}
.yaa{bottom:415.044515pt;}
.y3d{bottom:416.377848pt;}
.y1d{bottom:417.649618pt;}
.ya9{bottom:427.377848pt;}
.y3c{bottom:432.377848pt;}
.y1c{bottom:432.982951pt;}
.y79{bottom:439.711182pt;}
.y1b{bottom:448.316284pt;}
.y3b{bottom:448.377848pt;}
.y78{bottom:452.044515pt;}
.y1a{bottom:463.649618pt;}
.y3a{bottom:464.377848pt;}
.ya8{bottom:476.711182pt;}
.y19{bottom:478.982951pt;}
.y39{bottom:480.377848pt;}
.ya7{bottom:489.044515pt;}
.y18{bottom:494.316284pt;}
.y38{bottom:496.377848pt;}
.ya6{bottom:501.377848pt;}
.y6d{bottom:502.276408pt;}
.y17{bottom:509.649618pt;}
.y37{bottom:512.377848pt;}
.ya5{bottom:513.711182pt;}
.y5d{bottom:517.783203pt;}
.y66{bottom:521.316528pt;}
.y16{bottom:524.982951pt;}
.ya4{bottom:526.044515pt;}
.y69{bottom:527.396525pt;}
.y36{bottom:528.377848pt;}
.ya3{bottom:538.377848pt;}
.y15{bottom:540.316284pt;}
.y6e{bottom:543.417480pt;}
.y35{bottom:544.377848pt;}
.ya2{bottom:550.711182pt;}
.y14{bottom:555.649618pt;}
.y5f{bottom:558.924154pt;}
.y34{bottom:560.377848pt;}
.y67{bottom:562.457479pt;}
.ya1{bottom:563.044515pt;}
.y6a{bottom:568.537476pt;}
.y13{bottom:570.982951pt;}
.y5e{bottom:571.257487pt;}
.ya0{bottom:575.377848pt;}
.y33{bottom:576.377848pt;}
.y62{bottom:580.023315pt;}
.y12{bottom:586.316284pt;}
.y9f{bottom:587.711182pt;}
.y32{bottom:592.377848pt;}
.y9e{bottom:600.044515pt;}
.y11{bottom:601.649618pt;}
.y31{bottom:608.377848pt;}
.y9d{bottom:612.377848pt;}
.y64{bottom:621.164266pt;}
.y30{bottom:624.377848pt;}
.y9c{bottom:624.711182pt;}
.y63{bottom:633.497599pt;}
.y9b{bottom:637.044515pt;}
.y2f{bottom:640.377848pt;}
.y2{bottom:644.863485pt;}
.yce{bottom:646.377848pt;}
.y9a{bottom:649.377848pt;}
.y2e{bottom:656.377848pt;}
.y1{bottom:657.196818pt;}
.ycd{bottom:658.711182pt;}
.y99{bottom:661.711182pt;}
.ycc{bottom:671.044515pt;}
.y2d{bottom:672.377848pt;}
.y98{bottom:674.044515pt;}
.ycb{bottom:683.377848pt;}
.y97{bottom:686.377848pt;}
.y2c{bottom:688.377848pt;}
.ye{bottom:695.099772pt;}
.yca{bottom:695.711182pt;}
.y96{bottom:698.711182pt;}
.y2b{bottom:704.377848pt;}
.yc9{bottom:708.044515pt;}
.y95{bottom:711.044515pt;}
.y2a{bottom:720.377848pt;}
.y94{bottom:723.377848pt;}
.yd{bottom:732.165365pt;}
.yc8{bottom:734.377848pt;}
.y93{bottom:735.711182pt;}
.y29{bottom:736.377848pt;}
.yc7{bottom:746.711182pt;}
.y92{bottom:748.044515pt;}
.yc{bottom:752.165365pt;}
.y28{bottom:752.377848pt;}
.yc6{bottom:759.044515pt;}
.y91{bottom:760.377848pt;}
.y27{bottom:768.377848pt;}
.yc5{bottom:771.377848pt;}
.y90{bottom:772.711182pt;}
.yc4{bottom:783.711182pt;}
.y26{bottom:784.377848pt;}
.yc3{bottom:796.044515pt;}
.y25{bottom:800.377848pt;}
.y60{bottom:805.284098pt;}
.yc2{bottom:808.377848pt;}
.y10{bottom:822.501302pt;}
.yf{bottom:834.834635pt;}
.hd{height:20.287476pt;}
.hf{height:20.287492pt;}
.h5{height:20.287496pt;}
.h4{height:20.287516pt;}
.h3{height:37.354167pt;}
.h2{height:40.405333pt;}
.h10{height:41.088000pt;}
.h12{height:42.197333pt;}
.h11{height:43.250000pt;}
.h9{height:44.358073pt;}
.ha{height:48.792000pt;}
.h8{height:50.109333pt;}
.he{height:52.266667pt;}
.h7{height:54.421002pt;}
.hb{height:58.021333pt;}
.hc{height:64.000000pt;}
.h6{height:66.768000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:62.741069pt;}
.x2{left:74.440267pt;}
.x6{left:77.385864pt;}
.x3{left:81.259867pt;}
.x7{left:85.039332pt;}
.x5{left:448.759196pt;}
.x4{left:468.925049pt;}
}




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