
    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_7a41322317558a35ed76fe84.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dbfc7bd32a77ca4b8ccdd9c5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7ea51c02097981da57a21557.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_873983ca55d2f746ae838f57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_b2845b7e1e4ac6c551399ba8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_8a15d3e3c77d227738de4fa6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_25879fdf8fd2510d89bace7e.woff2')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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.538800px;}
.ls8{letter-spacing:-0.496200px;}
.ls1f{letter-spacing:-0.450600px;}
.ls23{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.181200px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.109200px;}
.ls22{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.223800px;}
.lse{letter-spacing:0.262080px;}
.ls11{letter-spacing:0.262200px;}
.ls25{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.439920px;}
.ls15{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.440000px;}
.ls16{letter-spacing:5.040000px;}
.lsb{letter-spacing:10.080000px;}
.ls14{letter-spacing:12.240000px;}
.lsc{letter-spacing:12.960000px;}
.ls1b{letter-spacing:15.840000px;}
.ls24{letter-spacing:16.865280px;}
.ls12{letter-spacing:17.280000px;}
.ls13{letter-spacing:20.160000px;}
.ls21{letter-spacing:21.600000px;}
.lsd{letter-spacing:27.540000px;}
.ls17{letter-spacing:39.881280px;}
.ls1c{letter-spacing:43.481280px;}
.ls19{letter-spacing:46.026720px;}
.ls18{letter-spacing:49.626720px;}
.ls1a{letter-spacing:67.265280px;}
.ls1d{letter-spacing:75.600000px;}
.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:-16.865400px;}
.wsc{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.145400px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.248000px;}
.ws8{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.878800px;}
.wsd{word-spacing:-11.609400px;}
.ws7{word-spacing:-11.563800px;}
.wse{word-spacing:-11.521200px;}
.wsa{word-spacing:0.000000px;}
._28{margin-left:-9.724320px;}
._27{margin-left:-8.175840px;}
._2{margin-left:-7.174080px;}
._3{margin-left:-6.091920px;}
._1c{margin-left:-4.371840px;}
._c{margin-left:-2.980800px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._4{width:2.844480px;}
._e{width:4.069680px;}
._b{width:5.758320px;}
._a{width:6.804000px;}
._10{width:7.934160px;}
._9{width:9.666000px;}
._8{width:10.692000px;}
._5{width:12.360000px;}
._1b{width:13.738560px;}
._d{width:15.552000px;}
._f{width:16.660080px;}
._1d{width:17.686080px;}
._17{width:18.688320px;}
._14{width:20.142000px;}
._13{width:21.492000px;}
._1e{width:22.512720px;}
._32{width:23.672880px;}
._12{width:24.786000px;}
._6{width:26.082000px;}
._7{width:27.216000px;}
._15{width:28.296000px;}
._16{width:29.460000px;}
._1a{width:30.801600px;}
._11{width:32.520000px;}
._19{width:33.920640px;}
._18{width:34.992000px;}
._1f{width:36.630720px;}
._2f{width:37.733760px;}
._22{width:39.147840px;}
._23{width:40.453200px;}
._2b{width:41.495040px;}
._2a{width:43.070400px;}
._30{width:44.165280px;}
._24{width:48.024000px;}
._25{width:49.974240px;}
._29{width:53.297760px;}
._20{width:55.177920px;}
._21{width:56.456160px;}
._31{width:74.904960px;}
._2e{width:76.500000px;}
._35{width:89.026560px;}
._26{width:97.644480px;}
._2d{width:104.129280px;}
._33{width:110.952000px;}
._34{width:112.224960px;}
._2c{width:188.196960px;}
._36{width:478.252800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y40{bottom:2.520000px;}
.y3e{bottom:3.060000px;}
.y2{bottom:5.430000px;}
.y41{bottom:13.860000px;}
.y3d{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y3c{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y3b{bottom:49.500000px;}
.ya{bottom:55.440000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y3a{bottom:65.205000px;}
.y39{bottom:80.685000px;}
.y38{bottom:96.165000px;}
.y8c{bottom:110.376000px;}
.y37{bottom:111.645000px;}
.y8b{bottom:114.876000px;}
.ya0{bottom:120.636000px;}
.y8a{bottom:124.236000px;}
.y36{bottom:127.125000px;}
.y89{bottom:128.736000px;}
.y88{bottom:137.916000px;}
.y9f{bottom:139.536000px;}
.y9c{bottom:142.416000px;}
.y35{bottom:142.785000px;}
.y47{bottom:147.096000px;}
.y87{bottom:151.770000px;}
.y9b{bottom:153.210000px;}
.y86{bottom:156.270000px;}
.y34{bottom:158.265000px;}
.y9e{bottom:158.430000px;}
.y85{bottom:165.630000px;}
.y46{bottom:166.170000px;}
.y98{bottom:167.070000px;}
.ya4{bottom:170.130000px;}
.y33{bottom:173.745000px;}
.y9d{bottom:177.510000px;}
.y84{bottom:179.310000px;}
.ya3{bottom:180.750000px;}
.y83{bottom:183.810000px;}
.y45{bottom:185.070000px;}
.y32{bottom:189.225000px;}
.y82{bottom:193.170000px;}
.y97{bottom:196.410000px;}
.y81{bottom:197.670000px;}
.y44{bottom:203.970000px;}
.y31{bottom:204.885000px;}
.y80{bottom:207.030000px;}
.y94{bottom:208.470000px;}
.yaf{bottom:211.530000px;}
.y96{bottom:215.490000px;}
.y30{bottom:220.365000px;}
.y7f{bottom:220.710000px;}
.y43{bottom:223.050000px;}
.y7e{bottom:225.210000px;}
.y93{bottom:234.390000px;}
.y7d{bottom:234.570000px;}
.y2f{bottom:235.845000px;}
.y42{bottom:238.350000px;}
.yae{bottom:239.070000px;}
.y7c{bottom:248.430000px;}
.yad{bottom:249.870000px;}
.y2e{bottom:251.325000px;}
.y7b{bottom:252.930000px;}
.y91{bottom:253.290000px;}
.y92{bottom:259.230000px;}
.y3f{bottom:260.850000px;}
.y7a{bottom:263.550000px;}
.y2d{bottom:266.985000px;}
.y90{bottom:272.370000px;}
.yac{bottom:279.210000px;}
.y2c{bottom:282.465000px;}
.y12{bottom:285.870000px;}
.y79{bottom:291.270000px;}
.y2b{bottom:297.945000px;}
.y78{bottom:310.350000px;}
.y2a{bottom:313.425000px;}
.y29{bottom:329.115000px;}
.y77{bottom:329.250000px;}
.ya2{bottom:335.190000px;}
.y28{bottom:344.595000px;}
.y76{bottom:348.375000px;}
.y8f{bottom:354.315000px;}
.y27{bottom:360.075000px;}
.y75{bottom:367.275000px;}
.y26{bottom:375.555000px;}
.y74{bottom:386.175000px;}
.y25{bottom:391.215000px;}
.y73{bottom:405.255000px;}
.y24{bottom:406.695000px;}
.yab{bottom:411.195000px;}
.y23{bottom:422.175000px;}
.y71{bottom:424.155000px;}
.y72{bottom:430.095000px;}
.y22{bottom:437.655000px;}
.y70{bottom:443.235000px;}
.y95{bottom:449.175000px;}
.y21{bottom:453.315000px;}
.y6e{bottom:462.135000px;}
.y6f{bottom:468.075000px;}
.y20{bottom:468.795000px;}
.y6d{bottom:481.035000px;}
.y1f{bottom:484.275000px;}
.ya1{bottom:486.975000px;}
.y1e{bottom:499.755000px;}
.y6c{bottom:500.115000px;}
.y1d{bottom:515.415000px;}
.y6b{bottom:519.015000px;}
.y1c{bottom:530.895000px;}
.y6a{bottom:538.095000px;}
.y1b{bottom:546.375000px;}
.y69{bottom:556.995000px;}
.y1a{bottom:561.855000px;}
.y68{bottom:575.895000px;}
.y19{bottom:577.515000px;}
.y18{bottom:593.040000px;}
.y67{bottom:594.975000px;}
.y17{bottom:608.520000px;}
.y66{bottom:613.905000px;}
.y16{bottom:624.000000px;}
.y65{bottom:632.985000px;}
.yaa{bottom:638.925000px;}
.y15{bottom:639.660000px;}
.y64{bottom:651.885000px;}
.y14{bottom:655.140000px;}
.y13{bottom:670.620000px;}
.y62{bottom:670.785000px;}
.y63{bottom:676.725000px;}
.y61{bottom:689.865000px;}
.ya6{bottom:695.805000px;}
.y60{bottom:708.765000px;}
.y5f{bottom:727.845000px;}
.y5e{bottom:746.745000px;}
.y5d{bottom:765.645000px;}
.ya9{bottom:771.585000px;}
.y5c{bottom:784.725000px;}
.ya5{bottom:790.665000px;}
.y5b{bottom:803.625000px;}
.y8e{bottom:809.565000px;}
.y5a{bottom:822.705000px;}
.y59{bottom:841.605000px;}
.y58{bottom:860.685000px;}
.y57{bottom:879.630000px;}
.y9a{bottom:885.570000px;}
.y56{bottom:898.530000px;}
.y54{bottom:917.610000px;}
.y55{bottom:923.550000px;}
.y53{bottom:936.510000px;}
.ya8{bottom:942.450000px;}
.y52{bottom:955.590000px;}
.y11{bottom:972.330000px;}
.y50{bottom:974.490000px;}
.y51{bottom:980.430000px;}
.y10{bottom:989.610000px;}
.y4f{bottom:993.390000px;}
.yf{bottom:1006.890000px;}
.y4e{bottom:1012.470000px;}
.y99{bottom:1018.410000px;}
.ye{bottom:1024.530000px;}
.y4c{bottom:1031.370000px;}
.y4d{bottom:1037.310000px;}
.yd{bottom:1043.430000px;}
.y4b{bottom:1050.450000px;}
.y8d{bottom:1056.390000px;}
.yc{bottom:1062.870000px;}
.y4a{bottom:1069.350000px;}
.ya7{bottom:1075.290000px;}
.yb{bottom:1085.370000px;}
.y48{bottom:1088.250000px;}
.y49{bottom:1094.190000px;}
.y9{bottom:1108.410000px;}
.y1{bottom:1132.350000px;}
.h15{height:21.114844px;}
.h10{height:25.020000px;}
.h12{height:29.158594px;}
.h11{height:33.683203px;}
.h19{height:34.419375px;}
.hf{height:37.705078px;}
.he{height:38.100586px;}
.h16{height:39.760312px;}
.hb{height:41.726953px;}
.h3{height:42.164648px;}
.hd{height:44.507812px;}
.h9{height:46.251562px;}
.ha{height:46.736719px;}
.h18{height:48.224531px;}
.h5{height:49.255313px;}
.h14{height:50.273438px;}
.h4{height:50.800781px;}
.h17{height:53.755312px;}
.h13{height:54.596250px;}
.h8{height:54.864844px;}
.h7{height:63.104063px;}
.h6{height:71.613281px;}
.h2{height:77.436000px;}
.hc{height:683.205000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w7{width:224.130000px;}
.w4{width:255.090000px;}
.w8{width:342.750000px;}
.w9{width:350.895000px;}
.w3{width:374.655000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x12{left:30.600000px;}
.x2{left:70.374000px;}
.x6{left:75.420000px;}
.x1{left:108.036000px;}
.x24{left:111.815987px;}
.x10{left:116.136000px;}
.xa{left:125.315987px;}
.x48{left:129.275987px;}
.x7{left:131.805000px;}
.x31{left:135.035987px;}
.x49{left:140.075987px;}
.x15{left:150.509987px;}
.xb{left:162.569987px;}
.x25{left:164.369973px;}
.x26{left:169.589987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x32{left:189.029987px;}
.x33{left:216.029987px;}
.x34{left:243.029987px;}
.x35{left:270.029987px;}
.x2f{left:293.294973px;}
.x30{left:303.734987px;}
.x23{left:324.074987px;}
.xe{left:327.854987px;}
.xf{left:339.194987px;}
.xd{left:341.354987px;}
.x3c{left:349.094987px;}
.x38{left:367.994973px;}
.x39{left:378.434987px;}
.x2d{left:441.794973px;}
.x3e{left:445.394973px;}
.xc{left:446.474987px;}
.x2e{left:452.234987px;}
.x3f{left:455.834987px;}
.x13{left:458.895000px;}
.x28{left:467.384973px;}
.x21{left:472.964973px;}
.x44{left:476.384973px;}
.x22{left:478.184987px;}
.x27{left:484.124987px;}
.x45{left:486.824987px;}
.x9{left:503.204987px;}
.x18{left:508.964987px;}
.x1f{left:519.404973px;}
.x20{left:524.624987px;}
.x5{left:554.685000px;}
.x2c{left:564.764987px;}
.x36{left:569.264973px;}
.x11{left:575.205000px;}
.x37{left:579.704987px;}
.x19{left:614.804973px;}
.x1a{left:620.024987px;}
.x40{left:640.004973px;}
.x41{left:650.444987px;}
.x1b{left:669.929973px;}
.x1c{left:675.149987px;}
.x2b{left:680.549987px;}
.x3d{left:685.949987px;}
.x3a{left:694.229973px;}
.x42{left:696.209973px;}
.x46{left:698.549973px;}
.x3b{left:704.669987px;}
.x43{left:706.649987px;}
.x47{left:708.989987px;}
.x16{left:721.409973px;}
.x1d{left:723.389973px;}
.x17{left:726.629987px;}
.x1e{left:728.609987px;}
.x29{left:739.049973px;}
.x2a{left:749.489987px;}
.x14{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.478933pt;}
.ls8{letter-spacing:-0.441067pt;}
.ls1f{letter-spacing:-0.400533pt;}
.ls23{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.161067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.097067pt;}
.ls22{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.198933pt;}
.lse{letter-spacing:0.232960pt;}
.ls11{letter-spacing:0.233067pt;}
.ls25{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.391040pt;}
.ls15{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.280000pt;}
.ls16{letter-spacing:4.480000pt;}
.lsb{letter-spacing:8.960000pt;}
.ls14{letter-spacing:10.880000pt;}
.lsc{letter-spacing:11.520000pt;}
.ls1b{letter-spacing:14.080000pt;}
.ls24{letter-spacing:14.991360pt;}
.ls12{letter-spacing:15.360000pt;}
.ls13{letter-spacing:17.920000pt;}
.ls21{letter-spacing:19.200000pt;}
.lsd{letter-spacing:24.480000pt;}
.ls17{letter-spacing:35.450027pt;}
.ls1c{letter-spacing:38.650027pt;}
.ls19{letter-spacing:40.912640pt;}
.ls18{letter-spacing:44.112640pt;}
.ls1a{letter-spacing:59.791360pt;}
.ls1d{letter-spacing:67.200000pt;}
.ws10{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.351467pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.776000pt;}
.ws8{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.558933pt;}
.wsd{word-spacing:-10.319467pt;}
.ws7{word-spacing:-10.278933pt;}
.wse{word-spacing:-10.241067pt;}
.wsa{word-spacing:0.000000pt;}
._28{margin-left:-8.643840pt;}
._27{margin-left:-7.267413pt;}
._2{margin-left:-6.376960pt;}
._3{margin-left:-5.415040pt;}
._1c{margin-left:-3.886080pt;}
._c{margin-left:-2.649600pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._4{width:2.528427pt;}
._e{width:3.617493pt;}
._b{width:5.118507pt;}
._a{width:6.048000pt;}
._10{width:7.052587pt;}
._9{width:8.592000pt;}
._8{width:9.504000pt;}
._5{width:10.986667pt;}
._1b{width:12.212053pt;}
._d{width:13.824000pt;}
._f{width:14.808960pt;}
._1d{width:15.720960pt;}
._17{width:16.611840pt;}
._14{width:17.904000pt;}
._13{width:19.104000pt;}
._1e{width:20.011307pt;}
._32{width:21.042560pt;}
._12{width:22.032000pt;}
._6{width:23.184000pt;}
._7{width:24.192000pt;}
._15{width:25.152000pt;}
._16{width:26.186667pt;}
._1a{width:27.379200pt;}
._11{width:28.906667pt;}
._19{width:30.151680pt;}
._18{width:31.104000pt;}
._1f{width:32.560640pt;}
._2f{width:33.541120pt;}
._22{width:34.798080pt;}
._23{width:35.958400pt;}
._2b{width:36.884480pt;}
._2a{width:38.284800pt;}
._30{width:39.258027pt;}
._24{width:42.688000pt;}
._25{width:44.421547pt;}
._29{width:47.375787pt;}
._20{width:49.047040pt;}
._21{width:50.183253pt;}
._31{width:66.582187pt;}
._2e{width:68.000000pt;}
._35{width:79.134720pt;}
._26{width:86.795093pt;}
._2d{width:92.559360pt;}
._33{width:98.624000pt;}
._34{width:99.755520pt;}
._2c{width:167.286187pt;}
._36{width:425.113600pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.240000pt;}
.y3e{bottom:2.720000pt;}
.y2{bottom:4.826667pt;}
.y41{bottom:12.320000pt;}
.y3d{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y3c{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y3b{bottom:44.000000pt;}
.ya{bottom:49.280000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y3a{bottom:57.960000pt;}
.y39{bottom:71.720000pt;}
.y38{bottom:85.480000pt;}
.y8c{bottom:98.112000pt;}
.y37{bottom:99.240000pt;}
.y8b{bottom:102.112000pt;}
.ya0{bottom:107.232000pt;}
.y8a{bottom:110.432000pt;}
.y36{bottom:113.000000pt;}
.y89{bottom:114.432000pt;}
.y88{bottom:122.592000pt;}
.y9f{bottom:124.032000pt;}
.y9c{bottom:126.592000pt;}
.y35{bottom:126.920000pt;}
.y47{bottom:130.752000pt;}
.y87{bottom:134.906667pt;}
.y9b{bottom:136.186667pt;}
.y86{bottom:138.906667pt;}
.y34{bottom:140.680000pt;}
.y9e{bottom:140.826667pt;}
.y85{bottom:147.226667pt;}
.y46{bottom:147.706667pt;}
.y98{bottom:148.506667pt;}
.ya4{bottom:151.226667pt;}
.y33{bottom:154.440000pt;}
.y9d{bottom:157.786667pt;}
.y84{bottom:159.386667pt;}
.ya3{bottom:160.666667pt;}
.y83{bottom:163.386667pt;}
.y45{bottom:164.506667pt;}
.y32{bottom:168.200000pt;}
.y82{bottom:171.706667pt;}
.y97{bottom:174.586667pt;}
.y81{bottom:175.706667pt;}
.y44{bottom:181.306667pt;}
.y31{bottom:182.120000pt;}
.y80{bottom:184.026667pt;}
.y94{bottom:185.306667pt;}
.yaf{bottom:188.026667pt;}
.y96{bottom:191.546667pt;}
.y30{bottom:195.880000pt;}
.y7f{bottom:196.186667pt;}
.y43{bottom:198.266667pt;}
.y7e{bottom:200.186667pt;}
.y93{bottom:208.346667pt;}
.y7d{bottom:208.506667pt;}
.y2f{bottom:209.640000pt;}
.y42{bottom:211.866667pt;}
.yae{bottom:212.506667pt;}
.y7c{bottom:220.826667pt;}
.yad{bottom:222.106667pt;}
.y2e{bottom:223.400000pt;}
.y7b{bottom:224.826667pt;}
.y91{bottom:225.146667pt;}
.y92{bottom:230.426667pt;}
.y3f{bottom:231.866667pt;}
.y7a{bottom:234.266667pt;}
.y2d{bottom:237.320000pt;}
.y90{bottom:242.106667pt;}
.yac{bottom:248.186667pt;}
.y2c{bottom:251.080000pt;}
.y12{bottom:254.106667pt;}
.y79{bottom:258.906667pt;}
.y2b{bottom:264.840000pt;}
.y78{bottom:275.866667pt;}
.y2a{bottom:278.600000pt;}
.y29{bottom:292.546667pt;}
.y77{bottom:292.666667pt;}
.ya2{bottom:297.946667pt;}
.y28{bottom:306.306667pt;}
.y76{bottom:309.666667pt;}
.y8f{bottom:314.946667pt;}
.y27{bottom:320.066667pt;}
.y75{bottom:326.466667pt;}
.y26{bottom:333.826667pt;}
.y74{bottom:343.266667pt;}
.y25{bottom:347.746667pt;}
.y73{bottom:360.226667pt;}
.y24{bottom:361.506667pt;}
.yab{bottom:365.506667pt;}
.y23{bottom:375.266667pt;}
.y71{bottom:377.026667pt;}
.y72{bottom:382.306667pt;}
.y22{bottom:389.026667pt;}
.y70{bottom:393.986667pt;}
.y95{bottom:399.266667pt;}
.y21{bottom:402.946667pt;}
.y6e{bottom:410.786667pt;}
.y6f{bottom:416.066667pt;}
.y20{bottom:416.706667pt;}
.y6d{bottom:427.586667pt;}
.y1f{bottom:430.466667pt;}
.ya1{bottom:432.866667pt;}
.y1e{bottom:444.226667pt;}
.y6c{bottom:444.546667pt;}
.y1d{bottom:458.146667pt;}
.y6b{bottom:461.346667pt;}
.y1c{bottom:471.906667pt;}
.y6a{bottom:478.306667pt;}
.y1b{bottom:485.666667pt;}
.y69{bottom:495.106667pt;}
.y1a{bottom:499.426667pt;}
.y68{bottom:511.906667pt;}
.y19{bottom:513.346667pt;}
.y18{bottom:527.146667pt;}
.y67{bottom:528.866667pt;}
.y17{bottom:540.906667pt;}
.y66{bottom:545.693333pt;}
.y16{bottom:554.666667pt;}
.y65{bottom:562.653333pt;}
.yaa{bottom:567.933333pt;}
.y15{bottom:568.586667pt;}
.y64{bottom:579.453333pt;}
.y14{bottom:582.346667pt;}
.y13{bottom:596.106667pt;}
.y62{bottom:596.253333pt;}
.y63{bottom:601.533333pt;}
.y61{bottom:613.213333pt;}
.ya6{bottom:618.493333pt;}
.y60{bottom:630.013333pt;}
.y5f{bottom:646.973333pt;}
.y5e{bottom:663.773333pt;}
.y5d{bottom:680.573333pt;}
.ya9{bottom:685.853333pt;}
.y5c{bottom:697.533333pt;}
.ya5{bottom:702.813333pt;}
.y5b{bottom:714.333333pt;}
.y8e{bottom:719.613333pt;}
.y5a{bottom:731.293333pt;}
.y59{bottom:748.093333pt;}
.y58{bottom:765.053333pt;}
.y57{bottom:781.893333pt;}
.y9a{bottom:787.173333pt;}
.y56{bottom:798.693333pt;}
.y54{bottom:815.653333pt;}
.y55{bottom:820.933333pt;}
.y53{bottom:832.453333pt;}
.ya8{bottom:837.733333pt;}
.y52{bottom:849.413333pt;}
.y11{bottom:864.293333pt;}
.y50{bottom:866.213333pt;}
.y51{bottom:871.493333pt;}
.y10{bottom:879.653333pt;}
.y4f{bottom:883.013333pt;}
.yf{bottom:895.013333pt;}
.y4e{bottom:899.973333pt;}
.y99{bottom:905.253333pt;}
.ye{bottom:910.693333pt;}
.y4c{bottom:916.773333pt;}
.y4d{bottom:922.053333pt;}
.yd{bottom:927.493333pt;}
.y4b{bottom:933.733333pt;}
.y8d{bottom:939.013333pt;}
.yc{bottom:944.773333pt;}
.y4a{bottom:950.533333pt;}
.ya7{bottom:955.813333pt;}
.yb{bottom:964.773333pt;}
.y48{bottom:967.333333pt;}
.y49{bottom:972.613333pt;}
.y9{bottom:985.253333pt;}
.y1{bottom:1006.533333pt;}
.h15{height:18.768750pt;}
.h10{height:22.240000pt;}
.h12{height:25.918750pt;}
.h11{height:29.940625pt;}
.h19{height:30.595000pt;}
.hf{height:33.515625pt;}
.he{height:33.867188pt;}
.h16{height:35.342500pt;}
.hb{height:37.090625pt;}
.h3{height:37.479688pt;}
.hd{height:39.562500pt;}
.h9{height:41.112500pt;}
.ha{height:41.543750pt;}
.h18{height:42.866250pt;}
.h5{height:43.782500pt;}
.h14{height:44.687500pt;}
.h4{height:45.156250pt;}
.h17{height:47.782500pt;}
.h13{height:48.530000pt;}
.h8{height:48.768750pt;}
.h7{height:56.092500pt;}
.h6{height:63.656250pt;}
.h2{height:68.832000pt;}
.hc{height:607.293333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w7{width:199.226667pt;}
.w4{width:226.746667pt;}
.w8{width:304.666667pt;}
.w9{width:311.906667pt;}
.w3{width:333.026667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x12{left:27.200000pt;}
.x2{left:62.554667pt;}
.x6{left:67.040000pt;}
.x1{left:96.032000pt;}
.x24{left:99.391988pt;}
.x10{left:103.232000pt;}
.xa{left:111.391988pt;}
.x48{left:114.911988pt;}
.x7{left:117.160000pt;}
.x31{left:120.031988pt;}
.x49{left:124.511988pt;}
.x15{left:133.786655pt;}
.xb{left:144.506655pt;}
.x25{left:146.106643pt;}
.x26{left:150.746655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x32{left:168.026655pt;}
.x33{left:192.026655pt;}
.x34{left:216.026655pt;}
.x35{left:240.026655pt;}
.x2f{left:260.706643pt;}
.x30{left:269.986655pt;}
.x23{left:288.066655pt;}
.xe{left:291.426655pt;}
.xf{left:301.506655pt;}
.xd{left:303.426655pt;}
.x3c{left:310.306655pt;}
.x38{left:327.106643pt;}
.x39{left:336.386655pt;}
.x2d{left:392.706643pt;}
.x3e{left:395.906643pt;}
.xc{left:396.866655pt;}
.x2e{left:401.986655pt;}
.x3f{left:405.186655pt;}
.x13{left:407.906667pt;}
.x28{left:415.453310pt;}
.x21{left:420.413310pt;}
.x44{left:423.453310pt;}
.x22{left:425.053322pt;}
.x27{left:430.333322pt;}
.x45{left:432.733322pt;}
.x9{left:447.293322pt;}
.x18{left:452.413322pt;}
.x1f{left:461.693310pt;}
.x20{left:466.333322pt;}
.x5{left:493.053333pt;}
.x2c{left:502.013322pt;}
.x36{left:506.013310pt;}
.x11{left:511.293333pt;}
.x37{left:515.293322pt;}
.x19{left:546.493310pt;}
.x1a{left:551.133322pt;}
.x40{left:568.893310pt;}
.x41{left:578.173322pt;}
.x1b{left:595.493310pt;}
.x1c{left:600.133322pt;}
.x2b{left:604.933322pt;}
.x3d{left:609.733322pt;}
.x3a{left:617.093310pt;}
.x42{left:618.853310pt;}
.x46{left:620.933310pt;}
.x3b{left:626.373322pt;}
.x43{left:628.133322pt;}
.x47{left:630.213322pt;}
.x16{left:641.253310pt;}
.x1d{left:643.013310pt;}
.x17{left:645.893322pt;}
.x1e{left:647.653322pt;}
.x29{left:656.933310pt;}
.x2a{left:666.213322pt;}
.x14{left:697.893322pt;}
}




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