
    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_50e2373e9921d3cb49013c6d.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_a8892acca528a8806c36ac3a.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_f80c004cf13eb4ebe8d2c77f.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_451f289c1ff720c10c6527f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_d2b621c8a25c1bdb216dc081.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2931c9f34222348d84ac0023.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_428d9f9d61f0096d08a0dc66.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-91.440000px;}
.v1{vertical-align:-84.960000px;}
.v4{vertical-align:-80.640000px;}
.v3{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.457800px;}
.ls21{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls11{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.109200px;}
.ls20{letter-spacing:0.123600px;}
.ls15{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.230400px;}
.ls24{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.440000px;}
.lsf{letter-spacing:2.280000px;}
.lsa{letter-spacing:2.880000px;}
.ls19{letter-spacing:4.320000px;}
.ls1a{letter-spacing:7.200000px;}
.ls17{letter-spacing:8.640000px;}
.ls10{letter-spacing:10.080000px;}
.ls8{letter-spacing:10.800000px;}
.lsb{letter-spacing:13.680000px;}
.ls1f{letter-spacing:34.841280px;}
.ls6{letter-spacing:38.160000px;}
.ls5{letter-spacing:44.640000px;}
.ls9{letter-spacing:56.280000px;}
.ls1e{letter-spacing:67.961280px;}
.ls12{letter-spacing:76.440000px;}
.ls1{letter-spacing:1317.876000px;}
.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;}
}
.ws4{word-spacing:-84.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.496000px;}
.wsb{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.790400px;}
.ws8{word-spacing:-16.683600px;}
.ws9{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.102200px;}
.wse{word-spacing:-15.948000px;}
.wsd{word-spacing:-15.840000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-8.386560px;}
._11{margin-left:-2.306880px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._7{width:2.819040px;}
._b{width:4.518720px;}
._a{width:5.564160px;}
._8{width:6.955200px;}
._9{width:8.493120px;}
._10{width:9.555840px;}
._e{width:10.846080px;}
._c{width:11.856960px;}
._f{width:13.788960px;}
._16{width:14.976000px;}
._13{width:15.984000px;}
._d{width:17.613120px;}
._12{width:19.008000px;}
._1c{width:22.867200px;}
._1b{width:24.497280px;}
._14{width:26.136000px;}
._15{width:27.432000px;}
._19{width:30.072960px;}
._18{width:31.464000px;}
._17{width:84.985920px;}
._1{width:519.215520px;}
._6{width:722.958000px;}
._4{width:736.860000px;}
._2{width:808.140000px;}
._3{width:812.448480px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y65{bottom:4.320000px;}
.yf2{bottom:4.485000px;}
.yf4{bottom:14.925000px;}
.y9{bottom:21.240000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.yc3{bottom:140.796000px;}
.y96{bottom:144.756000px;}
.y63{bottom:158.070000px;}
.yc2{bottom:161.130000px;}
.y95{bottom:165.450000px;}
.yf5{bottom:167.970000px;}
.y34{bottom:168.510000px;}
.y62{bottom:178.770000px;}
.yc1{bottom:181.290000px;}
.yf3{bottom:182.925000px;}
.y94{bottom:186.150000px;}
.y33{bottom:187.590000px;}
.y61{bottom:199.470000px;}
.yc0{bottom:201.630000px;}
.yf1{bottom:203.625000px;}
.y32{bottom:206.490000px;}
.y93{bottom:206.850000px;}
.y60{bottom:220.170000px;}
.ybf{bottom:221.790000px;}
.y31{bottom:225.570000px;}
.y92{bottom:227.370000px;}
.yf0{bottom:228.270000px;}
.y5f{bottom:240.870000px;}
.ybe{bottom:242.130000px;}
.y30{bottom:244.470000px;}
.yef{bottom:247.350000px;}
.y91{bottom:249.510000px;}
.y5e{bottom:261.570000px;}
.ybd{bottom:262.470000px;}
.y2f{bottom:263.370000px;}
.yee{bottom:266.250000px;}
.y90{bottom:270.210000px;}
.y5d{bottom:282.270000px;}
.y2e{bottom:282.450000px;}
.ybc{bottom:282.630000px;}
.yed{bottom:285.330000px;}
.y8f{bottom:290.910000px;}
.y2d{bottom:301.350000px;}
.y5c{bottom:302.970000px;}
.yec{bottom:304.230000px;}
.y8e{bottom:311.610000px;}
.y2c{bottom:320.430000px;}
.ybb{bottom:323.130000px;}
.y5b{bottom:323.670000px;}
.y8d{bottom:332.310000px;}
.y2b{bottom:339.330000px;}
.yeb{bottom:342.210000px;}
.yba{bottom:343.470000px;}
.y5a{bottom:344.370000px;}
.y8c{bottom:353.010000px;}
.y2a{bottom:358.230000px;}
.yea{bottom:361.110000px;}
.yb9{bottom:363.630000px;}
.y59{bottom:365.070000px;}
.y8b{bottom:373.710000px;}
.y29{bottom:377.310000px;}
.ye9{bottom:380.235000px;}
.yb8{bottom:384.015000px;}
.y58{bottom:385.815000px;}
.y8a{bottom:394.455000px;}
.y28{bottom:396.255000px;}
.ye8{bottom:399.135000px;}
.yb7{bottom:404.355000px;}
.y57{bottom:406.515000px;}
.y89{bottom:415.155000px;}
.y27{bottom:415.335000px;}
.ye7{bottom:418.215000px;}
.yb6{bottom:424.515000px;}
.y56{bottom:427.215000px;}
.y26{bottom:434.235000px;}
.y88{bottom:435.855000px;}
.ye6{bottom:437.115000px;}
.yb5{bottom:444.855000px;}
.y55{bottom:447.915000px;}
.y25{bottom:453.135000px;}
.ye5{bottom:456.015000px;}
.y87{bottom:456.555000px;}
.yb4{bottom:465.015000px;}
.y54{bottom:468.615000px;}
.y24{bottom:472.215000px;}
.ye4{bottom:475.095000px;}
.y86{bottom:477.255000px;}
.yb3{bottom:485.355000px;}
.y53{bottom:489.315000px;}
.y23{bottom:491.115000px;}
.ye3{bottom:493.995000px;}
.y85{bottom:497.955000px;}
.yb2{bottom:505.695000px;}
.y52{bottom:510.015000px;}
.y22{bottom:510.555000px;}
.ye2{bottom:513.075000px;}
.y84{bottom:518.655000px;}
.yb1{bottom:525.855000px;}
.y51{bottom:530.715000px;}
.y21{bottom:531.615000px;}
.ye1{bottom:531.975000px;}
.y83{bottom:539.355000px;}
.yb0{bottom:546.195000px;}
.y50{bottom:551.415000px;}
.y20{bottom:553.935000px;}
.y82{bottom:560.055000px;}
.yaf{bottom:566.535000px;}
.ye0{bottom:569.955000px;}
.y4f{bottom:572.115000px;}
.y1f{bottom:575.895000px;}
.y81{bottom:580.755000px;}
.yae{bottom:587.955000px;}
.ydf{bottom:588.855000px;}
.y4e{bottom:592.815000px;}
.y1e{bottom:598.935000px;}
.y80{bottom:601.455000px;}
.yde{bottom:607.935000px;}
.yad{bottom:608.295000px;}
.y4d{bottom:613.515000px;}
.y1d{bottom:621.255000px;}
.y7f{bottom:622.155000px;}
.ydd{bottom:626.835000px;}
.yac{bottom:628.455000px;}
.y4c{bottom:634.245000px;}
.y7e{bottom:642.885000px;}
.ydc{bottom:645.765000px;}
.yab{bottom:648.825000px;}
.y4b{bottom:654.945000px;}
.y7d{bottom:663.585000px;}
.ydb{bottom:664.845000px;}
.y1c{bottom:666.105000px;}
.yaa{bottom:669.165000px;}
.y4a{bottom:675.645000px;}
.yda{bottom:683.745000px;}
.y7c{bottom:684.285000px;}
.y1b{bottom:688.605000px;}
.ya9{bottom:690.585000px;}
.y49{bottom:696.345000px;}
.yd9{bottom:702.825000px;}
.y7b{bottom:704.985000px;}
.y1a{bottom:710.925000px;}
.y48{bottom:717.045000px;}
.yd8{bottom:721.725000px;}
.y7a{bottom:725.685000px;}
.ya8{bottom:731.265000px;}
.y19{bottom:732.885000px;}
.y47{bottom:737.745000px;}
.yd7{bottom:740.625000px;}
.y79{bottom:746.385000px;}
.ya7{bottom:751.425000px;}
.y18{bottom:755.925000px;}
.y46{bottom:758.445000px;}
.yd6{bottom:759.705000px;}
.y78{bottom:767.085000px;}
.ya6{bottom:771.765000px;}
.y17{bottom:778.245000px;}
.yd5{bottom:778.605000px;}
.y45{bottom:779.145000px;}
.y77{bottom:787.785000px;}
.ya5{bottom:791.925000px;}
.y44{bottom:799.845000px;}
.y16{bottom:800.205000px;}
.y76{bottom:808.485000px;}
.ya4{bottom:812.265000px;}
.yd4{bottom:816.585000px;}
.y43{bottom:820.545000px;}
.y75{bottom:829.185000px;}
.ya3{bottom:832.605000px;}
.yd3{bottom:835.665000px;}
.y42{bottom:841.245000px;}
.y15{bottom:843.765000px;}
.y74{bottom:849.885000px;}
.ya2{bottom:854.025000px;}
.yd2{bottom:854.565000px;}
.y41{bottom:861.945000px;}
.y14{bottom:867.885000px;}
.y73{bottom:870.585000px;}
.yd1{bottom:873.465000px;}
.ya1{bottom:874.365000px;}
.y40{bottom:882.645000px;}
.y72{bottom:891.330000px;}
.y13{bottom:892.050000px;}
.yd0{bottom:892.590000px;}
.ya0{bottom:894.750000px;}
.y3f{bottom:903.390000px;}
.ycf{bottom:911.490000px;}
.y71{bottom:912.030000px;}
.y12{bottom:916.170000px;}
.y3e{bottom:924.090000px;}
.yce{bottom:930.570000px;}
.y70{bottom:932.730000px;}
.y9f{bottom:936.510000px;}
.y11{bottom:940.470000px;}
.y3d{bottom:944.790000px;}
.ycd{bottom:949.470000px;}
.y6f{bottom:953.430000px;}
.y9e{bottom:956.670000px;}
.y64{bottom:960.990000px;}
.y10{bottom:964.590000px;}
.y3c{bottom:965.490000px;}
.ycc{bottom:968.370000px;}
.y6e{bottom:974.130000px;}
.y9d{bottom:977.010000px;}
.y3b{bottom:986.190000px;}
.ycb{bottom:987.450000px;}
.yf{bottom:988.710000px;}
.y6d{bottom:994.830000px;}
.y9c{bottom:997.350000px;}
.yca{bottom:1006.350000px;}
.ye{bottom:1012.830000px;}
.y6c{bottom:1015.530000px;}
.y9b{bottom:1017.510000px;}
.yc9{bottom:1025.430000px;}
.y3a{bottom:1027.050000px;}
.y6b{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.y9a{bottom:1037.850000px;}
.yc8{bottom:1044.330000px;}
.y39{bottom:1046.130000px;}
.y6a{bottom:1056.930000px;}
.y99{bottom:1058.010000px;}
.yc{bottom:1060.890000px;}
.yc7{bottom:1063.230000px;}
.y38{bottom:1065.030000px;}
.y6{bottom:1077.090000px;}
.y69{bottom:1077.630000px;}
.y98{bottom:1078.350000px;}
.yc6{bottom:1082.310000px;}
.y68{bottom:1098.330000px;}
.y97{bottom:1098.690000px;}
.yc5{bottom:1101.210000px;}
.y37{bottom:1103.010000px;}
.y67{bottom:1119.030000px;}
.yc4{bottom:1120.290000px;}
.y36{bottom:1121.910000px;}
.y66{bottom:1139.760000px;}
.y35{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h14{height:20.685000px;}
.h16{height:41.385000px;}
.h3{height:45.184219px;}
.hc{height:56.278125px;}
.h13{height:58.380469px;}
.h10{height:62.085000px;}
.he{height:63.457031px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h12{height:68.084282px;}
.h15{height:70.628906px;}
.h7{height:70.664062px;}
.hb{height:72.562500px;}
.h8{height:72.846211px;}
.hf{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.h11{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.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;}
.x3{left:7.918500px;}
.x2{left:77.041500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x1d{left:101.190000px;}
.xe{left:104.976000px;}
.xb{left:126.216000px;}
.x16{left:127.476000px;}
.xf{left:129.636000px;}
.x19{left:141.156000px;}
.x9{left:149.976000px;}
.xa{left:155.910000px;}
.x5{left:172.650000px;}
.xc{left:181.290000px;}
.x10{left:270.795000px;}
.x15{left:324.615000px;}
.x13{left:329.655000px;}
.x1a{left:346.935000px;}
.x1c{left:414.795000px;}
.xd{left:446.505000px;}
.x11{left:449.925000px;}
.x18{left:453.165000px;}
.x14{left:464.865000px;}
.x1b{left:467.745000px;}
.x4{left:552.900000px;}
.x12{left:596.085000px;}
.x17{left:685.590000px;}
.x6{left:733.650000px;}
.x8{left:808.020000px;}
@media print{
.v2{vertical-align:-81.280000pt;}
.v1{vertical-align:-75.520000pt;}
.v4{vertical-align:-71.680000pt;}
.v3{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.406933pt;}
.ls21{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls11{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.097067pt;}
.ls20{letter-spacing:0.109867pt;}
.ls15{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.204800pt;}
.ls24{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.280000pt;}
.lsf{letter-spacing:2.026667pt;}
.lsa{letter-spacing:2.560000pt;}
.ls19{letter-spacing:3.840000pt;}
.ls1a{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.680000pt;}
.ls10{letter-spacing:8.960000pt;}
.ls8{letter-spacing:9.600000pt;}
.lsb{letter-spacing:12.160000pt;}
.ls1f{letter-spacing:30.970027pt;}
.ls6{letter-spacing:33.920000pt;}
.ls5{letter-spacing:39.680000pt;}
.ls9{letter-spacing:50.026667pt;}
.ls1e{letter-spacing:60.410027pt;}
.ls12{letter-spacing:67.946667pt;}
.ls1{letter-spacing:1171.445333pt;}
.ws4{word-spacing:-74.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.552000pt;}
.wsb{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.924800pt;}
.ws8{word-spacing:-14.829867pt;}
.ws9{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.313067pt;}
.wse{word-spacing:-14.176000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-7.454720pt;}
._11{margin-left:-2.050560pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._7{width:2.505813pt;}
._b{width:4.016640pt;}
._a{width:4.945920pt;}
._8{width:6.182400pt;}
._9{width:7.549440pt;}
._10{width:8.494080pt;}
._e{width:9.640960pt;}
._c{width:10.539520pt;}
._f{width:12.256853pt;}
._16{width:13.312000pt;}
._13{width:14.208000pt;}
._d{width:15.656107pt;}
._12{width:16.896000pt;}
._1c{width:20.326400pt;}
._1b{width:21.775360pt;}
._14{width:23.232000pt;}
._15{width:24.384000pt;}
._19{width:26.731520pt;}
._18{width:27.968000pt;}
._17{width:75.543040pt;}
._1{width:461.524907pt;}
._6{width:642.629333pt;}
._4{width:654.986667pt;}
._2{width:718.346667pt;}
._3{width:722.176427pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y65{bottom:3.840000pt;}
.yf2{bottom:3.986667pt;}
.yf4{bottom:13.266667pt;}
.y9{bottom:18.880000pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.yc3{bottom:125.152000pt;}
.y96{bottom:128.672000pt;}
.y63{bottom:140.506667pt;}
.yc2{bottom:143.226667pt;}
.y95{bottom:147.066667pt;}
.yf5{bottom:149.306667pt;}
.y34{bottom:149.786667pt;}
.y62{bottom:158.906667pt;}
.yc1{bottom:161.146667pt;}
.yf3{bottom:162.600000pt;}
.y94{bottom:165.466667pt;}
.y33{bottom:166.746667pt;}
.y61{bottom:177.306667pt;}
.yc0{bottom:179.226667pt;}
.yf1{bottom:181.000000pt;}
.y32{bottom:183.546667pt;}
.y93{bottom:183.866667pt;}
.y60{bottom:195.706667pt;}
.ybf{bottom:197.146667pt;}
.y31{bottom:200.506667pt;}
.y92{bottom:202.106667pt;}
.yf0{bottom:202.906667pt;}
.y5f{bottom:214.106667pt;}
.ybe{bottom:215.226667pt;}
.y30{bottom:217.306667pt;}
.yef{bottom:219.866667pt;}
.y91{bottom:221.786667pt;}
.y5e{bottom:232.506667pt;}
.ybd{bottom:233.306667pt;}
.y2f{bottom:234.106667pt;}
.yee{bottom:236.666667pt;}
.y90{bottom:240.186667pt;}
.y5d{bottom:250.906667pt;}
.y2e{bottom:251.066667pt;}
.ybc{bottom:251.226667pt;}
.yed{bottom:253.626667pt;}
.y8f{bottom:258.586667pt;}
.y2d{bottom:267.866667pt;}
.y5c{bottom:269.306667pt;}
.yec{bottom:270.426667pt;}
.y8e{bottom:276.986667pt;}
.y2c{bottom:284.826667pt;}
.ybb{bottom:287.226667pt;}
.y5b{bottom:287.706667pt;}
.y8d{bottom:295.386667pt;}
.y2b{bottom:301.626667pt;}
.yeb{bottom:304.186667pt;}
.yba{bottom:305.306667pt;}
.y5a{bottom:306.106667pt;}
.y8c{bottom:313.786667pt;}
.y2a{bottom:318.426667pt;}
.yea{bottom:320.986667pt;}
.yb9{bottom:323.226667pt;}
.y59{bottom:324.506667pt;}
.y8b{bottom:332.186667pt;}
.y29{bottom:335.386667pt;}
.ye9{bottom:337.986667pt;}
.yb8{bottom:341.346667pt;}
.y58{bottom:342.946667pt;}
.y8a{bottom:350.626667pt;}
.y28{bottom:352.226667pt;}
.ye8{bottom:354.786667pt;}
.yb7{bottom:359.426667pt;}
.y57{bottom:361.346667pt;}
.y89{bottom:369.026667pt;}
.y27{bottom:369.186667pt;}
.ye7{bottom:371.746667pt;}
.yb6{bottom:377.346667pt;}
.y56{bottom:379.746667pt;}
.y26{bottom:385.986667pt;}
.y88{bottom:387.426667pt;}
.ye6{bottom:388.546667pt;}
.yb5{bottom:395.426667pt;}
.y55{bottom:398.146667pt;}
.y25{bottom:402.786667pt;}
.ye5{bottom:405.346667pt;}
.y87{bottom:405.826667pt;}
.yb4{bottom:413.346667pt;}
.y54{bottom:416.546667pt;}
.y24{bottom:419.746667pt;}
.ye4{bottom:422.306667pt;}
.y86{bottom:424.226667pt;}
.yb3{bottom:431.426667pt;}
.y53{bottom:434.946667pt;}
.y23{bottom:436.546667pt;}
.ye3{bottom:439.106667pt;}
.y85{bottom:442.626667pt;}
.yb2{bottom:449.506667pt;}
.y52{bottom:453.346667pt;}
.y22{bottom:453.826667pt;}
.ye2{bottom:456.066667pt;}
.y84{bottom:461.026667pt;}
.yb1{bottom:467.426667pt;}
.y51{bottom:471.746667pt;}
.y21{bottom:472.546667pt;}
.ye1{bottom:472.866667pt;}
.y83{bottom:479.426667pt;}
.yb0{bottom:485.506667pt;}
.y50{bottom:490.146667pt;}
.y20{bottom:492.386667pt;}
.y82{bottom:497.826667pt;}
.yaf{bottom:503.586667pt;}
.ye0{bottom:506.626667pt;}
.y4f{bottom:508.546667pt;}
.y1f{bottom:511.906667pt;}
.y81{bottom:516.226667pt;}
.yae{bottom:522.626667pt;}
.ydf{bottom:523.426667pt;}
.y4e{bottom:526.946667pt;}
.y1e{bottom:532.386667pt;}
.y80{bottom:534.626667pt;}
.yde{bottom:540.386667pt;}
.yad{bottom:540.706667pt;}
.y4d{bottom:545.346667pt;}
.y1d{bottom:552.226667pt;}
.y7f{bottom:553.026667pt;}
.ydd{bottom:557.186667pt;}
.yac{bottom:558.626667pt;}
.y4c{bottom:563.773333pt;}
.y7e{bottom:571.453333pt;}
.ydc{bottom:574.013333pt;}
.yab{bottom:576.733333pt;}
.y4b{bottom:582.173333pt;}
.y7d{bottom:589.853333pt;}
.ydb{bottom:590.973333pt;}
.y1c{bottom:592.093333pt;}
.yaa{bottom:594.813333pt;}
.y4a{bottom:600.573333pt;}
.yda{bottom:607.773333pt;}
.y7c{bottom:608.253333pt;}
.y1b{bottom:612.093333pt;}
.ya9{bottom:613.853333pt;}
.y49{bottom:618.973333pt;}
.yd9{bottom:624.733333pt;}
.y7b{bottom:626.653333pt;}
.y1a{bottom:631.933333pt;}
.y48{bottom:637.373333pt;}
.yd8{bottom:641.533333pt;}
.y7a{bottom:645.053333pt;}
.ya8{bottom:650.013333pt;}
.y19{bottom:651.453333pt;}
.y47{bottom:655.773333pt;}
.yd7{bottom:658.333333pt;}
.y79{bottom:663.453333pt;}
.ya7{bottom:667.933333pt;}
.y18{bottom:671.933333pt;}
.y46{bottom:674.173333pt;}
.yd6{bottom:675.293333pt;}
.y78{bottom:681.853333pt;}
.ya6{bottom:686.013333pt;}
.y17{bottom:691.773333pt;}
.yd5{bottom:692.093333pt;}
.y45{bottom:692.573333pt;}
.y77{bottom:700.253333pt;}
.ya5{bottom:703.933333pt;}
.y44{bottom:710.973333pt;}
.y16{bottom:711.293333pt;}
.y76{bottom:718.653333pt;}
.ya4{bottom:722.013333pt;}
.yd4{bottom:725.853333pt;}
.y43{bottom:729.373333pt;}
.y75{bottom:737.053333pt;}
.ya3{bottom:740.093333pt;}
.yd3{bottom:742.813333pt;}
.y42{bottom:747.773333pt;}
.y15{bottom:750.013333pt;}
.y74{bottom:755.453333pt;}
.ya2{bottom:759.133333pt;}
.yd2{bottom:759.613333pt;}
.y41{bottom:766.173333pt;}
.y14{bottom:771.453333pt;}
.y73{bottom:773.853333pt;}
.yd1{bottom:776.413333pt;}
.ya1{bottom:777.213333pt;}
.y40{bottom:784.573333pt;}
.y72{bottom:792.293333pt;}
.y13{bottom:792.933333pt;}
.yd0{bottom:793.413333pt;}
.ya0{bottom:795.333333pt;}
.y3f{bottom:803.013333pt;}
.ycf{bottom:810.213333pt;}
.y71{bottom:810.693333pt;}
.y12{bottom:814.373333pt;}
.y3e{bottom:821.413333pt;}
.yce{bottom:827.173333pt;}
.y70{bottom:829.093333pt;}
.y9f{bottom:832.453333pt;}
.y11{bottom:835.973333pt;}
.y3d{bottom:839.813333pt;}
.ycd{bottom:843.973333pt;}
.y6f{bottom:847.493333pt;}
.y9e{bottom:850.373333pt;}
.y64{bottom:854.213333pt;}
.y10{bottom:857.413333pt;}
.y3c{bottom:858.213333pt;}
.ycc{bottom:860.773333pt;}
.y6e{bottom:865.893333pt;}
.y9d{bottom:868.453333pt;}
.y3b{bottom:876.613333pt;}
.ycb{bottom:877.733333pt;}
.yf{bottom:878.853333pt;}
.y6d{bottom:884.293333pt;}
.y9c{bottom:886.533333pt;}
.yca{bottom:894.533333pt;}
.ye{bottom:900.293333pt;}
.y6c{bottom:902.693333pt;}
.y9b{bottom:904.453333pt;}
.yc9{bottom:911.493333pt;}
.y3a{bottom:912.933333pt;}
.y6b{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.y9a{bottom:922.533333pt;}
.yc8{bottom:928.293333pt;}
.y39{bottom:929.893333pt;}
.y6a{bottom:939.493333pt;}
.y99{bottom:940.453333pt;}
.yc{bottom:943.013333pt;}
.yc7{bottom:945.093333pt;}
.y38{bottom:946.693333pt;}
.y6{bottom:957.413333pt;}
.y69{bottom:957.893333pt;}
.y98{bottom:958.533333pt;}
.yc6{bottom:962.053333pt;}
.y68{bottom:976.293333pt;}
.y97{bottom:976.613333pt;}
.yc5{bottom:978.853333pt;}
.y37{bottom:980.453333pt;}
.y67{bottom:994.693333pt;}
.yc4{bottom:995.813333pt;}
.y36{bottom:997.253333pt;}
.y66{bottom:1013.120000pt;}
.y35{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h14{height:18.386667pt;}
.h16{height:36.786667pt;}
.h3{height:40.163750pt;}
.hc{height:50.025000pt;}
.h13{height:51.893750pt;}
.h10{height:55.186667pt;}
.he{height:56.406250pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h12{height:60.519362pt;}
.h15{height:62.781250pt;}
.h7{height:62.812500pt;}
.hb{height:64.500000pt;}
.h8{height:64.752187pt;}
.hf{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.h11{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.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;}
.x3{left:7.038667pt;}
.x2{left:68.481333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x1d{left:89.946667pt;}
.xe{left:93.312000pt;}
.xb{left:112.192000pt;}
.x16{left:113.312000pt;}
.xf{left:115.232000pt;}
.x19{left:125.472000pt;}
.x9{left:133.312000pt;}
.xa{left:138.586667pt;}
.x5{left:153.466667pt;}
.xc{left:161.146667pt;}
.x10{left:240.706667pt;}
.x15{left:288.546667pt;}
.x13{left:293.026667pt;}
.x1a{left:308.386667pt;}
.x1c{left:368.706667pt;}
.xd{left:396.893333pt;}
.x11{left:399.933333pt;}
.x18{left:402.813333pt;}
.x14{left:413.213333pt;}
.x1b{left:415.773333pt;}
.x4{left:491.466667pt;}
.x12{left:529.853333pt;}
.x17{left:609.413333pt;}
.x6{left:652.133333pt;}
.x8{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; }
  