
    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_2ab0a845001a4ca7d85385d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_ce613f605a50b1ef41be5c55.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_7fd81688058f93ba6f16712e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_176059e838c1c985a4e8d2a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_10f2d3512ee9491239b23c6b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fb2e46d13904b0ef1dc6e1cb.woff2')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_cc885b25aaf9240cfca119d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.924000px;}
.ls13{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.206400px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.513600px;}
.ls3{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.512000px;}
.lsd{letter-spacing:3.780000px;}
.ls15{letter-spacing:11.466720px;}
.ls8{letter-spacing:22.986720px;}
.ls12{letter-spacing:41.706720px;}
.lsc{letter-spacing:114.570720px;}
.ls9{letter-spacing:137.610720px;}
.ls2{letter-spacing:161.370720px;}
.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;}
}
.ws0{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.453600px;}
.ws7{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-2771.782320px;}
._9{margin-left:-1578.070080px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-930.967920px;}
._d{margin-left:-721.224720px;}
._e{margin-left:-693.074160px;}
._18{margin-left:-595.620000px;}
._19{margin-left:-579.160800px;}
._a{margin-left:-568.955520px;}
._15{margin-left:-538.559640px;}
._29{margin-left:-490.134240px;}
._28{margin-left:-475.320000px;}
._1c{margin-left:-459.504000px;}
._16{margin-left:-428.114160px;}
._1d{margin-left:-324.534240px;}
._f{margin-left:-215.280000px;}
._1b{margin-left:-181.416000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.807360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-143.280000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-5.071200px;}
._2a{margin-left:-3.645360px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._1e{width:3.708720px;}
._23{width:4.977360px;}
._25{width:6.100560px;}
._24{width:7.290720px;}
._2b{width:8.964000px;}
._21{width:10.218960px;}
._20{width:11.473920px;}
._22{width:12.627360px;}
._1f{width:13.703760px;}
._26{width:16.153920px;}
._27{width:19.009680px;}
._2c{width:20.187360px;}
._2e{width:21.544560px;}
._2d{width:36.214560px;}
._2f{width:39.570480px;}
._30{width:40.875840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.660000px;}
.y6e{bottom:87.840000px;}
.y6d{bottom:107.820000px;}
.y34{bottom:118.260000px;}
.yd3{bottom:121.320000px;}
.y6c{bottom:127.260000px;}
.y94{bottom:131.400000px;}
.y33{bottom:138.060000px;}
.yd2{bottom:141.120000px;}
.y6b{bottom:147.060000px;}
.y93{bottom:151.380000px;}
.y32{bottom:157.860000px;}
.ya7{bottom:158.940000px;}
.yd1{bottom:160.920000px;}
.y6a{bottom:163.620000px;}
.y92{bottom:171.180000px;}
.y5b{bottom:171.900000px;}
.yec{bottom:172.440000px;}
.y31{bottom:177.660000px;}
.ya6{bottom:178.920000px;}
.yd0{bottom:180.720000px;}
.y91{bottom:190.980000px;}
.y5a{bottom:191.700000px;}
.yeb{bottom:192.240000px;}
.y30{bottom:197.460000px;}
.ya5{bottom:198.720000px;}
.ycf{bottom:200.730000px;}
.y90{bottom:210.810000px;}
.y59{bottom:211.530000px;}
.yea{bottom:212.070000px;}
.y2f{bottom:217.470000px;}
.ya4{bottom:218.550000px;}
.yce{bottom:220.530000px;}
.y8f{bottom:230.610000px;}
.y58{bottom:231.510000px;}
.ye9{bottom:231.870000px;}
.y2e{bottom:237.270000px;}
.ya3{bottom:238.350000px;}
.ycd{bottom:240.330000px;}
.y8e{bottom:250.590000px;}
.y57{bottom:251.310000px;}
.ye8{bottom:251.850000px;}
.y2d{bottom:257.070000px;}
.yb6{bottom:257.610000px;}
.ya2{bottom:258.150000px;}
.ycc{bottom:260.130000px;}
.y8d{bottom:270.390000px;}
.y56{bottom:271.110000px;}
.ye7{bottom:271.650000px;}
.y2c{bottom:276.870000px;}
.yb5{bottom:277.590000px;}
.ya1{bottom:277.770000px;}
.ycb{bottom:279.930000px;}
.y8c{bottom:290.190000px;}
.y55{bottom:290.910000px;}
.ye6{bottom:291.450000px;}
.ya0{bottom:294.330000px;}
.y2b{bottom:296.670000px;}
.yb4{bottom:297.390000px;}
.yca{bottom:299.910000px;}
.y8b{bottom:309.990000px;}
.y54{bottom:310.710000px;}
.ye5{bottom:311.250000px;}
.y2a{bottom:316.650000px;}
.y7f{bottom:317.190000px;}
.yc9{bottom:319.710000px;}
.y8a{bottom:329.430000px;}
.y53{bottom:330.690000px;}
.ye4{bottom:331.050000px;}
.y29{bottom:336.450000px;}
.y7e{bottom:336.990000px;}
.yc8{bottom:339.510000px;}
.y89{bottom:349.410000px;}
.y52{bottom:350.130000px;}
.ye3{bottom:351.030000px;}
.y28{bottom:356.250000px;}
.y7d{bottom:356.790000px;}
.yc7{bottom:359.310000px;}
.y88{bottom:366.150000px;}
.y51{bottom:366.690000px;}
.ye2{bottom:370.830000px;}
.y27{bottom:376.050000px;}
.yb3{bottom:376.410000px;}
.y7c{bottom:376.770000px;}
.yc6{bottom:379.110000px;}
.ye1{bottom:390.630000px;}
.yb2{bottom:393.150000px;}
.y26{bottom:395.850000px;}
.y7b{bottom:396.570000px;}
.yc5{bottom:399.090000px;}
.ye0{bottom:410.430000px;}
.y25{bottom:415.830000px;}
.y7a{bottom:416.370000px;}
.yc4{bottom:418.530000px;}
.ydf{bottom:430.230000px;}
.y24{bottom:435.630000px;}
.y79{bottom:436.170000px;}
.yc3{bottom:438.735000px;}
.yde{bottom:450.255000px;}
.y23{bottom:455.475000px;}
.y78{bottom:456.015000px;}
.yc2{bottom:458.535000px;}
.ydd{bottom:470.055000px;}
.y22{bottom:475.275000px;}
.y77{bottom:475.995000px;}
.yc1{bottom:478.335000px;}
.ydc{bottom:489.855000px;}
.y21{bottom:495.075000px;}
.y76{bottom:495.795000px;}
.yc0{bottom:498.315000px;}
.ydb{bottom:509.655000px;}
.y20{bottom:515.055000px;}
.y75{bottom:515.595000px;}
.ybf{bottom:518.115000px;}
.yda{bottom:529.455000px;}
.y1f{bottom:534.855000px;}
.y74{bottom:535.395000px;}
.ybe{bottom:537.915000px;}
.yd9{bottom:549.435000px;}
.y1e{bottom:554.655000px;}
.y73{bottom:555.195000px;}
.ybd{bottom:557.715000px;}
.yd8{bottom:569.235000px;}
.y1d{bottom:574.455000px;}
.y72{bottom:575.175000px;}
.ybc{bottom:577.515000px;}
.yd7{bottom:589.035000px;}
.y1c{bottom:594.255000px;}
.y71{bottom:594.975000px;}
.ybb{bottom:597.495000px;}
.yd6{bottom:608.835000px;}
.y1b{bottom:614.235000px;}
.y70{bottom:614.415000px;}
.yba{bottom:617.295000px;}
.yd5{bottom:628.635000px;}
.y6f{bottom:631.155000px;}
.y1a{bottom:634.035000px;}
.yb9{bottom:637.095000px;}
.y50{bottom:648.615000px;}
.y19{bottom:653.835000px;}
.y9f{bottom:656.895000px;}
.y69{bottom:660.495000px;}
.y4f{bottom:668.415000px;}
.y18{bottom:673.665000px;}
.yb8{bottom:676.365000px;}
.y9e{bottom:676.725000px;}
.y68{bottom:680.325000px;}
.y4e{bottom:688.245000px;}
.y17{bottom:693.465000px;}
.y9d{bottom:696.705000px;}
.y87{bottom:698.505000px;}
.y67{bottom:700.125000px;}
.y4d{bottom:708.045000px;}
.y16{bottom:713.445000px;}
.y9c{bottom:716.505000px;}
.y86{bottom:718.305000px;}
.y66{bottom:719.925000px;}
.yb1{bottom:725.505000px;}
.y4c{bottom:727.485000px;}
.yd4{bottom:727.845000px;}
.y15{bottom:733.245000px;}
.y9b{bottom:736.305000px;}
.y85{bottom:738.105000px;}
.y65{bottom:739.725000px;}
.yb0{bottom:745.305000px;}
.y4b{bottom:747.825000px;}
.y14{bottom:753.045000px;}
.y9a{bottom:756.105000px;}
.y84{bottom:757.905000px;}
.y64{bottom:759.705000px;}
.yaf{bottom:765.105000px;}
.y4a{bottom:767.625000px;}
.y13{bottom:772.485000px;}
.y99{bottom:775.905000px;}
.y83{bottom:777.885000px;}
.y63{bottom:779.505000px;}
.yae{bottom:784.905000px;}
.y49{bottom:787.425000px;}
.y12{bottom:792.645000px;}
.y98{bottom:795.525000px;}
.yb7{bottom:795.885000px;}
.y82{bottom:797.325000px;}
.y62{bottom:799.305000px;}
.yad{bottom:804.885000px;}
.y48{bottom:807.225000px;}
.y11{bottom:814.785000px;}
.y97{bottom:815.325000px;}
.y81{bottom:817.125000px;}
.y61{bottom:819.105000px;}
.yac{bottom:824.685000px;}
.y47{bottom:827.025000px;}
.y80{bottom:833.865000px;}
.y96{bottom:835.125000px;}
.y60{bottom:838.905000px;}
.y10{bottom:843.585000px;}
.yab{bottom:844.485000px;}
.y46{bottom:847.005000px;}
.y95{bottom:851.865000px;}
.y5f{bottom:858.885000px;}
.yf{bottom:863.385000px;}
.yaa{bottom:864.285000px;}
.y45{bottom:866.805000px;}
.y5e{bottom:878.685000px;}
.ye{bottom:883.365000px;}
.ya9{bottom:883.725000px;}
.y44{bottom:886.605000px;}
.y5d{bottom:898.125000px;}
.ya8{bottom:900.465000px;}
.yd{bottom:903.165000px;}
.y43{bottom:906.405000px;}
.y5c{bottom:914.910000px;}
.yc{bottom:925.350000px;}
.y42{bottom:926.250000px;}
.y41{bottom:946.230000px;}
.yb{bottom:950.370000px;}
.y40{bottom:966.030000px;}
.ya{bottom:970.170000px;}
.y9{bottom:985.110000px;}
.y3f{bottom:985.830000px;}
.y3e{bottom:1005.630000px;}
.y8{bottom:1006.170000px;}
.y3d{bottom:1025.430000px;}
.y7{bottom:1029.750000px;}
.y3c{bottom:1045.410000px;}
.y3b{bottom:1065.210000px;}
.y5{bottom:1068.630000px;}
.y3a{bottom:1085.010000px;}
.y4{bottom:1099.410000px;}
.y39{bottom:1104.810000px;}
.y38{bottom:1124.610000px;}
.y3{bottom:1130.370000px;}
.y37{bottom:1144.590000px;}
.y2{bottom:1161.180000px;}
.y36{bottom:1164.420000px;}
.y1{bottom:1192.140000px;}
.y35{bottom:1193.580000px;}
.h7{height:38.158594px;}
.hb{height:43.215117px;}
.h9{height:58.651172px;}
.h8{height:59.614102px;}
.h5{height:60.226875px;}
.hc{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.xf{left:69.119987px;}
.xe{left:79.559987px;}
.x13{left:80.999987px;}
.x6{left:83.519987px;}
.xc{left:99.575987px;}
.x14{left:108.035987px;}
.xd{left:169.949987px;}
.x12{left:183.089987px;}
.x4{left:201.989987px;}
.xa{left:203.069987px;}
.x8{left:206.309987px;}
.x11{left:209.549987px;}
.x5{left:665.969987px;}
.x3{left:676.049987px;}
.xb{left:717.629987px;}
.x7{left:719.429987px;}
.x9{left:788.549987px;}
.x2{left:795.749987px;}
.x10{left:832.859987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.821333pt;}
.ls13{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.456533pt;}
.ls3{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.344000pt;}
.lsd{letter-spacing:3.360000pt;}
.ls15{letter-spacing:10.192640pt;}
.ls8{letter-spacing:20.432640pt;}
.ls12{letter-spacing:37.072640pt;}
.lsc{letter-spacing:101.840640pt;}
.ls9{letter-spacing:122.320640pt;}
.ls2{letter-spacing:143.440640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws9{word-spacing:-13.736533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-2463.806507pt;}
._9{margin-left:-1402.728960pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-827.527040pt;}
._d{margin-left:-641.088640pt;}
._e{margin-left:-616.065920pt;}
._18{margin-left:-529.440000pt;}
._19{margin-left:-514.809600pt;}
._a{margin-left:-505.738240pt;}
._15{margin-left:-478.719680pt;}
._29{margin-left:-435.674880pt;}
._28{margin-left:-422.506667pt;}
._1c{margin-left:-408.448000pt;}
._16{margin-left:-380.545920pt;}
._1d{margin-left:-288.474880pt;}
._f{margin-left:-191.360000pt;}
._1b{margin-left:-161.258667pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-142.050987pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-127.360000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.507733pt;}
._2a{margin-left:-3.240320pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._1e{width:3.296640pt;}
._23{width:4.424320pt;}
._25{width:5.422720pt;}
._24{width:6.480640pt;}
._2b{width:7.968000pt;}
._21{width:9.083520pt;}
._20{width:10.199040pt;}
._22{width:11.224320pt;}
._1f{width:12.181120pt;}
._26{width:14.359040pt;}
._27{width:16.897493pt;}
._2c{width:17.944320pt;}
._2e{width:19.150720pt;}
._2d{width:32.190720pt;}
._2f{width:35.173760pt;}
._30{width:36.334080pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.920000pt;}
.y6e{bottom:78.080000pt;}
.y6d{bottom:95.840000pt;}
.y34{bottom:105.120000pt;}
.yd3{bottom:107.840000pt;}
.y6c{bottom:113.120000pt;}
.y94{bottom:116.800000pt;}
.y33{bottom:122.720000pt;}
.yd2{bottom:125.440000pt;}
.y6b{bottom:130.720000pt;}
.y93{bottom:134.560000pt;}
.y32{bottom:140.320000pt;}
.ya7{bottom:141.280000pt;}
.yd1{bottom:143.040000pt;}
.y6a{bottom:145.440000pt;}
.y92{bottom:152.160000pt;}
.y5b{bottom:152.800000pt;}
.yec{bottom:153.280000pt;}
.y31{bottom:157.920000pt;}
.ya6{bottom:159.040000pt;}
.yd0{bottom:160.640000pt;}
.y91{bottom:169.760000pt;}
.y5a{bottom:170.400000pt;}
.yeb{bottom:170.880000pt;}
.y30{bottom:175.520000pt;}
.ya5{bottom:176.640000pt;}
.ycf{bottom:178.426667pt;}
.y90{bottom:187.386667pt;}
.y59{bottom:188.026667pt;}
.yea{bottom:188.506667pt;}
.y2f{bottom:193.306667pt;}
.ya4{bottom:194.266667pt;}
.yce{bottom:196.026667pt;}
.y8f{bottom:204.986667pt;}
.y58{bottom:205.786667pt;}
.ye9{bottom:206.106667pt;}
.y2e{bottom:210.906667pt;}
.ya3{bottom:211.866667pt;}
.ycd{bottom:213.626667pt;}
.y8e{bottom:222.746667pt;}
.y57{bottom:223.386667pt;}
.ye8{bottom:223.866667pt;}
.y2d{bottom:228.506667pt;}
.yb6{bottom:228.986667pt;}
.ya2{bottom:229.466667pt;}
.ycc{bottom:231.226667pt;}
.y8d{bottom:240.346667pt;}
.y56{bottom:240.986667pt;}
.ye7{bottom:241.466667pt;}
.y2c{bottom:246.106667pt;}
.yb5{bottom:246.746667pt;}
.ya1{bottom:246.906667pt;}
.ycb{bottom:248.826667pt;}
.y8c{bottom:257.946667pt;}
.y55{bottom:258.586667pt;}
.ye6{bottom:259.066667pt;}
.ya0{bottom:261.626667pt;}
.y2b{bottom:263.706667pt;}
.yb4{bottom:264.346667pt;}
.yca{bottom:266.586667pt;}
.y8b{bottom:275.546667pt;}
.y54{bottom:276.186667pt;}
.ye5{bottom:276.666667pt;}
.y2a{bottom:281.466667pt;}
.y7f{bottom:281.946667pt;}
.yc9{bottom:284.186667pt;}
.y8a{bottom:292.826667pt;}
.y53{bottom:293.946667pt;}
.ye4{bottom:294.266667pt;}
.y29{bottom:299.066667pt;}
.y7e{bottom:299.546667pt;}
.yc8{bottom:301.786667pt;}
.y89{bottom:310.586667pt;}
.y52{bottom:311.226667pt;}
.ye3{bottom:312.026667pt;}
.y28{bottom:316.666667pt;}
.y7d{bottom:317.146667pt;}
.yc7{bottom:319.386667pt;}
.y88{bottom:325.466667pt;}
.y51{bottom:325.946667pt;}
.ye2{bottom:329.626667pt;}
.y27{bottom:334.266667pt;}
.yb3{bottom:334.586667pt;}
.y7c{bottom:334.906667pt;}
.yc6{bottom:336.986667pt;}
.ye1{bottom:347.226667pt;}
.yb2{bottom:349.466667pt;}
.y26{bottom:351.866667pt;}
.y7b{bottom:352.506667pt;}
.yc5{bottom:354.746667pt;}
.ye0{bottom:364.826667pt;}
.y25{bottom:369.626667pt;}
.y7a{bottom:370.106667pt;}
.yc4{bottom:372.026667pt;}
.ydf{bottom:382.426667pt;}
.y24{bottom:387.226667pt;}
.y79{bottom:387.706667pt;}
.yc3{bottom:389.986667pt;}
.yde{bottom:400.226667pt;}
.y23{bottom:404.866667pt;}
.y78{bottom:405.346667pt;}
.yc2{bottom:407.586667pt;}
.ydd{bottom:417.826667pt;}
.y22{bottom:422.466667pt;}
.y77{bottom:423.106667pt;}
.yc1{bottom:425.186667pt;}
.ydc{bottom:435.426667pt;}
.y21{bottom:440.066667pt;}
.y76{bottom:440.706667pt;}
.yc0{bottom:442.946667pt;}
.ydb{bottom:453.026667pt;}
.y20{bottom:457.826667pt;}
.y75{bottom:458.306667pt;}
.ybf{bottom:460.546667pt;}
.yda{bottom:470.626667pt;}
.y1f{bottom:475.426667pt;}
.y74{bottom:475.906667pt;}
.ybe{bottom:478.146667pt;}
.yd9{bottom:488.386667pt;}
.y1e{bottom:493.026667pt;}
.y73{bottom:493.506667pt;}
.ybd{bottom:495.746667pt;}
.yd8{bottom:505.986667pt;}
.y1d{bottom:510.626667pt;}
.y72{bottom:511.266667pt;}
.ybc{bottom:513.346667pt;}
.yd7{bottom:523.586667pt;}
.y1c{bottom:528.226667pt;}
.y71{bottom:528.866667pt;}
.ybb{bottom:531.106667pt;}
.yd6{bottom:541.186667pt;}
.y1b{bottom:545.986667pt;}
.y70{bottom:546.146667pt;}
.yba{bottom:548.706667pt;}
.yd5{bottom:558.786667pt;}
.y6f{bottom:561.026667pt;}
.y1a{bottom:563.586667pt;}
.yb9{bottom:566.306667pt;}
.y50{bottom:576.546667pt;}
.y19{bottom:581.186667pt;}
.y9f{bottom:583.906667pt;}
.y69{bottom:587.106667pt;}
.y4f{bottom:594.146667pt;}
.y18{bottom:598.813333pt;}
.yb8{bottom:601.213333pt;}
.y9e{bottom:601.533333pt;}
.y68{bottom:604.733333pt;}
.y4e{bottom:611.773333pt;}
.y17{bottom:616.413333pt;}
.y9d{bottom:619.293333pt;}
.y87{bottom:620.893333pt;}
.y67{bottom:622.333333pt;}
.y4d{bottom:629.373333pt;}
.y16{bottom:634.173333pt;}
.y9c{bottom:636.893333pt;}
.y86{bottom:638.493333pt;}
.y66{bottom:639.933333pt;}
.yb1{bottom:644.893333pt;}
.y4c{bottom:646.653333pt;}
.yd4{bottom:646.973333pt;}
.y15{bottom:651.773333pt;}
.y9b{bottom:654.493333pt;}
.y85{bottom:656.093333pt;}
.y65{bottom:657.533333pt;}
.yb0{bottom:662.493333pt;}
.y4b{bottom:664.733333pt;}
.y14{bottom:669.373333pt;}
.y9a{bottom:672.093333pt;}
.y84{bottom:673.693333pt;}
.y64{bottom:675.293333pt;}
.yaf{bottom:680.093333pt;}
.y4a{bottom:682.333333pt;}
.y13{bottom:686.653333pt;}
.y99{bottom:689.693333pt;}
.y83{bottom:691.453333pt;}
.y63{bottom:692.893333pt;}
.yae{bottom:697.693333pt;}
.y49{bottom:699.933333pt;}
.y12{bottom:704.573333pt;}
.y98{bottom:707.133333pt;}
.yb7{bottom:707.453333pt;}
.y82{bottom:708.733333pt;}
.y62{bottom:710.493333pt;}
.yad{bottom:715.453333pt;}
.y48{bottom:717.533333pt;}
.y11{bottom:724.253333pt;}
.y97{bottom:724.733333pt;}
.y81{bottom:726.333333pt;}
.y61{bottom:728.093333pt;}
.yac{bottom:733.053333pt;}
.y47{bottom:735.133333pt;}
.y80{bottom:741.213333pt;}
.y96{bottom:742.333333pt;}
.y60{bottom:745.693333pt;}
.y10{bottom:749.853333pt;}
.yab{bottom:750.653333pt;}
.y46{bottom:752.893333pt;}
.y95{bottom:757.213333pt;}
.y5f{bottom:763.453333pt;}
.yf{bottom:767.453333pt;}
.yaa{bottom:768.253333pt;}
.y45{bottom:770.493333pt;}
.y5e{bottom:781.053333pt;}
.ye{bottom:785.213333pt;}
.ya9{bottom:785.533333pt;}
.y44{bottom:788.093333pt;}
.y5d{bottom:798.333333pt;}
.ya8{bottom:800.413333pt;}
.yd{bottom:802.813333pt;}
.y43{bottom:805.693333pt;}
.y5c{bottom:813.253333pt;}
.yc{bottom:822.533333pt;}
.y42{bottom:823.333333pt;}
.y41{bottom:841.093333pt;}
.yb{bottom:844.773333pt;}
.y40{bottom:858.693333pt;}
.ya{bottom:862.373333pt;}
.y9{bottom:875.653333pt;}
.y3f{bottom:876.293333pt;}
.y3e{bottom:893.893333pt;}
.y8{bottom:894.373333pt;}
.y3d{bottom:911.493333pt;}
.y7{bottom:915.333333pt;}
.y3c{bottom:929.253333pt;}
.y3b{bottom:946.853333pt;}
.y5{bottom:949.893333pt;}
.y3a{bottom:964.453333pt;}
.y4{bottom:977.253333pt;}
.y39{bottom:982.053333pt;}
.y38{bottom:999.653333pt;}
.y3{bottom:1004.773333pt;}
.y37{bottom:1017.413333pt;}
.y2{bottom:1032.160000pt;}
.y36{bottom:1035.040000pt;}
.y1{bottom:1059.680000pt;}
.y35{bottom:1060.960000pt;}
.h7{height:33.918750pt;}
.hb{height:38.413438pt;}
.h9{height:52.134375pt;}
.h8{height:52.990313pt;}
.h5{height:53.535000pt;}
.hc{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.xf{left:61.439988pt;}
.xe{left:70.719988pt;}
.x13{left:71.999988pt;}
.x6{left:74.239988pt;}
.xc{left:88.511988pt;}
.x14{left:96.031988pt;}
.xd{left:151.066655pt;}
.x12{left:162.746655pt;}
.x4{left:179.546655pt;}
.xa{left:180.506655pt;}
.x8{left:183.386655pt;}
.x11{left:186.266655pt;}
.x5{left:591.973322pt;}
.x3{left:600.933322pt;}
.xb{left:637.893322pt;}
.x7{left:639.493322pt;}
.x9{left:700.933322pt;}
.x2{left:707.333322pt;}
.x10{left:740.319988pt;}
}




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