
    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_c2d8174159e374ae18a5eec6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_1f19c5b95a67c824c91be24a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.201172;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_8c8a69a5240dd2af8c40baea.woff')format("woff");}.ff3{font-family:ff3;line-height:0.952148;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_4b294dda508be19e6f75c54b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_0be4652a03998d3f7cdc7069.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_a3e9ff39933dacb8ea532404.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952148;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_141f1bb05ff9f7c1a9d8713a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_64f71941bf0ef44ffb470bec.woff')format("woff");}.ff8{font-family:ff8;line-height:0.937012;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_df24cf9b34fd7d99f20d98fe.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.852000px;}
.ls6{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.630000px;}
.ls5{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.048960px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.089280px;}
.ls4{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.391680px;}
.ls9{letter-spacing:2.309760px;}
.ls8{letter-spacing:8.789760px;}
.lsd{letter-spacing:22.469760px;}
.lsc{letter-spacing:42.041280px;}
.ls2{letter-spacing:59.345280px;}
.ls10{letter-spacing:66.545280px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws3{word-spacing:-66.096000px;}
.ws8{word-spacing:-39.744000px;}
.ws1{word-spacing:-39.600000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.921280px;}
.ws6{word-spacing:-14.118240px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-4.614480px;}
._15{margin-left:-3.510720px;}
._14{margin-left:-2.319120px;}
._0{margin-left:-1.263600px;}
._1{width:1.260000px;}
._5{width:2.384640px;}
._6{width:3.466560px;}
._a{width:5.397600px;}
._9{width:6.761520px;}
._3{width:8.295120px;}
._2{width:9.472320px;}
._f{width:10.600320px;}
._b{width:11.805840px;}
._4{width:12.983040px;}
._13{width:16.824960px;}
._12{width:18.083520px;}
._16{width:19.275840px;}
._18{width:20.401920px;}
._19{width:21.616320px;}
._7{width:22.786560px;}
._8{width:24.177600px;}
._d{width:25.374960px;}
._1b{width:32.982000px;}
._1a{width:33.986160px;}
._e{width:36.748320px;}
._c{width:39.744000px;}
._1c{width:72.731520px;}
._1d{width:73.929600px;}
._11{width:86.509440px;}
._10{width:90.550080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.420000px;}
.y1{bottom:77.580000px;}
.yde{bottom:109.080000px;}
.y25{bottom:111.420000px;}
.y76{bottom:111.600000px;}
.y50{bottom:120.240000px;}
.y24{bottom:134.640000px;}
.y75{bottom:135.180000px;}
.ydd{bottom:141.120000px;}
.y4f{bottom:143.460000px;}
.y9a{bottom:147.420000px;}
.y23{bottom:157.860000px;}
.ydc{bottom:164.340000px;}
.y4e{bottom:166.680000px;}
.y74{bottom:167.400000px;}
.y99{bottom:179.460000px;}
.y22{bottom:180.900000px;}
.ydb{bottom:187.590000px;}
.y4d{bottom:189.750000px;}
.y73{bottom:199.650000px;}
.yda{bottom:210.810000px;}
.y98{bottom:211.710000px;}
.y4c{bottom:212.970000px;}
.y21{bottom:213.150000px;}
.y72{bottom:232.230000px;}
.yd9{bottom:233.850000px;}
.y97{bottom:234.930000px;}
.y4b{bottom:236.190000px;}
.y20{bottom:245.370000px;}
.y71{bottom:255.450000px;}
.yd8{bottom:257.070000px;}
.y96{bottom:257.970000px;}
.ybb{bottom:259.230000px;}
.y4a{bottom:268.230000px;}
.y1f{bottom:277.950000px;}
.y70{bottom:278.670000px;}
.yd7{bottom:280.290000px;}
.y95{bottom:281.190000px;}
.yba{bottom:282.450000px;}
.y49{bottom:291.450000px;}
.y1e{bottom:301.710000px;}
.yd6{bottom:303.330000px;}
.y94{bottom:304.410000px;}
.yb9{bottom:305.670000px;}
.y48{bottom:314.670000px;}
.y6f{bottom:324.930000px;}
.y1d{bottom:325.470000px;}
.yd5{bottom:326.550000px;}
.y93{bottom:327.450000px;}
.yb8{bottom:328.890000px;}
.y47{bottom:337.890000px;}
.y1c{bottom:349.050000px;}
.yd4{bottom:349.770000px;}
.y92{bottom:350.670000px;}
.yb7{bottom:351.930000px;}
.y6e{bottom:357.150000px;}
.y46{bottom:360.930000px;}
.y1b{bottom:372.270000px;}
.yd3{bottom:372.810000px;}
.y91{bottom:373.890000px;}
.yb6{bottom:375.150000px;}
.y45{bottom:384.150000px;}
.y6d{bottom:389.190000px;}
.yd2{bottom:396.030000px;}
.yb5{bottom:398.370000px;}
.y1a{bottom:404.490000px;}
.y90{bottom:406.470000px;}
.y44{bottom:407.370000px;}
.yd1{bottom:419.250000px;}
.y6c{bottom:421.410000px;}
.y43{bottom:430.455000px;}
.y19{bottom:436.575000px;}
.y8f{bottom:438.735000px;}
.yd0{bottom:442.335000px;}
.y6b{bottom:444.675000px;}
.y42{bottom:462.675000px;}
.yb4{bottom:467.895000px;}
.y18{bottom:468.795000px;}
.y8e{bottom:470.955000px;}
.ycf{bottom:475.095000px;}
.y6a{bottom:476.895000px;}
.y41{bottom:485.895000px;}
.yb3{bottom:490.935000px;}
.y17{bottom:492.015000px;}
.y8d{bottom:493.995000px;}
.y69{bottom:499.935000px;}
.yce{bottom:507.315000px;}
.y40{bottom:508.935000px;}
.yb2{bottom:514.155000px;}
.y16{bottom:515.055000px;}
.y8c{bottom:517.215000px;}
.y68{bottom:523.155000px;}
.y3f{bottom:532.155000px;}
.yb1{bottom:537.375000px;}
.y15{bottom:538.275000px;}
.ycd{bottom:539.355000px;}
.y8b{bottom:540.435000px;}
.y67{bottom:546.375000px;}
.yf1{bottom:547.635000px;}
.y3e{bottom:555.375000px;}
.yb0{bottom:560.415000px;}
.y14{bottom:561.495000px;}
.ycc{bottom:562.575000px;}
.y8a{bottom:563.475000px;}
.y66{bottom:569.415000px;}
.yaf{bottom:584.175000px;}
.ycb{bottom:585.795000px;}
.y89{bottom:586.695000px;}
.y3d{bottom:587.415000px;}
.y13{bottom:593.535000px;}
.yf0{bottom:605.955000px;}
.yae{bottom:607.395000px;}
.yca{bottom:608.835000px;}
.y88{bottom:610.455000px;}
.y3c{bottom:610.635000px;}
.y65{bottom:616.575000px;}
.y12{bottom:625.755000px;}
.yef{bottom:626.115000px;}
.yad{bottom:630.435000px;}
.yc9{bottom:632.055000px;}
.y3b{bottom:633.855000px;}
.y87{bottom:634.035000px;}
.y64{bottom:639.795000px;}
.yac{bottom:654.195000px;}
.yc8{bottom:655.275000px;}
.y3a{bottom:656.895000px;}
.y86{bottom:657.255000px;}
.y11{bottom:657.975000px;}
.y63{bottom:663.015000px;}
.yee{bottom:664.275000px;}
.yab{bottom:677.445000px;}
.yc7{bottom:678.345000px;}
.y39{bottom:680.145000px;}
.y10{bottom:681.045000px;}
.yed{bottom:684.465000px;}
.y62{bottom:686.265000px;}
.yaa{bottom:700.485000px;}
.y38{bottom:703.365000px;}
.yf{bottom:704.265000px;}
.y85{bottom:704.625000px;}
.y61{bottom:709.305000px;}
.yc6{bottom:711.105000px;}
.ya9{bottom:723.705000px;}
.yec{bottom:724.785000px;}
.y37{bottom:726.405000px;}
.ye{bottom:727.485000px;}
.y84{bottom:728.385000px;}
.y60{bottom:732.525000px;}
.yc5{bottom:743.325000px;}
.y36{bottom:749.625000px;}
.yd{bottom:750.525000px;}
.y5f{bottom:755.745000px;}
.ya8{bottom:755.925000px;}
.y83{bottom:760.965000px;}
.yeb{bottom:762.765000px;}
.y35{bottom:772.845000px;}
.yc{bottom:774.285000px;}
.yc4{bottom:775.365000px;}
.y5e{bottom:778.785000px;}
.yea{bottom:782.925000px;}
.ya7{bottom:787.965000px;}
.y82{bottom:793.185000px;}
.y34{bottom:795.885000px;}
.yb{bottom:798.045000px;}
.yc3{bottom:798.585000px;}
.y5d{bottom:802.905000px;}
.ya6{bottom:811.185000px;}
.y33{bottom:819.105000px;}
.ya{bottom:821.085000px;}
.yc2{bottom:821.805000px;}
.y81{bottom:825.405000px;}
.y5c{bottom:826.125000px;}
.ya5{bottom:834.405000px;}
.ye9{bottom:841.245000px;}
.y32{bottom:842.325000px;}
.y80{bottom:848.445000px;}
.y5b{bottom:849.165000px;}
.yc1{bottom:853.845000px;}
.ya4{bottom:857.985000px;}
.ye8{bottom:861.405000px;}
.y9{bottom:864.105000px;}
.y31{bottom:865.545000px;}
.y7f{bottom:871.665000px;}
.y5a{bottom:872.385000px;}
.yc0{bottom:877.065000px;}
.ye7{bottom:881.565000px;}
.ya3{bottom:881.745000px;}
.y30{bottom:888.585000px;}
.y7e{bottom:894.885000px;}
.y59{bottom:895.605000px;}
.ybf{bottom:900.285000px;}
.ya2{bottom:904.965000px;}
.y8{bottom:911.670000px;}
.y2f{bottom:911.850000px;}
.y7d{bottom:917.970000px;}
.y58{bottom:918.690000px;}
.ye6{bottom:919.770000px;}
.ybe{bottom:923.370000px;}
.ya1{bottom:937.590000px;}
.ye5{bottom:939.930000px;}
.y7c{bottom:941.190000px;}
.y2e{bottom:944.070000px;}
.ybd{bottom:946.590000px;}
.y57{bottom:951.810000px;}
.y7{bottom:957.930000px;}
.y2d{bottom:967.110000px;}
.ya0{bottom:969.810000px;}
.y7b{bottom:973.950000px;}
.y56{bottom:974.850000px;}
.ye4{bottom:978.090000px;}
.ybc{bottom:978.810000px;}
.y2c{bottom:990.330000px;}
.y55{bottom:998.070000px;}
.ye3{bottom:998.250000px;}
.y6{bottom:1001.310000px;}
.y9f{bottom:1001.850000px;}
.y7a{bottom:1005.990000px;}
.y2b{bottom:1014.090000px;}
.y54{bottom:1021.290000px;}
.y9e{bottom:1025.070000px;}
.ye2{bottom:1036.230000px;}
.y79{bottom:1038.210000px;}
.y5{bottom:1044.510000px;}
.y2a{bottom:1046.130000px;}
.y9d{bottom:1048.290000px;}
.y53{bottom:1053.510000px;}
.ye1{bottom:1056.390000px;}
.y78{bottom:1061.430000px;}
.y29{bottom:1069.890000px;}
.y9c{bottom:1071.510000px;}
.ye0{bottom:1076.550000px;}
.y52{bottom:1085.550000px;}
.y4{bottom:1088.970000px;}
.y28{bottom:1093.470000px;}
.y77{bottom:1094.010000px;}
.y9b{bottom:1094.550000px;}
.ydf{bottom:1108.770000px;}
.y27{bottom:1117.230000px;}
.y51{bottom:1117.770000px;}
.y3{bottom:1136.490000px;}
.y26{bottom:1140.990000px;}
.h2{height:65.884219px;}
.h6{height:67.824844px;}
.h5{height:71.613281px;}
.h4{height:83.787539px;}
.h3{height:86.255508px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.235987px;}
.xa{left:121.715987px;}
.x8{left:132.335987px;}
.xb{left:148.715987px;}
.x9{left:159.329987px;}
.x3{left:225.209987px;}
.x5{left:279.389987px;}
.x6{left:285.734987px;}
.x7{left:400.034987px;}
.x4{left:441.074987px;}
.x1{left:767.849987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.757333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.043520pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.079360pt;}
.ls4{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.348160pt;}
.ls9{letter-spacing:2.053120pt;}
.ls8{letter-spacing:7.813120pt;}
.lsd{letter-spacing:19.973120pt;}
.lsc{letter-spacing:37.370027pt;}
.ls2{letter-spacing:52.751360pt;}
.ls10{letter-spacing:59.151360pt;}
.ws4{word-spacing:-58.880000pt;}
.ws3{word-spacing:-58.752000pt;}
.ws8{word-spacing:-35.328000pt;}
.ws1{word-spacing:-35.200000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.263360pt;}
.ws6{word-spacing:-12.549547pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-4.101760pt;}
._15{margin-left:-3.120640pt;}
._14{margin-left:-2.061440pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.120000pt;}
._5{width:2.119680pt;}
._6{width:3.081387pt;}
._a{width:4.797867pt;}
._9{width:6.010240pt;}
._3{width:7.373440pt;}
._2{width:8.419840pt;}
._f{width:9.422507pt;}
._b{width:10.494080pt;}
._4{width:11.540480pt;}
._13{width:14.955520pt;}
._12{width:16.074240pt;}
._16{width:17.134080pt;}
._18{width:18.135040pt;}
._19{width:19.214507pt;}
._7{width:20.254720pt;}
._8{width:21.491200pt;}
._d{width:22.555520pt;}
._1b{width:29.317333pt;}
._1a{width:30.209920pt;}
._e{width:32.665173pt;}
._c{width:35.328000pt;}
._1c{width:64.650240pt;}
._1d{width:65.715200pt;}
._11{width:76.897280pt;}
._10{width:80.488960pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:68.960000pt;}
.yde{bottom:96.960000pt;}
.y25{bottom:99.040000pt;}
.y76{bottom:99.200000pt;}
.y50{bottom:106.880000pt;}
.y24{bottom:119.680000pt;}
.y75{bottom:120.160000pt;}
.ydd{bottom:125.440000pt;}
.y4f{bottom:127.520000pt;}
.y9a{bottom:131.040000pt;}
.y23{bottom:140.320000pt;}
.ydc{bottom:146.080000pt;}
.y4e{bottom:148.160000pt;}
.y74{bottom:148.800000pt;}
.y99{bottom:159.520000pt;}
.y22{bottom:160.800000pt;}
.ydb{bottom:166.746667pt;}
.y4d{bottom:168.666667pt;}
.y73{bottom:177.466667pt;}
.yda{bottom:187.386667pt;}
.y98{bottom:188.186667pt;}
.y4c{bottom:189.306667pt;}
.y21{bottom:189.466667pt;}
.y72{bottom:206.426667pt;}
.yd9{bottom:207.866667pt;}
.y97{bottom:208.826667pt;}
.y4b{bottom:209.946667pt;}
.y20{bottom:218.106667pt;}
.y71{bottom:227.066667pt;}
.yd8{bottom:228.506667pt;}
.y96{bottom:229.306667pt;}
.ybb{bottom:230.426667pt;}
.y4a{bottom:238.426667pt;}
.y1f{bottom:247.066667pt;}
.y70{bottom:247.706667pt;}
.yd7{bottom:249.146667pt;}
.y95{bottom:249.946667pt;}
.yba{bottom:251.066667pt;}
.y49{bottom:259.066667pt;}
.y1e{bottom:268.186667pt;}
.yd6{bottom:269.626667pt;}
.y94{bottom:270.586667pt;}
.yb9{bottom:271.706667pt;}
.y48{bottom:279.706667pt;}
.y6f{bottom:288.826667pt;}
.y1d{bottom:289.306667pt;}
.yd5{bottom:290.266667pt;}
.y93{bottom:291.066667pt;}
.yb8{bottom:292.346667pt;}
.y47{bottom:300.346667pt;}
.y1c{bottom:310.266667pt;}
.yd4{bottom:310.906667pt;}
.y92{bottom:311.706667pt;}
.yb7{bottom:312.826667pt;}
.y6e{bottom:317.466667pt;}
.y46{bottom:320.826667pt;}
.y1b{bottom:330.906667pt;}
.yd3{bottom:331.386667pt;}
.y91{bottom:332.346667pt;}
.yb6{bottom:333.466667pt;}
.y45{bottom:341.466667pt;}
.y6d{bottom:345.946667pt;}
.yd2{bottom:352.026667pt;}
.yb5{bottom:354.106667pt;}
.y1a{bottom:359.546667pt;}
.y90{bottom:361.306667pt;}
.y44{bottom:362.106667pt;}
.yd1{bottom:372.666667pt;}
.y6c{bottom:374.586667pt;}
.y43{bottom:382.626667pt;}
.y19{bottom:388.066667pt;}
.y8f{bottom:389.986667pt;}
.yd0{bottom:393.186667pt;}
.y6b{bottom:395.266667pt;}
.y42{bottom:411.266667pt;}
.yb4{bottom:415.906667pt;}
.y18{bottom:416.706667pt;}
.y8e{bottom:418.626667pt;}
.ycf{bottom:422.306667pt;}
.y6a{bottom:423.906667pt;}
.y41{bottom:431.906667pt;}
.yb3{bottom:436.386667pt;}
.y17{bottom:437.346667pt;}
.y8d{bottom:439.106667pt;}
.y69{bottom:444.386667pt;}
.yce{bottom:450.946667pt;}
.y40{bottom:452.386667pt;}
.yb2{bottom:457.026667pt;}
.y16{bottom:457.826667pt;}
.y8c{bottom:459.746667pt;}
.y68{bottom:465.026667pt;}
.y3f{bottom:473.026667pt;}
.yb1{bottom:477.666667pt;}
.y15{bottom:478.466667pt;}
.ycd{bottom:479.426667pt;}
.y8b{bottom:480.386667pt;}
.y67{bottom:485.666667pt;}
.yf1{bottom:486.786667pt;}
.y3e{bottom:493.666667pt;}
.yb0{bottom:498.146667pt;}
.y14{bottom:499.106667pt;}
.ycc{bottom:500.066667pt;}
.y8a{bottom:500.866667pt;}
.y66{bottom:506.146667pt;}
.yaf{bottom:519.266667pt;}
.ycb{bottom:520.706667pt;}
.y89{bottom:521.506667pt;}
.y3d{bottom:522.146667pt;}
.y13{bottom:527.586667pt;}
.yf0{bottom:538.626667pt;}
.yae{bottom:539.906667pt;}
.yca{bottom:541.186667pt;}
.y88{bottom:542.626667pt;}
.y3c{bottom:542.786667pt;}
.y65{bottom:548.066667pt;}
.y12{bottom:556.226667pt;}
.yef{bottom:556.546667pt;}
.yad{bottom:560.386667pt;}
.yc9{bottom:561.826667pt;}
.y3b{bottom:563.426667pt;}
.y87{bottom:563.586667pt;}
.y64{bottom:568.706667pt;}
.yac{bottom:581.506667pt;}
.yc8{bottom:582.466667pt;}
.y3a{bottom:583.906667pt;}
.y86{bottom:584.226667pt;}
.y11{bottom:584.866667pt;}
.y63{bottom:589.346667pt;}
.yee{bottom:590.466667pt;}
.yab{bottom:602.173333pt;}
.yc7{bottom:602.973333pt;}
.y39{bottom:604.573333pt;}
.y10{bottom:605.373333pt;}
.yed{bottom:608.413333pt;}
.y62{bottom:610.013333pt;}
.yaa{bottom:622.653333pt;}
.y38{bottom:625.213333pt;}
.yf{bottom:626.013333pt;}
.y85{bottom:626.333333pt;}
.y61{bottom:630.493333pt;}
.yc6{bottom:632.093333pt;}
.ya9{bottom:643.293333pt;}
.yec{bottom:644.253333pt;}
.y37{bottom:645.693333pt;}
.ye{bottom:646.653333pt;}
.y84{bottom:647.453333pt;}
.y60{bottom:651.133333pt;}
.yc5{bottom:660.733333pt;}
.y36{bottom:666.333333pt;}
.yd{bottom:667.133333pt;}
.y5f{bottom:671.773333pt;}
.ya8{bottom:671.933333pt;}
.y83{bottom:676.413333pt;}
.yeb{bottom:678.013333pt;}
.y35{bottom:686.973333pt;}
.yc{bottom:688.253333pt;}
.yc4{bottom:689.213333pt;}
.y5e{bottom:692.253333pt;}
.yea{bottom:695.933333pt;}
.ya7{bottom:700.413333pt;}
.y82{bottom:705.053333pt;}
.y34{bottom:707.453333pt;}
.yb{bottom:709.373333pt;}
.yc3{bottom:709.853333pt;}
.y5d{bottom:713.693333pt;}
.ya6{bottom:721.053333pt;}
.y33{bottom:728.093333pt;}
.ya{bottom:729.853333pt;}
.yc2{bottom:730.493333pt;}
.y81{bottom:733.693333pt;}
.y5c{bottom:734.333333pt;}
.ya5{bottom:741.693333pt;}
.ye9{bottom:747.773333pt;}
.y32{bottom:748.733333pt;}
.y80{bottom:754.173333pt;}
.y5b{bottom:754.813333pt;}
.yc1{bottom:758.973333pt;}
.ya4{bottom:762.653333pt;}
.ye8{bottom:765.693333pt;}
.y9{bottom:768.093333pt;}
.y31{bottom:769.373333pt;}
.y7f{bottom:774.813333pt;}
.y5a{bottom:775.453333pt;}
.yc0{bottom:779.613333pt;}
.ye7{bottom:783.613333pt;}
.ya3{bottom:783.773333pt;}
.y30{bottom:789.853333pt;}
.y7e{bottom:795.453333pt;}
.y59{bottom:796.093333pt;}
.ybf{bottom:800.253333pt;}
.ya2{bottom:804.413333pt;}
.y8{bottom:810.373333pt;}
.y2f{bottom:810.533333pt;}
.y7d{bottom:815.973333pt;}
.y58{bottom:816.613333pt;}
.ye6{bottom:817.573333pt;}
.ybe{bottom:820.773333pt;}
.ya1{bottom:833.413333pt;}
.ye5{bottom:835.493333pt;}
.y7c{bottom:836.613333pt;}
.y2e{bottom:839.173333pt;}
.ybd{bottom:841.413333pt;}
.y57{bottom:846.053333pt;}
.y7{bottom:851.493333pt;}
.y2d{bottom:859.653333pt;}
.ya0{bottom:862.053333pt;}
.y7b{bottom:865.733333pt;}
.y56{bottom:866.533333pt;}
.ye4{bottom:869.413333pt;}
.ybc{bottom:870.053333pt;}
.y2c{bottom:880.293333pt;}
.y55{bottom:887.173333pt;}
.ye3{bottom:887.333333pt;}
.y6{bottom:890.053333pt;}
.y9f{bottom:890.533333pt;}
.y7a{bottom:894.213333pt;}
.y2b{bottom:901.413333pt;}
.y54{bottom:907.813333pt;}
.y9e{bottom:911.173333pt;}
.ye2{bottom:921.093333pt;}
.y79{bottom:922.853333pt;}
.y5{bottom:928.453333pt;}
.y2a{bottom:929.893333pt;}
.y9d{bottom:931.813333pt;}
.y53{bottom:936.453333pt;}
.ye1{bottom:939.013333pt;}
.y78{bottom:943.493333pt;}
.y29{bottom:951.013333pt;}
.y9c{bottom:952.453333pt;}
.ye0{bottom:956.933333pt;}
.y52{bottom:964.933333pt;}
.y4{bottom:967.973333pt;}
.y28{bottom:971.973333pt;}
.y77{bottom:972.453333pt;}
.y9b{bottom:972.933333pt;}
.ydf{bottom:985.573333pt;}
.y27{bottom:993.093333pt;}
.y51{bottom:993.573333pt;}
.y3{bottom:1010.213333pt;}
.y26{bottom:1014.213333pt;}
.h2{height:58.563750pt;}
.h6{height:60.288750pt;}
.h5{height:63.656250pt;}
.h4{height:74.477812pt;}
.h3{height:76.671562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.431988pt;}
.xa{left:108.191988pt;}
.x8{left:117.631988pt;}
.xb{left:132.191988pt;}
.x9{left:141.626655pt;}
.x3{left:200.186655pt;}
.x5{left:248.346655pt;}
.x6{left:253.986655pt;}
.x7{left:355.586655pt;}
.x4{left:392.066655pt;}
.x1{left:682.533322pt;}
}




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