
    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_7b01a91bb5c3da0932a47db4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_0fa4fca6572ea9565af09f46.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_cd94a438bf423a17db01f5c1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_585405d50ab577d68bef207c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8394f86abfd293e0733683ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_f1c873aff25cf8b23b8dd679.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_a9ac6e90ce77231b473ce70e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_126d60d0395a30a9be6c5639.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_6fc87f2af2b56540cb802724.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1610013928b2fa3fe3187dc7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.970703;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls16{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.620000px;}
.ls12{letter-spacing:3.780000px;}
.ls13{letter-spacing:16.506720px;}
.ls14{letter-spacing:18.900000px;}
.ls11{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;}
}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.wsd{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.711360px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-529.548480px;}
._1b{margin-left:-12.200160px;}
._6{margin-left:-3.645360px;}
._b{margin-left:-2.309040px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._7{width:4.131600px;}
._d{width:5.281440px;}
._12{width:6.636720px;}
._9{width:7.686720px;}
._8{width:8.844480px;}
._a{width:10.156800px;}
._c{width:11.952000px;}
._e{width:13.875840px;}
._18{width:16.030800px;}
._14{width:17.188560px;}
._1d{width:18.362160px;}
._1c{width:19.681920px;}
._1e{width:21.193200px;}
._19{width:22.311360px;}
._1a{width:23.685600px;}
._10{width:30.238560px;}
._f{width:41.413680px;}
._5{width:54.200160px;}
._4{width:55.349280px;}
._11{width:91.231200px;}
._13{width:110.484000px;}
._15{width:140.724000px;}
._17{width:186.264000px;}
._16{width:201.204000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.fs7{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.y1f{bottom:5.760000px;}
.y47{bottom:10.800000px;}
.y6{bottom:14.220000px;}
.y2a{bottom:15.660000px;}
.y1e{bottom:25.560000px;}
.y29{bottom:35.640000px;}
.y1d{bottom:45.540000px;}
.y5{bottom:45.720000px;}
.y28{bottom:55.440000px;}
.y9{bottom:60.120000px;}
.y1c{bottom:65.340000px;}
.y46{bottom:72.540000px;}
.y27{bottom:75.270000px;}
.y4{bottom:77.400000px;}
.y44{bottom:81.180000px;}
.y1b{bottom:85.170000px;}
.y85{bottom:86.400000px;}
.y26{bottom:95.070000px;}
.y43{bottom:98.460000px;}
.y84{bottom:103.680000px;}
.y1a{bottom:104.970000px;}
.y3{bottom:109.110000px;}
.ye2{bottom:110.880000px;}
.y25{bottom:114.870000px;}
.y42{bottom:115.740000px;}
.yc9{bottom:118.440000px;}
.y41{bottom:120.960000px;}
.y19{bottom:124.770000px;}
.ye1{bottom:130.680000px;}
.y83{bottom:132.840000px;}
.y24{bottom:134.130000px;}
.y40{bottom:135.720000px;}
.y82{bottom:138.060000px;}
.yc8{bottom:141.660000px;}
.y2{bottom:142.230000px;}
.y18{bottom:144.750000px;}
.yb2{bottom:150.120000px;}
.ye0{bottom:150.660000px;}
.y81{bottom:150.840000px;}
.y23{bottom:152.130000px;}
.yb1{bottom:155.370000px;}
.y80{bottom:156.090000px;}
.yc7{bottom:161.490000px;}
.y17{bottom:164.550000px;}
.yb0{bottom:167.430000px;}
.y22{bottom:169.950000px;}
.ydf{bottom:170.490000px;}
.yaf{bottom:172.650000px;}
.y7f{bottom:173.730000px;}
.y3f{bottom:176.430000px;}
.yc6{bottom:181.290000px;}
.y16{bottom:184.350000px;}
.ydb{bottom:184.710000px;}
.yae{bottom:187.590000px;}
.y21{bottom:187.770000px;}
.yde{bottom:190.290000px;}
.y7d{bottom:195.510000px;}
.y3e{bottom:196.230000px;}
.y7e{bottom:200.730000px;}
.yc4{bottom:201.090000px;}
.yda{bottom:201.990000px;}
.y15{bottom:204.150000px;}
.y20{bottom:205.590000px;}
.yc5{bottom:206.310000px;}
.yd9{bottom:207.210000px;}
.ydd{bottom:210.090000px;}
.y7c{bottom:215.310000px;}
.y3d{bottom:216.030000px;}
.yc3{bottom:220.890000px;}
.yd8{bottom:221.970000px;}
.y14{bottom:223.950000px;}
.ydc{bottom:229.890000px;}
.y7b{bottom:235.110000px;}
.y3c{bottom:236.010000px;}
.yc2{bottom:240.870000px;}
.y13{bottom:243.930000px;}
.yd7{bottom:249.870000px;}
.yad{bottom:251.670000px;}
.y7a{bottom:254.910000px;}
.y3b{bottom:255.810000px;}
.yc1{bottom:260.670000px;}
.yd6{bottom:269.670000px;}
.yac{bottom:271.470000px;}
.y78{bottom:274.890000px;}
.y3a{bottom:275.610000px;}
.y79{bottom:280.110000px;}
.yc0{bottom:280.470000px;}
.yd5{bottom:289.470000px;}
.yab{bottom:291.270000px;}
.y76{bottom:294.690000px;}
.y39{bottom:295.410000px;}
.y77{bottom:299.910000px;}
.ybf{bottom:300.270000px;}
.yd4{bottom:309.270000px;}
.yaa{bottom:311.070000px;}
.y75{bottom:314.490000px;}
.y38{bottom:315.210000px;}
.ybe{bottom:320.070000px;}
.yd3{bottom:329.070000px;}
.ya9{bottom:331.050000px;}
.y73{bottom:334.290000px;}
.y37{bottom:335.190000px;}
.y74{bottom:339.510000px;}
.ybd{bottom:340.050000px;}
.yd2{bottom:349.050000px;}
.ya8{bottom:350.850000px;}
.y72{bottom:354.090000px;}
.ybc{bottom:359.850000px;}
.y36{bottom:363.990000px;}
.yd1{bottom:368.850000px;}
.ya7{bottom:370.650000px;}
.y71{bottom:371.370000px;}
.ybb{bottom:379.650000px;}
.y35{bottom:383.790000px;}
.yd0{bottom:388.650000px;}
.ya6{bottom:390.450000px;}
.y6f{bottom:391.170000px;}
.y70{bottom:396.390000px;}
.yba{bottom:399.450000px;}
.y34{bottom:403.635000px;}
.ycf{bottom:408.495000px;}
.ya5{bottom:410.295000px;}
.y6e{bottom:411.195000px;}
.yb9{bottom:419.295000px;}
.y33{bottom:423.435000px;}
.yce{bottom:428.295000px;}
.ya4{bottom:430.275000px;}
.y6d{bottom:430.995000px;}
.yb8{bottom:439.275000px;}
.y32{bottom:443.415000px;}
.y6c{bottom:448.275000px;}
.ya3{bottom:450.075000px;}
.yb7{bottom:459.075000px;}
.y31{bottom:463.215000px;}
.y6b{bottom:468.075000px;}
.ya2{bottom:478.875000px;}
.y2f{bottom:483.015000px;}
.y6a{bottom:487.875000px;}
.y30{bottom:488.235000px;}
.ya1{bottom:498.675000px;}
.y2e{bottom:502.815000px;}
.y69{bottom:507.675000px;}
.ya0{bottom:518.475000px;}
.y2d{bottom:522.615000px;}
.y68{bottom:527.475000px;}
.y9f{bottom:538.455000px;}
.y2c{bottom:542.595000px;}
.y67{bottom:547.455000px;}
.y9e{bottom:558.255000px;}
.y2b{bottom:562.395000px;}
.y66{bottom:567.255000px;}
.y12{bottom:577.155000px;}
.y9d{bottom:578.055000px;}
.y65{bottom:587.055000px;}
.y9c{bottom:597.855000px;}
.y64{bottom:606.855000px;}
.y9b{bottom:617.655000px;}
.y63{bottom:626.655000px;}
.y9a{bottom:637.635000px;}
.y62{bottom:646.635000px;}
.y99{bottom:657.465000px;}
.y61{bottom:666.465000px;}
.y97{bottom:677.265000px;}
.y98{bottom:682.485000px;}
.y60{bottom:686.265000px;}
.y96{bottom:697.065000px;}
.y5f{bottom:706.065000px;}
.ycd{bottom:711.285000px;}
.y95{bottom:716.865000px;}
.y5e{bottom:725.865000px;}
.y93{bottom:736.845000px;}
.y94{bottom:742.065000px;}
.y5d{bottom:745.845000px;}
.y92{bottom:756.645000px;}
.y5c{bottom:765.645000px;}
.y91{bottom:776.445000px;}
.y5b{bottom:785.445000px;}
.y8f{bottom:796.245000px;}
.y90{bottom:801.465000px;}
.y5a{bottom:805.245000px;}
.ycc{bottom:810.465000px;}
.y8e{bottom:816.045000px;}
.y59{bottom:825.045000px;}
.y8d{bottom:836.025000px;}
.y11{bottom:844.665000px;}
.y58{bottom:845.025000px;}
.y8c{bottom:855.825000px;}
.y10{bottom:864.465000px;}
.y57{bottom:864.825000px;}
.y8b{bottom:875.625000px;}
.yf{bottom:884.265000px;}
.y56{bottom:884.625000px;}
.y8a{bottom:895.425000px;}
.ye{bottom:904.110000px;}
.y55{bottom:904.470000px;}
.ycb{bottom:909.690000px;}
.y89{bottom:915.270000px;}
.y54{bottom:924.270000px;}
.yd{bottom:924.450000px;}
.y88{bottom:935.250000px;}
.y53{bottom:944.250000px;}
.yc{bottom:946.410000px;}
.yb6{bottom:955.050000px;}
.y52{bottom:964.050000px;}
.y87{bottom:969.270000px;}
.yb{bottom:971.250000px;}
.yb5{bottom:974.850000px;}
.y51{bottom:983.850000px;}
.yb4{bottom:994.650000px;}
.ya{bottom:1002.930000px;}
.y50{bottom:1003.650000px;}
.y86{bottom:1008.870000px;}
.y4f{bottom:1023.450000px;}
.y8{bottom:1029.750000px;}
.y4e{bottom:1043.430000px;}
.y1{bottom:1046.130000px;}
.y4d{bottom:1063.230000px;}
.y4c{bottom:1083.030000px;}
.y4b{bottom:1102.830000px;}
.yca{bottom:1108.050000px;}
.y4a{bottom:1122.630000px;}
.y49{bottom:1142.610000px;}
.yb3{bottom:1147.860000px;}
.y48{bottom:1162.440000px;}
.y45{bottom:1192.320000px;}
.h5{height:2.082656px;}
.hf{height:28.115859px;}
.hd{height:38.100586px;}
.he{height:39.049805px;}
.hc{height:42.164648px;}
.ha{height:43.215117px;}
.h17{height:43.302656px;}
.h16{height:43.506914px;}
.h9{height:46.736719px;}
.h7{height:47.901094px;}
.h10{height:48.127500px;}
.h18{height:48.312422px;}
.h4{height:48.774375px;}
.h15{height:48.995859px;}
.h13{height:52.581797px;}
.h3{height:57.256875px;}
.h14{height:63.351562px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h12{height:111.043828px;}
.h2{height:162.750000px;}
.hb{height:257.970000px;}
.h11{height:268.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:39.780000px;}
.w3{width:147.456000px;}
.w6{width:217.875000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:6.840000px;}
.x2{left:8.100000px;}
.x8{left:12.825000px;}
.x10{left:31.860000px;}
.x1{left:54.000000px;}
.x6{left:55.800000px;}
.xd{left:58.859987px;}
.x27{left:61.559987px;}
.x24{left:63.719987px;}
.x35{left:80.999987px;}
.x9{left:108.035987px;}
.x13{left:136.115973px;}
.x4{left:139.350000px;}
.x14{left:140.975987px;}
.x18{left:162.029987px;}
.x11{left:168.869987px;}
.x15{left:174.809973px;}
.x16{left:179.669987px;}
.x20{left:246.809973px;}
.x21{left:256.529987px;}
.xc{left:270.074987px;}
.x2e{left:307.694973px;}
.x2f{left:317.414987px;}
.xe{left:331.994987px;}
.x2a{left:342.614973px;}
.x22{left:344.414973px;}
.x2b{left:352.334987px;}
.x23{left:354.134987px;}
.x1f{left:378.974973px;}
.x5{left:384.734987px;}
.x28{left:443.054973px;}
.x29{left:452.804987px;}
.xa{left:482.324973px;}
.xb{left:487.184987px;}
.x33{left:527.504973px;}
.x34{left:537.224987px;}
.x30{left:542.264973px;}
.x31{left:551.984987px;}
.x1d{left:557.384973px;}
.x1e{left:562.244987px;}
.x2c{left:573.584973px;}
.x2d{left:583.304987px;}
.x1b{left:588.884973px;}
.x1c{left:593.744987px;}
.x12{left:614.264973px;}
.x7{left:619.485000px;}
.x17{left:624.164987px;}
.x3{left:687.930000px;}
.x19{left:693.329973px;}
.x1a{left:698.189987px;}
.x25{left:791.969973px;}
.x26{left:801.689987px;}
.x32{left:811.979987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls16{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.440000pt;}
.ls12{letter-spacing:3.360000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls14{letter-spacing:16.800000pt;}
.ls11{letter-spacing:40.912640pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.wsd{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.632320pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-470.709760pt;}
._1b{margin-left:-10.844587pt;}
._6{margin-left:-3.240320pt;}
._b{margin-left:-2.052480pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._7{width:3.672533pt;}
._d{width:4.694613pt;}
._12{width:5.899307pt;}
._9{width:6.832640pt;}
._8{width:7.861760pt;}
._a{width:9.028267pt;}
._c{width:10.624000pt;}
._e{width:12.334080pt;}
._18{width:14.249600pt;}
._14{width:15.278720pt;}
._1d{width:16.321920pt;}
._1c{width:17.495040pt;}
._1e{width:18.838400pt;}
._19{width:19.832320pt;}
._1a{width:21.053867pt;}
._10{width:26.878720pt;}
._f{width:36.812160pt;}
._5{width:48.177920pt;}
._4{width:49.199360pt;}
._11{width:81.094400pt;}
._13{width:98.208000pt;}
._15{width:125.088000pt;}
._17{width:165.568000pt;}
._16{width:178.848000pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.fs7{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.y1f{bottom:5.120000pt;}
.y47{bottom:9.600000pt;}
.y6{bottom:12.640000pt;}
.y2a{bottom:13.920000pt;}
.y1e{bottom:22.720000pt;}
.y29{bottom:31.680000pt;}
.y1d{bottom:40.480000pt;}
.y5{bottom:40.640000pt;}
.y28{bottom:49.280000pt;}
.y9{bottom:53.440000pt;}
.y1c{bottom:58.080000pt;}
.y46{bottom:64.480000pt;}
.y27{bottom:66.906667pt;}
.y4{bottom:68.800000pt;}
.y44{bottom:72.160000pt;}
.y1b{bottom:75.706667pt;}
.y85{bottom:76.800000pt;}
.y26{bottom:84.506667pt;}
.y43{bottom:87.520000pt;}
.y84{bottom:92.160000pt;}
.y1a{bottom:93.306667pt;}
.y3{bottom:96.986667pt;}
.ye2{bottom:98.560000pt;}
.y25{bottom:102.106667pt;}
.y42{bottom:102.880000pt;}
.yc9{bottom:105.280000pt;}
.y41{bottom:107.520000pt;}
.y19{bottom:110.906667pt;}
.ye1{bottom:116.160000pt;}
.y83{bottom:118.080000pt;}
.y24{bottom:119.226667pt;}
.y40{bottom:120.640000pt;}
.y82{bottom:122.720000pt;}
.yc8{bottom:125.920000pt;}
.y2{bottom:126.426667pt;}
.y18{bottom:128.666667pt;}
.yb2{bottom:133.440000pt;}
.ye0{bottom:133.920000pt;}
.y81{bottom:134.080000pt;}
.y23{bottom:135.226667pt;}
.yb1{bottom:138.106667pt;}
.y80{bottom:138.746667pt;}
.yc7{bottom:143.546667pt;}
.y17{bottom:146.266667pt;}
.yb0{bottom:148.826667pt;}
.y22{bottom:151.066667pt;}
.ydf{bottom:151.546667pt;}
.yaf{bottom:153.466667pt;}
.y7f{bottom:154.426667pt;}
.y3f{bottom:156.826667pt;}
.yc6{bottom:161.146667pt;}
.y16{bottom:163.866667pt;}
.ydb{bottom:164.186667pt;}
.yae{bottom:166.746667pt;}
.y21{bottom:166.906667pt;}
.yde{bottom:169.146667pt;}
.y7d{bottom:173.786667pt;}
.y3e{bottom:174.426667pt;}
.y7e{bottom:178.426667pt;}
.yc4{bottom:178.746667pt;}
.yda{bottom:179.546667pt;}
.y15{bottom:181.466667pt;}
.y20{bottom:182.746667pt;}
.yc5{bottom:183.386667pt;}
.yd9{bottom:184.186667pt;}
.ydd{bottom:186.746667pt;}
.y7c{bottom:191.386667pt;}
.y3d{bottom:192.026667pt;}
.yc3{bottom:196.346667pt;}
.yd8{bottom:197.306667pt;}
.y14{bottom:199.066667pt;}
.ydc{bottom:204.346667pt;}
.y7b{bottom:208.986667pt;}
.y3c{bottom:209.786667pt;}
.yc2{bottom:214.106667pt;}
.y13{bottom:216.826667pt;}
.yd7{bottom:222.106667pt;}
.yad{bottom:223.706667pt;}
.y7a{bottom:226.586667pt;}
.y3b{bottom:227.386667pt;}
.yc1{bottom:231.706667pt;}
.yd6{bottom:239.706667pt;}
.yac{bottom:241.306667pt;}
.y78{bottom:244.346667pt;}
.y3a{bottom:244.986667pt;}
.y79{bottom:248.986667pt;}
.yc0{bottom:249.306667pt;}
.yd5{bottom:257.306667pt;}
.yab{bottom:258.906667pt;}
.y76{bottom:261.946667pt;}
.y39{bottom:262.586667pt;}
.y77{bottom:266.586667pt;}
.ybf{bottom:266.906667pt;}
.yd4{bottom:274.906667pt;}
.yaa{bottom:276.506667pt;}
.y75{bottom:279.546667pt;}
.y38{bottom:280.186667pt;}
.ybe{bottom:284.506667pt;}
.yd3{bottom:292.506667pt;}
.ya9{bottom:294.266667pt;}
.y73{bottom:297.146667pt;}
.y37{bottom:297.946667pt;}
.y74{bottom:301.786667pt;}
.ybd{bottom:302.266667pt;}
.yd2{bottom:310.266667pt;}
.ya8{bottom:311.866667pt;}
.y72{bottom:314.746667pt;}
.ybc{bottom:319.866667pt;}
.y36{bottom:323.546667pt;}
.yd1{bottom:327.866667pt;}
.ya7{bottom:329.466667pt;}
.y71{bottom:330.106667pt;}
.ybb{bottom:337.466667pt;}
.y35{bottom:341.146667pt;}
.yd0{bottom:345.466667pt;}
.ya6{bottom:347.066667pt;}
.y6f{bottom:347.706667pt;}
.y70{bottom:352.346667pt;}
.yba{bottom:355.066667pt;}
.y34{bottom:358.786667pt;}
.ycf{bottom:363.106667pt;}
.ya5{bottom:364.706667pt;}
.y6e{bottom:365.506667pt;}
.yb9{bottom:372.706667pt;}
.y33{bottom:376.386667pt;}
.yce{bottom:380.706667pt;}
.ya4{bottom:382.466667pt;}
.y6d{bottom:383.106667pt;}
.yb8{bottom:390.466667pt;}
.y32{bottom:394.146667pt;}
.y6c{bottom:398.466667pt;}
.ya3{bottom:400.066667pt;}
.yb7{bottom:408.066667pt;}
.y31{bottom:411.746667pt;}
.y6b{bottom:416.066667pt;}
.ya2{bottom:425.666667pt;}
.y2f{bottom:429.346667pt;}
.y6a{bottom:433.666667pt;}
.y30{bottom:433.986667pt;}
.ya1{bottom:443.266667pt;}
.y2e{bottom:446.946667pt;}
.y69{bottom:451.266667pt;}
.ya0{bottom:460.866667pt;}
.y2d{bottom:464.546667pt;}
.y68{bottom:468.866667pt;}
.y9f{bottom:478.626667pt;}
.y2c{bottom:482.306667pt;}
.y67{bottom:486.626667pt;}
.y9e{bottom:496.226667pt;}
.y2b{bottom:499.906667pt;}
.y66{bottom:504.226667pt;}
.y12{bottom:513.026667pt;}
.y9d{bottom:513.826667pt;}
.y65{bottom:521.826667pt;}
.y9c{bottom:531.426667pt;}
.y64{bottom:539.426667pt;}
.y9b{bottom:549.026667pt;}
.y63{bottom:557.026667pt;}
.y9a{bottom:566.786667pt;}
.y62{bottom:574.786667pt;}
.y99{bottom:584.413333pt;}
.y61{bottom:592.413333pt;}
.y97{bottom:602.013333pt;}
.y98{bottom:606.653333pt;}
.y60{bottom:610.013333pt;}
.y96{bottom:619.613333pt;}
.y5f{bottom:627.613333pt;}
.ycd{bottom:632.253333pt;}
.y95{bottom:637.213333pt;}
.y5e{bottom:645.213333pt;}
.y93{bottom:654.973333pt;}
.y94{bottom:659.613333pt;}
.y5d{bottom:662.973333pt;}
.y92{bottom:672.573333pt;}
.y5c{bottom:680.573333pt;}
.y91{bottom:690.173333pt;}
.y5b{bottom:698.173333pt;}
.y8f{bottom:707.773333pt;}
.y90{bottom:712.413333pt;}
.y5a{bottom:715.773333pt;}
.ycc{bottom:720.413333pt;}
.y8e{bottom:725.373333pt;}
.y59{bottom:733.373333pt;}
.y8d{bottom:743.133333pt;}
.y11{bottom:750.813333pt;}
.y58{bottom:751.133333pt;}
.y8c{bottom:760.733333pt;}
.y10{bottom:768.413333pt;}
.y57{bottom:768.733333pt;}
.y8b{bottom:778.333333pt;}
.yf{bottom:786.013333pt;}
.y56{bottom:786.333333pt;}
.y8a{bottom:795.933333pt;}
.ye{bottom:803.653333pt;}
.y55{bottom:803.973333pt;}
.ycb{bottom:808.613333pt;}
.y89{bottom:813.573333pt;}
.y54{bottom:821.573333pt;}
.yd{bottom:821.733333pt;}
.y88{bottom:831.333333pt;}
.y53{bottom:839.333333pt;}
.yc{bottom:841.253333pt;}
.yb6{bottom:848.933333pt;}
.y52{bottom:856.933333pt;}
.y87{bottom:861.573333pt;}
.yb{bottom:863.333333pt;}
.yb5{bottom:866.533333pt;}
.y51{bottom:874.533333pt;}
.yb4{bottom:884.133333pt;}
.ya{bottom:891.493333pt;}
.y50{bottom:892.133333pt;}
.y86{bottom:896.773333pt;}
.y4f{bottom:909.733333pt;}
.y8{bottom:915.333333pt;}
.y4e{bottom:927.493333pt;}
.y1{bottom:929.893333pt;}
.y4d{bottom:945.093333pt;}
.y4c{bottom:962.693333pt;}
.y4b{bottom:980.293333pt;}
.yca{bottom:984.933333pt;}
.y4a{bottom:997.893333pt;}
.y49{bottom:1015.653333pt;}
.yb3{bottom:1020.320000pt;}
.y48{bottom:1033.280000pt;}
.y45{bottom:1059.840000pt;}
.h5{height:1.851250pt;}
.hf{height:24.991875pt;}
.hd{height:33.867188pt;}
.he{height:34.710938pt;}
.hc{height:37.479688pt;}
.ha{height:38.413438pt;}
.h17{height:38.491250pt;}
.h16{height:38.672812pt;}
.h9{height:41.543750pt;}
.h7{height:42.578750pt;}
.h10{height:42.780000pt;}
.h18{height:42.944375pt;}
.h4{height:43.355000pt;}
.h15{height:43.551875pt;}
.h13{height:46.739375pt;}
.h3{height:50.895000pt;}
.h14{height:56.312500pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h12{height:98.705625pt;}
.h2{height:144.666667pt;}
.hb{height:229.306667pt;}
.h11{height:238.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:35.360000pt;}
.w3{width:131.072000pt;}
.w6{width:193.666667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.080000pt;}
.x2{left:7.200000pt;}
.x8{left:11.400000pt;}
.x10{left:28.320000pt;}
.x1{left:48.000000pt;}
.x6{left:49.600000pt;}
.xd{left:52.319988pt;}
.x27{left:54.719988pt;}
.x24{left:56.639988pt;}
.x35{left:71.999988pt;}
.x9{left:96.031988pt;}
.x13{left:120.991976pt;}
.x4{left:123.866667pt;}
.x14{left:125.311988pt;}
.x18{left:144.026655pt;}
.x11{left:150.106655pt;}
.x15{left:155.386643pt;}
.x16{left:159.706655pt;}
.x20{left:219.386643pt;}
.x21{left:228.026655pt;}
.xc{left:240.066655pt;}
.x2e{left:273.506643pt;}
.x2f{left:282.146655pt;}
.xe{left:295.106655pt;}
.x2a{left:304.546643pt;}
.x22{left:306.146643pt;}
.x2b{left:313.186655pt;}
.x23{left:314.786655pt;}
.x1f{left:336.866643pt;}
.x5{left:341.986655pt;}
.x28{left:393.826643pt;}
.x29{left:402.493322pt;}
.xa{left:428.733310pt;}
.xb{left:433.053322pt;}
.x33{left:468.893310pt;}
.x34{left:477.533322pt;}
.x30{left:482.013310pt;}
.x31{left:490.653322pt;}
.x1d{left:495.453310pt;}
.x1e{left:499.773322pt;}
.x2c{left:509.853310pt;}
.x2d{left:518.493322pt;}
.x1b{left:523.453310pt;}
.x1c{left:527.773322pt;}
.x12{left:546.013310pt;}
.x7{left:550.653333pt;}
.x17{left:554.813322pt;}
.x3{left:611.493333pt;}
.x19{left:616.293310pt;}
.x1a{left:620.613322pt;}
.x25{left:703.973310pt;}
.x26{left:712.613322pt;}
.x32{left:721.759988pt;}
}




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