
    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_a364d70047451eea3a7737e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_9c30320d5cde2276d57c6291.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_3edecd8369996ff3b1274cc3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_5233d81b85326f49ae9e94bd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2fff3c12544eef4ed8b12b1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.680664;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_b31fa046398563c0003d9941.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.759277;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_2d3495233b27a21d751370a8.woff2')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_55a83ffb465d73cfee51eb2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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);}
.v3{vertical-align:-27.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.200000px;}
.v2{vertical-align:27.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls2{letter-spacing:12.600000px;}
.ls3{letter-spacing:20.400000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.500000px;}
.ws5{word-spacing:-15.000000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:-9.600000px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:10.200000px;}
.ws3{word-spacing:28.080000px;}
.wsb{word-spacing:38.448000px;}
.ws4{word-spacing:38.520000px;}
.ws8{word-spacing:40.200000px;}
.wsc{word-spacing:44.424000px;}
.wsf{word-spacing:46.728000px;}
.wsd{word-spacing:48.528000px;}
.wse{word-spacing:52.200000px;}
.ws2{word-spacing:53.928000px;}
._6{margin-left:-97.752000px;}
._1a{margin-left:-9.360000px;}
._e{margin-left:-8.304000px;}
._12{margin-left:-6.984000px;}
._3{margin-left:-5.184000px;}
._1{margin-left:-3.360000px;}
._7{margin-left:-2.088000px;}
._0{margin-left:-1.008000px;}
._2{width:1.008000px;}
._5{width:2.232000px;}
._4{width:4.032000px;}
._8{width:5.400000px;}
._9{width:6.624000px;}
._c{width:7.848000px;}
._d{width:9.504000px;}
._b{width:10.626000px;}
._a{width:12.312000px;}
._11{width:13.488000px;}
._14{width:15.048000px;}
._13{width:16.200000px;}
._17{width:19.224000px;}
._16{width:20.304000px;}
._18{width:22.614000px;}
._19{width:24.252000px;}
._10{width:25.416000px;}
._15{width:28.560000px;}
._f{width:55.200000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.400000px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y17{bottom:78.300000px;}
.y51{bottom:96.900000px;}
.y31{bottom:100.050000px;}
.y50{bottom:114.300000px;}
.y114{bottom:122.400000px;}
.y4f{bottom:131.550000px;}
.y103{bottom:140.400000px;}
.y30{bottom:142.200000px;}
.ya1{bottom:148.950000px;}
.y113{bottom:153.450000px;}
.y104{bottom:162.450000px;}
.ya5{bottom:166.200000px;}
.yf5{bottom:171.450000px;}
.y12c{bottom:175.500000px;}
.y8{bottom:180.150000px;}
.y85{bottom:180.450000px;}
.ya4{bottom:183.600000px;}
.y112{bottom:184.500000px;}
.y2f{bottom:184.800000px;}
.yf3{bottom:193.500000px;}
.yf4{bottom:202.500000px;}
.y12b{bottom:206.550000px;}
.y84{bottom:211.500000px;}
.y111{bottom:215.550000px;}
.yf2{bottom:224.550000px;}
.y4e{bottom:226.050000px;}
.y2e{bottom:227.400000px;}
.y102{bottom:228.600000px;}
.y129{bottom:228.900000px;}
.ya0{bottom:233.550000px;}
.y12a{bottom:237.600000px;}
.y83{bottom:242.550000px;}
.ye3{bottom:251.550000px;}
.yf1{bottom:255.600000px;}
.y4d{bottom:257.100000px;}
.y101{bottom:259.650000px;}
.y128{bottom:259.950000px;}
.yd4{bottom:263.850000px;}
.y8d{bottom:264.600000px;}
.y107{bottom:268.650000px;}
.y2d{bottom:270.000000px;}
.y82{bottom:273.600000px;}
.y6b{bottom:277.650000px;}
.y7{bottom:281.100000px;}
.ye2{bottom:282.600000px;}
.yf0{bottom:286.650000px;}
.y4c{bottom:288.150000px;}
.y100{bottom:290.700000px;}
.y127{bottom:291.000000px;}
.yd3{bottom:294.900000px;}
.y8c{bottom:295.650000px;}
.y106{bottom:299.700000px;}
.y81{bottom:304.650000px;}
.y6a{bottom:308.700000px;}
.y2c{bottom:312.150000px;}
.ye1{bottom:313.650000px;}
.yb8{bottom:317.700000px;}
.y4b{bottom:319.200000px;}
.y126{bottom:322.050000px;}
.yd2{bottom:325.950000px;}
.y8b{bottom:326.700000px;}
.yff{bottom:330.750000px;}
.y80{bottom:335.700000px;}
.y69{bottom:339.750000px;}
.yd9{bottom:344.700000px;}
.yb7{bottom:348.750000px;}
.y125{bottom:353.100000px;}
.y2b{bottom:354.750000px;}
.yd1{bottom:357.000000px;}
.y8a{bottom:357.750000px;}
.y4a{bottom:359.250000px;}
.yfe{bottom:361.800000px;}
.y16{bottom:363.450000px;}
.y7f{bottom:366.750000px;}
.y68{bottom:370.800000px;}
.yd8{bottom:375.750000px;}
.yb5{bottom:379.800000px;}
.y124{bottom:384.150000px;}
.yd0{bottom:388.050000px;}
.y89{bottom:388.800000px;}
.y49{bottom:390.300000px;}
.yfd{bottom:392.850000px;}
.y2a{bottom:397.350000px;}
.ya3{bottom:397.800000px;}
.y67{bottom:401.850000px;}
.y15{bottom:403.500000px;}
.y7e{bottom:406.800000px;}
.yb4{bottom:410.850000px;}
.y123{bottom:415.200000px;}
.ycf{bottom:419.100000px;}
.y88{bottom:419.850000px;}
.y48{bottom:421.350000px;}
.yfc{bottom:423.900000px;}
.y91{bottom:428.850000px;}
.yef{bottom:432.900000px;}
.y7d{bottom:437.850000px;}
.y29{bottom:439.950000px;}
.y66{bottom:441.900000px;}
.y122{bottom:446.250000px;}
.yce{bottom:450.150000px;}
.y9f{bottom:450.900000px;}
.y47{bottom:452.400000px;}
.yfb{bottom:454.950000px;}
.y87{bottom:459.900000px;}
.yee{bottom:463.950000px;}
.y7c{bottom:468.900000px;}
.y65{bottom:472.950000px;}
.y121{bottom:477.300000px;}
.ye0{bottom:477.900000px;}
.ycd{bottom:481.200000px;}
.y9e{bottom:481.950000px;}
.y28{bottom:482.550000px;}
.y6{bottom:483.000000px;}
.y46{bottom:483.450000px;}
.y14{bottom:483.600000px;}
.y86{bottom:490.950000px;}
.yed{bottom:495.000000px;}
.y7b{bottom:499.950000px;}
.y136{bottom:501.300000px;}
.y64{bottom:504.000000px;}
.ydf{bottom:508.950000px;}
.ycc{bottom:512.250000px;}
.y9d{bottom:513.000000px;}
.y45{bottom:514.500000px;}
.y13{bottom:514.650000px;}
.y120{bottom:517.350000px;}
.y90{bottom:522.000000px;}
.y27{bottom:525.000000px;}
.yec{bottom:526.050000px;}
.y7a{bottom:531.000000px;}
.y5{bottom:533.550000px;}
.yb3{bottom:535.050000px;}
.yde{bottom:540.000000px;}
.y135{bottom:542.700000px;}
.ycb{bottom:543.300000px;}
.y63{bottom:544.050000px;}
.y12{bottom:545.700000px;}
.y11f{bottom:548.400000px;}
.y8f{bottom:553.050000px;}
.y44{bottom:554.550000px;}
.yeb{bottom:557.100000px;}
.y79{bottom:562.050000px;}
.yb2{bottom:566.100000px;}
.y26{bottom:567.150000px;}
.ydd{bottom:571.050000px;}
.yca{bottom:574.350000px;}
.y62{bottom:575.100000px;}
.y11{bottom:576.750000px;}
.y11e{bottom:579.450000px;}
.y8e{bottom:584.100000px;}
.y43{bottom:585.600000px;}
.yea{bottom:588.150000px;}
.y78{bottom:593.100000px;}
.yb1{bottom:597.150000px;}
.ydc{bottom:602.100000px;}
.yc9{bottom:605.400000px;}
.y61{bottom:606.150000px;}
.y25{bottom:609.750000px;}
.y11d{bottom:610.500000px;}
.ya2{bottom:615.150000px;}
.y42{bottom:616.650000px;}
.y10{bottom:616.800000px;}
.ye9{bottom:619.200000px;}
.y77{bottom:624.150000px;}
.y134{bottom:625.500000px;}
.yb0{bottom:628.200000px;}
.ydb{bottom:633.150000px;}
.yc8{bottom:636.450000px;}
.y60{bottom:637.200000px;}
.y11c{bottom:641.550000px;}
.yb6{bottom:646.200000px;}
.y41{bottom:647.700000px;}
.yfa{bottom:650.250000px;}
.y24{bottom:652.350000px;}
.y76{bottom:655.200000px;}
.yaf{bottom:659.250000px;}
.yda{bottom:664.200000px;}
.y4{bottom:664.500000px;}
.y110{bottom:665.550000px;}
.y133{bottom:666.900000px;}
.y5f{bottom:668.250000px;}
.y11b{bottom:672.600000px;}
.yc7{bottom:675.300000px;}
.y9c{bottom:677.250000px;}
.y40{bottom:678.750000px;}
.yf9{bottom:681.300000px;}
.y75{bottom:686.250000px;}
.yae{bottom:690.300000px;}
.y23{bottom:694.950000px;}
.yd7{bottom:695.250000px;}
.y10f{bottom:696.600000px;}
.y5e{bottom:699.300000px;}
.y11a{bottom:703.650000px;}
.yc6{bottom:703.800000px;}
.y9b{bottom:708.300000px;}
.y3f{bottom:709.800000px;}
.yf8{bottom:712.350000px;}
.y74{bottom:717.300000px;}
.yad{bottom:721.350000px;}
.yd6{bottom:726.300000px;}
.y10e{bottom:727.650000px;}
.y105{bottom:730.350000px;}
.yc5{bottom:732.150000px;}
.y119{bottom:734.700000px;}
.y22{bottom:737.100000px;}
.y5d{bottom:739.350000px;}
.y3e{bottom:740.850000px;}
.y73{bottom:748.350000px;}
.y132{bottom:749.700000px;}
.yac{bottom:752.400000px;}
.yd5{bottom:757.350000px;}
.yc4{bottom:760.650000px;}
.y115{bottom:761.400000px;}
.y10d{bottom:769.050000px;}
.y9a{bottom:770.400000px;}
.y3d{bottom:771.900000px;}
.y118{bottom:774.750000px;}
.y5c{bottom:779.400000px;}
.y21{bottom:779.700000px;}
.ye8{bottom:783.450000px;}
.y72{bottom:788.400000px;}
.yc3{bottom:789.000000px;}
.y131{bottom:791.100000px;}
.yab{bottom:792.450000px;}
.y10c{bottom:800.100000px;}
.y99{bottom:801.450000px;}
.y3c{bottom:802.950000px;}
.y117{bottom:805.500000px;}
.y5b{bottom:810.450000px;}
.ye7{bottom:814.500000px;}
.yf{bottom:817.050000px;}
.y71{bottom:819.450000px;}
.y20{bottom:822.150000px;}
.yaa{bottom:823.500000px;}
.yc2{bottom:826.500000px;}
.y98{bottom:832.500000px;}
.y3{bottom:833.700000px;}
.y116{bottom:833.850000px;}
.y5a{bottom:841.500000px;}
.y3b{bottom:841.800000px;}
.yf7{bottom:845.550000px;}
.y70{bottom:850.500000px;}
.ya9{bottom:854.550000px;}
.ye{bottom:857.100000px;}
.y97{bottom:863.550000px;}
.yc1{bottom:863.850000px;}
.y1f{bottom:864.300000px;}
.y3a{bottom:870.150000px;}
.y59{bottom:872.550000px;}
.y130{bottom:873.900000px;}
.yf6{bottom:876.600000px;}
.y6f{bottom:881.550000px;}
.ya8{bottom:885.600000px;}
.yc0{bottom:892.350000px;}
.y96{bottom:894.600000px;}
.y39{bottom:898.650000px;}
.y58{bottom:903.600000px;}
.y1e{bottom:906.900000px;}
.y6e{bottom:912.600000px;}
.y12f{bottom:915.300000px;}
.ya7{bottom:916.650000px;}
.ybf{bottom:920.700000px;}
.y2{bottom:922.800000px;}
.y95{bottom:925.650000px;}
.y38{bottom:927.000000px;}
.y57{bottom:934.650000px;}
.yd{bottom:937.200000px;}
.y6d{bottom:943.650000px;}
.y10b{bottom:945.000000px;}
.ya6{bottom:947.700000px;}
.ybe{bottom:949.200000px;}
.y1d{bottom:949.500000px;}
.y94{bottom:956.700000px;}
.y37{bottom:965.700000px;}
.yc{bottom:968.250000px;}
.y6c{bottom:974.700000px;}
.y10a{bottom:976.050000px;}
.ybd{bottom:977.550000px;}
.ye6{bottom:978.750000px;}
.y93{bottom:987.750000px;}
.y1c{bottom:992.100000px;}
.y36{bottom:996.750000px;}
.y12e{bottom:998.100000px;}
.yb{bottom:999.300000px;}
.y56{bottom:1005.750000px;}
.ybc{bottom:1006.050000px;}
.y109{bottom:1017.450000px;}
.y92{bottom:1018.800000px;}
.y35{bottom:1027.800000px;}
.ya{bottom:1030.350000px;}
.y1b{bottom:1034.100000px;}
.ybb{bottom:1034.400000px;}
.y55{bottom:1036.800000px;}
.y12d{bottom:1039.500000px;}
.y108{bottom:1048.500000px;}
.ye5{bottom:1049.850000px;}
.y34{bottom:1058.850000px;}
.yba{bottom:1062.900000px;}
.y54{bottom:1067.850000px;}
.y9{bottom:1070.400000px;}
.y1a{bottom:1076.250000px;}
.ye4{bottom:1080.900000px;}
.y33{bottom:1089.900000px;}
.yb9{bottom:1091.250000px;}
.y53{bottom:1098.900000px;}
.y19{bottom:1118.250000px;}
.y32{bottom:1120.950000px;}
.y52{bottom:1129.950000px;}
.y18{bottom:1161.000000px;}
.h9{height:52.646484px;}
.h6{height:57.911133px;}
.h7{height:58.893750px;}
.h5{height:63.175781px;}
.h4{height:63.949219px;}
.h8{height:64.452539px;}
.h3{height:69.937500px;}
.h2{height:104.906250px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:85.200000px;}
.x3{left:104.400000px;}
.x9{left:106.500000px;}
.xf{left:112.200000px;}
.xb{left:120.600000px;}
.x11{left:127.650000px;}
.xc{left:138.150000px;}
.x10{left:139.200000px;}
.xd{left:140.550000px;}
.x1{left:210.600000px;}
.x5{left:261.000000px;}
.x2{left:298.650000px;}
.x6{left:305.250000px;}
.x4{left:342.600000px;}
.x7{left:354.000000px;}
.xe{left:438.450000px;}
.xa{left:442.500000px;}
@media print{
.v3{vertical-align:-24.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.400000pt;}
.v2{vertical-align:24.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls2{letter-spacing:11.200000pt;}
.ls3{letter-spacing:18.133333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.666667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:-8.533333pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:9.066667pt;}
.ws3{word-spacing:24.960000pt;}
.wsb{word-spacing:34.176000pt;}
.ws4{word-spacing:34.240000pt;}
.ws8{word-spacing:35.733333pt;}
.wsc{word-spacing:39.488000pt;}
.wsf{word-spacing:41.536000pt;}
.wsd{word-spacing:43.136000pt;}
.wse{word-spacing:46.400000pt;}
.ws2{word-spacing:47.936000pt;}
._6{margin-left:-86.890667pt;}
._1a{margin-left:-8.320000pt;}
._e{margin-left:-7.381333pt;}
._12{margin-left:-6.208000pt;}
._3{margin-left:-4.608000pt;}
._1{margin-left:-2.986667pt;}
._7{margin-left:-1.856000pt;}
._0{margin-left:-0.896000pt;}
._2{width:0.896000pt;}
._5{width:1.984000pt;}
._4{width:3.584000pt;}
._8{width:4.800000pt;}
._9{width:5.888000pt;}
._c{width:6.976000pt;}
._d{width:8.448000pt;}
._b{width:9.445333pt;}
._a{width:10.944000pt;}
._11{width:11.989333pt;}
._14{width:13.376000pt;}
._13{width:14.400000pt;}
._17{width:17.088000pt;}
._16{width:18.048000pt;}
._18{width:20.101333pt;}
._19{width:21.557333pt;}
._10{width:22.592000pt;}
._15{width:25.386667pt;}
._f{width:49.066667pt;}
.fs5{font-size:34.133333pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y17{bottom:69.600000pt;}
.y51{bottom:86.133333pt;}
.y31{bottom:88.933333pt;}
.y50{bottom:101.600000pt;}
.y114{bottom:108.800000pt;}
.y4f{bottom:116.933333pt;}
.y103{bottom:124.800000pt;}
.y30{bottom:126.400000pt;}
.ya1{bottom:132.400000pt;}
.y113{bottom:136.400000pt;}
.y104{bottom:144.400000pt;}
.ya5{bottom:147.733333pt;}
.yf5{bottom:152.400000pt;}
.y12c{bottom:156.000000pt;}
.y8{bottom:160.133333pt;}
.y85{bottom:160.400000pt;}
.ya4{bottom:163.200000pt;}
.y112{bottom:164.000000pt;}
.y2f{bottom:164.266667pt;}
.yf3{bottom:172.000000pt;}
.yf4{bottom:180.000000pt;}
.y12b{bottom:183.600000pt;}
.y84{bottom:188.000000pt;}
.y111{bottom:191.600000pt;}
.yf2{bottom:199.600000pt;}
.y4e{bottom:200.933333pt;}
.y2e{bottom:202.133333pt;}
.y102{bottom:203.200000pt;}
.y129{bottom:203.466667pt;}
.ya0{bottom:207.600000pt;}
.y12a{bottom:211.200000pt;}
.y83{bottom:215.600000pt;}
.ye3{bottom:223.600000pt;}
.yf1{bottom:227.200000pt;}
.y4d{bottom:228.533333pt;}
.y101{bottom:230.800000pt;}
.y128{bottom:231.066667pt;}
.yd4{bottom:234.533333pt;}
.y8d{bottom:235.200000pt;}
.y107{bottom:238.800000pt;}
.y2d{bottom:240.000000pt;}
.y82{bottom:243.200000pt;}
.y6b{bottom:246.800000pt;}
.y7{bottom:249.866667pt;}
.ye2{bottom:251.200000pt;}
.yf0{bottom:254.800000pt;}
.y4c{bottom:256.133333pt;}
.y100{bottom:258.400000pt;}
.y127{bottom:258.666667pt;}
.yd3{bottom:262.133333pt;}
.y8c{bottom:262.800000pt;}
.y106{bottom:266.400000pt;}
.y81{bottom:270.800000pt;}
.y6a{bottom:274.400000pt;}
.y2c{bottom:277.466667pt;}
.ye1{bottom:278.800000pt;}
.yb8{bottom:282.400000pt;}
.y4b{bottom:283.733333pt;}
.y126{bottom:286.266667pt;}
.yd2{bottom:289.733333pt;}
.y8b{bottom:290.400000pt;}
.yff{bottom:294.000000pt;}
.y80{bottom:298.400000pt;}
.y69{bottom:302.000000pt;}
.yd9{bottom:306.400000pt;}
.yb7{bottom:310.000000pt;}
.y125{bottom:313.866667pt;}
.y2b{bottom:315.333333pt;}
.yd1{bottom:317.333333pt;}
.y8a{bottom:318.000000pt;}
.y4a{bottom:319.333333pt;}
.yfe{bottom:321.600000pt;}
.y16{bottom:323.066667pt;}
.y7f{bottom:326.000000pt;}
.y68{bottom:329.600000pt;}
.yd8{bottom:334.000000pt;}
.yb5{bottom:337.600000pt;}
.y124{bottom:341.466667pt;}
.yd0{bottom:344.933333pt;}
.y89{bottom:345.600000pt;}
.y49{bottom:346.933333pt;}
.yfd{bottom:349.200000pt;}
.y2a{bottom:353.200000pt;}
.ya3{bottom:353.600000pt;}
.y67{bottom:357.200000pt;}
.y15{bottom:358.666667pt;}
.y7e{bottom:361.600000pt;}
.yb4{bottom:365.200000pt;}
.y123{bottom:369.066667pt;}
.ycf{bottom:372.533333pt;}
.y88{bottom:373.200000pt;}
.y48{bottom:374.533333pt;}
.yfc{bottom:376.800000pt;}
.y91{bottom:381.200000pt;}
.yef{bottom:384.800000pt;}
.y7d{bottom:389.200000pt;}
.y29{bottom:391.066667pt;}
.y66{bottom:392.800000pt;}
.y122{bottom:396.666667pt;}
.yce{bottom:400.133333pt;}
.y9f{bottom:400.800000pt;}
.y47{bottom:402.133333pt;}
.yfb{bottom:404.400000pt;}
.y87{bottom:408.800000pt;}
.yee{bottom:412.400000pt;}
.y7c{bottom:416.800000pt;}
.y65{bottom:420.400000pt;}
.y121{bottom:424.266667pt;}
.ye0{bottom:424.800000pt;}
.ycd{bottom:427.733333pt;}
.y9e{bottom:428.400000pt;}
.y28{bottom:428.933333pt;}
.y6{bottom:429.333333pt;}
.y46{bottom:429.733333pt;}
.y14{bottom:429.866667pt;}
.y86{bottom:436.400000pt;}
.yed{bottom:440.000000pt;}
.y7b{bottom:444.400000pt;}
.y136{bottom:445.600000pt;}
.y64{bottom:448.000000pt;}
.ydf{bottom:452.400000pt;}
.ycc{bottom:455.333333pt;}
.y9d{bottom:456.000000pt;}
.y45{bottom:457.333333pt;}
.y13{bottom:457.466667pt;}
.y120{bottom:459.866667pt;}
.y90{bottom:464.000000pt;}
.y27{bottom:466.666667pt;}
.yec{bottom:467.600000pt;}
.y7a{bottom:472.000000pt;}
.y5{bottom:474.266667pt;}
.yb3{bottom:475.600000pt;}
.yde{bottom:480.000000pt;}
.y135{bottom:482.400000pt;}
.ycb{bottom:482.933333pt;}
.y63{bottom:483.600000pt;}
.y12{bottom:485.066667pt;}
.y11f{bottom:487.466667pt;}
.y8f{bottom:491.600000pt;}
.y44{bottom:492.933333pt;}
.yeb{bottom:495.200000pt;}
.y79{bottom:499.600000pt;}
.yb2{bottom:503.200000pt;}
.y26{bottom:504.133333pt;}
.ydd{bottom:507.600000pt;}
.yca{bottom:510.533333pt;}
.y62{bottom:511.200000pt;}
.y11{bottom:512.666667pt;}
.y11e{bottom:515.066667pt;}
.y8e{bottom:519.200000pt;}
.y43{bottom:520.533333pt;}
.yea{bottom:522.800000pt;}
.y78{bottom:527.200000pt;}
.yb1{bottom:530.800000pt;}
.ydc{bottom:535.200000pt;}
.yc9{bottom:538.133333pt;}
.y61{bottom:538.800000pt;}
.y25{bottom:542.000000pt;}
.y11d{bottom:542.666667pt;}
.ya2{bottom:546.800000pt;}
.y42{bottom:548.133333pt;}
.y10{bottom:548.266667pt;}
.ye9{bottom:550.400000pt;}
.y77{bottom:554.800000pt;}
.y134{bottom:556.000000pt;}
.yb0{bottom:558.400000pt;}
.ydb{bottom:562.800000pt;}
.yc8{bottom:565.733333pt;}
.y60{bottom:566.400000pt;}
.y11c{bottom:570.266667pt;}
.yb6{bottom:574.400000pt;}
.y41{bottom:575.733333pt;}
.yfa{bottom:578.000000pt;}
.y24{bottom:579.866667pt;}
.y76{bottom:582.400000pt;}
.yaf{bottom:586.000000pt;}
.yda{bottom:590.400000pt;}
.y4{bottom:590.666667pt;}
.y110{bottom:591.600000pt;}
.y133{bottom:592.800000pt;}
.y5f{bottom:594.000000pt;}
.y11b{bottom:597.866667pt;}
.yc7{bottom:600.266667pt;}
.y9c{bottom:602.000000pt;}
.y40{bottom:603.333333pt;}
.yf9{bottom:605.600000pt;}
.y75{bottom:610.000000pt;}
.yae{bottom:613.600000pt;}
.y23{bottom:617.733333pt;}
.yd7{bottom:618.000000pt;}
.y10f{bottom:619.200000pt;}
.y5e{bottom:621.600000pt;}
.y11a{bottom:625.466667pt;}
.yc6{bottom:625.600000pt;}
.y9b{bottom:629.600000pt;}
.y3f{bottom:630.933333pt;}
.yf8{bottom:633.200000pt;}
.y74{bottom:637.600000pt;}
.yad{bottom:641.200000pt;}
.yd6{bottom:645.600000pt;}
.y10e{bottom:646.800000pt;}
.y105{bottom:649.200000pt;}
.yc5{bottom:650.800000pt;}
.y119{bottom:653.066667pt;}
.y22{bottom:655.200000pt;}
.y5d{bottom:657.200000pt;}
.y3e{bottom:658.533333pt;}
.y73{bottom:665.200000pt;}
.y132{bottom:666.400000pt;}
.yac{bottom:668.800000pt;}
.yd5{bottom:673.200000pt;}
.yc4{bottom:676.133333pt;}
.y115{bottom:676.800000pt;}
.y10d{bottom:683.600000pt;}
.y9a{bottom:684.800000pt;}
.y3d{bottom:686.133333pt;}
.y118{bottom:688.666667pt;}
.y5c{bottom:692.800000pt;}
.y21{bottom:693.066667pt;}
.ye8{bottom:696.400000pt;}
.y72{bottom:700.800000pt;}
.yc3{bottom:701.333333pt;}
.y131{bottom:703.200000pt;}
.yab{bottom:704.400000pt;}
.y10c{bottom:711.200000pt;}
.y99{bottom:712.400000pt;}
.y3c{bottom:713.733333pt;}
.y117{bottom:716.000000pt;}
.y5b{bottom:720.400000pt;}
.ye7{bottom:724.000000pt;}
.yf{bottom:726.266667pt;}
.y71{bottom:728.400000pt;}
.y20{bottom:730.800000pt;}
.yaa{bottom:732.000000pt;}
.yc2{bottom:734.666667pt;}
.y98{bottom:740.000000pt;}
.y3{bottom:741.066667pt;}
.y116{bottom:741.200000pt;}
.y5a{bottom:748.000000pt;}
.y3b{bottom:748.266667pt;}
.yf7{bottom:751.600000pt;}
.y70{bottom:756.000000pt;}
.ya9{bottom:759.600000pt;}
.ye{bottom:761.866667pt;}
.y97{bottom:767.600000pt;}
.yc1{bottom:767.866667pt;}
.y1f{bottom:768.266667pt;}
.y3a{bottom:773.466667pt;}
.y59{bottom:775.600000pt;}
.y130{bottom:776.800000pt;}
.yf6{bottom:779.200000pt;}
.y6f{bottom:783.600000pt;}
.ya8{bottom:787.200000pt;}
.yc0{bottom:793.200000pt;}
.y96{bottom:795.200000pt;}
.y39{bottom:798.800000pt;}
.y58{bottom:803.200000pt;}
.y1e{bottom:806.133333pt;}
.y6e{bottom:811.200000pt;}
.y12f{bottom:813.600000pt;}
.ya7{bottom:814.800000pt;}
.ybf{bottom:818.400000pt;}
.y2{bottom:820.266667pt;}
.y95{bottom:822.800000pt;}
.y38{bottom:824.000000pt;}
.y57{bottom:830.800000pt;}
.yd{bottom:833.066667pt;}
.y6d{bottom:838.800000pt;}
.y10b{bottom:840.000000pt;}
.ya6{bottom:842.400000pt;}
.ybe{bottom:843.733333pt;}
.y1d{bottom:844.000000pt;}
.y94{bottom:850.400000pt;}
.y37{bottom:858.400000pt;}
.yc{bottom:860.666667pt;}
.y6c{bottom:866.400000pt;}
.y10a{bottom:867.600000pt;}
.ybd{bottom:868.933333pt;}
.ye6{bottom:870.000000pt;}
.y93{bottom:878.000000pt;}
.y1c{bottom:881.866667pt;}
.y36{bottom:886.000000pt;}
.y12e{bottom:887.200000pt;}
.yb{bottom:888.266667pt;}
.y56{bottom:894.000000pt;}
.ybc{bottom:894.266667pt;}
.y109{bottom:904.400000pt;}
.y92{bottom:905.600000pt;}
.y35{bottom:913.600000pt;}
.ya{bottom:915.866667pt;}
.y1b{bottom:919.200000pt;}
.ybb{bottom:919.466667pt;}
.y55{bottom:921.600000pt;}
.y12d{bottom:924.000000pt;}
.y108{bottom:932.000000pt;}
.ye5{bottom:933.200000pt;}
.y34{bottom:941.200000pt;}
.yba{bottom:944.800000pt;}
.y54{bottom:949.200000pt;}
.y9{bottom:951.466667pt;}
.y1a{bottom:956.666667pt;}
.ye4{bottom:960.800000pt;}
.y33{bottom:968.800000pt;}
.yb9{bottom:970.000000pt;}
.y53{bottom:976.800000pt;}
.y19{bottom:994.000000pt;}
.y32{bottom:996.400000pt;}
.y52{bottom:1004.400000pt;}
.y18{bottom:1032.000000pt;}
.h9{height:46.796875pt;}
.h6{height:51.476562pt;}
.h7{height:52.350000pt;}
.h5{height:56.156250pt;}
.h4{height:56.843750pt;}
.h8{height:57.291146pt;}
.h3{height:62.166667pt;}
.h2{height:93.250000pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:75.733333pt;}
.x3{left:92.800000pt;}
.x9{left:94.666667pt;}
.xf{left:99.733333pt;}
.xb{left:107.200000pt;}
.x11{left:113.466667pt;}
.xc{left:122.800000pt;}
.x10{left:123.733333pt;}
.xd{left:124.933333pt;}
.x1{left:187.200000pt;}
.x5{left:232.000000pt;}
.x2{left:265.466667pt;}
.x6{left:271.333333pt;}
.x4{left:304.533333pt;}
.x7{left:314.666667pt;}
.xe{left:389.733333pt;}
.xa{left:393.333333pt;}
}




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