
    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_829eac5104b51119a409e101.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_6e8b50b1bcd47b51e22982b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_f0dd15c7a56483e863943370.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929688;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_e8ef8823b0e087b942658c20.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768555;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_4918aca2501c4b93f6a40c22.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_208fef02dbf6495ed9bd1a4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_fce162d15a8e24572022fac0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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;}
.lse{letter-spacing:-0.768000px;}
.ls16{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.538800px;}
.ls15{letter-spacing:-0.450600px;}
.ls14{letter-spacing:-0.414600px;}
.ls12{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.223800px;}
.ls7{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.034560px;}
.lsb{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.109200px;}
.ls1c{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.181200px;}
.ls3{letter-spacing:0.234000px;}
.ls1a{letter-spacing:0.262200px;}
.lsa{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.305280px;}
.ls1b{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls13{letter-spacing:16.865280px;}
.lsd{letter-spacing:17.460000px;}
.ls17{letter-spacing:20.465280px;}
.ls2{letter-spacing:31.860000px;}
.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;}
}
.ws14{word-spacing:-16.865400px;}
.ws12{word-spacing:-16.822200px;}
.ws13{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.407600px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.229520px;}
.ws9{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.241200px;}
.ws8{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.836200px;}
.wse{word-spacing:-11.700000px;}
.wsf{word-spacing:-11.609400px;}
.wsc{word-spacing:-11.521200px;}
.wsa{word-spacing:-11.292000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-5.664960px;}
._13{margin-left:-4.438080px;}
._d{margin-left:-3.235680px;}
._c{margin-left:-2.214000px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._3{width:2.430000px;}
._4{width:4.104000px;}
._a{width:5.184000px;}
._9{width:6.372000px;}
._7{width:7.618320px;}
._6{width:9.180000px;}
._10{width:10.368000px;}
._11{width:11.435040px;}
._14{width:12.610080px;}
._15{width:13.810320px;}
._1d{width:14.871600px;}
._5{width:15.984000px;}
._f{width:17.982000px;}
._1b{width:19.209600px;}
._2{width:20.280000px;}
._18{width:21.423600px;}
._8{width:22.518000px;}
._1e{width:24.118560px;}
._1c{width:25.136640px;}
._12{width:26.628480px;}
._16{width:28.260000px;}
._21{width:30.130560px;}
._e{width:31.530000px;}
._17{width:33.214800px;}
._1a{width:34.446960px;}
._19{width:35.460000px;}
._b{width:41.988000px;}
._29{width:43.652160px;}
._32{width:44.910720px;}
._2e{width:46.368000px;}
._24{width:47.626560px;}
._20{width:51.858240px;}
._2c{width:53.089440px;}
._25{width:59.094000px;}
._26{width:60.605280px;}
._23{width:70.493520px;}
._2a{width:72.599040px;}
._2b{width:74.391120px;}
._28{width:81.332160px;}
._33{width:93.667920px;}
._2f{width:109.892160px;}
._31{width:115.456320px;}
._22{width:142.402800px;}
._2d{width:191.272080px;}
._30{width:247.273920px;}
._27{width:255.752640px;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:5.220000px;}
.y2{bottom:5.400000px;}
.y4b{bottom:6.480000px;}
.y4c{bottom:10.260000px;}
.y5{bottom:21.810000px;}
.y37{bottom:23.040000px;}
.y8{bottom:23.790000px;}
.y36{bottom:40.860000px;}
.y4{bottom:41.610000px;}
.y7{bottom:43.590000px;}
.ya{bottom:56.340000px;}
.y35{bottom:58.680000px;}
.y3{bottom:61.950000px;}
.y6{bottom:63.390000px;}
.y34{bottom:76.725000px;}
.y33{bottom:94.545000px;}
.y90{bottom:110.376000px;}
.y32{bottom:112.365000px;}
.yac{bottom:114.876000px;}
.y52{bottom:117.936000px;}
.y8f{bottom:124.236000px;}
.y8e{bottom:128.736000px;}
.yb5{bottom:129.996000px;}
.y31{bottom:130.185000px;}
.y8d{bottom:137.916000px;}
.y51{bottom:139.716000px;}
.y8c{bottom:142.416000px;}
.y30{bottom:148.005000px;}
.y8b{bottom:151.770000px;}
.yb4{bottom:151.950000px;}
.yab{bottom:156.270000px;}
.y50{bottom:161.490000px;}
.y8a{bottom:165.630000px;}
.y2f{bottom:165.825000px;}
.y89{bottom:170.130000px;}
.yb3{bottom:173.730000px;}
.y88{bottom:179.310000px;}
.ya1{bottom:180.390000px;}
.y4f{bottom:183.450000px;}
.y9c{bottom:183.810000px;}
.y2e{bottom:183.825000px;}
.y87{bottom:193.170000px;}
.yb2{bottom:195.510000px;}
.ya5{bottom:197.670000px;}
.y2d{bottom:201.645000px;}
.y4e{bottom:205.230000px;}
.y86{bottom:207.030000px;}
.y85{bottom:211.530000px;}
.ya0{bottom:217.290000px;}
.y2c{bottom:219.465000px;}
.y84{bottom:220.710000px;}
.y9b{bottom:225.210000px;}
.y4d{bottom:227.010000px;}
.y83{bottom:234.570000px;}
.y9a{bottom:235.650000px;}
.y2b{bottom:237.285000px;}
.y82{bottom:239.070000px;}
.y9f{bottom:239.250000px;}
.y4a{bottom:242.490000px;}
.y81{bottom:248.430000px;}
.y96{bottom:249.330000px;}
.yaa{bottom:252.930000px;}
.y2a{bottom:255.105000px;}
.y9e{bottom:261.030000px;}
.y80{bottom:262.110000px;}
.ya9{bottom:263.190000px;}
.y7f{bottom:266.610000px;}
.y12{bottom:270.570000px;}
.y29{bottom:273.105000px;}
.y7e{bottom:276.870000px;}
.y95{bottom:282.810000px;}
.yb1{bottom:288.750000px;}
.y28{bottom:290.925000px;}
.y7c{bottom:304.590000px;}
.y27{bottom:308.745000px;}
.y7d{bottom:310.530000px;}
.y7b{bottom:326.370000px;}
.y26{bottom:326.565000px;}
.y25{bottom:344.415000px;}
.y7a{bottom:348.375000px;}
.y24{bottom:362.235000px;}
.y79{bottom:370.155000px;}
.yaf{bottom:376.095000px;}
.y23{bottom:380.235000px;}
.y78{bottom:391.935000px;}
.ya4{bottom:397.875000px;}
.y22{bottom:398.055000px;}
.y49{bottom:411.915000px;}
.y77{bottom:413.715000px;}
.y21{bottom:415.875000px;}
.y94{bottom:419.655000px;}
.y48{bottom:425.595000px;}
.y20{bottom:433.695000px;}
.y76{bottom:435.495000px;}
.y47{bottom:439.455000px;}
.y1f{bottom:451.515000px;}
.y46{bottom:453.315000px;}
.y75{bottom:457.455000px;}
.y45{bottom:466.995000px;}
.y1e{bottom:469.515000px;}
.y73{bottom:479.235000px;}
.y44{bottom:480.855000px;}
.y74{bottom:485.175000px;}
.y1d{bottom:487.335000px;}
.y43{bottom:495.075000px;}
.y72{bottom:501.015000px;}
.y1c{bottom:505.155000px;}
.y93{bottom:506.955000px;}
.y42{bottom:510.555000px;}
.y71{bottom:522.795000px;}
.y1b{bottom:522.975000px;}
.y41{bottom:526.035000px;}
.y1a{bottom:540.795000px;}
.y40{bottom:541.695000px;}
.y70{bottom:544.755000px;}
.yae{bottom:550.695000px;}
.y3f{bottom:557.175000px;}
.y19{bottom:558.615000px;}
.y6e{bottom:566.535000px;}
.y6f{bottom:572.475000px;}
.y3e{bottom:572.655000px;}
.y18{bottom:576.615000px;}
.y3d{bottom:588.135000px;}
.y6d{bottom:588.315000px;}
.ya3{bottom:594.255000px;}
.y17{bottom:594.435000px;}
.y3c{bottom:603.840000px;}
.y6c{bottom:610.125000px;}
.y16{bottom:612.300000px;}
.y92{bottom:616.065000px;}
.y3b{bottom:619.320000px;}
.y15{bottom:630.120000px;}
.y6b{bottom:631.905000px;}
.y3a{bottom:634.800000px;}
.ya8{bottom:637.845000px;}
.y14{bottom:647.940000px;}
.y39{bottom:650.280000px;}
.y6a{bottom:653.865000px;}
.yb0{bottom:659.805000px;}
.y13{bottom:665.940000px;}
.y69{bottom:675.645000px;}
.y67{bottom:697.425000px;}
.y68{bottom:703.365000px;}
.y66{bottom:719.205000px;}
.yad{bottom:725.145000px;}
.y65{bottom:741.165000px;}
.y99{bottom:747.105000px;}
.y64{bottom:762.945000px;}
.ya7{bottom:768.885000px;}
.y63{bottom:784.725000px;}
.y62{bottom:806.505000px;}
.y61{bottom:828.285000px;}
.y60{bottom:850.245000px;}
.y9d{bottom:856.185000px;}
.y5e{bottom:872.070000px;}
.y5f{bottom:878.010000px;}
.y5d{bottom:893.850000px;}
.y98{bottom:899.790000px;}
.y5c{bottom:915.630000px;}
.y5b{bottom:937.590000px;}
.y11{bottom:955.410000px;}
.y5a{bottom:959.370000px;}
.ya2{bottom:965.310000px;}
.y10{bottom:976.650000px;}
.y59{bottom:981.150000px;}
.y91{bottom:987.090000px;}
.yf{bottom:1001.670000px;}
.y57{bottom:1002.930000px;}
.y58{bottom:1008.870000px;}
.ye{bottom:1016.790000px;}
.y56{bottom:1024.710000px;}
.yd{bottom:1038.750000px;}
.y55{bottom:1046.670000px;}
.ya6{bottom:1052.610000px;}
.yc{bottom:1061.790000px;}
.y54{bottom:1068.450000px;}
.y97{bottom:1074.390000px;}
.yb{bottom:1087.530000px;}
.y53{bottom:1090.230000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h17{height:21.114844px;}
.ha{height:27.147656px;}
.h13{height:28.080000px;}
.h16{height:29.158594px;}
.h12{height:33.683203px;}
.h10{height:34.036523px;}
.h7{height:36.250664px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h11{height:39.760312px;}
.hb{height:41.726953px;}
.h3{height:42.164648px;}
.hf{height:44.507812px;}
.h15{height:44.860781px;}
.h14{height:46.251562px;}
.h4{height:46.736719px;}
.h6{height:48.256875px;}
.h5{height:49.255313px;}
.h9{height:53.224453px;}
.h18{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.hc{height:678.525000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w7{width:224.130000px;}
.w4{width:255.090000px;}
.w8{width:283.530000px;}
.w3{width:374.655000px;}
.w9{width:391.575000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x11{left:29.700000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x20{left:111.815987px;}
.x2a{left:115.595987px;}
.xa{left:124.955987px;}
.x37{left:129.275987px;}
.x7{left:131.805000px;}
.x5d{left:140.075987px;}
.x53{left:148.895973px;}
.x44{left:152.489973px;}
.x28{left:158.069973px;}
.x54{left:159.329987px;}
.x13{left:161.129987px;}
.x45{left:162.929987px;}
.x29{left:168.509987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x1d{left:189.209973px;}
.x58{left:191.369987px;}
.x1e{left:194.429987px;}
.x3e{left:213.509973px;}
.x33{left:216.209973px;}
.x3f{left:223.949987px;}
.x34{left:226.649987px;}
.x48{left:231.689973px;}
.xb{left:233.309987px;}
.xe{left:234.749987px;}
.x49{left:242.129987px;}
.x4c{left:265.169973px;}
.x4e{left:272.549973px;}
.x4d{left:275.609987px;}
.x40{left:279.074973px;}
.x4f{left:283.034987px;}
.x4a{left:287.174973px;}
.x41{left:289.514987px;}
.x31{left:296.354973px;}
.x4b{left:297.614987px;}
.x32{left:306.794987px;}
.xf{left:312.014987px;}
.x3d{left:313.814973px;}
.x14{left:317.414987px;}
.xd{left:321.734987px;}
.x1f{left:324.074987px;}
.x55{left:346.754973px;}
.x19{left:355.574973px;}
.x42{left:356.834973px;}
.x1a{left:360.794987px;}
.x43{left:367.274987px;}
.x2d{left:379.874973px;}
.x2e{left:390.314987px;}
.x12{left:391.575000px;}
.x26{left:400.574973px;}
.x27{left:411.014987px;}
.x59{left:438.374973px;}
.x23{left:441.614973px;}
.xc{left:446.474987px;}
.x5a{left:448.814987px;}
.x21{left:450.074973px;}
.x52{left:451.154987px;}
.x22{left:455.294987px;}
.x38{left:459.614973px;}
.x39{left:470.084987px;}
.x9{left:472.784987px;}
.x5b{left:479.264973px;}
.x5c{left:489.704987px;}
.x56{left:515.624973px;}
.x17{left:516.884973px;}
.x18{left:522.104987px;}
.x57{left:526.064987px;}
.x5{left:554.685000px;}
.x2b{left:559.544973px;}
.x10{left:567.105000px;}
.x2c{left:569.984987px;}
.x3a{left:667.589973px;}
.x3b{left:678.029987px;}
.x2f{left:685.589973px;}
.x24{left:689.729973px;}
.x35{left:692.609973px;}
.x25{left:694.949987px;}
.x30{left:696.029987px;}
.x36{left:703.049987px;}
.x3c{left:713.129987px;}
.x15{left:720.509973px;}
.x16{left:725.729987px;}
.x50{left:728.609973px;}
.x51{left:739.049987px;}
.x46{left:759.749973px;}
.x47{left:770.189987px;}
.x1b{left:779.909973px;}
.x1c{left:785.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.682667pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.478933pt;}
.ls15{letter-spacing:-0.400533pt;}
.ls14{letter-spacing:-0.368533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.198933pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.030720pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.097067pt;}
.ls1c{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.161067pt;}
.ls3{letter-spacing:0.208000pt;}
.ls1a{letter-spacing:0.233067pt;}
.lsa{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.271360pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls13{letter-spacing:14.991360pt;}
.lsd{letter-spacing:15.520000pt;}
.ls17{letter-spacing:18.191360pt;}
.ls2{letter-spacing:28.320000pt;}
.ws14{word-spacing:-14.991467pt;}
.ws12{word-spacing:-14.953067pt;}
.ws13{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.584533pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.759573pt;}
.ws9{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.881067pt;}
.ws8{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.521067pt;}
.wse{word-spacing:-10.400000pt;}
.wsf{word-spacing:-10.319467pt;}
.wsc{word-spacing:-10.241067pt;}
.wsa{word-spacing:-10.037333pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-5.035520pt;}
._13{margin-left:-3.944960pt;}
._d{margin-left:-2.876160pt;}
._c{margin-left:-1.968000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._3{width:2.160000pt;}
._4{width:3.648000pt;}
._a{width:4.608000pt;}
._9{width:5.664000pt;}
._7{width:6.771840pt;}
._6{width:8.160000pt;}
._10{width:9.216000pt;}
._11{width:10.164480pt;}
._14{width:11.208960pt;}
._15{width:12.275840pt;}
._1d{width:13.219200pt;}
._5{width:14.208000pt;}
._f{width:15.984000pt;}
._1b{width:17.075200pt;}
._2{width:18.026667pt;}
._18{width:19.043200pt;}
._8{width:20.016000pt;}
._1e{width:21.438720pt;}
._1c{width:22.343680pt;}
._12{width:23.669760pt;}
._16{width:25.120000pt;}
._21{width:26.782720pt;}
._e{width:28.026667pt;}
._17{width:29.524267pt;}
._1a{width:30.619520pt;}
._19{width:31.520000pt;}
._b{width:37.322667pt;}
._29{width:38.801920pt;}
._32{width:39.920640pt;}
._2e{width:41.216000pt;}
._24{width:42.334720pt;}
._20{width:46.096213pt;}
._2c{width:47.190613pt;}
._25{width:52.528000pt;}
._26{width:53.871360pt;}
._23{width:62.660907pt;}
._2a{width:64.532480pt;}
._2b{width:66.125440pt;}
._28{width:72.295253pt;}
._33{width:83.260373pt;}
._2f{width:97.681920pt;}
._31{width:102.627840pt;}
._22{width:126.580267pt;}
._2d{width:170.019627pt;}
._30{width:219.799040pt;}
._27{width:227.335680pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:4.640000pt;}
.y2{bottom:4.800000pt;}
.y4b{bottom:5.760000pt;}
.y4c{bottom:9.120000pt;}
.y5{bottom:19.386667pt;}
.y37{bottom:20.480000pt;}
.y8{bottom:21.146667pt;}
.y36{bottom:36.320000pt;}
.y4{bottom:36.986667pt;}
.y7{bottom:38.746667pt;}
.ya{bottom:50.080000pt;}
.y35{bottom:52.160000pt;}
.y3{bottom:55.066667pt;}
.y6{bottom:56.346667pt;}
.y34{bottom:68.200000pt;}
.y33{bottom:84.040000pt;}
.y90{bottom:98.112000pt;}
.y32{bottom:99.880000pt;}
.yac{bottom:102.112000pt;}
.y52{bottom:104.832000pt;}
.y8f{bottom:110.432000pt;}
.y8e{bottom:114.432000pt;}
.yb5{bottom:115.552000pt;}
.y31{bottom:115.720000pt;}
.y8d{bottom:122.592000pt;}
.y51{bottom:124.192000pt;}
.y8c{bottom:126.592000pt;}
.y30{bottom:131.560000pt;}
.y8b{bottom:134.906667pt;}
.yb4{bottom:135.066667pt;}
.yab{bottom:138.906667pt;}
.y50{bottom:143.546667pt;}
.y8a{bottom:147.226667pt;}
.y2f{bottom:147.400000pt;}
.y89{bottom:151.226667pt;}
.yb3{bottom:154.426667pt;}
.y88{bottom:159.386667pt;}
.ya1{bottom:160.346667pt;}
.y4f{bottom:163.066667pt;}
.y9c{bottom:163.386667pt;}
.y2e{bottom:163.400000pt;}
.y87{bottom:171.706667pt;}
.yb2{bottom:173.786667pt;}
.ya5{bottom:175.706667pt;}
.y2d{bottom:179.240000pt;}
.y4e{bottom:182.426667pt;}
.y86{bottom:184.026667pt;}
.y85{bottom:188.026667pt;}
.ya0{bottom:193.146667pt;}
.y2c{bottom:195.080000pt;}
.y84{bottom:196.186667pt;}
.y9b{bottom:200.186667pt;}
.y4d{bottom:201.786667pt;}
.y83{bottom:208.506667pt;}
.y9a{bottom:209.466667pt;}
.y2b{bottom:210.920000pt;}
.y82{bottom:212.506667pt;}
.y9f{bottom:212.666667pt;}
.y4a{bottom:215.546667pt;}
.y81{bottom:220.826667pt;}
.y96{bottom:221.626667pt;}
.yaa{bottom:224.826667pt;}
.y2a{bottom:226.760000pt;}
.y9e{bottom:232.026667pt;}
.y80{bottom:232.986667pt;}
.ya9{bottom:233.946667pt;}
.y7f{bottom:236.986667pt;}
.y12{bottom:240.506667pt;}
.y29{bottom:242.760000pt;}
.y7e{bottom:246.106667pt;}
.y95{bottom:251.386667pt;}
.yb1{bottom:256.666667pt;}
.y28{bottom:258.600000pt;}
.y7c{bottom:270.746667pt;}
.y27{bottom:274.440000pt;}
.y7d{bottom:276.026667pt;}
.y7b{bottom:290.106667pt;}
.y26{bottom:290.280000pt;}
.y25{bottom:306.146667pt;}
.y7a{bottom:309.666667pt;}
.y24{bottom:321.986667pt;}
.y79{bottom:329.026667pt;}
.yaf{bottom:334.306667pt;}
.y23{bottom:337.986667pt;}
.y78{bottom:348.386667pt;}
.ya4{bottom:353.666667pt;}
.y22{bottom:353.826667pt;}
.y49{bottom:366.146667pt;}
.y77{bottom:367.746667pt;}
.y21{bottom:369.666667pt;}
.y94{bottom:373.026667pt;}
.y48{bottom:378.306667pt;}
.y20{bottom:385.506667pt;}
.y76{bottom:387.106667pt;}
.y47{bottom:390.626667pt;}
.y1f{bottom:401.346667pt;}
.y46{bottom:402.946667pt;}
.y75{bottom:406.626667pt;}
.y45{bottom:415.106667pt;}
.y1e{bottom:417.346667pt;}
.y73{bottom:425.986667pt;}
.y44{bottom:427.426667pt;}
.y74{bottom:431.266667pt;}
.y1d{bottom:433.186667pt;}
.y43{bottom:440.066667pt;}
.y72{bottom:445.346667pt;}
.y1c{bottom:449.026667pt;}
.y93{bottom:450.626667pt;}
.y42{bottom:453.826667pt;}
.y71{bottom:464.706667pt;}
.y1b{bottom:464.866667pt;}
.y41{bottom:467.586667pt;}
.y1a{bottom:480.706667pt;}
.y40{bottom:481.506667pt;}
.y70{bottom:484.226667pt;}
.yae{bottom:489.506667pt;}
.y3f{bottom:495.266667pt;}
.y19{bottom:496.546667pt;}
.y6e{bottom:503.586667pt;}
.y6f{bottom:508.866667pt;}
.y3e{bottom:509.026667pt;}
.y18{bottom:512.546667pt;}
.y3d{bottom:522.786667pt;}
.y6d{bottom:522.946667pt;}
.ya3{bottom:528.226667pt;}
.y17{bottom:528.386667pt;}
.y3c{bottom:536.746667pt;}
.y6c{bottom:542.333333pt;}
.y16{bottom:544.266667pt;}
.y92{bottom:547.613333pt;}
.y3b{bottom:550.506667pt;}
.y15{bottom:560.106667pt;}
.y6b{bottom:561.693333pt;}
.y3a{bottom:564.266667pt;}
.ya8{bottom:566.973333pt;}
.y14{bottom:575.946667pt;}
.y39{bottom:578.026667pt;}
.y6a{bottom:581.213333pt;}
.yb0{bottom:586.493333pt;}
.y13{bottom:591.946667pt;}
.y69{bottom:600.573333pt;}
.y67{bottom:619.933333pt;}
.y68{bottom:625.213333pt;}
.y66{bottom:639.293333pt;}
.yad{bottom:644.573333pt;}
.y65{bottom:658.813333pt;}
.y99{bottom:664.093333pt;}
.y64{bottom:678.173333pt;}
.ya7{bottom:683.453333pt;}
.y63{bottom:697.533333pt;}
.y62{bottom:716.893333pt;}
.y61{bottom:736.253333pt;}
.y60{bottom:755.773333pt;}
.y9d{bottom:761.053333pt;}
.y5e{bottom:775.173333pt;}
.y5f{bottom:780.453333pt;}
.y5d{bottom:794.533333pt;}
.y98{bottom:799.813333pt;}
.y5c{bottom:813.893333pt;}
.y5b{bottom:833.413333pt;}
.y11{bottom:849.253333pt;}
.y5a{bottom:852.773333pt;}
.ya2{bottom:858.053333pt;}
.y10{bottom:868.133333pt;}
.y59{bottom:872.133333pt;}
.y91{bottom:877.413333pt;}
.yf{bottom:890.373333pt;}
.y57{bottom:891.493333pt;}
.y58{bottom:896.773333pt;}
.ye{bottom:903.813333pt;}
.y56{bottom:910.853333pt;}
.yd{bottom:923.333333pt;}
.y55{bottom:930.373333pt;}
.ya6{bottom:935.653333pt;}
.yc{bottom:943.813333pt;}
.y54{bottom:949.733333pt;}
.y97{bottom:955.013333pt;}
.yb{bottom:966.693333pt;}
.y53{bottom:969.093333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h17{height:18.768750pt;}
.ha{height:24.131250pt;}
.h13{height:24.960000pt;}
.h16{height:25.918750pt;}
.h12{height:29.940625pt;}
.h10{height:30.254687pt;}
.h7{height:32.222812pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h11{height:35.342500pt;}
.hb{height:37.090625pt;}
.h3{height:37.479688pt;}
.hf{height:39.562500pt;}
.h15{height:39.876250pt;}
.h14{height:41.112500pt;}
.h4{height:41.543750pt;}
.h6{height:42.895000pt;}
.h5{height:43.782500pt;}
.h9{height:47.310625pt;}
.h18{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.hc{height:603.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w7{width:199.226667pt;}
.w4{width:226.746667pt;}
.w8{width:252.026667pt;}
.w3{width:333.026667pt;}
.w9{width:348.066667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x11{left:26.400000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x20{left:99.391988pt;}
.x2a{left:102.751988pt;}
.xa{left:111.071988pt;}
.x37{left:114.911988pt;}
.x7{left:117.160000pt;}
.x5d{left:124.511988pt;}
.x53{left:132.351976pt;}
.x44{left:135.546643pt;}
.x28{left:140.506643pt;}
.x54{left:141.626655pt;}
.x13{left:143.226655pt;}
.x45{left:144.826655pt;}
.x29{left:149.786655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x1d{left:168.186643pt;}
.x58{left:170.106655pt;}
.x1e{left:172.826655pt;}
.x3e{left:189.786643pt;}
.x33{left:192.186643pt;}
.x3f{left:199.066655pt;}
.x34{left:201.466655pt;}
.x48{left:205.946643pt;}
.xb{left:207.386655pt;}
.xe{left:208.666655pt;}
.x49{left:215.226655pt;}
.x4c{left:235.706643pt;}
.x4e{left:242.266643pt;}
.x4d{left:244.986655pt;}
.x40{left:248.066643pt;}
.x4f{left:251.586655pt;}
.x4a{left:255.266643pt;}
.x41{left:257.346655pt;}
.x31{left:263.426643pt;}
.x4b{left:264.546655pt;}
.x32{left:272.706655pt;}
.xf{left:277.346655pt;}
.x3d{left:278.946643pt;}
.x14{left:282.146655pt;}
.xd{left:285.986655pt;}
.x1f{left:288.066655pt;}
.x55{left:308.226643pt;}
.x19{left:316.066643pt;}
.x42{left:317.186643pt;}
.x1a{left:320.706655pt;}
.x43{left:326.466655pt;}
.x2d{left:337.666643pt;}
.x2e{left:346.946655pt;}
.x12{left:348.066667pt;}
.x26{left:356.066643pt;}
.x27{left:365.346655pt;}
.x59{left:389.666643pt;}
.x23{left:392.546643pt;}
.xc{left:396.866655pt;}
.x5a{left:398.946655pt;}
.x21{left:400.066643pt;}
.x52{left:401.026655pt;}
.x22{left:404.706655pt;}
.x38{left:408.546643pt;}
.x39{left:417.853322pt;}
.x9{left:420.253322pt;}
.x5b{left:426.013310pt;}
.x5c{left:435.293322pt;}
.x56{left:458.333310pt;}
.x17{left:459.453310pt;}
.x18{left:464.093322pt;}
.x57{left:467.613322pt;}
.x5{left:493.053333pt;}
.x2b{left:497.373310pt;}
.x10{left:504.093333pt;}
.x2c{left:506.653322pt;}
.x3a{left:593.413310pt;}
.x3b{left:602.693322pt;}
.x2f{left:609.413310pt;}
.x24{left:613.093310pt;}
.x35{left:615.653310pt;}
.x25{left:617.733322pt;}
.x30{left:618.693322pt;}
.x36{left:624.933322pt;}
.x3c{left:633.893322pt;}
.x15{left:640.453310pt;}
.x16{left:645.093322pt;}
.x50{left:647.653310pt;}
.x51{left:656.933322pt;}
.x46{left:675.333310pt;}
.x47{left:684.613322pt;}
.x1b{left:693.253310pt;}
.x1c{left:697.893322pt;}
}




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