
    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_421614adcc1d75490ac6849c.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_467558907c0a03c0bb4b96f8.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_cc226e1c11b3e77f4977e7e1.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_015a7c09f695a253972f6274.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_251bd4b72521b7c3dc44d6d9.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_a0a1924987b9b024d5102903.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_957f83e45cc6b0d29f811d39.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.397800px;}
.ls18{letter-spacing:-0.339600px;}
.ls19{letter-spacing:-0.285600px;}
.lse{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls16{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.064800px;}
.ls17{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.173520px;}
.ls9{letter-spacing:0.174600px;}
.lsa{letter-spacing:0.177000px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:1.893600px;}
.ls1b{letter-spacing:47.726640px;}
.ls14{letter-spacing:63.566640px;}
.ls1a{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;}
}
.ws9{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.403400px;}
.ws6{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.300800px;}
.wsc{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.246560px;}
.ws4{word-spacing:-13.226400px;}
.ws5{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.940800px;}
.wse{word-spacing:-12.886800px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._7{margin-left:-3.556921px;}
._6{margin-left:-2.352600px;}
._0{margin-left:-1.014000px;}
._1{width:1.174236px;}
._3{width:2.461128px;}
._8{width:3.487200px;}
._d{width:4.869600px;}
._e{width:5.872525px;}
._c{width:7.214400px;}
._b{width:8.416800px;}
._9{width:9.739200px;}
._2{width:11.302800px;}
._5{width:15.185880px;}
._4{width:16.653000px;}
._a{width:18.036000px;}
._11{width:19.716360px;}
._10{width:20.973840px;}
._13{width:32.043960px;}
._12{width:45.751320px;}
._15{width:55.861920px;}
._f{width:81.806004px;}
._14{width:109.567080px;}
.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;}
.y6c{bottom:7.830000px;}
.y70{bottom:7.920000px;}
.y89{bottom:13.050000px;}
.y6b{bottom:29.880000px;}
.y9b{bottom:29.910000px;}
.y87{bottom:29.970000px;}
.y6e{bottom:35.190000px;}
.y7c{bottom:35.280000px;}
.y9d{bottom:52.020000px;}
.y9a{bottom:52.050000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y59{bottom:123.960000px;}
.ya9{bottom:139.080000px;}
.y29{bottom:146.370000px;}
.ya8{bottom:156.630000px;}
.y58{bottom:159.510000px;}
.y84{bottom:162.390000px;}
.y28{bottom:164.010000px;}
.ya7{bottom:174.270000px;}
.y57{bottom:177.060000px;}
.y83{bottom:179.940000px;}
.y27{bottom:181.560000px;}
.ya6{bottom:191.820000px;}
.y56{bottom:194.700000px;}
.y82{bottom:197.580000px;}
.y26{bottom:199.110000px;}
.ya5{bottom:209.460000px;}
.y55{bottom:212.250000px;}
.y81{bottom:215.130000px;}
.y25{bottom:216.750000px;}
.ya4{bottom:227.010000px;}
.y80{bottom:232.770000px;}
.y24{bottom:234.300000px;}
.y54{bottom:238.890000px;}
.ya3{bottom:244.560000px;}
.y23{bottom:251.940000px;}
.ya2{bottom:262.200000px;}
.y7e{bottom:265.710000px;}
.y22{bottom:269.490000px;}
.y53{bottom:274.440000px;}
.ya1{bottom:279.750000px;}
.y21{bottom:287.040000px;}
.y52{bottom:291.990000px;}
.y7f{bottom:293.070000px;}
.ya0{bottom:297.300000px;}
.y20{bottom:304.680000px;}
.y51{bottom:309.630000px;}
.y9f{bottom:314.940000px;}
.y7b{bottom:320.340000px;}
.y1f{bottom:322.230000px;}
.y50{bottom:336.180000px;}
.y1e{bottom:339.870000px;}
.y9e{bottom:341.850000px;}
.y7d{bottom:347.700000px;}
.y1d{bottom:357.420000px;}
.y4f{bottom:371.730000px;}
.y1c{bottom:374.970000px;}
.y7a{bottom:375.060000px;}
.y9c{bottom:387.480000px;}
.y4e{bottom:390.180000px;}
.yc7{bottom:392.340000px;}
.y1b{bottom:401.880000px;}
.y78{bottom:402.420000px;}
.y4d{bottom:408.540000px;}
.yc6{bottom:409.980000px;}
.y4c{bottom:426.990000px;}
.y79{bottom:429.690000px;}
.yc5{bottom:436.530000px;}
.y4b{bottom:445.350000px;}
.y1a{bottom:450.480000px;}
.yc4{bottom:454.170000px;}
.y77{bottom:457.050000px;}
.y99{bottom:459.030000px;}
.y4a{bottom:463.800000px;}
.yc3{bottom:480.750000px;}
.y76{bottom:484.440000px;}
.y19{bottom:487.590000px;}
.yc2{bottom:498.300000px;}
.y49{bottom:500.280000px;}
.y18{bottom:505.140000px;}
.y74{bottom:511.800000px;}
.yc1{bottom:515.940000px;}
.y48{bottom:517.830000px;}
.y17{bottom:522.690000px;}
.y98{bottom:530.520000px;}
.y75{bottom:539.070000px;}
.y16{bottom:540.330000px;}
.yc0{bottom:542.490000px;}
.y47{bottom:544.470000px;}
.y15{bottom:557.880000px;}
.ybf{bottom:560.130000px;}
.y73{bottom:566.430000px;}
.y14{bottom:575.520000px;}
.y46{bottom:580.020000px;}
.ybe{bottom:586.680000px;}
.y13{bottom:593.070000px;}
.y71{bottom:593.790000px;}
.y45{bottom:597.660000px;}
.y97{bottom:601.350000px;}
.ybd{bottom:604.230000px;}
.y12{bottom:610.620000px;}
.y44{bottom:615.210000px;}
.y72{bottom:621.060000px;}
.y96{bottom:627.900000px;}
.y11{bottom:628.260000px;}
.ybc{bottom:630.870000px;}
.y43{bottom:641.760000px;}
.y95{bottom:645.450000px;}
.y10{bottom:645.810000px;}
.y6d{bottom:648.420000px;}
.y94{bottom:663.090000px;}
.yf{bottom:663.450000px;}
.ybb{bottom:675.060000px;}
.y6f{bottom:675.780000px;}
.y42{bottom:677.400000px;}
.y93{bottom:680.640000px;}
.ye{bottom:681.000000px;}
.yba{bottom:692.610000px;}
.y41{bottom:694.950000px;}
.y92{bottom:698.280000px;}
.yd{bottom:698.550000px;}
.y6a{bottom:703.140000px;}
.y40{bottom:712.590000px;}
.y91{bottom:715.110000px;}
.yc{bottom:716.190000px;}
.yb9{bottom:719.160000px;}
.y8f{bottom:727.260000px;}
.yb8{bottom:736.800000px;}
.y3f{bottom:739.140000px;}
.yb{bottom:743.100000px;}
.y90{bottom:754.620000px;}
.yb7{bottom:763.350000px;}
.y69{bottom:773.880000px;}
.y3e{bottom:775.050000px;}
.yb6{bottom:780.990000px;}
.y8d{bottom:781.980000px;}
.ya{bottom:791.340000px;}
.yb5{bottom:807.540000px;}
.y8e{bottom:809.250000px;}
.y68{bottom:809.520000px;}
.y3d{bottom:823.290000px;}
.yb4{bottom:825.090000px;}
.y67{bottom:827.070000px;}
.y9{bottom:827.160000px;}
.y8c{bottom:836.610000px;}
.y3c{bottom:840.930000px;}
.y66{bottom:844.620000px;}
.yb3{bottom:852.000000px;}
.y3b{bottom:858.480000px;}
.y65{bottom:862.260000px;}
.y8{bottom:863.160000px;}
.y8b{bottom:863.970000px;}
.y3a{bottom:876.030000px;}
.y64{bottom:879.810000px;}
.y88{bottom:891.330000px;}
.y39{bottom:893.670000px;}
.y63{bottom:897.450000px;}
.y7{bottom:899.160000px;}
.yb2{bottom:900.330000px;}
.y38{bottom:911.220000px;}
.y62{bottom:915.000000px;}
.y8a{bottom:918.600000px;}
.yb1{bottom:927.240000px;}
.y37{bottom:928.860000px;}
.y61{bottom:932.550000px;}
.y6{bottom:935.250000px;}
.y86{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y5{bottom:954.600000px;}
.y35{bottom:963.960000px;}
.yb0{bottom:964.230000px;}
.y60{bottom:968.190000px;}
.y4{bottom:973.950000px;}
.y5f{bottom:985.740000px;}
.yaf{bottom:991.140000px;}
.y34{bottom:999.600000px;}
.y5e{bottom:1003.290000px;}
.y3{bottom:1012.230000px;}
.y85{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y5d{bottom:1020.960000px;}
.yae{bottom:1028.160000px;}
.y32{bottom:1034.820000px;}
.yad{bottom:1045.800000px;}
.y5c{bottom:1047.870000px;}
.y31{bottom:1052.370000px;}
.yac{bottom:1063.350000px;}
.y30{bottom:1069.920000px;}
.y2f{bottom:1087.560000px;}
.yab{bottom:1090.260000px;}
.y5b{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y5a{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.yaa{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h12{height:40.539023px;}
.hb{height:48.600000px;}
.h11{height:48.690000px;}
.h6{height:50.902383px;}
.hc{height:53.910000px;}
.h10{height:54.000000px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h14{height:70.740000px;}
.h13{height:70.770000px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:48.690000px;}
.w9{width:48.720000px;}
.w6{width:63.570000px;}
.w5{width:75.690000px;}
.w7{width:80.460000px;}
.wd{width:92.880000px;}
.w8{width:92.970000px;}
.we{width:95.310000px;}
.wc{width:95.880000px;}
.w10{width:106.200000px;}
.wb{width:107.820000px;}
.w4{width:111.150000px;}
.w11{width:113.340000px;}
.wf{width:114.030000px;}
.w12{width:161.190000px;}
.wa{width:183.780000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x18{left:111.239987px;}
.x12{left:125.280000px;}
.xc{left:139.950000px;}
.x13{left:174.720000px;}
.xd{left:189.390000px;}
.x2{left:191.459987px;}
.x5{left:208.380000px;}
.x7{left:257.880000px;}
.x14{left:270.840000px;}
.x8{left:369.840000px;}
.xe{left:373.890000px;}
.x15{left:385.680000px;}
.x9{left:446.340000px;}
.xf{left:482.520000px;}
.x16{left:492.690000px;}
.xa{left:510.720000px;}
.x10{left:579.120000px;}
.xb{left:591.900000px;}
.x17{left:606.750000px;}
.x11{left:660.390000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.353600pt;}
.ls18{letter-spacing:-0.301867pt;}
.ls19{letter-spacing:-0.253867pt;}
.lse{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls16{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.057600pt;}
.ls17{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.154240pt;}
.ls9{letter-spacing:0.155200pt;}
.lsa{letter-spacing:0.157333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:1.683200pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls14{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws9{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.914133pt;}
.ws6{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.822933pt;}
.wsc{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.774720pt;}
.ws4{word-spacing:-11.756800pt;}
.ws5{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.502933pt;}
.wse{word-spacing:-11.454933pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._7{margin-left:-3.161708pt;}
._6{margin-left:-2.091200pt;}
._0{margin-left:-0.901333pt;}
._1{width:1.043765pt;}
._3{width:2.187669pt;}
._8{width:3.099734pt;}
._d{width:4.328533pt;}
._e{width:5.220023pt;}
._c{width:6.412800pt;}
._b{width:7.481600pt;}
._9{width:8.657066pt;}
._2{width:10.046934pt;}
._5{width:13.498560pt;}
._4{width:14.802666pt;}
._a{width:16.032000pt;}
._11{width:17.525653pt;}
._10{width:18.643413pt;}
._13{width:28.483520pt;}
._12{width:40.667840pt;}
._15{width:49.655040pt;}
._f{width:72.716448pt;}
._14{width:97.392960pt;}
.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;}
.y6c{bottom:6.960000pt;}
.y70{bottom:7.040000pt;}
.y89{bottom:11.600000pt;}
.y6b{bottom:26.560000pt;}
.y9b{bottom:26.586667pt;}
.y87{bottom:26.640000pt;}
.y6e{bottom:31.280000pt;}
.y7c{bottom:31.360000pt;}
.y9d{bottom:46.240000pt;}
.y9a{bottom:46.266667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y59{bottom:110.186667pt;}
.ya9{bottom:123.626667pt;}
.y29{bottom:130.106667pt;}
.ya8{bottom:139.226667pt;}
.y58{bottom:141.786667pt;}
.y84{bottom:144.346667pt;}
.y28{bottom:145.786667pt;}
.ya7{bottom:154.906667pt;}
.y57{bottom:157.386667pt;}
.y83{bottom:159.946667pt;}
.y27{bottom:161.386667pt;}
.ya6{bottom:170.506667pt;}
.y56{bottom:173.066667pt;}
.y82{bottom:175.626667pt;}
.y26{bottom:176.986667pt;}
.ya5{bottom:186.186667pt;}
.y55{bottom:188.666667pt;}
.y81{bottom:191.226667pt;}
.y25{bottom:192.666667pt;}
.ya4{bottom:201.786667pt;}
.y80{bottom:206.906667pt;}
.y24{bottom:208.266667pt;}
.y54{bottom:212.346667pt;}
.ya3{bottom:217.386667pt;}
.y23{bottom:223.946667pt;}
.ya2{bottom:233.066667pt;}
.y7e{bottom:236.186667pt;}
.y22{bottom:239.546667pt;}
.y53{bottom:243.946667pt;}
.ya1{bottom:248.666667pt;}
.y21{bottom:255.146667pt;}
.y52{bottom:259.546667pt;}
.y7f{bottom:260.506667pt;}
.ya0{bottom:264.266667pt;}
.y20{bottom:270.826667pt;}
.y51{bottom:275.226667pt;}
.y9f{bottom:279.946667pt;}
.y7b{bottom:284.746667pt;}
.y1f{bottom:286.426667pt;}
.y50{bottom:298.826667pt;}
.y1e{bottom:302.106667pt;}
.y9e{bottom:303.866667pt;}
.y7d{bottom:309.066667pt;}
.y1d{bottom:317.706667pt;}
.y4f{bottom:330.426667pt;}
.y1c{bottom:333.306667pt;}
.y7a{bottom:333.386667pt;}
.y9c{bottom:344.426667pt;}
.y4e{bottom:346.826667pt;}
.yc7{bottom:348.746667pt;}
.y1b{bottom:357.226667pt;}
.y78{bottom:357.706667pt;}
.y4d{bottom:363.146667pt;}
.yc6{bottom:364.426667pt;}
.y4c{bottom:379.546667pt;}
.y79{bottom:381.946667pt;}
.yc5{bottom:388.026667pt;}
.y4b{bottom:395.866667pt;}
.y1a{bottom:400.426667pt;}
.yc4{bottom:403.706667pt;}
.y77{bottom:406.266667pt;}
.y99{bottom:408.026667pt;}
.y4a{bottom:412.266667pt;}
.yc3{bottom:427.333333pt;}
.y76{bottom:430.613333pt;}
.y19{bottom:433.413333pt;}
.yc2{bottom:442.933333pt;}
.y49{bottom:444.693333pt;}
.y18{bottom:449.013333pt;}
.y74{bottom:454.933333pt;}
.yc1{bottom:458.613333pt;}
.y48{bottom:460.293333pt;}
.y17{bottom:464.613333pt;}
.y98{bottom:471.573333pt;}
.y75{bottom:479.173333pt;}
.y16{bottom:480.293333pt;}
.yc0{bottom:482.213333pt;}
.y47{bottom:483.973333pt;}
.y15{bottom:495.893333pt;}
.ybf{bottom:497.893333pt;}
.y73{bottom:503.493333pt;}
.y14{bottom:511.573333pt;}
.y46{bottom:515.573333pt;}
.ybe{bottom:521.493333pt;}
.y13{bottom:527.173333pt;}
.y71{bottom:527.813333pt;}
.y45{bottom:531.253333pt;}
.y97{bottom:534.533333pt;}
.ybd{bottom:537.093333pt;}
.y12{bottom:542.773333pt;}
.y44{bottom:546.853333pt;}
.y72{bottom:552.053333pt;}
.y96{bottom:558.133333pt;}
.y11{bottom:558.453333pt;}
.ybc{bottom:560.773333pt;}
.y43{bottom:570.453333pt;}
.y95{bottom:573.733333pt;}
.y10{bottom:574.053333pt;}
.y6d{bottom:576.373333pt;}
.y94{bottom:589.413333pt;}
.yf{bottom:589.733333pt;}
.ybb{bottom:600.053333pt;}
.y6f{bottom:600.693333pt;}
.y42{bottom:602.133333pt;}
.y93{bottom:605.013333pt;}
.ye{bottom:605.333333pt;}
.yba{bottom:615.653333pt;}
.y41{bottom:617.733333pt;}
.y92{bottom:620.693333pt;}
.yd{bottom:620.933333pt;}
.y6a{bottom:625.013333pt;}
.y40{bottom:633.413333pt;}
.y91{bottom:635.653333pt;}
.yc{bottom:636.613333pt;}
.yb9{bottom:639.253333pt;}
.y8f{bottom:646.453333pt;}
.yb8{bottom:654.933333pt;}
.y3f{bottom:657.013333pt;}
.yb{bottom:660.533333pt;}
.y90{bottom:670.773333pt;}
.yb7{bottom:678.533333pt;}
.y69{bottom:687.893333pt;}
.y3e{bottom:688.933333pt;}
.yb6{bottom:694.213333pt;}
.y8d{bottom:695.093333pt;}
.ya{bottom:703.413333pt;}
.yb5{bottom:717.813333pt;}
.y8e{bottom:719.333333pt;}
.y68{bottom:719.573333pt;}
.y3d{bottom:731.813333pt;}
.yb4{bottom:733.413333pt;}
.y67{bottom:735.173333pt;}
.y9{bottom:735.253333pt;}
.y8c{bottom:743.653333pt;}
.y3c{bottom:747.493333pt;}
.y66{bottom:750.773333pt;}
.yb3{bottom:757.333333pt;}
.y3b{bottom:763.093333pt;}
.y65{bottom:766.453333pt;}
.y8{bottom:767.253333pt;}
.y8b{bottom:767.973333pt;}
.y3a{bottom:778.693333pt;}
.y64{bottom:782.053333pt;}
.y88{bottom:792.293333pt;}
.y39{bottom:794.373333pt;}
.y63{bottom:797.733333pt;}
.y7{bottom:799.253333pt;}
.yb2{bottom:800.293333pt;}
.y38{bottom:809.973333pt;}
.y62{bottom:813.333333pt;}
.y8a{bottom:816.533333pt;}
.yb1{bottom:824.213333pt;}
.y37{bottom:825.653333pt;}
.y61{bottom:828.933333pt;}
.y6{bottom:831.333333pt;}
.y86{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:848.533333pt;}
.y35{bottom:856.853333pt;}
.yb0{bottom:857.093333pt;}
.y60{bottom:860.613333pt;}
.y4{bottom:865.733333pt;}
.y5f{bottom:876.213333pt;}
.yaf{bottom:881.013333pt;}
.y34{bottom:888.533333pt;}
.y5e{bottom:891.813333pt;}
.y3{bottom:899.760000pt;}
.y85{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y5d{bottom:907.520000pt;}
.yae{bottom:913.920000pt;}
.y32{bottom:919.840000pt;}
.yad{bottom:929.600000pt;}
.y5c{bottom:931.440000pt;}
.y31{bottom:935.440000pt;}
.yac{bottom:945.200000pt;}
.y30{bottom:951.040000pt;}
.y2f{bottom:966.720000pt;}
.yab{bottom:969.120000pt;}
.y5b{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y5a{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.yaa{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h12{height:36.034687pt;}
.hb{height:43.200000pt;}
.h11{height:43.280000pt;}
.h6{height:45.246562pt;}
.hc{height:47.920000pt;}
.h10{height:48.000000pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h14{height:62.880000pt;}
.h13{height:62.906667pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:43.280000pt;}
.w9{width:43.306667pt;}
.w6{width:56.506667pt;}
.w5{width:67.280000pt;}
.w7{width:71.520000pt;}
.wd{width:82.560000pt;}
.w8{width:82.640000pt;}
.we{width:84.720000pt;}
.wc{width:85.226667pt;}
.w10{width:94.400000pt;}
.wb{width:95.840000pt;}
.w4{width:98.800000pt;}
.w11{width:100.746667pt;}
.wf{width:101.360000pt;}
.w12{width:143.280000pt;}
.wa{width:163.360000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x18{left:98.879988pt;}
.x12{left:111.360000pt;}
.xc{left:124.400000pt;}
.x13{left:155.306667pt;}
.xd{left:168.346667pt;}
.x2{left:170.186655pt;}
.x5{left:185.226667pt;}
.x7{left:229.226667pt;}
.x14{left:240.746667pt;}
.x8{left:328.746667pt;}
.xe{left:332.346667pt;}
.x15{left:342.826667pt;}
.x9{left:396.746667pt;}
.xf{left:428.906667pt;}
.x16{left:437.946667pt;}
.xa{left:453.973333pt;}
.x10{left:514.773333pt;}
.xb{left:526.133333pt;}
.x17{left:539.333333pt;}
.x11{left:587.013333pt;}
.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; }
  