
    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_27eba34ac9cddd15e4411711.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_6ad587f4d34654e555c52c8a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6a98d883159964b53e3ac644.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')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_a009011232a6d2aec1976e77.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_3bbf243571131d881c0b5335.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b45c90a99391b47db7052115.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986328;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_1d587ea2f9a1a7bc12727c15.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf3bbac359d61fe9fd259dd1.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-1.980000px;}
.lsd{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.206400px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.513600px;}
.ls13{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.900000px;}
.ls10{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.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:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws1{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-8.039520px;}
._12{margin-left:-6.990480px;}
._1e{margin-left:-5.318640px;}
._b{margin-left:-3.757920px;}
._14{margin-left:-2.724240px;}
._0{margin-left:-1.080000px;}
._13{width:1.124400px;}
._1{width:2.220000px;}
._17{width:3.710640px;}
._18{width:5.289840px;}
._1b{width:6.325680px;}
._1a{width:8.310960px;}
._19{width:9.621600px;}
._6{width:10.800000px;}
._16{width:12.321600px;}
._15{width:13.326480px;}
._1c{width:15.989040px;}
._1d{width:17.333280px;}
._10{width:18.948000px;}
._20{width:20.364240px;}
._29{width:32.105520px;}
._28{width:34.915200px;}
._27{width:37.947600px;}
._2c{width:39.300000px;}
._2a{width:40.349040px;}
._2b{width:41.556000px;}
._2e{width:47.341680px;}
._2d{width:48.643920px;}
._25{width:58.325760px;}
._26{width:63.697200px;}
._24{width:67.772160px;}
._22{width:70.277760px;}
._23{width:71.662080px;}
._7{width:76.284960px;}
._1f{width:78.774720px;}
._11{width:99.660000px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._f{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._e{width:637.320000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.940000px;}
.y40{bottom:9.000000px;}
.y47{bottom:11.340000px;}
.y3e{bottom:12.060000px;}
.y6{bottom:12.420000px;}
.y43{bottom:12.600000px;}
.y4b{bottom:16.200000px;}
.y8{bottom:18.180000px;}
.y46{bottom:31.140000px;}
.y42{bottom:32.580000px;}
.y4a{bottom:36.000000px;}
.y45{bottom:36.585000px;}
.yc{bottom:37.080000px;}
.y5{bottom:40.320000px;}
.y49{bottom:55.800000px;}
.yb{bottom:57.600000px;}
.y4{bottom:68.400000px;}
.yd{bottom:74.340000px;}
.ya{bottom:77.940000px;}
.y3{bottom:96.330000px;}
.y6e{bottom:104.580000px;}
.yc1{bottom:108.360000px;}
.y3b{bottom:113.400000px;}
.yc3{bottom:117.360000px;}
.yc6{bottom:117.720000px;}
.y6d{bottom:124.560000px;}
.y2{bottom:125.670000px;}
.yaa{bottom:128.340000px;}
.y3a{bottom:133.200000px;}
.yc5{bottom:136.260000px;}
.yc2{bottom:137.340000px;}
.y6c{bottom:144.360000px;}
.ya9{bottom:148.140000px;}
.y39{bottom:153.030000px;}
.yc4{bottom:154.830000px;}
.y9a{bottom:157.170000px;}
.y6b{bottom:164.190000px;}
.ya8{bottom:167.970000px;}
.y38{bottom:172.830000px;}
.y99{bottom:176.970000px;}
.y6a{bottom:183.990000px;}
.ya7{bottom:187.770000px;}
.y37{bottom:192.630000px;}
.y98{bottom:196.770000px;}
.y69{bottom:203.790000px;}
.ya6{bottom:207.570000px;}
.y36{bottom:212.610000px;}
.y97{bottom:216.570000px;}
.y68{bottom:223.770000px;}
.ya5{bottom:227.550000px;}
.y35{bottom:232.410000px;}
.y96{bottom:236.550000px;}
.y67{bottom:243.570000px;}
.ya4{bottom:247.350000px;}
.y34{bottom:252.210000px;}
.y95{bottom:256.350000px;}
.y66{bottom:263.370000px;}
.ya3{bottom:267.150000px;}
.y33{bottom:272.010000px;}
.y94{bottom:276.150000px;}
.y65{bottom:283.170000px;}
.ya2{bottom:286.950000px;}
.y32{bottom:291.810000px;}
.y93{bottom:295.950000px;}
.y64{bottom:302.970000px;}
.ya1{bottom:306.750000px;}
.y31{bottom:311.790000px;}
.y92{bottom:315.750000px;}
.y63{bottom:322.950000px;}
.ya0{bottom:326.730000px;}
.y30{bottom:331.590000px;}
.y91{bottom:335.730000px;}
.y62{bottom:342.750000px;}
.y9f{bottom:346.530000px;}
.y2f{bottom:351.390000px;}
.y90{bottom:355.530000px;}
.y61{bottom:362.550000px;}
.y9e{bottom:366.330000px;}
.y2e{bottom:371.190000px;}
.y8f{bottom:375.330000px;}
.y60{bottom:382.350000px;}
.y9d{bottom:386.130000px;}
.y2d{bottom:390.990000px;}
.y8e{bottom:395.130000px;}
.y5f{bottom:402.195000px;}
.y9c{bottom:405.975000px;}
.y2c{bottom:411.015000px;}
.y8d{bottom:414.975000px;}
.y5e{bottom:422.175000px;}
.y9b{bottom:425.955000px;}
.y2b{bottom:430.815000px;}
.y8c{bottom:434.955000px;}
.y5d{bottom:441.975000px;}
.yc0{bottom:445.755000px;}
.y2a{bottom:450.615000px;}
.y8b{bottom:454.755000px;}
.y5c{bottom:461.775000px;}
.ybf{bottom:465.555000px;}
.y29{bottom:470.415000px;}
.y8a{bottom:474.555000px;}
.y5b{bottom:481.575000px;}
.ybe{bottom:485.355000px;}
.y28{bottom:490.215000px;}
.y89{bottom:494.355000px;}
.y5a{bottom:501.375000px;}
.ybd{bottom:505.155000px;}
.y27{bottom:510.195000px;}
.y88{bottom:514.155000px;}
.y59{bottom:521.355000px;}
.ybc{bottom:525.135000px;}
.y26{bottom:529.995000px;}
.y87{bottom:534.135000px;}
.y58{bottom:541.155000px;}
.ybb{bottom:544.935000px;}
.y25{bottom:549.795000px;}
.y86{bottom:553.935000px;}
.y57{bottom:560.955000px;}
.yba{bottom:564.735000px;}
.y24{bottom:569.595000px;}
.y85{bottom:573.735000px;}
.y56{bottom:580.755000px;}
.yb9{bottom:584.535000px;}
.y23{bottom:589.395000px;}
.y84{bottom:593.535000px;}
.y55{bottom:600.555000px;}
.yb8{bottom:604.335000px;}
.y22{bottom:609.375000px;}
.y83{bottom:613.335000px;}
.y54{bottom:620.535000px;}
.yb7{bottom:624.315000px;}
.y21{bottom:629.175000px;}
.y82{bottom:633.315000px;}
.y53{bottom:640.335000px;}
.yb6{bottom:644.115000px;}
.y20{bottom:648.975000px;}
.y81{bottom:653.145000px;}
.y52{bottom:660.165000px;}
.yb5{bottom:663.945000px;}
.y1f{bottom:668.805000px;}
.y80{bottom:672.945000px;}
.y51{bottom:679.965000px;}
.yb4{bottom:683.745000px;}
.y1e{bottom:688.605000px;}
.y7f{bottom:692.745000px;}
.y50{bottom:699.765000px;}
.yb3{bottom:703.545000px;}
.y1d{bottom:708.585000px;}
.y7e{bottom:712.545000px;}
.y4f{bottom:719.745000px;}
.yb2{bottom:723.525000px;}
.y1c{bottom:728.385000px;}
.y7d{bottom:732.525000px;}
.y4e{bottom:739.545000px;}
.yb1{bottom:743.325000px;}
.y1b{bottom:748.185000px;}
.y7c{bottom:752.325000px;}
.y4d{bottom:759.345000px;}
.yb0{bottom:763.125000px;}
.y1a{bottom:767.985000px;}
.y7b{bottom:772.125000px;}
.y4c{bottom:779.145000px;}
.yaf{bottom:782.925000px;}
.y19{bottom:787.785000px;}
.y7a{bottom:791.925000px;}
.y48{bottom:793.905000px;}
.yae{bottom:802.725000px;}
.y18{bottom:807.765000px;}
.y79{bottom:811.725000px;}
.yad{bottom:822.705000px;}
.y17{bottom:827.565000px;}
.y78{bottom:831.705000px;}
.yac{bottom:842.505000px;}
.y16{bottom:847.365000px;}
.y77{bottom:851.505000px;}
.yab{bottom:862.305000px;}
.y44{bottom:866.265000px;}
.y15{bottom:867.165000px;}
.y76{bottom:871.305000px;}
.y14{bottom:886.965000px;}
.y75{bottom:891.105000px;}
.y74{bottom:910.950000px;}
.y13{bottom:912.210000px;}
.y41{bottom:919.410000px;}
.y12{bottom:927.330000px;}
.y73{bottom:930.930000px;}
.y11{bottom:948.570000px;}
.y72{bottom:950.730000px;}
.y3f{bottom:968.550000px;}
.y71{bottom:970.530000px;}
.y10{bottom:971.970000px;}
.y70{bottom:990.330000px;}
.y3d{bottom:994.830000px;}
.yf{bottom:1003.830000px;}
.y6f{bottom:1010.130000px;}
.y3c{bottom:1030.110000px;}
.y9{bottom:1047.390000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.hb{height:21.420000px;}
.h12{height:23.040000px;}
.h11{height:26.100000px;}
.he{height:27.147656px;}
.h7{height:33.480000px;}
.h8{height:41.726953px;}
.hf{height:42.164648px;}
.h17{height:43.506914px;}
.h16{height:45.024258px;}
.hc{height:46.251562px;}
.h13{height:46.620000px;}
.h4{height:46.736719px;}
.h10{height:49.255313px;}
.h14{height:50.616000px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.hd{height:67.565039px;}
.h15{height:69.840000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w6{width:50.436000px;}
.w7{width:59.940000px;}
.w3{width:137.556000px;}
.w8{width:141.336000px;}
.w9{width:484.125000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.x11{left:54.719987px;}
.x6{left:56.519987px;}
.xc{left:77.400000px;}
.x10{left:80.999987px;}
.xb{left:107.135987px;}
.x4{left:118.470000px;}
.xd{left:128.736000px;}
.xe{left:189.390000px;}
.xa{left:248.429987px;}
.x9{left:326.054987px;}
.xf{left:331.455000px;}
.x7{left:392.474987px;}
.x8{left:446.504987px;}
.x3{left:702.510000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-1.760000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.456533pt;}
.ls13{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls10{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-7.146240pt;}
._12{margin-left:-6.213760pt;}
._1e{margin-left:-4.727680pt;}
._b{margin-left:-3.340373pt;}
._14{margin-left:-2.421547pt;}
._0{margin-left:-0.960000pt;}
._13{width:0.999467pt;}
._1{width:1.973333pt;}
._17{width:3.298347pt;}
._18{width:4.702080pt;}
._1b{width:5.622827pt;}
._1a{width:7.387520pt;}
._19{width:8.552533pt;}
._6{width:9.600000pt;}
._16{width:10.952533pt;}
._15{width:11.845760pt;}
._1c{width:14.212480pt;}
._1d{width:15.407360pt;}
._10{width:16.842667pt;}
._20{width:18.101547pt;}
._29{width:28.538240pt;}
._28{width:31.035733pt;}
._27{width:33.731200pt;}
._2c{width:34.933333pt;}
._2a{width:35.865813pt;}
._2b{width:36.938667pt;}
._2e{width:42.081493pt;}
._2d{width:43.239040pt;}
._25{width:51.845120pt;}
._26{width:56.619733pt;}
._24{width:60.241920pt;}
._22{width:62.469120pt;}
._23{width:63.699627pt;}
._7{width:67.808853pt;}
._1f{width:70.021973pt;}
._11{width:88.586667pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._f{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._e{width:566.506667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.280000pt;}
.y40{bottom:8.000000pt;}
.y47{bottom:10.080000pt;}
.y3e{bottom:10.720000pt;}
.y6{bottom:11.040000pt;}
.y43{bottom:11.200000pt;}
.y4b{bottom:14.400000pt;}
.y8{bottom:16.160000pt;}
.y46{bottom:27.680000pt;}
.y42{bottom:28.960000pt;}
.y4a{bottom:32.000000pt;}
.y45{bottom:32.520000pt;}
.yc{bottom:32.960000pt;}
.y5{bottom:35.840000pt;}
.y49{bottom:49.600000pt;}
.yb{bottom:51.200000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:66.080000pt;}
.ya{bottom:69.280000pt;}
.y3{bottom:85.626667pt;}
.y6e{bottom:92.960000pt;}
.yc1{bottom:96.320000pt;}
.y3b{bottom:100.800000pt;}
.yc3{bottom:104.320000pt;}
.yc6{bottom:104.640000pt;}
.y6d{bottom:110.720000pt;}
.y2{bottom:111.706667pt;}
.yaa{bottom:114.080000pt;}
.y3a{bottom:118.400000pt;}
.yc5{bottom:121.120000pt;}
.yc2{bottom:122.080000pt;}
.y6c{bottom:128.320000pt;}
.ya9{bottom:131.680000pt;}
.y39{bottom:136.026667pt;}
.yc4{bottom:137.626667pt;}
.y9a{bottom:139.706667pt;}
.y6b{bottom:145.946667pt;}
.ya8{bottom:149.306667pt;}
.y38{bottom:153.626667pt;}
.y99{bottom:157.306667pt;}
.y6a{bottom:163.546667pt;}
.ya7{bottom:166.906667pt;}
.y37{bottom:171.226667pt;}
.y98{bottom:174.906667pt;}
.y69{bottom:181.146667pt;}
.ya6{bottom:184.506667pt;}
.y36{bottom:188.986667pt;}
.y97{bottom:192.506667pt;}
.y68{bottom:198.906667pt;}
.ya5{bottom:202.266667pt;}
.y35{bottom:206.586667pt;}
.y96{bottom:210.266667pt;}
.y67{bottom:216.506667pt;}
.ya4{bottom:219.866667pt;}
.y34{bottom:224.186667pt;}
.y95{bottom:227.866667pt;}
.y66{bottom:234.106667pt;}
.ya3{bottom:237.466667pt;}
.y33{bottom:241.786667pt;}
.y94{bottom:245.466667pt;}
.y65{bottom:251.706667pt;}
.ya2{bottom:255.066667pt;}
.y32{bottom:259.386667pt;}
.y93{bottom:263.066667pt;}
.y64{bottom:269.306667pt;}
.ya1{bottom:272.666667pt;}
.y31{bottom:277.146667pt;}
.y92{bottom:280.666667pt;}
.y63{bottom:287.066667pt;}
.ya0{bottom:290.426667pt;}
.y30{bottom:294.746667pt;}
.y91{bottom:298.426667pt;}
.y62{bottom:304.666667pt;}
.y9f{bottom:308.026667pt;}
.y2f{bottom:312.346667pt;}
.y90{bottom:316.026667pt;}
.y61{bottom:322.266667pt;}
.y9e{bottom:325.626667pt;}
.y2e{bottom:329.946667pt;}
.y8f{bottom:333.626667pt;}
.y60{bottom:339.866667pt;}
.y9d{bottom:343.226667pt;}
.y2d{bottom:347.546667pt;}
.y8e{bottom:351.226667pt;}
.y5f{bottom:357.506667pt;}
.y9c{bottom:360.866667pt;}
.y2c{bottom:365.346667pt;}
.y8d{bottom:368.866667pt;}
.y5e{bottom:375.266667pt;}
.y9b{bottom:378.626667pt;}
.y2b{bottom:382.946667pt;}
.y8c{bottom:386.626667pt;}
.y5d{bottom:392.866667pt;}
.yc0{bottom:396.226667pt;}
.y2a{bottom:400.546667pt;}
.y8b{bottom:404.226667pt;}
.y5c{bottom:410.466667pt;}
.ybf{bottom:413.826667pt;}
.y29{bottom:418.146667pt;}
.y8a{bottom:421.826667pt;}
.y5b{bottom:428.066667pt;}
.ybe{bottom:431.426667pt;}
.y28{bottom:435.746667pt;}
.y89{bottom:439.426667pt;}
.y5a{bottom:445.666667pt;}
.ybd{bottom:449.026667pt;}
.y27{bottom:453.506667pt;}
.y88{bottom:457.026667pt;}
.y59{bottom:463.426667pt;}
.ybc{bottom:466.786667pt;}
.y26{bottom:471.106667pt;}
.y87{bottom:474.786667pt;}
.y58{bottom:481.026667pt;}
.ybb{bottom:484.386667pt;}
.y25{bottom:488.706667pt;}
.y86{bottom:492.386667pt;}
.y57{bottom:498.626667pt;}
.yba{bottom:501.986667pt;}
.y24{bottom:506.306667pt;}
.y85{bottom:509.986667pt;}
.y56{bottom:516.226667pt;}
.yb9{bottom:519.586667pt;}
.y23{bottom:523.906667pt;}
.y84{bottom:527.586667pt;}
.y55{bottom:533.826667pt;}
.yb8{bottom:537.186667pt;}
.y22{bottom:541.666667pt;}
.y83{bottom:545.186667pt;}
.y54{bottom:551.586667pt;}
.yb7{bottom:554.946667pt;}
.y21{bottom:559.266667pt;}
.y82{bottom:562.946667pt;}
.y53{bottom:569.186667pt;}
.yb6{bottom:572.546667pt;}
.y20{bottom:576.866667pt;}
.y81{bottom:580.573333pt;}
.y52{bottom:586.813333pt;}
.yb5{bottom:590.173333pt;}
.y1f{bottom:594.493333pt;}
.y80{bottom:598.173333pt;}
.y51{bottom:604.413333pt;}
.yb4{bottom:607.773333pt;}
.y1e{bottom:612.093333pt;}
.y7f{bottom:615.773333pt;}
.y50{bottom:622.013333pt;}
.yb3{bottom:625.373333pt;}
.y1d{bottom:629.853333pt;}
.y7e{bottom:633.373333pt;}
.y4f{bottom:639.773333pt;}
.yb2{bottom:643.133333pt;}
.y1c{bottom:647.453333pt;}
.y7d{bottom:651.133333pt;}
.y4e{bottom:657.373333pt;}
.yb1{bottom:660.733333pt;}
.y1b{bottom:665.053333pt;}
.y7c{bottom:668.733333pt;}
.y4d{bottom:674.973333pt;}
.yb0{bottom:678.333333pt;}
.y1a{bottom:682.653333pt;}
.y7b{bottom:686.333333pt;}
.y4c{bottom:692.573333pt;}
.yaf{bottom:695.933333pt;}
.y19{bottom:700.253333pt;}
.y7a{bottom:703.933333pt;}
.y48{bottom:705.693333pt;}
.yae{bottom:713.533333pt;}
.y18{bottom:718.013333pt;}
.y79{bottom:721.533333pt;}
.yad{bottom:731.293333pt;}
.y17{bottom:735.613333pt;}
.y78{bottom:739.293333pt;}
.yac{bottom:748.893333pt;}
.y16{bottom:753.213333pt;}
.y77{bottom:756.893333pt;}
.yab{bottom:766.493333pt;}
.y44{bottom:770.013333pt;}
.y15{bottom:770.813333pt;}
.y76{bottom:774.493333pt;}
.y14{bottom:788.413333pt;}
.y75{bottom:792.093333pt;}
.y74{bottom:809.733333pt;}
.y13{bottom:810.853333pt;}
.y41{bottom:817.253333pt;}
.y12{bottom:824.293333pt;}
.y73{bottom:827.493333pt;}
.y11{bottom:843.173333pt;}
.y72{bottom:845.093333pt;}
.y3f{bottom:860.933333pt;}
.y71{bottom:862.693333pt;}
.y10{bottom:863.973333pt;}
.y70{bottom:880.293333pt;}
.y3d{bottom:884.293333pt;}
.yf{bottom:892.293333pt;}
.y6f{bottom:897.893333pt;}
.y3c{bottom:915.653333pt;}
.y9{bottom:931.013333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.hb{height:19.040000pt;}
.h12{height:20.480000pt;}
.h11{height:23.200000pt;}
.he{height:24.131250pt;}
.h7{height:29.760000pt;}
.h8{height:37.090625pt;}
.hf{height:37.479688pt;}
.h17{height:38.672812pt;}
.h16{height:40.021563pt;}
.hc{height:41.112500pt;}
.h13{height:41.440000pt;}
.h4{height:41.543750pt;}
.h10{height:43.782500pt;}
.h14{height:44.992000pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.hd{height:60.057813pt;}
.h15{height:62.080000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w6{width:44.832000pt;}
.w7{width:53.280000pt;}
.w3{width:122.272000pt;}
.w8{width:125.632000pt;}
.w9{width:430.333333pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.x11{left:48.639988pt;}
.x6{left:50.239988pt;}
.xc{left:68.800000pt;}
.x10{left:71.999988pt;}
.xb{left:95.231988pt;}
.x4{left:105.306667pt;}
.xd{left:114.432000pt;}
.xe{left:168.346667pt;}
.xa{left:220.826655pt;}
.x9{left:289.826655pt;}
.xf{left:294.626667pt;}
.x7{left:348.866655pt;}
.x8{left:396.893322pt;}
.x3{left:624.453333pt;}
.x5{left:737.120000pt;}
}




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