
    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_2bd75a847d7fbc984e1d8482.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_f4d726e76652913835ed583c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904785;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_e2682934fe31b67caf398bc3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_c612b493659b93c62f347824.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_e305bbba2e61b0b9189ba0b7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_de222659ac43b4d982a3d7e8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_1d09bf659f172cd8c9c13ed3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fa27cc27d3f27419d1897f49.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.216000px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.511920px;}
.lsd{letter-spacing:5.040000px;}
.ls6{letter-spacing:6.480000px;}
.ls11{letter-spacing:8.640000px;}
.lse{letter-spacing:10.800000px;}
.ls9{letter-spacing:12.240000px;}
.lsb{letter-spacing:18.720000px;}
.lsf{letter-spacing:20.160000px;}
.lsa{letter-spacing:23.760000px;}
.ls4{letter-spacing:25.200000px;}
.ls8{letter-spacing:32.400000px;}
.ls13{letter-spacing:33.120000px;}
.ls10{letter-spacing:35.280000px;}
.ls19{letter-spacing:41.040000px;}
.ls12{letter-spacing:41.381280px;}
.ls17{letter-spacing:44.640000px;}
.ls15{letter-spacing:45.360000px;}
.lsc{letter-spacing:68.400000px;}
.ls2{letter-spacing:77.309760px;}
.ls1{letter-spacing:111.029760px;}
.ls7{letter-spacing:159.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.420000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-1.080000px;}
._0{width:1.694160px;}
._1{width:3.077520px;}
._33{width:4.087440px;}
._16{width:5.328000px;}
._15{width:6.552000px;}
._7{width:7.920000px;}
._a{width:9.288000px;}
._9{width:10.512000px;}
._24{width:11.856000px;}
._25{width:13.164000px;}
._28{width:14.328000px;}
._13{width:15.408000px;}
._12{width:16.848000px;}
._18{width:19.152000px;}
._19{width:20.189520px;}
._1f{width:21.360000px;}
._8{width:22.584000px;}
._3{width:24.024000px;}
._4{width:25.056000px;}
._6{width:26.352000px;}
._5{width:27.432000px;}
._11{width:29.088000px;}
._29{width:30.240000px;}
._22{width:31.296000px;}
._32{width:32.304000px;}
._23{width:33.324000px;}
._31{width:34.344000px;}
._27{width:35.424000px;}
._10{width:37.152000px;}
._b{width:38.664000px;}
._c{width:39.705840px;}
._2a{width:41.112000px;}
._1e{width:42.552000px;}
._21{width:44.424000px;}
._2b{width:45.576000px;}
._e{width:46.728000px;}
._f{width:48.096000px;}
._20{width:49.176000px;}
._17{width:51.768000px;}
._14{width:53.712000px;}
._1c{width:54.936000px;}
._d{width:56.304000px;}
._2d{width:58.200000px;}
._2c{width:59.304000px;}
._3a{width:60.504000px;}
._1b{width:65.160000px;}
._1a{width:66.168000px;}
._26{width:68.265840px;}
._1d{width:74.808000px;}
._30{width:80.472000px;}
._34{width:81.597840px;}
._2f{width:84.096000px;}
._2e{width:85.152000px;}
._38{width:95.904000px;}
._35{width:238.296000px;}
._36{width:441.576000px;}
._39{width:695.448000px;}
._37{width:769.464000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y81{bottom:7.020000px;}
.y8c{bottom:7.200000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y86{bottom:30.780000px;}
.y92{bottom:30.810000px;}
.y8b{bottom:30.960000px;}
.y91{bottom:54.570000px;}
.y85{bottom:54.720000px;}
.y8a{bottom:54.765000px;}
.y6{bottom:55.440000px;}
.y3{bottom:57.600000px;}
.y84{bottom:78.480000px;}
.y90{bottom:78.510000px;}
.y89{bottom:78.525000px;}
.y7f{bottom:92.556000px;}
.y5f{bottom:96.516000px;}
.y83{bottom:102.240000px;}
.y8f{bottom:102.270000px;}
.y88{bottom:102.465000px;}
.y32{bottom:110.916000px;}
.y7e{bottom:116.496000px;}
.y5e{bottom:120.276000px;}
.y31{bottom:134.676000px;}
.ya5{bottom:138.276000px;}
.y7d{bottom:140.256000px;}
.y5d{bottom:144.036000px;}
.y30{bottom:158.430000px;}
.ya4{bottom:162.030000px;}
.y7c{bottom:164.010000px;}
.y5c{bottom:167.970000px;}
.y2f{bottom:182.370000px;}
.ya3{bottom:185.970000px;}
.y7b{bottom:187.770000px;}
.y5b{bottom:191.730000px;}
.y2e{bottom:206.130000px;}
.ya2{bottom:209.550000px;}
.y7a{bottom:211.710000px;}
.y5a{bottom:215.490000px;}
.y2d{bottom:229.890000px;}
.ya1{bottom:234.750000px;}
.y79{bottom:235.470000px;}
.yc2{bottom:236.370000px;}
.y59{bottom:239.250000px;}
.y2c{bottom:253.650000px;}
.ya0{bottom:258.510000px;}
.y78{bottom:259.050000px;}
.yc1{bottom:260.130000px;}
.y58{bottom:263.190000px;}
.y2b{bottom:277.590000px;}
.y9f{bottom:283.710000px;}
.yc0{bottom:283.890000px;}
.y77{bottom:284.250000px;}
.y57{bottom:286.950000px;}
.y2a{bottom:301.350000px;}
.y9e{bottom:307.290000px;}
.ybf{bottom:307.650000px;}
.y76{bottom:308.190000px;}
.y56{bottom:310.530000px;}
.y29{bottom:325.110000px;}
.y75{bottom:331.950000px;}
.y9d{bottom:332.670000px;}
.ybe{bottom:334.290000px;}
.y55{bottom:335.910000px;}
.y28{bottom:348.915000px;}
.y74{bottom:355.575000px;}
.y9c{bottom:356.475000px;}
.ybd{bottom:358.095000px;}
.y54{bottom:359.535000px;}
.y27{bottom:372.855000px;}
.y9b{bottom:380.055000px;}
.y73{bottom:380.775000px;}
.ybc{bottom:382.035000px;}
.y53{bottom:384.735000px;}
.y26{bottom:396.615000px;}
.y9a{bottom:405.435000px;}
.y72{bottom:405.795000px;}
.y52{bottom:408.495000px;}
.y25{bottom:420.375000px;}
.y99{bottom:429.015000px;}
.ybb{bottom:429.555000px;}
.y71{bottom:430.995000px;}
.y51{bottom:432.435000px;}
.y24{bottom:444.135000px;}
.yba{bottom:453.315000px;}
.y98{bottom:454.215000px;}
.y50{bottom:456.195000px;}
.y23{bottom:467.895000px;}
.y97{bottom:477.975000px;}
.y4f{bottom:479.955000px;}
.y22{bottom:491.835000px;}
.y96{bottom:503.175000px;}
.y4e{bottom:503.715000px;}
.y21{bottom:515.595000px;}
.y95{bottom:526.935000px;}
.y4d{bottom:527.655000px;}
.y70{bottom:528.915000px;}
.y20{bottom:539.355000px;}
.y94{bottom:550.695000px;}
.y4c{bottom:551.415000px;}
.y6f{bottom:552.675000px;}
.y1f{bottom:563.115000px;}
.y93{bottom:574.635000px;}
.y4b{bottom:575.175000px;}
.y6e{bottom:576.435000px;}
.y1e{bottom:587.055000px;}
.y8e{bottom:592.095000px;}
.y4a{bottom:598.935000px;}
.y6d{bottom:600.195000px;}
.y1d{bottom:610.845000px;}
.y49{bottom:622.905000px;}
.y6c{bottom:624.165000px;}
.y1c{bottom:634.605000px;}
.y48{bottom:646.665000px;}
.y6b{bottom:647.925000px;}
.y1b{bottom:658.365000px;}
.y47{bottom:670.425000px;}
.y6a{bottom:671.685000px;}
.y1a{bottom:682.305000px;}
.y46{bottom:694.005000px;}
.yb9{bottom:694.185000px;}
.y69{bottom:695.445000px;}
.y19{bottom:706.065000px;}
.y8d{bottom:711.825000px;}
.yb8{bottom:718.125000px;}
.y45{bottom:719.385000px;}
.y18{bottom:729.825000px;}
.yb7{bottom:741.885000px;}
.y68{bottom:742.965000px;}
.y44{bottom:743.145000px;}
.y17{bottom:753.585000px;}
.yb6{bottom:765.645000px;}
.y43{bottom:766.725000px;}
.y67{bottom:768.165000px;}
.y16{bottom:777.525000px;}
.yb5{bottom:789.405000px;}
.y42{bottom:792.105000px;}
.yd0{bottom:800.385000px;}
.y15{bottom:801.285000px;}
.yb4{bottom:813.165000px;}
.y41{bottom:815.865000px;}
.ycf{bottom:824.145000px;}
.y14{bottom:825.045000px;}
.y87{bottom:831.525000px;}
.yb3{bottom:837.105000px;}
.y40{bottom:839.445000px;}
.y66{bottom:839.625000px;}
.yce{bottom:847.905000px;}
.y13{bottom:848.805000px;}
.yb2{bottom:860.865000px;}
.y65{bottom:863.385000px;}
.y3f{bottom:864.645000px;}
.ycd{bottom:871.710000px;}
.y12{bottom:872.790000px;}
.yb1{bottom:884.670000px;}
.y64{bottom:887.370000px;}
.y3e{bottom:888.630000px;}
.y11{bottom:896.550000px;}
.ycc{bottom:898.350000px;}
.yb0{bottom:908.430000px;}
.y63{bottom:911.130000px;}
.y3d{bottom:912.390000px;}
.y10{bottom:920.310000px;}
.ycb{bottom:922.110000px;}
.yaf{bottom:932.370000px;}
.y62{bottom:934.890000px;}
.y3c{bottom:936.150000px;}
.yf{bottom:944.070000px;}
.yca{bottom:948.750000px;}
.y82{bottom:951.450000px;}
.yae{bottom:955.950000px;}
.y61{bottom:958.650000px;}
.y3b{bottom:959.910000px;}
.ye{bottom:968.010000px;}
.yc9{bottom:972.510000px;}
.yad{bottom:981.150000px;}
.y60{bottom:982.410000px;}
.y3a{bottom:983.850000px;}
.yd{bottom:991.770000px;}
.yc8{bottom:999.150000px;}
.yac{bottom:1005.090000px;}
.y39{bottom:1007.610000px;}
.yc{bottom:1015.530000px;}
.yc7{bottom:1025.790000px;}
.yab{bottom:1028.850000px;}
.y38{bottom:1031.370000px;}
.yb{bottom:1039.290000px;}
.yc6{bottom:1049.550000px;}
.yaa{bottom:1052.610000px;}
.y37{bottom:1055.130000px;}
.ya{bottom:1063.050000px;}
.y80{bottom:1071.150000px;}
.ya9{bottom:1076.190000px;}
.y36{bottom:1079.070000px;}
.y9{bottom:1086.990000px;}
.yc5{bottom:1099.950000px;}
.ya8{bottom:1101.570000px;}
.y35{bottom:1102.830000px;}
.y8{bottom:1113.090000px;}
.yc4{bottom:1123.890000px;}
.ya7{bottom:1125.330000px;}
.y34{bottom:1126.590000px;}
.y7{bottom:1144.800000px;}
.yc3{bottom:1147.500000px;}
.ya6{bottom:1148.940000px;}
.y33{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:4.134375px;}
.hc{height:23.760000px;}
.h3{height:27.036000px;}
.h2{height:37.204102px;}
.h8{height:49.605469px;}
.h4{height:51.679688px;}
.h9{height:51.996094px;}
.hb{height:52.417969px;}
.ha{height:59.343750px;}
.h10{height:61.329023px;}
.h5{height:65.884219px;}
.h7{height:65.975273px;}
.hd{height:118.980000px;}
.hf{height:119.016000px;}
.he{height:119.196000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w6{width:175.170000px;}
.w7{width:242.535000px;}
.w8{width:287.490000px;}
.w5{width:300.810000px;}
.w3{width:300.855000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x3{left:87.660000px;}
.x8{left:95.795987px;}
.xa{left:111.995987px;}
.x9{left:121.355987px;}
.x13{left:127.835987px;}
.xd{left:131.255987px;}
.x10{left:148.895987px;}
.x1{left:151.229987px;}
.x11{left:263.910000px;}
.xc{left:274.169987px;}
.xe{left:290.594987px;}
.x4{left:293.295000px;}
.x2{left:316.694987px;}
.x5{left:389.415000px;}
.xb{left:441.254987px;}
.xf{left:467.924987px;}
.x7{left:494.205000px;}
.x12{left:507.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.455040pt;}
.lsd{letter-spacing:4.480000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls11{letter-spacing:7.680000pt;}
.lse{letter-spacing:9.600000pt;}
.ls9{letter-spacing:10.880000pt;}
.lsb{letter-spacing:16.640000pt;}
.lsf{letter-spacing:17.920000pt;}
.lsa{letter-spacing:21.120000pt;}
.ls4{letter-spacing:22.400000pt;}
.ls8{letter-spacing:28.800000pt;}
.ls13{letter-spacing:29.440000pt;}
.ls10{letter-spacing:31.360000pt;}
.ls19{letter-spacing:36.480000pt;}
.ls12{letter-spacing:36.783360pt;}
.ls17{letter-spacing:39.680000pt;}
.ls15{letter-spacing:40.320000pt;}
.lsc{letter-spacing:60.800000pt;}
.ls2{letter-spacing:68.719787pt;}
.ls1{letter-spacing:98.693120pt;}
.ls7{letter-spacing:142.208000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.505920pt;}
._1{width:2.735573pt;}
._33{width:3.633280pt;}
._16{width:4.736000pt;}
._15{width:5.824000pt;}
._7{width:7.040000pt;}
._a{width:8.256000pt;}
._9{width:9.344000pt;}
._24{width:10.538667pt;}
._25{width:11.701333pt;}
._28{width:12.736000pt;}
._13{width:13.696000pt;}
._12{width:14.976000pt;}
._18{width:17.024000pt;}
._19{width:17.946240pt;}
._1f{width:18.986667pt;}
._8{width:20.074667pt;}
._3{width:21.354667pt;}
._4{width:22.272000pt;}
._6{width:23.424000pt;}
._5{width:24.384000pt;}
._11{width:25.856000pt;}
._29{width:26.880000pt;}
._22{width:27.818667pt;}
._32{width:28.714667pt;}
._23{width:29.621333pt;}
._31{width:30.528000pt;}
._27{width:31.488000pt;}
._10{width:33.024000pt;}
._b{width:34.368000pt;}
._c{width:35.294080pt;}
._2a{width:36.544000pt;}
._1e{width:37.824000pt;}
._21{width:39.488000pt;}
._2b{width:40.512000pt;}
._e{width:41.536000pt;}
._f{width:42.752000pt;}
._20{width:43.712000pt;}
._17{width:46.016000pt;}
._14{width:47.744000pt;}
._1c{width:48.832000pt;}
._d{width:50.048000pt;}
._2d{width:51.733333pt;}
._2c{width:52.714667pt;}
._3a{width:53.781333pt;}
._1b{width:57.920000pt;}
._1a{width:58.816000pt;}
._26{width:60.680747pt;}
._1d{width:66.496000pt;}
._30{width:71.530667pt;}
._34{width:72.531413pt;}
._2f{width:74.752000pt;}
._2e{width:75.690667pt;}
._38{width:85.248000pt;}
._35{width:211.818667pt;}
._36{width:392.512000pt;}
._39{width:618.176000pt;}
._37{width:683.968000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:6.240000pt;}
.y8c{bottom:6.400000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y86{bottom:27.360000pt;}
.y92{bottom:27.386667pt;}
.y8b{bottom:27.520000pt;}
.y91{bottom:48.506667pt;}
.y85{bottom:48.640000pt;}
.y8a{bottom:48.680000pt;}
.y6{bottom:49.280000pt;}
.y3{bottom:51.200000pt;}
.y84{bottom:69.760000pt;}
.y90{bottom:69.786667pt;}
.y89{bottom:69.800000pt;}
.y7f{bottom:82.272000pt;}
.y5f{bottom:85.792000pt;}
.y83{bottom:90.880000pt;}
.y8f{bottom:90.906667pt;}
.y88{bottom:91.080000pt;}
.y32{bottom:98.592000pt;}
.y7e{bottom:103.552000pt;}
.y5e{bottom:106.912000pt;}
.y31{bottom:119.712000pt;}
.ya5{bottom:122.912000pt;}
.y7d{bottom:124.672000pt;}
.y5d{bottom:128.032000pt;}
.y30{bottom:140.826667pt;}
.ya4{bottom:144.026667pt;}
.y7c{bottom:145.786667pt;}
.y5c{bottom:149.306667pt;}
.y2f{bottom:162.106667pt;}
.ya3{bottom:165.306667pt;}
.y7b{bottom:166.906667pt;}
.y5b{bottom:170.426667pt;}
.y2e{bottom:183.226667pt;}
.ya2{bottom:186.266667pt;}
.y7a{bottom:188.186667pt;}
.y5a{bottom:191.546667pt;}
.y2d{bottom:204.346667pt;}
.ya1{bottom:208.666667pt;}
.y79{bottom:209.306667pt;}
.yc2{bottom:210.106667pt;}
.y59{bottom:212.666667pt;}
.y2c{bottom:225.466667pt;}
.ya0{bottom:229.786667pt;}
.y78{bottom:230.266667pt;}
.yc1{bottom:231.226667pt;}
.y58{bottom:233.946667pt;}
.y2b{bottom:246.746667pt;}
.y9f{bottom:252.186667pt;}
.yc0{bottom:252.346667pt;}
.y77{bottom:252.666667pt;}
.y57{bottom:255.066667pt;}
.y2a{bottom:267.866667pt;}
.y9e{bottom:273.146667pt;}
.ybf{bottom:273.466667pt;}
.y76{bottom:273.946667pt;}
.y56{bottom:276.026667pt;}
.y29{bottom:288.986667pt;}
.y75{bottom:295.066667pt;}
.y9d{bottom:295.706667pt;}
.ybe{bottom:297.146667pt;}
.y55{bottom:298.586667pt;}
.y28{bottom:310.146667pt;}
.y74{bottom:316.066667pt;}
.y9c{bottom:316.866667pt;}
.ybd{bottom:318.306667pt;}
.y54{bottom:319.586667pt;}
.y27{bottom:331.426667pt;}
.y9b{bottom:337.826667pt;}
.y73{bottom:338.466667pt;}
.ybc{bottom:339.586667pt;}
.y53{bottom:341.986667pt;}
.y26{bottom:352.546667pt;}
.y9a{bottom:360.386667pt;}
.y72{bottom:360.706667pt;}
.y52{bottom:363.106667pt;}
.y25{bottom:373.666667pt;}
.y99{bottom:381.346667pt;}
.ybb{bottom:381.826667pt;}
.y71{bottom:383.106667pt;}
.y51{bottom:384.386667pt;}
.y24{bottom:394.786667pt;}
.yba{bottom:402.946667pt;}
.y98{bottom:403.746667pt;}
.y50{bottom:405.506667pt;}
.y23{bottom:415.906667pt;}
.y97{bottom:424.866667pt;}
.y4f{bottom:426.626667pt;}
.y22{bottom:437.186667pt;}
.y96{bottom:447.266667pt;}
.y4e{bottom:447.746667pt;}
.y21{bottom:458.306667pt;}
.y95{bottom:468.386667pt;}
.y4d{bottom:469.026667pt;}
.y70{bottom:470.146667pt;}
.y20{bottom:479.426667pt;}
.y94{bottom:489.506667pt;}
.y4c{bottom:490.146667pt;}
.y6f{bottom:491.266667pt;}
.y1f{bottom:500.546667pt;}
.y93{bottom:510.786667pt;}
.y4b{bottom:511.266667pt;}
.y6e{bottom:512.386667pt;}
.y1e{bottom:521.826667pt;}
.y8e{bottom:526.306667pt;}
.y4a{bottom:532.386667pt;}
.y6d{bottom:533.506667pt;}
.y1d{bottom:542.973333pt;}
.y49{bottom:553.693333pt;}
.y6c{bottom:554.813333pt;}
.y1c{bottom:564.093333pt;}
.y48{bottom:574.813333pt;}
.y6b{bottom:575.933333pt;}
.y1b{bottom:585.213333pt;}
.y47{bottom:595.933333pt;}
.y6a{bottom:597.053333pt;}
.y1a{bottom:606.493333pt;}
.y46{bottom:616.893333pt;}
.yb9{bottom:617.053333pt;}
.y69{bottom:618.173333pt;}
.y19{bottom:627.613333pt;}
.y8d{bottom:632.733333pt;}
.yb8{bottom:638.333333pt;}
.y45{bottom:639.453333pt;}
.y18{bottom:648.733333pt;}
.yb7{bottom:659.453333pt;}
.y68{bottom:660.413333pt;}
.y44{bottom:660.573333pt;}
.y17{bottom:669.853333pt;}
.yb6{bottom:680.573333pt;}
.y43{bottom:681.533333pt;}
.y67{bottom:682.813333pt;}
.y16{bottom:691.133333pt;}
.yb5{bottom:701.693333pt;}
.y42{bottom:704.093333pt;}
.yd0{bottom:711.453333pt;}
.y15{bottom:712.253333pt;}
.yb4{bottom:722.813333pt;}
.y41{bottom:725.213333pt;}
.ycf{bottom:732.573333pt;}
.y14{bottom:733.373333pt;}
.y87{bottom:739.133333pt;}
.yb3{bottom:744.093333pt;}
.y40{bottom:746.173333pt;}
.y66{bottom:746.333333pt;}
.yce{bottom:753.693333pt;}
.y13{bottom:754.493333pt;}
.yb2{bottom:765.213333pt;}
.y65{bottom:767.453333pt;}
.y3f{bottom:768.573333pt;}
.ycd{bottom:774.853333pt;}
.y12{bottom:775.813333pt;}
.yb1{bottom:786.373333pt;}
.y64{bottom:788.773333pt;}
.y3e{bottom:789.893333pt;}
.y11{bottom:796.933333pt;}
.ycc{bottom:798.533333pt;}
.yb0{bottom:807.493333pt;}
.y63{bottom:809.893333pt;}
.y3d{bottom:811.013333pt;}
.y10{bottom:818.053333pt;}
.ycb{bottom:819.653333pt;}
.yaf{bottom:828.773333pt;}
.y62{bottom:831.013333pt;}
.y3c{bottom:832.133333pt;}
.yf{bottom:839.173333pt;}
.yca{bottom:843.333333pt;}
.y82{bottom:845.733333pt;}
.yae{bottom:849.733333pt;}
.y61{bottom:852.133333pt;}
.y3b{bottom:853.253333pt;}
.ye{bottom:860.453333pt;}
.yc9{bottom:864.453333pt;}
.yad{bottom:872.133333pt;}
.y60{bottom:873.253333pt;}
.y3a{bottom:874.533333pt;}
.yd{bottom:881.573333pt;}
.yc8{bottom:888.133333pt;}
.yac{bottom:893.413333pt;}
.y39{bottom:895.653333pt;}
.yc{bottom:902.693333pt;}
.yc7{bottom:911.813333pt;}
.yab{bottom:914.533333pt;}
.y38{bottom:916.773333pt;}
.yb{bottom:923.813333pt;}
.yc6{bottom:932.933333pt;}
.yaa{bottom:935.653333pt;}
.y37{bottom:937.893333pt;}
.ya{bottom:944.933333pt;}
.y80{bottom:952.133333pt;}
.ya9{bottom:956.613333pt;}
.y36{bottom:959.173333pt;}
.y9{bottom:966.213333pt;}
.yc5{bottom:977.733333pt;}
.ya8{bottom:979.173333pt;}
.y35{bottom:980.293333pt;}
.y8{bottom:989.413333pt;}
.yc4{bottom:999.013333pt;}
.ya7{bottom:1000.293333pt;}
.y34{bottom:1001.413333pt;}
.y7{bottom:1017.600000pt;}
.yc3{bottom:1020.000000pt;}
.ya6{bottom:1021.280000pt;}
.y33{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:3.675000pt;}
.hc{height:21.120000pt;}
.h3{height:24.032000pt;}
.h2{height:33.070312pt;}
.h8{height:44.093750pt;}
.h4{height:45.937500pt;}
.h9{height:46.218750pt;}
.hb{height:46.593750pt;}
.ha{height:52.750000pt;}
.h10{height:54.514687pt;}
.h5{height:58.563750pt;}
.h7{height:58.644688pt;}
.hd{height:105.760000pt;}
.hf{height:105.792000pt;}
.he{height:105.952000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w6{width:155.706667pt;}
.w7{width:215.586667pt;}
.w8{width:255.546667pt;}
.w5{width:267.386667pt;}
.w3{width:267.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x3{left:77.920000pt;}
.x8{left:85.151988pt;}
.xa{left:99.551988pt;}
.x9{left:107.871988pt;}
.x13{left:113.631988pt;}
.xd{left:116.671988pt;}
.x10{left:132.351988pt;}
.x1{left:134.426655pt;}
.x11{left:234.586667pt;}
.xc{left:243.706655pt;}
.xe{left:258.306655pt;}
.x4{left:260.706667pt;}
.x2{left:281.506655pt;}
.x5{left:346.146667pt;}
.xb{left:392.226655pt;}
.xf{left:415.933322pt;}
.x7{left:439.293333pt;}
.x12{left:450.813333pt;}
}




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