
    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_44ab2ef4ff2bc355e74aa6bc.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_c088c020efef09f0cde3c455.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_18adb94df5782dc8ecca0226.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_f961974373f98cadb67c438a.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_094a5be166f7f9376e668cf1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_833257e9cce0c8807b1090c5.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_bca239df478d4a9a88606795.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_b81398b5a0d7e6705fc19590.woff')format("woff");}.ff8{font-family:ff8;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);}
.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;}
.ls9{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.153600px;}
.ls5{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.086400px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls7{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.lsd{letter-spacing:0.115800px;}
.lsf{letter-spacing:0.118200px;}
.ls8{letter-spacing:0.173400px;}
.lse{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.299400px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.425520px;}
.ls12{letter-spacing:47.726640px;}
.lsb{letter-spacing:63.566640px;}
.ls11{letter-spacing:80.846640px;}
.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;}
}
.ws2{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.344600px;}
.ws9{word-spacing:-13.342200px;}
.ws7{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.072800px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-8.553600px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._b{margin-left:-3.847680px;}
._9{margin-left:-2.705400px;}
._0{margin-left:-1.020000px;}
._3{width:1.258619px;}
._4{width:2.349528px;}
._2{width:3.606253px;}
._1{width:4.697364px;}
._5{width:5.935872px;}
._6{width:7.094400px;}
._8{width:8.251125px;}
._7{width:9.438600px;}
._e{width:10.478298px;}
._12{width:12.075960px;}
._a{width:14.669280px;}
._15{width:16.172280px;}
._c{width:17.735400px;}
._d{width:18.817560px;}
._16{width:21.102120px;}
._17{width:22.845600px;}
._13{width:41.242320px;}
._14{width:42.685200px;}
._f{width:81.087480px;}
._11{width:195.052800px;}
._10{width:205.466400px;}
.fc2{color:transparent;}
.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;}
.y73{bottom:7.830000px;}
.y75{bottom:7.920000px;}
.ya7{bottom:21.420000px;}
.y84{bottom:29.970000px;}
.y71{bottom:35.190000px;}
.ya6{bottom:43.470000px;}
.y83{bottom:52.020000px;}
.ya5{bottom:61.020000px;}
.y2{bottom:73.380000px;}
.y90{bottom:74.070000px;}
.y82{bottom:74.160000px;}
.y2a{bottom:74.190000px;}
.ya4{bottom:83.160000px;}
.y81{bottom:96.210000px;}
.ya3{bottom:100.710000px;}
.y1{bottom:101.640000px;}
.y8b{bottom:112.710000px;}
.y80{bottom:118.260000px;}
.ya0{bottom:118.380000px;}
.ya2{bottom:122.880000px;}
.y107{bottom:129.720000px;}
.y8a{bottom:130.350000px;}
.ydd{bottom:133.140000px;}
.y7f{bottom:140.400000px;}
.y9f{bottom:140.430000px;}
.y28{bottom:142.050000px;}
.y5b{bottom:143.130000px;}
.ya1{bottom:144.930000px;}
.y106{bottom:147.270000px;}
.y89{bottom:147.900000px;}
.y27{bottom:159.600000px;}
.ydc{bottom:160.050000px;}
.y7e{bottom:162.450000px;}
.y9e{bottom:162.480000px;}
.y105{bottom:164.910000px;}
.y88{bottom:165.540000px;}
.y5a{bottom:169.680000px;}
.yb1{bottom:172.740000px;}
.y87{bottom:183.090000px;}
.y7d{bottom:184.590000px;}
.y9d{bottom:184.620000px;}
.yb0{bottom:190.380000px;}
.y104{bottom:191.460000px;}
.y26{bottom:195.240000px;}
.ydb{bottom:197.130000px;}
.y86{bottom:200.640000px;}
.y59{bottom:205.320000px;}
.y7c{bottom:206.640000px;}
.y9c{bottom:206.670000px;}
.yaf{bottom:207.930000px;}
.y103{bottom:209.100000px;}
.y25{bottom:212.790000px;}
.y58{bottom:222.870000px;}
.yda{bottom:224.040000px;}
.yae{bottom:225.570000px;}
.y102{bottom:226.650000px;}
.y7b{bottom:228.720000px;}
.y24{bottom:230.340000px;}
.y85{bottom:235.560000px;}
.y57{bottom:240.510000px;}
.yad{bottom:243.120000px;}
.y76{bottom:247.710000px;}
.y23{bottom:247.980000px;}
.y7a{bottom:250.860000px;}
.y101{bottom:253.200000px;}
.yac{bottom:260.670000px;}
.yd9{bottom:261.390000px;}
.y22{bottom:265.530000px;}
.y56{bottom:267.060000px;}
.y100{bottom:270.840000px;}
.y79{bottom:272.910000px;}
.yab{bottom:278.310000px;}
.y21{bottom:283.170000px;}
.y78{bottom:295.050000px;}
.yaa{bottom:295.860000px;}
.yff{bottom:297.390000px;}
.y20{bottom:300.720000px;}
.y55{bottom:302.610000px;}
.yd8{bottom:309.630000px;}
.ya9{bottom:313.410000px;}
.yfe{bottom:314.940000px;}
.y77{bottom:317.100000px;}
.y1f{bottom:318.270000px;}
.y54{bottom:320.250000px;}
.yd7{bottom:327.180000px;}
.y1e{bottom:335.910000px;}
.y53{bottom:337.800000px;}
.yfd{bottom:341.580000px;}
.yd6{bottom:344.820000px;}
.ya8{bottom:348.330000px;}
.y1d{bottom:353.460000px;}
.y52{bottom:355.440000px;}
.yfc{bottom:359.130000px;}
.y9b{bottom:360.480000px;}
.yd5{bottom:362.370000px;}
.y1c{bottom:371.100000px;}
.y51{bottom:372.990000px;}
.yd4{bottom:380.010000px;}
.yfb{bottom:385.770000px;}
.y1b{bottom:388.650000px;}
.y50{bottom:390.540000px;}
.yfa{bottom:403.320000px;}
.y4f{bottom:408.180000px;}
.y1a{bottom:415.560000px;}
.yf9{bottom:420.870000px;}
.yd3{bottom:433.110000px;}
.y4e{bottom:434.730000px;}
.yf8{bottom:447.510000px;}
.yd2{bottom:460.020000px;}
.y19{bottom:464.160000px;}
.yf7{bottom:465.060000px;}
.y4d{bottom:470.400000px;}
.yf6{bottom:482.730000px;}
.y4c{bottom:487.950000px;}
.yd1{bottom:497.130000px;}
.y18{bottom:501.180000px;}
.y4b{bottom:505.500000px;}
.yf5{bottom:509.280000px;}
.yd0{bottom:514.680000px;}
.y17{bottom:518.820000px;}
.y4a{bottom:523.140000px;}
.yf4{bottom:526.830000px;}
.ycf{bottom:532.230000px;}
.y16{bottom:536.370000px;}
.y49{bottom:540.690000px;}
.yf3{bottom:544.470000px;}
.yce{bottom:549.870000px;}
.y15{bottom:553.920000px;}
.y48{bottom:558.330000px;}
.ycd{bottom:567.420000px;}
.yf2{bottom:571.020000px;}
.y14{bottom:571.560000px;}
.y47{bottom:575.880000px;}
.y74{bottom:584.250000px;}
.ycc{bottom:585.060000px;}
.yf1{bottom:588.660000px;}
.y13{bottom:589.110000px;}
.y46{bottom:593.430000px;}
.ycb{bottom:602.610000px;}
.y12{bottom:606.750000px;}
.y70{bottom:611.610000px;}
.yf0{bottom:615.210000px;}
.yca{bottom:620.160000px;}
.y11{bottom:624.300000px;}
.y45{bottom:629.070000px;}
.yef{bottom:632.760000px;}
.yc9{bottom:637.800000px;}
.y72{bottom:638.970000px;}
.y10{bottom:641.850000px;}
.y44{bottom:646.620000px;}
.y9a{bottom:652.920000px;}
.yee{bottom:659.400000px;}
.yf{bottom:659.490000px;}
.y43{bottom:664.260000px;}
.yc8{bottom:664.710000px;}
.ye{bottom:677.040000px;}
.y99{bottom:680.190000px;}
.y42{bottom:681.810000px;}
.yed{bottom:685.950000px;}
.y6f{bottom:687.660000px;}
.yd{bottom:694.680000px;}
.y41{bottom:699.360000px;}
.yec{bottom:703.590000px;}
.yc{bottom:712.230000px;}
.yc7{bottom:712.950000px;}
.y6e{bottom:714.210000px;}
.y40{bottom:717.000000px;}
.yeb{bottom:721.140000px;}
.y98{bottom:728.880000px;}
.yc6{bottom:730.590000px;}
.y6d{bottom:731.850000px;}
.y3f{bottom:734.550000px;}
.yb{bottom:739.140000px;}
.yea{bottom:747.690000px;}
.yc5{bottom:748.140000px;}
.y3e{bottom:752.190000px;}
.y97{bottom:755.520000px;}
.ye9{bottom:765.330000px;}
.yc4{bottom:765.690000px;}
.y6c{bottom:767.760000px;}
.y3d{bottom:769.740000px;}
.y96{bottom:773.070000px;}
.ye8{bottom:782.880000px;}
.yc3{bottom:783.330000px;}
.ya{bottom:787.380000px;}
.yc2{bottom:800.880000px;}
.y3c{bottom:805.290000px;}
.y95{bottom:808.710000px;}
.ye7{bottom:809.520000px;}
.y6b{bottom:816.000000px;}
.yc1{bottom:818.520000px;}
.y3b{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.y94{bottom:826.260000px;}
.ye6{bottom:827.070000px;}
.y6a{bottom:833.550000px;}
.yc0{bottom:836.070000px;}
.y3a{bottom:840.480000px;}
.y93{bottom:843.810000px;}
.y69{bottom:851.190000px;}
.ye5{bottom:853.620000px;}
.y39{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.y68{bottom:868.740000px;}
.ye4{bottom:871.260000px;}
.ybf{bottom:871.620000px;}
.y38{bottom:875.670000px;}
.y92{bottom:878.730000px;}
.y67{bottom:886.380000px;}
.ybe{bottom:889.260000px;}
.y91{bottom:890.880000px;}
.y37{bottom:893.220000px;}
.ye3{bottom:897.810000px;}
.y7{bottom:898.980000px;}
.y66{bottom:903.930000px;}
.ybd{bottom:906.810000px;}
.ye2{bottom:915.450000px;}
.y6{bottom:916.980000px;}
.y8f{bottom:918.240000px;}
.y65{bottom:921.480000px;}
.ybc{bottom:924.450000px;}
.y36{bottom:928.860000px;}
.ybb{bottom:942.000000px;}
.y35{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y64{bottom:957.120000px;}
.yba{bottom:959.550000px;}
.y34{bottom:963.960000px;}
.y63{bottom:974.670000px;}
.ye1{bottom:977.190000px;}
.y33{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y62{bottom:992.310000px;}
.yb9{bottom:995.190000px;}
.y32{bottom:999.150000px;}
.ye0{bottom:1003.740000px;}
.y61{bottom:1009.890000px;}
.y8e{bottom:1011.870000px;}
.y3{bottom:1012.320000px;}
.yb8{bottom:1012.770000px;}
.y31{bottom:1016.820000px;}
.ydf{bottom:1021.320000px;}
.y60{bottom:1027.440000px;}
.yb7{bottom:1030.320000px;}
.yde{bottom:1038.960000px;}
.yb6{bottom:1047.960000px;}
.y30{bottom:1052.370000px;}
.y5f{bottom:1054.350000px;}
.y8d{bottom:1060.560000px;}
.yb5{bottom:1065.510000px;}
.y2f{bottom:1069.920000px;}
.yb4{bottom:1083.150000px;}
.y8c{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.yb3{bottom:1100.700000px;}
.y5e{bottom:1102.590000px;}
.y2d{bottom:1105.110000px;}
.y5d{bottom:1121.040000px;}
.y2c{bottom:1122.750000px;}
.yb2{bottom:1127.610000px;}
.y5c{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h12{height:41.661211px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.he{height:53.910000px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.h8{height:74.004654px;}
.h13{height:92.820000px;}
.h14{height:291.630000px;}
.h11{height:335.820000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w15{width:32.040000px;}
.w14{width:32.130000px;}
.w12{width:33.030000px;}
.w16{width:33.750000px;}
.w7{width:40.950000px;}
.wf{width:43.470000px;}
.w13{width:43.560000px;}
.wb{width:47.250000px;}
.w9{width:47.340000px;}
.wc{width:63.900000px;}
.wa{width:63.930000px;}
.we{width:88.590000px;}
.w6{width:111.960000px;}
.w5{width:111.990000px;}
.wd{width:151.470000px;}
.w8{width:185.670000px;}
.w4{width:224.670000px;}
.w3{width:227.340000px;}
.w11{width:402.990000px;}
.w10{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.650000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x11{left:110.520000px;}
.x1a{left:178.319987px;}
.xc{left:203.339987px;}
.x2{left:211.079987px;}
.x5{left:220.260000px;}
.x9{left:261.930000px;}
.xd{left:304.140000px;}
.x10{left:365.339987px;}
.x7{left:448.410000px;}
.xe{left:456.330000px;}
.xa{left:496.470000px;}
.x12{left:514.230000px;}
.xf{left:545.640000px;}
.x13{left:547.980000px;}
.x8{left:561.120000px;}
.x14{left:592.260000px;}
.xb{left:609.180000px;}
.x15{left:625.110000px;}
.x16{left:669.390000px;}
.x17{left:702.240000px;}
.x18{left:746.430000px;}
.x19{left:780.990000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls5{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.076800pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls7{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.lsd{letter-spacing:0.102933pt;}
.lsf{letter-spacing:0.105067pt;}
.ls8{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.266133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.378240pt;}
.ls12{letter-spacing:42.423680pt;}
.lsb{letter-spacing:56.503680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws2{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.861867pt;}
.ws9{word-spacing:-11.859733pt;}
.ws7{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.620267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-7.603200pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._b{margin-left:-3.420160pt;}
._9{margin-left:-2.404800pt;}
._0{margin-left:-0.906667pt;}
._3{width:1.118773pt;}
._4{width:2.088469pt;}
._2{width:3.205558pt;}
._1{width:4.175435pt;}
._5{width:5.276331pt;}
._6{width:6.306134pt;}
._8{width:7.334333pt;}
._7{width:8.389866pt;}
._e{width:9.314043pt;}
._12{width:10.734187pt;}
._a{width:13.039360pt;}
._15{width:14.375360pt;}
._c{width:15.764800pt;}
._d{width:16.726720pt;}
._16{width:18.757440pt;}
._17{width:20.307200pt;}
._13{width:36.659840pt;}
._14{width:37.942400pt;}
._f{width:72.077760pt;}
._11{width:173.380267pt;}
._10{width:182.636800pt;}
.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;}
.y73{bottom:6.960000pt;}
.y75{bottom:7.040000pt;}
.ya7{bottom:19.040000pt;}
.y84{bottom:26.640000pt;}
.y71{bottom:31.280000pt;}
.ya6{bottom:38.640000pt;}
.y83{bottom:46.240000pt;}
.ya5{bottom:54.240000pt;}
.y2{bottom:65.226667pt;}
.y90{bottom:65.840000pt;}
.y82{bottom:65.920000pt;}
.y2a{bottom:65.946667pt;}
.ya4{bottom:73.920000pt;}
.y81{bottom:85.520000pt;}
.ya3{bottom:89.520000pt;}
.y1{bottom:90.346667pt;}
.y8b{bottom:100.186667pt;}
.y80{bottom:105.120000pt;}
.ya0{bottom:105.226667pt;}
.ya2{bottom:109.226667pt;}
.y107{bottom:115.306667pt;}
.y8a{bottom:115.866667pt;}
.ydd{bottom:118.346667pt;}
.y7f{bottom:124.800000pt;}
.y9f{bottom:124.826667pt;}
.y28{bottom:126.266667pt;}
.y5b{bottom:127.226667pt;}
.ya1{bottom:128.826667pt;}
.y106{bottom:130.906667pt;}
.y89{bottom:131.466667pt;}
.y27{bottom:141.866667pt;}
.ydc{bottom:142.266667pt;}
.y7e{bottom:144.400000pt;}
.y9e{bottom:144.426667pt;}
.y105{bottom:146.586667pt;}
.y88{bottom:147.146667pt;}
.y5a{bottom:150.826667pt;}
.yb1{bottom:153.546667pt;}
.y87{bottom:162.746667pt;}
.y7d{bottom:164.080000pt;}
.y9d{bottom:164.106667pt;}
.yb0{bottom:169.226667pt;}
.y104{bottom:170.186667pt;}
.y26{bottom:173.546667pt;}
.ydb{bottom:175.226667pt;}
.y86{bottom:178.346667pt;}
.y59{bottom:182.506667pt;}
.y7c{bottom:183.680000pt;}
.y9c{bottom:183.706667pt;}
.yaf{bottom:184.826667pt;}
.y103{bottom:185.866667pt;}
.y25{bottom:189.146667pt;}
.y58{bottom:198.106667pt;}
.yda{bottom:199.146667pt;}
.yae{bottom:200.506667pt;}
.y102{bottom:201.466667pt;}
.y7b{bottom:203.306667pt;}
.y24{bottom:204.746667pt;}
.y85{bottom:209.386667pt;}
.y57{bottom:213.786667pt;}
.yad{bottom:216.106667pt;}
.y76{bottom:220.186667pt;}
.y23{bottom:220.426667pt;}
.y7a{bottom:222.986667pt;}
.y101{bottom:225.066667pt;}
.yac{bottom:231.706667pt;}
.yd9{bottom:232.346667pt;}
.y22{bottom:236.026667pt;}
.y56{bottom:237.386667pt;}
.y100{bottom:240.746667pt;}
.y79{bottom:242.586667pt;}
.yab{bottom:247.386667pt;}
.y21{bottom:251.706667pt;}
.y78{bottom:262.266667pt;}
.yaa{bottom:262.986667pt;}
.yff{bottom:264.346667pt;}
.y20{bottom:267.306667pt;}
.y55{bottom:268.986667pt;}
.yd8{bottom:275.226667pt;}
.ya9{bottom:278.586667pt;}
.yfe{bottom:279.946667pt;}
.y77{bottom:281.866667pt;}
.y1f{bottom:282.906667pt;}
.y54{bottom:284.666667pt;}
.yd7{bottom:290.826667pt;}
.y1e{bottom:298.586667pt;}
.y53{bottom:300.266667pt;}
.yfd{bottom:303.626667pt;}
.yd6{bottom:306.506667pt;}
.ya8{bottom:309.626667pt;}
.y1d{bottom:314.186667pt;}
.y52{bottom:315.946667pt;}
.yfc{bottom:319.226667pt;}
.y9b{bottom:320.426667pt;}
.yd5{bottom:322.106667pt;}
.y1c{bottom:329.866667pt;}
.y51{bottom:331.546667pt;}
.yd4{bottom:337.786667pt;}
.yfb{bottom:342.906667pt;}
.y1b{bottom:345.466667pt;}
.y50{bottom:347.146667pt;}
.yfa{bottom:358.506667pt;}
.y4f{bottom:362.826667pt;}
.y1a{bottom:369.386667pt;}
.yf9{bottom:374.106667pt;}
.yd3{bottom:384.986667pt;}
.y4e{bottom:386.426667pt;}
.yf8{bottom:397.786667pt;}
.yd2{bottom:408.906667pt;}
.y19{bottom:412.586667pt;}
.yf7{bottom:413.386667pt;}
.y4d{bottom:418.133333pt;}
.yf6{bottom:429.093333pt;}
.y4c{bottom:433.733333pt;}
.yd1{bottom:441.893333pt;}
.y18{bottom:445.493333pt;}
.y4b{bottom:449.333333pt;}
.yf5{bottom:452.693333pt;}
.yd0{bottom:457.493333pt;}
.y17{bottom:461.173333pt;}
.y4a{bottom:465.013333pt;}
.yf4{bottom:468.293333pt;}
.ycf{bottom:473.093333pt;}
.y16{bottom:476.773333pt;}
.y49{bottom:480.613333pt;}
.yf3{bottom:483.973333pt;}
.yce{bottom:488.773333pt;}
.y15{bottom:492.373333pt;}
.y48{bottom:496.293333pt;}
.ycd{bottom:504.373333pt;}
.yf2{bottom:507.573333pt;}
.y14{bottom:508.053333pt;}
.y47{bottom:511.893333pt;}
.y74{bottom:519.333333pt;}
.ycc{bottom:520.053333pt;}
.yf1{bottom:523.253333pt;}
.y13{bottom:523.653333pt;}
.y46{bottom:527.493333pt;}
.ycb{bottom:535.653333pt;}
.y12{bottom:539.333333pt;}
.y70{bottom:543.653333pt;}
.yf0{bottom:546.853333pt;}
.yca{bottom:551.253333pt;}
.y11{bottom:554.933333pt;}
.y45{bottom:559.173333pt;}
.yef{bottom:562.453333pt;}
.yc9{bottom:566.933333pt;}
.y72{bottom:567.973333pt;}
.y10{bottom:570.533333pt;}
.y44{bottom:574.773333pt;}
.y9a{bottom:580.373333pt;}
.yee{bottom:586.133333pt;}
.yf{bottom:586.213333pt;}
.y43{bottom:590.453333pt;}
.yc8{bottom:590.853333pt;}
.ye{bottom:601.813333pt;}
.y99{bottom:604.613333pt;}
.y42{bottom:606.053333pt;}
.yed{bottom:609.733333pt;}
.y6f{bottom:611.253333pt;}
.yd{bottom:617.493333pt;}
.y41{bottom:621.653333pt;}
.yec{bottom:625.413333pt;}
.yc{bottom:633.093333pt;}
.yc7{bottom:633.733333pt;}
.y6e{bottom:634.853333pt;}
.y40{bottom:637.333333pt;}
.yeb{bottom:641.013333pt;}
.y98{bottom:647.893333pt;}
.yc6{bottom:649.413333pt;}
.y6d{bottom:650.533333pt;}
.y3f{bottom:652.933333pt;}
.yb{bottom:657.013333pt;}
.yea{bottom:664.613333pt;}
.yc5{bottom:665.013333pt;}
.y3e{bottom:668.613333pt;}
.y97{bottom:671.573333pt;}
.ye9{bottom:680.293333pt;}
.yc4{bottom:680.613333pt;}
.y6c{bottom:682.453333pt;}
.y3d{bottom:684.213333pt;}
.y96{bottom:687.173333pt;}
.ye8{bottom:695.893333pt;}
.yc3{bottom:696.293333pt;}
.ya{bottom:699.893333pt;}
.yc2{bottom:711.893333pt;}
.y3c{bottom:715.813333pt;}
.y95{bottom:718.853333pt;}
.ye7{bottom:719.573333pt;}
.y6b{bottom:725.333333pt;}
.yc1{bottom:727.573333pt;}
.y3b{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.y94{bottom:734.453333pt;}
.ye6{bottom:735.173333pt;}
.y6a{bottom:740.933333pt;}
.yc0{bottom:743.173333pt;}
.y3a{bottom:747.093333pt;}
.y93{bottom:750.053333pt;}
.y69{bottom:756.613333pt;}
.ye5{bottom:758.773333pt;}
.y39{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.y68{bottom:772.213333pt;}
.ye4{bottom:774.453333pt;}
.ybf{bottom:774.773333pt;}
.y38{bottom:778.373333pt;}
.y92{bottom:781.093333pt;}
.y67{bottom:787.893333pt;}
.ybe{bottom:790.453333pt;}
.y91{bottom:791.893333pt;}
.y37{bottom:793.973333pt;}
.ye3{bottom:798.053333pt;}
.y7{bottom:799.093333pt;}
.y66{bottom:803.493333pt;}
.ybd{bottom:806.053333pt;}
.ye2{bottom:813.733333pt;}
.y6{bottom:815.093333pt;}
.y8f{bottom:816.213333pt;}
.y65{bottom:819.093333pt;}
.ybc{bottom:821.733333pt;}
.y36{bottom:825.653333pt;}
.ybb{bottom:837.333333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y64{bottom:850.773333pt;}
.yba{bottom:852.933333pt;}
.y34{bottom:856.853333pt;}
.y63{bottom:866.373333pt;}
.ye1{bottom:868.613333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y62{bottom:882.053333pt;}
.yb9{bottom:884.613333pt;}
.y32{bottom:888.133333pt;}
.ye0{bottom:892.213333pt;}
.y61{bottom:897.680000pt;}
.y8e{bottom:899.440000pt;}
.y3{bottom:899.840000pt;}
.yb8{bottom:900.240000pt;}
.y31{bottom:903.840000pt;}
.ydf{bottom:907.840000pt;}
.y60{bottom:913.280000pt;}
.yb7{bottom:915.840000pt;}
.yde{bottom:923.520000pt;}
.yb6{bottom:931.520000pt;}
.y30{bottom:935.440000pt;}
.y5f{bottom:937.200000pt;}
.y8d{bottom:942.720000pt;}
.yb5{bottom:947.120000pt;}
.y2f{bottom:951.040000pt;}
.yb4{bottom:962.800000pt;}
.y8c{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.yb3{bottom:978.400000pt;}
.y5e{bottom:980.080000pt;}
.y2d{bottom:982.320000pt;}
.y5d{bottom:996.480000pt;}
.y2c{bottom:998.000000pt;}
.yb2{bottom:1002.320000pt;}
.y5c{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h12{height:37.032187pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.he{height:47.920000pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.h8{height:65.781915pt;}
.h13{height:82.506667pt;}
.h14{height:259.226667pt;}
.h11{height:298.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w15{width:28.480000pt;}
.w14{width:28.560000pt;}
.w12{width:29.360000pt;}
.w16{width:30.000000pt;}
.w7{width:36.400000pt;}
.wf{width:38.640000pt;}
.w13{width:38.720000pt;}
.wb{width:42.000000pt;}
.w9{width:42.080000pt;}
.wc{width:56.800000pt;}
.wa{width:56.826667pt;}
.we{width:78.746667pt;}
.w6{width:99.520000pt;}
.w5{width:99.546667pt;}
.wd{width:134.640000pt;}
.w8{width:165.040000pt;}
.w4{width:199.706667pt;}
.w3{width:202.080000pt;}
.w11{width:358.213333pt;}
.w10{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.800000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x11{left:98.240000pt;}
.x1a{left:158.506655pt;}
.xc{left:180.746655pt;}
.x2{left:187.626655pt;}
.x5{left:195.786667pt;}
.x9{left:232.826667pt;}
.xd{left:270.346667pt;}
.x10{left:324.746655pt;}
.x7{left:398.586667pt;}
.xe{left:405.626667pt;}
.xa{left:441.306667pt;}
.x12{left:457.093333pt;}
.xf{left:485.013333pt;}
.x13{left:487.093333pt;}
.x8{left:498.773333pt;}
.x14{left:526.453333pt;}
.xb{left:541.493333pt;}
.x15{left:555.653333pt;}
.x16{left:595.013333pt;}
.x17{left:624.213333pt;}
.x18{left:663.493333pt;}
.x19{left:694.213333pt;}
.x3{left:711.413322pt;}
}




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