
    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_000079b8059216c1218ca018.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060059;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_f54094b1affb84748fec006f.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_4093124c349c213533302130.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_88cac367e1973af4b289a1a4.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cec2efb924b8791b8786cf72.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3629fdde6cfc8859f4f66502.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_af14b55a95b38489591f7667.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;}
.lsf{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.178800px;}
.ls19{letter-spacing:-0.160800px;}
.ls1a{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.117600px;}
.ls18{letter-spacing:-0.093000px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.014760px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls13{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls14{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.324800px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.211640px;}
.wse{word-spacing:-13.133400px;}
.ws10{word-spacing:-13.072800px;}
.wsf{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.047600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._c{margin-left:-3.787560px;}
._6{margin-left:-2.705400px;}
._0{margin-left:-1.110000px;}
._3{width:1.347432px;}
._8{width:2.504906px;}
._2{width:3.534648px;}
._1{width:5.140800px;}
._e{width:6.678730px;}
._5{width:7.705679px;}
._4{width:8.709960px;}
._7{width:10.160400px;}
._b{width:11.338438px;}
._9{width:14.910000px;}
._a{width:15.971996px;}
._d{width:17.975880px;}
._f{width:18.997920px;}
._18{width:20.298816px;}
._16{width:21.603600px;}
._17{width:22.725360px;}
._14{width:33.967800px;}
._11{width:35.258160px;}
._10{width:36.492840px;}
._19{width:43.731000px;}
._1a{width:44.732160px;}
._12{width:57.963600px;}
._15{width:120.059640px;}
._13{width:338.295240px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y90{bottom:7.830000px;}
.y88{bottom:8.100000px;}
.y8d{bottom:8.190000px;}
.y8b{bottom:9.360000px;}
.y94{bottom:24.930000px;}
.y91{bottom:25.020000px;}
.y93{bottom:25.380000px;}
.y8f{bottom:25.470000px;}
.y8c{bottom:26.550000px;}
.y8a{bottom:26.910000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5d{bottom:124.770000px;}
.yed{bottom:137.010000px;}
.y28{bottom:140.880000px;}
.yc2{bottom:141.060000px;}
.y95{bottom:141.600000px;}
.y5c{bottom:142.320000px;}
.y114{bottom:150.870000px;}
.yec{bottom:154.560000px;}
.y27{bottom:158.430000px;}
.yc1{bottom:158.610000px;}
.y5b{bottom:160.770000px;}
.y113{bottom:168.510000px;}
.y26{bottom:176.070000px;}
.y5a{bottom:178.320000px;}
.yeb{bottom:181.110000px;}
.yc0{bottom:185.520000px;}
.y92{bottom:188.040000px;}
.y25{bottom:193.620000px;}
.y112{bottom:195.060000px;}
.y59{bottom:195.870000px;}
.yea{bottom:198.750000px;}
.y111{bottom:212.610000px;}
.y58{bottom:214.320000px;}
.ye9{bottom:216.300000px;}
.y24{bottom:229.260000px;}
.y57{bottom:231.960000px;}
.y8e{bottom:232.950000px;}
.ybf{bottom:233.850000px;}
.y110{bottom:239.250000px;}
.ye8{bottom:242.940000px;}
.y23{bottom:246.810000px;}
.y56{bottom:249.510000px;}
.ybe{bottom:251.400000px;}
.ye7{bottom:260.490000px;}
.y22{bottom:264.360000px;}
.y10f{bottom:265.800000px;}
.y55{bottom:267.960000px;}
.ybd{bottom:268.950000px;}
.y89{bottom:277.860000px;}
.ye6{bottom:278.040000px;}
.y21{bottom:282.000000px;}
.y10e{bottom:283.440000px;}
.y54{bottom:285.510000px;}
.ybc{bottom:286.590000px;}
.y20{bottom:299.550000px;}
.y53{bottom:303.060000px;}
.ybb{bottom:304.140000px;}
.ye5{bottom:304.680000px;}
.y10d{bottom:309.990000px;}
.y1f{bottom:317.190000px;}
.y52{bottom:320.610000px;}
.yba{bottom:321.690000px;}
.ye4{bottom:322.230000px;}
.y87{bottom:324.300000px;}
.y10c{bottom:327.540000px;}
.y1e{bottom:334.740000px;}
.y51{bottom:339.060000px;}
.yb9{bottom:339.330000px;}
.ye3{bottom:348.870000px;}
.y1d{bottom:352.290000px;}
.y10b{bottom:354.180000px;}
.y50{bottom:356.700000px;}
.ye2{bottom:366.420000px;}
.y10a{bottom:371.730000px;}
.y86{bottom:373.710000px;}
.y4f{bottom:374.250000px;}
.yb8{bottom:374.880000px;}
.y1c{bottom:379.200000px;}
.y85{bottom:391.260000px;}
.yb7{bottom:392.520000px;}
.y4e{bottom:392.700000px;}
.ye1{bottom:392.970000px;}
.y109{bottom:398.370000px;}
.yb6{bottom:410.070000px;}
.y4d{bottom:410.250000px;}
.ye0{bottom:410.610000px;}
.y108{bottom:415.920000px;}
.y84{bottom:426.900000px;}
.yb5{bottom:427.620000px;}
.y1b{bottom:427.800000px;}
.ydf{bottom:437.160000px;}
.y107{bottom:442.470000px;}
.y83{bottom:444.450000px;}
.yb4{bottom:445.260000px;}
.y4c{bottom:445.350000px;}
.y106{bottom:460.110000px;}
.y82{bottom:462.000000px;}
.yb3{bottom:462.810000px;}
.y4b{bottom:463.800000px;}
.y1a{bottom:464.880000px;}
.y81{bottom:480.480000px;}
.yde{bottom:481.380000px;}
.y4a{bottom:481.470000px;}
.y19{bottom:482.460000px;}
.y105{bottom:486.690000px;}
.y80{bottom:498.030000px;}
.yb2{bottom:498.480000px;}
.ydd{bottom:498.930000px;}
.y49{bottom:499.020000px;}
.y18{bottom:500.010000px;}
.y104{bottom:504.330000px;}
.yb1{bottom:516.030000px;}
.y7f{bottom:516.480000px;}
.y48{bottom:517.470000px;}
.y17{bottom:517.650000px;}
.ydc{bottom:525.570000px;}
.y103{bottom:530.880000px;}
.yb0{bottom:533.580000px;}
.y7e{bottom:534.120000px;}
.y47{bottom:535.020000px;}
.y16{bottom:535.200000px;}
.ydb{bottom:543.120000px;}
.y102{bottom:548.430000px;}
.yaf{bottom:551.220000px;}
.y7d{bottom:551.670000px;}
.y46{bottom:552.570000px;}
.y15{bottom:552.840000px;}
.yae{bottom:568.770000px;}
.y7c{bottom:569.220000px;}
.yda{bottom:569.760000px;}
.y14{bottom:570.390000px;}
.y101{bottom:575.070000px;}
.yd9{bottom:587.310000px;}
.y7b{bottom:587.670000px;}
.y13{bottom:587.940000px;}
.y45{bottom:589.020000px;}
.y100{bottom:592.620000px;}
.yad{bottom:604.410000px;}
.y7a{bottom:605.220000px;}
.y12{bottom:605.580000px;}
.y44{bottom:606.660000px;}
.yd8{bottom:613.860000px;}
.yff{bottom:619.260000px;}
.yac{bottom:621.960000px;}
.y79{bottom:622.770000px;}
.y11{bottom:623.130000px;}
.y43{bottom:624.210000px;}
.yd7{bottom:631.500000px;}
.yfe{bottom:636.810000px;}
.yab{bottom:639.510000px;}
.y10{bottom:640.770000px;}
.y78{bottom:641.220000px;}
.y42{bottom:641.760000px;}
.yaa{bottom:657.150000px;}
.yd6{bottom:658.050000px;}
.yf{bottom:658.320000px;}
.y77{bottom:658.860000px;}
.y41{bottom:659.400000px;}
.yfd{bottom:663.360000px;}
.ya9{bottom:674.700000px;}
.yd5{bottom:675.690000px;}
.ye{bottom:675.870000px;}
.y76{bottom:676.410000px;}
.y40{bottom:676.950000px;}
.yfc{bottom:681.000000px;}
.ya8{bottom:692.340000px;}
.y75{bottom:694.860000px;}
.yd4{bottom:702.240000px;}
.yd{bottom:702.870000px;}
.y3f{bottom:703.860000px;}
.yfb{bottom:707.550000px;}
.ya7{bottom:709.890000px;}
.y74{bottom:712.410000px;}
.yd3{bottom:719.790000px;}
.ya6{bottom:727.440000px;}
.y73{bottom:729.960000px;}
.yfa{bottom:734.190000px;}
.yd2{bottom:737.430000px;}
.y72{bottom:748.410000px;}
.yc{bottom:749.580000px;}
.yf9{bottom:751.740000px;}
.y3e{bottom:752.190000px;}
.ya5{bottom:763.080000px;}
.yd1{bottom:763.980000px;}
.y71{bottom:766.050000px;}
.y3d{bottom:769.740000px;}
.yf8{bottom:778.290000px;}
.ya4{bottom:780.630000px;}
.yd0{bottom:781.530000px;}
.y70{bottom:783.600000px;}
.yb{bottom:785.130000px;}
.y3c{bottom:787.290000px;}
.yf7{bottom:795.930000px;}
.ya3{bottom:798.270000px;}
.ycf{bottom:799.170000px;}
.y6f{bottom:802.050000px;}
.y3b{bottom:804.930000px;}
.ya2{bottom:815.820000px;}
.y6e{bottom:819.600000px;}
.ya{bottom:820.950000px;}
.y3a{bottom:822.480000px;}
.yce{bottom:825.720000px;}
.y6d{bottom:837.150000px;}
.yf6{bottom:840.030000px;}
.ycd{bottom:843.360000px;}
.ya1{bottom:851.370000px;}
.y6c{bottom:854.700000px;}
.y9{bottom:856.950000px;}
.y39{bottom:858.030000px;}
.yf5{bottom:866.670000px;}
.ya0{bottom:869.010000px;}
.ycc{bottom:870.270000px;}
.y6b{bottom:873.150000px;}
.y38{bottom:875.670000px;}
.y8{bottom:878.730000px;}
.yf4{bottom:884.220000px;}
.y9f{bottom:886.560000px;}
.y6a{bottom:890.790000px;}
.y37{bottom:893.220000px;}
.y7{bottom:896.730000px;}
.yf3{bottom:901.860000px;}
.y9e{bottom:904.200000px;}
.y69{bottom:908.340000px;}
.y36{bottom:910.860000px;}
.y6{bottom:914.730000px;}
.ycb{bottom:918.510000px;}
.yf2{bottom:919.410000px;}
.y9d{bottom:921.750000px;}
.y68{bottom:926.790000px;}
.y35{bottom:928.410000px;}
.y9c{bottom:939.300000px;}
.y67{bottom:944.340000px;}
.yca{bottom:945.420000px;}
.y34{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y9b{bottom:956.940000px;}
.y66{bottom:961.890000px;}
.y33{bottom:963.600000px;}
.y9a{bottom:974.490000px;}
.y65{bottom:979.440000px;}
.y32{bottom:981.150000px;}
.yc9{bottom:982.770000px;}
.y4{bottom:985.380000px;}
.yf1{bottom:990.150000px;}
.y99{bottom:992.040000px;}
.y64{bottom:997.890000px;}
.yf0{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y63{bottom:1015.560000px;}
.y31{bottom:1016.820000px;}
.y98{bottom:1018.980000px;}
.yc8{bottom:1031.040000px;}
.y62{bottom:1033.110000px;}
.y30{bottom:1034.370000px;}
.yc7{bottom:1048.680000px;}
.y61{bottom:1050.660000px;}
.y2f{bottom:1051.920000px;}
.y97{bottom:1064.700000px;}
.y60{bottom:1069.110000px;}
.y2e{bottom:1069.560000px;}
.yef{bottom:1078.560000px;}
.yc6{bottom:1084.140000px;}
.y5f{bottom:1086.750000px;}
.y2d{bottom:1087.110000px;}
.y115{bottom:1096.110000px;}
.yc5{bottom:1102.590000px;}
.y5e{bottom:1104.300000px;}
.yee{bottom:1105.110000px;}
.y96{bottom:1109.610000px;}
.yc4{bottom:1121.040000px;}
.y2c{bottom:1122.750000px;}
.yc3{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:27.270000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hf{height:44.100000px;}
.he{height:44.190000px;}
.hd{height:45.630000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:61.793886px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:145.740000px;}
.w5{width:300.510000px;}
.w4{width:307.920000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x9{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.x7{left:215.310000px;}
.x8{left:523.950000px;}
.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;}
.lsf{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.158933pt;}
.ls19{letter-spacing:-0.142933pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.104533pt;}
.ls18{letter-spacing:-0.082667pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls13{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.844267pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.674133pt;}
.ws10{word-spacing:-11.620267pt;}
.wsf{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.597867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._c{margin-left:-3.366720pt;}
._6{margin-left:-2.404800pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.197718pt;}
._8{width:2.226583pt;}
._2{width:3.141909pt;}
._1{width:4.569600pt;}
._e{width:5.936649pt;}
._5{width:6.849492pt;}
._4{width:7.742187pt;}
._7{width:9.031467pt;}
._b{width:10.078612pt;}
._9{width:13.253334pt;}
._a{width:14.197330pt;}
._d{width:15.978560pt;}
._f{width:16.887040pt;}
._18{width:18.043392pt;}
._16{width:19.203200pt;}
._17{width:20.200320pt;}
._14{width:30.193600pt;}
._11{width:31.340587pt;}
._10{width:32.438080pt;}
._19{width:38.872000pt;}
._1a{width:39.761920pt;}
._12{width:51.523200pt;}
._15{width:106.719680pt;}
._13{width:300.706880pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:6.960000pt;}
.y88{bottom:7.200000pt;}
.y8d{bottom:7.280000pt;}
.y8b{bottom:8.320000pt;}
.y94{bottom:22.160000pt;}
.y91{bottom:22.240000pt;}
.y93{bottom:22.560000pt;}
.y8f{bottom:22.640000pt;}
.y8c{bottom:23.600000pt;}
.y8a{bottom:23.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5d{bottom:110.906667pt;}
.yed{bottom:121.786667pt;}
.y28{bottom:125.226667pt;}
.yc2{bottom:125.386667pt;}
.y95{bottom:125.866667pt;}
.y5c{bottom:126.506667pt;}
.y114{bottom:134.106667pt;}
.yec{bottom:137.386667pt;}
.y27{bottom:140.826667pt;}
.yc1{bottom:140.986667pt;}
.y5b{bottom:142.906667pt;}
.y113{bottom:149.786667pt;}
.y26{bottom:156.506667pt;}
.y5a{bottom:158.506667pt;}
.yeb{bottom:160.986667pt;}
.yc0{bottom:164.906667pt;}
.y92{bottom:167.146667pt;}
.y25{bottom:172.106667pt;}
.y112{bottom:173.386667pt;}
.y59{bottom:174.106667pt;}
.yea{bottom:176.666667pt;}
.y111{bottom:188.986667pt;}
.y58{bottom:190.506667pt;}
.ye9{bottom:192.266667pt;}
.y24{bottom:203.786667pt;}
.y57{bottom:206.186667pt;}
.y8e{bottom:207.066667pt;}
.ybf{bottom:207.866667pt;}
.y110{bottom:212.666667pt;}
.ye8{bottom:215.946667pt;}
.y23{bottom:219.386667pt;}
.y56{bottom:221.786667pt;}
.ybe{bottom:223.466667pt;}
.ye7{bottom:231.546667pt;}
.y22{bottom:234.986667pt;}
.y10f{bottom:236.266667pt;}
.y55{bottom:238.186667pt;}
.ybd{bottom:239.066667pt;}
.y89{bottom:246.986667pt;}
.ye6{bottom:247.146667pt;}
.y21{bottom:250.666667pt;}
.y10e{bottom:251.946667pt;}
.y54{bottom:253.786667pt;}
.ybc{bottom:254.746667pt;}
.y20{bottom:266.266667pt;}
.y53{bottom:269.386667pt;}
.ybb{bottom:270.346667pt;}
.ye5{bottom:270.826667pt;}
.y10d{bottom:275.546667pt;}
.y1f{bottom:281.946667pt;}
.y52{bottom:284.986667pt;}
.yba{bottom:285.946667pt;}
.ye4{bottom:286.426667pt;}
.y87{bottom:288.266667pt;}
.y10c{bottom:291.146667pt;}
.y1e{bottom:297.546667pt;}
.y51{bottom:301.386667pt;}
.yb9{bottom:301.626667pt;}
.ye3{bottom:310.106667pt;}
.y1d{bottom:313.146667pt;}
.y10b{bottom:314.826667pt;}
.y50{bottom:317.066667pt;}
.ye2{bottom:325.706667pt;}
.y10a{bottom:330.426667pt;}
.y86{bottom:332.186667pt;}
.y4f{bottom:332.666667pt;}
.yb8{bottom:333.226667pt;}
.y1c{bottom:337.066667pt;}
.y85{bottom:347.786667pt;}
.yb7{bottom:348.906667pt;}
.y4e{bottom:349.066667pt;}
.ye1{bottom:349.306667pt;}
.y109{bottom:354.106667pt;}
.yb6{bottom:364.506667pt;}
.y4d{bottom:364.666667pt;}
.ye0{bottom:364.986667pt;}
.y108{bottom:369.706667pt;}
.y84{bottom:379.466667pt;}
.yb5{bottom:380.106667pt;}
.y1b{bottom:380.266667pt;}
.ydf{bottom:388.586667pt;}
.y107{bottom:393.306667pt;}
.y83{bottom:395.066667pt;}
.yb4{bottom:395.786667pt;}
.y4c{bottom:395.866667pt;}
.y106{bottom:408.986667pt;}
.y82{bottom:410.666667pt;}
.yb3{bottom:411.386667pt;}
.y4b{bottom:412.266667pt;}
.y1a{bottom:413.226667pt;}
.y81{bottom:427.093333pt;}
.yde{bottom:427.893333pt;}
.y4a{bottom:427.973333pt;}
.y19{bottom:428.853333pt;}
.y105{bottom:432.613333pt;}
.y80{bottom:442.693333pt;}
.yb2{bottom:443.093333pt;}
.ydd{bottom:443.493333pt;}
.y49{bottom:443.573333pt;}
.y18{bottom:444.453333pt;}
.y104{bottom:448.293333pt;}
.yb1{bottom:458.693333pt;}
.y7f{bottom:459.093333pt;}
.y48{bottom:459.973333pt;}
.y17{bottom:460.133333pt;}
.ydc{bottom:467.173333pt;}
.y103{bottom:471.893333pt;}
.yb0{bottom:474.293333pt;}
.y7e{bottom:474.773333pt;}
.y47{bottom:475.573333pt;}
.y16{bottom:475.733333pt;}
.ydb{bottom:482.773333pt;}
.y102{bottom:487.493333pt;}
.yaf{bottom:489.973333pt;}
.y7d{bottom:490.373333pt;}
.y46{bottom:491.173333pt;}
.y15{bottom:491.413333pt;}
.yae{bottom:505.573333pt;}
.y7c{bottom:505.973333pt;}
.yda{bottom:506.453333pt;}
.y14{bottom:507.013333pt;}
.y101{bottom:511.173333pt;}
.yd9{bottom:522.053333pt;}
.y7b{bottom:522.373333pt;}
.y13{bottom:522.613333pt;}
.y45{bottom:523.573333pt;}
.y100{bottom:526.773333pt;}
.yad{bottom:537.253333pt;}
.y7a{bottom:537.973333pt;}
.y12{bottom:538.293333pt;}
.y44{bottom:539.253333pt;}
.yd8{bottom:545.653333pt;}
.yff{bottom:550.453333pt;}
.yac{bottom:552.853333pt;}
.y79{bottom:553.573333pt;}
.y11{bottom:553.893333pt;}
.y43{bottom:554.853333pt;}
.yd7{bottom:561.333333pt;}
.yfe{bottom:566.053333pt;}
.yab{bottom:568.453333pt;}
.y10{bottom:569.573333pt;}
.y78{bottom:569.973333pt;}
.y42{bottom:570.453333pt;}
.yaa{bottom:584.133333pt;}
.yd6{bottom:584.933333pt;}
.yf{bottom:585.173333pt;}
.y77{bottom:585.653333pt;}
.y41{bottom:586.133333pt;}
.yfd{bottom:589.653333pt;}
.ya9{bottom:599.733333pt;}
.yd5{bottom:600.613333pt;}
.ye{bottom:600.773333pt;}
.y76{bottom:601.253333pt;}
.y40{bottom:601.733333pt;}
.yfc{bottom:605.333333pt;}
.ya8{bottom:615.413333pt;}
.y75{bottom:617.653333pt;}
.yd4{bottom:624.213333pt;}
.yd{bottom:624.773333pt;}
.y3f{bottom:625.653333pt;}
.yfb{bottom:628.933333pt;}
.ya7{bottom:631.013333pt;}
.y74{bottom:633.253333pt;}
.yd3{bottom:639.813333pt;}
.ya6{bottom:646.613333pt;}
.y73{bottom:648.853333pt;}
.yfa{bottom:652.613333pt;}
.yd2{bottom:655.493333pt;}
.y72{bottom:665.253333pt;}
.yc{bottom:666.293333pt;}
.yf9{bottom:668.213333pt;}
.y3e{bottom:668.613333pt;}
.ya5{bottom:678.293333pt;}
.yd1{bottom:679.093333pt;}
.y71{bottom:680.933333pt;}
.y3d{bottom:684.213333pt;}
.yf8{bottom:691.813333pt;}
.ya4{bottom:693.893333pt;}
.yd0{bottom:694.693333pt;}
.y70{bottom:696.533333pt;}
.yb{bottom:697.893333pt;}
.y3c{bottom:699.813333pt;}
.yf7{bottom:707.493333pt;}
.ya3{bottom:709.573333pt;}
.ycf{bottom:710.373333pt;}
.y6f{bottom:712.933333pt;}
.y3b{bottom:715.493333pt;}
.ya2{bottom:725.173333pt;}
.y6e{bottom:728.533333pt;}
.ya{bottom:729.733333pt;}
.y3a{bottom:731.093333pt;}
.yce{bottom:733.973333pt;}
.y6d{bottom:744.133333pt;}
.yf6{bottom:746.693333pt;}
.ycd{bottom:749.653333pt;}
.ya1{bottom:756.773333pt;}
.y6c{bottom:759.733333pt;}
.y9{bottom:761.733333pt;}
.y39{bottom:762.693333pt;}
.yf5{bottom:770.373333pt;}
.ya0{bottom:772.453333pt;}
.ycc{bottom:773.573333pt;}
.y6b{bottom:776.133333pt;}
.y38{bottom:778.373333pt;}
.y8{bottom:781.093333pt;}
.yf4{bottom:785.973333pt;}
.y9f{bottom:788.053333pt;}
.y6a{bottom:791.813333pt;}
.y37{bottom:793.973333pt;}
.y7{bottom:797.093333pt;}
.yf3{bottom:801.653333pt;}
.y9e{bottom:803.733333pt;}
.y69{bottom:807.413333pt;}
.y36{bottom:809.653333pt;}
.y6{bottom:813.093333pt;}
.ycb{bottom:816.453333pt;}
.yf2{bottom:817.253333pt;}
.y9d{bottom:819.333333pt;}
.y68{bottom:823.813333pt;}
.y35{bottom:825.253333pt;}
.y9c{bottom:834.933333pt;}
.y67{bottom:839.413333pt;}
.yca{bottom:840.373333pt;}
.y34{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y9b{bottom:850.613333pt;}
.y66{bottom:855.013333pt;}
.y33{bottom:856.533333pt;}
.y9a{bottom:866.213333pt;}
.y65{bottom:870.613333pt;}
.y32{bottom:872.133333pt;}
.yc9{bottom:873.573333pt;}
.y4{bottom:875.893333pt;}
.yf1{bottom:880.133333pt;}
.y99{bottom:881.813333pt;}
.y64{bottom:887.013333pt;}
.yf0{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y63{bottom:902.720000pt;}
.y31{bottom:903.840000pt;}
.y98{bottom:905.760000pt;}
.yc8{bottom:916.480000pt;}
.y62{bottom:918.320000pt;}
.y30{bottom:919.440000pt;}
.yc7{bottom:932.160000pt;}
.y61{bottom:933.920000pt;}
.y2f{bottom:935.040000pt;}
.y97{bottom:946.400000pt;}
.y60{bottom:950.320000pt;}
.y2e{bottom:950.720000pt;}
.yef{bottom:958.720000pt;}
.yc6{bottom:963.680000pt;}
.y5f{bottom:966.000000pt;}
.y2d{bottom:966.320000pt;}
.y115{bottom:974.320000pt;}
.yc5{bottom:980.080000pt;}
.y5e{bottom:981.600000pt;}
.yee{bottom:982.320000pt;}
.y96{bottom:986.320000pt;}
.yc4{bottom:996.480000pt;}
.y2c{bottom:998.000000pt;}
.yc3{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:24.240000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hf{height:39.200000pt;}
.he{height:39.280000pt;}
.hd{height:40.560000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:54.927899pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:129.546667pt;}
.w5{width:267.120000pt;}
.w4{width:273.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x9{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.x7{left:191.386667pt;}
.x8{left:465.733333pt;}
.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; }
  