
    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_7099fd5406fc5a5de9c1bdf6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.211914;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_8e94c3d6f187ac03f24707d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.211914;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_cccc2b555ce918c19c84e1da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_f82243b490da7072ab1c3157.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_01ce8cbd34e42b9a86a59126.woff2')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_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_98401d1f8ec52371d428d891.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_4cd806fbe5a5937a9999814d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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:ff9;src:url('chunks/assets/font_f53df67ddee03c9a2552f462.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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:-58.320000px;}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.279600px;}
.lsb{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.054000px;}
.lsf{letter-spacing:-0.036000px;}
.ls12{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.161040px;}
.ls8{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.207360px;}
.ls15{letter-spacing:0.207600px;}
.ls14{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.223920px;}
.ls1{letter-spacing:0.228960px;}
.ls18{letter-spacing:0.342000px;}
.ls9{letter-spacing:0.391800px;}
.ls10{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.684000px;}
.lsd{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.872640px;}
.ls6{letter-spacing:5.292000px;}
.ls5{letter-spacing:28.188000px;}
.ls17{letter-spacing:155.819520px;}
.lsc{letter-spacing:849.108000px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws3{word-spacing:-21.427320px;}
.ws0{word-spacing:-21.233520px;}
.ws2{word-spacing:-21.187920px;}
.ws1{word-spacing:-21.035520px;}
.ws8{word-spacing:-19.440000px;}
.wsa{word-spacing:-19.350000px;}
.ws7{word-spacing:-19.008000px;}
.ws9{word-spacing:-18.990000px;}
.ws5{word-spacing:-18.468000px;}
.wsb{word-spacing:-16.980480px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-5.507520px;}
._7{margin-left:-4.158000px;}
._3{margin-left:-2.160000px;}
._2{margin-left:-1.026000px;}
._0{width:1.091520px;}
._1{width:2.996400px;}
._9{width:4.104000px;}
._f{width:5.149440px;}
._a{width:6.372000px;}
._b{width:7.398000px;}
._6{width:8.922000px;}
._5{width:9.990000px;}
._d{width:12.420000px;}
._c{width:14.094000px;}
._8{width:16.686000px;}
._e{width:26.082000px;}
._4{width:30.618000px;}
._11{width:32.238000px;}
._12{width:33.348960px;}
._13{width:41.310000px;}
._10{width:52.056000px;}
._14{width:340.947360px;}
._15{width:858.384480px;}
.fc3{color:transparent;}
.fc1{color:rgb(20,65,150);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y62{bottom:-2.625000px;}
.y0{bottom:0.000000px;}
.yb{bottom:2.520000px;}
.y51{bottom:2.880000px;}
.y88{bottom:4.395000px;}
.y71{bottom:5.070000px;}
.y75{bottom:5.250000px;}
.yb2{bottom:5.256000px;}
.y81{bottom:5.325000px;}
.y7d{bottom:5.370000px;}
.y8a{bottom:5.475000px;}
.y7f{bottom:5.505000px;}
.y6a{bottom:5.655000px;}
.y8f{bottom:6.045000px;}
.y68{bottom:6.195000px;}
.y93{bottom:6.225000px;}
.y7b{bottom:6.270000px;}
.y64{bottom:6.375000px;}
.y3e{bottom:7.635000px;}
.ya0{bottom:10.440000px;}
.y6f{bottom:11.376000px;}
.y73{bottom:11.730000px;}
.y55{bottom:11.880000px;}
.yac{bottom:11.910000px;}
.y79{bottom:11.985000px;}
.y5c{bottom:12.060000px;}
.y86{bottom:12.276000px;}
.y6c{bottom:14.295000px;}
.y66{bottom:14.475000px;}
.y9b{bottom:19.440000px;}
.y9f{bottom:20.880000px;}
.y3d{bottom:24.015000px;}
.y6e{bottom:27.756000px;}
.y54{bottom:28.260000px;}
.yab{bottom:28.290000px;}
.y78{bottom:28.365000px;}
.y5b{bottom:28.440000px;}
.y61{bottom:31.755000px;}
.y9a{bottom:35.820000px;}
.y9e{bottom:37.260000px;}
.y9{bottom:39.276000px;}
.y58{bottom:44.640000px;}
.ya4{bottom:44.685000px;}
.y53{bottom:44.820000px;}
.y85{bottom:46.656000px;}
.y60{bottom:48.135000px;}
.y9d{bottom:53.640000px;}
.y5a{bottom:53.820000px;}
.ya7{bottom:61.020000px;}
.ya3{bottom:61.065000px;}
.y84{bottom:63.030000px;}
.yb0{bottom:66.060000px;}
.yba{bottom:70.020000px;}
.y83{bottom:79.590000px;}
.yb9{bottom:86.400000px;}
.yb1{bottom:89.280000px;}
.y25{bottom:92.736000px;}
.y82{bottom:93.240000px;}
.yb8{bottom:102.780000px;}
.y6d{bottom:109.980000px;}
.y24{bottom:112.536000px;}
.y23{bottom:132.156000px;}
.y72{bottom:144.540000px;}
.y70{bottom:151.020000px;}
.y22{bottom:151.770000px;}
.y74{bottom:151.920000px;}
.y21{bottom:171.570000px;}
.y8c{bottom:186.480000px;}
.y8b{bottom:187.560000px;}
.y20{bottom:191.190000px;}
.y1f{bottom:228.810000px;}
.y3b{bottom:241.770000px;}
.y3a{bottom:261.390000px;}
.y1e{bottom:266.610000px;}
.y39{bottom:281.190000px;}
.y1d{bottom:286.275000px;}
.y4f{bottom:304.635000px;}
.y1c{bottom:306.075000px;}
.y38{bottom:318.855000px;}
.y5f{bottom:322.740000px;}
.y1b{bottom:325.695000px;}
.y4e{bottom:334.335000px;}
.y37{bottom:338.475000px;}
.y1a{bottom:345.315000px;}
.y36{bottom:358.275000px;}
.y4d{bottom:364.035000px;}
.y19{bottom:365.115000px;}
.y97{bottom:372.495000px;}
.y6b{bottom:377.280000px;}
.y18{bottom:384.735000px;}
.y69{bottom:384.840000px;}
.y67{bottom:385.380000px;}
.y35{bottom:386.895000px;}
.y4c{bottom:393.735000px;}
.y96{bottom:402.195000px;}
.y17{bottom:404.355000px;}
.y34{bottom:406.515000px;}
.y89{bottom:414.720000px;}
.y87{bottom:415.980000px;}
.y95{bottom:422.715000px;}
.y4b{bottom:423.435000px;}
.y16{bottom:424.155000px;}
.y33{bottom:426.315000px;}
.yaf{bottom:431.175000px;}
.y15{bottom:443.775000px;}
.y32{bottom:445.935000px;}
.y4a{bottom:453.135000px;}
.y31{bottom:465.735000px;}
.y3c{bottom:470.520000px;}
.yae{bottom:472.935000px;}
.y49{bottom:482.835000px;}
.y30{bottom:494.355000px;}
.y48{bottom:512.535000px;}
.y2f{bottom:513.975000px;}
.yad{bottom:515.415000px;}
.y2e{bottom:533.775000px;}
.y65{bottom:536.940000px;}
.y47{bottom:542.235000px;}
.y63{bottom:545.040000px;}
.y2d{bottom:553.395000px;}
.yaa{bottom:557.355000px;}
.y46{bottom:571.965000px;}
.y2c{bottom:573.045000px;}
.y8e{bottom:586.620000px;}
.y2b{bottom:592.845000px;}
.ya9{bottom:599.145000px;}
.y45{bottom:601.665000px;}
.y92{bottom:604.980000px;}
.y2a{bottom:612.465000px;}
.y44{bottom:631.545000px;}
.ya8{bottom:640.905000px;}
.y29{bottom:641.265000px;}
.y77{bottom:653.220000px;}
.y14{bottom:659.265000px;}
.y28{bottom:660.885000px;}
.y43{bottom:661.245000px;}
.yc4{bottom:670.965000px;}
.y13{bottom:678.885000px;}
.y27{bottom:680.505000px;}
.ya6{bottom:682.845000px;}
.yc3{bottom:688.425000px;}
.y42{bottom:690.945000px;}
.y7e{bottom:693.720000px;}
.y80{bottom:694.980000px;}
.y12{bottom:698.505000px;}
.y26{bottom:700.305000px;}
.yc2{bottom:705.885000px;}
.y41{bottom:708.585000px;}
.y11{bottom:718.305000px;}
.y5e{bottom:722.805000px;}
.yc1{bottom:723.525000px;}
.y10{bottom:737.925000px;}
.yc0{bottom:740.985000px;}
.ya5{bottom:757.365000px;}
.yf{bottom:757.725000px;}
.ybf{bottom:777.165000px;}
.ye{bottom:777.345000px;}
.y5d{bottom:790.845000px;}
.yd{bottom:796.965000px;}
.ybe{bottom:807.765000px;}
.ya2{bottom:815.685000px;}
.ybd{bottom:822.345000px;}
.yc{bottom:834.765000px;}
.ybc{bottom:841.425000px;}
.y59{bottom:849.750000px;}
.yb7{bottom:849.930000px;}
.ya{bottom:858.030000px;}
.y90{bottom:889.380000px;}
.ya1{bottom:890.250000px;}
.y91{bottom:890.280000px;}
.ybb{bottom:908.070000px;}
.y57{bottom:917.790000px;}
.y9c{bottom:932.910000px;}
.y7c{bottom:939.060000px;}
.y7a{bottom:939.240000px;}
.yb5{bottom:967.110000px;}
.y56{bottom:976.830000px;}
.y99{bottom:1000.770000px;}
.yb6{bottom:1008.870000px;}
.y52{bottom:1019.310000px;}
.yb4{bottom:1034.970000px;}
.y8{bottom:1039.110000px;}
.y98{bottom:1050.810000px;}
.y7{bottom:1072.410000px;}
.yb3{bottom:1075.650000px;}
.y50{bottom:1078.350000px;}
.y94{bottom:1095.270000px;}
.y6{bottom:1113.990000px;}
.y40{bottom:1115.070000px;}
.y8d{bottom:1120.830000px;}
.y5{bottom:1132.380000px;}
.y3f{bottom:1148.400000px;}
.y4{bottom:1150.560000px;}
.y76{bottom:1164.420000px;}
.y3{bottom:1168.740000px;}
.y2{bottom:1186.920000px;}
.y1{bottom:1205.280000px;}
.ha{height:16.365000px;}
.h20{height:16.380000px;}
.h1d{height:18.000000px;}
.h1b{height:18.900000px;}
.h17{height:19.080000px;}
.h14{height:19.260000px;}
.h1e{height:19.620000px;}
.h1a{height:19.800000px;}
.h13{height:19.980000px;}
.h11{height:20.160000px;}
.h29{height:25.380000px;}
.h18{height:25.560000px;}
.h28{height:25.920000px;}
.h15{height:28.080000px;}
.h12{height:28.260000px;}
.h5{height:28.980000px;}
.h23{height:30.254766px;}
.h1f{height:30.263555px;}
.h9{height:37.620000px;}
.h8{height:41.291016px;}
.h16{height:41.580000px;}
.hc{height:41.760000px;}
.h27{height:41.796000px;}
.h24{height:41.940000px;}
.h19{height:42.120000px;}
.h2b{height:48.263555px;}
.h21{height:49.320000px;}
.h6{height:50.312812px;}
.h4{height:54.026367px;}
.h7{height:56.320312px;}
.hd{height:58.140000px;}
.hf{height:58.176000px;}
.hb{height:58.320000px;}
.h2{height:59.789180px;}
.h10{height:61.920000px;}
.h22{height:67.140000px;}
.he{height:67.320000px;}
.h26{height:74.520000px;}
.h25{height:74.556000px;}
.h1c{height:93.240000px;}
.h3{height:108.052734px;}
.h2a{height:116.280000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:117.036000px;}
.w17{width:144.576000px;}
.w9{width:203.040000px;}
.wc{width:203.220000px;}
.w12{width:210.420000px;}
.w5{width:212.790000px;}
.wb{width:247.500000px;}
.wa{width:247.680000px;}
.wd{width:263.340000px;}
.w16{width:265.755000px;}
.we{width:266.400000px;}
.w3{width:274.350000px;}
.w7{width:276.375000px;}
.w19{width:287.175000px;}
.wf{width:300.420000px;}
.w6{width:319.035000px;}
.w4{width:373.140000px;}
.w18{width:376.455000px;}
.w15{width:425.415000px;}
.w13{width:709.920000px;}
.w11{width:721.620000px;}
.w10{width:721.800000px;}
.w8{width:793.080000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:4.320000px;}
.x22{left:6.660000px;}
.x2c{left:8.100000px;}
.x1d{left:10.836000px;}
.x2a{left:34.020000px;}
.x21{left:40.500000px;}
.x7{left:42.479987px;}
.x18{left:43.560000px;}
.x1f{left:44.820000px;}
.x14{left:46.440000px;}
.x13{left:48.060000px;}
.x6{left:55.259987px;}
.x28{left:72.216000px;}
.x25{left:75.105000px;}
.x11{left:80.100000px;}
.xb{left:84.959987px;}
.x1b{left:86.040000px;}
.xa{left:126.225000px;}
.x23{left:159.510000px;}
.x24{left:178.785000px;}
.x29{left:187.050000px;}
.x10{left:255.270000px;}
.x19{left:274.140000px;}
.x26{left:312.660000px;}
.x8{left:325.694987px;}
.x17{left:331.020000px;}
.x15{left:335.520000px;}
.x4{left:420.554987px;}
.x20{left:432.900000px;}
.x1e{left:446.580000px;}
.x1c{left:451.080000px;}
.x2{left:468.074987px;}
.xd{left:473.144987px;}
.xf{left:475.124987px;}
.xe{left:485.924987px;}
.x27{left:510.660000px;}
.xc{left:515.624987px;}
.x3{left:550.544987px;}
.x2b{left:563.505000px;}
.x9{left:574.125000px;}
.x1a{left:584.640000px;}
.x16{left:594.360000px;}
.x1{left:744.269987px;}
.x5{left:850.499987px;}
@media print{
.v2{vertical-align:-51.840000pt;}
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.248533pt;}
.lsb{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.048000pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.143147pt;}
.ls8{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.184320pt;}
.ls15{letter-spacing:0.184533pt;}
.ls14{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.199040pt;}
.ls1{letter-spacing:0.203520pt;}
.ls18{letter-spacing:0.304000pt;}
.ls9{letter-spacing:0.348267pt;}
.ls10{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.608000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.775680pt;}
.ls6{letter-spacing:4.704000pt;}
.ls5{letter-spacing:25.056000pt;}
.ls17{letter-spacing:138.506240pt;}
.lsc{letter-spacing:754.762667pt;}
.ws4{word-spacing:-48.000000pt;}
.ws3{word-spacing:-19.046507pt;}
.ws0{word-spacing:-18.874240pt;}
.ws2{word-spacing:-18.833707pt;}
.ws1{word-spacing:-18.698240pt;}
.ws8{word-spacing:-17.280000pt;}
.wsa{word-spacing:-17.200000pt;}
.ws7{word-spacing:-16.896000pt;}
.ws9{word-spacing:-16.880000pt;}
.ws5{word-spacing:-16.416000pt;}
.wsb{word-spacing:-15.093760pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-4.895573pt;}
._7{margin-left:-3.696000pt;}
._3{margin-left:-1.920000pt;}
._2{margin-left:-0.912000pt;}
._0{width:0.970240pt;}
._1{width:2.663467pt;}
._9{width:3.648000pt;}
._f{width:4.577280pt;}
._a{width:5.664000pt;}
._b{width:6.576000pt;}
._6{width:7.930667pt;}
._5{width:8.880000pt;}
._d{width:11.040000pt;}
._c{width:12.528000pt;}
._8{width:14.832000pt;}
._e{width:23.184000pt;}
._4{width:27.216000pt;}
._11{width:28.656000pt;}
._12{width:29.643520pt;}
._13{width:36.720000pt;}
._10{width:46.272000pt;}
._14{width:303.064320pt;}
._15{width:763.008427pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y62{bottom:-2.333333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.240000pt;}
.y51{bottom:2.560000pt;}
.y88{bottom:3.906667pt;}
.y71{bottom:4.506667pt;}
.y75{bottom:4.666667pt;}
.yb2{bottom:4.672000pt;}
.y81{bottom:4.733333pt;}
.y7d{bottom:4.773333pt;}
.y8a{bottom:4.866667pt;}
.y7f{bottom:4.893333pt;}
.y6a{bottom:5.026667pt;}
.y8f{bottom:5.373333pt;}
.y68{bottom:5.506667pt;}
.y93{bottom:5.533333pt;}
.y7b{bottom:5.573333pt;}
.y64{bottom:5.666667pt;}
.y3e{bottom:6.786667pt;}
.ya0{bottom:9.280000pt;}
.y6f{bottom:10.112000pt;}
.y73{bottom:10.426667pt;}
.y55{bottom:10.560000pt;}
.yac{bottom:10.586667pt;}
.y79{bottom:10.653333pt;}
.y5c{bottom:10.720000pt;}
.y86{bottom:10.912000pt;}
.y6c{bottom:12.706667pt;}
.y66{bottom:12.866667pt;}
.y9b{bottom:17.280000pt;}
.y9f{bottom:18.560000pt;}
.y3d{bottom:21.346667pt;}
.y6e{bottom:24.672000pt;}
.y54{bottom:25.120000pt;}
.yab{bottom:25.146667pt;}
.y78{bottom:25.213333pt;}
.y5b{bottom:25.280000pt;}
.y61{bottom:28.226667pt;}
.y9a{bottom:31.840000pt;}
.y9e{bottom:33.120000pt;}
.y9{bottom:34.912000pt;}
.y58{bottom:39.680000pt;}
.ya4{bottom:39.720000pt;}
.y53{bottom:39.840000pt;}
.y85{bottom:41.472000pt;}
.y60{bottom:42.786667pt;}
.y9d{bottom:47.680000pt;}
.y5a{bottom:47.840000pt;}
.ya7{bottom:54.240000pt;}
.ya3{bottom:54.280000pt;}
.y84{bottom:56.026667pt;}
.yb0{bottom:58.720000pt;}
.yba{bottom:62.240000pt;}
.y83{bottom:70.746667pt;}
.yb9{bottom:76.800000pt;}
.yb1{bottom:79.360000pt;}
.y25{bottom:82.432000pt;}
.y82{bottom:82.880000pt;}
.yb8{bottom:91.360000pt;}
.y6d{bottom:97.760000pt;}
.y24{bottom:100.032000pt;}
.y23{bottom:117.472000pt;}
.y72{bottom:128.480000pt;}
.y70{bottom:134.240000pt;}
.y22{bottom:134.906667pt;}
.y74{bottom:135.040000pt;}
.y21{bottom:152.506667pt;}
.y8c{bottom:165.760000pt;}
.y8b{bottom:166.720000pt;}
.y20{bottom:169.946667pt;}
.y1f{bottom:203.386667pt;}
.y3b{bottom:214.906667pt;}
.y3a{bottom:232.346667pt;}
.y1e{bottom:236.986667pt;}
.y39{bottom:249.946667pt;}
.y1d{bottom:254.466667pt;}
.y4f{bottom:270.786667pt;}
.y1c{bottom:272.066667pt;}
.y38{bottom:283.426667pt;}
.y5f{bottom:286.880000pt;}
.y1b{bottom:289.506667pt;}
.y4e{bottom:297.186667pt;}
.y37{bottom:300.866667pt;}
.y1a{bottom:306.946667pt;}
.y36{bottom:318.466667pt;}
.y4d{bottom:323.586667pt;}
.y19{bottom:324.546667pt;}
.y97{bottom:331.106667pt;}
.y6b{bottom:335.360000pt;}
.y18{bottom:341.986667pt;}
.y69{bottom:342.080000pt;}
.y67{bottom:342.560000pt;}
.y35{bottom:343.906667pt;}
.y4c{bottom:349.986667pt;}
.y96{bottom:357.506667pt;}
.y17{bottom:359.426667pt;}
.y34{bottom:361.346667pt;}
.y89{bottom:368.640000pt;}
.y87{bottom:369.760000pt;}
.y95{bottom:375.746667pt;}
.y4b{bottom:376.386667pt;}
.y16{bottom:377.026667pt;}
.y33{bottom:378.946667pt;}
.yaf{bottom:383.266667pt;}
.y15{bottom:394.466667pt;}
.y32{bottom:396.386667pt;}
.y4a{bottom:402.786667pt;}
.y31{bottom:413.986667pt;}
.y3c{bottom:418.240000pt;}
.yae{bottom:420.386667pt;}
.y49{bottom:429.186667pt;}
.y30{bottom:439.426667pt;}
.y48{bottom:455.586667pt;}
.y2f{bottom:456.866667pt;}
.yad{bottom:458.146667pt;}
.y2e{bottom:474.466667pt;}
.y65{bottom:477.280000pt;}
.y47{bottom:481.986667pt;}
.y63{bottom:484.480000pt;}
.y2d{bottom:491.906667pt;}
.yaa{bottom:495.426667pt;}
.y46{bottom:508.413333pt;}
.y2c{bottom:509.373333pt;}
.y8e{bottom:521.440000pt;}
.y2b{bottom:526.973333pt;}
.ya9{bottom:532.573333pt;}
.y45{bottom:534.813333pt;}
.y92{bottom:537.760000pt;}
.y2a{bottom:544.413333pt;}
.y44{bottom:561.373333pt;}
.ya8{bottom:569.693333pt;}
.y29{bottom:570.013333pt;}
.y77{bottom:580.640000pt;}
.y14{bottom:586.013333pt;}
.y28{bottom:587.453333pt;}
.y43{bottom:587.773333pt;}
.yc4{bottom:596.413333pt;}
.y13{bottom:603.453333pt;}
.y27{bottom:604.893333pt;}
.ya6{bottom:606.973333pt;}
.yc3{bottom:611.933333pt;}
.y42{bottom:614.173333pt;}
.y7e{bottom:616.640000pt;}
.y80{bottom:617.760000pt;}
.y12{bottom:620.893333pt;}
.y26{bottom:622.493333pt;}
.yc2{bottom:627.453333pt;}
.y41{bottom:629.853333pt;}
.y11{bottom:638.493333pt;}
.y5e{bottom:642.493333pt;}
.yc1{bottom:643.133333pt;}
.y10{bottom:655.933333pt;}
.yc0{bottom:658.653333pt;}
.ya5{bottom:673.213333pt;}
.yf{bottom:673.533333pt;}
.ybf{bottom:690.813333pt;}
.ye{bottom:690.973333pt;}
.y5d{bottom:702.973333pt;}
.yd{bottom:708.413333pt;}
.ybe{bottom:718.013333pt;}
.ya2{bottom:725.053333pt;}
.ybd{bottom:730.973333pt;}
.yc{bottom:742.013333pt;}
.ybc{bottom:747.933333pt;}
.y59{bottom:755.333333pt;}
.yb7{bottom:755.493333pt;}
.ya{bottom:762.693333pt;}
.y90{bottom:790.560000pt;}
.ya1{bottom:791.333333pt;}
.y91{bottom:791.360000pt;}
.ybb{bottom:807.173333pt;}
.y57{bottom:815.813333pt;}
.y9c{bottom:829.253333pt;}
.y7c{bottom:834.720000pt;}
.y7a{bottom:834.880000pt;}
.yb5{bottom:859.653333pt;}
.y56{bottom:868.293333pt;}
.y99{bottom:889.573333pt;}
.yb6{bottom:896.773333pt;}
.y52{bottom:906.053333pt;}
.yb4{bottom:919.973333pt;}
.y8{bottom:923.653333pt;}
.y98{bottom:934.053333pt;}
.y7{bottom:953.253333pt;}
.yb3{bottom:956.133333pt;}
.y50{bottom:958.533333pt;}
.y94{bottom:973.573333pt;}
.y6{bottom:990.213333pt;}
.y40{bottom:991.173333pt;}
.y8d{bottom:996.293333pt;}
.y5{bottom:1006.560000pt;}
.y3f{bottom:1020.800000pt;}
.y4{bottom:1022.720000pt;}
.y76{bottom:1035.040000pt;}
.y3{bottom:1038.880000pt;}
.y2{bottom:1055.040000pt;}
.y1{bottom:1071.360000pt;}
.ha{height:14.546667pt;}
.h20{height:14.560000pt;}
.h1d{height:16.000000pt;}
.h1b{height:16.800000pt;}
.h17{height:16.960000pt;}
.h14{height:17.120000pt;}
.h1e{height:17.440000pt;}
.h1a{height:17.600000pt;}
.h13{height:17.760000pt;}
.h11{height:17.920000pt;}
.h29{height:22.560000pt;}
.h18{height:22.720000pt;}
.h28{height:23.040000pt;}
.h15{height:24.960000pt;}
.h12{height:25.120000pt;}
.h5{height:25.760000pt;}
.h23{height:26.893125pt;}
.h1f{height:26.900937pt;}
.h9{height:33.440000pt;}
.h8{height:36.703125pt;}
.h16{height:36.960000pt;}
.hc{height:37.120000pt;}
.h27{height:37.152000pt;}
.h24{height:37.280000pt;}
.h19{height:37.440000pt;}
.h2b{height:42.900937pt;}
.h21{height:43.840000pt;}
.h6{height:44.722500pt;}
.h4{height:48.023438pt;}
.h7{height:50.062500pt;}
.hd{height:51.680000pt;}
.hf{height:51.712000pt;}
.hb{height:51.840000pt;}
.h2{height:53.145938pt;}
.h10{height:55.040000pt;}
.h22{height:59.680000pt;}
.he{height:59.840000pt;}
.h26{height:66.240000pt;}
.h25{height:66.272000pt;}
.h1c{height:82.880000pt;}
.h3{height:96.046875pt;}
.h2a{height:103.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:104.032000pt;}
.w17{width:128.512000pt;}
.w9{width:180.480000pt;}
.wc{width:180.640000pt;}
.w12{width:187.040000pt;}
.w5{width:189.146667pt;}
.wb{width:220.000000pt;}
.wa{width:220.160000pt;}
.wd{width:234.080000pt;}
.w16{width:236.226667pt;}
.we{width:236.800000pt;}
.w3{width:243.866667pt;}
.w7{width:245.666667pt;}
.w19{width:255.266667pt;}
.wf{width:267.040000pt;}
.w6{width:283.586667pt;}
.w4{width:331.680000pt;}
.w18{width:334.626667pt;}
.w15{width:378.146667pt;}
.w13{width:631.040000pt;}
.w11{width:641.440000pt;}
.w10{width:641.600000pt;}
.w8{width:704.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:3.840000pt;}
.x22{left:5.920000pt;}
.x2c{left:7.200000pt;}
.x1d{left:9.632000pt;}
.x2a{left:30.240000pt;}
.x21{left:36.000000pt;}
.x7{left:37.759988pt;}
.x18{left:38.720000pt;}
.x1f{left:39.840000pt;}
.x14{left:41.280000pt;}
.x13{left:42.720000pt;}
.x6{left:49.119988pt;}
.x28{left:64.192000pt;}
.x25{left:66.760000pt;}
.x11{left:71.200000pt;}
.xb{left:75.519988pt;}
.x1b{left:76.480000pt;}
.xa{left:112.200000pt;}
.x23{left:141.786667pt;}
.x24{left:158.920000pt;}
.x29{left:166.266667pt;}
.x10{left:226.906667pt;}
.x19{left:243.680000pt;}
.x26{left:277.920000pt;}
.x8{left:289.506655pt;}
.x17{left:294.240000pt;}
.x15{left:298.240000pt;}
.x4{left:373.826655pt;}
.x20{left:384.800000pt;}
.x1e{left:396.960000pt;}
.x1c{left:400.960000pt;}
.x2{left:416.066655pt;}
.xd{left:420.573322pt;}
.xf{left:422.333322pt;}
.xe{left:431.933322pt;}
.x27{left:453.920000pt;}
.xc{left:458.333322pt;}
.x3{left:489.373322pt;}
.x2b{left:500.893333pt;}
.x9{left:510.333333pt;}
.x1a{left:519.680000pt;}
.x16{left:528.320000pt;}
.x1{left:661.573322pt;}
.x5{left:755.999988pt;}
}




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