
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_6536887a0471e5b0d78e950e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_9e94ffcdad1dbb998569aa70.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_6033e22130ca2c510d98903a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1cccddeb8c67fc6eb6c8bb1f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a38f49dadc710c54743db845.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6cd4b5e4e308f32890770cdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908026;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;}
.ls19{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.529800px;}
.ls5{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.214800px;}
.lsd{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.115800px;}
.lse{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.041040px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.064200px;}
.ls18{letter-spacing:0.140400px;}
.ls11{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.314400px;}
.ls15{letter-spacing:0.479520px;}
.lsa{letter-spacing:0.617760px;}
.ls17{letter-spacing:0.660000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls13{letter-spacing:2.106720px;}
.ls9{letter-spacing:5.706720px;}
.ls16{letter-spacing:12.186720px;}
.lsb{letter-spacing:17.226720px;}
.ls10{letter-spacing:20.106720px;}
.ls8{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls14{letter-spacing:42.570720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsd{word-spacing:-14.165760px;}
.wsb{word-spacing:-13.820160px;}
.wse{word-spacing:-13.646160px;}
.wsa{word-spacing:-13.569960px;}
.ws4{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.464720px;}
.ws9{word-spacing:-13.447440px;}
.ws5{word-spacing:-13.389960px;}
.ws8{word-spacing:-13.319160px;}
.ws7{word-spacing:-13.290960px;}
.ws3{word-spacing:-9.437760px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-581.641560px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._13{margin-left:-2.294640px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:2.616480px;}
._a{width:4.197600px;}
._b{width:5.244480px;}
._c{width:6.348480px;}
._d{width:7.618320px;}
._e{width:8.699280px;}
._14{width:9.917520px;}
._11{width:10.995840px;}
._12{width:12.037200px;}
._f{width:14.940000px;}
._10{width:16.274640px;}
._1a{width:17.411760px;}
._19{width:19.221120px;}
._15{width:26.380800px;}
._8{width:28.728000px;}
._17{width:134.854080px;}
._16{width:150.385920px;}
._1b{width:166.935600px;}
._18{width:202.470240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y74{bottom:6.840000px;}
.y85{bottom:9.720000px;}
.y7a{bottom:10.260000px;}
.y6c{bottom:11.520000px;}
.y83{bottom:14.220000px;}
.y78{bottom:15.120000px;}
.y76{bottom:15.840000px;}
.y6a{bottom:16.380000px;}
.y63{bottom:16.560000px;}
.y68{bottom:17.280000px;}
.y61{bottom:22.320000px;}
.y5f{bottom:23.400000px;}
.y6{bottom:58.320000px;}
.ydc{bottom:86.796000px;}
.y9d{bottom:87.516000px;}
.y31{bottom:101.376000px;}
.ydb{bottom:103.896000px;}
.y66{bottom:104.616000px;}
.yc5{bottom:106.056000px;}
.y9c{bottom:108.576000px;}
.y30{bottom:122.436000px;}
.y65{bottom:125.676000px;}
.yc4{bottom:127.116000px;}
.y9b{bottom:129.636000px;}
.y2f{bottom:143.496000px;}
.y64{bottom:146.736000px;}
.yc3{bottom:148.176000px;}
.y9a{bottom:150.690000px;}
.y62{bottom:161.670000px;}
.y2e{bottom:164.550000px;}
.yc2{bottom:169.230000px;}
.y99{bottom:171.750000px;}
.y2d{bottom:185.610000px;}
.yc1{bottom:190.290000px;}
.y98{bottom:192.810000px;}
.y60{bottom:193.170000px;}
.yda{bottom:201.450000px;}
.y2c{bottom:206.670000px;}
.yc0{bottom:211.350000px;}
.y97{bottom:213.870000px;}
.yd9{bottom:222.510000px;}
.y2b{bottom:227.730000px;}
.y5e{bottom:230.610000px;}
.ybf{bottom:232.410000px;}
.y96{bottom:234.930000px;}
.y2a{bottom:248.790000px;}
.ybe{bottom:253.470000px;}
.y95{bottom:255.990000px;}
.yd8{bottom:258.330000px;}
.y29{bottom:269.850000px;}
.ybd{bottom:274.530000px;}
.y5d{bottom:275.790000px;}
.y94{bottom:277.050000px;}
.y28{bottom:290.910000px;}
.yd7{bottom:294.330000px;}
.ybc{bottom:295.590000px;}
.y5c{bottom:296.850000px;}
.y93{bottom:298.110000px;}
.y27{bottom:311.970000px;}
.ybb{bottom:316.650000px;}
.y5b{bottom:317.910000px;}
.y92{bottom:319.170000px;}
.yd6{bottom:330.555000px;}
.y26{bottom:333.075000px;}
.yba{bottom:337.755000px;}
.y5a{bottom:339.015000px;}
.y91{bottom:340.275000px;}
.y25{bottom:354.135000px;}
.yb9{bottom:358.815000px;}
.y59{bottom:360.075000px;}
.y90{bottom:361.335000px;}
.yd5{bottom:366.555000px;}
.y24{bottom:375.195000px;}
.yb8{bottom:379.875000px;}
.y58{bottom:381.135000px;}
.y8f{bottom:382.395000px;}
.y23{bottom:396.255000px;}
.yb7{bottom:400.935000px;}
.y57{bottom:402.195000px;}
.yd4{bottom:402.555000px;}
.y8e{bottom:403.455000px;}
.y22{bottom:417.315000px;}
.yb6{bottom:421.995000px;}
.y56{bottom:423.255000px;}
.y8d{bottom:424.515000px;}
.y21{bottom:438.375000px;}
.yd3{bottom:438.735000px;}
.yb5{bottom:443.055000px;}
.y55{bottom:444.315000px;}
.y8c{bottom:445.575000px;}
.y20{bottom:459.435000px;}
.yb4{bottom:464.115000px;}
.y54{bottom:465.375000px;}
.y8b{bottom:466.635000px;}
.yd2{bottom:474.735000px;}
.y1f{bottom:480.495000px;}
.yb3{bottom:485.175000px;}
.y53{bottom:486.435000px;}
.y8a{bottom:487.695000px;}
.y1e{bottom:501.555000px;}
.yb2{bottom:506.235000px;}
.y52{bottom:507.495000px;}
.yd1{bottom:510.735000px;}
.y89{bottom:517.755000px;}
.y1d{bottom:522.615000px;}
.yb1{bottom:527.295000px;}
.y51{bottom:528.555000px;}
.y88{bottom:538.815000px;}
.y1c{bottom:543.675000px;}
.yd0{bottom:546.915000px;}
.yb0{bottom:548.355000px;}
.y50{bottom:549.615000px;}
.y87{bottom:559.875000px;}
.y1b{bottom:564.735000px;}
.yaf{bottom:569.415000px;}
.y4f{bottom:570.675000px;}
.y86{bottom:580.935000px;}
.ycf{bottom:582.915000px;}
.y1a{bottom:587.775000px;}
.yae{bottom:590.475000px;}
.y4e{bottom:591.735000px;}
.y84{bottom:595.905000px;}
.yad{bottom:611.565000px;}
.y4d{bottom:612.825000px;}
.y19{bottom:618.045000px;}
.yce{bottom:618.945000px;}
.y82{bottom:620.565000px;}
.yac{bottom:632.625000px;}
.y4c{bottom:633.885000px;}
.y18{bottom:639.105000px;}
.y81{bottom:649.725000px;}
.yab{bottom:653.685000px;}
.y4b{bottom:654.945000px;}
.ycd{bottom:655.125000px;}
.y17{bottom:660.165000px;}
.yaa{bottom:674.745000px;}
.y4a{bottom:676.005000px;}
.y16{bottom:681.225000px;}
.y80{bottom:686.805000px;}
.ycc{bottom:691.125000px;}
.ya9{bottom:695.805000px;}
.y49{bottom:697.065000px;}
.y15{bottom:702.285000px;}
.y7f{bottom:707.685000px;}
.ya8{bottom:716.865000px;}
.y48{bottom:718.125000px;}
.y14{bottom:723.345000px;}
.ycb{bottom:727.125000px;}
.y7e{bottom:728.745000px;}
.ya7{bottom:737.925000px;}
.y47{bottom:739.185000px;}
.y13{bottom:744.405000px;}
.y7d{bottom:749.805000px;}
.ya6{bottom:758.985000px;}
.y46{bottom:760.245000px;}
.yca{bottom:763.305000px;}
.y12{bottom:765.465000px;}
.y7c{bottom:770.865000px;}
.ya5{bottom:780.045000px;}
.y45{bottom:781.305000px;}
.y11{bottom:786.525000px;}
.y7b{bottom:791.925000px;}
.yc9{bottom:799.305000px;}
.ya4{bottom:801.105000px;}
.y44{bottom:802.365000px;}
.y79{bottom:807.045000px;}
.y10{bottom:807.585000px;}
.ya3{bottom:822.165000px;}
.y43{bottom:823.425000px;}
.yf{bottom:828.465000px;}
.y77{bottom:832.245000px;}
.yc8{bottom:835.305000px;}
.ya2{bottom:843.225000px;}
.y42{bottom:844.485000px;}
.ye{bottom:851.865000px;}
.y75{bottom:862.350000px;}
.ya1{bottom:864.330000px;}
.y41{bottom:865.590000px;}
.yc7{bottom:871.350000px;}
.yd{bottom:872.970000px;}
.ya0{bottom:885.390000px;}
.y40{bottom:886.650000px;}
.y73{bottom:893.130000px;}
.yc{bottom:899.250000px;}
.y9f{bottom:906.450000px;}
.yc6{bottom:907.530000px;}
.y3f{bottom:907.710000px;}
.yb{bottom:915.990000px;}
.y72{bottom:921.750000px;}
.y9e{bottom:927.870000px;}
.y3e{bottom:928.770000px;}
.ya{bottom:939.210000px;}
.y71{bottom:942.810000px;}
.y3d{bottom:949.830000px;}
.y9{bottom:961.530000px;}
.y70{bottom:963.870000px;}
.y3c{bottom:970.890000px;}
.y6f{bottom:984.930000px;}
.y8{bottom:986.550000px;}
.y3b{bottom:991.950000px;}
.y6e{bottom:1005.990000px;}
.y3a{bottom:1013.010000px;}
.y7{bottom:1020.210000px;}
.y6d{bottom:1027.050000px;}
.y39{bottom:1034.070000px;}
.y6b{bottom:1042.170000px;}
.y38{bottom:1055.130000px;}
.y5{bottom:1060.530000px;}
.y69{bottom:1068.630000px;}
.y37{bottom:1076.190000px;}
.y4{bottom:1092.750000px;}
.y36{bottom:1097.250000px;}
.y67{bottom:1100.130000px;}
.y35{bottom:1118.310000px;}
.y3{bottom:1124.790000px;}
.y34{bottom:1139.400000px;}
.y2{bottom:1157.040000px;}
.y33{bottom:1170.180000px;}
.y1{bottom:1191.600000px;}
.y32{bottom:1193.400000px;}
.h10{height:21.060000px;}
.h15{height:23.940000px;}
.h13{height:24.480000px;}
.hf{height:25.740000px;}
.h14{height:28.440000px;}
.h12{height:29.340000px;}
.h11{height:30.060000px;}
.he{height:30.600000px;}
.hc{height:30.780000px;}
.hd{height:31.536000px;}
.hb{height:36.540000px;}
.ha{height:37.620000px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h16{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:76.680000px;}
.w8{width:77.580000px;}
.w9{width:99.576000px;}
.w6{width:99.720000px;}
.w5{width:100.656000px;}
.wf{width:104.076000px;}
.wc{width:105.156000px;}
.wb{width:127.260000px;}
.w15{width:127.440000px;}
.we{width:149.400000px;}
.w11{width:150.660000px;}
.w10{width:173.550000px;}
.wd{width:173.730000px;}
.w19{width:176.250000px;}
.w17{width:181.830000px;}
.w16{width:189.390000px;}
.w18{width:208.830000px;}
.w7{width:221.610000px;}
.w1a{width:227.550000px;}
.w13{width:230.835000px;}
.wa{width:231.375000px;}
.w14{width:235.290000px;}
.w3{width:256.035000px;}
.w12{width:782.970000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x15{left:49.320000px;}
.x1{left:53.999987px;}
.x11{left:55.080000px;}
.x3{left:69.300000px;}
.x19{left:80.999987px;}
.x2{left:96.515987px;}
.x10{left:108.035987px;}
.x16{left:231.150000px;}
.xa{left:284.475000px;}
.x12{left:285.915000px;}
.x5{left:325.335000px;}
.x6{left:401.835000px;}
.x9{left:402.915000px;}
.xb{left:411.735000px;}
.x17{left:439.995000px;}
.x7{left:502.485000px;}
.xe{left:515.805000px;}
.xc{left:516.885000px;}
.x13{left:521.205000px;}
.x8{left:602.205000px;}
.x18{left:616.245000px;}
.x14{left:648.645000px;}
.xf{left:689.370000px;}
.xd{left:690.630000px;}
.x1a{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.470933pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.190933pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.102933pt;}
.lse{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.057067pt;}
.ls18{letter-spacing:0.124800pt;}
.ls11{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.279467pt;}
.ls15{letter-spacing:0.426240pt;}
.lsa{letter-spacing:0.549120pt;}
.ls17{letter-spacing:0.586667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls13{letter-spacing:1.872640pt;}
.ls9{letter-spacing:5.072640pt;}
.ls16{letter-spacing:10.832640pt;}
.lsb{letter-spacing:15.312640pt;}
.ls10{letter-spacing:17.872640pt;}
.ls8{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls14{letter-spacing:37.840640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.591787pt;}
.wsb{word-spacing:-12.284587pt;}
.wse{word-spacing:-12.129920pt;}
.wsa{word-spacing:-12.062187pt;}
.ws4{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.968640pt;}
.ws9{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.902187pt;}
.ws8{word-spacing:-11.839253pt;}
.ws7{word-spacing:-11.814187pt;}
.ws3{word-spacing:-8.389120pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-517.014720pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._13{margin-left:-2.039680pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.325760pt;}
._a{width:3.731200pt;}
._b{width:4.661760pt;}
._c{width:5.643093pt;}
._d{width:6.771840pt;}
._e{width:7.732693pt;}
._14{width:8.815573pt;}
._11{width:9.774080pt;}
._12{width:10.699733pt;}
._f{width:13.280000pt;}
._10{width:14.466347pt;}
._1a{width:15.477120pt;}
._19{width:17.085440pt;}
._15{width:23.449600pt;}
._8{width:25.536000pt;}
._17{width:119.870293pt;}
._16{width:133.676373pt;}
._1b{width:148.387200pt;}
._18{width:179.973547pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:6.080000pt;}
.y85{bottom:8.640000pt;}
.y7a{bottom:9.120000pt;}
.y6c{bottom:10.240000pt;}
.y83{bottom:12.640000pt;}
.y78{bottom:13.440000pt;}
.y76{bottom:14.080000pt;}
.y6a{bottom:14.560000pt;}
.y63{bottom:14.720000pt;}
.y68{bottom:15.360000pt;}
.y61{bottom:19.840000pt;}
.y5f{bottom:20.800000pt;}
.y6{bottom:51.840000pt;}
.ydc{bottom:77.152000pt;}
.y9d{bottom:77.792000pt;}
.y31{bottom:90.112000pt;}
.ydb{bottom:92.352000pt;}
.y66{bottom:92.992000pt;}
.yc5{bottom:94.272000pt;}
.y9c{bottom:96.512000pt;}
.y30{bottom:108.832000pt;}
.y65{bottom:111.712000pt;}
.yc4{bottom:112.992000pt;}
.y9b{bottom:115.232000pt;}
.y2f{bottom:127.552000pt;}
.y64{bottom:130.432000pt;}
.yc3{bottom:131.712000pt;}
.y9a{bottom:133.946667pt;}
.y62{bottom:143.706667pt;}
.y2e{bottom:146.266667pt;}
.yc2{bottom:150.426667pt;}
.y99{bottom:152.666667pt;}
.y2d{bottom:164.986667pt;}
.yc1{bottom:169.146667pt;}
.y98{bottom:171.386667pt;}
.y60{bottom:171.706667pt;}
.yda{bottom:179.066667pt;}
.y2c{bottom:183.706667pt;}
.yc0{bottom:187.866667pt;}
.y97{bottom:190.106667pt;}
.yd9{bottom:197.786667pt;}
.y2b{bottom:202.426667pt;}
.y5e{bottom:204.986667pt;}
.ybf{bottom:206.586667pt;}
.y96{bottom:208.826667pt;}
.y2a{bottom:221.146667pt;}
.ybe{bottom:225.306667pt;}
.y95{bottom:227.546667pt;}
.yd8{bottom:229.626667pt;}
.y29{bottom:239.866667pt;}
.ybd{bottom:244.026667pt;}
.y5d{bottom:245.146667pt;}
.y94{bottom:246.266667pt;}
.y28{bottom:258.586667pt;}
.yd7{bottom:261.626667pt;}
.ybc{bottom:262.746667pt;}
.y5c{bottom:263.866667pt;}
.y93{bottom:264.986667pt;}
.y27{bottom:277.306667pt;}
.ybb{bottom:281.466667pt;}
.y5b{bottom:282.586667pt;}
.y92{bottom:283.706667pt;}
.yd6{bottom:293.826667pt;}
.y26{bottom:296.066667pt;}
.yba{bottom:300.226667pt;}
.y5a{bottom:301.346667pt;}
.y91{bottom:302.466667pt;}
.y25{bottom:314.786667pt;}
.yb9{bottom:318.946667pt;}
.y59{bottom:320.066667pt;}
.y90{bottom:321.186667pt;}
.yd5{bottom:325.826667pt;}
.y24{bottom:333.506667pt;}
.yb8{bottom:337.666667pt;}
.y58{bottom:338.786667pt;}
.y8f{bottom:339.906667pt;}
.y23{bottom:352.226667pt;}
.yb7{bottom:356.386667pt;}
.y57{bottom:357.506667pt;}
.yd4{bottom:357.826667pt;}
.y8e{bottom:358.626667pt;}
.y22{bottom:370.946667pt;}
.yb6{bottom:375.106667pt;}
.y56{bottom:376.226667pt;}
.y8d{bottom:377.346667pt;}
.y21{bottom:389.666667pt;}
.yd3{bottom:389.986667pt;}
.yb5{bottom:393.826667pt;}
.y55{bottom:394.946667pt;}
.y8c{bottom:396.066667pt;}
.y20{bottom:408.386667pt;}
.yb4{bottom:412.546667pt;}
.y54{bottom:413.666667pt;}
.y8b{bottom:414.786667pt;}
.yd2{bottom:421.986667pt;}
.y1f{bottom:427.106667pt;}
.yb3{bottom:431.266667pt;}
.y53{bottom:432.386667pt;}
.y8a{bottom:433.506667pt;}
.y1e{bottom:445.826667pt;}
.yb2{bottom:449.986667pt;}
.y52{bottom:451.106667pt;}
.yd1{bottom:453.986667pt;}
.y89{bottom:460.226667pt;}
.y1d{bottom:464.546667pt;}
.yb1{bottom:468.706667pt;}
.y51{bottom:469.826667pt;}
.y88{bottom:478.946667pt;}
.y1c{bottom:483.266667pt;}
.yd0{bottom:486.146667pt;}
.yb0{bottom:487.426667pt;}
.y50{bottom:488.546667pt;}
.y87{bottom:497.666667pt;}
.y1b{bottom:501.986667pt;}
.yaf{bottom:506.146667pt;}
.y4f{bottom:507.266667pt;}
.y86{bottom:516.386667pt;}
.ycf{bottom:518.146667pt;}
.y1a{bottom:522.466667pt;}
.yae{bottom:524.866667pt;}
.y4e{bottom:525.986667pt;}
.y84{bottom:529.693333pt;}
.yad{bottom:543.613333pt;}
.y4d{bottom:544.733333pt;}
.y19{bottom:549.373333pt;}
.yce{bottom:550.173333pt;}
.y82{bottom:551.613333pt;}
.yac{bottom:562.333333pt;}
.y4c{bottom:563.453333pt;}
.y18{bottom:568.093333pt;}
.y81{bottom:577.533333pt;}
.yab{bottom:581.053333pt;}
.y4b{bottom:582.173333pt;}
.ycd{bottom:582.333333pt;}
.y17{bottom:586.813333pt;}
.yaa{bottom:599.773333pt;}
.y4a{bottom:600.893333pt;}
.y16{bottom:605.533333pt;}
.y80{bottom:610.493333pt;}
.ycc{bottom:614.333333pt;}
.ya9{bottom:618.493333pt;}
.y49{bottom:619.613333pt;}
.y15{bottom:624.253333pt;}
.y7f{bottom:629.053333pt;}
.ya8{bottom:637.213333pt;}
.y48{bottom:638.333333pt;}
.y14{bottom:642.973333pt;}
.ycb{bottom:646.333333pt;}
.y7e{bottom:647.773333pt;}
.ya7{bottom:655.933333pt;}
.y47{bottom:657.053333pt;}
.y13{bottom:661.693333pt;}
.y7d{bottom:666.493333pt;}
.ya6{bottom:674.653333pt;}
.y46{bottom:675.773333pt;}
.yca{bottom:678.493333pt;}
.y12{bottom:680.413333pt;}
.y7c{bottom:685.213333pt;}
.ya5{bottom:693.373333pt;}
.y45{bottom:694.493333pt;}
.y11{bottom:699.133333pt;}
.y7b{bottom:703.933333pt;}
.yc9{bottom:710.493333pt;}
.ya4{bottom:712.093333pt;}
.y44{bottom:713.213333pt;}
.y79{bottom:717.373333pt;}
.y10{bottom:717.853333pt;}
.ya3{bottom:730.813333pt;}
.y43{bottom:731.933333pt;}
.yf{bottom:736.413333pt;}
.y77{bottom:739.773333pt;}
.yc8{bottom:742.493333pt;}
.ya2{bottom:749.533333pt;}
.y42{bottom:750.653333pt;}
.ye{bottom:757.213333pt;}
.y75{bottom:766.533333pt;}
.ya1{bottom:768.293333pt;}
.y41{bottom:769.413333pt;}
.yc7{bottom:774.533333pt;}
.yd{bottom:775.973333pt;}
.ya0{bottom:787.013333pt;}
.y40{bottom:788.133333pt;}
.y73{bottom:793.893333pt;}
.yc{bottom:799.333333pt;}
.y9f{bottom:805.733333pt;}
.yc6{bottom:806.693333pt;}
.y3f{bottom:806.853333pt;}
.yb{bottom:814.213333pt;}
.y72{bottom:819.333333pt;}
.y9e{bottom:824.773333pt;}
.y3e{bottom:825.573333pt;}
.ya{bottom:834.853333pt;}
.y71{bottom:838.053333pt;}
.y3d{bottom:844.293333pt;}
.y9{bottom:854.693333pt;}
.y70{bottom:856.773333pt;}
.y3c{bottom:863.013333pt;}
.y6f{bottom:875.493333pt;}
.y8{bottom:876.933333pt;}
.y3b{bottom:881.733333pt;}
.y6e{bottom:894.213333pt;}
.y3a{bottom:900.453333pt;}
.y7{bottom:906.853333pt;}
.y6d{bottom:912.933333pt;}
.y39{bottom:919.173333pt;}
.y6b{bottom:926.373333pt;}
.y38{bottom:937.893333pt;}
.y5{bottom:942.693333pt;}
.y69{bottom:949.893333pt;}
.y37{bottom:956.613333pt;}
.y4{bottom:971.333333pt;}
.y36{bottom:975.333333pt;}
.y67{bottom:977.893333pt;}
.y35{bottom:994.053333pt;}
.y3{bottom:999.813333pt;}
.y34{bottom:1012.800000pt;}
.y2{bottom:1028.480000pt;}
.y33{bottom:1040.160000pt;}
.y1{bottom:1059.200000pt;}
.y32{bottom:1060.800000pt;}
.h10{height:18.720000pt;}
.h15{height:21.280000pt;}
.h13{height:21.760000pt;}
.hf{height:22.880000pt;}
.h14{height:25.280000pt;}
.h12{height:26.080000pt;}
.h11{height:26.720000pt;}
.he{height:27.200000pt;}
.hc{height:27.360000pt;}
.hd{height:28.032000pt;}
.hb{height:32.480000pt;}
.ha{height:33.440000pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h16{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:68.160000pt;}
.w8{width:68.960000pt;}
.w9{width:88.512000pt;}
.w6{width:88.640000pt;}
.w5{width:89.472000pt;}
.wf{width:92.512000pt;}
.wc{width:93.472000pt;}
.wb{width:113.120000pt;}
.w15{width:113.280000pt;}
.we{width:132.800000pt;}
.w11{width:133.920000pt;}
.w10{width:154.266667pt;}
.wd{width:154.426667pt;}
.w19{width:156.666667pt;}
.w17{width:161.626667pt;}
.w16{width:168.346667pt;}
.w18{width:185.626667pt;}
.w7{width:196.986667pt;}
.w1a{width:202.266667pt;}
.w13{width:205.186667pt;}
.wa{width:205.666667pt;}
.w14{width:209.146667pt;}
.w3{width:227.586667pt;}
.w12{width:695.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x15{left:43.840000pt;}
.x1{left:47.999988pt;}
.x11{left:48.960000pt;}
.x3{left:61.600000pt;}
.x19{left:71.999988pt;}
.x2{left:85.791988pt;}
.x10{left:96.031988pt;}
.x16{left:205.466667pt;}
.xa{left:252.866667pt;}
.x12{left:254.146667pt;}
.x5{left:289.186667pt;}
.x6{left:357.186667pt;}
.x9{left:358.146667pt;}
.xb{left:365.986667pt;}
.x17{left:391.106667pt;}
.x7{left:446.653333pt;}
.xe{left:458.493333pt;}
.xc{left:459.453333pt;}
.x13{left:463.293333pt;}
.x8{left:535.293333pt;}
.x18{left:547.773333pt;}
.x14{left:576.573333pt;}
.xf{left:612.773333pt;}
.xd{left:613.893333pt;}
.x1a{left:746.053322pt;}
}




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