
    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_a9a6b54a5a0d5b7560e56dbb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_14d5cc87dc8a0d928d17b58f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5f8b7592230361f0a2e1ccf7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_639da7fe971025d94180a1f9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls9{letter-spacing:33.984000px;}
.ls8{letter-spacing:51.264000px;}
.ls2{letter-spacing:54.864000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.576000px;}
.ws2{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-4.392000px;}
._b{margin-left:-2.592000px;}
._7{margin-left:-1.284000px;}
._2{width:1.224000px;}
._4{width:2.448000px;}
._5{width:3.456000px;}
._f{width:4.968000px;}
._a{width:6.696000px;}
._3{width:8.568000px;}
._1{width:9.792000px;}
._0{width:10.872000px;}
._9{width:11.880000px;}
._11{width:13.716000px;}
._d{width:14.760000px;}
._6{width:16.344000px;}
._8{width:19.440000px;}
._c{width:20.664000px;}
._10{width:21.744000px;}
._14{width:22.752000px;}
._13{width:24.480000px;}
._12{width:25.920000px;}
._17{width:27.000000px;}
._18{width:28.224000px;}
._1e{width:29.376000px;}
._1f{width:30.444000px;}
._21{width:31.476000px;}
._20{width:32.544000px;}
._19{width:33.984000px;}
._1a{width:35.136000px;}
._22{width:36.276000px;}
._1b{width:42.264000px;}
._1c{width:43.416000px;}
._1d{width:51.840000px;}
._15{width:65.880000px;}
._16{width:78.840000px;}
._23{width:846.300000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.960000px;}
.y8f{bottom:24.660000px;}
.y8d{bottom:24.690000px;}
.y95{bottom:24.705000px;}
.y91{bottom:45.360000px;}
.y8c{bottom:45.390000px;}
.y94{bottom:45.405000px;}
.y2{bottom:58.320000px;}
.y8b{bottom:66.090000px;}
.y1{bottom:78.516000px;}
.ye3{bottom:101.916000px;}
.y7d{bottom:106.416000px;}
.yc2{bottom:107.676000px;}
.yf5{bottom:109.656000px;}
.yae{bottom:110.916000px;}
.y116{bottom:111.636000px;}
.y2e{bottom:112.176000px;}
.y99{bottom:112.536000px;}
.yf4{bottom:119.916000px;}
.y56{bottom:120.636000px;}
.ye2{bottom:122.616000px;}
.y7c{bottom:127.116000px;}
.yc1{bottom:128.376000px;}
.yad{bottom:131.616000px;}
.yf3{bottom:132.156000px;}
.y2d{bottom:132.876000px;}
.y98{bottom:133.236000px;}
.y115{bottom:137.376000px;}
.y55{bottom:141.336000px;}
.ye1{bottom:143.316000px;}
.y7b{bottom:147.816000px;}
.yc0{bottom:149.076000px;}
.y97{bottom:150.690000px;}
.yac{bottom:152.310000px;}
.yf2{bottom:152.850000px;}
.y2c{bottom:153.570000px;}
.y114{bottom:158.070000px;}
.y54{bottom:162.030000px;}
.ye0{bottom:164.010000px;}
.y7a{bottom:168.510000px;}
.ybf{bottom:169.770000px;}
.yab{bottom:173.010000px;}
.yf1{bottom:173.550000px;}
.y2b{bottom:174.270000px;}
.y113{bottom:178.770000px;}
.y53{bottom:182.730000px;}
.ydf{bottom:184.710000px;}
.y79{bottom:189.210000px;}
.ybe{bottom:190.470000px;}
.yaa{bottom:193.710000px;}
.yf0{bottom:194.250000px;}
.y2a{bottom:194.970000px;}
.y112{bottom:199.470000px;}
.y52{bottom:203.430000px;}
.yde{bottom:205.410000px;}
.y78{bottom:209.910000px;}
.ybd{bottom:211.170000px;}
.y96{bottom:213.510000px;}
.ya9{bottom:214.410000px;}
.yef{bottom:214.950000px;}
.y29{bottom:215.670000px;}
.y111{bottom:220.170000px;}
.y51{bottom:224.130000px;}
.ydd{bottom:226.110000px;}
.y77{bottom:230.610000px;}
.ybc{bottom:231.870000px;}
.ya8{bottom:235.110000px;}
.yee{bottom:235.650000px;}
.y28{bottom:236.370000px;}
.y110{bottom:240.870000px;}
.y50{bottom:244.830000px;}
.ydc{bottom:246.810000px;}
.y76{bottom:251.310000px;}
.ybb{bottom:252.570000px;}
.yed{bottom:256.350000px;}
.y27{bottom:257.070000px;}
.y10f{bottom:261.570000px;}
.y4f{bottom:265.530000px;}
.ydb{bottom:267.510000px;}
.y75{bottom:272.010000px;}
.yba{bottom:273.270000px;}
.y93{bottom:276.510000px;}
.yec{bottom:277.050000px;}
.y26{bottom:277.770000px;}
.y10e{bottom:282.270000px;}
.y4e{bottom:287.490000px;}
.yda{bottom:288.210000px;}
.y74{bottom:292.755000px;}
.yb9{bottom:294.015000px;}
.yeb{bottom:297.795000px;}
.y25{bottom:298.515000px;}
.y10d{bottom:303.015000px;}
.y4d{bottom:308.235000px;}
.yd9{bottom:308.955000px;}
.y73{bottom:313.455000px;}
.yb8{bottom:314.715000px;}
.yea{bottom:318.495000px;}
.y24{bottom:319.215000px;}
.y10c{bottom:323.715000px;}
.y4c{bottom:328.935000px;}
.yd8{bottom:329.655000px;}
.y72{bottom:335.415000px;}
.ye9{bottom:339.195000px;}
.y92{bottom:339.375000px;}
.y23{bottom:339.915000px;}
.y10b{bottom:344.415000px;}
.y4b{bottom:349.635000px;}
.yd7{bottom:350.355000px;}
.y71{bottom:356.115000px;}
.ye8{bottom:359.895000px;}
.y22{bottom:360.615000px;}
.y10a{bottom:365.115000px;}
.y4a{bottom:370.335000px;}
.yd6{bottom:371.055000px;}
.y70{bottom:376.815000px;}
.ye7{bottom:380.595000px;}
.y21{bottom:381.315000px;}
.y109{bottom:385.815000px;}
.y49{bottom:391.035000px;}
.yd5{bottom:391.755000px;}
.y6f{bottom:397.515000px;}
.ye6{bottom:401.295000px;}
.y20{bottom:402.015000px;}
.y90{bottom:402.195000px;}
.y108{bottom:406.515000px;}
.y48{bottom:411.735000px;}
.yd4{bottom:412.455000px;}
.y6e{bottom:418.215000px;}
.yb7{bottom:419.475000px;}
.ye5{bottom:421.995000px;}
.y1f{bottom:422.715000px;}
.y107{bottom:427.215000px;}
.y47{bottom:432.435000px;}
.yd3{bottom:433.155000px;}
.y6d{bottom:438.915000px;}
.yb6{bottom:440.175000px;}
.ye4{bottom:442.695000px;}
.y1e{bottom:443.415000px;}
.y106{bottom:447.915000px;}
.y46{bottom:451.155000px;}
.yd2{bottom:453.855000px;}
.y6c{bottom:459.615000px;}
.yb5{bottom:460.875000px;}
.y1d{bottom:462.135000px;}
.y45{bottom:463.395000px;}
.ya7{bottom:464.115000px;}
.y8e{bottom:465.015000px;}
.y105{bottom:468.615000px;}
.y1c{bottom:474.375000px;}
.yd1{bottom:474.555000px;}
.y6b{bottom:480.315000px;}
.yb4{bottom:481.575000px;}
.y44{bottom:484.095000px;}
.ya6{bottom:484.815000px;}
.y104{bottom:489.315000px;}
.y1b{bottom:495.075000px;}
.yd0{bottom:495.255000px;}
.y6a{bottom:501.015000px;}
.yb3{bottom:502.275000px;}
.y43{bottom:504.795000px;}
.ya5{bottom:505.515000px;}
.y8a{bottom:507.135000px;}
.y103{bottom:510.015000px;}
.y1a{bottom:515.775000px;}
.ycf{bottom:515.955000px;}
.y69{bottom:523.005000px;}
.y42{bottom:525.525000px;}
.ya4{bottom:527.505000px;}
.y102{bottom:530.745000px;}
.y19{bottom:534.705000px;}
.yce{bottom:536.685000px;}
.y68{bottom:543.705000px;}
.y41{bottom:546.225000px;}
.y18{bottom:546.945000px;}
.ya3{bottom:548.205000px;}
.y101{bottom:551.445000px;}
.ycd{bottom:557.385000px;}
.y67{bottom:564.405000px;}
.y40{bottom:566.925000px;}
.y17{bottom:567.645000px;}
.ya2{bottom:568.905000px;}
.y100{bottom:572.145000px;}
.ycc{bottom:578.085000px;}
.y66{bottom:585.105000px;}
.y127{bottom:585.825000px;}
.y3f{bottom:587.625000px;}
.y16{bottom:588.345000px;}
.ya1{bottom:589.605000px;}
.y88{bottom:590.685000px;}
.yff{bottom:592.845000px;}
.y126{bottom:598.065000px;}
.ycb{bottom:598.785000px;}
.y65{bottom:605.805000px;}
.y3e{bottom:608.325000px;}
.y15{bottom:609.045000px;}
.ya0{bottom:610.305000px;}
.yfe{bottom:613.545000px;}
.y87{bottom:616.065000px;}
.y125{bottom:618.765000px;}
.yca{bottom:619.485000px;}
.y64{bottom:626.505000px;}
.y3d{bottom:629.025000px;}
.y14{bottom:629.745000px;}
.y9f{bottom:631.005000px;}
.yfd{bottom:634.245000px;}
.y86{bottom:634.965000px;}
.y124{bottom:639.465000px;}
.yc9{bottom:640.185000px;}
.y63{bottom:647.205000px;}
.yb2{bottom:648.465000px;}
.y3c{bottom:649.725000px;}
.y13{bottom:650.445000px;}
.y9e{bottom:651.705000px;}
.yfc{bottom:652.965000px;}
.y123{bottom:660.165000px;}
.yc8{bottom:660.885000px;}
.yfb{bottom:661.965000px;}
.y62{bottom:667.905000px;}
.yb1{bottom:669.165000px;}
.y3b{bottom:670.425000px;}
.y12{bottom:671.145000px;}
.y9d{bottom:672.405000px;}
.y122{bottom:680.865000px;}
.yc7{bottom:681.585000px;}
.y61{bottom:688.605000px;}
.yb0{bottom:689.865000px;}
.y3a{bottom:691.125000px;}
.y11{bottom:691.845000px;}
.y9c{bottom:693.105000px;}
.y121{bottom:701.565000px;}
.yc6{bottom:702.285000px;}
.y60{bottom:709.305000px;}
.yaf{bottom:710.565000px;}
.y39{bottom:711.825000px;}
.y9b{bottom:712.005000px;}
.y10{bottom:712.545000px;}
.y9a{bottom:720.285000px;}
.y120{bottom:722.265000px;}
.yc5{bottom:722.985000px;}
.yfa{bottom:724.785000px;}
.y85{bottom:730.005000px;}
.y5f{bottom:731.265000px;}
.y38{bottom:732.525000px;}
.yf{bottom:733.245000px;}
.yc4{bottom:741.705000px;}
.y11f{bottom:742.965000px;}
.yc3{bottom:749.985000px;}
.y84{bottom:750.705000px;}
.y5e{bottom:751.965000px;}
.y37{bottom:753.225000px;}
.ye{bottom:753.990000px;}
.y11e{bottom:763.710000px;}
.yf9{bottom:767.130000px;}
.y83{bottom:771.450000px;}
.y5d{bottom:772.710000px;}
.y36{bottom:773.970000px;}
.yd{bottom:774.690000px;}
.y11d{bottom:784.410000px;}
.y82{bottom:792.150000px;}
.y5c{bottom:793.410000px;}
.y35{bottom:794.670000px;}
.yc{bottom:795.390000px;}
.y11c{bottom:805.110000px;}
.y81{bottom:812.850000px;}
.y5b{bottom:814.110000px;}
.y34{bottom:815.370000px;}
.yb{bottom:815.910000px;}
.y11b{bottom:825.810000px;}
.yf8{bottom:829.950000px;}
.y5a{bottom:834.810000px;}
.y33{bottom:836.070000px;}
.ya{bottom:836.610000px;}
.y11a{bottom:846.510000px;}
.y9{bottom:855.510000px;}
.y32{bottom:856.770000px;}
.y119{bottom:867.210000px;}
.yf7{bottom:872.070000px;}
.y8{bottom:872.610000px;}
.y59{bottom:876.210000px;}
.y31{bottom:877.470000px;}
.y118{bottom:887.910000px;}
.y7{bottom:893.310000px;}
.y58{bottom:896.910000px;}
.y30{bottom:898.170000px;}
.y117{bottom:906.630000px;}
.y6{bottom:914.010000px;}
.y57{bottom:917.610000px;}
.y2f{bottom:918.870000px;}
.yf6{bottom:934.890000px;}
.y80{bottom:938.310000px;}
.y5{bottom:939.570000px;}
.y7f{bottom:959.010000px;}
.y4{bottom:960.270000px;}
.y7e{bottom:979.710000px;}
.y3{bottom:980.970000px;}
.h7{height:20.700000px;}
.h6{height:25.400391px;}
.h5{height:32.273438px;}
.h9{height:41.400000px;}
.hd{height:41.436000px;}
.h3{height:50.800781px;}
.hc{height:61.920000px;}
.ha{height:62.100000px;}
.hb{height:62.136000px;}
.h4{height:64.546875px;}
.h2{height:67.824844px;}
.h8{height:82.836000px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w7{width:103.860000px;}
.w6{width:116.496000px;}
.w3{width:130.680000px;}
.w4{width:134.496000px;}
.w8{width:194.430000px;}
.w5{width:198.570000px;}
.w9{width:282.495000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x9{left:95.075988px;}
.x4{left:118.295988px;}
.xa{left:122.075988px;}
.xf{left:126.035988px;}
.x12{left:169.589988px;}
.x14{left:200.370000px;}
.xc{left:227.190000px;}
.x7{left:264.134988px;}
.x5{left:294.734988px;}
.x6{left:311.114988px;}
.x8{left:324.974988px;}
.x3{left:335.414988px;}
.xd{left:362.415000px;}
.x1{left:378.614988px;}
.x2{left:386.894988px;}
.x15{left:395.715000px;}
.x11{left:400.394988px;}
.xe{left:561.705000px;}
.x13{left:599.549988px;}
.x10{left:662.549988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls8{letter-spacing:45.568000pt;}
.ls2{letter-spacing:48.768000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.512000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-3.904000pt;}
._b{margin-left:-2.304000pt;}
._7{margin-left:-1.141333pt;}
._2{width:1.088000pt;}
._4{width:2.176000pt;}
._5{width:3.072000pt;}
._f{width:4.416000pt;}
._a{width:5.952000pt;}
._3{width:7.616000pt;}
._1{width:8.704000pt;}
._0{width:9.664000pt;}
._9{width:10.560000pt;}
._11{width:12.192000pt;}
._d{width:13.120000pt;}
._6{width:14.528000pt;}
._8{width:17.280000pt;}
._c{width:18.368000pt;}
._10{width:19.328000pt;}
._14{width:20.224000pt;}
._13{width:21.760000pt;}
._12{width:23.040000pt;}
._17{width:24.000000pt;}
._18{width:25.088000pt;}
._1e{width:26.112000pt;}
._1f{width:27.061333pt;}
._21{width:27.978667pt;}
._20{width:28.928000pt;}
._19{width:30.208000pt;}
._1a{width:31.232000pt;}
._22{width:32.245333pt;}
._1b{width:37.568000pt;}
._1c{width:38.592000pt;}
._1d{width:46.080000pt;}
._15{width:58.560000pt;}
._16{width:70.080000pt;}
._23{width:752.266667pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:3.520000pt;}
.y8f{bottom:21.920000pt;}
.y8d{bottom:21.946667pt;}
.y95{bottom:21.960000pt;}
.y91{bottom:40.320000pt;}
.y8c{bottom:40.346667pt;}
.y94{bottom:40.360000pt;}
.y2{bottom:51.840000pt;}
.y8b{bottom:58.746667pt;}
.y1{bottom:69.792000pt;}
.ye3{bottom:90.592000pt;}
.y7d{bottom:94.592000pt;}
.yc2{bottom:95.712000pt;}
.yf5{bottom:97.472000pt;}
.yae{bottom:98.592000pt;}
.y116{bottom:99.232000pt;}
.y2e{bottom:99.712000pt;}
.y99{bottom:100.032000pt;}
.yf4{bottom:106.592000pt;}
.y56{bottom:107.232000pt;}
.ye2{bottom:108.992000pt;}
.y7c{bottom:112.992000pt;}
.yc1{bottom:114.112000pt;}
.yad{bottom:116.992000pt;}
.yf3{bottom:117.472000pt;}
.y2d{bottom:118.112000pt;}
.y98{bottom:118.432000pt;}
.y115{bottom:122.112000pt;}
.y55{bottom:125.632000pt;}
.ye1{bottom:127.392000pt;}
.y7b{bottom:131.392000pt;}
.yc0{bottom:132.512000pt;}
.y97{bottom:133.946667pt;}
.yac{bottom:135.386667pt;}
.yf2{bottom:135.866667pt;}
.y2c{bottom:136.506667pt;}
.y114{bottom:140.506667pt;}
.y54{bottom:144.026667pt;}
.ye0{bottom:145.786667pt;}
.y7a{bottom:149.786667pt;}
.ybf{bottom:150.906667pt;}
.yab{bottom:153.786667pt;}
.yf1{bottom:154.266667pt;}
.y2b{bottom:154.906667pt;}
.y113{bottom:158.906667pt;}
.y53{bottom:162.426667pt;}
.ydf{bottom:164.186667pt;}
.y79{bottom:168.186667pt;}
.ybe{bottom:169.306667pt;}
.yaa{bottom:172.186667pt;}
.yf0{bottom:172.666667pt;}
.y2a{bottom:173.306667pt;}
.y112{bottom:177.306667pt;}
.y52{bottom:180.826667pt;}
.yde{bottom:182.586667pt;}
.y78{bottom:186.586667pt;}
.ybd{bottom:187.706667pt;}
.y96{bottom:189.786667pt;}
.ya9{bottom:190.586667pt;}
.yef{bottom:191.066667pt;}
.y29{bottom:191.706667pt;}
.y111{bottom:195.706667pt;}
.y51{bottom:199.226667pt;}
.ydd{bottom:200.986667pt;}
.y77{bottom:204.986667pt;}
.ybc{bottom:206.106667pt;}
.ya8{bottom:208.986667pt;}
.yee{bottom:209.466667pt;}
.y28{bottom:210.106667pt;}
.y110{bottom:214.106667pt;}
.y50{bottom:217.626667pt;}
.ydc{bottom:219.386667pt;}
.y76{bottom:223.386667pt;}
.ybb{bottom:224.506667pt;}
.yed{bottom:227.866667pt;}
.y27{bottom:228.506667pt;}
.y10f{bottom:232.506667pt;}
.y4f{bottom:236.026667pt;}
.ydb{bottom:237.786667pt;}
.y75{bottom:241.786667pt;}
.yba{bottom:242.906667pt;}
.y93{bottom:245.786667pt;}
.yec{bottom:246.266667pt;}
.y26{bottom:246.906667pt;}
.y10e{bottom:250.906667pt;}
.y4e{bottom:255.546667pt;}
.yda{bottom:256.186667pt;}
.y74{bottom:260.226667pt;}
.yb9{bottom:261.346667pt;}
.yeb{bottom:264.706667pt;}
.y25{bottom:265.346667pt;}
.y10d{bottom:269.346667pt;}
.y4d{bottom:273.986667pt;}
.yd9{bottom:274.626667pt;}
.y73{bottom:278.626667pt;}
.yb8{bottom:279.746667pt;}
.yea{bottom:283.106667pt;}
.y24{bottom:283.746667pt;}
.y10c{bottom:287.746667pt;}
.y4c{bottom:292.386667pt;}
.yd8{bottom:293.026667pt;}
.y72{bottom:298.146667pt;}
.ye9{bottom:301.506667pt;}
.y92{bottom:301.666667pt;}
.y23{bottom:302.146667pt;}
.y10b{bottom:306.146667pt;}
.y4b{bottom:310.786667pt;}
.yd7{bottom:311.426667pt;}
.y71{bottom:316.546667pt;}
.ye8{bottom:319.906667pt;}
.y22{bottom:320.546667pt;}
.y10a{bottom:324.546667pt;}
.y4a{bottom:329.186667pt;}
.yd6{bottom:329.826667pt;}
.y70{bottom:334.946667pt;}
.ye7{bottom:338.306667pt;}
.y21{bottom:338.946667pt;}
.y109{bottom:342.946667pt;}
.y49{bottom:347.586667pt;}
.yd5{bottom:348.226667pt;}
.y6f{bottom:353.346667pt;}
.ye6{bottom:356.706667pt;}
.y20{bottom:357.346667pt;}
.y90{bottom:357.506667pt;}
.y108{bottom:361.346667pt;}
.y48{bottom:365.986667pt;}
.yd4{bottom:366.626667pt;}
.y6e{bottom:371.746667pt;}
.yb7{bottom:372.866667pt;}
.ye5{bottom:375.106667pt;}
.y1f{bottom:375.746667pt;}
.y107{bottom:379.746667pt;}
.y47{bottom:384.386667pt;}
.yd3{bottom:385.026667pt;}
.y6d{bottom:390.146667pt;}
.yb6{bottom:391.266667pt;}
.ye4{bottom:393.506667pt;}
.y1e{bottom:394.146667pt;}
.y106{bottom:398.146667pt;}
.y46{bottom:401.026667pt;}
.yd2{bottom:403.426667pt;}
.y6c{bottom:408.546667pt;}
.yb5{bottom:409.666667pt;}
.y1d{bottom:410.786667pt;}
.y45{bottom:411.906667pt;}
.ya7{bottom:412.546667pt;}
.y8e{bottom:413.346667pt;}
.y105{bottom:416.546667pt;}
.y1c{bottom:421.666667pt;}
.yd1{bottom:421.826667pt;}
.y6b{bottom:426.946667pt;}
.yb4{bottom:428.066667pt;}
.y44{bottom:430.306667pt;}
.ya6{bottom:430.946667pt;}
.y104{bottom:434.946667pt;}
.y1b{bottom:440.066667pt;}
.yd0{bottom:440.226667pt;}
.y6a{bottom:445.346667pt;}
.yb3{bottom:446.466667pt;}
.y43{bottom:448.706667pt;}
.ya5{bottom:449.346667pt;}
.y8a{bottom:450.786667pt;}
.y103{bottom:453.346667pt;}
.y1a{bottom:458.466667pt;}
.ycf{bottom:458.626667pt;}
.y69{bottom:464.893333pt;}
.y42{bottom:467.133333pt;}
.ya4{bottom:468.893333pt;}
.y102{bottom:471.773333pt;}
.y19{bottom:475.293333pt;}
.yce{bottom:477.053333pt;}
.y68{bottom:483.293333pt;}
.y41{bottom:485.533333pt;}
.y18{bottom:486.173333pt;}
.ya3{bottom:487.293333pt;}
.y101{bottom:490.173333pt;}
.ycd{bottom:495.453333pt;}
.y67{bottom:501.693333pt;}
.y40{bottom:503.933333pt;}
.y17{bottom:504.573333pt;}
.ya2{bottom:505.693333pt;}
.y100{bottom:508.573333pt;}
.ycc{bottom:513.853333pt;}
.y66{bottom:520.093333pt;}
.y127{bottom:520.733333pt;}
.y3f{bottom:522.333333pt;}
.y16{bottom:522.973333pt;}
.ya1{bottom:524.093333pt;}
.y88{bottom:525.053333pt;}
.yff{bottom:526.973333pt;}
.y126{bottom:531.613333pt;}
.ycb{bottom:532.253333pt;}
.y65{bottom:538.493333pt;}
.y3e{bottom:540.733333pt;}
.y15{bottom:541.373333pt;}
.ya0{bottom:542.493333pt;}
.yfe{bottom:545.373333pt;}
.y87{bottom:547.613333pt;}
.y125{bottom:550.013333pt;}
.yca{bottom:550.653333pt;}
.y64{bottom:556.893333pt;}
.y3d{bottom:559.133333pt;}
.y14{bottom:559.773333pt;}
.y9f{bottom:560.893333pt;}
.yfd{bottom:563.773333pt;}
.y86{bottom:564.413333pt;}
.y124{bottom:568.413333pt;}
.yc9{bottom:569.053333pt;}
.y63{bottom:575.293333pt;}
.yb2{bottom:576.413333pt;}
.y3c{bottom:577.533333pt;}
.y13{bottom:578.173333pt;}
.y9e{bottom:579.293333pt;}
.yfc{bottom:580.413333pt;}
.y123{bottom:586.813333pt;}
.yc8{bottom:587.453333pt;}
.yfb{bottom:588.413333pt;}
.y62{bottom:593.693333pt;}
.yb1{bottom:594.813333pt;}
.y3b{bottom:595.933333pt;}
.y12{bottom:596.573333pt;}
.y9d{bottom:597.693333pt;}
.y122{bottom:605.213333pt;}
.yc7{bottom:605.853333pt;}
.y61{bottom:612.093333pt;}
.yb0{bottom:613.213333pt;}
.y3a{bottom:614.333333pt;}
.y11{bottom:614.973333pt;}
.y9c{bottom:616.093333pt;}
.y121{bottom:623.613333pt;}
.yc6{bottom:624.253333pt;}
.y60{bottom:630.493333pt;}
.yaf{bottom:631.613333pt;}
.y39{bottom:632.733333pt;}
.y9b{bottom:632.893333pt;}
.y10{bottom:633.373333pt;}
.y9a{bottom:640.253333pt;}
.y120{bottom:642.013333pt;}
.yc5{bottom:642.653333pt;}
.yfa{bottom:644.253333pt;}
.y85{bottom:648.893333pt;}
.y5f{bottom:650.013333pt;}
.y38{bottom:651.133333pt;}
.yf{bottom:651.773333pt;}
.yc4{bottom:659.293333pt;}
.y11f{bottom:660.413333pt;}
.yc3{bottom:666.653333pt;}
.y84{bottom:667.293333pt;}
.y5e{bottom:668.413333pt;}
.y37{bottom:669.533333pt;}
.ye{bottom:670.213333pt;}
.y11e{bottom:678.853333pt;}
.yf9{bottom:681.893333pt;}
.y83{bottom:685.733333pt;}
.y5d{bottom:686.853333pt;}
.y36{bottom:687.973333pt;}
.yd{bottom:688.613333pt;}
.y11d{bottom:697.253333pt;}
.y82{bottom:704.133333pt;}
.y5c{bottom:705.253333pt;}
.y35{bottom:706.373333pt;}
.yc{bottom:707.013333pt;}
.y11c{bottom:715.653333pt;}
.y81{bottom:722.533333pt;}
.y5b{bottom:723.653333pt;}
.y34{bottom:724.773333pt;}
.yb{bottom:725.253333pt;}
.y11b{bottom:734.053333pt;}
.yf8{bottom:737.733333pt;}
.y5a{bottom:742.053333pt;}
.y33{bottom:743.173333pt;}
.ya{bottom:743.653333pt;}
.y11a{bottom:752.453333pt;}
.y9{bottom:760.453333pt;}
.y32{bottom:761.573333pt;}
.y119{bottom:770.853333pt;}
.yf7{bottom:775.173333pt;}
.y8{bottom:775.653333pt;}
.y59{bottom:778.853333pt;}
.y31{bottom:779.973333pt;}
.y118{bottom:789.253333pt;}
.y7{bottom:794.053333pt;}
.y58{bottom:797.253333pt;}
.y30{bottom:798.373333pt;}
.y117{bottom:805.893333pt;}
.y6{bottom:812.453333pt;}
.y57{bottom:815.653333pt;}
.y2f{bottom:816.773333pt;}
.yf6{bottom:831.013333pt;}
.y80{bottom:834.053333pt;}
.y5{bottom:835.173333pt;}
.y7f{bottom:852.453333pt;}
.y4{bottom:853.573333pt;}
.y7e{bottom:870.853333pt;}
.y3{bottom:871.973333pt;}
.h7{height:18.400000pt;}
.h6{height:22.578125pt;}
.h5{height:28.687500pt;}
.h9{height:36.800000pt;}
.hd{height:36.832000pt;}
.h3{height:45.156250pt;}
.hc{height:55.040000pt;}
.ha{height:55.200000pt;}
.hb{height:55.232000pt;}
.h4{height:57.375000pt;}
.h2{height:60.288750pt;}
.h8{height:73.632000pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w7{width:92.320000pt;}
.w6{width:103.552000pt;}
.w3{width:116.160000pt;}
.w4{width:119.552000pt;}
.w8{width:172.826667pt;}
.w5{width:176.506667pt;}
.w9{width:251.106667pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x9{left:84.511990pt;}
.x4{left:105.151990pt;}
.xa{left:108.511990pt;}
.xf{left:112.031990pt;}
.x12{left:150.746656pt;}
.x14{left:178.106667pt;}
.xc{left:201.946667pt;}
.x7{left:234.786656pt;}
.x5{left:261.986656pt;}
.x6{left:276.546656pt;}
.x8{left:288.866656pt;}
.x3{left:298.146656pt;}
.xd{left:322.146667pt;}
.x1{left:336.546656pt;}
.x2{left:343.906656pt;}
.x15{left:351.746667pt;}
.x11{left:355.906656pt;}
.xe{left:499.293333pt;}
.x13{left:532.933323pt;}
.x10{left:588.933323pt;}
}




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