
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_82e25cd65c89b2f971ab78b0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c19da03ab9900c8e7c6e7bad.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_a781aee38a25c3de9675ad1d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8357eb7abe4efc6ca8eba88b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_c3c4b4918a684fdbc67acbfd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0da5c801301c1c87d928d621.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e679169fa812ec975072aed.woff')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_daedcc47b23557974c489034.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4d9ca452209e76ffc3adbaaa.woff')format("woff");}.ffa{font-family:ffa;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.141600px;}
.ls6{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls16{letter-spacing:-0.067200px;}
.ls17{letter-spacing:-0.014760px;}
.ls13{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.038880px;}
.lsd{letter-spacing:0.047520px;}
.ls8{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.065520px;}
.ls7{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.116400px;}
.ls10{letter-spacing:0.118200px;}
.lsb{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:54.926640px;}
.ls15{letter-spacing:90.926640px;}
.ls9{letter-spacing:100.286640px;}
.ls14{letter-spacing:124.046640px;}
.lsa{letter-spacing:143.325360px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.344600px;}
.ws7{word-spacing:-13.275360px;}
.wsa{word-spacing:-13.265280px;}
.ws1{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.220280px;}
.wsc{word-spacing:-13.211640px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:147.584880px;}
._c{margin-left:-4.149959px;}
._4{margin-left:-2.946000px;}
._0{margin-left:-1.020000px;}
._2{width:1.006896px;}
._6{width:2.044200px;}
._5{width:3.795155px;}
._1{width:4.864788px;}
._3{width:5.872271px;}
._7{width:7.129374px;}
._9{width:8.280955px;}
._b{width:9.815165px;}
._d{width:11.601120px;}
._11{width:14.308560px;}
._8{width:15.751200px;}
._a{width:17.075403px;}
._10{width:18.111745px;}
._f{width:22.300440px;}
._e{width:23.326560px;}
._12{width:24.492600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y87{bottom:7.830000px;}
.y89{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd6{bottom:122.430000px;}
.y28{bottom:126.390000px;}
.y5a{bottom:127.110000px;}
.yac{bottom:138.450000px;}
.yd5{bottom:140.070000px;}
.y27{bottom:143.940000px;}
.yfd{bottom:145.380000px;}
.yab{bottom:156.000000px;}
.y26{bottom:161.580000px;}
.yfc{bottom:162.930000px;}
.y59{bottom:165.270000px;}
.yd4{bottom:166.890000px;}
.y25{bottom:179.130000px;}
.y58{bottom:182.910000px;}
.yfb{bottom:189.570000px;}
.yaa{bottom:191.550000px;}
.y24{bottom:196.680000px;}
.y57{bottom:200.460000px;}
.yd3{bottom:203.970000px;}
.yfa{bottom:207.120000px;}
.ya9{bottom:209.190000px;}
.y83{bottom:212.430000px;}
.y23{bottom:214.320000px;}
.y56{bottom:218.100000px;}
.yd2{bottom:221.520000px;}
.ya8{bottom:226.740000px;}
.yf9{bottom:233.670000px;}
.y55{bottom:235.650000px;}
.yd1{bottom:239.160000px;}
.ya7{bottom:244.380000px;}
.y82{bottom:247.980000px;}
.y22{bottom:249.870000px;}
.yf8{bottom:251.310000px;}
.y54{bottom:253.200000px;}
.yd0{bottom:256.710000px;}
.ya6{bottom:261.930000px;}
.y21{bottom:267.510000px;}
.y53{bottom:270.840000px;}
.ycf{bottom:274.260000px;}
.yf7{bottom:277.860000px;}
.y81{bottom:283.530000px;}
.y20{bottom:285.060000px;}
.y52{bottom:288.390000px;}
.yce{bottom:291.900000px;}
.yf6{bottom:295.500000px;}
.ya5{bottom:297.480000px;}
.y80{bottom:301.170000px;}
.y1f{bottom:302.610000px;}
.ycd{bottom:309.450000px;}
.y51{bottom:314.940000px;}
.y7f{bottom:318.720000px;}
.y1e{bottom:320.250000px;}
.yf5{bottom:322.050000px;}
.ya4{bottom:333.120000px;}
.ycc{bottom:336.090000px;}
.y7e{bottom:336.270000px;}
.y1d{bottom:337.800000px;}
.yf4{bottom:339.600000px;}
.ya3{bottom:350.670000px;}
.y50{bottom:350.850000px;}
.y7d{bottom:353.910000px;}
.y1c{bottom:355.440000px;}
.yf3{bottom:366.240000px;}
.ya2{bottom:368.310000px;}
.ycb{bottom:371.640000px;}
.y1b{bottom:372.990000px;}
.ya1{bottom:385.860000px;}
.yca{bottom:389.190000px;}
.y7c{bottom:389.460000px;}
.y1a{bottom:390.540000px;}
.yf2{bottom:392.790000px;}
.y4f{bottom:399.180000px;}
.ya0{bottom:403.500000px;}
.yc9{bottom:406.830000px;}
.y7b{bottom:407.100000px;}
.y4e{bottom:416.730000px;}
.y19{bottom:417.450000px;}
.yf1{bottom:419.340000px;}
.yc8{bottom:424.380000px;}
.y7a{bottom:424.650000px;}
.y4d{bottom:434.370000px;}
.y9f{bottom:438.960000px;}
.yc7{bottom:442.020000px;}
.y79{bottom:442.200000px;}
.yf0{bottom:445.980000px;}
.y4c{bottom:451.920000px;}
.y78{bottom:459.840000px;}
.y18{bottom:466.050000px;}
.yc6{bottom:468.930000px;}
.y4b{bottom:469.470000px;}
.yef{bottom:472.560000px;}
.y9e{bottom:474.720000px;}
.y77{bottom:477.420000px;}
.y9d{bottom:492.270000px;}
.y76{bottom:495.060000px;}
.yee{bottom:499.200000px;}
.y17{bottom:503.160000px;}
.y4a{bottom:505.140000px;}
.y9c{bottom:509.910000px;}
.y75{bottom:512.610000px;}
.yed{bottom:516.750000px;}
.yc5{bottom:517.200000px;}
.y16{bottom:520.710000px;}
.y49{bottom:522.690000px;}
.y9b{bottom:527.460000px;}
.y74{bottom:530.160000px;}
.yc4{bottom:534.750000px;}
.y15{bottom:538.260000px;}
.y48{bottom:540.330000px;}
.yec{bottom:543.300000px;}
.y9a{bottom:545.010000px;}
.yc3{bottom:552.390000px;}
.y14{bottom:555.900000px;}
.y47{bottom:557.880000px;}
.yeb{bottom:560.940000px;}
.y73{bottom:565.800000px;}
.yc2{bottom:569.940000px;}
.y99{bottom:580.560000px;}
.y72{bottom:583.350000px;}
.yc1{bottom:587.490000px;}
.yea{bottom:587.850000px;}
.y13{bottom:591.450000px;}
.y46{bottom:593.430000px;}
.y71{bottom:600.990000px;}
.yc0{bottom:605.130000px;}
.y12{bottom:609.090000px;}
.y45{bottom:611.070000px;}
.y98{bottom:616.200000px;}
.y70{bottom:618.540000px;}
.ybf{bottom:622.680000px;}
.y11{bottom:626.640000px;}
.y44{bottom:628.620000px;}
.y97{bottom:633.840000px;}
.y6f{bottom:636.090000px;}
.ybe{bottom:640.320000px;}
.y10{bottom:644.190000px;}
.y43{bottom:646.260000px;}
.y6e{bottom:653.730000px;}
.yf{bottom:661.830000px;}
.y42{bottom:663.810000px;}
.ybd{bottom:667.230000px;}
.y96{bottom:668.670000px;}
.ye9{bottom:671.280000px;}
.ye{bottom:679.380000px;}
.y6d{bottom:680.280000px;}
.y95{bottom:680.820000px;}
.y41{bottom:681.360000px;}
.yd{bottom:697.020000px;}
.ye8{bottom:698.190000px;}
.y40{bottom:708.000000px;}
.y94{bottom:708.180000px;}
.yc{bottom:714.570000px;}
.ybc{bottom:715.470000px;}
.y6c{bottom:715.830000px;}
.ybb{bottom:733.020000px;}
.y6b{bottom:733.470000px;}
.ye7{bottom:735.180000px;}
.y93{bottom:735.540000px;}
.yb{bottom:741.480000px;}
.y3f{bottom:743.550000px;}
.yba{bottom:750.660000px;}
.y6a{bottom:751.110000px;}
.ye6{bottom:752.820000px;}
.y3e{bottom:761.190000px;}
.y92{bottom:762.900000px;}
.yb9{bottom:768.210000px;}
.y69{bottom:768.660000px;}
.ye5{bottom:770.370000px;}
.y3d{bottom:778.740000px;}
.yb8{bottom:785.850000px;}
.ye4{bottom:787.920000px;}
.ya{bottom:788.280000px;}
.y91{bottom:790.170000px;}
.y68{bottom:795.300000px;}
.y3c{bottom:796.290000px;}
.yb7{bottom:803.400000px;}
.y3b{bottom:813.930000px;}
.ye3{bottom:814.830000px;}
.yb6{bottom:820.950000px;}
.y9{bottom:823.830000px;}
.y67{bottom:830.850000px;}
.y3a{bottom:831.480000px;}
.yb5{bottom:838.590000px;}
.y90{bottom:838.950000px;}
.y66{bottom:848.490000px;}
.y39{bottom:849.030000px;}
.ye2{bottom:852.180000px;}
.yb4{bottom:856.140000px;}
.y8{bottom:859.380000px;}
.y65{bottom:866.130000px;}
.y38{bottom:866.670000px;}
.yb3{bottom:873.780000px;}
.y8f{bottom:874.500000px;}
.y64{bottom:883.770000px;}
.y37{bottom:884.220000px;}
.y8e{bottom:892.050000px;}
.y7{bottom:898.980000px;}
.ye1{bottom:900.510000px;}
.y63{bottom:901.320000px;}
.y36{bottom:901.860000px;}
.yb2{bottom:909.240000px;}
.y8d{bottom:909.690000px;}
.y6{bottom:916.980000px;}
.ye0{bottom:918.060000px;}
.y35{bottom:919.410000px;}
.y62{bottom:927.960000px;}
.ydf{bottom:935.700000px;}
.y34{bottom:936.960000px;}
.y8c{bottom:942.630000px;}
.yb1{bottom:944.250000px;}
.y100{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.yde{bottom:953.250000px;}
.y33{bottom:954.600000px;}
.yb0{bottom:956.400000px;}
.y61{bottom:963.600000px;}
.y8b{bottom:969.990000px;}
.ydd{bottom:970.800000px;}
.y32{bottom:981.150000px;}
.yaf{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.ydc{bottom:988.440000px;}
.yff{bottom:990.150000px;}
.y8a{bottom:997.260000px;}
.y60{bottom:998.790000px;}
.ydb{bottom:1005.990000px;}
.yfe{bottom:1007.790000px;}
.yae{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.y5f{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.y88{bottom:1024.650000px;}
.yda{bottom:1032.930000px;}
.y30{bottom:1034.370000px;}
.yad{bottom:1038.420000px;}
.y5e{bottom:1042.920000px;}
.y2f{bottom:1051.920000px;}
.y86{bottom:1052.010000px;}
.y2e{bottom:1069.560000px;}
.yd9{bottom:1069.920000px;}
.y5d{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.yd8{bottom:1087.560000px;}
.y5c{bottom:1096.110000px;}
.y85{bottom:1100.700000px;}
.yd7{bottom:1105.110000px;}
.y5b{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y84{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h11{height:26.580000px;}
.hd{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h10{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.ha{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:16.740000px;}
.w8{width:32.760000px;}
.w4{width:32.790000px;}
.w9{width:35.820000px;}
.wa{width:35.850000px;}
.wb{width:44.100000px;}
.w11{width:44.130000px;}
.wc{width:50.490000px;}
.w12{width:50.580000px;}
.w10{width:68.400000px;}
.w5{width:68.670000px;}
.we{width:164.790000px;}
.w3{width:165.330000px;}
.w7{width:179.550000px;}
.wf{width:254.280000px;}
.w6{width:268.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.870000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x18{left:122.039987px;}
.x2{left:202.799987px;}
.x9{left:224.220000px;}
.x11{left:236.730000px;}
.x17{left:297.479987px;}
.x5{left:312.510000px;}
.x12{left:402.330000px;}
.xa{left:404.580000px;}
.x10{left:408.269987px;}
.xb{left:438.060000px;}
.x13{left:471.450000px;}
.xc{left:474.690000px;}
.x7{left:478.650000px;}
.x8{left:512.160000px;}
.x14{left:516.300000px;}
.xd{left:556.170000px;}
.x15{left:561.210000px;}
.x16{left:606.030000px;}
.xe{left:607.470000px;}
.xf{left:652.290000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.125867pt;}
.ls6{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls16{letter-spacing:-0.059733pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls13{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.034560pt;}
.lsd{letter-spacing:0.042240pt;}
.ls8{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.058240pt;}
.ls7{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.103467pt;}
.ls10{letter-spacing:0.105067pt;}
.lsb{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:48.823680pt;}
.ls15{letter-spacing:80.823680pt;}
.ls9{letter-spacing:89.143680pt;}
.ls14{letter-spacing:110.263680pt;}
.lsa{letter-spacing:127.400320pt;}
.ws3{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.861867pt;}
.ws7{word-spacing:-11.800320pt;}
.wsa{word-spacing:-11.791360pt;}
.ws1{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.751360pt;}
.wsc{word-spacing:-11.743680pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:131.186560pt;}
._c{margin-left:-3.688853pt;}
._4{margin-left:-2.618667pt;}
._0{margin-left:-0.906667pt;}
._2{width:0.895018pt;}
._6{width:1.817067pt;}
._5{width:3.373471pt;}
._1{width:4.324256pt;}
._3{width:5.219796pt;}
._7{width:6.337222pt;}
._9{width:7.360849pt;}
._b{width:8.724591pt;}
._d{width:10.312107pt;}
._11{width:12.718720pt;}
._8{width:14.001066pt;}
._a{width:15.178136pt;}
._10{width:16.099329pt;}
._f{width:19.822613pt;}
._e{width:20.734720pt;}
._12{width:21.771200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:6.960000pt;}
.y89{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd6{bottom:108.826667pt;}
.y28{bottom:112.346667pt;}
.y5a{bottom:112.986667pt;}
.yac{bottom:123.066667pt;}
.yd5{bottom:124.506667pt;}
.y27{bottom:127.946667pt;}
.yfd{bottom:129.226667pt;}
.yab{bottom:138.666667pt;}
.y26{bottom:143.626667pt;}
.yfc{bottom:144.826667pt;}
.y59{bottom:146.906667pt;}
.yd4{bottom:148.346667pt;}
.y25{bottom:159.226667pt;}
.y58{bottom:162.586667pt;}
.yfb{bottom:168.506667pt;}
.yaa{bottom:170.266667pt;}
.y24{bottom:174.826667pt;}
.y57{bottom:178.186667pt;}
.yd3{bottom:181.306667pt;}
.yfa{bottom:184.106667pt;}
.ya9{bottom:185.946667pt;}
.y83{bottom:188.826667pt;}
.y23{bottom:190.506667pt;}
.y56{bottom:193.866667pt;}
.yd2{bottom:196.906667pt;}
.ya8{bottom:201.546667pt;}
.yf9{bottom:207.706667pt;}
.y55{bottom:209.466667pt;}
.yd1{bottom:212.586667pt;}
.ya7{bottom:217.226667pt;}
.y82{bottom:220.426667pt;}
.y22{bottom:222.106667pt;}
.yf8{bottom:223.386667pt;}
.y54{bottom:225.066667pt;}
.yd0{bottom:228.186667pt;}
.ya6{bottom:232.826667pt;}
.y21{bottom:237.786667pt;}
.y53{bottom:240.746667pt;}
.ycf{bottom:243.786667pt;}
.yf7{bottom:246.986667pt;}
.y81{bottom:252.026667pt;}
.y20{bottom:253.386667pt;}
.y52{bottom:256.346667pt;}
.yce{bottom:259.466667pt;}
.yf6{bottom:262.666667pt;}
.ya5{bottom:264.426667pt;}
.y80{bottom:267.706667pt;}
.y1f{bottom:268.986667pt;}
.ycd{bottom:275.066667pt;}
.y51{bottom:279.946667pt;}
.y7f{bottom:283.306667pt;}
.y1e{bottom:284.666667pt;}
.yf5{bottom:286.266667pt;}
.ya4{bottom:296.106667pt;}
.ycc{bottom:298.746667pt;}
.y7e{bottom:298.906667pt;}
.y1d{bottom:300.266667pt;}
.yf4{bottom:301.866667pt;}
.ya3{bottom:311.706667pt;}
.y50{bottom:311.866667pt;}
.y7d{bottom:314.586667pt;}
.y1c{bottom:315.946667pt;}
.yf3{bottom:325.546667pt;}
.ya2{bottom:327.386667pt;}
.ycb{bottom:330.346667pt;}
.y1b{bottom:331.546667pt;}
.ya1{bottom:342.986667pt;}
.yca{bottom:345.946667pt;}
.y7c{bottom:346.186667pt;}
.y1a{bottom:347.146667pt;}
.yf2{bottom:349.146667pt;}
.y4f{bottom:354.826667pt;}
.ya0{bottom:358.666667pt;}
.yc9{bottom:361.626667pt;}
.y7b{bottom:361.866667pt;}
.y4e{bottom:370.426667pt;}
.y19{bottom:371.066667pt;}
.yf1{bottom:372.746667pt;}
.yc8{bottom:377.226667pt;}
.y7a{bottom:377.466667pt;}
.y4d{bottom:386.106667pt;}
.y9f{bottom:390.186667pt;}
.yc7{bottom:392.906667pt;}
.y79{bottom:393.066667pt;}
.yf0{bottom:396.426667pt;}
.y4c{bottom:401.706667pt;}
.y78{bottom:408.746667pt;}
.y18{bottom:414.266667pt;}
.yc6{bottom:416.826667pt;}
.y4b{bottom:417.306667pt;}
.yef{bottom:420.053333pt;}
.y9e{bottom:421.973333pt;}
.y77{bottom:424.373333pt;}
.y9d{bottom:437.573333pt;}
.y76{bottom:440.053333pt;}
.yee{bottom:443.733333pt;}
.y17{bottom:447.253333pt;}
.y4a{bottom:449.013333pt;}
.y9c{bottom:453.253333pt;}
.y75{bottom:455.653333pt;}
.yed{bottom:459.333333pt;}
.yc5{bottom:459.733333pt;}
.y16{bottom:462.853333pt;}
.y49{bottom:464.613333pt;}
.y9b{bottom:468.853333pt;}
.y74{bottom:471.253333pt;}
.yc4{bottom:475.333333pt;}
.y15{bottom:478.453333pt;}
.y48{bottom:480.293333pt;}
.yec{bottom:482.933333pt;}
.y9a{bottom:484.453333pt;}
.yc3{bottom:491.013333pt;}
.y14{bottom:494.133333pt;}
.y47{bottom:495.893333pt;}
.yeb{bottom:498.613333pt;}
.y73{bottom:502.933333pt;}
.yc2{bottom:506.613333pt;}
.y99{bottom:516.053333pt;}
.y72{bottom:518.533333pt;}
.yc1{bottom:522.213333pt;}
.yea{bottom:522.533333pt;}
.y13{bottom:525.733333pt;}
.y46{bottom:527.493333pt;}
.y71{bottom:534.213333pt;}
.yc0{bottom:537.893333pt;}
.y12{bottom:541.413333pt;}
.y45{bottom:543.173333pt;}
.y98{bottom:547.733333pt;}
.y70{bottom:549.813333pt;}
.ybf{bottom:553.493333pt;}
.y11{bottom:557.013333pt;}
.y44{bottom:558.773333pt;}
.y97{bottom:563.413333pt;}
.y6f{bottom:565.413333pt;}
.ybe{bottom:569.173333pt;}
.y10{bottom:572.613333pt;}
.y43{bottom:574.453333pt;}
.y6e{bottom:581.093333pt;}
.yf{bottom:588.293333pt;}
.y42{bottom:590.053333pt;}
.ybd{bottom:593.093333pt;}
.y96{bottom:594.373333pt;}
.ye9{bottom:596.693333pt;}
.ye{bottom:603.893333pt;}
.y6d{bottom:604.693333pt;}
.y95{bottom:605.173333pt;}
.y41{bottom:605.653333pt;}
.yd{bottom:619.573333pt;}
.ye8{bottom:620.613333pt;}
.y40{bottom:629.333333pt;}
.y94{bottom:629.493333pt;}
.yc{bottom:635.173333pt;}
.ybc{bottom:635.973333pt;}
.y6c{bottom:636.293333pt;}
.ybb{bottom:651.573333pt;}
.y6b{bottom:651.973333pt;}
.ye7{bottom:653.493333pt;}
.y93{bottom:653.813333pt;}
.yb{bottom:659.093333pt;}
.y3f{bottom:660.933333pt;}
.yba{bottom:667.253333pt;}
.y6a{bottom:667.653333pt;}
.ye6{bottom:669.173333pt;}
.y3e{bottom:676.613333pt;}
.y92{bottom:678.133333pt;}
.yb9{bottom:682.853333pt;}
.y69{bottom:683.253333pt;}
.ye5{bottom:684.773333pt;}
.y3d{bottom:692.213333pt;}
.yb8{bottom:698.533333pt;}
.ye4{bottom:700.373333pt;}
.ya{bottom:700.693333pt;}
.y91{bottom:702.373333pt;}
.y68{bottom:706.933333pt;}
.y3c{bottom:707.813333pt;}
.yb7{bottom:714.133333pt;}
.y3b{bottom:723.493333pt;}
.ye3{bottom:724.293333pt;}
.yb6{bottom:729.733333pt;}
.y9{bottom:732.293333pt;}
.y67{bottom:738.533333pt;}
.y3a{bottom:739.093333pt;}
.yb5{bottom:745.413333pt;}
.y90{bottom:745.733333pt;}
.y66{bottom:754.213333pt;}
.y39{bottom:754.693333pt;}
.ye2{bottom:757.493333pt;}
.yb4{bottom:761.013333pt;}
.y8{bottom:763.893333pt;}
.y65{bottom:769.893333pt;}
.y38{bottom:770.373333pt;}
.yb3{bottom:776.693333pt;}
.y8f{bottom:777.333333pt;}
.y64{bottom:785.573333pt;}
.y37{bottom:785.973333pt;}
.y8e{bottom:792.933333pt;}
.y7{bottom:799.093333pt;}
.ye1{bottom:800.453333pt;}
.y63{bottom:801.173333pt;}
.y36{bottom:801.653333pt;}
.yb2{bottom:808.213333pt;}
.y8d{bottom:808.613333pt;}
.y6{bottom:815.093333pt;}
.ye0{bottom:816.053333pt;}
.y35{bottom:817.253333pt;}
.y62{bottom:824.853333pt;}
.ydf{bottom:831.733333pt;}
.y34{bottom:832.853333pt;}
.y8c{bottom:837.893333pt;}
.yb1{bottom:839.333333pt;}
.y100{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.yde{bottom:847.333333pt;}
.y33{bottom:848.533333pt;}
.yb0{bottom:850.133333pt;}
.y61{bottom:856.533333pt;}
.y8b{bottom:862.213333pt;}
.ydd{bottom:862.933333pt;}
.y32{bottom:872.133333pt;}
.yaf{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.ydc{bottom:878.613333pt;}
.yff{bottom:880.133333pt;}
.y8a{bottom:886.453333pt;}
.y60{bottom:887.813333pt;}
.ydb{bottom:894.213333pt;}
.yfe{bottom:895.813333pt;}
.yae{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.y5f{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.y88{bottom:910.800000pt;}
.yda{bottom:918.160000pt;}
.y30{bottom:919.440000pt;}
.yad{bottom:923.040000pt;}
.y5e{bottom:927.040000pt;}
.y2f{bottom:935.040000pt;}
.y86{bottom:935.120000pt;}
.y2e{bottom:950.720000pt;}
.yd9{bottom:951.040000pt;}
.y5d{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.yd8{bottom:966.720000pt;}
.y5c{bottom:974.320000pt;}
.y85{bottom:978.400000pt;}
.yd7{bottom:982.320000pt;}
.y5b{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y84{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h11{height:23.626667pt;}
.hd{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h10{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.ha{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:14.880000pt;}
.w8{width:29.120000pt;}
.w4{width:29.146667pt;}
.w9{width:31.840000pt;}
.wa{width:31.866667pt;}
.wb{width:39.200000pt;}
.w11{width:39.226667pt;}
.wc{width:44.880000pt;}
.w12{width:44.960000pt;}
.w10{width:60.800000pt;}
.w5{width:61.040000pt;}
.we{width:146.480000pt;}
.w3{width:146.960000pt;}
.w7{width:159.600000pt;}
.wf{width:226.026667pt;}
.w6{width:238.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.440000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x18{left:108.479988pt;}
.x2{left:180.266655pt;}
.x9{left:199.306667pt;}
.x11{left:210.426667pt;}
.x17{left:264.426655pt;}
.x5{left:277.786667pt;}
.x12{left:357.626667pt;}
.xa{left:359.626667pt;}
.x10{left:362.906655pt;}
.xb{left:389.386667pt;}
.x13{left:419.066667pt;}
.xc{left:421.946667pt;}
.x7{left:425.466667pt;}
.x8{left:455.253333pt;}
.x14{left:458.933333pt;}
.xd{left:494.373333pt;}
.x15{left:498.853333pt;}
.x16{left:538.693333pt;}
.xe{left:539.973333pt;}
.xf{left:579.813333pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  