
    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_b7da36167e79b12f15261867.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_23e0455297cb656f2c3f84c0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ea87599e85bf76bba485381d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_85ffd4161e93408787364e46.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_e80a0290d1b71999005a2152.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_53622188d8881e7411a0a636.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.772949;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_60bd5f123e83ca7f2532261d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_60532c767a0b3565341f64f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_6731bf6064d9da16286f6a59.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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_43fc240a98a3b73ef9c8b8f2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_444ca0a7e2cfc41efff77ac3.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);}
.v1{vertical-align:-74.160000px;}
.v5{vertical-align:-69.120000px;}
.v4{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.ls8{letter-spacing:-0.810000px;}
.ls6{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.008640px;}
.lse{letter-spacing:-0.004320px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.ls19{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.714000px;}
.ls1b{letter-spacing:16.506720px;}
.ls18{letter-spacing:46.026720px;}
.ls12{letter-spacing:90.666720px;}
.ls11{letter-spacing:91.386720px;}
.ls3{letter-spacing:201.060000px;}
.ls0{letter-spacing:774.360000px;}
.ls4{letter-spacing:2651.076000px;}
.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:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.wsd{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.ws15{word-spacing:-14.993280px;}
.ws10{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.580000px;}
.wsb{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws4{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.434000px;}
.ws3{word-spacing:-10.213800px;}
.ws13{word-spacing:-9.732960px;}
.wse{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.715680px;}
.ws12{word-spacing:-9.711360px;}
.ws6{word-spacing:-9.072000px;}
.ws7{word-spacing:-8.676000px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.520000px;}
._3{width:3.852000px;}
._7{width:4.986240px;}
._4{width:5.994000px;}
._5{width:7.122000px;}
._6{width:8.262000px;}
._b{width:9.860400px;}
._a{width:11.414160px;}
._9{width:12.489840px;}
._8{width:13.625280px;}
._10{width:16.551120px;}
._d{width:18.746880px;}
._e{width:20.497680px;}
._f{width:201.060000px;}
._c{width:202.680000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.240000px;}
.fsa{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.600000px;}
.y38{bottom:3.765000px;}
.y5{bottom:4.140000px;}
.y52{bottom:5.010000px;}
.yad{bottom:5.940000px;}
.yb9{bottom:6.105000px;}
.yaf{bottom:6.120000px;}
.ybd{bottom:6.285000px;}
.y2{bottom:9.900000px;}
.y42{bottom:14.040000px;}
.yaa{bottom:15.840000px;}
.ybf{bottom:16.005000px;}
.ybb{bottom:16.185000px;}
.y37{bottom:20.865000px;}
.y4{bottom:23.040000px;}
.y57{bottom:23.220000px;}
.y5d{bottom:23.385000px;}
.y55{bottom:24.480000px;}
.y5b{bottom:24.840000px;}
.y59{bottom:25.020000px;}
.yab{bottom:25.740000px;}
.yb7{bottom:25.905000px;}
.yb5{bottom:25.920000px;}
.ybc{bottom:26.085000px;}
.y4d{bottom:29.370000px;}
.ya9{bottom:35.640000px;}
.yb2{bottom:35.820000px;}
.y36{bottom:38.145000px;}
.y41{bottom:38.190000px;}
.y4c{bottom:45.030000px;}
.yac{bottom:45.540000px;}
.yb8{bottom:45.705000px;}
.yb4{bottom:45.720000px;}
.y3{bottom:48.090000px;}
.y40{bottom:51.330000px;}
.y35{bottom:55.470000px;}
.y8{bottom:58.500000px;}
.y4b{bottom:62.310000px;}
.y3f{bottom:64.290000px;}
.yb3{bottom:65.520000px;}
.y34{bottom:72.750000px;}
.y3e{bottom:77.430000px;}
.y4a{bottom:77.970000px;}
.y7{bottom:78.660000px;}
.y33{bottom:90.030000px;}
.y3d{bottom:90.390000px;}
.y49{bottom:93.810000px;}
.y7c{bottom:102.780000px;}
.yc7{bottom:106.020000px;}
.ya2{bottom:106.560000px;}
.y32{bottom:107.310000px;}
.y48{bottom:109.290000px;}
.y3c{bottom:112.170000px;}
.y50{bottom:115.740000px;}
.y31{bottom:124.410000px;}
.y47{bottom:126.750000px;}
.y7b{bottom:129.060000px;}
.yc6{bottom:131.940000px;}
.ya1{bottom:132.480000px;}
.y30{bottom:141.690000px;}
.y46{bottom:142.590000px;}
.y4f{bottom:149.760000px;}
.y7a{bottom:154.980000px;}
.yc5{bottom:157.860000px;}
.ya0{bottom:158.040000px;}
.y45{bottom:158.070000px;}
.y2f{bottom:158.970000px;}
.y4e{bottom:167.040000px;}
.y44{bottom:173.730000px;}
.y3b{bottom:174.270000px;}
.y2e{bottom:176.250000px;}
.y79{bottom:180.720000px;}
.y39{bottom:181.620000px;}
.yc4{bottom:183.600000px;}
.y9f{bottom:184.320000px;}
.y3a{bottom:184.890000px;}
.y1f{bottom:194.790000px;}
.y2d{bottom:201.810000px;}
.y78{bottom:206.640000px;}
.yc3{bottom:209.160000px;}
.y9e{bottom:210.090000px;}
.y1e{bottom:218.910000px;}
.y2c{bottom:226.650000px;}
.yc2{bottom:227.730000px;}
.y77{bottom:232.590000px;}
.yc1{bottom:234.225000px;}
.y9d{bottom:236.010000px;}
.y1d{bottom:243.210000px;}
.y2b{bottom:249.870000px;}
.y76{bottom:258.510000px;}
.y9c{bottom:261.930000px;}
.y1c{bottom:267.330000px;}
.y2a{bottom:273.270000px;}
.yc0{bottom:274.545000px;}
.y75{bottom:284.250000px;}
.y9b{bottom:287.850000px;}
.y1b{bottom:291.480000px;}
.y29{bottom:296.520000px;}
.y74{bottom:309.810000px;}
.y9a{bottom:313.590000px;}
.ybe{bottom:315.045000px;}
.y1a{bottom:315.600000px;}
.y28{bottom:319.740000px;}
.y73{bottom:336.090000px;}
.y99{bottom:339.150000px;}
.y19{bottom:339.720000px;}
.y27{bottom:343.140000px;}
.yba{bottom:355.365000px;}
.y72{bottom:361.830000px;}
.y18{bottom:363.840000px;}
.y98{bottom:365.430000px;}
.y26{bottom:366.360000px;}
.y71{bottom:387.750000px;}
.y17{bottom:388.140000px;}
.y25{bottom:389.580000px;}
.y97{bottom:391.170000px;}
.y11{bottom:394.425000px;}
.yb6{bottom:395.865000px;}
.y16{bottom:412.260000px;}
.y24{bottom:412.980000px;}
.y70{bottom:413.670000px;}
.y96{bottom:417.090000px;}
.y23{bottom:436.200000px;}
.y15{bottom:436.380000px;}
.y6f{bottom:439.590000px;}
.y95{bottom:442.650000px;}
.yc9{bottom:443.010000px;}
.yb1{bottom:456.195000px;}
.y22{bottom:459.600000px;}
.y14{bottom:460.500000px;}
.y6e{bottom:465.015000px;}
.y94{bottom:468.975000px;}
.y21{bottom:482.820000px;}
.y13{bottom:484.620000px;}
.y6d{bottom:491.295000px;}
.y93{bottom:494.715000px;}
.y20{bottom:505.680000px;}
.y12{bottom:508.740000px;}
.y6c{bottom:517.215000px;}
.y92{bottom:520.635000px;}
.yb0{bottom:536.295000px;}
.y6b{bottom:543.135000px;}
.y91{bottom:546.555000px;}
.yae{bottom:556.815000px;}
.y6a{bottom:568.875000px;}
.y90{bottom:572.475000px;}
.ya8{bottom:577.335000px;}
.y69{bottom:594.795000px;}
.y8f{bottom:598.215000px;}
.y68{bottom:620.715000px;}
.y8e{bottom:624.135000px;}
.y67{bottom:646.635000px;}
.ya7{bottom:649.695000px;}
.y8d{bottom:650.055000px;}
.y66{bottom:672.375000px;}
.y8c{bottom:675.975000px;}
.y65{bottom:698.325000px;}
.y8b{bottom:701.745000px;}
.y64{bottom:724.245000px;}
.y8a{bottom:727.665000px;}
.y63{bottom:750.165000px;}
.y89{bottom:753.585000px;}
.y62{bottom:775.905000px;}
.y88{bottom:779.505000px;}
.y61{bottom:801.825000px;}
.y87{bottom:805.245000px;}
.y60{bottom:827.745000px;}
.y86{bottom:830.805000px;}
.ya6{bottom:831.165000px;}
.y5f{bottom:853.125000px;}
.y85{bottom:856.725000px;}
.ya5{bottom:857.085000px;}
.y5e{bottom:870.405000px;}
.y84{bottom:882.825000px;}
.y5c{bottom:885.000000px;}
.y83{bottom:908.745000px;}
.y10{bottom:915.945000px;}
.y5a{bottom:922.650000px;}
.yf{bottom:923.550000px;}
.yc8{bottom:934.350000px;}
.y82{bottom:934.710000px;}
.ye{bottom:941.010000px;}
.yd{bottom:959.550000px;}
.y81{bottom:960.630000px;}
.y58{bottom:961.710000px;}
.y80{bottom:986.010000px;}
.ya4{bottom:986.370000px;}
.yc{bottom:996.450000px;}
.y56{bottom:1000.950000px;}
.y7f{bottom:1012.290000px;}
.yb{bottom:1017.870000px;}
.y7e{bottom:1038.210000px;}
.y54{bottom:1038.390000px;}
.ya{bottom:1044.150000px;}
.y7d{bottom:1064.130000px;}
.y9{bottom:1071.870000px;}
.y51{bottom:1075.320000px;}
.y53{bottom:1089.510000px;}
.ya3{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.hb{height:8.905078px;}
.h1e{height:19.785000px;}
.h23{height:23.945625px;}
.h15{height:27.540000px;}
.h18{height:36.705000px;}
.h1a{height:36.921000px;}
.h17{height:38.325000px;}
.h19{height:38.505000px;}
.h22{height:39.585000px;}
.h21{height:39.765000px;}
.he{height:40.985156px;}
.h11{height:41.159180px;}
.h1c{height:41.726953px;}
.hd{height:42.086250px;}
.h10{height:52.971680px;}
.ha{height:52.998047px;}
.h12{height:53.314453px;}
.hf{height:54.421875px;}
.h6{height:57.324375px;}
.h9{height:58.651172px;}
.h13{height:59.038594px;}
.h20{height:59.421000px;}
.h1d{height:59.565000px;}
.h8{height:60.226875px;}
.h1b{height:61.423863px;}
.h16{height:64.002656px;}
.h7{height:64.126055px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h1f{height:79.200000px;}
.h2{height:84.990000px;}
.h4{height:117.180000px;}
.h14{height:212.070000px;}
.hc{height:518.280000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:49.851000px;}
.w7{width:55.641000px;}
.wb{width:73.440000px;}
.wc{width:80.316000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.wd{width:134.301000px;}
.we{width:139.305000px;}
.w6{width:162.720000px;}
.wa{width:193.335000px;}
.w8{width:376.815000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.876000px;}
.x1a{left:8.085000px;}
.x3e{left:9.525000px;}
.x3a{left:11.700000px;}
.x4{left:12.765000px;}
.x2f{left:13.890000px;}
.x15{left:15.471000px;}
.x6{left:17.265000px;}
.x2d{left:19.620000px;}
.x18{left:20.691000px;}
.x17{left:23.751000px;}
.x30{left:25.050000px;}
.x16{left:27.171000px;}
.x1e{left:29.151000px;}
.x3f{left:30.225000px;}
.x39{left:32.925000px;}
.x37{left:34.200000px;}
.x38{left:36.525000px;}
.x2b{left:39.045000px;}
.x34{left:40.860000px;}
.x10{left:43.731000px;}
.x3c{left:45.900000px;}
.x1d{left:47.691000px;}
.x3d{left:48.945000px;}
.x11{left:50.751000px;}
.x32{left:52.005000px;}
.x36{left:53.985000px;}
.xf{left:55.071000px;}
.x35{left:57.045000px;}
.x3b{left:58.485000px;}
.x1b{left:62.130000px;}
.x1f{left:66.225000px;}
.x14{left:68.205000px;}
.x13{left:75.585000px;}
.x1{left:78.300000px;}
.x7{left:86.436000px;}
.x28{left:89.676000px;}
.x27{left:93.816000px;}
.x2{left:95.790000px;}
.x26{left:97.236000px;}
.x25{left:101.376000px;}
.x1c{left:103.305000px;}
.x24{left:105.516000px;}
.x29{left:109.485000px;}
.x40{left:113.436000px;}
.x12{left:124.545000px;}
.x5{left:141.330000px;}
.x2a{left:160.065000px;}
.x23{left:169.590000px;}
.x3{left:182.385000px;}
.x19{left:219.105000px;}
.x21{left:230.085000px;}
.x22{left:286.455000px;}
.x2c{left:354.135000px;}
.xc{left:379.335000px;}
.x2e{left:428.295000px;}
.xa{left:446.685000px;}
.x31{left:509.520000px;}
.xb{left:591.945000px;}
.x33{left:644.550000px;}
.xd{left:672.270000px;}
.x9{left:766.050000px;}
.x8{left:790.170000px;}
.xe{left:806.940000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v5{vertical-align:-61.440000pt;}
.v4{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.720000pt;}
.ls6{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.007680pt;}
.lse{letter-spacing:-0.003840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls19{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.634667pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls18{letter-spacing:40.912640pt;}
.ls12{letter-spacing:80.592640pt;}
.ls11{letter-spacing:81.232640pt;}
.ls3{letter-spacing:178.720000pt;}
.ls0{letter-spacing:688.320000pt;}
.ls4{letter-spacing:2356.512000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.wsd{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws15{word-spacing:-13.327360pt;}
.ws10{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws11{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws5{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.274667pt;}
.ws3{word-spacing:-9.078933pt;}
.ws13{word-spacing:-8.651520pt;}
.wse{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.636160pt;}
.ws12{word-spacing:-8.632320pt;}
.ws6{word-spacing:-8.064000pt;}
.ws7{word-spacing:-7.712000pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.240000pt;}
._3{width:3.424000pt;}
._7{width:4.432213pt;}
._4{width:5.328000pt;}
._5{width:6.330667pt;}
._6{width:7.344000pt;}
._b{width:8.764800pt;}
._a{width:10.145920pt;}
._9{width:11.102080pt;}
._8{width:12.111360pt;}
._10{width:14.712107pt;}
._d{width:16.663893pt;}
._e{width:18.220160pt;}
._f{width:178.720000pt;}
._c{width:180.160000pt;}
.fs6{font-size:10.880000pt;}
.fsa{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:3.200000pt;}
.y38{bottom:3.346667pt;}
.y5{bottom:3.680000pt;}
.y52{bottom:4.453333pt;}
.yad{bottom:5.280000pt;}
.yb9{bottom:5.426667pt;}
.yaf{bottom:5.440000pt;}
.ybd{bottom:5.586667pt;}
.y2{bottom:8.800000pt;}
.y42{bottom:12.480000pt;}
.yaa{bottom:14.080000pt;}
.ybf{bottom:14.226667pt;}
.ybb{bottom:14.386667pt;}
.y37{bottom:18.546667pt;}
.y4{bottom:20.480000pt;}
.y57{bottom:20.640000pt;}
.y5d{bottom:20.786667pt;}
.y55{bottom:21.760000pt;}
.y5b{bottom:22.080000pt;}
.y59{bottom:22.240000pt;}
.yab{bottom:22.880000pt;}
.yb7{bottom:23.026667pt;}
.yb5{bottom:23.040000pt;}
.ybc{bottom:23.186667pt;}
.y4d{bottom:26.106667pt;}
.ya9{bottom:31.680000pt;}
.yb2{bottom:31.840000pt;}
.y36{bottom:33.906667pt;}
.y41{bottom:33.946667pt;}
.y4c{bottom:40.026667pt;}
.yac{bottom:40.480000pt;}
.yb8{bottom:40.626667pt;}
.yb4{bottom:40.640000pt;}
.y3{bottom:42.746667pt;}
.y40{bottom:45.626667pt;}
.y35{bottom:49.306667pt;}
.y8{bottom:52.000000pt;}
.y4b{bottom:55.386667pt;}
.y3f{bottom:57.146667pt;}
.yb3{bottom:58.240000pt;}
.y34{bottom:64.666667pt;}
.y3e{bottom:68.826667pt;}
.y4a{bottom:69.306667pt;}
.y7{bottom:69.920000pt;}
.y33{bottom:80.026667pt;}
.y3d{bottom:80.346667pt;}
.y49{bottom:83.386667pt;}
.y7c{bottom:91.360000pt;}
.yc7{bottom:94.240000pt;}
.ya2{bottom:94.720000pt;}
.y32{bottom:95.386667pt;}
.y48{bottom:97.146667pt;}
.y3c{bottom:99.706667pt;}
.y50{bottom:102.880000pt;}
.y31{bottom:110.586667pt;}
.y47{bottom:112.666667pt;}
.y7b{bottom:114.720000pt;}
.yc6{bottom:117.280000pt;}
.ya1{bottom:117.760000pt;}
.y30{bottom:125.946667pt;}
.y46{bottom:126.746667pt;}
.y4f{bottom:133.120000pt;}
.y7a{bottom:137.760000pt;}
.yc5{bottom:140.320000pt;}
.ya0{bottom:140.480000pt;}
.y45{bottom:140.506667pt;}
.y2f{bottom:141.306667pt;}
.y4e{bottom:148.480000pt;}
.y44{bottom:154.426667pt;}
.y3b{bottom:154.906667pt;}
.y2e{bottom:156.666667pt;}
.y79{bottom:160.640000pt;}
.y39{bottom:161.440000pt;}
.yc4{bottom:163.200000pt;}
.y9f{bottom:163.840000pt;}
.y3a{bottom:164.346667pt;}
.y1f{bottom:173.146667pt;}
.y2d{bottom:179.386667pt;}
.y78{bottom:183.680000pt;}
.yc3{bottom:185.920000pt;}
.y9e{bottom:186.746667pt;}
.y1e{bottom:194.586667pt;}
.y2c{bottom:201.466667pt;}
.yc2{bottom:202.426667pt;}
.y77{bottom:206.746667pt;}
.yc1{bottom:208.200000pt;}
.y9d{bottom:209.786667pt;}
.y1d{bottom:216.186667pt;}
.y2b{bottom:222.106667pt;}
.y76{bottom:229.786667pt;}
.y9c{bottom:232.826667pt;}
.y1c{bottom:237.626667pt;}
.y2a{bottom:242.906667pt;}
.yc0{bottom:244.040000pt;}
.y75{bottom:252.666667pt;}
.y9b{bottom:255.866667pt;}
.y1b{bottom:259.093333pt;}
.y29{bottom:263.573333pt;}
.y74{bottom:275.386667pt;}
.y9a{bottom:278.746667pt;}
.ybe{bottom:280.040000pt;}
.y1a{bottom:280.533333pt;}
.y28{bottom:284.213333pt;}
.y73{bottom:298.746667pt;}
.y99{bottom:301.466667pt;}
.y19{bottom:301.973333pt;}
.y27{bottom:305.013333pt;}
.yba{bottom:315.880000pt;}
.y72{bottom:321.626667pt;}
.y18{bottom:323.413333pt;}
.y98{bottom:324.826667pt;}
.y26{bottom:325.653333pt;}
.y71{bottom:344.666667pt;}
.y17{bottom:345.013333pt;}
.y25{bottom:346.293333pt;}
.y97{bottom:347.706667pt;}
.y11{bottom:350.600000pt;}
.yb6{bottom:351.880000pt;}
.y16{bottom:366.453333pt;}
.y24{bottom:367.093333pt;}
.y70{bottom:367.706667pt;}
.y96{bottom:370.746667pt;}
.y23{bottom:387.733333pt;}
.y15{bottom:387.893333pt;}
.y6f{bottom:390.746667pt;}
.y95{bottom:393.466667pt;}
.yc9{bottom:393.786667pt;}
.yb1{bottom:405.506667pt;}
.y22{bottom:408.533333pt;}
.y14{bottom:409.333333pt;}
.y6e{bottom:413.346667pt;}
.y94{bottom:416.866667pt;}
.y21{bottom:429.173333pt;}
.y13{bottom:430.773333pt;}
.y6d{bottom:436.706667pt;}
.y93{bottom:439.746667pt;}
.y20{bottom:449.493333pt;}
.y12{bottom:452.213333pt;}
.y6c{bottom:459.746667pt;}
.y92{bottom:462.786667pt;}
.yb0{bottom:476.706667pt;}
.y6b{bottom:482.786667pt;}
.y91{bottom:485.826667pt;}
.yae{bottom:494.946667pt;}
.y6a{bottom:505.666667pt;}
.y90{bottom:508.866667pt;}
.ya8{bottom:513.186667pt;}
.y69{bottom:528.706667pt;}
.y8f{bottom:531.746667pt;}
.y68{bottom:551.746667pt;}
.y8e{bottom:554.786667pt;}
.y67{bottom:574.786667pt;}
.ya7{bottom:577.506667pt;}
.y8d{bottom:577.826667pt;}
.y66{bottom:597.666667pt;}
.y8c{bottom:600.866667pt;}
.y65{bottom:620.733333pt;}
.y8b{bottom:623.773333pt;}
.y64{bottom:643.773333pt;}
.y8a{bottom:646.813333pt;}
.y63{bottom:666.813333pt;}
.y89{bottom:669.853333pt;}
.y62{bottom:689.693333pt;}
.y88{bottom:692.893333pt;}
.y61{bottom:712.733333pt;}
.y87{bottom:715.773333pt;}
.y60{bottom:735.773333pt;}
.y86{bottom:738.493333pt;}
.ya6{bottom:738.813333pt;}
.y5f{bottom:758.333333pt;}
.y85{bottom:761.533333pt;}
.ya5{bottom:761.853333pt;}
.y5e{bottom:773.693333pt;}
.y84{bottom:784.733333pt;}
.y5c{bottom:786.666667pt;}
.y83{bottom:807.773333pt;}
.y10{bottom:814.173333pt;}
.y5a{bottom:820.133333pt;}
.yf{bottom:820.933333pt;}
.yc8{bottom:830.533333pt;}
.y82{bottom:830.853333pt;}
.ye{bottom:836.453333pt;}
.yd{bottom:852.933333pt;}
.y81{bottom:853.893333pt;}
.y58{bottom:854.853333pt;}
.y80{bottom:876.453333pt;}
.ya4{bottom:876.773333pt;}
.yc{bottom:885.733333pt;}
.y56{bottom:889.733333pt;}
.y7f{bottom:899.813333pt;}
.yb{bottom:904.773333pt;}
.y7e{bottom:922.853333pt;}
.y54{bottom:923.013333pt;}
.ya{bottom:928.133333pt;}
.y7d{bottom:945.893333pt;}
.y9{bottom:952.773333pt;}
.y51{bottom:955.840000pt;}
.y53{bottom:968.453333pt;}
.ya3{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.hb{height:7.915625pt;}
.h1e{height:17.586667pt;}
.h23{height:21.285000pt;}
.h15{height:24.480000pt;}
.h18{height:32.626667pt;}
.h1a{height:32.818667pt;}
.h17{height:34.066667pt;}
.h19{height:34.226667pt;}
.h22{height:35.186667pt;}
.h21{height:35.346667pt;}
.he{height:36.431250pt;}
.h11{height:36.585938pt;}
.h1c{height:37.090625pt;}
.hd{height:37.410000pt;}
.h10{height:47.085938pt;}
.ha{height:47.109375pt;}
.h12{height:47.390625pt;}
.hf{height:48.375000pt;}
.h6{height:50.955000pt;}
.h9{height:52.134375pt;}
.h13{height:52.478750pt;}
.h20{height:52.818667pt;}
.h1d{height:52.946667pt;}
.h8{height:53.535000pt;}
.h1b{height:54.598989pt;}
.h16{height:56.891250pt;}
.h7{height:57.000937pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1f{height:70.400000pt;}
.h2{height:75.546667pt;}
.h4{height:104.160000pt;}
.h14{height:188.506667pt;}
.hc{height:460.693333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:44.312000pt;}
.w7{width:49.458667pt;}
.wb{width:65.280000pt;}
.wc{width:71.392000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.wd{width:119.378667pt;}
.we{width:123.826667pt;}
.w6{width:144.640000pt;}
.wa{width:171.853333pt;}
.w8{width:334.946667pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.112000pt;}
.x1a{left:7.186667pt;}
.x3e{left:8.466667pt;}
.x3a{left:10.400000pt;}
.x4{left:11.346667pt;}
.x2f{left:12.346667pt;}
.x15{left:13.752000pt;}
.x6{left:15.346667pt;}
.x2d{left:17.440000pt;}
.x18{left:18.392000pt;}
.x17{left:21.112000pt;}
.x30{left:22.266667pt;}
.x16{left:24.152000pt;}
.x1e{left:25.912000pt;}
.x3f{left:26.866667pt;}
.x39{left:29.266667pt;}
.x37{left:30.400000pt;}
.x38{left:32.466667pt;}
.x2b{left:34.706667pt;}
.x34{left:36.320000pt;}
.x10{left:38.872000pt;}
.x3c{left:40.800000pt;}
.x1d{left:42.392000pt;}
.x3d{left:43.506667pt;}
.x11{left:45.112000pt;}
.x32{left:46.226667pt;}
.x36{left:47.986667pt;}
.xf{left:48.952000pt;}
.x35{left:50.706667pt;}
.x3b{left:51.986667pt;}
.x1b{left:55.226667pt;}
.x1f{left:58.866667pt;}
.x14{left:60.626667pt;}
.x13{left:67.186667pt;}
.x1{left:69.600000pt;}
.x7{left:76.832000pt;}
.x28{left:79.712000pt;}
.x27{left:83.392000pt;}
.x2{left:85.146667pt;}
.x26{left:86.432000pt;}
.x25{left:90.112000pt;}
.x1c{left:91.826667pt;}
.x24{left:93.792000pt;}
.x29{left:97.320000pt;}
.x40{left:100.832000pt;}
.x12{left:110.706667pt;}
.x5{left:125.626667pt;}
.x2a{left:142.280000pt;}
.x23{left:150.746667pt;}
.x3{left:162.120000pt;}
.x19{left:194.760000pt;}
.x21{left:204.520000pt;}
.x22{left:254.626667pt;}
.x2c{left:314.786667pt;}
.xc{left:337.186667pt;}
.x2e{left:380.706667pt;}
.xa{left:397.053333pt;}
.x31{left:452.906667pt;}
.xb{left:526.173333pt;}
.x33{left:572.933333pt;}
.xd{left:597.573333pt;}
.x9{left:680.933333pt;}
.x8{left:702.373333pt;}
.xe{left:717.280000pt;}
}




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