
    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_1d01795de4dbcb655bfbf67d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_afa3e294a7ca73c71fceb049.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_daf2f2f3bdc24ea856ec048b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_65729c774e4351d1960c3710.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_c4d16594ceacb6aef3036ea4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_74d3009abe5750458e96da20.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_8060fbe8b484a07831792729.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b00737e902abfff2b428fc14.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.750000px;}
.ls7{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.341400px;}
.ls1a{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.350640px;}
.ls1e{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.lsf{letter-spacing:1.440000px;}
.lsc{letter-spacing:4.320000px;}
.lsd{letter-spacing:6.480000px;}
.ls20{letter-spacing:7.200000px;}
.ls1f{letter-spacing:9.360000px;}
.ls11{letter-spacing:10.800000px;}
.lsa{letter-spacing:11.520000px;}
.ls12{letter-spacing:11.640000px;}
.ls2{letter-spacing:18.720000px;}
.ls21{letter-spacing:22.320000px;}
.lse{letter-spacing:26.640000px;}
.ls14{letter-spacing:30.240000px;}
.ls10{letter-spacing:38.160000px;}
.lsb{letter-spacing:52.560000px;}
.ls13{letter-spacing:56.160000px;}
.ls15{letter-spacing:65.520000px;}
.ls24{letter-spacing:102.384000px;}
.ls23{letter-spacing:138.384000px;}
.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:-26.424000px;}
.ws5{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.718600px;}
.wsb{word-spacing:-18.432000px;}
.wsc{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.226440px;}
.wsd{word-spacing:-14.970240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._2{width:1.116000px;}
._6{width:2.148000px;}
._b{width:4.032000px;}
._5{width:5.760000px;}
._d{width:6.780000px;}
._e{width:8.424000px;}
._c{width:10.080000px;}
._4{width:11.304000px;}
._3{width:12.384000px;}
._1e{width:13.608000px;}
._8{width:14.688000px;}
._7{width:15.840000px;}
._1{width:18.648000px;}
._16{width:19.764000px;}
._15{width:20.808000px;}
._1f{width:21.816000px;}
._9{width:23.688000px;}
._a{width:24.780000px;}
._f{width:26.424000px;}
._14{width:27.468000px;}
._18{width:28.632000px;}
._20{width:29.688000px;}
._1b{width:30.876000px;}
._21{width:34.128000px;}
._27{width:35.784000px;}
._10{width:37.224000px;}
._11{width:38.844000px;}
._22{width:41.256000px;}
._23{width:42.408000px;}
._1d{width:46.776000px;}
._19{width:48.000000px;}
._26{width:50.292000px;}
._17{width:51.552000px;}
._13{width:52.704000px;}
._12{width:53.760000px;}
._1a{width:56.856000px;}
._1c{width:65.352000px;}
._25{width:93.744000px;}
._24{width:106.344000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:3.960000px;}
.y91{bottom:4.005000px;}
.y3{bottom:7.020000px;}
.y7{bottom:11.340000px;}
.y96{bottom:14.220000px;}
.y9a{bottom:14.400000px;}
.y97{bottom:24.480000px;}
.y9b{bottom:24.660000px;}
.y9f{bottom:24.690000px;}
.y90{bottom:24.705000px;}
.y2{bottom:28.260000px;}
.y8b{bottom:34.965000px;}
.y8f{bottom:45.405000px;}
.y8a{bottom:55.665000px;}
.y87{bottom:66.105000px;}
.y8{bottom:71.136000px;}
.y85{bottom:76.365000px;}
.y6{bottom:86.796000px;}
.y86{bottom:86.805000px;}
.y89{bottom:97.065000px;}
.y8e{bottom:107.505000px;}
.y88{bottom:117.765000px;}
.ybf{bottom:120.456000px;}
.y7a{bottom:121.176000px;}
.y9d{bottom:121.356000px;}
.ye5{bottom:125.676000px;}
.y8d{bottom:128.205000px;}
.y59{bottom:135.216000px;}
.y8c{bottom:148.905000px;}
.ybe{bottom:151.410000px;}
.y79{bottom:152.310000px;}
.ye4{bottom:156.630000px;}
.y9c{bottom:163.470000px;}
.y58{bottom:166.170000px;}
.y31{bottom:178.410000px;}
.ybd{bottom:182.550000px;}
.y78{bottom:183.270000px;}
.yd2{bottom:184.710000px;}
.y99{bottom:184.890000px;}
.ye3{bottom:187.770000px;}
.y57{bottom:197.310000px;}
.y30{bottom:202.350000px;}
.ybc{bottom:213.510000px;}
.y77{bottom:214.410000px;}
.yd1{bottom:218.730000px;}
.y2f{bottom:226.110000px;}
.y98{bottom:227.010000px;}
.y56{bottom:228.270000px;}
.ybb{bottom:244.650000px;}
.y76{bottom:245.370000px;}
.y95{bottom:248.610000px;}
.yd0{bottom:249.690000px;}
.y2e{bottom:249.870000px;}
.y55{bottom:259.410000px;}
.y2d{bottom:273.630000px;}
.yba{bottom:275.610000px;}
.y75{bottom:276.510000px;}
.ycf{bottom:280.830000px;}
.y54{bottom:290.370000px;}
.y94{bottom:290.730000px;}
.y2c{bottom:297.570000px;}
.yb9{bottom:306.750000px;}
.y74{bottom:307.470000px;}
.yce{bottom:311.790000px;}
.ye2{bottom:311.970000px;}
.y92{bottom:312.150000px;}
.y2b{bottom:321.330000px;}
.y53{bottom:321.510000px;}
.y84{bottom:333.570000px;}
.yb8{bottom:337.755000px;}
.y73{bottom:338.655000px;}
.ycd{bottom:342.975000px;}
.y2a{bottom:345.135000px;}
.y52{bottom:352.515000px;}
.y29{bottom:368.895000px;}
.y72{bottom:369.615000px;}
.ycc{bottom:373.935000px;}
.ye1{bottom:374.115000px;}
.y51{bottom:383.655000px;}
.y28{bottom:392.835000px;}
.yb7{bottom:399.855000px;}
.y71{bottom:400.755000px;}
.ycb{bottom:405.075000px;}
.y27{bottom:416.595000px;}
.y50{bottom:416.955000px;}
.yb6{bottom:430.995000px;}
.y70{bottom:431.715000px;}
.yca{bottom:436.035000px;}
.ye0{bottom:436.215000px;}
.y26{bottom:440.355000px;}
.y4f{bottom:443.595000px;}
.yb5{bottom:461.955000px;}
.y6f{bottom:462.855000px;}
.y25{bottom:464.115000px;}
.yc9{bottom:467.175000px;}
.y4e{bottom:467.535000px;}
.y24{bottom:488.055000px;}
.y4d{bottom:491.295000px;}
.yb4{bottom:493.095000px;}
.y6e{bottom:493.815000px;}
.yc8{bottom:498.135000px;}
.ydf{bottom:498.315000px;}
.y23{bottom:511.815000px;}
.y83{bottom:514.335000px;}
.y4c{bottom:515.055000px;}
.yb3{bottom:524.055000px;}
.y6d{bottom:524.955000px;}
.ye6{bottom:526.035000px;}
.yc7{bottom:529.275000px;}
.y22{bottom:535.575000px;}
.y4b{bottom:538.815000px;}
.y82{bottom:545.295000px;}
.yb2{bottom:555.195000px;}
.y6c{bottom:555.915000px;}
.y21{bottom:559.335000px;}
.yc6{bottom:560.235000px;}
.yde{bottom:560.415000px;}
.y4a{bottom:562.575000px;}
.y81{bottom:576.435000px;}
.y20{bottom:583.275000px;}
.yb1{bottom:586.155000px;}
.y49{bottom:586.515000px;}
.y6b{bottom:587.055000px;}
.yc5{bottom:591.375000px;}
.y1f{bottom:607.065000px;}
.y80{bottom:607.425000px;}
.y48{bottom:610.305000px;}
.yb0{bottom:617.145000px;}
.y6a{bottom:618.045000px;}
.yc4{bottom:622.365000px;}
.ydd{bottom:622.545000px;}
.y1e{bottom:630.825000px;}
.y47{bottom:634.065000px;}
.y7f{bottom:638.385000px;}
.yaf{bottom:648.285000px;}
.y69{bottom:649.185000px;}
.yc3{bottom:653.325000px;}
.ydc{bottom:653.505000px;}
.y1d{bottom:654.585000px;}
.y46{bottom:657.825000px;}
.y7e{bottom:669.525000px;}
.y1c{bottom:678.345000px;}
.yae{bottom:679.245000px;}
.y68{bottom:680.145000px;}
.y45{bottom:681.765000px;}
.ydb{bottom:684.645000px;}
.yc2{bottom:686.805000px;}
.y7d{bottom:700.485000px;}
.y1b{bottom:702.285000px;}
.y44{bottom:705.525000px;}
.yad{bottom:710.385000px;}
.y67{bottom:711.285000px;}
.yda{bottom:715.605000px;}
.yc1{bottom:718.485000px;}
.y1a{bottom:726.045000px;}
.y43{bottom:729.285000px;}
.y7c{bottom:731.625000px;}
.yac{bottom:741.345000px;}
.y66{bottom:742.245000px;}
.yd9{bottom:746.745000px;}
.y19{bottom:749.805000px;}
.y42{bottom:753.045000px;}
.y7b{bottom:760.425000px;}
.yab{bottom:772.485000px;}
.y65{bottom:773.385000px;}
.y18{bottom:773.565000px;}
.y41{bottom:776.985000px;}
.yd8{bottom:777.705000px;}
.y17{bottom:797.505000px;}
.y40{bottom:800.745000px;}
.yaa{bottom:803.445000px;}
.y64{bottom:804.345000px;}
.yd7{bottom:808.845000px;}
.y16{bottom:821.265000px;}
.y3f{bottom:824.505000px;}
.ya9{bottom:834.585000px;}
.y63{bottom:835.305000px;}
.yd6{bottom:839.805000px;}
.y15{bottom:845.025000px;}
.y3e{bottom:848.265000px;}
.ya8{bottom:865.545000px;}
.y62{bottom:866.445000px;}
.y14{bottom:868.785000px;}
.yd5{bottom:870.810000px;}
.y3d{bottom:872.250000px;}
.y13{bottom:892.770000px;}
.y3c{bottom:896.010000px;}
.ya7{bottom:896.730000px;}
.y61{bottom:897.450000px;}
.yd4{bottom:901.950000px;}
.y12{bottom:916.530000px;}
.y3b{bottom:919.770000px;}
.y60{bottom:928.590000px;}
.ya6{bottom:930.030000px;}
.yd3{bottom:930.750000px;}
.y11{bottom:940.290000px;}
.y3a{bottom:943.530000px;}
.ya5{bottom:950.370000px;}
.y5f{bottom:959.550000px;}
.y10{bottom:964.050000px;}
.y39{bottom:967.470000px;}
.ya4{bottom:971.790000px;}
.yf{bottom:987.990000px;}
.y5e{bottom:990.690000px;}
.y38{bottom:992.310000px;}
.ya3{bottom:993.390000px;}
.ye{bottom:1011.750000px;}
.ya2{bottom:1014.810000px;}
.y37{bottom:1020.030000px;}
.y5d{bottom:1021.650000px;}
.ya1{bottom:1036.230000px;}
.yd{bottom:1042.710000px;}
.y36{bottom:1047.750000px;}
.y5c{bottom:1052.790000px;}
.yc{bottom:1066.650000px;}
.y35{bottom:1074.570000px;}
.ya0{bottom:1078.350000px;}
.yc0{bottom:1080.870000px;}
.y5b{bottom:1083.750000px;}
.yb{bottom:1090.410000px;}
.y34{bottom:1098.330000px;}
.y5a{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y9e{bottom:1120.470000px;}
.y33{bottom:1122.090000px;}
.y9{bottom:1143.000000px;}
.y32{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.hd{height:20.700000px;}
.h5{height:27.000000px;}
.he{height:41.220000px;}
.hf{height:41.400000px;}
.h10{height:41.436000px;}
.ha{height:50.273438px;}
.h12{height:52.417969px;}
.h2{height:53.460000px;}
.h9{height:54.246094px;}
.hb{height:58.819922px;}
.h8{height:59.343750px;}
.h7{height:62.261719px;}
.h4{height:65.884219px;}
.h11{height:69.432187px;}
.h6{height:72.846211px;}
.h3{height:75.410156px;}
.hc{height:165.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:37.260000px;}
.w5{width:106.416000px;}
.wc{width:111.600000px;}
.wa{width:113.796000px;}
.w9{width:121.500000px;}
.w8{width:157.530000px;}
.wb{width:171.570000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w2{width:498.675000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.740000px;}
.x1b{left:9.720000px;}
.x24{left:11.160000px;}
.x1d{left:12.960000px;}
.x25{left:15.840000px;}
.x1e{left:18.534000px;}
.x29{left:25.380000px;}
.x23{left:28.800000px;}
.x20{left:34.020000px;}
.x26{left:36.360000px;}
.x16{left:40.680000px;}
.x28{left:42.840000px;}
.x9{left:44.820000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x1a{left:98.676000px;}
.x5{left:106.415987px;}
.xb{left:120.095987px;}
.x1c{left:136.836000px;}
.x10{left:160.409987px;}
.x19{left:176.969987px;}
.x14{left:188.129987px;}
.x2{left:197.310000px;}
.x2f{left:206.849987px;}
.x11{left:216.029987px;}
.x2d{left:236.729987px;}
.xe{left:242.849987px;}
.x12{left:258.329987px;}
.x13{left:265.889987px;}
.xd{left:273.809987px;}
.x1{left:278.175000px;}
.x1f{left:295.095000px;}
.x7{left:297.795000px;}
.xf{left:306.434987px;}
.xc{left:320.114987px;}
.x8{left:390.855000px;}
.x30{left:396.614987px;}
.x22{left:417.315000px;}
.x15{left:420.734987px;}
.x2b{left:457.094987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x27{left:531.825000px;}
.x17{left:607.784987px;}
.x2c{left:656.069987px;}
.x2a{left:704.130000px;}
.x2e{left:734.549987px;}
.x18{left:746.609987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.666667pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.303467pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.311680pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.lsf{letter-spacing:1.280000pt;}
.lsc{letter-spacing:3.840000pt;}
.lsd{letter-spacing:5.760000pt;}
.ls20{letter-spacing:6.400000pt;}
.ls1f{letter-spacing:8.320000pt;}
.ls11{letter-spacing:9.600000pt;}
.lsa{letter-spacing:10.240000pt;}
.ls12{letter-spacing:10.346667pt;}
.ls2{letter-spacing:16.640000pt;}
.ls21{letter-spacing:19.840000pt;}
.lse{letter-spacing:23.680000pt;}
.ls14{letter-spacing:26.880000pt;}
.ls10{letter-spacing:33.920000pt;}
.lsb{letter-spacing:46.720000pt;}
.ls13{letter-spacing:49.920000pt;}
.ls15{letter-spacing:58.240000pt;}
.ls24{letter-spacing:91.008000pt;}
.ls23{letter-spacing:123.008000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.416533pt;}
.wsb{word-spacing:-16.384000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.534613pt;}
.wsd{word-spacing:-13.306880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.992000pt;}
._6{width:1.909333pt;}
._b{width:3.584000pt;}
._5{width:5.120000pt;}
._d{width:6.026667pt;}
._e{width:7.488000pt;}
._c{width:8.960000pt;}
._4{width:10.048000pt;}
._3{width:11.008000pt;}
._1e{width:12.096000pt;}
._8{width:13.056000pt;}
._7{width:14.080000pt;}
._1{width:16.576000pt;}
._16{width:17.568000pt;}
._15{width:18.496000pt;}
._1f{width:19.392000pt;}
._9{width:21.056000pt;}
._a{width:22.026667pt;}
._f{width:23.488000pt;}
._14{width:24.416000pt;}
._18{width:25.450667pt;}
._20{width:26.389333pt;}
._1b{width:27.445333pt;}
._21{width:30.336000pt;}
._27{width:31.808000pt;}
._10{width:33.088000pt;}
._11{width:34.528000pt;}
._22{width:36.672000pt;}
._23{width:37.696000pt;}
._1d{width:41.578667pt;}
._19{width:42.666667pt;}
._26{width:44.704000pt;}
._17{width:45.824000pt;}
._13{width:46.848000pt;}
._12{width:47.786667pt;}
._1a{width:50.538667pt;}
._1c{width:58.090667pt;}
._25{width:83.328000pt;}
._24{width:94.528000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:3.520000pt;}
.y91{bottom:3.560000pt;}
.y3{bottom:6.240000pt;}
.y7{bottom:10.080000pt;}
.y96{bottom:12.640000pt;}
.y9a{bottom:12.800000pt;}
.y97{bottom:21.760000pt;}
.y9b{bottom:21.920000pt;}
.y9f{bottom:21.946667pt;}
.y90{bottom:21.960000pt;}
.y2{bottom:25.120000pt;}
.y8b{bottom:31.080000pt;}
.y8f{bottom:40.360000pt;}
.y8a{bottom:49.480000pt;}
.y87{bottom:58.760000pt;}
.y8{bottom:63.232000pt;}
.y85{bottom:67.880000pt;}
.y6{bottom:77.152000pt;}
.y86{bottom:77.160000pt;}
.y89{bottom:86.280000pt;}
.y8e{bottom:95.560000pt;}
.y88{bottom:104.680000pt;}
.ybf{bottom:107.072000pt;}
.y7a{bottom:107.712000pt;}
.y9d{bottom:107.872000pt;}
.ye5{bottom:111.712000pt;}
.y8d{bottom:113.960000pt;}
.y59{bottom:120.192000pt;}
.y8c{bottom:132.360000pt;}
.ybe{bottom:134.586667pt;}
.y79{bottom:135.386667pt;}
.ye4{bottom:139.226667pt;}
.y9c{bottom:145.306667pt;}
.y58{bottom:147.706667pt;}
.y31{bottom:158.586667pt;}
.ybd{bottom:162.266667pt;}
.y78{bottom:162.906667pt;}
.yd2{bottom:164.186667pt;}
.y99{bottom:164.346667pt;}
.ye3{bottom:166.906667pt;}
.y57{bottom:175.386667pt;}
.y30{bottom:179.866667pt;}
.ybc{bottom:189.786667pt;}
.y77{bottom:190.586667pt;}
.yd1{bottom:194.426667pt;}
.y2f{bottom:200.986667pt;}
.y98{bottom:201.786667pt;}
.y56{bottom:202.906667pt;}
.ybb{bottom:217.466667pt;}
.y76{bottom:218.106667pt;}
.y95{bottom:220.986667pt;}
.yd0{bottom:221.946667pt;}
.y2e{bottom:222.106667pt;}
.y55{bottom:230.586667pt;}
.y2d{bottom:243.226667pt;}
.yba{bottom:244.986667pt;}
.y75{bottom:245.786667pt;}
.ycf{bottom:249.626667pt;}
.y54{bottom:258.106667pt;}
.y94{bottom:258.426667pt;}
.y2c{bottom:264.506667pt;}
.yb9{bottom:272.666667pt;}
.y74{bottom:273.306667pt;}
.yce{bottom:277.146667pt;}
.ye2{bottom:277.306667pt;}
.y92{bottom:277.466667pt;}
.y2b{bottom:285.626667pt;}
.y53{bottom:285.786667pt;}
.y84{bottom:296.506667pt;}
.yb8{bottom:300.226667pt;}
.y73{bottom:301.026667pt;}
.ycd{bottom:304.866667pt;}
.y2a{bottom:306.786667pt;}
.y52{bottom:313.346667pt;}
.y29{bottom:327.906667pt;}
.y72{bottom:328.546667pt;}
.ycc{bottom:332.386667pt;}
.ye1{bottom:332.546667pt;}
.y51{bottom:341.026667pt;}
.y28{bottom:349.186667pt;}
.yb7{bottom:355.426667pt;}
.y71{bottom:356.226667pt;}
.ycb{bottom:360.066667pt;}
.y27{bottom:370.306667pt;}
.y50{bottom:370.626667pt;}
.yb6{bottom:383.106667pt;}
.y70{bottom:383.746667pt;}
.yca{bottom:387.586667pt;}
.ye0{bottom:387.746667pt;}
.y26{bottom:391.426667pt;}
.y4f{bottom:394.306667pt;}
.yb5{bottom:410.626667pt;}
.y6f{bottom:411.426667pt;}
.y25{bottom:412.546667pt;}
.yc9{bottom:415.266667pt;}
.y4e{bottom:415.586667pt;}
.y24{bottom:433.826667pt;}
.y4d{bottom:436.706667pt;}
.yb4{bottom:438.306667pt;}
.y6e{bottom:438.946667pt;}
.yc8{bottom:442.786667pt;}
.ydf{bottom:442.946667pt;}
.y23{bottom:454.946667pt;}
.y83{bottom:457.186667pt;}
.y4c{bottom:457.826667pt;}
.yb3{bottom:465.826667pt;}
.y6d{bottom:466.626667pt;}
.ye6{bottom:467.586667pt;}
.yc7{bottom:470.466667pt;}
.y22{bottom:476.066667pt;}
.y4b{bottom:478.946667pt;}
.y82{bottom:484.706667pt;}
.yb2{bottom:493.506667pt;}
.y6c{bottom:494.146667pt;}
.y21{bottom:497.186667pt;}
.yc6{bottom:497.986667pt;}
.yde{bottom:498.146667pt;}
.y4a{bottom:500.066667pt;}
.y81{bottom:512.386667pt;}
.y20{bottom:518.466667pt;}
.yb1{bottom:521.026667pt;}
.y49{bottom:521.346667pt;}
.y6b{bottom:521.826667pt;}
.yc5{bottom:525.666667pt;}
.y1f{bottom:539.613333pt;}
.y80{bottom:539.933333pt;}
.y48{bottom:542.493333pt;}
.yb0{bottom:548.573333pt;}
.y6a{bottom:549.373333pt;}
.yc4{bottom:553.213333pt;}
.ydd{bottom:553.373333pt;}
.y1e{bottom:560.733333pt;}
.y47{bottom:563.613333pt;}
.y7f{bottom:567.453333pt;}
.yaf{bottom:576.253333pt;}
.y69{bottom:577.053333pt;}
.yc3{bottom:580.733333pt;}
.ydc{bottom:580.893333pt;}
.y1d{bottom:581.853333pt;}
.y46{bottom:584.733333pt;}
.y7e{bottom:595.133333pt;}
.y1c{bottom:602.973333pt;}
.yae{bottom:603.773333pt;}
.y68{bottom:604.573333pt;}
.y45{bottom:606.013333pt;}
.ydb{bottom:608.573333pt;}
.yc2{bottom:610.493333pt;}
.y7d{bottom:622.653333pt;}
.y1b{bottom:624.253333pt;}
.y44{bottom:627.133333pt;}
.yad{bottom:631.453333pt;}
.y67{bottom:632.253333pt;}
.yda{bottom:636.093333pt;}
.yc1{bottom:638.653333pt;}
.y1a{bottom:645.373333pt;}
.y43{bottom:648.253333pt;}
.y7c{bottom:650.333333pt;}
.yac{bottom:658.973333pt;}
.y66{bottom:659.773333pt;}
.yd9{bottom:663.773333pt;}
.y19{bottom:666.493333pt;}
.y42{bottom:669.373333pt;}
.y7b{bottom:675.933333pt;}
.yab{bottom:686.653333pt;}
.y65{bottom:687.453333pt;}
.y18{bottom:687.613333pt;}
.y41{bottom:690.653333pt;}
.yd8{bottom:691.293333pt;}
.y17{bottom:708.893333pt;}
.y40{bottom:711.773333pt;}
.yaa{bottom:714.173333pt;}
.y64{bottom:714.973333pt;}
.yd7{bottom:718.973333pt;}
.y16{bottom:730.013333pt;}
.y3f{bottom:732.893333pt;}
.ya9{bottom:741.853333pt;}
.y63{bottom:742.493333pt;}
.yd6{bottom:746.493333pt;}
.y15{bottom:751.133333pt;}
.y3e{bottom:754.013333pt;}
.ya8{bottom:769.373333pt;}
.y62{bottom:770.173333pt;}
.y14{bottom:772.253333pt;}
.yd5{bottom:774.053333pt;}
.y3d{bottom:775.333333pt;}
.y13{bottom:793.573333pt;}
.y3c{bottom:796.453333pt;}
.ya7{bottom:797.093333pt;}
.y61{bottom:797.733333pt;}
.yd4{bottom:801.733333pt;}
.y12{bottom:814.693333pt;}
.y3b{bottom:817.573333pt;}
.y60{bottom:825.413333pt;}
.ya6{bottom:826.693333pt;}
.yd3{bottom:827.333333pt;}
.y11{bottom:835.813333pt;}
.y3a{bottom:838.693333pt;}
.ya5{bottom:844.773333pt;}
.y5f{bottom:852.933333pt;}
.y10{bottom:856.933333pt;}
.y39{bottom:859.973333pt;}
.ya4{bottom:863.813333pt;}
.yf{bottom:878.213333pt;}
.y5e{bottom:880.613333pt;}
.y38{bottom:882.053333pt;}
.ya3{bottom:883.013333pt;}
.ye{bottom:899.333333pt;}
.ya2{bottom:902.053333pt;}
.y37{bottom:906.693333pt;}
.y5d{bottom:908.133333pt;}
.ya1{bottom:921.093333pt;}
.yd{bottom:926.853333pt;}
.y36{bottom:931.333333pt;}
.y5c{bottom:935.813333pt;}
.yc{bottom:948.133333pt;}
.y35{bottom:955.173333pt;}
.ya0{bottom:958.533333pt;}
.yc0{bottom:960.773333pt;}
.y5b{bottom:963.333333pt;}
.yb{bottom:969.253333pt;}
.y34{bottom:976.293333pt;}
.y5a{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y9e{bottom:995.973333pt;}
.y33{bottom:997.413333pt;}
.y9{bottom:1016.000000pt;}
.y32{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.hd{height:18.400000pt;}
.h5{height:24.000000pt;}
.he{height:36.640000pt;}
.hf{height:36.800000pt;}
.h10{height:36.832000pt;}
.ha{height:44.687500pt;}
.h12{height:46.593750pt;}
.h2{height:47.520000pt;}
.h9{height:48.218750pt;}
.hb{height:52.284375pt;}
.h8{height:52.750000pt;}
.h7{height:55.343750pt;}
.h4{height:58.563750pt;}
.h11{height:61.717500pt;}
.h6{height:64.752187pt;}
.h3{height:67.031250pt;}
.hc{height:147.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:33.120000pt;}
.w5{width:94.592000pt;}
.wc{width:99.200000pt;}
.wa{width:101.152000pt;}
.w9{width:108.000000pt;}
.w8{width:140.026667pt;}
.wb{width:152.506667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w2{width:443.266667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.880000pt;}
.x1b{left:8.640000pt;}
.x24{left:9.920000pt;}
.x1d{left:11.520000pt;}
.x25{left:14.080000pt;}
.x1e{left:16.474667pt;}
.x29{left:22.560000pt;}
.x23{left:25.600000pt;}
.x20{left:30.240000pt;}
.x26{left:32.320000pt;}
.x16{left:36.160000pt;}
.x28{left:38.080000pt;}
.x9{left:39.840000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x1a{left:87.712000pt;}
.x5{left:94.591988pt;}
.xb{left:106.751988pt;}
.x1c{left:121.632000pt;}
.x10{left:142.586655pt;}
.x19{left:157.306655pt;}
.x14{left:167.226655pt;}
.x2{left:175.386667pt;}
.x2f{left:183.866655pt;}
.x11{left:192.026655pt;}
.x2d{left:210.426655pt;}
.xe{left:215.866655pt;}
.x12{left:229.626655pt;}
.x13{left:236.346655pt;}
.xd{left:243.386655pt;}
.x1{left:247.266667pt;}
.x1f{left:262.306667pt;}
.x7{left:264.706667pt;}
.xf{left:272.386655pt;}
.xc{left:284.546655pt;}
.x8{left:347.426667pt;}
.x30{left:352.546655pt;}
.x22{left:370.946667pt;}
.x15{left:373.986655pt;}
.x2b{left:406.306655pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x27{left:472.733333pt;}
.x17{left:540.253322pt;}
.x2c{left:583.173322pt;}
.x2a{left:625.893333pt;}
.x2e{left:652.933322pt;}
.x18{left:663.653322pt;}
}




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