
    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_0b6cd2cdb0753faf65462686.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_29c50df96ee27fea1738fc0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2c195e135da70db12ff9c00b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_5fdfa700bdca626ab39f8197.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_166f350988ba005a97d3006a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_438a82a1666da6bf7d0fa5f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_40dd648179e70595ebdf3203.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b88aeeb6b364d73a087fb2f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_4d919d0540216fd7ce0383d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0b4c3cecd28e6240c72051c2.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5f68a9f0dba9ebd6cd3666ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_004af6d1978205687ecbf35b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-96.480000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.080000px;}
.ls28{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.341400px;}
.ls18{letter-spacing:-0.213600px;}
.lse{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.161400px;}
.ls1f{letter-spacing:-0.037440px;}
.lsc{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.ls1d{letter-spacing:0.121200px;}
.ls17{letter-spacing:0.172080px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181440px;}
.ls3{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.496080px;}
.ls24{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.748080px;}
.ls27{letter-spacing:1.260000px;}
.ls25{letter-spacing:3.420000px;}
.lsf{letter-spacing:7.020000px;}
.lsa{letter-spacing:8.460000px;}
.ls8{letter-spacing:9.180000px;}
.ls1a{letter-spacing:11.340000px;}
.ls19{letter-spacing:12.060000px;}
.lsb{letter-spacing:12.780000px;}
.ls1e{letter-spacing:12.900000px;}
.ls13{letter-spacing:20.700000px;}
.ls10{letter-spacing:21.221280px;}
.ls14{letter-spacing:23.580000px;}
.ls26{letter-spacing:34.380000px;}
.ls21{letter-spacing:35.621280px;}
.ls15{letter-spacing:36.540000px;}
.ls20{letter-spacing:64.620000px;}
.ls23{letter-spacing:69.660000px;}
.ls4{letter-spacing:362.136000px;}
.ls5{letter-spacing:550.056000px;}
.ls6{letter-spacing:1425.000000px;}
.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;}
}
.ws7{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.181200px;}
.ws8{word-spacing:-21.097440px;}
.ws6{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.031920px;}
.wsb{word-spacing:-21.022560px;}
.ws5{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-2.160000px;}
._0{margin-left:-1.010880px;}
._3{width:1.152000px;}
._7{width:2.556000px;}
._30{width:3.808800px;}
._32{width:5.186640px;}
._15{width:6.321120px;}
._8{width:7.894560px;}
._9{width:9.258000px;}
._17{width:10.530000px;}
._18{width:11.652960px;}
._a{width:12.745200px;}
._27{width:13.919040px;}
._26{width:15.044400px;}
._1e{width:16.258320px;}
._1d{width:17.437680px;}
._20{width:18.684000px;}
._16{width:19.964640px;}
._1a{width:22.152240px;}
._b{width:24.092640px;}
._12{width:25.094160px;}
._13{width:26.198640px;}
._14{width:27.293760px;}
._1b{width:28.725840px;}
._1c{width:29.807760px;}
._22{width:30.831840px;}
._29{width:31.946400px;}
._4{width:32.976000px;}
._34{width:34.255440px;}
._1f{width:36.138960px;}
._10{width:37.652400px;}
._f{width:38.834640px;}
._3a{width:39.842640px;}
._39{width:41.109120px;}
._48{width:42.959520px;}
._35{width:43.973280px;}
._36{width:45.474240px;}
._2d{width:47.139840px;}
._2a{width:48.656160px;}
._4d{width:50.430000px;}
._c{width:51.582240px;}
._d{width:53.125200px;}
._19{width:54.598800px;}
._23{width:56.019600px;}
._49{width:57.246240px;}
._3b{width:58.263840px;}
._21{width:59.810400px;}
._2{width:61.056000px;}
._1{width:62.136000px;}
._4a{width:64.780560px;}
._4b{width:65.929680px;}
._4c{width:70.508880px;}
._11{width:72.310560px;}
._e{width:73.541520px;}
._31{width:74.704320px;}
._43{width:75.849120px;}
._47{width:81.156000px;}
._33{width:83.060640px;}
._42{width:84.628080px;}
._28{width:99.705600px;}
._40{width:102.326160px;}
._41{width:103.436640px;}
._2b{width:106.444800px;}
._2c{width:107.694720px;}
._3e{width:111.196800px;}
._3f{width:113.055360px;}
._37{width:120.888720px;}
._38{width:122.020560px;}
._45{width:131.038560px;}
._44{width:132.045600px;}
._4f{width:135.960480px;}
._3d{width:159.099600px;}
._3c{width:160.531200px;}
._4e{width:182.947440px;}
._2e{width:184.906800px;}
._2f{width:186.193200px;}
._25{width:241.746480px;}
._24{width:242.967600px;}
._46{width:352.120320px;}
._5{width:846.156000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs0{font-size:120.240000px;}
.fs6{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:2.700000px;}
.y12{bottom:4.140000px;}
.y1c{bottom:4.500000px;}
.y19{bottom:7.020000px;}
.y24{bottom:10.080000px;}
.y23{bottom:11.880000px;}
.y26{bottom:14.040000px;}
.y11{bottom:24.840000px;}
.y1b{bottom:25.200000px;}
.y41{bottom:25.740000px;}
.y22{bottom:34.380000px;}
.y40{bottom:40.860000px;}
.y10{bottom:45.540000px;}
.y21{bottom:56.700000px;}
.y42{bottom:58.140000px;}
.y3f{bottom:74.556000px;}
.y20{bottom:79.245000px;}
.y7c{bottom:106.380000px;}
.y96{bottom:108.180000px;}
.y7b{bottom:142.200000px;}
.yae{bottom:142.560000px;}
.y95{bottom:144.396000px;}
.y5f{bottom:152.670000px;}
.y7a{bottom:178.770000px;}
.y94{bottom:180.210000px;}
.ya1{bottom:180.570000px;}
.y5e{bottom:189.210000px;}
.y79{bottom:214.950000px;}
.ya0{bottom:216.390000px;}
.y93{bottom:216.750000px;}
.y5d{bottom:225.390000px;}
.y78{bottom:251.130000px;}
.y9f{bottom:252.750000px;}
.y92{bottom:253.110000px;}
.y5c{bottom:261.750000px;}
.y1f{bottom:273.090000px;}
.y77{bottom:287.490000px;}
.ya6{bottom:288.930000px;}
.y91{bottom:289.290000px;}
.y5b{bottom:297.930000px;}
.y76{bottom:323.670000px;}
.y90{bottom:325.110000px;}
.y9e{bottom:325.470000px;}
.y5a{bottom:334.110000px;}
.y75{bottom:359.850000px;}
.ya9{bottom:361.290000px;}
.y8f{bottom:361.650000px;}
.y59{bottom:370.290000px;}
.y74{bottom:396.075000px;}
.y8e{bottom:397.695000px;}
.y9d{bottom:398.055000px;}
.y58{bottom:406.695000px;}
.y73{bottom:432.435000px;}
.y9c{bottom:433.875000px;}
.y8d{bottom:434.235000px;}
.y57{bottom:442.875000px;}
.y72{bottom:468.615000px;}
.y9b{bottom:470.055000px;}
.y8c{bottom:470.415000px;}
.y56{bottom:479.055000px;}
.y71{bottom:504.795000px;}
.y8b{bottom:506.235000px;}
.y9a{bottom:506.595000px;}
.y55{bottom:515.235000px;}
.y70{bottom:540.975000px;}
.ya8{bottom:542.595000px;}
.y8a{bottom:542.955000px;}
.y54{bottom:551.415000px;}
.y3e{bottom:557.715000px;}
.y1e{bottom:562.935000px;}
.y53{bottom:575.715000px;}
.y6f{bottom:577.335000px;}
.ya7{bottom:578.775000px;}
.y89{bottom:579.135000px;}
.y1d{bottom:583.635000px;}
.y3d{bottom:599.115000px;}
.y1a{bottom:604.365000px;}
.y6e{bottom:613.515000px;}
.ya5{bottom:614.955000px;}
.y88{bottom:615.315000px;}
.y3c{bottom:619.845000px;}
.y52{bottom:623.595000px;}
.y51{bottom:647.745000px;}
.y3b{bottom:649.545000px;}
.y6d{bottom:649.725000px;}
.ya4{bottom:651.165000px;}
.y87{bottom:651.525000px;}
.y18{bottom:654.045000px;}
.y50{bottom:671.865000px;}
.y3a{bottom:679.245000px;}
.y17{bottom:680.865000px;}
.y6c{bottom:685.905000px;}
.y86{bottom:687.345000px;}
.y99{bottom:687.705000px;}
.y39{bottom:708.945000px;}
.y4f{bottom:710.565000px;}
.y6b{bottom:722.085000px;}
.y85{bottom:724.065000px;}
.y16{bottom:730.545000px;}
.y38{bottom:746.025000px;}
.y4e{bottom:751.965000px;}
.y15{bottom:753.045000px;}
.y6a{bottom:758.445000px;}
.yab{bottom:759.885000px;}
.y84{bottom:760.245000px;}
.y13{bottom:782.025000px;}
.y4d{bottom:793.365000px;}
.y69{bottom:794.625000px;}
.yaa{bottom:796.065000px;}
.y83{bottom:796.425000px;}
.yf{bottom:804.525000px;}
.y37{bottom:809.745000px;}
.y36{bottom:830.445000px;}
.y68{bottom:830.805000px;}
.y4c{bottom:832.245000px;}
.y98{bottom:832.605000px;}
.y35{bottom:850.785000px;}
.y67{bottom:866.985000px;}
.y4b{bottom:868.605000px;}
.y82{bottom:868.965000px;}
.y34{bottom:871.530000px;}
.ye{bottom:875.310000px;}
.y33{bottom:892.230000px;}
.yd{bottom:896.190000px;}
.y66{bottom:903.390000px;}
.y4a{bottom:904.830000px;}
.y97{bottom:905.190000px;}
.y32{bottom:912.930000px;}
.yc{bottom:920.130000px;}
.y65{bottom:939.570000px;}
.yb{bottom:940.470000px;}
.y49{bottom:941.010000px;}
.y81{bottom:941.370000px;}
.y31{bottom:954.690000px;}
.ya{bottom:961.530000px;}
.y30{bottom:975.390000px;}
.y64{bottom:975.750000px;}
.y48{bottom:977.190000px;}
.y80{bottom:977.550000px;}
.y9{bottom:982.230000px;}
.y2f{bottom:996.090000px;}
.y8{bottom:1002.930000px;}
.yad{bottom:1011.570000px;}
.y63{bottom:1011.930000px;}
.y47{bottom:1013.550000px;}
.y7f{bottom:1013.910000px;}
.y2e{bottom:1016.790000px;}
.y7{bottom:1023.630000px;}
.y2d{bottom:1037.490000px;}
.y6{bottom:1044.330000px;}
.y62{bottom:1048.290000px;}
.y46{bottom:1049.730000px;}
.ya3{bottom:1050.090000px;}
.y2c{bottom:1058.190000px;}
.y5{bottom:1065.030000px;}
.y2b{bottom:1078.890000px;}
.yac{bottom:1084.110000px;}
.y61{bottom:1084.470000px;}
.y4{bottom:1085.730000px;}
.y45{bottom:1085.910000px;}
.y7e{bottom:1086.270000px;}
.y2a{bottom:1099.590000px;}
.y3{bottom:1106.430000px;}
.y29{bottom:1120.290000px;}
.y44{bottom:1122.090000px;}
.y7d{bottom:1122.450000px;}
.y2{bottom:1127.130000px;}
.y28{bottom:1141.020000px;}
.y1{bottom:1150.020000px;}
.y43{bottom:1158.480000px;}
.y60{bottom:1158.660000px;}
.ya2{bottom:1158.840000px;}
.y27{bottom:1161.720000px;}
.y25{bottom:1163.700000px;}
.h8{height:13.500000px;}
.hb{height:17.820000px;}
.h9{height:20.700000px;}
.h11{height:34.200000px;}
.ha{height:41.400000px;}
.h16{height:52.998047px;}
.h14{height:53.460000px;}
.h15{height:54.421875px;}
.hc{height:58.651172px;}
.h19{height:59.066719px;}
.h6{height:62.100000px;}
.h7{height:62.261719px;}
.hf{height:67.242656px;}
.h1c{height:69.432187px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h5{height:72.846211px;}
.hd{height:74.953125px;}
.h10{height:78.367500px;}
.h1a{height:82.635820px;}
.h17{height:82.676953px;}
.h12{height:84.898125px;}
.h1b{height:86.585445px;}
.h18{height:96.508125px;}
.he{height:105.156000px;}
.h2{height:121.179375px;}
.h13{height:211.992188px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:138.276000px;}
.w6{width:223.410000px;}
.w7{width:240.195000px;}
.w4{width:305.670000px;}
.w8{width:401.475000px;}
.w3{width:659.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:4.140000px;}
.xe{left:8.100000px;}
.x14{left:10.800000px;}
.xa{left:71.814000px;}
.x12{left:76.680000px;}
.x1e{left:84.959987px;}
.xc{left:106.415987px;}
.xd{left:111.096000px;}
.x1c{left:115.776000px;}
.x6{left:117.036000px;}
.x10{left:137.730000px;}
.x2b{left:138.995987px;}
.x21{left:144.035987px;}
.x9{left:152.814000px;}
.x1a{left:159.509987px;}
.x18{left:163.469987px;}
.x26{left:165.089987px;}
.x15{left:172.829987px;}
.x27{left:192.089987px;}
.x20{left:197.309987px;}
.x1f{left:200.549987px;}
.x2c{left:225.389987px;}
.x3{left:274.349987px;}
.x19{left:275.429987px;}
.x8{left:282.459000px;}
.x2e{left:284.294987px;}
.x29{left:295.094987px;}
.x2d{left:302.294987px;}
.x22{left:305.174987px;}
.x16{left:314.714987px;}
.x2a{left:320.114987px;}
.x2f{left:322.274987px;}
.x28{left:323.354987px;}
.xb{left:328.179000px;}
.x1b{left:334.874987px;}
.x17{left:394.814987px;}
.x4{left:400.574987px;}
.xf{left:416.775000px;}
.x24{left:436.754987px;}
.x5{left:445.214987px;}
.x2{left:446.474987px;}
.x23{left:496.364987px;}
.x11{left:555.045000px;}
.x13{left:619.305000px;}
.x1{left:786.749987px;}
.x1d{left:797.369987px;}
.x25{left:807.989987px;}
@media print{
.v2{vertical-align:-85.760000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls28{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.303467pt;}
.ls18{letter-spacing:-0.189867pt;}
.lse{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.143467pt;}
.ls1f{letter-spacing:-0.033280pt;}
.lsc{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.ls1d{letter-spacing:0.107733pt;}
.ls17{letter-spacing:0.152960pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161280pt;}
.ls3{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.440960pt;}
.ls24{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.664960pt;}
.ls27{letter-spacing:1.120000pt;}
.ls25{letter-spacing:3.040000pt;}
.lsf{letter-spacing:6.240000pt;}
.lsa{letter-spacing:7.520000pt;}
.ls8{letter-spacing:8.160000pt;}
.ls1a{letter-spacing:10.080000pt;}
.ls19{letter-spacing:10.720000pt;}
.lsb{letter-spacing:11.360000pt;}
.ls1e{letter-spacing:11.466667pt;}
.ls13{letter-spacing:18.400000pt;}
.ls10{letter-spacing:18.863360pt;}
.ls14{letter-spacing:20.960000pt;}
.ls26{letter-spacing:30.560000pt;}
.ls21{letter-spacing:31.663360pt;}
.ls15{letter-spacing:32.480000pt;}
.ls20{letter-spacing:57.440000pt;}
.ls23{letter-spacing:61.920000pt;}
.ls4{letter-spacing:321.898667pt;}
.ls5{letter-spacing:488.938667pt;}
.ls6{letter-spacing:1266.666667pt;}
.ws7{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.827733pt;}
.ws8{word-spacing:-18.753280pt;}
.ws6{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.695040pt;}
.wsb{word-spacing:-18.686720pt;}
.ws5{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-1.920000pt;}
._0{margin-left:-0.898560pt;}
._3{width:1.024000pt;}
._7{width:2.272000pt;}
._30{width:3.385600pt;}
._32{width:4.610347pt;}
._15{width:5.618773pt;}
._8{width:7.017387pt;}
._9{width:8.229333pt;}
._17{width:9.360000pt;}
._18{width:10.358187pt;}
._a{width:11.329067pt;}
._27{width:12.372480pt;}
._26{width:13.372800pt;}
._1e{width:14.451840pt;}
._1d{width:15.500160pt;}
._20{width:16.608000pt;}
._16{width:17.746347pt;}
._1a{width:19.690880pt;}
._b{width:21.415680pt;}
._12{width:22.305920pt;}
._13{width:23.287680pt;}
._14{width:24.261120pt;}
._1b{width:25.534080pt;}
._1c{width:26.495787pt;}
._22{width:27.406080pt;}
._29{width:28.396800pt;}
._4{width:29.312000pt;}
._34{width:30.449280pt;}
._1f{width:32.123520pt;}
._10{width:33.468800pt;}
._f{width:34.519680pt;}
._3a{width:35.415680pt;}
._39{width:36.541440pt;}
._48{width:38.186240pt;}
._35{width:39.087360pt;}
._36{width:40.421547pt;}
._2d{width:41.902080pt;}
._2a{width:43.249920pt;}
._4d{width:44.826667pt;}
._c{width:45.850880pt;}
._d{width:47.222400pt;}
._19{width:48.532267pt;}
._23{width:49.795200pt;}
._49{width:50.885547pt;}
._3b{width:51.790080pt;}
._21{width:53.164800pt;}
._2{width:54.272000pt;}
._1{width:55.232000pt;}
._4a{width:57.582720pt;}
._4b{width:58.604160pt;}
._4c{width:62.674560pt;}
._11{width:64.276053pt;}
._e{width:65.370240pt;}
._31{width:66.403840pt;}
._43{width:67.421440pt;}
._47{width:72.138667pt;}
._33{width:73.831680pt;}
._42{width:75.224960pt;}
._28{width:88.627200pt;}
._40{width:90.956587pt;}
._41{width:91.943680pt;}
._2b{width:94.617600pt;}
._2c{width:95.728640pt;}
._3e{width:98.841600pt;}
._3f{width:100.493653pt;}
._37{width:107.456640pt;}
._38{width:108.462720pt;}
._45{width:116.478720pt;}
._44{width:117.373867pt;}
._4f{width:120.853760pt;}
._3d{width:141.421867pt;}
._3c{width:142.694400pt;}
._4e{width:162.619947pt;}
._2e{width:164.361600pt;}
._2f{width:165.505067pt;}
._25{width:214.885760pt;}
._24{width:215.971200pt;}
._46{width:312.995840pt;}
._5{width:752.138667pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs0{font-size:106.880000pt;}
.fs6{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.400000pt;}
.y12{bottom:3.680000pt;}
.y1c{bottom:4.000000pt;}
.y19{bottom:6.240000pt;}
.y24{bottom:8.960000pt;}
.y23{bottom:10.560000pt;}
.y26{bottom:12.480000pt;}
.y11{bottom:22.080000pt;}
.y1b{bottom:22.400000pt;}
.y41{bottom:22.880000pt;}
.y22{bottom:30.560000pt;}
.y40{bottom:36.320000pt;}
.y10{bottom:40.480000pt;}
.y21{bottom:50.400000pt;}
.y42{bottom:51.680000pt;}
.y3f{bottom:66.272000pt;}
.y20{bottom:70.440000pt;}
.y7c{bottom:94.560000pt;}
.y96{bottom:96.160000pt;}
.y7b{bottom:126.400000pt;}
.yae{bottom:126.720000pt;}
.y95{bottom:128.352000pt;}
.y5f{bottom:135.706667pt;}
.y7a{bottom:158.906667pt;}
.y94{bottom:160.186667pt;}
.ya1{bottom:160.506667pt;}
.y5e{bottom:168.186667pt;}
.y79{bottom:191.066667pt;}
.ya0{bottom:192.346667pt;}
.y93{bottom:192.666667pt;}
.y5d{bottom:200.346667pt;}
.y78{bottom:223.226667pt;}
.y9f{bottom:224.666667pt;}
.y92{bottom:224.986667pt;}
.y5c{bottom:232.666667pt;}
.y1f{bottom:242.746667pt;}
.y77{bottom:255.546667pt;}
.ya6{bottom:256.826667pt;}
.y91{bottom:257.146667pt;}
.y5b{bottom:264.826667pt;}
.y76{bottom:287.706667pt;}
.y90{bottom:288.986667pt;}
.y9e{bottom:289.306667pt;}
.y5a{bottom:296.986667pt;}
.y75{bottom:319.866667pt;}
.ya9{bottom:321.146667pt;}
.y8f{bottom:321.466667pt;}
.y59{bottom:329.146667pt;}
.y74{bottom:352.066667pt;}
.y8e{bottom:353.506667pt;}
.y9d{bottom:353.826667pt;}
.y58{bottom:361.506667pt;}
.y73{bottom:384.386667pt;}
.y9c{bottom:385.666667pt;}
.y8d{bottom:385.986667pt;}
.y57{bottom:393.666667pt;}
.y72{bottom:416.546667pt;}
.y9b{bottom:417.826667pt;}
.y8c{bottom:418.146667pt;}
.y56{bottom:425.826667pt;}
.y71{bottom:448.706667pt;}
.y8b{bottom:449.986667pt;}
.y9a{bottom:450.306667pt;}
.y55{bottom:457.986667pt;}
.y70{bottom:480.866667pt;}
.ya8{bottom:482.306667pt;}
.y8a{bottom:482.626667pt;}
.y54{bottom:490.146667pt;}
.y3e{bottom:495.746667pt;}
.y1e{bottom:500.386667pt;}
.y53{bottom:511.746667pt;}
.y6f{bottom:513.186667pt;}
.ya7{bottom:514.466667pt;}
.y89{bottom:514.786667pt;}
.y1d{bottom:518.786667pt;}
.y3d{bottom:532.546667pt;}
.y1a{bottom:537.213333pt;}
.y6e{bottom:545.346667pt;}
.ya5{bottom:546.626667pt;}
.y88{bottom:546.946667pt;}
.y3c{bottom:550.973333pt;}
.y52{bottom:554.306667pt;}
.y51{bottom:575.773333pt;}
.y3b{bottom:577.373333pt;}
.y6d{bottom:577.533333pt;}
.ya4{bottom:578.813333pt;}
.y87{bottom:579.133333pt;}
.y18{bottom:581.373333pt;}
.y50{bottom:597.213333pt;}
.y3a{bottom:603.773333pt;}
.y17{bottom:605.213333pt;}
.y6c{bottom:609.693333pt;}
.y86{bottom:610.973333pt;}
.y99{bottom:611.293333pt;}
.y39{bottom:630.173333pt;}
.y4f{bottom:631.613333pt;}
.y6b{bottom:641.853333pt;}
.y85{bottom:643.613333pt;}
.y16{bottom:649.373333pt;}
.y38{bottom:663.133333pt;}
.y4e{bottom:668.413333pt;}
.y15{bottom:669.373333pt;}
.y6a{bottom:674.173333pt;}
.yab{bottom:675.453333pt;}
.y84{bottom:675.773333pt;}
.y13{bottom:695.133333pt;}
.y4d{bottom:705.213333pt;}
.y69{bottom:706.333333pt;}
.yaa{bottom:707.613333pt;}
.y83{bottom:707.933333pt;}
.yf{bottom:715.133333pt;}
.y37{bottom:719.773333pt;}
.y36{bottom:738.173333pt;}
.y68{bottom:738.493333pt;}
.y4c{bottom:739.773333pt;}
.y98{bottom:740.093333pt;}
.y35{bottom:756.253333pt;}
.y67{bottom:770.653333pt;}
.y4b{bottom:772.093333pt;}
.y82{bottom:772.413333pt;}
.y34{bottom:774.693333pt;}
.ye{bottom:778.053333pt;}
.y33{bottom:793.093333pt;}
.yd{bottom:796.613333pt;}
.y66{bottom:803.013333pt;}
.y4a{bottom:804.293333pt;}
.y97{bottom:804.613333pt;}
.y32{bottom:811.493333pt;}
.yc{bottom:817.893333pt;}
.y65{bottom:835.173333pt;}
.yb{bottom:835.973333pt;}
.y49{bottom:836.453333pt;}
.y81{bottom:836.773333pt;}
.y31{bottom:848.613333pt;}
.ya{bottom:854.693333pt;}
.y30{bottom:867.013333pt;}
.y64{bottom:867.333333pt;}
.y48{bottom:868.613333pt;}
.y80{bottom:868.933333pt;}
.y9{bottom:873.093333pt;}
.y2f{bottom:885.413333pt;}
.y8{bottom:891.493333pt;}
.yad{bottom:899.173333pt;}
.y63{bottom:899.493333pt;}
.y47{bottom:900.933333pt;}
.y7f{bottom:901.253333pt;}
.y2e{bottom:903.813333pt;}
.y7{bottom:909.893333pt;}
.y2d{bottom:922.213333pt;}
.y6{bottom:928.293333pt;}
.y62{bottom:931.813333pt;}
.y46{bottom:933.093333pt;}
.ya3{bottom:933.413333pt;}
.y2c{bottom:940.613333pt;}
.y5{bottom:946.693333pt;}
.y2b{bottom:959.013333pt;}
.yac{bottom:963.653333pt;}
.y61{bottom:963.973333pt;}
.y4{bottom:965.093333pt;}
.y45{bottom:965.253333pt;}
.y7e{bottom:965.573333pt;}
.y2a{bottom:977.413333pt;}
.y3{bottom:983.493333pt;}
.y29{bottom:995.813333pt;}
.y44{bottom:997.413333pt;}
.y7d{bottom:997.733333pt;}
.y2{bottom:1001.893333pt;}
.y28{bottom:1014.240000pt;}
.y1{bottom:1022.240000pt;}
.y43{bottom:1029.760000pt;}
.y60{bottom:1029.920000pt;}
.ya2{bottom:1030.080000pt;}
.y27{bottom:1032.640000pt;}
.y25{bottom:1034.400000pt;}
.h8{height:12.000000pt;}
.hb{height:15.840000pt;}
.h9{height:18.400000pt;}
.h11{height:30.400000pt;}
.ha{height:36.800000pt;}
.h16{height:47.109375pt;}
.h14{height:47.520000pt;}
.h15{height:48.375000pt;}
.hc{height:52.134375pt;}
.h19{height:52.503750pt;}
.h6{height:55.200000pt;}
.h7{height:55.343750pt;}
.hf{height:59.771250pt;}
.h1c{height:61.717500pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h5{height:64.752187pt;}
.hd{height:66.625000pt;}
.h10{height:69.660000pt;}
.h1a{height:73.454062pt;}
.h17{height:73.490625pt;}
.h12{height:75.465000pt;}
.h1b{height:76.964840pt;}
.h18{height:85.785000pt;}
.he{height:93.472000pt;}
.h2{height:107.715000pt;}
.h13{height:188.437500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:122.912000pt;}
.w6{width:198.586667pt;}
.w7{width:213.506667pt;}
.w4{width:271.706667pt;}
.w8{width:356.866667pt;}
.w3{width:585.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.680000pt;}
.xe{left:7.200000pt;}
.x14{left:9.600000pt;}
.xa{left:63.834667pt;}
.x12{left:68.160000pt;}
.x1e{left:75.519988pt;}
.xc{left:94.591988pt;}
.xd{left:98.752000pt;}
.x1c{left:102.912000pt;}
.x6{left:104.032000pt;}
.x10{left:122.426667pt;}
.x2b{left:123.551988pt;}
.x21{left:128.031988pt;}
.x9{left:135.834667pt;}
.x1a{left:141.786655pt;}
.x18{left:145.306655pt;}
.x26{left:146.746655pt;}
.x15{left:153.626655pt;}
.x27{left:170.746655pt;}
.x20{left:175.386655pt;}
.x1f{left:178.266655pt;}
.x2c{left:200.346655pt;}
.x3{left:243.866655pt;}
.x19{left:244.826655pt;}
.x8{left:251.074667pt;}
.x2e{left:252.706655pt;}
.x29{left:262.306655pt;}
.x2d{left:268.706655pt;}
.x22{left:271.266655pt;}
.x16{left:279.746655pt;}
.x2a{left:284.546655pt;}
.x2f{left:286.466655pt;}
.x28{left:287.426655pt;}
.xb{left:291.714667pt;}
.x1b{left:297.666655pt;}
.x17{left:350.946655pt;}
.x4{left:356.066655pt;}
.xf{left:370.466667pt;}
.x24{left:388.226655pt;}
.x5{left:395.746655pt;}
.x2{left:396.866655pt;}
.x23{left:441.213322pt;}
.x11{left:493.373333pt;}
.x13{left:550.493333pt;}
.x1{left:699.333322pt;}
.x1d{left:708.773322pt;}
.x25{left:718.213322pt;}
}




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