
    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_88c892f04082fdbf946b276e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3804ae860a3d60512e0687cd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bdf0d3f6f52e8074c4268f71.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_2f06bd5864d3715d1ee6f278.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_05410613d9f6fba5b284f6c9.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_1c4a2d982a6a9d79f3ed8fcf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_74a5d888977684b12eeb39ad.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v2{vertical-align:24.120000px;}
.ls8{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.lse{letter-spacing:-0.063600px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.098400px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.180000px;}
.ls0{letter-spacing:13.347360px;}
.ls15{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wse{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:-8.625600px;}
.wsd{word-spacing:-8.614200px;}
.ws8{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._3{margin-left:-3.190800px;}
._a{margin-left:-2.125873px;}
._0{margin-left:-1.110000px;}
._1{width:1.090272px;}
._4{width:2.104200px;}
._2{width:3.547200px;}
._d{width:4.629240px;}
._e{width:5.659439px;}
._5{width:6.673200px;}
._b{width:8.476800px;}
._8{width:9.739200px;}
._9{width:10.882201px;}
._c{width:12.217800px;}
._f{width:15.030000px;}
._10{width:16.773480px;}
._7{width:18.336600px;}
._6{width:19.599000px;}
._11{width:20.946001px;}
._12{width:25.130160px;}
._13{width:92.344320px;}
._14{width:93.508273px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:4.500000px;}
.y41{bottom:7.830000px;}
.y90{bottom:7.860000px;}
.y43{bottom:7.920000px;}
.y45{bottom:10.530000px;}
.ye8{bottom:13.410000px;}
.ye7{bottom:35.460000px;}
.ye6{bottom:53.100000px;}
.ye5{bottom:70.650000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.ye4{bottom:92.790000px;}
.y1{bottom:100.200000px;}
.y51{bottom:112.710000px;}
.ye3{bottom:114.840000px;}
.y79{bottom:124.140000px;}
.y9e{bottom:125.130000px;}
.y50{bottom:127.740000px;}
.y26{bottom:129.360000px;}
.yc1{bottom:138.360000px;}
.y78{bottom:141.690000px;}
.y9d{bottom:142.770000px;}
.y25{bottom:146.910000px;}
.y4f{bottom:155.010000px;}
.y9c{bottom:160.320000px;}
.y24{bottom:164.550000px;}
.yc0{bottom:164.910000px;}
.y77{bottom:174.990000px;}
.y9b{bottom:177.870000px;}
.y4e{bottom:182.370000px;}
.ybf{bottom:182.550000px;}
.ye9{bottom:188.040000px;}
.y23{bottom:200.100000px;}
.y76{bottom:202.710000px;}
.ye1{bottom:203.070000px;}
.ybe{bottom:209.100000px;}
.y4d{bottom:209.730000px;}
.y9a{bottom:213.510000px;}
.y22{bottom:217.650000px;}
.ybd{bottom:226.650000px;}
.y75{bottom:230.430000px;}
.y99{bottom:231.060000px;}
.y21{bottom:235.290000px;}
.y4c{bottom:237.090000px;}
.y98{bottom:248.700000px;}
.y20{bottom:252.840000px;}
.ybc{bottom:253.290000px;}
.y74{bottom:258.150000px;}
.y4b{bottom:264.360000px;}
.y97{bottom:266.250000px;}
.y1f{bottom:270.390000px;}
.ybb{bottom:279.840000px;}
.y73{bottom:285.870000px;}
.y1e{bottom:288.030000px;}
.y96{bottom:293.160000px;}
.yba{bottom:306.480000px;}
.y4a{bottom:313.050000px;}
.y1d{bottom:323.580000px;}
.yb9{bottom:324.030000px;}
.y72{bottom:334.920000px;}
.y1c{bottom:341.220000px;}
.y95{bottom:341.400000px;}
.yb8{bottom:341.580000px;}
.y49{bottom:348.690000px;}
.ye0{bottom:350.040000px;}
.y1b{bottom:358.770000px;}
.y94{bottom:359.040000px;}
.y48{bottom:363.630000px;}
.yb7{bottom:368.220000px;}
.y71{bottom:370.560000px;}
.y1a{bottom:376.320000px;}
.y93{bottom:376.590000px;}
.yb6{bottom:385.770000px;}
.y70{bottom:388.110000px;}
.y47{bottom:390.990000px;}
.ydf{bottom:398.370000px;}
.y6f{bottom:405.660000px;}
.y92{bottom:409.530000px;}
.y19{bottom:411.960000px;}
.yb5{bottom:412.410000px;}
.y46{bottom:418.350000px;}
.yde{bottom:424.920000px;}
.y18{bottom:429.510000px;}
.yb4{bottom:429.960000px;}
.y6e{bottom:432.570000px;}
.y91{bottom:436.890000px;}
.ydd{bottom:442.470000px;}
.y17{bottom:447.150000px;}
.y44{bottom:448.320000px;}
.yb3{bottom:456.510000px;}
.y8f{bottom:464.250000px;}
.ydc{bottom:469.110000px;}
.yb2{bottom:474.180000px;}
.y42{bottom:478.320000px;}
.y6d{bottom:480.840000px;}
.y16{bottom:482.730000px;}
.ydb{bottom:486.690000px;}
.y8e{bottom:491.640000px;}
.y6c{bottom:499.290000px;}
.y15{bottom:500.280000px;}
.yb1{bottom:500.730000px;}
.yda{bottom:504.330000px;}
.y40{bottom:505.680000px;}
.y6b{bottom:517.740000px;}
.y14{bottom:517.920000px;}
.y8d{bottom:518.910000px;}
.yb0{bottom:527.370000px;}
.yd9{bottom:530.880000px;}
.y13{bottom:544.830000px;}
.yaf{bottom:544.920000px;}
.y6a{bottom:545.190000px;}
.y8c{bottom:546.270000px;}
.yd8{bottom:548.430000px;}
.y3f{bottom:554.370000px;}
.yd7{bottom:566.070000px;}
.yae{bottom:571.830000px;}
.y8b{bottom:573.630000px;}
.y69{bottom:580.740000px;}
.y3e{bottom:590.010000px;}
.yd6{bottom:592.620000px;}
.y12{bottom:593.430000px;}
.y8a{bottom:600.990000px;}
.yd5{bottom:610.260000px;}
.y68{bottom:616.290000px;}
.y3d{bottom:616.560000px;}
.yad{bottom:620.070000px;}
.y89{bottom:628.260000px;}
.y11{bottom:630.420000px;}
.yd4{bottom:636.810000px;}
.y67{bottom:642.930000px;}
.yac{bottom:646.980000px;}
.y10{bottom:647.970000px;}
.y3c{bottom:649.140000px;}
.yd3{bottom:654.360000px;}
.y88{bottom:655.620000px;}
.yf{bottom:665.610000px;}
.y66{bottom:678.480000px;}
.yd2{bottom:681.000000px;}
.ye{bottom:683.160000px;}
.yab{bottom:684.060000px;}
.y3b{bottom:684.690000px;}
.y65{bottom:696.120000px;}
.yd{bottom:700.800000px;}
.y87{bottom:704.310000px;}
.yd1{bottom:707.550000px;}
.yaa{bottom:710.970000px;}
.y3a{bottom:711.330000px;}
.y64{bottom:713.670000px;}
.yc{bottom:718.350000px;}
.yd0{bottom:725.190000px;}
.yb{bottom:735.900000px;}
.y86{bottom:739.950000px;}
.y63{bottom:740.220000px;}
.y39{bottom:746.880000px;}
.ya9{bottom:747.960000px;}
.ycf{bottom:751.740000px;}
.y85{bottom:757.500000px;}
.ya{bottom:762.810000px;}
.yce{bottom:769.290000px;}
.y38{bottom:773.520000px;}
.ya8{bottom:774.870000px;}
.y62{bottom:775.860000px;}
.ycd{bottom:786.930000px;}
.y84{bottom:790.800000px;}
.y61{bottom:793.410000px;}
.y37{bottom:809.340000px;}
.y60{bottom:811.050000px;}
.y9{bottom:811.140000px;}
.ya7{bottom:811.860000px;}
.ycc{bottom:813.480000px;}
.y83{bottom:818.520000px;}
.y5f{bottom:828.600000px;}
.ya6{bottom:829.500000px;}
.ycb{bottom:831.030000px;}
.y5e{bottom:846.150000px;}
.y82{bottom:846.240000px;}
.y8{bottom:846.960000px;}
.yca{bottom:848.670000px;}
.ya5{bottom:856.410000px;}
.y36{bottom:857.670000px;}
.y5d{bottom:863.790000px;}
.y81{bottom:873.960000px;}
.y35{bottom:875.220000px;}
.y5c{bottom:881.340000px;}
.y7{bottom:882.960000px;}
.y34{bottom:892.860000px;}
.ya4{bottom:893.760000px;}
.y5b{bottom:898.890000px;}
.y80{bottom:901.680000px;}
.y5a{bottom:916.530000px;}
.y6{bottom:918.960000px;}
.yc9{bottom:919.410000px;}
.y33{bottom:928.410000px;}
.y59{bottom:934.080000px;}
.y5{bottom:936.960000px;}
.ya3{bottom:942.000000px;}
.y32{bottom:945.960000px;}
.y7f{bottom:950.730000px;}
.y58{bottom:951.720000px;}
.ya2{bottom:959.550000px;}
.yc8{bottom:963.600000px;}
.y4{bottom:973.050000px;}
.ya1{bottom:977.190000px;}
.y57{bottom:978.270000px;}
.yc7{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.y7e{bottom:986.370000px;}
.ya0{bottom:994.740000px;}
.y30{bottom:999.150000px;}
.y7d{bottom:1003.920000px;}
.yc6{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y56{bottom:1013.850000px;}
.y2f{bottom:1016.820000px;}
.y9f{bottom:1021.680000px;}
.yc5{bottom:1025.370000px;}
.y7c{bottom:1036.890000px;}
.y55{bottom:1040.490000px;}
.yc4{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.y7b{bottom:1064.250000px;}
.y2d{bottom:1069.920000px;}
.y54{bottom:1075.950000px;}
.yc3{bottom:1078.560000px;}
.y2c{bottom:1087.560000px;}
.y7a{bottom:1091.610000px;}
.y53{bottom:1094.400000px;}
.yc2{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y52{bottom:1112.850000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hf{height:26.580000px;}
.hb{height:26.640000px;}
.hd{height:29.250000px;}
.hc{height:29.280000px;}
.h2{height:32.918906px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.he{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h10{height:133.560000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:47.010000px;}
.w10{width:48.150000px;}
.w9{width:49.770000px;}
.wf{width:51.750000px;}
.we{width:52.020000px;}
.wb{width:54.540000px;}
.w3{width:57.060000px;}
.wc{width:63.360000px;}
.wa{width:65.160000px;}
.w6{width:89.460000px;}
.w8{width:92.190000px;}
.w11{width:92.280000px;}
.w7{width:93.780000px;}
.w15{width:140.070000px;}
.w13{width:165.540000px;}
.w14{width:209.160000px;}
.w12{width:276.780000px;}
.w5{width:384.240000px;}
.w4{width:413.130000px;}
.w16{width:614.910000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:95.039987px;}
.x19{left:111.239987px;}
.x17{left:120.150000px;}
.x1a{left:132.330000px;}
.x2{left:192.719987px;}
.x1b{left:209.550000px;}
.x4{left:211.170000px;}
.x7{left:225.660000px;}
.xd{left:252.570000px;}
.x6{left:268.950000px;}
.x8{left:283.440000px;}
.xe{left:303.060000px;}
.xa{left:307.920000px;}
.x14{left:328.530000px;}
.xf{left:369.030000px;}
.x15{left:377.760000px;}
.xb{left:398.370000px;}
.x10{left:424.380000px;}
.x16{left:472.530000px;}
.x11{left:488.460000px;}
.xc{left:493.230000px;}
.x12{left:536.190000px;}
.x18{left:564.000000px;}
.x13{left:588.930000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v2{vertical-align:21.440000pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.lse{letter-spacing:-0.056533pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.087467pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.160000pt;}
.ls0{letter-spacing:11.864320pt;}
.ls15{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:-7.667200pt;}
.wsd{word-spacing:-7.657067pt;}
.ws8{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._3{margin-left:-2.836267pt;}
._a{margin-left:-1.889665pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969131pt;}
._4{width:1.870400pt;}
._2{width:3.153067pt;}
._d{width:4.114880pt;}
._e{width:5.030613pt;}
._5{width:5.931733pt;}
._b{width:7.534933pt;}
._8{width:8.657066pt;}
._9{width:9.673068pt;}
._c{width:10.860267pt;}
._f{width:13.360000pt;}
._10{width:14.909760pt;}
._7{width:16.299200pt;}
._6{width:17.421333pt;}
._11{width:18.618668pt;}
._12{width:22.337920pt;}
._13{width:82.083840pt;}
._14{width:83.118465pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:4.000000pt;}
.y41{bottom:6.960000pt;}
.y90{bottom:6.986667pt;}
.y43{bottom:7.040000pt;}
.y45{bottom:9.360000pt;}
.ye8{bottom:11.920000pt;}
.ye7{bottom:31.520000pt;}
.ye6{bottom:47.200000pt;}
.ye5{bottom:62.800000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.ye4{bottom:82.480000pt;}
.y1{bottom:89.066667pt;}
.y51{bottom:100.186667pt;}
.ye3{bottom:102.080000pt;}
.y79{bottom:110.346667pt;}
.y9e{bottom:111.226667pt;}
.y50{bottom:113.546667pt;}
.y26{bottom:114.986667pt;}
.yc1{bottom:122.986667pt;}
.y78{bottom:125.946667pt;}
.y9d{bottom:126.906667pt;}
.y25{bottom:130.586667pt;}
.y4f{bottom:137.786667pt;}
.y9c{bottom:142.506667pt;}
.y24{bottom:146.266667pt;}
.yc0{bottom:146.586667pt;}
.y77{bottom:155.546667pt;}
.y9b{bottom:158.106667pt;}
.y4e{bottom:162.106667pt;}
.ybf{bottom:162.266667pt;}
.ye9{bottom:167.146667pt;}
.y23{bottom:177.866667pt;}
.y76{bottom:180.186667pt;}
.ye1{bottom:180.506667pt;}
.ybe{bottom:185.866667pt;}
.y4d{bottom:186.426667pt;}
.y9a{bottom:189.786667pt;}
.y22{bottom:193.466667pt;}
.ybd{bottom:201.466667pt;}
.y75{bottom:204.826667pt;}
.y99{bottom:205.386667pt;}
.y21{bottom:209.146667pt;}
.y4c{bottom:210.746667pt;}
.y98{bottom:221.066667pt;}
.y20{bottom:224.746667pt;}
.ybc{bottom:225.146667pt;}
.y74{bottom:229.466667pt;}
.y4b{bottom:234.986667pt;}
.y97{bottom:236.666667pt;}
.y1f{bottom:240.346667pt;}
.ybb{bottom:248.746667pt;}
.y73{bottom:254.106667pt;}
.y1e{bottom:256.026667pt;}
.y96{bottom:260.586667pt;}
.yba{bottom:272.426667pt;}
.y4a{bottom:278.266667pt;}
.y1d{bottom:287.626667pt;}
.yb9{bottom:288.026667pt;}
.y72{bottom:297.706667pt;}
.y1c{bottom:303.306667pt;}
.y95{bottom:303.466667pt;}
.yb8{bottom:303.626667pt;}
.y49{bottom:309.946667pt;}
.ye0{bottom:311.146667pt;}
.y1b{bottom:318.906667pt;}
.y94{bottom:319.146667pt;}
.y48{bottom:323.226667pt;}
.yb7{bottom:327.306667pt;}
.y71{bottom:329.386667pt;}
.y1a{bottom:334.506667pt;}
.y93{bottom:334.746667pt;}
.yb6{bottom:342.906667pt;}
.y70{bottom:344.986667pt;}
.y47{bottom:347.546667pt;}
.ydf{bottom:354.106667pt;}
.y6f{bottom:360.586667pt;}
.y92{bottom:364.026667pt;}
.y19{bottom:366.186667pt;}
.yb5{bottom:366.586667pt;}
.y46{bottom:371.866667pt;}
.yde{bottom:377.706667pt;}
.y18{bottom:381.786667pt;}
.yb4{bottom:382.186667pt;}
.y6e{bottom:384.506667pt;}
.y91{bottom:388.346667pt;}
.ydd{bottom:393.306667pt;}
.y17{bottom:397.466667pt;}
.y44{bottom:398.506667pt;}
.yb3{bottom:405.786667pt;}
.y8f{bottom:412.666667pt;}
.ydc{bottom:416.986667pt;}
.yb2{bottom:421.493333pt;}
.y42{bottom:425.173333pt;}
.y6d{bottom:427.413333pt;}
.y16{bottom:429.093333pt;}
.ydb{bottom:432.613333pt;}
.y8e{bottom:437.013333pt;}
.y6c{bottom:443.813333pt;}
.y15{bottom:444.693333pt;}
.yb1{bottom:445.093333pt;}
.yda{bottom:448.293333pt;}
.y40{bottom:449.493333pt;}
.y6b{bottom:460.213333pt;}
.y14{bottom:460.373333pt;}
.y8d{bottom:461.253333pt;}
.yb0{bottom:468.773333pt;}
.yd9{bottom:471.893333pt;}
.y13{bottom:484.293333pt;}
.yaf{bottom:484.373333pt;}
.y6a{bottom:484.613333pt;}
.y8c{bottom:485.573333pt;}
.yd8{bottom:487.493333pt;}
.y3f{bottom:492.773333pt;}
.yd7{bottom:503.173333pt;}
.yae{bottom:508.293333pt;}
.y8b{bottom:509.893333pt;}
.y69{bottom:516.213333pt;}
.y3e{bottom:524.453333pt;}
.yd6{bottom:526.773333pt;}
.y12{bottom:527.493333pt;}
.y8a{bottom:534.213333pt;}
.yd5{bottom:542.453333pt;}
.y68{bottom:547.813333pt;}
.y3d{bottom:548.053333pt;}
.yad{bottom:551.173333pt;}
.y89{bottom:558.453333pt;}
.y11{bottom:560.373333pt;}
.yd4{bottom:566.053333pt;}
.y67{bottom:571.493333pt;}
.yac{bottom:575.093333pt;}
.y10{bottom:575.973333pt;}
.y3c{bottom:577.013333pt;}
.yd3{bottom:581.653333pt;}
.y88{bottom:582.773333pt;}
.yf{bottom:591.653333pt;}
.y66{bottom:603.093333pt;}
.yd2{bottom:605.333333pt;}
.ye{bottom:607.253333pt;}
.yab{bottom:608.053333pt;}
.y3b{bottom:608.613333pt;}
.y65{bottom:618.773333pt;}
.yd{bottom:622.933333pt;}
.y87{bottom:626.053333pt;}
.yd1{bottom:628.933333pt;}
.yaa{bottom:631.973333pt;}
.y3a{bottom:632.293333pt;}
.y64{bottom:634.373333pt;}
.yc{bottom:638.533333pt;}
.yd0{bottom:644.613333pt;}
.yb{bottom:654.133333pt;}
.y86{bottom:657.733333pt;}
.y63{bottom:657.973333pt;}
.y39{bottom:663.893333pt;}
.ya9{bottom:664.853333pt;}
.ycf{bottom:668.213333pt;}
.y85{bottom:673.333333pt;}
.ya{bottom:678.053333pt;}
.yce{bottom:683.813333pt;}
.y38{bottom:687.573333pt;}
.ya8{bottom:688.773333pt;}
.y62{bottom:689.653333pt;}
.ycd{bottom:699.493333pt;}
.y84{bottom:702.933333pt;}
.y61{bottom:705.253333pt;}
.y37{bottom:719.413333pt;}
.y60{bottom:720.933333pt;}
.y9{bottom:721.013333pt;}
.ya7{bottom:721.653333pt;}
.ycc{bottom:723.093333pt;}
.y83{bottom:727.573333pt;}
.y5f{bottom:736.533333pt;}
.ya6{bottom:737.333333pt;}
.ycb{bottom:738.693333pt;}
.y5e{bottom:752.133333pt;}
.y82{bottom:752.213333pt;}
.y8{bottom:752.853333pt;}
.yca{bottom:754.373333pt;}
.ya5{bottom:761.253333pt;}
.y36{bottom:762.373333pt;}
.y5d{bottom:767.813333pt;}
.y81{bottom:776.853333pt;}
.y35{bottom:777.973333pt;}
.y5c{bottom:783.413333pt;}
.y7{bottom:784.853333pt;}
.y34{bottom:793.653333pt;}
.ya4{bottom:794.453333pt;}
.y5b{bottom:799.013333pt;}
.y80{bottom:801.493333pt;}
.y5a{bottom:814.693333pt;}
.y6{bottom:816.853333pt;}
.yc9{bottom:817.253333pt;}
.y33{bottom:825.253333pt;}
.y59{bottom:830.293333pt;}
.y5{bottom:832.853333pt;}
.ya3{bottom:837.333333pt;}
.y32{bottom:840.853333pt;}
.y7f{bottom:845.093333pt;}
.y58{bottom:845.973333pt;}
.ya2{bottom:852.933333pt;}
.yc8{bottom:856.533333pt;}
.y4{bottom:864.933333pt;}
.ya1{bottom:868.613333pt;}
.y57{bottom:869.573333pt;}
.yc7{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.y7e{bottom:876.773333pt;}
.ya0{bottom:884.213333pt;}
.y30{bottom:888.133333pt;}
.y7d{bottom:892.373333pt;}
.yc6{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y56{bottom:901.200000pt;}
.y2f{bottom:903.840000pt;}
.y9f{bottom:908.160000pt;}
.yc5{bottom:911.440000pt;}
.y7c{bottom:921.680000pt;}
.y55{bottom:924.880000pt;}
.yc4{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.y7b{bottom:946.000000pt;}
.y2d{bottom:951.040000pt;}
.y54{bottom:956.400000pt;}
.yc3{bottom:958.720000pt;}
.y2c{bottom:966.720000pt;}
.y7a{bottom:970.320000pt;}
.y53{bottom:972.800000pt;}
.yc2{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y52{bottom:989.200000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hf{height:23.626667pt;}
.hb{height:23.680000pt;}
.hd{height:26.000000pt;}
.hc{height:26.026667pt;}
.h2{height:29.261250pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.he{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h10{height:118.720000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:41.786667pt;}
.w10{width:42.800000pt;}
.w9{width:44.240000pt;}
.wf{width:46.000000pt;}
.we{width:46.240000pt;}
.wb{width:48.480000pt;}
.w3{width:50.720000pt;}
.wc{width:56.320000pt;}
.wa{width:57.920000pt;}
.w6{width:79.520000pt;}
.w8{width:81.946667pt;}
.w11{width:82.026667pt;}
.w7{width:83.360000pt;}
.w15{width:124.506667pt;}
.w13{width:147.146667pt;}
.w14{width:185.920000pt;}
.w12{width:246.026667pt;}
.w5{width:341.546667pt;}
.w4{width:367.226667pt;}
.w16{width:546.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:84.479988pt;}
.x19{left:98.879988pt;}
.x17{left:106.800000pt;}
.x1a{left:117.626667pt;}
.x2{left:171.306655pt;}
.x1b{left:186.266667pt;}
.x4{left:187.706667pt;}
.x7{left:200.586667pt;}
.xd{left:224.506667pt;}
.x6{left:239.066667pt;}
.x8{left:251.946667pt;}
.xe{left:269.386667pt;}
.xa{left:273.706667pt;}
.x14{left:292.026667pt;}
.xf{left:328.026667pt;}
.x15{left:335.786667pt;}
.xb{left:354.106667pt;}
.x10{left:377.226667pt;}
.x16{left:420.026667pt;}
.x11{left:434.186667pt;}
.xc{left:438.426667pt;}
.x12{left:476.613333pt;}
.x18{left:501.333333pt;}
.x13{left:523.493333pt;}
.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; }
  