
    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_e01a1ce6854512fcf98d4745.woff')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_3051b7bff37b28c029346243.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_427b806abb48e98856946a45.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_22be44da9cff5d835e20e261.woff')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_80f576548a6b4c2dda7726d4.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c16c9f8668256e66a1314159.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d9bc332c3718a89d3fc12b58.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.lsc{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.168000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls12{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls1d{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.384000px;}
.ls18{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.624000px;}
.ls14{letter-spacing:0.660000px;}
.ls19{letter-spacing:1.260000px;}
.ls1c{letter-spacing:1.800000px;}
.lsf{letter-spacing:5.340000px;}
.ls13{letter-spacing:7.200000px;}
.ls4{letter-spacing:15.060000px;}
.ls16{letter-spacing:18.600000px;}
.ls17{letter-spacing:32.970000px;}
.lse{letter-spacing:36.660000px;}
.ls10{letter-spacing:40.200000px;}
.ls1a{letter-spacing:54.984000px;}
.ls15{letter-spacing:63.720000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.wse{word-spacing:-60.000000px;}
.wsd{word-spacing:-18.624000px;}
.wsf{word-spacing:-18.600000px;}
.ws9{word-spacing:-18.024000px;}
.wsa{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.832000px;}
.ws11{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsb{word-spacing:0.000000px;}
._26{margin-left:-4.320000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._1a{width:2.088000px;}
._23{width:3.294000px;}
._1b{width:4.410000px;}
._1f{width:6.336000px;}
._30{width:7.368000px;}
._18{width:8.400000px;}
._19{width:9.624000px;}
._9{width:10.728000px;}
._a{width:11.766000px;}
._22{width:13.344000px;}
._8{width:14.544000px;}
._4{width:16.206000px;}
._5{width:19.800000px;}
._6{width:20.982000px;}
._f{width:22.824000px;}
._10{width:24.264000px;}
._1e{width:26.208000px;}
._2a{width:27.450000px;}
._d{width:28.512000px;}
._e{width:30.156000px;}
._20{width:31.332000px;}
._47{width:32.346000px;}
._1d{width:33.552000px;}
._38{width:35.424000px;}
._34{width:36.768000px;}
._33{width:38.016000px;}
._16{width:39.168000px;}
._12{width:40.392000px;}
._1c{width:41.472000px;}
._27{width:43.374000px;}
._11{width:44.424000px;}
._7{width:46.080000px;}
._13{width:47.880000px;}
._14{width:49.248000px;}
._17{width:50.400000px;}
._b{width:51.864000px;}
._c{width:52.920000px;}
._42{width:54.216000px;}
._41{width:56.244000px;}
._29{width:57.600000px;}
._2e{width:59.256000px;}
._37{width:61.848000px;}
._44{width:63.504000px;}
._49{width:65.664000px;}
._43{width:67.176000px;}
._39{width:69.048000px;}
._3a{width:70.128000px;}
._3b{width:71.496000px;}
._2d{width:73.944000px;}
._15{width:75.024000px;}
._4c{width:76.104000px;}
._28{width:77.760000px;}
._32{width:79.080000px;}
._31{width:80.112000px;}
._2c{width:81.288000px;}
._4b{width:85.176000px;}
._24{width:86.256000px;}
._25{width:87.624000px;}
._45{width:89.640000px;}
._3c{width:91.584000px;}
._3d{width:92.880000px;}
._4a{width:94.014000px;}
._48{width:95.568000px;}
._3e{width:98.280000px;}
._3f{width:99.288000px;}
._2b{width:100.872000px;}
._35{width:104.328000px;}
._36{width:112.968000px;}
._2f{width:120.816000px;}
._21{width:138.240000px;}
._40{width:171.936000px;}
._46{width:267.444000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y20{bottom:3.900000px;}
.y1e{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y22{bottom:24.600000px;}
.y1d{bottom:24.615000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y1c{bottom:45.315000px;}
.y3{bottom:57.637500px;}
.y1b{bottom:66.015000px;}
.y2{bottom:81.637500px;}
.y1a{bottom:86.715000px;}
.y19{bottom:107.415000px;}
.y99{bottom:113.287500px;}
.ye7{bottom:114.337500px;}
.y3d{bottom:118.987500px;}
.y68{bottom:126.637500px;}
.y7d{bottom:135.187500px;}
.y98{bottom:137.137500px;}
.ye6{bottom:138.187500px;}
.y3c{bottom:142.687500px;}
.yc0{bottom:147.037500px;}
.y67{bottom:150.495000px;}
.ye8{bottom:151.995000px;}
.y7c{bottom:159.045000px;}
.y97{bottom:160.995000px;}
.ye5{bottom:161.880000px;}
.y3b{bottom:166.545000px;}
.ybf{bottom:170.745000px;}
.y66{bottom:174.345000px;}
.y7b{bottom:182.745000px;}
.y96{bottom:184.845000px;}
.ye4{bottom:185.745000px;}
.y3a{bottom:190.395000px;}
.ybe{bottom:194.595000px;}
.y65{bottom:198.195000px;}
.y7a{bottom:206.580000px;}
.y95{bottom:208.545000px;}
.ye3{bottom:209.580000px;}
.y39{bottom:214.095000px;}
.ybd{bottom:219.630000px;}
.ya2{bottom:221.745000px;}
.y64{bottom:221.895000px;}
.y79{bottom:230.445000px;}
.y94{bottom:232.380000px;}
.ye2{bottom:233.445000px;}
.y38{bottom:237.945000px;}
.yc1{bottom:238.845000px;}
.ybc{bottom:243.495000px;}
.ya1{bottom:245.595000px;}
.y63{bottom:245.745000px;}
.y78{bottom:254.145000px;}
.y93{bottom:256.245000px;}
.ye1{bottom:257.145000px;}
.y37{bottom:261.795000px;}
.ybb{bottom:267.330000px;}
.ya0{bottom:269.445000px;}
.y62{bottom:269.595000px;}
.y77{bottom:274.080000px;}
.y92{bottom:279.945000px;}
.ye0{bottom:280.995000px;}
.y36{bottom:285.495000px;}
.yba{bottom:291.045000px;}
.y61{bottom:293.295000px;}
.y91{bottom:303.795000px;}
.ydf{bottom:304.845000px;}
.y35{bottom:309.345000px;}
.yb9{bottom:316.245000px;}
.y9f{bottom:316.995000px;}
.y60{bottom:317.130000px;}
.y90{bottom:327.630000px;}
.yde{bottom:328.545000px;}
.y34{bottom:333.195000px;}
.yb8{bottom:339.945000px;}
.y9e{bottom:340.830000px;}
.y5f{bottom:340.995000px;}
.y8f{bottom:351.330000px;}
.ydd{bottom:352.395000px;}
.y33{bottom:356.895000px;}
.yb7{bottom:363.795000px;}
.y5e{bottom:364.695000px;}
.y8e{bottom:375.195000px;}
.ydc{bottom:376.245000px;}
.y32{bottom:380.775000px;}
.yb6{bottom:387.675000px;}
.y9d{bottom:388.425000px;}
.y5d{bottom:388.575000px;}
.y8d{bottom:399.075000px;}
.ydb{bottom:399.975000px;}
.y31{bottom:404.625000px;}
.yb5{bottom:411.375000px;}
.y9c{bottom:412.275000px;}
.y5c{bottom:412.425000px;}
.y8c{bottom:422.775000px;}
.yda{bottom:423.825000px;}
.y30{bottom:428.325000px;}
.y5b{bottom:436.125000px;}
.yb4{bottom:436.575000px;}
.y8b{bottom:446.625000px;}
.yd9{bottom:447.675000px;}
.y2f{bottom:452.175000px;}
.y9b{bottom:459.825000px;}
.y5a{bottom:459.975000px;}
.yb3{bottom:460.275000px;}
.y8a{bottom:470.475000px;}
.yd8{bottom:471.375000px;}
.y2e{bottom:476.025000px;}
.y9a{bottom:479.775000px;}
.y59{bottom:483.825000px;}
.yb2{bottom:484.125000px;}
.y89{bottom:494.175000px;}
.y76{bottom:494.925000px;}
.yd7{bottom:495.225000px;}
.y2d{bottom:499.875000px;}
.y58{bottom:507.525000px;}
.yb1{bottom:507.975000px;}
.y88{bottom:518.025000px;}
.y75{bottom:518.775000px;}
.yd6{bottom:519.075000px;}
.y2c{bottom:523.575000px;}
.y57{bottom:531.375000px;}
.yb0{bottom:531.675000px;}
.y87{bottom:541.875000px;}
.y74{bottom:542.475000px;}
.yd5{bottom:542.775000px;}
.y2b{bottom:547.425000px;}
.y56{bottom:555.225000px;}
.yaf{bottom:556.875000px;}
.y86{bottom:565.575000px;}
.y73{bottom:566.325000px;}
.yd4{bottom:566.625000px;}
.y2a{bottom:571.275000px;}
.y55{bottom:579.075000px;}
.yae{bottom:580.575000px;}
.y85{bottom:589.425000px;}
.y72{bottom:590.175000px;}
.yd3{bottom:590.475000px;}
.y29{bottom:594.975000px;}
.y54{bottom:602.775000px;}
.yad{bottom:604.425000px;}
.y84{bottom:613.275000px;}
.y71{bottom:613.875000px;}
.yd2{bottom:614.325000px;}
.y28{bottom:618.825000px;}
.y53{bottom:626.625000px;}
.yac{bottom:628.275000px;}
.y83{bottom:637.125000px;}
.y70{bottom:637.725000px;}
.yd1{bottom:638.025000px;}
.y27{bottom:642.675000px;}
.y52{bottom:650.475000px;}
.yab{bottom:651.975000px;}
.y82{bottom:660.825000px;}
.y6f{bottom:661.575000px;}
.yd0{bottom:661.875000px;}
.y26{bottom:666.375000px;}
.y51{bottom:674.175000px;}
.yaa{bottom:675.825000px;}
.y81{bottom:684.675000px;}
.y6e{bottom:685.275000px;}
.ycf{bottom:685.725000px;}
.y25{bottom:690.225000px;}
.y50{bottom:698.025000px;}
.ya9{bottom:699.675000px;}
.y80{bottom:708.525000px;}
.y6d{bottom:709.125000px;}
.yce{bottom:709.425000px;}
.y24{bottom:714.075000px;}
.y4f{bottom:721.875000px;}
.ya8{bottom:723.525000px;}
.y7f{bottom:732.225000px;}
.y6c{bottom:732.975000px;}
.ycd{bottom:733.275000px;}
.y4e{bottom:745.620000px;}
.y23{bottom:746.820000px;}
.ya7{bottom:747.270000px;}
.y7e{bottom:752.220000px;}
.y6b{bottom:756.720000px;}
.ycc{bottom:757.170000px;}
.y21{bottom:763.620000px;}
.y4d{bottom:769.470000px;}
.ya6{bottom:771.120000px;}
.y6a{bottom:780.570000px;}
.ycb{bottom:780.870000px;}
.y4c{bottom:793.320000px;}
.ya5{bottom:794.970000px;}
.y69{bottom:804.420000px;}
.yca{bottom:804.720000px;}
.y1f{bottom:805.020000px;}
.y4b{bottom:817.020000px;}
.ya4{bottom:818.670000px;}
.y18{bottom:825.705000px;}
.yc9{bottom:828.570000px;}
.ya3{bottom:838.620000px;}
.y4a{bottom:840.870000px;}
.yc8{bottom:852.270000px;}
.y49{bottom:864.720000px;}
.yc7{bottom:876.120000px;}
.y48{bottom:888.420000px;}
.yc6{bottom:899.970000px;}
.y47{bottom:912.270000px;}
.yc5{bottom:923.670000px;}
.y46{bottom:936.120000px;}
.yc4{bottom:947.520000px;}
.y17{bottom:953.520000px;}
.y45{bottom:959.970000px;}
.yc3{bottom:971.370000px;}
.y16{bottom:972.720000px;}
.y44{bottom:983.670000px;}
.yc2{bottom:991.170000px;}
.y15{bottom:993.420000px;}
.y43{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.685000px;}
.h10{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.he{height:50.484375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h12{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h11{height:74.004654px;}
.h2{height:82.441406px;}
.hd{height:124.200000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1c{left:95.699987px;}
.x1a{left:100.200000px;}
.x19{left:104.700000px;}
.x10{left:105.899987px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x11{left:315.494987px;}
.x23{left:425.174987px;}
.x1f{left:439.274987px;}
.x1d{left:457.274987px;}
.x13{left:478.124987px;}
.x20{left:484.274987px;}
.x1e{left:510.374987px;}
.x12{left:572.174987px;}
.x18{left:595.574987px;}
.x17{left:604.124987px;}
.x14{left:609.074987px;}
.x16{left:620.624987px;}
.xc{left:625.425000px;}
.xf{left:713.655000px;}
.x25{left:819.119987px;}
.x2{left:829.619987px;}
.x15{left:850.619987px;}
.x24{left:855.569987px;}
.x21{left:869.069987px;}
.x22{left:887.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.149333pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls12{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.341333pt;}
.ls18{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.554667pt;}
.ls14{letter-spacing:0.586667pt;}
.ls19{letter-spacing:1.120000pt;}
.ls1c{letter-spacing:1.600000pt;}
.lsf{letter-spacing:4.746667pt;}
.ls13{letter-spacing:6.400000pt;}
.ls4{letter-spacing:13.386667pt;}
.ls16{letter-spacing:16.533333pt;}
.ls17{letter-spacing:29.306667pt;}
.lse{letter-spacing:32.586667pt;}
.ls10{letter-spacing:35.733333pt;}
.ls1a{letter-spacing:48.874667pt;}
.ls15{letter-spacing:56.640000pt;}
.ws10{word-spacing:-64.000000pt;}
.wse{word-spacing:-53.333333pt;}
.wsd{word-spacing:-16.554667pt;}
.wsf{word-spacing:-16.533333pt;}
.ws9{word-spacing:-16.021333pt;}
.wsa{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.850667pt;}
.ws11{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsb{word-spacing:0.000000pt;}
._26{margin-left:-3.840000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._1a{width:1.856000pt;}
._23{width:2.928000pt;}
._1b{width:3.920000pt;}
._1f{width:5.632000pt;}
._30{width:6.549333pt;}
._18{width:7.466667pt;}
._19{width:8.554667pt;}
._9{width:9.536000pt;}
._a{width:10.458667pt;}
._22{width:11.861333pt;}
._8{width:12.928000pt;}
._4{width:14.405333pt;}
._5{width:17.600000pt;}
._6{width:18.650667pt;}
._f{width:20.288000pt;}
._10{width:21.568000pt;}
._1e{width:23.296000pt;}
._2a{width:24.400000pt;}
._d{width:25.344000pt;}
._e{width:26.805333pt;}
._20{width:27.850667pt;}
._47{width:28.752000pt;}
._1d{width:29.824000pt;}
._38{width:31.488000pt;}
._34{width:32.682667pt;}
._33{width:33.792000pt;}
._16{width:34.816000pt;}
._12{width:35.904000pt;}
._1c{width:36.864000pt;}
._27{width:38.554667pt;}
._11{width:39.488000pt;}
._7{width:40.960000pt;}
._13{width:42.560000pt;}
._14{width:43.776000pt;}
._17{width:44.800000pt;}
._b{width:46.101333pt;}
._c{width:47.040000pt;}
._42{width:48.192000pt;}
._41{width:49.994667pt;}
._29{width:51.200000pt;}
._2e{width:52.672000pt;}
._37{width:54.976000pt;}
._44{width:56.448000pt;}
._49{width:58.368000pt;}
._43{width:59.712000pt;}
._39{width:61.376000pt;}
._3a{width:62.336000pt;}
._3b{width:63.552000pt;}
._2d{width:65.728000pt;}
._15{width:66.688000pt;}
._4c{width:67.648000pt;}
._28{width:69.120000pt;}
._32{width:70.293333pt;}
._31{width:71.210667pt;}
._2c{width:72.256000pt;}
._4b{width:75.712000pt;}
._24{width:76.672000pt;}
._25{width:77.888000pt;}
._45{width:79.680000pt;}
._3c{width:81.408000pt;}
._3d{width:82.560000pt;}
._4a{width:83.568000pt;}
._48{width:84.949333pt;}
._3e{width:87.360000pt;}
._3f{width:88.256000pt;}
._2b{width:89.664000pt;}
._35{width:92.736000pt;}
._36{width:100.416000pt;}
._2f{width:107.392000pt;}
._21{width:122.880000pt;}
._40{width:152.832000pt;}
._46{width:237.728000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y20{bottom:3.466667pt;}
.y1e{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y22{bottom:21.866667pt;}
.y1d{bottom:21.880000pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y1c{bottom:40.280000pt;}
.y3{bottom:51.233333pt;}
.y1b{bottom:58.680000pt;}
.y2{bottom:72.566667pt;}
.y1a{bottom:77.080000pt;}
.y19{bottom:95.480000pt;}
.y99{bottom:100.700000pt;}
.ye7{bottom:101.633333pt;}
.y3d{bottom:105.766667pt;}
.y68{bottom:112.566667pt;}
.y7d{bottom:120.166667pt;}
.y98{bottom:121.900000pt;}
.ye6{bottom:122.833333pt;}
.y3c{bottom:126.833333pt;}
.yc0{bottom:130.700000pt;}
.y67{bottom:133.773333pt;}
.ye8{bottom:135.106667pt;}
.y7c{bottom:141.373333pt;}
.y97{bottom:143.106667pt;}
.ye5{bottom:143.893333pt;}
.y3b{bottom:148.040000pt;}
.ybf{bottom:151.773333pt;}
.y66{bottom:154.973333pt;}
.y7b{bottom:162.440000pt;}
.y96{bottom:164.306667pt;}
.ye4{bottom:165.106667pt;}
.y3a{bottom:169.240000pt;}
.ybe{bottom:172.973333pt;}
.y65{bottom:176.173333pt;}
.y7a{bottom:183.626667pt;}
.y95{bottom:185.373333pt;}
.ye3{bottom:186.293333pt;}
.y39{bottom:190.306667pt;}
.ybd{bottom:195.226667pt;}
.ya2{bottom:197.106667pt;}
.y64{bottom:197.240000pt;}
.y79{bottom:204.840000pt;}
.y94{bottom:206.560000pt;}
.ye2{bottom:207.506667pt;}
.y38{bottom:211.506667pt;}
.yc1{bottom:212.306667pt;}
.ybc{bottom:216.440000pt;}
.ya1{bottom:218.306667pt;}
.y63{bottom:218.440000pt;}
.y78{bottom:225.906667pt;}
.y93{bottom:227.773333pt;}
.ye1{bottom:228.573333pt;}
.y37{bottom:232.706667pt;}
.ybb{bottom:237.626667pt;}
.ya0{bottom:239.506667pt;}
.y62{bottom:239.640000pt;}
.y77{bottom:243.626667pt;}
.y92{bottom:248.840000pt;}
.ye0{bottom:249.773333pt;}
.y36{bottom:253.773333pt;}
.yba{bottom:258.706667pt;}
.y61{bottom:260.706667pt;}
.y91{bottom:270.040000pt;}
.ydf{bottom:270.973333pt;}
.y35{bottom:274.973333pt;}
.yb9{bottom:281.106667pt;}
.y9f{bottom:281.773333pt;}
.y60{bottom:281.893333pt;}
.y90{bottom:291.226667pt;}
.yde{bottom:292.040000pt;}
.y34{bottom:296.173333pt;}
.yb8{bottom:302.173333pt;}
.y9e{bottom:302.960000pt;}
.y5f{bottom:303.106667pt;}
.y8f{bottom:312.293333pt;}
.ydd{bottom:313.240000pt;}
.y33{bottom:317.240000pt;}
.yb7{bottom:323.373333pt;}
.y5e{bottom:324.173333pt;}
.y8e{bottom:333.506667pt;}
.ydc{bottom:334.440000pt;}
.y32{bottom:338.466667pt;}
.yb6{bottom:344.600000pt;}
.y9d{bottom:345.266667pt;}
.y5d{bottom:345.400000pt;}
.y8d{bottom:354.733333pt;}
.ydb{bottom:355.533333pt;}
.y31{bottom:359.666667pt;}
.yb5{bottom:365.666667pt;}
.y9c{bottom:366.466667pt;}
.y5c{bottom:366.600000pt;}
.y8c{bottom:375.800000pt;}
.yda{bottom:376.733333pt;}
.y30{bottom:380.733333pt;}
.y5b{bottom:387.666667pt;}
.yb4{bottom:388.066667pt;}
.y8b{bottom:397.000000pt;}
.yd9{bottom:397.933333pt;}
.y2f{bottom:401.933333pt;}
.y9b{bottom:408.733333pt;}
.y5a{bottom:408.866667pt;}
.yb3{bottom:409.133333pt;}
.y8a{bottom:418.200000pt;}
.yd8{bottom:419.000000pt;}
.y2e{bottom:423.133333pt;}
.y9a{bottom:426.466667pt;}
.y59{bottom:430.066667pt;}
.yb2{bottom:430.333333pt;}
.y89{bottom:439.266667pt;}
.y76{bottom:439.933333pt;}
.yd7{bottom:440.200000pt;}
.y2d{bottom:444.333333pt;}
.y58{bottom:451.133333pt;}
.yb1{bottom:451.533333pt;}
.y88{bottom:460.466667pt;}
.y75{bottom:461.133333pt;}
.yd6{bottom:461.400000pt;}
.y2c{bottom:465.400000pt;}
.y57{bottom:472.333333pt;}
.yb0{bottom:472.600000pt;}
.y87{bottom:481.666667pt;}
.y74{bottom:482.200000pt;}
.yd5{bottom:482.466667pt;}
.y2b{bottom:486.600000pt;}
.y56{bottom:493.533333pt;}
.yaf{bottom:495.000000pt;}
.y86{bottom:502.733333pt;}
.y73{bottom:503.400000pt;}
.yd4{bottom:503.666667pt;}
.y2a{bottom:507.800000pt;}
.y55{bottom:514.733333pt;}
.yae{bottom:516.066667pt;}
.y85{bottom:523.933333pt;}
.y72{bottom:524.600000pt;}
.yd3{bottom:524.866667pt;}
.y29{bottom:528.866667pt;}
.y54{bottom:535.800000pt;}
.yad{bottom:537.266667pt;}
.y84{bottom:545.133333pt;}
.y71{bottom:545.666667pt;}
.yd2{bottom:546.066667pt;}
.y28{bottom:550.066667pt;}
.y53{bottom:557.000000pt;}
.yac{bottom:558.466667pt;}
.y83{bottom:566.333333pt;}
.y70{bottom:566.866667pt;}
.yd1{bottom:567.133333pt;}
.y27{bottom:571.266667pt;}
.y52{bottom:578.200000pt;}
.yab{bottom:579.533333pt;}
.y82{bottom:587.400000pt;}
.y6f{bottom:588.066667pt;}
.yd0{bottom:588.333333pt;}
.y26{bottom:592.333333pt;}
.y51{bottom:599.266667pt;}
.yaa{bottom:600.733333pt;}
.y81{bottom:608.600000pt;}
.y6e{bottom:609.133333pt;}
.ycf{bottom:609.533333pt;}
.y25{bottom:613.533333pt;}
.y50{bottom:620.466667pt;}
.ya9{bottom:621.933333pt;}
.y80{bottom:629.800000pt;}
.y6d{bottom:630.333333pt;}
.yce{bottom:630.600000pt;}
.y24{bottom:634.733333pt;}
.y4f{bottom:641.666667pt;}
.ya8{bottom:643.133333pt;}
.y7f{bottom:650.866667pt;}
.y6c{bottom:651.533333pt;}
.ycd{bottom:651.800000pt;}
.y4e{bottom:662.773333pt;}
.y23{bottom:663.840000pt;}
.ya7{bottom:664.240000pt;}
.y7e{bottom:668.640000pt;}
.y6b{bottom:672.640000pt;}
.ycc{bottom:673.040000pt;}
.y21{bottom:678.773333pt;}
.y4d{bottom:683.973333pt;}
.ya6{bottom:685.440000pt;}
.y6a{bottom:693.840000pt;}
.ycb{bottom:694.106667pt;}
.y4c{bottom:705.173333pt;}
.ya5{bottom:706.640000pt;}
.y69{bottom:715.040000pt;}
.yca{bottom:715.306667pt;}
.y1f{bottom:715.573333pt;}
.y4b{bottom:726.240000pt;}
.ya4{bottom:727.706667pt;}
.y18{bottom:733.960000pt;}
.yc9{bottom:736.506667pt;}
.ya3{bottom:745.440000pt;}
.y4a{bottom:747.440000pt;}
.yc8{bottom:757.573333pt;}
.y49{bottom:768.640000pt;}
.yc7{bottom:778.773333pt;}
.y48{bottom:789.706667pt;}
.yc6{bottom:799.973333pt;}
.y47{bottom:810.906667pt;}
.yc5{bottom:821.040000pt;}
.y46{bottom:832.106667pt;}
.yc4{bottom:842.240000pt;}
.y17{bottom:847.573333pt;}
.y45{bottom:853.306667pt;}
.yc3{bottom:863.440000pt;}
.y16{bottom:864.640000pt;}
.y44{bottom:874.373333pt;}
.yc2{bottom:881.040000pt;}
.y15{bottom:883.040000pt;}
.y43{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.386667pt;}
.h10{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.he{height:44.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h12{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h11{height:65.781915pt;}
.h2{height:73.281250pt;}
.hd{height:110.400000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1c{left:85.066655pt;}
.x1a{left:89.066667pt;}
.x19{left:93.066667pt;}
.x10{left:94.133322pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x11{left:280.439988pt;}
.x23{left:377.933322pt;}
.x1f{left:390.466655pt;}
.x1d{left:406.466655pt;}
.x13{left:424.999988pt;}
.x20{left:430.466655pt;}
.x1e{left:453.666655pt;}
.x12{left:508.599988pt;}
.x18{left:529.399988pt;}
.x17{left:536.999988pt;}
.x14{left:541.399988pt;}
.x16{left:551.666655pt;}
.xc{left:555.933333pt;}
.xf{left:634.360000pt;}
.x25{left:728.106655pt;}
.x2{left:737.439988pt;}
.x15{left:756.106655pt;}
.x24{left:760.506655pt;}
.x21{left:772.506655pt;}
.x22{left:788.506655pt;}
}




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