
    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_4a66e8e7dbe037f1b59bd069.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf788882c99635bd266283b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_e8f38387285b9b91d2388359.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_f18eff4f4aa6a5bc64cfedc9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d93803eea061fb4cb35dbadc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6078941a2c774c886d1e5daa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.lsc{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.153600px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.013320px;}
.ls2{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.120600px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:5.850000px;}
.ls7{letter-spacing:10.890000px;}
.lsa{letter-spacing:24.228000px;}
.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;}
}
.ws8{word-spacing:-15.210000px;}
.ws5{word-spacing:-15.083280px;}
.ws9{word-spacing:-15.043320px;}
.ws4{word-spacing:-15.030000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.780000px;}
.ws7{word-spacing:-12.150000px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-3.983040px;}
._4{margin-left:-2.757960px;}
._1{margin-left:-1.022040px;}
._0{width:1.185840px;}
._2{width:2.538000px;}
._3{width:3.602640px;}
._8{width:4.769640px;}
._7{width:5.891760px;}
._6{width:7.214400px;}
._a{width:8.657280px;}
._f{width:9.686640px;}
._9{width:10.701360px;}
._11{width:11.775960px;}
._c{width:13.119480px;}
._10{width:20.250000px;}
._e{width:399.696000px;}
._d{width:495.660000px;}
._b{width:761.700000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5b{bottom:4.680000px;}
.y59{bottom:4.770000px;}
.y9e{bottom:22.770000px;}
.y9d{bottom:45.450000px;}
.y3{bottom:73.349908px;}
.yb0{bottom:96.659908px;}
.y56{bottom:98.369908px;}
.ye3{bottom:104.759908px;}
.y2b{bottom:110.339908px;}
.yb8{bottom:110.969908px;}
.y10f{bottom:115.739908px;}
.yaf{bottom:116.459908px;}
.y55{bottom:118.169908px;}
.ye2{bottom:127.079908px;}
.y83{bottom:129.239908px;}
.y2a{bottom:130.139908px;}
.yb7{bottom:130.859908px;}
.y10e{bottom:133.559908px;}
.yae{bottom:136.349908px;}
.y54{bottom:137.969908px;}
.ye1{bottom:144.989908px;}
.y82{bottom:149.039908px;}
.y29{bottom:149.939908px;}
.y10d{bottom:155.969908px;}
.yad{bottom:156.149908px;}
.y53{bottom:157.859908px;}
.yb6{bottom:159.659908px;}
.ye0{bottom:162.809908px;}
.y9c{bottom:163.170000px;}
.y81{bottom:168.839908px;}
.y28{bottom:169.829908px;}
.y10c{bottom:173.789908px;}
.yac{bottom:175.949908px;}
.y52{bottom:177.659908px;}
.ydf{bottom:185.129908px;}
.y80{bottom:188.729908px;}
.y27{bottom:189.629908px;}
.yab{bottom:195.839908px;}
.y10b{bottom:196.109908px;}
.y51{bottom:197.549908px;}
.yde{bottom:203.039908px;}
.y7f{bottom:208.529908px;}
.y26{bottom:209.519908px;}
.y10a{bottom:214.019908px;}
.yaa{bottom:215.639908px;}
.y50{bottom:217.349908px;}
.ydd{bottom:220.859908px;}
.y7e{bottom:228.419908px;}
.y25{bottom:229.319908px;}
.ya9{bottom:235.529908px;}
.y109{bottom:236.339908px;}
.y4f{bottom:237.149908px;}
.ydc{bottom:243.179908px;}
.y7d{bottom:248.219908px;}
.y24{bottom:249.119908px;}
.y108{bottom:254.159908px;}
.ya8{bottom:255.329908px;}
.yb5{bottom:257.039908px;}
.ydb{bottom:261.089908px;}
.y4e{bottom:266.039908px;}
.y7c{bottom:268.019908px;}
.y23{bottom:269.009908px;}
.y107{bottom:272.069908px;}
.ya7{bottom:275.129908px;}
.yb4{bottom:276.839908px;}
.yda{bottom:278.909908px;}
.y7b{bottom:287.909908px;}
.y22{bottom:288.809908px;}
.y106{bottom:294.389908px;}
.ya6{bottom:295.019908px;}
.yb3{bottom:296.729908px;}
.yd9{bottom:301.229908px;}
.y4d{bottom:303.839908px;}
.y7a{bottom:307.709908px;}
.y21{bottom:308.699908px;}
.y105{bottom:312.209908px;}
.ya5{bottom:314.819908px;}
.yb2{bottom:316.529908px;}
.yd8{bottom:319.139908px;}
.y4c{bottom:323.729908px;}
.y79{bottom:327.599908px;}
.y20{bottom:328.499908px;}
.y104{bottom:334.649908px;}
.ya4{bottom:334.739908px;}
.yd7{bottom:341.489908px;}
.y4b{bottom:343.559908px;}
.yb1{bottom:345.359908px;}
.y78{bottom:347.429908px;}
.y1f{bottom:348.329908px;}
.y103{bottom:352.469908px;}
.ya3{bottom:354.539908px;}
.yd6{bottom:359.309908px;}
.y4a{bottom:363.359908px;}
.y77{bottom:367.229908px;}
.y1e{bottom:368.219908px;}
.ya2{bottom:374.339908px;}
.y102{bottom:374.879908px;}
.yd5{bottom:381.719908px;}
.y49{bottom:383.249908px;}
.y76{bottom:387.119908px;}
.y1d{bottom:388.019908px;}
.y101{bottom:392.699908px;}
.yd4{bottom:399.539908px;}
.y48{bottom:403.049908px;}
.y75{bottom:406.919908px;}
.y1c{bottom:407.909908px;}
.ya1{bottom:411.149908px;}
.y100{bottom:415.019908px;}
.yd3{bottom:421.949908px;}
.y47{bottom:422.939908px;}
.y74{bottom:426.809908px;}
.y1b{bottom:427.709908px;}
.yff{bottom:432.929908px;}
.ya0{bottom:434.279908px;}
.y9b{bottom:435.539908px;}
.y46{bottom:442.739908px;}
.yd2{bottom:444.269908px;}
.y73{bottom:446.609908px;}
.y1a{bottom:447.509908px;}
.yfe{bottom:450.749908px;}
.y9a{bottom:455.429908px;}
.yd1{bottom:462.089908px;}
.y45{bottom:462.539908px;}
.y72{bottom:466.409908px;}
.y19{bottom:467.399908px;}
.yfd{bottom:473.069908px;}
.y99{bottom:475.229908px;}
.y44{bottom:482.429908px;}
.yd0{bottom:484.499908px;}
.y71{bottom:486.299908px;}
.y18{bottom:487.199908px;}
.yfc{bottom:490.979908px;}
.y98{bottom:495.119908px;}
.y43{bottom:502.229908px;}
.ycf{bottom:502.319908px;}
.y70{bottom:506.099908px;}
.y17{bottom:507.089908px;}
.yfb{bottom:508.799908px;}
.y97{bottom:514.919908px;}
.y42{bottom:522.119908px;}
.yce{bottom:524.639908px;}
.y6f{bottom:525.989908px;}
.yfa{bottom:531.119908px;}
.y96{bottom:534.719908px;}
.y16{bottom:535.889908px;}
.y41{bottom:541.919908px;}
.ycd{bottom:542.549908px;}
.y6e{bottom:545.789908px;}
.yf9{bottom:549.029908px;}
.y95{bottom:554.609908px;}
.y40{bottom:561.719908px;}
.ycc{bottom:564.869908px;}
.y6d{bottom:565.589908px;}
.yf8{bottom:571.349908px;}
.y15{bottom:573.149908px;}
.y94{bottom:574.409908px;}
.y3f{bottom:581.609908px;}
.ycb{bottom:582.689908px;}
.y6c{bottom:585.479908px;}
.yf7{bottom:589.169908px;}
.y93{bottom:594.299908px;}
.y14{bottom:600.059908px;}
.yca{bottom:600.599908px;}
.y3e{bottom:601.409908px;}
.y6b{bottom:605.279908px;}
.yf6{bottom:611.579908px;}
.y92{bottom:614.099908px;}
.y13{bottom:617.879908px;}
.y3d{bottom:621.299908px;}
.yc9{bottom:622.919908px;}
.y6a{bottom:625.169908px;}
.yf5{bottom:629.429908px;}
.y91{bottom:633.929908px;}
.y12{bottom:635.729908px;}
.yc8{bottom:640.859908px;}
.y3c{bottom:641.129908px;}
.y69{bottom:644.999908px;}
.yf4{bottom:651.839908px;}
.y11{bottom:653.639908px;}
.y90{bottom:653.819908px;}
.yc7{bottom:658.679908px;}
.y3b{bottom:660.929908px;}
.y68{bottom:664.799908px;}
.y115{bottom:665.159908px;}
.yf3{bottom:669.659908px;}
.y10{bottom:671.459908px;}
.y8f{bottom:673.619908px;}
.y3a{bottom:680.819908px;}
.yc6{bottom:680.999908px;}
.y67{bottom:684.689908px;}
.y114{bottom:687.479908px;}
.yf{bottom:689.369908px;}
.yf2{bottom:691.979908px;}
.y8e{bottom:693.509908px;}
.yc5{bottom:698.909908px;}
.y39{bottom:700.619908px;}
.y66{bottom:704.489908px;}
.y113{bottom:705.389908px;}
.ye{bottom:707.189908px;}
.yf1{bottom:709.889908px;}
.y8d{bottom:713.309908px;}
.yc4{bottom:716.729908px;}
.y38{bottom:720.509908px;}
.y9f{bottom:722.310000px;}
.y112{bottom:723.209908px;}
.y65{bottom:724.379908px;}
.yf0{bottom:727.709908px;}
.y8c{bottom:733.109908px;}
.yc3{bottom:739.049908px;}
.y37{bottom:740.309908px;}
.yd{bottom:743.549908px;}
.y64{bottom:744.179908px;}
.yef{bottom:745.529908px;}
.y8b{bottom:752.999908px;}
.yc2{bottom:756.959908px;}
.y36{bottom:760.109908px;}
.yc{bottom:763.439908px;}
.y63{bottom:763.979908px;}
.yee{bottom:767.939908px;}
.y8a{bottom:772.799908px;}
.yc1{bottom:774.779908px;}
.y35{bottom:779.999908px;}
.yb{bottom:783.239908px;}
.y62{bottom:783.869908px;}
.yed{bottom:785.759908px;}
.y89{bottom:792.689908px;}
.yc0{bottom:797.099908px;}
.y34{bottom:799.799908px;}
.ya{bottom:803.039908px;}
.yec{bottom:803.579908px;}
.y61{bottom:803.669908px;}
.y88{bottom:812.489908px;}
.ybf{bottom:815.009908px;}
.y33{bottom:819.689908px;}
.yeb{bottom:821.489908px;}
.y60{bottom:823.559908px;}
.y9{bottom:828.149908px;}
.y87{bottom:832.289908px;}
.ybe{bottom:837.329908px;}
.y32{bottom:839.489908px;}
.y8{bottom:842.729908px;}
.y5f{bottom:843.359908px;}
.yea{bottom:843.809908px;}
.y86{bottom:852.179908px;}
.ybd{bottom:855.149908px;}
.y31{bottom:859.289908px;}
.ye9{bottom:861.719908px;}
.y5e{bottom:863.159908px;}
.y7{bottom:867.839908px;}
.y85{bottom:871.979908px;}
.ybc{bottom:877.559908px;}
.y30{bottom:879.179908px;}
.ye8{bottom:879.539908px;}
.y5d{bottom:883.049908px;}
.y111{bottom:884.039908px;}
.ybb{bottom:895.379908px;}
.y5c{bottom:897.810000px;}
.y2f{bottom:898.979908px;}
.y84{bottom:900.869908px;}
.y6{bottom:901.049908px;}
.ye7{bottom:901.859908px;}
.yba{bottom:913.289908px;}
.y5a{bottom:914.460000px;}
.y2e{bottom:918.869908px;}
.ye6{bottom:919.769908px;}
.y58{bottom:931.050000px;}
.yb9{bottom:935.639908px;}
.ye5{bottom:937.619908px;}
.y2d{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.y110{bottom:942.119908px;}
.y2c{bottom:958.499908px;}
.ye4{bottom:959.939908px;}
.y57{bottom:961.379908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.h10{height:15.840000px;}
.he{height:15.870000px;}
.hd{height:15.930000px;}
.h7{height:38.139609px;}
.hf{height:46.991602px;}
.hc{height:48.254063px;}
.h15{height:52.971680px;}
.h3{height:52.998047px;}
.h11{height:53.896641px;}
.ha{height:54.421875px;}
.h14{height:56.320312px;}
.h8{height:58.975137px;}
.h9{height:59.004492px;}
.hb{height:60.589687px;}
.h4{height:65.526152px;}
.h5{height:66.394687px;}
.h6{height:66.569062px;}
.h13{height:250.230000px;}
.h12{height:266.610000px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w4{width:26.010000px;}
.w5{width:26.460000px;}
.w7{width:27.720000px;}
.w8{width:27.750000px;}
.w9{width:27.810000px;}
.wa{width:29.070000px;}
.w6{width:29.160000px;}
.wb{width:32.220000px;}
.wc{width:32.310000px;}
.wd{width:32.340000px;}
.w3{width:69.420000px;}
.we{width:286.890000px;}
.wf{width:304.230000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x24{left:6.480000px;}
.x11{left:9.900000px;}
.x15{left:11.610000px;}
.x25{left:13.140000px;}
.x26{left:17.010000px;}
.xf{left:28.650000px;}
.x2d{left:65.370000px;}
.x28{left:66.450000px;}
.x2{left:76.589989px;}
.x2b{left:78.390000px;}
.x2f{left:80.730000px;}
.xe{left:82.889989px;}
.x1{left:101.249989px;}
.xb{left:106.679989px;}
.xd{left:110.639989px;}
.x6{left:114.779989px;}
.x8{left:126.659989px;}
.x32{left:130.619989px;}
.x3{left:137.729989px;}
.x10{left:146.010000px;}
.x12{left:172.020000px;}
.xa{left:174.269989px;}
.x13{left:198.480000px;}
.x14{left:224.490000px;}
.x4{left:235.379989px;}
.x5{left:250.499989px;}
.x16{left:253.650000px;}
.x27{left:272.850000px;}
.x2c{left:274.020000px;}
.x17{left:282.810000px;}
.x7{left:284.609989px;}
.x2e{left:294.960000px;}
.x2a{left:296.130000px;}
.x9{left:300.899989px;}
.x18{left:310.530000px;}
.x31{left:323.159989px;}
.xc{left:335.399989px;}
.x19{left:338.280000px;}
.x29{left:363.480000px;}
.x1a{left:366.090000px;}
.x1b{left:395.160000px;}
.x1c{left:427.380000px;}
.x1d{left:459.690000px;}
.x30{left:474.989989px;}
.x1e{left:491.910000px;}
.x1f{left:524.130000px;}
.x20{left:556.470000px;}
.x21{left:588.690000px;}
.x22{left:620.910000px;}
.x23{left:653.220000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.136533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011840pt;}
.ls2{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.107200pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:5.200000pt;}
.ls7{letter-spacing:9.680000pt;}
.lsa{letter-spacing:21.536000pt;}
.ws8{word-spacing:-13.520000pt;}
.ws5{word-spacing:-13.407360pt;}
.ws9{word-spacing:-13.371840pt;}
.ws4{word-spacing:-13.360000pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.360000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-3.540480pt;}
._4{margin-left:-2.451520pt;}
._1{margin-left:-0.908480pt;}
._0{width:1.054080pt;}
._2{width:2.256000pt;}
._3{width:3.202347pt;}
._8{width:4.239680pt;}
._7{width:5.237120pt;}
._6{width:6.412800pt;}
._a{width:7.695360pt;}
._f{width:8.610347pt;}
._9{width:9.512320pt;}
._11{width:10.467520pt;}
._c{width:11.661760pt;}
._10{width:18.000000pt;}
._e{width:355.285333pt;}
._d{width:440.586667pt;}
._b{width:677.066667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5b{bottom:4.160000pt;}
.y59{bottom:4.240000pt;}
.y9e{bottom:20.240000pt;}
.y9d{bottom:40.400000pt;}
.y3{bottom:65.199919pt;}
.yb0{bottom:85.919919pt;}
.y56{bottom:87.439919pt;}
.ye3{bottom:93.119919pt;}
.y2b{bottom:98.079919pt;}
.yb8{bottom:98.639919pt;}
.y10f{bottom:102.879919pt;}
.yaf{bottom:103.519919pt;}
.y55{bottom:105.039919pt;}
.ye2{bottom:112.959919pt;}
.y83{bottom:114.879919pt;}
.y2a{bottom:115.679919pt;}
.yb7{bottom:116.319919pt;}
.y10e{bottom:118.719919pt;}
.yae{bottom:121.199919pt;}
.y54{bottom:122.639919pt;}
.ye1{bottom:128.879919pt;}
.y82{bottom:132.479919pt;}
.y29{bottom:133.279919pt;}
.y10d{bottom:138.639919pt;}
.yad{bottom:138.799919pt;}
.y53{bottom:140.319919pt;}
.yb6{bottom:141.919919pt;}
.ye0{bottom:144.719919pt;}
.y9c{bottom:145.040000pt;}
.y81{bottom:150.079919pt;}
.y28{bottom:150.959919pt;}
.y10c{bottom:154.479919pt;}
.yac{bottom:156.399919pt;}
.y52{bottom:157.919919pt;}
.ydf{bottom:164.559919pt;}
.y80{bottom:167.759919pt;}
.y27{bottom:168.559919pt;}
.yab{bottom:174.079919pt;}
.y10b{bottom:174.319919pt;}
.y51{bottom:175.599919pt;}
.yde{bottom:180.479919pt;}
.y7f{bottom:185.359919pt;}
.y26{bottom:186.239919pt;}
.y10a{bottom:190.239919pt;}
.yaa{bottom:191.679919pt;}
.y50{bottom:193.199919pt;}
.ydd{bottom:196.319919pt;}
.y7e{bottom:203.039919pt;}
.y25{bottom:203.839919pt;}
.ya9{bottom:209.359919pt;}
.y109{bottom:210.079919pt;}
.y4f{bottom:210.799919pt;}
.ydc{bottom:216.159919pt;}
.y7d{bottom:220.639919pt;}
.y24{bottom:221.439919pt;}
.y108{bottom:225.919919pt;}
.ya8{bottom:226.959919pt;}
.yb5{bottom:228.479919pt;}
.ydb{bottom:232.079919pt;}
.y4e{bottom:236.479919pt;}
.y7c{bottom:238.239919pt;}
.y23{bottom:239.119919pt;}
.y107{bottom:241.839919pt;}
.ya7{bottom:244.559919pt;}
.yb4{bottom:246.079919pt;}
.yda{bottom:247.919919pt;}
.y7b{bottom:255.919919pt;}
.y22{bottom:256.719919pt;}
.y106{bottom:261.679919pt;}
.ya6{bottom:262.239919pt;}
.yb3{bottom:263.759919pt;}
.yd9{bottom:267.759919pt;}
.y4d{bottom:270.079919pt;}
.y7a{bottom:273.519919pt;}
.y21{bottom:274.399919pt;}
.y105{bottom:277.519919pt;}
.ya5{bottom:279.839919pt;}
.yb2{bottom:281.359919pt;}
.yd8{bottom:283.679919pt;}
.y4c{bottom:287.759919pt;}
.y79{bottom:291.199919pt;}
.y20{bottom:291.999919pt;}
.y104{bottom:297.466585pt;}
.ya4{bottom:297.546585pt;}
.yd7{bottom:303.546585pt;}
.y4b{bottom:305.386585pt;}
.yb1{bottom:306.986585pt;}
.y78{bottom:308.826585pt;}
.y1f{bottom:309.626585pt;}
.y103{bottom:313.306585pt;}
.ya3{bottom:315.146585pt;}
.yd6{bottom:319.386585pt;}
.y4a{bottom:322.986585pt;}
.y77{bottom:326.426585pt;}
.y1e{bottom:327.306585pt;}
.ya2{bottom:332.746585pt;}
.y102{bottom:333.226585pt;}
.yd5{bottom:339.306585pt;}
.y49{bottom:340.666585pt;}
.y76{bottom:344.106585pt;}
.y1d{bottom:344.906585pt;}
.y101{bottom:349.066585pt;}
.yd4{bottom:355.146585pt;}
.y48{bottom:358.266585pt;}
.y75{bottom:361.706585pt;}
.y1c{bottom:362.586585pt;}
.ya1{bottom:365.466585pt;}
.y100{bottom:368.906585pt;}
.yd3{bottom:375.066585pt;}
.y47{bottom:375.946585pt;}
.y74{bottom:379.386585pt;}
.y1b{bottom:380.186585pt;}
.yff{bottom:384.826585pt;}
.ya0{bottom:386.026585pt;}
.y9b{bottom:387.146585pt;}
.y46{bottom:393.546585pt;}
.yd2{bottom:394.906585pt;}
.y73{bottom:396.986585pt;}
.y1a{bottom:397.786585pt;}
.yfe{bottom:400.666585pt;}
.y9a{bottom:404.826585pt;}
.yd1{bottom:410.746585pt;}
.y45{bottom:411.146585pt;}
.y72{bottom:414.586585pt;}
.y19{bottom:415.466585pt;}
.yfd{bottom:420.506585pt;}
.y99{bottom:422.426585pt;}
.y44{bottom:428.826585pt;}
.yd0{bottom:430.666585pt;}
.y71{bottom:432.266585pt;}
.y18{bottom:433.066585pt;}
.yfc{bottom:436.426585pt;}
.y98{bottom:440.106585pt;}
.y43{bottom:446.426585pt;}
.ycf{bottom:446.506585pt;}
.y70{bottom:449.866585pt;}
.y17{bottom:450.746585pt;}
.yfb{bottom:452.266585pt;}
.y97{bottom:457.706585pt;}
.y42{bottom:464.106585pt;}
.yce{bottom:466.346585pt;}
.y6f{bottom:467.546585pt;}
.yfa{bottom:472.106585pt;}
.y96{bottom:475.306585pt;}
.y16{bottom:476.346585pt;}
.y41{bottom:481.706585pt;}
.ycd{bottom:482.266585pt;}
.y6e{bottom:485.146585pt;}
.yf9{bottom:488.026585pt;}
.y95{bottom:492.986585pt;}
.y40{bottom:499.306585pt;}
.ycc{bottom:502.106585pt;}
.y6d{bottom:502.746585pt;}
.yf8{bottom:507.866585pt;}
.y15{bottom:509.466585pt;}
.y94{bottom:510.586585pt;}
.y3f{bottom:516.986585pt;}
.ycb{bottom:517.946585pt;}
.y6c{bottom:520.426585pt;}
.yf7{bottom:523.706585pt;}
.y93{bottom:528.266585pt;}
.y14{bottom:533.386585pt;}
.yca{bottom:533.866585pt;}
.y3e{bottom:534.586585pt;}
.y6b{bottom:538.026585pt;}
.yf6{bottom:543.626585pt;}
.y92{bottom:545.866585pt;}
.y13{bottom:549.226585pt;}
.y3d{bottom:552.266585pt;}
.yc9{bottom:553.706585pt;}
.y6a{bottom:555.706585pt;}
.yf5{bottom:559.493252pt;}
.y91{bottom:563.493252pt;}
.y12{bottom:565.093252pt;}
.yc8{bottom:569.653252pt;}
.y3c{bottom:569.893252pt;}
.y69{bottom:573.333252pt;}
.yf4{bottom:579.413252pt;}
.y11{bottom:581.013252pt;}
.y90{bottom:581.173252pt;}
.yc7{bottom:585.493252pt;}
.y3b{bottom:587.493252pt;}
.y68{bottom:590.933252pt;}
.y115{bottom:591.253252pt;}
.yf3{bottom:595.253252pt;}
.y10{bottom:596.853252pt;}
.y8f{bottom:598.773252pt;}
.y3a{bottom:605.173252pt;}
.yc6{bottom:605.333252pt;}
.y67{bottom:608.613252pt;}
.y114{bottom:611.093252pt;}
.yf{bottom:612.773252pt;}
.yf2{bottom:615.093252pt;}
.y8e{bottom:616.453252pt;}
.yc5{bottom:621.253252pt;}
.y39{bottom:622.773252pt;}
.y66{bottom:626.213252pt;}
.y113{bottom:627.013252pt;}
.ye{bottom:628.613252pt;}
.yf1{bottom:631.013252pt;}
.y8d{bottom:634.053252pt;}
.yc4{bottom:637.093252pt;}
.y38{bottom:640.453252pt;}
.y9f{bottom:642.053333pt;}
.y112{bottom:642.853252pt;}
.y65{bottom:643.893252pt;}
.yf0{bottom:646.853252pt;}
.y8c{bottom:651.653252pt;}
.yc3{bottom:656.933252pt;}
.y37{bottom:658.053252pt;}
.yd{bottom:660.933252pt;}
.y64{bottom:661.493252pt;}
.yef{bottom:662.693252pt;}
.y8b{bottom:669.333252pt;}
.yc2{bottom:672.853252pt;}
.y36{bottom:675.653252pt;}
.yc{bottom:678.613252pt;}
.y63{bottom:679.093252pt;}
.yee{bottom:682.613252pt;}
.y8a{bottom:686.933252pt;}
.yc1{bottom:688.693252pt;}
.y35{bottom:693.333252pt;}
.yb{bottom:696.213252pt;}
.y62{bottom:696.773252pt;}
.yed{bottom:698.453252pt;}
.y89{bottom:704.613252pt;}
.yc0{bottom:708.533252pt;}
.y34{bottom:710.933252pt;}
.ya{bottom:713.813252pt;}
.yec{bottom:714.293252pt;}
.y61{bottom:714.373252pt;}
.y88{bottom:722.213252pt;}
.ybf{bottom:724.453252pt;}
.y33{bottom:728.613252pt;}
.yeb{bottom:730.213252pt;}
.y60{bottom:732.053252pt;}
.y9{bottom:736.133252pt;}
.y87{bottom:739.813252pt;}
.ybe{bottom:744.293252pt;}
.y32{bottom:746.213252pt;}
.y8{bottom:749.093252pt;}
.y5f{bottom:749.653252pt;}
.yea{bottom:750.053252pt;}
.y86{bottom:757.493252pt;}
.ybd{bottom:760.133252pt;}
.y31{bottom:763.813252pt;}
.ye9{bottom:765.973252pt;}
.y5e{bottom:767.253252pt;}
.y7{bottom:771.413252pt;}
.y85{bottom:775.093252pt;}
.ybc{bottom:780.053252pt;}
.y30{bottom:781.493252pt;}
.ye8{bottom:781.813252pt;}
.y5d{bottom:784.933252pt;}
.y111{bottom:785.813252pt;}
.ybb{bottom:795.893252pt;}
.y5c{bottom:798.053333pt;}
.y2f{bottom:799.093252pt;}
.y84{bottom:800.773252pt;}
.y6{bottom:800.933252pt;}
.ye7{bottom:801.653252pt;}
.yba{bottom:811.813252pt;}
.y5a{bottom:812.853333pt;}
.y2e{bottom:816.773252pt;}
.ye6{bottom:817.573252pt;}
.y58{bottom:827.600000pt;}
.yb9{bottom:831.679919pt;}
.ye5{bottom:833.439919pt;}
.y2d{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.y110{bottom:837.439919pt;}
.y2c{bottom:851.999919pt;}
.ye4{bottom:853.279919pt;}
.y57{bottom:854.559919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.h10{height:14.080000pt;}
.he{height:14.106667pt;}
.hd{height:14.160000pt;}
.h7{height:33.901875pt;}
.hf{height:41.770312pt;}
.hc{height:42.892500pt;}
.h15{height:47.085938pt;}
.h3{height:47.109375pt;}
.h11{height:47.908125pt;}
.ha{height:48.375000pt;}
.h14{height:50.062500pt;}
.h8{height:52.422344pt;}
.h9{height:52.448437pt;}
.hb{height:53.857500pt;}
.h4{height:58.245469pt;}
.h5{height:59.017500pt;}
.h6{height:59.172500pt;}
.h13{height:222.426667pt;}
.h12{height:236.986667pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w4{width:23.120000pt;}
.w5{width:23.520000pt;}
.w7{width:24.640000pt;}
.w8{width:24.666667pt;}
.w9{width:24.720000pt;}
.wa{width:25.840000pt;}
.w6{width:25.920000pt;}
.wb{width:28.640000pt;}
.wc{width:28.720000pt;}
.wd{width:28.746667pt;}
.w3{width:61.706667pt;}
.we{width:255.013333pt;}
.wf{width:270.426667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x24{left:5.760000pt;}
.x11{left:8.800000pt;}
.x15{left:10.320000pt;}
.x25{left:11.680000pt;}
.x26{left:15.120000pt;}
.xf{left:25.466667pt;}
.x2d{left:58.106667pt;}
.x28{left:59.066667pt;}
.x2{left:68.079990pt;}
.x2b{left:69.680000pt;}
.x2f{left:71.760000pt;}
.xe{left:73.679990pt;}
.x1{left:89.999990pt;}
.xb{left:94.826657pt;}
.xd{left:98.346657pt;}
.x6{left:102.026657pt;}
.x8{left:112.586657pt;}
.x32{left:116.106657pt;}
.x3{left:122.426657pt;}
.x10{left:129.786667pt;}
.x12{left:152.906667pt;}
.xa{left:154.906657pt;}
.x13{left:176.426667pt;}
.x14{left:199.546667pt;}
.x4{left:209.226657pt;}
.x5{left:222.666657pt;}
.x16{left:225.466667pt;}
.x27{left:242.533333pt;}
.x2c{left:243.573333pt;}
.x17{left:251.386667pt;}
.x7{left:252.986657pt;}
.x2e{left:262.186667pt;}
.x2a{left:263.226667pt;}
.x9{left:267.466657pt;}
.x18{left:276.026667pt;}
.x31{left:287.253323pt;}
.xc{left:298.133323pt;}
.x19{left:300.693333pt;}
.x29{left:323.093333pt;}
.x1a{left:325.413333pt;}
.x1b{left:351.253333pt;}
.x1c{left:379.893333pt;}
.x1d{left:408.613333pt;}
.x30{left:422.213323pt;}
.x1e{left:437.253333pt;}
.x1f{left:465.893333pt;}
.x20{left:494.640000pt;}
.x21{left:523.280000pt;}
.x22{left:551.920000pt;}
.x23{left:580.640000pt;}
}




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