
    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_e2893c5db0b6bcf7ef6dbe14.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_213a0cd50acd847eac309e02.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_a2c53dbfc29c4d6bd98f044b.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_eab56d73c3b9be443f0076bb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d5ae8218ba13b9d443df5e0f.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_3e8c7feb1b1281e545104b1d.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_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_6bf60422b4b89a59f7ade4e8.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);}
.v3{vertical-align:-84.240000px;}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls25{letter-spacing:-0.864000px;}
.lsa{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.ls27{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.414600px;}
.ls1f{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.158400px;}
.ls22{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.017280px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.025920px;}
.ls15{letter-spacing:0.082080px;}
.lsb{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.152640px;}
.ls26{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.262080px;}
.ls16{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.311040px;}
.ls7{letter-spacing:0.332640px;}
.ls1a{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.442080px;}
.ls24{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.720000px;}
.ls30{letter-spacing:0.828000px;}
.ls23{letter-spacing:1.440000px;}
.lsf{letter-spacing:2.160000px;}
.ls12{letter-spacing:3.600000px;}
.ls13{letter-spacing:4.320000px;}
.ls10{letter-spacing:5.760000px;}
.lse{letter-spacing:7.200000px;}
.ls3{letter-spacing:7.920000px;}
.ls11{letter-spacing:8.640000px;}
.ls14{letter-spacing:9.360000px;}
.ls21{letter-spacing:10.080000px;}
.ls2a{letter-spacing:12.960000px;}
.ls2{letter-spacing:13.680000px;}
.ls29{letter-spacing:20.160000px;}
.ls20{letter-spacing:56.280000px;}
.ls2c{letter-spacing:67.961280px;}
.ls2b{letter-spacing:261.480000px;}
.ls2e{letter-spacing:2424.840000px;}
.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:-19.440000px;}
.ws1{word-spacing:-19.422720px;}
.ws6{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.136000px;}
.ws2{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.401600px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-3.086400px;}
._11{margin-left:-2.025600px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._c{width:2.295360px;}
._6{width:3.487680px;}
._1e{width:4.493760px;}
._7{width:5.497920px;}
._8{width:6.903360px;}
._a{width:8.331840px;}
._f{width:10.037760px;}
._14{width:11.490240px;}
._17{width:12.509280px;}
._9{width:13.512960px;}
._13{width:14.544000px;}
._12{width:16.200000px;}
._18{width:19.193280px;}
._e{width:20.666880px;}
._10{width:21.672000px;}
._19{width:23.450880px;}
._1a{width:25.416000px;}
._15{width:26.845440px;}
._16{width:27.854400px;}
._b{width:31.993920px;}
._1c{width:37.226880px;}
._1d{width:38.576640px;}
._1{width:480.335520px;}
._2{width:736.680000px;}
._4{width:756.300000px;}
._d{width:812.448480px;}
._3{width:831.888480px;}
._1f{width:846.300000px;}
.fc2{color:rgb(0,112,192);}
.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:261.360000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.yd9{bottom:4.485000px;}
.ydb{bottom:14.925000px;}
.y68{bottom:16.380000px;}
.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;}
.yb4{bottom:146.016000px;}
.y88{bottom:147.456000px;}
.ybc{bottom:148.536000px;}
.y66{bottom:156.450000px;}
.yb3{bottom:166.710000px;}
.y87{bottom:168.150000px;}
.ybb{bottom:169.230000px;}
.y37{bottom:172.110000px;}
.y65{bottom:177.150000px;}
.yb2{bottom:187.410000px;}
.y86{bottom:188.850000px;}
.yba{bottom:189.930000px;}
.ydd{bottom:190.830000px;}
.y36{bottom:191.010000px;}
.yb1{bottom:208.110000px;}
.y85{bottom:209.550000px;}
.y35{bottom:209.910000px;}
.yb9{bottom:210.270000px;}
.ydc{bottom:211.530000px;}
.y64{bottom:218.550000px;}
.yda{bottom:227.745000px;}
.yb0{bottom:228.810000px;}
.y34{bottom:228.990000px;}
.y84{bottom:230.250000px;}
.yb8{bottom:231.330000px;}
.y63{bottom:239.250000px;}
.y33{bottom:247.890000px;}
.yd8{bottom:248.445000px;}
.yaf{bottom:249.510000px;}
.y83{bottom:250.950000px;}
.yb7{bottom:252.030000px;}
.y62{bottom:259.950000px;}
.y32{bottom:266.970000px;}
.yae{bottom:270.210000px;}
.y82{bottom:271.650000px;}
.yb6{bottom:272.730000px;}
.y61{bottom:280.650000px;}
.y31{bottom:285.870000px;}
.yb5{bottom:289.110000px;}
.yad{bottom:290.910000px;}
.y81{bottom:292.350000px;}
.yd7{bottom:293.970000px;}
.y60{bottom:301.350000px;}
.y30{bottom:304.770000px;}
.yac{bottom:311.610000px;}
.yd6{bottom:312.870000px;}
.y80{bottom:313.050000px;}
.y5f{bottom:321.870000px;}
.y2f{bottom:323.850000px;}
.yd5{bottom:331.770000px;}
.yab{bottom:332.310000px;}
.y7f{bottom:333.750000px;}
.y5e{bottom:342.570000px;}
.y2e{bottom:342.750000px;}
.yd4{bottom:350.850000px;}
.yaa{bottom:353.010000px;}
.y7e{bottom:354.450000px;}
.y2d{bottom:361.830000px;}
.y5d{bottom:363.270000px;}
.yd3{bottom:369.750000px;}
.ya9{bottom:373.710000px;}
.y7d{bottom:375.150000px;}
.y2c{bottom:380.775000px;}
.y5c{bottom:384.015000px;}
.yd2{bottom:388.875000px;}
.ya8{bottom:394.455000px;}
.y7c{bottom:395.895000px;}
.y2b{bottom:399.675000px;}
.y5b{bottom:404.715000px;}
.yd1{bottom:407.775000px;}
.ya7{bottom:415.155000px;}
.y7b{bottom:416.595000px;}
.y2a{bottom:418.755000px;}
.y5a{bottom:425.415000px;}
.yd0{bottom:426.675000px;}
.ya6{bottom:435.855000px;}
.y7a{bottom:437.295000px;}
.y29{bottom:437.655000px;}
.ycf{bottom:445.755000px;}
.y59{bottom:446.115000px;}
.ya5{bottom:456.555000px;}
.y28{bottom:456.735000px;}
.y79{bottom:457.995000px;}
.yce{bottom:464.655000px;}
.y58{bottom:466.815000px;}
.y27{bottom:475.635000px;}
.ya4{bottom:477.255000px;}
.y78{bottom:478.695000px;}
.ycd{bottom:483.735000px;}
.y57{bottom:487.515000px;}
.y26{bottom:494.535000px;}
.ya3{bottom:497.955000px;}
.y77{bottom:499.395000px;}
.ycc{bottom:502.635000px;}
.y56{bottom:508.215000px;}
.y25{bottom:513.615000px;}
.ya2{bottom:518.655000px;}
.y76{bottom:520.095000px;}
.ycb{bottom:521.535000px;}
.y55{bottom:528.915000px;}
.y24{bottom:532.515000px;}
.ya1{bottom:539.355000px;}
.yca{bottom:540.615000px;}
.y75{bottom:540.795000px;}
.y54{bottom:549.615000px;}
.y23{bottom:551.595000px;}
.yc9{bottom:559.515000px;}
.ya0{bottom:560.055000px;}
.y74{bottom:561.495000px;}
.y53{bottom:570.315000px;}
.y22{bottom:570.495000px;}
.yc8{bottom:578.595000px;}
.y9f{bottom:580.755000px;}
.y73{bottom:582.195000px;}
.y21{bottom:589.575000px;}
.y52{bottom:591.015000px;}
.yc7{bottom:597.495000px;}
.y9e{bottom:601.455000px;}
.y72{bottom:602.895000px;}
.y20{bottom:608.475000px;}
.y51{bottom:611.715000px;}
.yc6{bottom:616.575000px;}
.y9d{bottom:622.155000px;}
.y71{bottom:623.595000px;}
.y1f{bottom:627.375000px;}
.y50{bottom:632.445000px;}
.yc5{bottom:635.505000px;}
.y9c{bottom:642.885000px;}
.y70{bottom:644.325000px;}
.y1e{bottom:646.845000px;}
.y4f{bottom:653.145000px;}
.yc4{bottom:654.405000px;}
.y9b{bottom:663.585000px;}
.y6f{bottom:665.025000px;}
.y1d{bottom:667.905000px;}
.yc3{bottom:673.485000px;}
.y4e{bottom:673.845000px;}
.y6e{bottom:681.405000px;}
.y9a{bottom:684.285000px;}
.y1c{bottom:690.225000px;}
.yc2{bottom:692.385000px;}
.y4d{bottom:694.545000px;}
.y99{bottom:704.985000px;}
.yc1{bottom:711.465000px;}
.y1b{bottom:712.725000px;}
.y4c{bottom:715.245000px;}
.y98{bottom:725.685000px;}
.yc0{bottom:730.365000px;}
.y1a{bottom:734.685000px;}
.y4b{bottom:735.945000px;}
.y97{bottom:746.385000px;}
.ybf{bottom:749.265000px;}
.y4a{bottom:756.645000px;}
.y19{bottom:757.545000px;}
.y96{bottom:767.085000px;}
.ybe{bottom:768.345000px;}
.y49{bottom:777.345000px;}
.y18{bottom:780.045000px;}
.ybd{bottom:787.425000px;}
.y95{bottom:787.785000px;}
.y48{bottom:798.045000px;}
.y17{bottom:802.365000px;}
.y94{bottom:808.485000px;}
.y47{bottom:818.745000px;}
.y16{bottom:824.325000px;}
.y93{bottom:829.185000px;}
.y46{bottom:839.445000px;}
.y15{bottom:846.645000px;}
.y92{bottom:849.885000px;}
.y45{bottom:860.145000px;}
.y14{bottom:867.885000px;}
.y91{bottom:870.585000px;}
.y44{bottom:880.845000px;}
.y90{bottom:891.330000px;}
.y13{bottom:892.050000px;}
.y43{bottom:901.590000px;}
.y8f{bottom:912.030000px;}
.y12{bottom:916.170000px;}
.y42{bottom:922.290000px;}
.y8e{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.y41{bottom:942.990000px;}
.y8d{bottom:953.430000px;}
.y40{bottom:963.690000px;}
.y10{bottom:964.590000px;}
.y8c{bottom:974.130000px;}
.y67{bottom:979.890000px;}
.y3f{bottom:984.390000px;}
.yf{bottom:988.710000px;}
.y8b{bottom:994.830000px;}
.y3e{bottom:1005.090000px;}
.ye{bottom:1012.830000px;}
.y8a{bottom:1015.530000px;}
.y89{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.y3d{bottom:1046.130000px;}
.y6d{bottom:1056.930000px;}
.yc{bottom:1060.890000px;}
.y3c{bottom:1065.030000px;}
.y6{bottom:1077.090000px;}
.y6c{bottom:1077.630000px;}
.y3b{bottom:1083.930000px;}
.y6b{bottom:1098.330000px;}
.y3a{bottom:1103.010000px;}
.y6a{bottom:1119.030000px;}
.y39{bottom:1121.910000px;}
.y69{bottom:1139.760000px;}
.y38{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h16{height:20.685000px;}
.h17{height:41.385000px;}
.h3{height:45.184219px;}
.hc{height:56.278125px;}
.h15{height:59.383125px;}
.h13{height:61.171875px;}
.hf{height:62.085000px;}
.he{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h14{height:68.084282px;}
.h11{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h12{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.h10{height:256.510547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:47.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;}
.xf{left:116.856000px;}
.x1d{left:119.376000px;}
.x9{left:120.636000px;}
.x18{left:127.476000px;}
.xe{left:130.896000px;}
.x19{left:132.156000px;}
.x13{left:143.136000px;}
.xb{left:168.330000px;}
.x16{left:170.490000px;}
.x5{left:172.650000px;}
.x1b{left:175.350000px;}
.xa{left:177.150000px;}
.x21{left:201.630000px;}
.xc{left:230.970000px;}
.x1e{left:277.275000px;}
.x1f{left:346.935000px;}
.x11{left:351.255000px;}
.x14{left:355.575000px;}
.x20{left:414.795000px;}
.xd{left:446.505000px;}
.x17{left:448.845000px;}
.x10{left:467.745000px;}
.x4{left:552.900000px;}
.x12{left:677.490000px;}
.x6{left:733.650000px;}
.x15{left:744.630000px;}
.x1a{left:800.790000px;}
.x8{left:808.020000px;}
.x1c{left:816.660000px;}
@media print{
.v3{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls25{letter-spacing:-0.768000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls27{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.368533pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.140800pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.023040pt;}
.ls15{letter-spacing:0.072960pt;}
.lsb{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.135680pt;}
.ls26{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.232960pt;}
.ls16{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.276480pt;}
.ls7{letter-spacing:0.295680pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.392960pt;}
.ls24{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.736000pt;}
.ls23{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls12{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.840000pt;}
.ls10{letter-spacing:5.120000pt;}
.lse{letter-spacing:6.400000pt;}
.ls3{letter-spacing:7.040000pt;}
.ls11{letter-spacing:7.680000pt;}
.ls14{letter-spacing:8.320000pt;}
.ls21{letter-spacing:8.960000pt;}
.ls2a{letter-spacing:11.520000pt;}
.ls2{letter-spacing:12.160000pt;}
.ls29{letter-spacing:17.920000pt;}
.ls20{letter-spacing:50.026667pt;}
.ls2c{letter-spacing:60.410027pt;}
.ls2b{letter-spacing:232.426667pt;}
.ls2e{letter-spacing:2155.413333pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.264640pt;}
.ws6{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.232000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.579200pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-2.743467pt;}
._11{margin-left:-1.800533pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._c{width:2.040320pt;}
._6{width:3.100160pt;}
._1e{width:3.994453pt;}
._7{width:4.887040pt;}
._8{width:6.136320pt;}
._a{width:7.406080pt;}
._f{width:8.922453pt;}
._14{width:10.213547pt;}
._17{width:11.119360pt;}
._9{width:12.011520pt;}
._13{width:12.928000pt;}
._12{width:14.400000pt;}
._18{width:17.060693pt;}
._e{width:18.370560pt;}
._10{width:19.264000pt;}
._19{width:20.845227pt;}
._1a{width:22.592000pt;}
._15{width:23.862613pt;}
._16{width:24.759467pt;}
._b{width:28.439040pt;}
._1c{width:33.090560pt;}
._1d{width:34.290347pt;}
._1{width:426.964907pt;}
._2{width:654.826667pt;}
._4{width:672.266667pt;}
._d{width:722.176427pt;}
._3{width:739.456427pt;}
._1f{width:752.266667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:232.320000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.yd9{bottom:3.986667pt;}
.ydb{bottom:13.266667pt;}
.y68{bottom:14.560000pt;}
.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;}
.yb4{bottom:129.792000pt;}
.y88{bottom:131.072000pt;}
.ybc{bottom:132.032000pt;}
.y66{bottom:139.066667pt;}
.yb3{bottom:148.186667pt;}
.y87{bottom:149.466667pt;}
.ybb{bottom:150.426667pt;}
.y37{bottom:152.986667pt;}
.y65{bottom:157.466667pt;}
.yb2{bottom:166.586667pt;}
.y86{bottom:167.866667pt;}
.yba{bottom:168.826667pt;}
.ydd{bottom:169.626667pt;}
.y36{bottom:169.786667pt;}
.yb1{bottom:184.986667pt;}
.y85{bottom:186.266667pt;}
.y35{bottom:186.586667pt;}
.yb9{bottom:186.906667pt;}
.ydc{bottom:188.026667pt;}
.y64{bottom:194.266667pt;}
.yda{bottom:202.440000pt;}
.yb0{bottom:203.386667pt;}
.y34{bottom:203.546667pt;}
.y84{bottom:204.666667pt;}
.yb8{bottom:205.626667pt;}
.y63{bottom:212.666667pt;}
.y33{bottom:220.346667pt;}
.yd8{bottom:220.840000pt;}
.yaf{bottom:221.786667pt;}
.y83{bottom:223.066667pt;}
.yb7{bottom:224.026667pt;}
.y62{bottom:231.066667pt;}
.y32{bottom:237.306667pt;}
.yae{bottom:240.186667pt;}
.y82{bottom:241.466667pt;}
.yb6{bottom:242.426667pt;}
.y61{bottom:249.466667pt;}
.y31{bottom:254.106667pt;}
.yb5{bottom:256.986667pt;}
.yad{bottom:258.586667pt;}
.y81{bottom:259.866667pt;}
.yd7{bottom:261.306667pt;}
.y60{bottom:267.866667pt;}
.y30{bottom:270.906667pt;}
.yac{bottom:276.986667pt;}
.yd6{bottom:278.106667pt;}
.y80{bottom:278.266667pt;}
.y5f{bottom:286.106667pt;}
.y2f{bottom:287.866667pt;}
.yd5{bottom:294.906667pt;}
.yab{bottom:295.386667pt;}
.y7f{bottom:296.666667pt;}
.y5e{bottom:304.506667pt;}
.y2e{bottom:304.666667pt;}
.yd4{bottom:311.866667pt;}
.yaa{bottom:313.786667pt;}
.y7e{bottom:315.066667pt;}
.y2d{bottom:321.626667pt;}
.y5d{bottom:322.906667pt;}
.yd3{bottom:328.666667pt;}
.ya9{bottom:332.186667pt;}
.y7d{bottom:333.466667pt;}
.y2c{bottom:338.466667pt;}
.y5c{bottom:341.346667pt;}
.yd2{bottom:345.666667pt;}
.ya8{bottom:350.626667pt;}
.y7c{bottom:351.906667pt;}
.y2b{bottom:355.266667pt;}
.y5b{bottom:359.746667pt;}
.yd1{bottom:362.466667pt;}
.ya7{bottom:369.026667pt;}
.y7b{bottom:370.306667pt;}
.y2a{bottom:372.226667pt;}
.y5a{bottom:378.146667pt;}
.yd0{bottom:379.266667pt;}
.ya6{bottom:387.426667pt;}
.y7a{bottom:388.706667pt;}
.y29{bottom:389.026667pt;}
.ycf{bottom:396.226667pt;}
.y59{bottom:396.546667pt;}
.ya5{bottom:405.826667pt;}
.y28{bottom:405.986667pt;}
.y79{bottom:407.106667pt;}
.yce{bottom:413.026667pt;}
.y58{bottom:414.946667pt;}
.y27{bottom:422.786667pt;}
.ya4{bottom:424.226667pt;}
.y78{bottom:425.506667pt;}
.ycd{bottom:429.986667pt;}
.y57{bottom:433.346667pt;}
.y26{bottom:439.586667pt;}
.ya3{bottom:442.626667pt;}
.y77{bottom:443.906667pt;}
.ycc{bottom:446.786667pt;}
.y56{bottom:451.746667pt;}
.y25{bottom:456.546667pt;}
.ya2{bottom:461.026667pt;}
.y76{bottom:462.306667pt;}
.ycb{bottom:463.586667pt;}
.y55{bottom:470.146667pt;}
.y24{bottom:473.346667pt;}
.ya1{bottom:479.426667pt;}
.yca{bottom:480.546667pt;}
.y75{bottom:480.706667pt;}
.y54{bottom:488.546667pt;}
.y23{bottom:490.306667pt;}
.yc9{bottom:497.346667pt;}
.ya0{bottom:497.826667pt;}
.y74{bottom:499.106667pt;}
.y53{bottom:506.946667pt;}
.y22{bottom:507.106667pt;}
.yc8{bottom:514.306667pt;}
.y9f{bottom:516.226667pt;}
.y73{bottom:517.506667pt;}
.y21{bottom:524.066667pt;}
.y52{bottom:525.346667pt;}
.yc7{bottom:531.106667pt;}
.y9e{bottom:534.626667pt;}
.y72{bottom:535.906667pt;}
.y20{bottom:540.866667pt;}
.y51{bottom:543.746667pt;}
.yc6{bottom:548.066667pt;}
.y9d{bottom:553.026667pt;}
.y71{bottom:554.306667pt;}
.y1f{bottom:557.666667pt;}
.y50{bottom:562.173333pt;}
.yc5{bottom:564.893333pt;}
.y9c{bottom:571.453333pt;}
.y70{bottom:572.733333pt;}
.y1e{bottom:574.973333pt;}
.y4f{bottom:580.573333pt;}
.yc4{bottom:581.693333pt;}
.y9b{bottom:589.853333pt;}
.y6f{bottom:591.133333pt;}
.y1d{bottom:593.693333pt;}
.yc3{bottom:598.653333pt;}
.y4e{bottom:598.973333pt;}
.y6e{bottom:605.693333pt;}
.y9a{bottom:608.253333pt;}
.y1c{bottom:613.533333pt;}
.yc2{bottom:615.453333pt;}
.y4d{bottom:617.373333pt;}
.y99{bottom:626.653333pt;}
.yc1{bottom:632.413333pt;}
.y1b{bottom:633.533333pt;}
.y4c{bottom:635.773333pt;}
.y98{bottom:645.053333pt;}
.yc0{bottom:649.213333pt;}
.y1a{bottom:653.053333pt;}
.y4b{bottom:654.173333pt;}
.y97{bottom:663.453333pt;}
.ybf{bottom:666.013333pt;}
.y4a{bottom:672.573333pt;}
.y19{bottom:673.373333pt;}
.y96{bottom:681.853333pt;}
.ybe{bottom:682.973333pt;}
.y49{bottom:690.973333pt;}
.y18{bottom:693.373333pt;}
.ybd{bottom:699.933333pt;}
.y95{bottom:700.253333pt;}
.y48{bottom:709.373333pt;}
.y17{bottom:713.213333pt;}
.y94{bottom:718.653333pt;}
.y47{bottom:727.773333pt;}
.y16{bottom:732.733333pt;}
.y93{bottom:737.053333pt;}
.y46{bottom:746.173333pt;}
.y15{bottom:752.573333pt;}
.y92{bottom:755.453333pt;}
.y45{bottom:764.573333pt;}
.y14{bottom:771.453333pt;}
.y91{bottom:773.853333pt;}
.y44{bottom:782.973333pt;}
.y90{bottom:792.293333pt;}
.y13{bottom:792.933333pt;}
.y43{bottom:801.413333pt;}
.y8f{bottom:810.693333pt;}
.y12{bottom:814.373333pt;}
.y42{bottom:819.813333pt;}
.y8e{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.y41{bottom:838.213333pt;}
.y8d{bottom:847.493333pt;}
.y40{bottom:856.613333pt;}
.y10{bottom:857.413333pt;}
.y8c{bottom:865.893333pt;}
.y67{bottom:871.013333pt;}
.y3f{bottom:875.013333pt;}
.yf{bottom:878.853333pt;}
.y8b{bottom:884.293333pt;}
.y3e{bottom:893.413333pt;}
.ye{bottom:900.293333pt;}
.y8a{bottom:902.693333pt;}
.y89{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.y3d{bottom:929.893333pt;}
.y6d{bottom:939.493333pt;}
.yc{bottom:943.013333pt;}
.y3c{bottom:946.693333pt;}
.y6{bottom:957.413333pt;}
.y6c{bottom:957.893333pt;}
.y3b{bottom:963.493333pt;}
.y6b{bottom:976.293333pt;}
.y3a{bottom:980.453333pt;}
.y6a{bottom:994.693333pt;}
.y39{bottom:997.253333pt;}
.y69{bottom:1013.120000pt;}
.y38{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h16{height:18.386667pt;}
.h17{height:36.786667pt;}
.h3{height:40.163750pt;}
.hc{height:50.025000pt;}
.h15{height:52.785000pt;}
.h13{height:54.375000pt;}
.hf{height:55.186667pt;}
.he{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h14{height:60.519362pt;}
.h11{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h12{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.h10{height:228.009375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:41.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;}
.xf{left:103.872000pt;}
.x1d{left:106.112000pt;}
.x9{left:107.232000pt;}
.x18{left:113.312000pt;}
.xe{left:116.352000pt;}
.x19{left:117.472000pt;}
.x13{left:127.232000pt;}
.xb{left:149.626667pt;}
.x16{left:151.546667pt;}
.x5{left:153.466667pt;}
.x1b{left:155.866667pt;}
.xa{left:157.466667pt;}
.x21{left:179.226667pt;}
.xc{left:205.306667pt;}
.x1e{left:246.466667pt;}
.x1f{left:308.386667pt;}
.x11{left:312.226667pt;}
.x14{left:316.066667pt;}
.x20{left:368.706667pt;}
.xd{left:396.893333pt;}
.x17{left:398.973333pt;}
.x10{left:415.773333pt;}
.x4{left:491.466667pt;}
.x12{left:602.213333pt;}
.x6{left:652.133333pt;}
.x15{left:661.893333pt;}
.x1a{left:711.813333pt;}
.x8{left:718.240000pt;}
.x1c{left:725.920000pt;}
}




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