
    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_9004746d1f6a3d4b8207da25.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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_c2ed760c2bde3339c7ecf564.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_3da846c1f445ae7bb60fdfc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.799805;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_b8e52c918f515a01d41dfadd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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);}
.v6{vertical-align:-47.400000px;}
.v1{vertical-align:-15.600000px;}
.v3{vertical-align:-14.400000px;}
.v2{vertical-align:-12.600000px;}
.v5{vertical-align:-9.000000px;}
.v4{vertical-align:-7.800000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.156000px;}
.ls16{letter-spacing:0.312000px;}
.lsb{letter-spacing:0.429600px;}
.ls15{letter-spacing:8.208000px;}
.ls5{letter-spacing:10.200000px;}
.lsd{letter-spacing:22.200000px;}
.ls7{letter-spacing:34.200000px;}
.lsa{letter-spacing:46.200000px;}
.ls4{letter-spacing:60.600000px;}
.ls9{letter-spacing:64.200000px;}
.ls3{letter-spacing:84.600000px;}
.lsc{letter-spacing:85.800000px;}
.ls1{letter-spacing:103.800000px;}
.ls11{letter-spacing:108.000000px;}
.lsf{letter-spacing:112.200000px;}
.ls10{letter-spacing:144.600000px;}
.lse{letter-spacing:192.600000px;}
.ls13{letter-spacing:193.200000px;}
.ls12{letter-spacing:199.200000px;}
.ls8{letter-spacing:202.200000px;}
.ls14{letter-spacing:205.200000px;}
.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;}
}
.ws3{word-spacing:-53.184000px;}
.ws0{word-spacing:-43.212000px;}
.ws5{word-spacing:-39.888000px;}
.ws4{word-spacing:-33.240000px;}
.ws2{word-spacing:-29.916000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.200000px;}
._1{width:1.404000px;}
._2{width:2.916000px;}
._3{width:4.092000px;}
._6{width:7.056000px;}
._5{width:8.160000px;}
._9{width:9.888000px;}
._c{width:11.712000px;}
._d{width:12.768000px;}
._12{width:13.896000px;}
._13{width:16.128000px;}
._14{width:17.760000px;}
._a{width:20.832000px;}
._11{width:21.984000px;}
._10{width:23.472000px;}
._15{width:28.224000px;}
._b{width:29.568000px;}
._7{width:34.368000px;}
._8{width:36.132000px;}
._e{width:52.512000px;}
._f{width:54.048000px;}
._4{width:145.248000px;}
.fc2{color:transparent;}
.fc1{color:rgb(126,0,33);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:83.400000px;}
.fs9{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs7{font-size:132.000000px;}
.fs6{font-size:144.000000px;}
.fs2{font-size:156.000000px;}
.fs3{font-size:168.000000px;}
.fs4{font-size:192.000000px;}
.fs1{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:13.800000px;}
.yf6{bottom:29.700000px;}
.y114{bottom:32.400000px;}
.yea{bottom:39.300000px;}
.y1{bottom:39.900000px;}
.y94{bottom:44.100000px;}
.y3b{bottom:50.550000px;}
.y50{bottom:56.400000px;}
.ybd{bottom:58.050000px;}
.y3{bottom:60.600000px;}
.y31{bottom:63.450000px;}
.y89{bottom:67.350000px;}
.y100{bottom:68.400000px;}
.yb0{bottom:72.000000px;}
.y111{bottom:74.100000px;}
.y46{bottom:81.600000px;}
.yf5{bottom:83.400000px;}
.yc8{bottom:87.000000px;}
.yab{bottom:90.600000px;}
.y9d{bottom:91.200000px;}
.y20{bottom:93.600000px;}
.ye2{bottom:95.850000px;}
.ybc{bottom:96.000000px;}
.y93{bottom:99.300000px;}
.y30{bottom:99.450000px;}
.y3a{bottom:102.750000px;}
.y74{bottom:102.900000px;}
.y4f{bottom:103.350000px;}
.yb3{bottom:109.800000px;}
.y88{bottom:110.550000px;}
.yff{bottom:111.600000px;}
.yaf{bottom:123.600000px;}
.yd1{bottom:123.750000px;}
.y45{bottom:126.600000px;}
.y60{bottom:127.200000px;}
.y14{bottom:127.500000px;}
.y110{bottom:131.700000px;}
.y1f{bottom:132.600000px;}
.ye9{bottom:133.800000px;}
.yaa{bottom:136.200000px;}
.yf4{bottom:136.950000px;}
.yc7{bottom:137.100000px;}
.y6c{bottom:137.400000px;}
.y2f{bottom:138.450000px;}
.ybb{bottom:142.050000px;}
.ye1{bottom:142.200000px;}
.y9c{bottom:142.800000px;}
.y39{bottom:151.200000px;}
.y92{bottom:154.500000px;}
.y4e{bottom:154.800000px;}
.yb2{bottom:155.400000px;}
.y73{bottom:156.450000px;}
.y87{bottom:157.350000px;}
.y10f{bottom:160.350000px;}
.ya3{bottom:165.600000px;}
.yd7{bottom:166.500000px;}
.yd0{bottom:166.950000px;}
.yae{bottom:170.400000px;}
.y44{bottom:171.450000px;}
.y1e{bottom:177.600000px;}
.y13{bottom:178.200000px;}
.yfc{bottom:178.500000px;}
.ye8{bottom:179.400000px;}
.yba{bottom:180.000000px;}
.y2e{bottom:180.450000px;}
.y6b{bottom:181.950000px;}
.y5f{bottom:182.400000px;}
.y113{bottom:186.000000px;}
.yc6{bottom:187.050000px;}
.ye0{bottom:188.700000px;}
.y10e{bottom:189.150000px;}
.ya9{bottom:189.750000px;}
.yf3{bottom:190.650000px;}
.y9b{bottom:191.100000px;}
.yfe{bottom:198.000000px;}
.y38{bottom:198.150000px;}
.y4d{bottom:201.600000px;}
.y5a{bottom:205.200000px;}
.y91{bottom:206.100000px;}
.y86{bottom:207.300000px;}
.yb1{bottom:209.100000px;}
.yd6{bottom:209.700000px;}
.y72{bottom:210.150000px;}
.ycf{bottom:212.550000px;}
.y43{bottom:213.450000px;}
.y5b{bottom:213.600000px;}
.y2d{bottom:216.450000px;}
.ya2{bottom:217.200000px;}
.y10d{bottom:217.800000px;}
.y6a{bottom:217.950000px;}
.y1d{bottom:219.600000px;}
.yad{bottom:222.000000px;}
.y7b{bottom:223.950000px;}
.yfb{bottom:224.100000px;}
.y5e{bottom:225.600000px;}
.yb9{bottom:226.050000px;}
.y112{bottom:229.200000px;}
.ye7{bottom:230.700000px;}
.y9a{bottom:234.000000px;}
.ydf{bottom:234.900000px;}
.y12{bottom:235.500000px;}
.yc5{bottom:237.150000px;}
.yfd{bottom:243.450000px;}
.yf2{bottom:244.350000px;}
.ya8{bottom:244.800000px;}
.y10c{bottom:246.600000px;}
.y80{bottom:248.550000px;}
.y37{bottom:250.200000px;}
.y2c{bottom:252.450000px;}
.y90{bottom:252.900000px;}
.y69{bottom:253.950000px;}
.yd5{bottom:255.300000px;}
.y4c{bottom:256.800000px;}
.y59{bottom:260.400000px;}
.y71{bottom:263.850000px;}
.ya1{bottom:264.000000px;}
.yce{bottom:265.350000px;}
.y1c{bottom:270.600000px;}
.y5d{bottom:272.400000px;}
.yde{bottom:272.700000px;}
.y10b{bottom:275.400000px;}
.ye6{bottom:276.150000px;}
.yac{bottom:277.200000px;}
.yfa{bottom:277.800000px;}
.y61{bottom:280.800000px;}
.y3e{bottom:284.550000px;}
.y99{bottom:285.600000px;}
.yc4{bottom:287.250000px;}
.y85{bottom:287.400000px;}
.y11{bottom:288.750000px;}
.y2b{bottom:291.450000px;}
.y68{bottom:291.900000px;}
.y42{bottom:294.450000px;}
.ya7{bottom:296.250000px;}
.y36{bottom:298.800000px;}
.yf1{bottom:300.300000px;}
.ya{bottom:303.150000px;}
.y10a{bottom:304.050000px;}
.y8f{bottom:304.500000px;}
.ycd{bottom:308.550000px;}
.yb8{bottom:310.200000px;}
.yd4{bottom:310.500000px;}
.y4b{bottom:312.000000px;}
.y7f{bottom:312.600000px;}
.y1b{bottom:315.600000px;}
.ydd{bottom:318.900000px;}
.y7a{bottom:319.350000px;}
.y70{bottom:321.150000px;}
.y5c{bottom:324.000000px;}
.ye5{bottom:329.850000px;}
.y84{bottom:330.600000px;}
.yf9{bottom:331.350000px;}
.y109{bottom:332.850000px;}
.y2a{bottom:333.450000px;}
.y54{bottom:336.000000px;}
.y67{bottom:336.450000px;}
.y3d{bottom:336.600000px;}
.y98{bottom:337.200000px;}
.yc3{bottom:338.700000px;}
.ya6{bottom:339.450000px;}
.y35{bottom:345.600000px;}
.yb7{bottom:346.200000px;}
.y8e{bottom:351.300000px;}
.yf0{bottom:353.100000px;}
.ycc{bottom:354.150000px;}
.ydc{bottom:356.850000px;}
.y58{bottom:358.800000px;}
.y1a{bottom:360.600000px;}
.y108{bottom:361.650000px;}
.y9{bottom:361.950000px;}
.ya0{bottom:362.400000px;}
.yd3{bottom:364.200000px;}
.y4a{bottom:367.200000px;}
.y7e{bottom:370.200000px;}
.y24{bottom:370.800000px;}
.y79{bottom:371.400000px;}
.y29{bottom:372.450000px;}
.y6f{bottom:373.350000px;}
.y66{bottom:374.400000px;}
.y41{bottom:375.450000px;}
.y83{bottom:377.400000px;}
.ya5{bottom:382.650000px;}
.y53{bottom:382.800000px;}
.yf8{bottom:385.050000px;}
.yb6{bottom:385.200000px;}
.yc2{bottom:388.200000px;}
.y97{bottom:388.650000px;}
.y3c{bottom:388.800000px;}
.y107{bottom:390.300000px;}
.y34{bottom:394.200000px;}
.yef{bottom:398.700000px;}
.y19{bottom:402.600000px;}
.ydb{bottom:403.200000px;}
.y8d{bottom:406.500000px;}
.ycb{bottom:406.950000px;}
.y10{bottom:408.750000px;}
.y57{bottom:414.000000px;}
.y28{bottom:417.450000px;}
.y9f{bottom:417.600000px;}
.yd2{bottom:417.750000px;}
.y65{bottom:418.950000px;}
.y106{bottom:419.100000px;}
.y8{bottom:420.750000px;}
.y6e{bottom:421.800000px;}
.y7d{bottom:422.250000px;}
.y49{bottom:422.400000px;}
.y23{bottom:423.000000px;}
.y78{bottom:423.600000px;}
.ya4{bottom:425.850000px;}
.y40{bottom:426.450000px;}
.y82{bottom:427.500000px;}
.ye4{bottom:428.250000px;}
.yc1{bottom:429.900000px;}
.yb5{bottom:431.700000px;}
.y52{bottom:434.400000px;}
.y33{bottom:437.400000px;}
.yf7{bottom:437.850000px;}
.y96{bottom:440.250000px;}
.yda{bottom:447.750000px;}
.yee{bottom:451.500000px;}
.y18{bottom:453.600000px;}
.y64{bottom:454.950000px;}
.y27{bottom:462.450000px;}
.yf{bottom:465.900000px;}
.y8c{bottom:466.800000px;}
.y3f{bottom:468.450000px;}
.y56{bottom:469.200000px;}
.yca{bottom:471.450000px;}
.y9e{bottom:472.800000px;}
.y81{bottom:474.300000px;}
.y7c{bottom:474.450000px;}
.y22{bottom:475.200000px;}
.y6d{bottom:475.500000px;}
.y77{bottom:475.800000px;}
.y105{bottom:476.550000px;}
.yb4{bottom:477.000000px;}
.y48{bottom:477.600000px;}
.y7{bottom:479.550000px;}
.y32{bottom:480.600000px;}
.ye3{bottom:481.050000px;}
.yc0{bottom:481.500000px;}
.y2{bottom:483.600000px;}
.yd9{bottom:485.700000px;}
.y63{bottom:492.900000px;}
.yed{bottom:494.700000px;}
.y95{bottom:498.000000px;}
.y17{bottom:498.600000px;}
.y26{bottom:504.450000px;}
.y104{bottom:505.350000px;}
.y8b{bottom:522.000000px;}
.ye{bottom:523.200000px;}
.y76{bottom:524.250000px;}
.y51{bottom:524.400000px;}
.yc9{bottom:526.650000px;}
.y21{bottom:527.400000px;}
.y47{bottom:529.800000px;}
.ybf{bottom:531.000000px;}
.yd8{bottom:532.200000px;}
.y103{bottom:534.000000px;}
.y6{bottom:538.200000px;}
.yec{bottom:540.300000px;}
.y62{bottom:540.450000px;}
.y25{bottom:543.450000px;}
.y16{bottom:543.600000px;}
.y102{bottom:562.800000px;}
.yd{bottom:576.450000px;}
.y8a{bottom:577.200000px;}
.y75{bottom:579.450000px;}
.ybe{bottom:582.450000px;}
.y15{bottom:585.450000px;}
.y101{bottom:591.600000px;}
.yeb{bottom:593.100000px;}
.yc{bottom:663.600000px;}
.y55{bottom:692.400000px;}
.y5{bottom:693.450000px;}
.yb{bottom:721.200000px;}
.h16{height:75.046875px;}
.h13{height:79.980469px;}
.h1{height:84.427734px;}
.hd{height:86.008594px;}
.he{height:86.608594px;}
.hb{height:87.363281px;}
.h8{height:93.808594px;}
.h15{height:94.189453px;}
.h14{height:94.789453px;}
.h9{height:95.976562px;}
.h10{height:102.970312px;}
.h12{height:103.189453px;}
.hf{height:103.570312px;}
.h11{height:105.574219px;}
.hc{height:112.570312px;}
.h5{height:113.572266px;}
.ha{height:115.171875px;}
.h3{height:121.951172px;}
.h4{height:122.308594px;}
.h7{height:124.769531px;}
.h6{height:139.781250px;}
.h2{height:174.726562px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xc{left:33.750000px;}
.x6{left:55.350000px;}
.x3{left:56.850000px;}
.x5{left:64.650000px;}
.x9{left:66.600000px;}
.xf{left:72.300000px;}
.x14{left:82.500000px;}
.x2{left:97.050000px;}
.x15{left:111.450000px;}
.x4{left:126.150000px;}
.x11{left:139.800000px;}
.x13{left:141.450000px;}
.x16{left:168.900000px;}
.xa{left:172.650000px;}
.x17{left:184.200000px;}
.x10{left:202.050000px;}
.x12{left:205.350000px;}
.xb{left:237.600000px;}
.xd{left:247.800000px;}
.x7{left:258.750000px;}
.xe{left:298.950000px;}
.x1a{left:603.600000px;}
.x8{left:651.150000px;}
.x1{left:784.500000px;}
.x18{left:811.950000px;}
.x19{left:850.500000px;}
@media print{
.v6{vertical-align:-42.133333pt;}
.v1{vertical-align:-13.866667pt;}
.v3{vertical-align:-12.800000pt;}
.v2{vertical-align:-11.200000pt;}
.v5{vertical-align:-8.000000pt;}
.v4{vertical-align:-6.933333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.138667pt;}
.ls16{letter-spacing:0.277333pt;}
.lsb{letter-spacing:0.381867pt;}
.ls15{letter-spacing:7.296000pt;}
.ls5{letter-spacing:9.066667pt;}
.lsd{letter-spacing:19.733333pt;}
.ls7{letter-spacing:30.400000pt;}
.lsa{letter-spacing:41.066667pt;}
.ls4{letter-spacing:53.866667pt;}
.ls9{letter-spacing:57.066667pt;}
.ls3{letter-spacing:75.200000pt;}
.lsc{letter-spacing:76.266667pt;}
.ls1{letter-spacing:92.266667pt;}
.ls11{letter-spacing:96.000000pt;}
.lsf{letter-spacing:99.733333pt;}
.ls10{letter-spacing:128.533333pt;}
.lse{letter-spacing:171.200000pt;}
.ls13{letter-spacing:171.733333pt;}
.ls12{letter-spacing:177.066667pt;}
.ls8{letter-spacing:179.733333pt;}
.ls14{letter-spacing:182.400000pt;}
.ws3{word-spacing:-47.274667pt;}
.ws0{word-spacing:-38.410667pt;}
.ws5{word-spacing:-35.456000pt;}
.ws4{word-spacing:-29.546667pt;}
.ws2{word-spacing:-26.592000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.066667pt;}
._1{width:1.248000pt;}
._2{width:2.592000pt;}
._3{width:3.637333pt;}
._6{width:6.272000pt;}
._5{width:7.253333pt;}
._9{width:8.789333pt;}
._c{width:10.410667pt;}
._d{width:11.349333pt;}
._12{width:12.352000pt;}
._13{width:14.336000pt;}
._14{width:15.786667pt;}
._a{width:18.517333pt;}
._11{width:19.541333pt;}
._10{width:20.864000pt;}
._15{width:25.088000pt;}
._b{width:26.282667pt;}
._7{width:30.549333pt;}
._8{width:32.117333pt;}
._e{width:46.677333pt;}
._f{width:48.042667pt;}
._4{width:129.109333pt;}
.fs8{font-size:74.133333pt;}
.fs9{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs7{font-size:117.333333pt;}
.fs6{font-size:128.000000pt;}
.fs2{font-size:138.666667pt;}
.fs3{font-size:149.333333pt;}
.fs4{font-size:170.666667pt;}
.fs1{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:12.266667pt;}
.yf6{bottom:26.400000pt;}
.y114{bottom:28.800000pt;}
.yea{bottom:34.933333pt;}
.y1{bottom:35.466667pt;}
.y94{bottom:39.200000pt;}
.y3b{bottom:44.933333pt;}
.y50{bottom:50.133333pt;}
.ybd{bottom:51.600000pt;}
.y3{bottom:53.866667pt;}
.y31{bottom:56.400000pt;}
.y89{bottom:59.866667pt;}
.y100{bottom:60.800000pt;}
.yb0{bottom:64.000000pt;}
.y111{bottom:65.866667pt;}
.y46{bottom:72.533333pt;}
.yf5{bottom:74.133333pt;}
.yc8{bottom:77.333333pt;}
.yab{bottom:80.533333pt;}
.y9d{bottom:81.066667pt;}
.y20{bottom:83.200000pt;}
.ye2{bottom:85.200000pt;}
.ybc{bottom:85.333333pt;}
.y93{bottom:88.266667pt;}
.y30{bottom:88.400000pt;}
.y3a{bottom:91.333333pt;}
.y74{bottom:91.466667pt;}
.y4f{bottom:91.866667pt;}
.yb3{bottom:97.600000pt;}
.y88{bottom:98.266667pt;}
.yff{bottom:99.200000pt;}
.yaf{bottom:109.866667pt;}
.yd1{bottom:110.000000pt;}
.y45{bottom:112.533333pt;}
.y60{bottom:113.066667pt;}
.y14{bottom:113.333333pt;}
.y110{bottom:117.066667pt;}
.y1f{bottom:117.866667pt;}
.ye9{bottom:118.933333pt;}
.yaa{bottom:121.066667pt;}
.yf4{bottom:121.733333pt;}
.yc7{bottom:121.866667pt;}
.y6c{bottom:122.133333pt;}
.y2f{bottom:123.066667pt;}
.ybb{bottom:126.266667pt;}
.ye1{bottom:126.400000pt;}
.y9c{bottom:126.933333pt;}
.y39{bottom:134.400000pt;}
.y92{bottom:137.333333pt;}
.y4e{bottom:137.600000pt;}
.yb2{bottom:138.133333pt;}
.y73{bottom:139.066667pt;}
.y87{bottom:139.866667pt;}
.y10f{bottom:142.533333pt;}
.ya3{bottom:147.200000pt;}
.yd7{bottom:148.000000pt;}
.yd0{bottom:148.400000pt;}
.yae{bottom:151.466667pt;}
.y44{bottom:152.400000pt;}
.y1e{bottom:157.866667pt;}
.y13{bottom:158.400000pt;}
.yfc{bottom:158.666667pt;}
.ye8{bottom:159.466667pt;}
.yba{bottom:160.000000pt;}
.y2e{bottom:160.400000pt;}
.y6b{bottom:161.733333pt;}
.y5f{bottom:162.133333pt;}
.y113{bottom:165.333333pt;}
.yc6{bottom:166.266667pt;}
.ye0{bottom:167.733333pt;}
.y10e{bottom:168.133333pt;}
.ya9{bottom:168.666667pt;}
.yf3{bottom:169.466667pt;}
.y9b{bottom:169.866667pt;}
.yfe{bottom:176.000000pt;}
.y38{bottom:176.133333pt;}
.y4d{bottom:179.200000pt;}
.y5a{bottom:182.400000pt;}
.y91{bottom:183.200000pt;}
.y86{bottom:184.266667pt;}
.yb1{bottom:185.866667pt;}
.yd6{bottom:186.400000pt;}
.y72{bottom:186.800000pt;}
.ycf{bottom:188.933333pt;}
.y43{bottom:189.733333pt;}
.y5b{bottom:189.866667pt;}
.y2d{bottom:192.400000pt;}
.ya2{bottom:193.066667pt;}
.y10d{bottom:193.600000pt;}
.y6a{bottom:193.733333pt;}
.y1d{bottom:195.200000pt;}
.yad{bottom:197.333333pt;}
.y7b{bottom:199.066667pt;}
.yfb{bottom:199.200000pt;}
.y5e{bottom:200.533333pt;}
.yb9{bottom:200.933333pt;}
.y112{bottom:203.733333pt;}
.ye7{bottom:205.066667pt;}
.y9a{bottom:208.000000pt;}
.ydf{bottom:208.800000pt;}
.y12{bottom:209.333333pt;}
.yc5{bottom:210.800000pt;}
.yfd{bottom:216.400000pt;}
.yf2{bottom:217.200000pt;}
.ya8{bottom:217.600000pt;}
.y10c{bottom:219.200000pt;}
.y80{bottom:220.933333pt;}
.y37{bottom:222.400000pt;}
.y2c{bottom:224.400000pt;}
.y90{bottom:224.800000pt;}
.y69{bottom:225.733333pt;}
.yd5{bottom:226.933333pt;}
.y4c{bottom:228.266667pt;}
.y59{bottom:231.466667pt;}
.y71{bottom:234.533333pt;}
.ya1{bottom:234.666667pt;}
.yce{bottom:235.866667pt;}
.y1c{bottom:240.533333pt;}
.y5d{bottom:242.133333pt;}
.yde{bottom:242.400000pt;}
.y10b{bottom:244.800000pt;}
.ye6{bottom:245.466667pt;}
.yac{bottom:246.400000pt;}
.yfa{bottom:246.933333pt;}
.y61{bottom:249.600000pt;}
.y3e{bottom:252.933333pt;}
.y99{bottom:253.866667pt;}
.yc4{bottom:255.333333pt;}
.y85{bottom:255.466667pt;}
.y11{bottom:256.666667pt;}
.y2b{bottom:259.066667pt;}
.y68{bottom:259.466667pt;}
.y42{bottom:261.733333pt;}
.ya7{bottom:263.333333pt;}
.y36{bottom:265.600000pt;}
.yf1{bottom:266.933333pt;}
.ya{bottom:269.466667pt;}
.y10a{bottom:270.266667pt;}
.y8f{bottom:270.666667pt;}
.ycd{bottom:274.266667pt;}
.yb8{bottom:275.733333pt;}
.yd4{bottom:276.000000pt;}
.y4b{bottom:277.333333pt;}
.y7f{bottom:277.866667pt;}
.y1b{bottom:280.533333pt;}
.ydd{bottom:283.466667pt;}
.y7a{bottom:283.866667pt;}
.y70{bottom:285.466667pt;}
.y5c{bottom:288.000000pt;}
.ye5{bottom:293.200000pt;}
.y84{bottom:293.866667pt;}
.yf9{bottom:294.533333pt;}
.y109{bottom:295.866667pt;}
.y2a{bottom:296.400000pt;}
.y54{bottom:298.666667pt;}
.y67{bottom:299.066667pt;}
.y3d{bottom:299.200000pt;}
.y98{bottom:299.733333pt;}
.yc3{bottom:301.066667pt;}
.ya6{bottom:301.733333pt;}
.y35{bottom:307.200000pt;}
.yb7{bottom:307.733333pt;}
.y8e{bottom:312.266667pt;}
.yf0{bottom:313.866667pt;}
.ycc{bottom:314.800000pt;}
.ydc{bottom:317.200000pt;}
.y58{bottom:318.933333pt;}
.y1a{bottom:320.533333pt;}
.y108{bottom:321.466667pt;}
.y9{bottom:321.733333pt;}
.ya0{bottom:322.133333pt;}
.yd3{bottom:323.733333pt;}
.y4a{bottom:326.400000pt;}
.y7e{bottom:329.066667pt;}
.y24{bottom:329.600000pt;}
.y79{bottom:330.133333pt;}
.y29{bottom:331.066667pt;}
.y6f{bottom:331.866667pt;}
.y66{bottom:332.800000pt;}
.y41{bottom:333.733333pt;}
.y83{bottom:335.466667pt;}
.ya5{bottom:340.133333pt;}
.y53{bottom:340.266667pt;}
.yf8{bottom:342.266667pt;}
.yb6{bottom:342.400000pt;}
.yc2{bottom:345.066667pt;}
.y97{bottom:345.466667pt;}
.y3c{bottom:345.600000pt;}
.y107{bottom:346.933333pt;}
.y34{bottom:350.400000pt;}
.yef{bottom:354.400000pt;}
.y19{bottom:357.866667pt;}
.ydb{bottom:358.400000pt;}
.y8d{bottom:361.333333pt;}
.ycb{bottom:361.733333pt;}
.y10{bottom:363.333333pt;}
.y57{bottom:368.000000pt;}
.y28{bottom:371.066667pt;}
.y9f{bottom:371.200000pt;}
.yd2{bottom:371.333333pt;}
.y65{bottom:372.400000pt;}
.y106{bottom:372.533333pt;}
.y8{bottom:374.000000pt;}
.y6e{bottom:374.933333pt;}
.y7d{bottom:375.333333pt;}
.y49{bottom:375.466667pt;}
.y23{bottom:376.000000pt;}
.y78{bottom:376.533333pt;}
.ya4{bottom:378.533333pt;}
.y40{bottom:379.066667pt;}
.y82{bottom:380.000000pt;}
.ye4{bottom:380.666667pt;}
.yc1{bottom:382.133333pt;}
.yb5{bottom:383.733333pt;}
.y52{bottom:386.133333pt;}
.y33{bottom:388.800000pt;}
.yf7{bottom:389.200000pt;}
.y96{bottom:391.333333pt;}
.yda{bottom:398.000000pt;}
.yee{bottom:401.333333pt;}
.y18{bottom:403.200000pt;}
.y64{bottom:404.400000pt;}
.y27{bottom:411.066667pt;}
.yf{bottom:414.133333pt;}
.y8c{bottom:414.933333pt;}
.y3f{bottom:416.400000pt;}
.y56{bottom:417.066667pt;}
.yca{bottom:419.066667pt;}
.y9e{bottom:420.266667pt;}
.y81{bottom:421.600000pt;}
.y7c{bottom:421.733333pt;}
.y22{bottom:422.400000pt;}
.y6d{bottom:422.666667pt;}
.y77{bottom:422.933333pt;}
.y105{bottom:423.600000pt;}
.yb4{bottom:424.000000pt;}
.y48{bottom:424.533333pt;}
.y7{bottom:426.266667pt;}
.y32{bottom:427.200000pt;}
.ye3{bottom:427.600000pt;}
.yc0{bottom:428.000000pt;}
.y2{bottom:429.866667pt;}
.yd9{bottom:431.733333pt;}
.y63{bottom:438.133333pt;}
.yed{bottom:439.733333pt;}
.y95{bottom:442.666667pt;}
.y17{bottom:443.200000pt;}
.y26{bottom:448.400000pt;}
.y104{bottom:449.200000pt;}
.y8b{bottom:464.000000pt;}
.ye{bottom:465.066667pt;}
.y76{bottom:466.000000pt;}
.y51{bottom:466.133333pt;}
.yc9{bottom:468.133333pt;}
.y21{bottom:468.800000pt;}
.y47{bottom:470.933333pt;}
.ybf{bottom:472.000000pt;}
.yd8{bottom:473.066667pt;}
.y103{bottom:474.666667pt;}
.y6{bottom:478.400000pt;}
.yec{bottom:480.266667pt;}
.y62{bottom:480.400000pt;}
.y25{bottom:483.066667pt;}
.y16{bottom:483.200000pt;}
.y102{bottom:500.266667pt;}
.yd{bottom:512.400000pt;}
.y8a{bottom:513.066667pt;}
.y75{bottom:515.066667pt;}
.ybe{bottom:517.733333pt;}
.y15{bottom:520.400000pt;}
.y101{bottom:525.866667pt;}
.yeb{bottom:527.200000pt;}
.yc{bottom:589.866667pt;}
.y55{bottom:615.466667pt;}
.y5{bottom:616.400000pt;}
.yb{bottom:641.066667pt;}
.h16{height:66.708333pt;}
.h13{height:71.093750pt;}
.h1{height:75.046875pt;}
.hd{height:76.452083pt;}
.he{height:76.985417pt;}
.hb{height:77.656250pt;}
.h8{height:83.385417pt;}
.h15{height:83.723958pt;}
.h14{height:84.257292pt;}
.h9{height:85.312500pt;}
.h10{height:91.529167pt;}
.h12{height:91.723958pt;}
.hf{height:92.062500pt;}
.h11{height:93.843750pt;}
.hc{height:100.062500pt;}
.h5{height:100.953125pt;}
.ha{height:102.375000pt;}
.h3{height:108.401042pt;}
.h4{height:108.718750pt;}
.h7{height:110.906250pt;}
.h6{height:124.250000pt;}
.h2{height:155.312500pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xc{left:30.000000pt;}
.x6{left:49.200000pt;}
.x3{left:50.533333pt;}
.x5{left:57.466667pt;}
.x9{left:59.200000pt;}
.xf{left:64.266667pt;}
.x14{left:73.333333pt;}
.x2{left:86.266667pt;}
.x15{left:99.066667pt;}
.x4{left:112.133333pt;}
.x11{left:124.266667pt;}
.x13{left:125.733333pt;}
.x16{left:150.133333pt;}
.xa{left:153.466667pt;}
.x17{left:163.733333pt;}
.x10{left:179.600000pt;}
.x12{left:182.533333pt;}
.xb{left:211.200000pt;}
.xd{left:220.266667pt;}
.x7{left:230.000000pt;}
.xe{left:265.733333pt;}
.x1a{left:536.533333pt;}
.x8{left:578.800000pt;}
.x1{left:697.333333pt;}
.x18{left:721.733333pt;}
.x19{left:756.000000pt;}
}




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