
    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_84c1e0b20e4e7fba7a9d7e64.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ac53dadd23fa4c2787e18196.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_ba78a0d2cf8f81a440a7312e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_7dfd4342841d90c086dd0c30.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_c79554d17449eea1311acf16.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_1a6653f609e2c0318c1766a8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f753ac1e33a4ba87b95b2f8c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cc990ebe6eb441bd0e00e99c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e74ba795d14adabfd8d236d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b54484469153daaa90323500.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_d9d0dc043be015b3a063aae3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bd2f057d69b35e91c0c092fd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c283da3df8ea3866b53d5b31.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:fff;src:url('chunks/assets/font_31432e54bcd4604fbf2a122a.woff2')format("woff");}.fff{font-family:fff;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.lsa{letter-spacing:2.340000px;}
.ls10{letter-spacing:29.466720px;}
.ls1{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.ls0{letter-spacing:1135.769760px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws2{word-spacing:-32.940000px;}
.ws5{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.226440px;}
.ws9{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.wse{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._8{margin-left:-10.145520px;}
._9{margin-left:-6.756480px;}
._7{margin-left:-5.554800px;}
._6{margin-left:-3.501360px;}
._d{margin-left:-2.270880px;}
._1{margin-left:-1.135440px;}
._0{width:1.135440px;}
._2{width:2.647200px;}
._b{width:4.575840px;}
._a{width:5.776320px;}
._12{width:7.098240px;}
._f{width:8.904240px;}
._13{width:10.159200px;}
._14{width:11.175120px;}
._e{width:12.549600px;}
._15{width:13.625280px;}
._c{width:16.194960px;}
._10{width:17.695920px;}
._16{width:18.891840px;}
._11{width:47.509200px;}
._4{width:105.269760px;}
._17{width:201.060000px;}
._3{width:1048.649760px;}
._5{width:1339.649760px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:19.440000px;}
.y7{bottom:42.840000px;}
.y6{bottom:66.240000px;}
.y5{bottom:89.496000px;}
.y38{bottom:111.096000px;}
.y37{bottom:128.376000px;}
.yce{bottom:132.876000px;}
.yad{bottom:135.756000px;}
.y86{bottom:146.016000px;}
.y36{bottom:146.376000px;}
.ycd{bottom:150.150000px;}
.y35{bottom:151.590000px;}
.yac{bottom:165.090000px;}
.y34{bottom:165.630000px;}
.ycc{bottom:167.430000px;}
.yfc{bottom:169.770000px;}
.y85{bottom:174.450000px;}
.ycb{bottom:184.530000px;}
.yfb{bottom:187.050000px;}
.y84{bottom:191.730000px;}
.yab{bottom:194.250000px;}
.yca{bottom:201.810000px;}
.yfa{bottom:202.530000px;}
.yf9{bottom:218.010000px;}
.yc9{bottom:219.090000px;}
.y33{bottom:220.710000px;}
.yaa{bottom:223.590000px;}
.y83{bottom:227.010000px;}
.yf8{bottom:233.670000px;}
.yc8{bottom:236.370000px;}
.y32{bottom:237.990000px;}
.y82{bottom:244.290000px;}
.yf7{bottom:251.130000px;}
.ya9{bottom:252.750000px;}
.yc7{bottom:253.650000px;}
.y31{bottom:255.270000px;}
.yf6{bottom:257.070000px;}
.y81{bottom:261.570000px;}
.yc6{bottom:270.750000px;}
.yfd{bottom:273.090000px;}
.y80{bottom:278.850000px;}
.ya8{bottom:282.090000px;}
.y30{bottom:284.430000px;}
.yc5{bottom:288.030000px;}
.y7f{bottom:295.950000px;}
.ya7{bottom:299.370000px;}
.y2f{bottom:301.710000px;}
.yf5{bottom:305.670000px;}
.y5e{bottom:311.970000px;}
.y7e{bottom:313.230000px;}
.ya6{bottom:316.650000px;}
.yc4{bottom:317.370000px;}
.y2e{bottom:318.990000px;}
.ya5{bottom:333.750000px;}
.yc3{bottom:334.650000px;}
.y2d{bottom:336.270000px;}
.yf4{bottom:336.675000px;}
.y5d{bottom:341.355000px;}
.y7d{bottom:348.555000px;}
.ya4{bottom:351.075000px;}
.yc2{bottom:351.795000px;}
.y2c{bottom:353.595000px;}
.y7c{bottom:365.835000px;}
.yf3{bottom:367.635000px;}
.ya3{bottom:368.355000px;}
.y5c{bottom:370.515000px;}
.y2b{bottom:370.695000px;}
.yc1{bottom:381.135000px;}
.ya2{bottom:385.635000px;}
.y5b{bottom:387.795000px;}
.y2a{bottom:387.975000px;}
.yf2{bottom:398.595000px;}
.y7b{bottom:400.935000px;}
.ya1{bottom:402.915000px;}
.y5a{bottom:405.075000px;}
.y29{bottom:405.255000px;}
.yc0{bottom:410.295000px;}
.y7a{bottom:418.215000px;}
.ya0{bottom:420.195000px;}
.y59{bottom:422.355000px;}
.yf0{bottom:429.375000px;}
.y28{bottom:434.415000px;}
.yf1{bottom:434.595000px;}
.y9f{bottom:437.295000px;}
.y58{bottom:439.635000px;}
.yef{bottom:446.655000px;}
.y79{bottom:447.555000px;}
.y9e{bottom:454.575000px;}
.y57{bottom:456.915000px;}
.y27{bottom:463.755000px;}
.y78{bottom:464.835000px;}
.ybf{bottom:468.795000px;}
.y9d{bottom:471.855000px;}
.y56{bottom:474.195000px;}
.y26{bottom:481.035000px;}
.y9c{bottom:489.135000px;}
.y55{bottom:491.295000px;}
.y77{bottom:493.995000px;}
.ybe{bottom:498.135000px;}
.y25{bottom:498.315000px;}
.y9b{bottom:506.415000px;}
.y54{bottom:508.575000px;}
.y76{bottom:511.275000px;}
.y24{bottom:515.595000px;}
.y53{bottom:525.855000px;}
.ybd{bottom:527.295000px;}
.y75{bottom:528.555000px;}
.yee{bottom:532.875000px;}
.y9a{bottom:535.575000px;}
.y52{bottom:543.135000px;}
.y23{bottom:544.755000px;}
.y74{bottom:545.835000px;}
.yed{bottom:549.975000px;}
.ybc{bottom:556.635000px;}
.y51{bottom:560.415000px;}
.y22{bottom:562.035000px;}
.y73{bottom:563.115000px;}
.y99{bottom:564.735000px;}
.yec{bottom:567.255000px;}
.y72{bottom:580.215000px;}
.yeb{bottom:584.535000px;}
.ybb{bottom:585.795000px;}
.y50{bottom:589.575000px;}
.y21{bottom:591.195000px;}
.y98{bottom:594.075000px;}
.yea{bottom:601.815000px;}
.y4f{bottom:606.885000px;}
.y20{bottom:608.505000px;}
.y71{bottom:610.485000px;}
.yba{bottom:615.165000px;}
.ye9{bottom:619.125000px;}
.y97{bottom:623.265000px;}
.y4e{bottom:624.165000px;}
.y1f{bottom:625.785000px;}
.yb9{bottom:632.445000px;}
.ye8{bottom:636.405000px;}
.y70{bottom:639.825000px;}
.y4d{bottom:641.445000px;}
.y1e{bottom:643.065000px;}
.yb8{bottom:649.725000px;}
.y96{bottom:652.605000px;}
.ye7{bottom:653.505000px;}
.y4c{bottom:658.545000px;}
.y1d{bottom:660.345000px;}
.yb7{bottom:666.825000px;}
.y6f{bottom:669.165000px;}
.ye6{bottom:670.785000px;}
.y4b{bottom:675.825000px;}
.y95{bottom:681.765000px;}
.yb6{bottom:684.105000px;}
.ye5{bottom:688.065000px;}
.y1c{bottom:689.505000px;}
.y6e{bottom:698.325000px;}
.yb5{bottom:701.385000px;}
.y4a{bottom:705.165000px;}
.ye4{bottom:705.345000px;}
.y1b{bottom:706.785000px;}
.y94{bottom:711.105000px;}
.yb4{bottom:718.665000px;}
.y6d{bottom:727.665000px;}
.y49{bottom:734.325000px;}
.ye3{bottom:734.505000px;}
.y1a{bottom:735.945000px;}
.y93{bottom:740.265000px;}
.ye2{bottom:751.785000px;}
.yb3{bottom:753.045000px;}
.y19{bottom:753.225000px;}
.y6c{bottom:756.825000px;}
.y48{bottom:763.665000px;}
.ye1{bottom:769.065000px;}
.y92{bottom:769.605000px;}
.yb2{bottom:770.325000px;}
.y18{bottom:770.505000px;}
.y6b{bottom:786.165000px;}
.ye0{bottom:786.345000px;}
.yb1{bottom:787.605000px;}
.y17{bottom:787.785000px;}
.y47{bottom:792.825000px;}
.y91{bottom:798.765000px;}
.yb0{bottom:804.885000px;}
.y16{bottom:805.065000px;}
.y6a{bottom:815.325000px;}
.ydf{bottom:815.505000px;}
.y46{bottom:822.165000px;}
.y90{bottom:828.105000px;}
.yde{bottom:832.785000px;}
.y15{bottom:834.225000px;}
.yaf{bottom:839.445000px;}
.y69{bottom:844.665000px;}
.ydd{bottom:850.065000px;}
.y45{bottom:851.325000px;}
.yae{bottom:856.545000px;}
.y8f{bottom:857.265000px;}
.y14{bottom:863.565000px;}
.y68{bottom:873.870000px;}
.ydc{bottom:879.270000px;}
.y44{bottom:880.710000px;}
.y13{bottom:881.250000px;}
.y8e{bottom:886.650000px;}
.ydb{bottom:896.550000px;}
.y12{bottom:900.150000px;}
.y67{bottom:903.210000px;}
.y43{bottom:909.870000px;}
.yda{bottom:913.830000px;}
.y8d{bottom:915.810000px;}
.y11{bottom:925.170000px;}
.yd9{bottom:931.110000px;}
.y66{bottom:932.370000px;}
.y42{bottom:939.210000px;}
.y10{bottom:944.070000px;}
.y8c{bottom:945.150000px;}
.yd8{bottom:948.390000px;}
.y65{bottom:961.710000px;}
.yf{bottom:963.150000px;}
.yd7{bottom:965.670000px;}
.y41{bottom:968.370000px;}
.y8b{bottom:974.310000px;}
.yd{bottom:976.110000px;}
.ye{bottom:982.050000px;}
.yd6{bottom:983.850000px;}
.y64{bottom:990.870000px;}
.yc{bottom:996.630000px;}
.y40{bottom:997.710000px;}
.yd5{bottom:1001.130000px;}
.y8a{bottom:1003.650000px;}
.yd4{bottom:1018.410000px;}
.y63{bottom:1020.210000px;}
.yb{bottom:1026.150000px;}
.y3f{bottom:1026.870000px;}
.y89{bottom:1032.810000px;}
.yd3{bottom:1036.770000px;}
.y62{bottom:1049.370000px;}
.yd2{bottom:1054.050000px;}
.y3e{bottom:1056.210000px;}
.y88{bottom:1062.150000px;}
.ya{bottom:1064.130000px;}
.yd1{bottom:1071.330000px;}
.y3d{bottom:1073.490000px;}
.y61{bottom:1078.530000px;}
.yd0{bottom:1089.510000px;}
.y3c{bottom:1090.590000px;}
.y87{bottom:1091.310000px;}
.y9{bottom:1102.110000px;}
.ycf{bottom:1106.790000px;}
.y60{bottom:1107.870000px;}
.y3b{bottom:1119.930000px;}
.y5f{bottom:1137.030000px;}
.y3a{bottom:1137.210000px;}
.y4{bottom:1137.780000px;}
.y39{bottom:1156.140000px;}
.y3{bottom:1158.840000px;}
.y2{bottom:1177.200000px;}
.y1{bottom:1195.380000px;}
.h17{height:38.158594px;}
.h13{height:38.671172px;}
.h19{height:39.049805px;}
.hb{height:41.250937px;}
.h9{height:42.086250px;}
.h12{height:43.215117px;}
.h8{height:46.736719px;}
.h18{height:47.980898px;}
.hf{height:48.496641px;}
.h11{height:49.255313px;}
.h1a{height:52.998047px;}
.hd{height:58.651172px;}
.h14{height:59.439023px;}
.h15{height:59.614102px;}
.he{height:60.226875px;}
.h2{height:61.189805px;}
.h16{height:61.423863px;}
.h10{height:62.211094px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.ha{height:66.757500px;}
.h3{height:71.613281px;}
.h5{height:92.965430px;}
.h7{height:96.508125px;}
.h6{height:132.789375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:87.659987px;}
.x4{left:108.035987px;}
.x21{left:110.735987px;}
.x14{left:112.895987px;}
.x1c{left:129.275987px;}
.x1b{left:135.035987px;}
.x11{left:140.075987px;}
.xa{left:147.275987px;}
.x6{left:150.509987px;}
.x1d{left:162.029987px;}
.x2{left:165.449987px;}
.x12{left:172.289987px;}
.x10{left:177.869987px;}
.x18{left:182.369987px;}
.x16{left:186.329987px;}
.x9{left:200.909987px;}
.x7{left:214.589987px;}
.xd{left:244.649987px;}
.x1a{left:277.994987px;}
.x1{left:315.614987px;}
.x13{left:324.074987px;}
.xe{left:338.654973px;}
.xf{left:343.874987px;}
.x15{left:365.114987px;}
.x8{left:371.954987px;}
.x17{left:393.374987px;}
.xb{left:401.654987px;}
.x19{left:405.614987px;}
.xc{left:446.474987px;}
.x5{left:480.704987px;}
.x1e{left:503.564973px;}
.x1f{left:506.264987px;}
.x3{left:635.684987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsa{letter-spacing:2.080000pt;}
.ls10{letter-spacing:26.192640pt;}
.ls1{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.ls0{letter-spacing:1009.573120pt;}
.wsb{word-spacing:-53.120000pt;}
.ws2{word-spacing:-29.280000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._8{margin-left:-9.018240pt;}
._9{margin-left:-6.005760pt;}
._7{margin-left:-4.937600pt;}
._6{margin-left:-3.112320pt;}
._d{margin-left:-2.018560pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.009280pt;}
._2{width:2.353067pt;}
._b{width:4.067413pt;}
._a{width:5.134507pt;}
._12{width:6.309547pt;}
._f{width:7.914880pt;}
._13{width:9.030400pt;}
._14{width:9.933440pt;}
._e{width:11.155200pt;}
._15{width:12.111360pt;}
._c{width:14.395520pt;}
._10{width:15.729707pt;}
._16{width:16.792747pt;}
._11{width:42.230400pt;}
._4{width:93.573120pt;}
._17{width:178.720000pt;}
._3{width:932.133120pt;}
._5{width:1190.799787pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:17.280000pt;}
.y7{bottom:38.080000pt;}
.y6{bottom:58.880000pt;}
.y5{bottom:79.552000pt;}
.y38{bottom:98.752000pt;}
.y37{bottom:114.112000pt;}
.yce{bottom:118.112000pt;}
.yad{bottom:120.672000pt;}
.y86{bottom:129.792000pt;}
.y36{bottom:130.112000pt;}
.ycd{bottom:133.466667pt;}
.y35{bottom:134.746667pt;}
.yac{bottom:146.746667pt;}
.y34{bottom:147.226667pt;}
.ycc{bottom:148.826667pt;}
.yfc{bottom:150.906667pt;}
.y85{bottom:155.066667pt;}
.ycb{bottom:164.026667pt;}
.yfb{bottom:166.266667pt;}
.y84{bottom:170.426667pt;}
.yab{bottom:172.666667pt;}
.yca{bottom:179.386667pt;}
.yfa{bottom:180.026667pt;}
.yf9{bottom:193.786667pt;}
.yc9{bottom:194.746667pt;}
.y33{bottom:196.186667pt;}
.yaa{bottom:198.746667pt;}
.y83{bottom:201.786667pt;}
.yf8{bottom:207.706667pt;}
.yc8{bottom:210.106667pt;}
.y32{bottom:211.546667pt;}
.y82{bottom:217.146667pt;}
.yf7{bottom:223.226667pt;}
.ya9{bottom:224.666667pt;}
.yc7{bottom:225.466667pt;}
.y31{bottom:226.906667pt;}
.yf6{bottom:228.506667pt;}
.y81{bottom:232.506667pt;}
.yc6{bottom:240.666667pt;}
.yfd{bottom:242.746667pt;}
.y80{bottom:247.866667pt;}
.ya8{bottom:250.746667pt;}
.y30{bottom:252.826667pt;}
.yc5{bottom:256.026667pt;}
.y7f{bottom:263.066667pt;}
.ya7{bottom:266.106667pt;}
.y2f{bottom:268.186667pt;}
.yf5{bottom:271.706667pt;}
.y5e{bottom:277.306667pt;}
.y7e{bottom:278.426667pt;}
.ya6{bottom:281.466667pt;}
.yc4{bottom:282.106667pt;}
.y2e{bottom:283.546667pt;}
.ya5{bottom:296.666667pt;}
.yc3{bottom:297.466667pt;}
.y2d{bottom:298.906667pt;}
.yf4{bottom:299.266667pt;}
.y5d{bottom:303.426667pt;}
.y7d{bottom:309.826667pt;}
.ya4{bottom:312.066667pt;}
.yc2{bottom:312.706667pt;}
.y2c{bottom:314.306667pt;}
.y7c{bottom:325.186667pt;}
.yf3{bottom:326.786667pt;}
.ya3{bottom:327.426667pt;}
.y5c{bottom:329.346667pt;}
.y2b{bottom:329.506667pt;}
.yc1{bottom:338.786667pt;}
.ya2{bottom:342.786667pt;}
.y5b{bottom:344.706667pt;}
.y2a{bottom:344.866667pt;}
.yf2{bottom:354.306667pt;}
.y7b{bottom:356.386667pt;}
.ya1{bottom:358.146667pt;}
.y5a{bottom:360.066667pt;}
.y29{bottom:360.226667pt;}
.yc0{bottom:364.706667pt;}
.y7a{bottom:371.746667pt;}
.ya0{bottom:373.506667pt;}
.y59{bottom:375.426667pt;}
.yf0{bottom:381.666667pt;}
.y28{bottom:386.146667pt;}
.yf1{bottom:386.306667pt;}
.y9f{bottom:388.706667pt;}
.y58{bottom:390.786667pt;}
.yef{bottom:397.026667pt;}
.y79{bottom:397.826667pt;}
.y9e{bottom:404.066667pt;}
.y57{bottom:406.146667pt;}
.y27{bottom:412.226667pt;}
.y78{bottom:413.186667pt;}
.ybf{bottom:416.706667pt;}
.y9d{bottom:419.426667pt;}
.y56{bottom:421.506667pt;}
.y26{bottom:427.586667pt;}
.y9c{bottom:434.786667pt;}
.y55{bottom:436.706667pt;}
.y77{bottom:439.106667pt;}
.ybe{bottom:442.786667pt;}
.y25{bottom:442.946667pt;}
.y9b{bottom:450.146667pt;}
.y54{bottom:452.066667pt;}
.y76{bottom:454.466667pt;}
.y24{bottom:458.306667pt;}
.y53{bottom:467.426667pt;}
.ybd{bottom:468.706667pt;}
.y75{bottom:469.826667pt;}
.yee{bottom:473.666667pt;}
.y9a{bottom:476.066667pt;}
.y52{bottom:482.786667pt;}
.y23{bottom:484.226667pt;}
.y74{bottom:485.186667pt;}
.yed{bottom:488.866667pt;}
.ybc{bottom:494.786667pt;}
.y51{bottom:498.146667pt;}
.y22{bottom:499.586667pt;}
.y73{bottom:500.546667pt;}
.y99{bottom:501.986667pt;}
.yec{bottom:504.226667pt;}
.y72{bottom:515.746667pt;}
.yeb{bottom:519.586667pt;}
.ybb{bottom:520.706667pt;}
.y50{bottom:524.066667pt;}
.y21{bottom:525.506667pt;}
.y98{bottom:528.066667pt;}
.yea{bottom:534.946667pt;}
.y4f{bottom:539.453333pt;}
.y20{bottom:540.893333pt;}
.y71{bottom:542.653333pt;}
.yba{bottom:546.813333pt;}
.ye9{bottom:550.333333pt;}
.y97{bottom:554.013333pt;}
.y4e{bottom:554.813333pt;}
.y1f{bottom:556.253333pt;}
.yb9{bottom:562.173333pt;}
.ye8{bottom:565.693333pt;}
.y70{bottom:568.733333pt;}
.y4d{bottom:570.173333pt;}
.y1e{bottom:571.613333pt;}
.yb8{bottom:577.533333pt;}
.y96{bottom:580.093333pt;}
.ye7{bottom:580.893333pt;}
.y4c{bottom:585.373333pt;}
.y1d{bottom:586.973333pt;}
.yb7{bottom:592.733333pt;}
.y6f{bottom:594.813333pt;}
.ye6{bottom:596.253333pt;}
.y4b{bottom:600.733333pt;}
.y95{bottom:606.013333pt;}
.yb6{bottom:608.093333pt;}
.ye5{bottom:611.613333pt;}
.y1c{bottom:612.893333pt;}
.y6e{bottom:620.733333pt;}
.yb5{bottom:623.453333pt;}
.y4a{bottom:626.813333pt;}
.ye4{bottom:626.973333pt;}
.y1b{bottom:628.253333pt;}
.y94{bottom:632.093333pt;}
.yb4{bottom:638.813333pt;}
.y6d{bottom:646.813333pt;}
.y49{bottom:652.733333pt;}
.ye3{bottom:652.893333pt;}
.y1a{bottom:654.173333pt;}
.y93{bottom:658.013333pt;}
.ye2{bottom:668.253333pt;}
.yb3{bottom:669.373333pt;}
.y19{bottom:669.533333pt;}
.y6c{bottom:672.733333pt;}
.y48{bottom:678.813333pt;}
.ye1{bottom:683.613333pt;}
.y92{bottom:684.093333pt;}
.yb2{bottom:684.733333pt;}
.y18{bottom:684.893333pt;}
.y6b{bottom:698.813333pt;}
.ye0{bottom:698.973333pt;}
.yb1{bottom:700.093333pt;}
.y17{bottom:700.253333pt;}
.y47{bottom:704.733333pt;}
.y91{bottom:710.013333pt;}
.yb0{bottom:715.453333pt;}
.y16{bottom:715.613333pt;}
.y6a{bottom:724.733333pt;}
.ydf{bottom:724.893333pt;}
.y46{bottom:730.813333pt;}
.y90{bottom:736.093333pt;}
.yde{bottom:740.253333pt;}
.y15{bottom:741.533333pt;}
.yaf{bottom:746.173333pt;}
.y69{bottom:750.813333pt;}
.ydd{bottom:755.613333pt;}
.y45{bottom:756.733333pt;}
.yae{bottom:761.373333pt;}
.y8f{bottom:762.013333pt;}
.y14{bottom:767.613333pt;}
.y68{bottom:776.773333pt;}
.ydc{bottom:781.573333pt;}
.y44{bottom:782.853333pt;}
.y13{bottom:783.333333pt;}
.y8e{bottom:788.133333pt;}
.ydb{bottom:796.933333pt;}
.y12{bottom:800.133333pt;}
.y67{bottom:802.853333pt;}
.y43{bottom:808.773333pt;}
.yda{bottom:812.293333pt;}
.y8d{bottom:814.053333pt;}
.y11{bottom:822.373333pt;}
.yd9{bottom:827.653333pt;}
.y66{bottom:828.773333pt;}
.y42{bottom:834.853333pt;}
.y10{bottom:839.173333pt;}
.y8c{bottom:840.133333pt;}
.yd8{bottom:843.013333pt;}
.y65{bottom:854.853333pt;}
.yf{bottom:856.133333pt;}
.yd7{bottom:858.373333pt;}
.y41{bottom:860.773333pt;}
.y8b{bottom:866.053333pt;}
.yd{bottom:867.653333pt;}
.ye{bottom:872.933333pt;}
.yd6{bottom:874.533333pt;}
.y64{bottom:880.773333pt;}
.yc{bottom:885.893333pt;}
.y40{bottom:886.853333pt;}
.yd5{bottom:889.893333pt;}
.y8a{bottom:892.133333pt;}
.yd4{bottom:905.253333pt;}
.y63{bottom:906.853333pt;}
.yb{bottom:912.133333pt;}
.y3f{bottom:912.773333pt;}
.y89{bottom:918.053333pt;}
.yd3{bottom:921.573333pt;}
.y62{bottom:932.773333pt;}
.yd2{bottom:936.933333pt;}
.y3e{bottom:938.853333pt;}
.y88{bottom:944.133333pt;}
.ya{bottom:945.893333pt;}
.yd1{bottom:952.293333pt;}
.y3d{bottom:954.213333pt;}
.y61{bottom:958.693333pt;}
.yd0{bottom:968.453333pt;}
.y3c{bottom:969.413333pt;}
.y87{bottom:970.053333pt;}
.y9{bottom:979.653333pt;}
.ycf{bottom:983.813333pt;}
.y60{bottom:984.773333pt;}
.y3b{bottom:995.493333pt;}
.y5f{bottom:1010.693333pt;}
.y3a{bottom:1010.853333pt;}
.y4{bottom:1011.360000pt;}
.y39{bottom:1027.680000pt;}
.y3{bottom:1030.080000pt;}
.y2{bottom:1046.400000pt;}
.y1{bottom:1062.560000pt;}
.h17{height:33.918750pt;}
.h13{height:34.374375pt;}
.h19{height:34.710938pt;}
.hb{height:36.667500pt;}
.h9{height:37.410000pt;}
.h12{height:38.413438pt;}
.h8{height:41.543750pt;}
.h18{height:42.649687pt;}
.hf{height:43.108125pt;}
.h11{height:43.782500pt;}
.h1a{height:47.109375pt;}
.hd{height:52.134375pt;}
.h14{height:52.834688pt;}
.h15{height:52.990313pt;}
.he{height:53.535000pt;}
.h2{height:54.390938pt;}
.h16{height:54.598989pt;}
.h10{height:55.298750pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.ha{height:59.340000pt;}
.h3{height:63.656250pt;}
.h5{height:82.635937pt;}
.h7{height:85.785000pt;}
.h6{height:118.035000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:77.919988pt;}
.x4{left:96.031988pt;}
.x21{left:98.431988pt;}
.x14{left:100.351988pt;}
.x1c{left:114.911988pt;}
.x1b{left:120.031988pt;}
.x11{left:124.511988pt;}
.xa{left:130.911988pt;}
.x6{left:133.786655pt;}
.x1d{left:144.026655pt;}
.x2{left:147.066655pt;}
.x12{left:153.146655pt;}
.x10{left:158.106655pt;}
.x18{left:162.106655pt;}
.x16{left:165.626655pt;}
.x9{left:178.586655pt;}
.x7{left:190.746655pt;}
.xd{left:217.466655pt;}
.x1a{left:247.106655pt;}
.x1{left:280.546655pt;}
.x13{left:288.066655pt;}
.xe{left:301.026643pt;}
.xf{left:305.666655pt;}
.x15{left:324.546655pt;}
.x8{left:330.626655pt;}
.x17{left:349.666655pt;}
.xb{left:357.026655pt;}
.x19{left:360.546655pt;}
.xc{left:396.866655pt;}
.x5{left:427.293322pt;}
.x1e{left:447.613310pt;}
.x1f{left:450.013322pt;}
.x3{left:565.053322pt;}
}




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