
    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_c922a5a27d1e0b56d8cc2a0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_aefb362b6b78a76bab99afdf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_abd2115f5401d59a6af78e7b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d0db6e5335881c0955580d2e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3310b985aca7618fe19037b3.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_b9f5744e9cab96ea622f9f99.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_5fe5fd0daa456cea960576de.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_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_a3deb258051c63439c0fd155.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-80.640000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-1.008000px;}
.ls20{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.612000px;}
.ls1e{letter-spacing:-0.596400px;}
.ls15{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.158400px;}
.ls18{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls16{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.720000px;}
.ls8{letter-spacing:2.160000px;}
.ls9{letter-spacing:6.480000px;}
.ls12{letter-spacing:10.800000px;}
.ls5{letter-spacing:15.120000px;}
.ls6{letter-spacing:28.080000px;}
.ls1b{letter-spacing:34.841280px;}
.ls7{letter-spacing:56.280000px;}
.ls1a{letter-spacing:67.961280px;}
.ls19{letter-spacing:861.276000px;}
.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;}
}
.ws5{word-spacing:-80.280000px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.360000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.254600px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-3.493440px;}
._10{margin-left:-2.064960px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:3.193920px;}
._7{width:4.423680px;}
._8{width:5.725440px;}
._a{width:7.632000px;}
._12{width:8.856000px;}
._13{width:10.200000px;}
._9{width:11.658240px;}
._11{width:12.672000px;}
._b{width:13.864320px;}
._c{width:15.235200px;}
._14{width:16.992000px;}
._15{width:19.635840px;}
._d{width:23.040000px;}
._e{width:24.480000px;}
._f{width:25.995840px;}
._17{width:51.402240px;}
._18{width:52.539840px;}
._19{width:77.368320px;}
._1a{width:78.618720px;}
._1{width:480.335520px;}
._4{width:756.300000px;}
._2{width:822.540000px;}
._3{width:831.888480px;}
._1b{width:846.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs5{font-size:321.120000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.yc1{bottom:4.500000px;}
.y67{bottom:5.040000px;}
.yc{bottom:21.240000px;}
.yc3{bottom:25.200000px;}
.yd{bottom:31.140000px;}
.yb{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y35{bottom:144.036000px;}
.y97{bottom:146.016000px;}
.y65{bottom:161.490000px;}
.y34{bottom:162.930000px;}
.y96{bottom:166.710000px;}
.y33{bottom:181.830000px;}
.y64{bottom:182.190000px;}
.y95{bottom:187.410000px;}
.ybe{bottom:190.470000px;}
.y32{bottom:200.910000px;}
.y63{bottom:202.890000px;}
.y94{bottom:208.110000px;}
.ybd{bottom:209.370000px;}
.y31{bottom:219.810000px;}
.y62{bottom:223.590000px;}
.ybc{bottom:228.270000px;}
.y93{bottom:228.810000px;}
.y30{bottom:238.890000px;}
.y61{bottom:244.290000px;}
.ybb{bottom:247.350000px;}
.y92{bottom:249.510000px;}
.y2f{bottom:257.790000px;}
.y60{bottom:264.990000px;}
.yba{bottom:266.250000px;}
.y91{bottom:270.210000px;}
.y2e{bottom:276.690000px;}
.yb9{bottom:285.330000px;}
.y5f{bottom:285.690000px;}
.y90{bottom:290.910000px;}
.y2d{bottom:295.770000px;}
.yb8{bottom:304.230000px;}
.y5e{bottom:306.390000px;}
.y8f{bottom:311.610000px;}
.y2c{bottom:314.670000px;}
.yb7{bottom:323.130000px;}
.y5d{bottom:327.090000px;}
.y8e{bottom:332.310000px;}
.y2b{bottom:333.750000px;}
.yb6{bottom:342.210000px;}
.y5c{bottom:347.790000px;}
.y2a{bottom:352.650000px;}
.y8d{bottom:353.010000px;}
.yb5{bottom:361.110000px;}
.y5b{bottom:368.490000px;}
.y29{bottom:371.550000px;}
.y8c{bottom:373.710000px;}
.yb4{bottom:380.235000px;}
.y5a{bottom:389.235000px;}
.y28{bottom:390.675000px;}
.y8b{bottom:394.455000px;}
.yb3{bottom:399.135000px;}
.y27{bottom:409.575000px;}
.y59{bottom:409.935000px;}
.y8a{bottom:415.155000px;}
.yb2{bottom:418.215000px;}
.y26{bottom:428.655000px;}
.y58{bottom:430.635000px;}
.y89{bottom:435.855000px;}
.yb1{bottom:437.115000px;}
.y25{bottom:447.195000px;}
.y57{bottom:451.335000px;}
.yb0{bottom:456.015000px;}
.y88{bottom:456.555000px;}
.y24{bottom:467.355000px;}
.y56{bottom:472.035000px;}
.yaf{bottom:475.095000px;}
.y87{bottom:477.255000px;}
.y23{bottom:489.675000px;}
.y55{bottom:492.735000px;}
.yae{bottom:493.995000px;}
.y86{bottom:497.955000px;}
.y22{bottom:511.635000px;}
.yad{bottom:513.075000px;}
.y54{bottom:513.435000px;}
.y85{bottom:518.655000px;}
.yac{bottom:531.975000px;}
.y53{bottom:534.135000px;}
.y21{bottom:534.495000px;}
.y84{bottom:539.355000px;}
.yab{bottom:550.875000px;}
.y52{bottom:554.835000px;}
.y20{bottom:556.455000px;}
.y83{bottom:560.055000px;}
.yaa{bottom:569.955000px;}
.y51{bottom:575.535000px;}
.y1f{bottom:579.315000px;}
.y82{bottom:580.755000px;}
.ya9{bottom:588.855000px;}
.y50{bottom:596.235000px;}
.y1e{bottom:601.275000px;}
.y81{bottom:601.455000px;}
.ya8{bottom:607.935000px;}
.y4f{bottom:616.935000px;}
.y80{bottom:622.155000px;}
.y1d{bottom:624.315000px;}
.ya7{bottom:626.835000px;}
.y4e{bottom:637.665000px;}
.y7f{bottom:642.885000px;}
.ya6{bottom:645.765000px;}
.y1c{bottom:646.665000px;}
.y4d{bottom:658.365000px;}
.y7e{bottom:663.585000px;}
.ya5{bottom:664.845000px;}
.y1b{bottom:669.165000px;}
.y4c{bottom:679.065000px;}
.ya4{bottom:683.745000px;}
.y7d{bottom:684.285000px;}
.y1a{bottom:690.945000px;}
.y4b{bottom:699.765000px;}
.ya3{bottom:702.825000px;}
.y7c{bottom:704.985000px;}
.y19{bottom:713.985000px;}
.y4a{bottom:720.465000px;}
.ya2{bottom:721.725000px;}
.y7b{bottom:725.685000px;}
.y18{bottom:735.765000px;}
.ya1{bottom:740.625000px;}
.y49{bottom:741.165000px;}
.y7a{bottom:746.385000px;}
.y17{bottom:758.805000px;}
.ya0{bottom:759.705000px;}
.y48{bottom:761.865000px;}
.y79{bottom:767.085000px;}
.y9f{bottom:778.605000px;}
.y16{bottom:780.765000px;}
.y47{bottom:782.565000px;}
.y98{bottom:787.785000px;}
.y9e{bottom:797.685000px;}
.y15{bottom:803.085000px;}
.y46{bottom:803.265000px;}
.y78{bottom:808.485000px;}
.y9d{bottom:816.585000px;}
.y45{bottom:823.965000px;}
.y14{bottom:824.325000px;}
.y77{bottom:829.185000px;}
.y9c{bottom:835.665000px;}
.y44{bottom:844.665000px;}
.y13{bottom:848.445000px;}
.y76{bottom:849.885000px;}
.y9b{bottom:854.565000px;}
.y43{bottom:865.365000px;}
.y75{bottom:870.585000px;}
.y12{bottom:872.565000px;}
.y9a{bottom:873.465000px;}
.y42{bottom:886.110000px;}
.y74{bottom:891.330000px;}
.y11{bottom:896.730000px;}
.y41{bottom:906.810000px;}
.y73{bottom:912.030000px;}
.y99{bottom:913.290000px;}
.y10{bottom:920.850000px;}
.y66{bottom:923.010000px;}
.y40{bottom:927.510000px;}
.y72{bottom:932.730000px;}
.yc5{bottom:942.990000px;}
.yf{bottom:944.790000px;}
.y3f{bottom:948.210000px;}
.y71{bottom:953.430000px;}
.y9{bottom:960.990000px;}
.yc4{bottom:963.690000px;}
.y70{bottom:974.130000px;}
.yc2{bottom:979.890000px;}
.y3e{bottom:989.070000px;}
.y6f{bottom:994.830000px;}
.yc0{bottom:1000.590000px;}
.y3d{bottom:1008.150000px;}
.y6e{bottom:1015.530000px;}
.ybf{bottom:1025.790000px;}
.y3c{bottom:1027.050000px;}
.y6d{bottom:1036.230000px;}
.y8{bottom:1044.150000px;}
.y3b{bottom:1046.130000px;}
.y6c{bottom:1056.930000px;}
.y3a{bottom:1065.030000px;}
.y6b{bottom:1077.630000px;}
.y39{bottom:1083.930000px;}
.y7{bottom:1087.350000px;}
.y6a{bottom:1098.330000px;}
.y38{bottom:1103.010000px;}
.y69{bottom:1119.030000px;}
.y37{bottom:1121.910000px;}
.y6{bottom:1139.580000px;}
.y68{bottom:1139.760000px;}
.y36{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h15{height:20.685000px;}
.h17{height:41.385000px;}
.h3{height:45.184219px;}
.he{height:56.278125px;}
.h14{height:59.383125px;}
.h11{height:62.085000px;}
.hf{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h13{height:68.084282px;}
.h16{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:72.562500px;}
.h9{height:72.846211px;}
.h10{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:78.825000px;}
.ha{height:84.898125px;}
.h7{height:132.789375px;}
.h12{height:315.161719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:53.674500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w6{width:337.753500px;}
.w7{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.918500px;}
.x3{left:77.041500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.x1c{left:109.650000px;}
.xd{left:117.936000px;}
.x19{left:127.476000px;}
.xa{left:136.296000px;}
.x1a{left:138.636000px;}
.x11{left:143.676000px;}
.x6{left:172.650000px;}
.x1d{left:229.935000px;}
.x2{left:243.570000px;}
.xe{left:253.650000px;}
.x10{left:365.295000px;}
.xb{left:377.355000px;}
.x15{left:380.595000px;}
.x12{left:406.515000px;}
.x1b{left:414.795000px;}
.x17{left:428.295000px;}
.xc{left:446.505000px;}
.x13{left:463.965000px;}
.xf{left:467.745000px;}
.x16{left:499.785000px;}
.x5{left:552.900000px;}
.x14{left:596.085000px;}
.x18{left:680.190000px;}
.x7{left:733.650000px;}
.x9{left:808.020000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-71.680000pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls20{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.544000pt;}
.ls1e{letter-spacing:-0.530133pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.140800pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls16{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.920000pt;}
.ls9{letter-spacing:5.760000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls5{letter-spacing:13.440000pt;}
.ls6{letter-spacing:24.960000pt;}
.ls1b{letter-spacing:30.970027pt;}
.ls7{letter-spacing:50.026667pt;}
.ls1a{letter-spacing:60.410027pt;}
.ls19{letter-spacing:765.578667pt;}
.ws5{word-spacing:-71.360000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.320000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-3.105280pt;}
._10{margin-left:-1.835520pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.839040pt;}
._7{width:3.932160pt;}
._8{width:5.089280pt;}
._a{width:6.784000pt;}
._12{width:7.872000pt;}
._13{width:9.066667pt;}
._9{width:10.362880pt;}
._11{width:11.264000pt;}
._b{width:12.323840pt;}
._c{width:13.542400pt;}
._14{width:15.104000pt;}
._15{width:17.454080pt;}
._d{width:20.480000pt;}
._e{width:21.760000pt;}
._f{width:23.107413pt;}
._17{width:45.690880pt;}
._18{width:46.702080pt;}
._19{width:68.771840pt;}
._1a{width:69.883307pt;}
._1{width:426.964907pt;}
._4{width:672.266667pt;}
._2{width:731.146667pt;}
._3{width:739.456427pt;}
._1b{width:752.266667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs5{font-size:285.440000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.yc1{bottom:4.000000pt;}
.y67{bottom:4.480000pt;}
.yc{bottom:18.880000pt;}
.yc3{bottom:22.400000pt;}
.yd{bottom:27.680000pt;}
.yb{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y35{bottom:128.032000pt;}
.y97{bottom:129.792000pt;}
.y65{bottom:143.546667pt;}
.y34{bottom:144.826667pt;}
.y96{bottom:148.186667pt;}
.y33{bottom:161.626667pt;}
.y64{bottom:161.946667pt;}
.y95{bottom:166.586667pt;}
.ybe{bottom:169.306667pt;}
.y32{bottom:178.586667pt;}
.y63{bottom:180.346667pt;}
.y94{bottom:184.986667pt;}
.ybd{bottom:186.106667pt;}
.y31{bottom:195.386667pt;}
.y62{bottom:198.746667pt;}
.ybc{bottom:202.906667pt;}
.y93{bottom:203.386667pt;}
.y30{bottom:212.346667pt;}
.y61{bottom:217.146667pt;}
.ybb{bottom:219.866667pt;}
.y92{bottom:221.786667pt;}
.y2f{bottom:229.146667pt;}
.y60{bottom:235.546667pt;}
.yba{bottom:236.666667pt;}
.y91{bottom:240.186667pt;}
.y2e{bottom:245.946667pt;}
.yb9{bottom:253.626667pt;}
.y5f{bottom:253.946667pt;}
.y90{bottom:258.586667pt;}
.y2d{bottom:262.906667pt;}
.yb8{bottom:270.426667pt;}
.y5e{bottom:272.346667pt;}
.y8f{bottom:276.986667pt;}
.y2c{bottom:279.706667pt;}
.yb7{bottom:287.226667pt;}
.y5d{bottom:290.746667pt;}
.y8e{bottom:295.386667pt;}
.y2b{bottom:296.666667pt;}
.yb6{bottom:304.186667pt;}
.y5c{bottom:309.146667pt;}
.y2a{bottom:313.466667pt;}
.y8d{bottom:313.786667pt;}
.yb5{bottom:320.986667pt;}
.y5b{bottom:327.546667pt;}
.y29{bottom:330.266667pt;}
.y8c{bottom:332.186667pt;}
.yb4{bottom:337.986667pt;}
.y5a{bottom:345.986667pt;}
.y28{bottom:347.266667pt;}
.y8b{bottom:350.626667pt;}
.yb3{bottom:354.786667pt;}
.y27{bottom:364.066667pt;}
.y59{bottom:364.386667pt;}
.y8a{bottom:369.026667pt;}
.yb2{bottom:371.746667pt;}
.y26{bottom:381.026667pt;}
.y58{bottom:382.786667pt;}
.y89{bottom:387.426667pt;}
.yb1{bottom:388.546667pt;}
.y25{bottom:397.506667pt;}
.y57{bottom:401.186667pt;}
.yb0{bottom:405.346667pt;}
.y88{bottom:405.826667pt;}
.y24{bottom:415.426667pt;}
.y56{bottom:419.586667pt;}
.yaf{bottom:422.306667pt;}
.y87{bottom:424.226667pt;}
.y23{bottom:435.266667pt;}
.y55{bottom:437.986667pt;}
.yae{bottom:439.106667pt;}
.y86{bottom:442.626667pt;}
.y22{bottom:454.786667pt;}
.yad{bottom:456.066667pt;}
.y54{bottom:456.386667pt;}
.y85{bottom:461.026667pt;}
.yac{bottom:472.866667pt;}
.y53{bottom:474.786667pt;}
.y21{bottom:475.106667pt;}
.y84{bottom:479.426667pt;}
.yab{bottom:489.666667pt;}
.y52{bottom:493.186667pt;}
.y20{bottom:494.626667pt;}
.y83{bottom:497.826667pt;}
.yaa{bottom:506.626667pt;}
.y51{bottom:511.586667pt;}
.y1f{bottom:514.946667pt;}
.y82{bottom:516.226667pt;}
.ya9{bottom:523.426667pt;}
.y50{bottom:529.986667pt;}
.y1e{bottom:534.466667pt;}
.y81{bottom:534.626667pt;}
.ya8{bottom:540.386667pt;}
.y4f{bottom:548.386667pt;}
.y80{bottom:553.026667pt;}
.y1d{bottom:554.946667pt;}
.ya7{bottom:557.186667pt;}
.y4e{bottom:566.813333pt;}
.y7f{bottom:571.453333pt;}
.ya6{bottom:574.013333pt;}
.y1c{bottom:574.813333pt;}
.y4d{bottom:585.213333pt;}
.y7e{bottom:589.853333pt;}
.ya5{bottom:590.973333pt;}
.y1b{bottom:594.813333pt;}
.y4c{bottom:603.613333pt;}
.ya4{bottom:607.773333pt;}
.y7d{bottom:608.253333pt;}
.y1a{bottom:614.173333pt;}
.y4b{bottom:622.013333pt;}
.ya3{bottom:624.733333pt;}
.y7c{bottom:626.653333pt;}
.y19{bottom:634.653333pt;}
.y4a{bottom:640.413333pt;}
.ya2{bottom:641.533333pt;}
.y7b{bottom:645.053333pt;}
.y18{bottom:654.013333pt;}
.ya1{bottom:658.333333pt;}
.y49{bottom:658.813333pt;}
.y7a{bottom:663.453333pt;}
.y17{bottom:674.493333pt;}
.ya0{bottom:675.293333pt;}
.y48{bottom:677.213333pt;}
.y79{bottom:681.853333pt;}
.y9f{bottom:692.093333pt;}
.y16{bottom:694.013333pt;}
.y47{bottom:695.613333pt;}
.y98{bottom:700.253333pt;}
.y9e{bottom:709.053333pt;}
.y15{bottom:713.853333pt;}
.y46{bottom:714.013333pt;}
.y78{bottom:718.653333pt;}
.y9d{bottom:725.853333pt;}
.y45{bottom:732.413333pt;}
.y14{bottom:732.733333pt;}
.y77{bottom:737.053333pt;}
.y9c{bottom:742.813333pt;}
.y44{bottom:750.813333pt;}
.y13{bottom:754.173333pt;}
.y76{bottom:755.453333pt;}
.y9b{bottom:759.613333pt;}
.y43{bottom:769.213333pt;}
.y75{bottom:773.853333pt;}
.y12{bottom:775.613333pt;}
.y9a{bottom:776.413333pt;}
.y42{bottom:787.653333pt;}
.y74{bottom:792.293333pt;}
.y11{bottom:797.093333pt;}
.y41{bottom:806.053333pt;}
.y73{bottom:810.693333pt;}
.y99{bottom:811.813333pt;}
.y10{bottom:818.533333pt;}
.y66{bottom:820.453333pt;}
.y40{bottom:824.453333pt;}
.y72{bottom:829.093333pt;}
.yc5{bottom:838.213333pt;}
.yf{bottom:839.813333pt;}
.y3f{bottom:842.853333pt;}
.y71{bottom:847.493333pt;}
.y9{bottom:854.213333pt;}
.yc4{bottom:856.613333pt;}
.y70{bottom:865.893333pt;}
.yc2{bottom:871.013333pt;}
.y3e{bottom:879.173333pt;}
.y6f{bottom:884.293333pt;}
.yc0{bottom:889.413333pt;}
.y3d{bottom:896.133333pt;}
.y6e{bottom:902.693333pt;}
.ybf{bottom:911.813333pt;}
.y3c{bottom:912.933333pt;}
.y6d{bottom:921.093333pt;}
.y8{bottom:928.133333pt;}
.y3b{bottom:929.893333pt;}
.y6c{bottom:939.493333pt;}
.y3a{bottom:946.693333pt;}
.y6b{bottom:957.893333pt;}
.y39{bottom:963.493333pt;}
.y7{bottom:966.533333pt;}
.y6a{bottom:976.293333pt;}
.y38{bottom:980.453333pt;}
.y69{bottom:994.693333pt;}
.y37{bottom:997.253333pt;}
.y6{bottom:1012.960000pt;}
.y68{bottom:1013.120000pt;}
.y36{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h15{height:18.386667pt;}
.h17{height:36.786667pt;}
.h3{height:40.163750pt;}
.he{height:50.025000pt;}
.h14{height:52.785000pt;}
.h11{height:55.186667pt;}
.hf{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h13{height:60.519362pt;}
.h16{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:64.500000pt;}
.h9{height:64.752187pt;}
.h10{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:70.066667pt;}
.ha{height:75.465000pt;}
.h7{height:118.035000pt;}
.h12{height:280.143750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:47.710667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w6{width:300.225333pt;}
.w7{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.038667pt;}
.x3{left:68.481333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.x1c{left:97.466667pt;}
.xd{left:104.832000pt;}
.x19{left:113.312000pt;}
.xa{left:121.152000pt;}
.x1a{left:123.232000pt;}
.x11{left:127.712000pt;}
.x6{left:153.466667pt;}
.x1d{left:204.386667pt;}
.x2{left:216.506667pt;}
.xe{left:225.466667pt;}
.x10{left:324.706667pt;}
.xb{left:335.426667pt;}
.x15{left:338.306667pt;}
.x12{left:361.346667pt;}
.x1b{left:368.706667pt;}
.x17{left:380.706667pt;}
.xc{left:396.893333pt;}
.x13{left:412.413333pt;}
.xf{left:415.773333pt;}
.x16{left:444.253333pt;}
.x5{left:491.466667pt;}
.x14{left:529.853333pt;}
.x18{left:604.613333pt;}
.x7{left:652.133333pt;}
.x9{left:718.240000pt;}
}




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