
    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_d77e446759179b223b2147b8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_98b677e8ba4e27072b4c6392.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_9e480159faee38e1cf06fb8a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_465ea43a5bc3ecf83a67eb2d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_958445bd452b113e196e1c1a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854492;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_b0703d9af6d7454139194696.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_aeb7a7ffa2009dd5d3f3caa1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_b8ae8f34c624290a03db8bb9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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);}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.270600px;}
.ls7{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.157800px;}
.ls9{letter-spacing:-0.094800px;}
.ls4{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.190800px;}
.ls0{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.241800px;}
.lsd{letter-spacing:0.319680px;}
.ls8{letter-spacing:0.328200px;}
.ls3{letter-spacing:0.348000px;}
.ls1{letter-spacing:0.360000px;}
.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;}
}
.ws7{word-spacing:-13.160160px;}
.ws8{word-spacing:-13.147200px;}
.ws9{word-spacing:-12.989400px;}
.ws6{word-spacing:-10.854600px;}
.ws4{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.342200px;}
.ws5{word-spacing:-9.092400px;}
.ws0{word-spacing:-7.884000px;}
.ws1{word-spacing:-7.632000px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-3.505440px;}
._8{margin-left:-2.334960px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.470080px;}
._18{width:4.202160px;}
._9{width:5.497920px;}
._17{width:6.708000px;}
._12{width:8.426160px;}
._1a{width:9.757680px;}
._5{width:11.286000px;}
._1b{width:13.170000px;}
._7{width:14.641200px;}
._a{width:15.724320px;}
._d{width:17.569440px;}
._c{width:18.884160px;}
._19{width:20.676960px;}
._15{width:22.060800px;}
._14{width:23.127120px;}
._1e{width:24.919920px;}
._22{width:26.242080px;}
._24{width:28.349280px;}
._21{width:29.521440px;}
._16{width:30.836160px;}
._20{width:32.839440px;}
._1f{width:34.242480px;}
._25{width:35.258400px;}
._23{width:36.393840px;}
._13{width:37.589040px;}
._11{width:40.278240px;}
._b{width:41.294160px;}
._1c{width:46.827240px;}
._f{width:54.919440px;}
._e{width:55.935360px;}
._28{width:59.221440px;}
._27{width:73.921920px;}
._0{width:75.000000px;}
._29{width:108.942480px;}
._3{width:181.620000px;}
._6{width:200.280000px;}
._26{width:254.226480px;}
._1d{width:1069.687200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs6{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y57{bottom:-9.360000px;}
.y0{bottom:0.000000px;}
.y56{bottom:3.960000px;}
.y55{bottom:14.580000px;}
.y54{bottom:25.020000px;}
.y53{bottom:42.660000px;}
.y7{bottom:56.520000px;}
.y6{bottom:70.596000px;}
.y52{bottom:95.580000px;}
.y51{bottom:109.620000px;}
.yc2{bottom:110.736000px;}
.y3f{bottom:118.296000px;}
.y50{bottom:123.660000px;}
.yc1{bottom:127.836000px;}
.y8c{bottom:131.076000px;}
.y4f{bottom:137.880000px;}
.y3e{bottom:138.456000px;}
.yc0{bottom:148.176000px;}
.y8b{bottom:151.230000px;}
.y4e{bottom:151.920000px;}
.y3d{bottom:158.790000px;}
.y4d{bottom:165.960000px;}
.ybf{bottom:168.330000px;}
.y8a{bottom:171.390000px;}
.y3c{bottom:178.950000px;}
.y4c{bottom:180.000000px;}
.ybe{bottom:188.490000px;}
.y89{bottom:191.730000px;}
.y4b{bottom:194.040000px;}
.y3b{bottom:199.110000px;}
.y4a{bottom:208.080000px;}
.ybd{bottom:208.830000px;}
.y88{bottom:211.890000px;}
.y3a{bottom:219.450000px;}
.y49{bottom:222.300000px;}
.ybc{bottom:228.990000px;}
.y87{bottom:232.050000px;}
.y48{bottom:234.945000px;}
.y39{bottom:239.610000px;}
.y47{bottom:243.405000px;}
.ybb{bottom:249.150000px;}
.y86{bottom:252.390000px;}
.y46{bottom:257.445000px;}
.y38{bottom:259.770000px;}
.yba{bottom:269.490000px;}
.y45{bottom:271.485000px;}
.y85{bottom:272.550000px;}
.y37{bottom:280.110000px;}
.y44{bottom:285.525000px;}
.yb9{bottom:289.650000px;}
.y84{bottom:292.710000px;}
.y43{bottom:299.565000px;}
.y36{bottom:300.270000px;}
.yb8{bottom:309.810000px;}
.y42{bottom:312.165000px;}
.y83{bottom:313.050000px;}
.y35{bottom:320.430000px;}
.y41{bottom:323.325000px;}
.yb7{bottom:330.150000px;}
.y82{bottom:333.210000px;}
.y34{bottom:338.115000px;}
.yb6{bottom:350.355000px;}
.y81{bottom:353.415000px;}
.y33{bottom:355.755000px;}
.yb5{bottom:370.695000px;}
.y32{bottom:373.395000px;}
.y80{bottom:373.755000px;}
.yb4{bottom:390.855000px;}
.y31{bottom:391.035000px;}
.y7f{bottom:393.915000px;}
.y30{bottom:408.495000px;}
.yb3{bottom:411.015000px;}
.yc3{bottom:411.195000px;}
.y7e{bottom:414.255000px;}
.y2f{bottom:426.135000px;}
.yb2{bottom:431.355000px;}
.y7d{bottom:434.415000px;}
.y2e{bottom:443.775000px;}
.yb1{bottom:451.515000px;}
.y7c{bottom:454.575000px;}
.y2d{bottom:461.235000px;}
.yb0{bottom:471.675000px;}
.y7b{bottom:474.915000px;}
.y2c{bottom:478.875000px;}
.yaf{bottom:492.015000px;}
.y7a{bottom:495.075000px;}
.y2b{bottom:496.515000px;}
.yae{bottom:512.175000px;}
.y2a{bottom:513.975000px;}
.y79{bottom:515.235000px;}
.y29{bottom:531.615000px;}
.yad{bottom:532.335000px;}
.y78{bottom:535.575000px;}
.y28{bottom:549.255000px;}
.yac{bottom:552.675000px;}
.y77{bottom:555.735000px;}
.y27{bottom:566.895000px;}
.yab{bottom:572.835000px;}
.y76{bottom:575.895000px;}
.y26{bottom:584.355000px;}
.yaa{bottom:592.995000px;}
.y75{bottom:596.235000px;}
.y25{bottom:603.825000px;}
.ya9{bottom:613.365000px;}
.y74{bottom:616.425000px;}
.y24{bottom:620.025000px;}
.ya8{bottom:633.525000px;}
.y73{bottom:636.585000px;}
.y23{bottom:637.665000px;}
.y40{bottom:645.585000px;}
.ya7{bottom:653.685000px;}
.y22{bottom:655.305000px;}
.y72{bottom:656.925000px;}
.y21{bottom:672.765000px;}
.ya6{bottom:674.025000px;}
.y71{bottom:677.085000px;}
.y20{bottom:690.405000px;}
.ya5{bottom:694.185000px;}
.y70{bottom:697.245000px;}
.y1f{bottom:708.045000px;}
.ya4{bottom:714.345000px;}
.y6f{bottom:717.585000px;}
.y1e{bottom:725.685000px;}
.ya3{bottom:734.685000px;}
.y6e{bottom:737.745000px;}
.y1d{bottom:743.145000px;}
.ya2{bottom:754.845000px;}
.y6d{bottom:757.905000px;}
.y1c{bottom:760.785000px;}
.ya1{bottom:775.185000px;}
.y6c{bottom:778.245000px;}
.y1b{bottom:778.425000px;}
.ya0{bottom:795.345000px;}
.y1a{bottom:795.885000px;}
.y6b{bottom:798.405000px;}
.y19{bottom:813.525000px;}
.y9f{bottom:815.505000px;}
.y6a{bottom:818.745000px;}
.y18{bottom:831.165000px;}
.y9e{bottom:835.845000px;}
.y69{bottom:838.905000px;}
.y17{bottom:848.625000px;}
.y9d{bottom:856.005000px;}
.y68{bottom:859.065000px;}
.y16{bottom:866.265000px;}
.y9c{bottom:876.210000px;}
.y67{bottom:879.450000px;}
.y15{bottom:883.950000px;}
.y9b{bottom:896.550000px;}
.y66{bottom:899.610000px;}
.y14{bottom:901.410000px;}
.y9a{bottom:916.710000px;}
.y13{bottom:919.050000px;}
.y65{bottom:919.770000px;}
.y12{bottom:936.690000px;}
.y99{bottom:936.870000px;}
.y64{bottom:940.110000px;}
.y11{bottom:954.330000px;}
.y98{bottom:957.210000px;}
.y63{bottom:960.270000px;}
.y10{bottom:971.790000px;}
.y97{bottom:977.370000px;}
.y62{bottom:980.430000px;}
.yf{bottom:989.070000px;}
.y96{bottom:997.530000px;}
.y61{bottom:1000.770000px;}
.ye{bottom:1004.550000px;}
.y95{bottom:1017.870000px;}
.y60{bottom:1020.930000px;}
.yd{bottom:1022.010000px;}
.yc{bottom:1035.330000px;}
.y94{bottom:1038.030000px;}
.y5f{bottom:1041.090000px;}
.yb{bottom:1053.870000px;}
.y93{bottom:1058.190000px;}
.y5e{bottom:1061.430000px;}
.ya{bottom:1069.530000px;}
.y92{bottom:1078.530000px;}
.y5d{bottom:1081.590000px;}
.y9{bottom:1092.390000px;}
.y91{bottom:1098.690000px;}
.y5c{bottom:1101.750000px;}
.y8{bottom:1114.350000px;}
.y90{bottom:1119.030000px;}
.y5b{bottom:1122.090000px;}
.y5{bottom:1135.050000px;}
.y8f{bottom:1139.220000px;}
.y5a{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y8e{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y59{bottom:1175.220000px;}
.y8d{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y58{bottom:1197.540000px;}
.hc{height:20.117109px;}
.hd{height:30.480469px;}
.h8{height:33.480703px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.ha{height:45.720703px;}
.he{height:50.273438px;}
.h5{height:50.597578px;}
.h7{height:56.084062px;}
.hf{height:58.819922px;}
.h9{height:60.960938px;}
.h6{height:65.837812px;}
.hb{height:336.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:221.970000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x3{left:117.395987px;}
.x9{left:134.994000px;}
.x8{left:159.509987px;}
.x4{left:229.169987px;}
.x7{left:342.614987px;}
.x6{left:354.134987px;}
.x5{left:446.654987px;}
.xa{left:544.964987px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.240533pt;}
.ls7{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.140267pt;}
.ls9{letter-spacing:-0.084267pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.169600pt;}
.ls0{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.214933pt;}
.lsd{letter-spacing:0.284160pt;}
.ls8{letter-spacing:0.291733pt;}
.ls3{letter-spacing:0.309333pt;}
.ls1{letter-spacing:0.320000pt;}
.ws7{word-spacing:-11.697920pt;}
.ws8{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.546133pt;}
.ws6{word-spacing:-9.648533pt;}
.ws4{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.193067pt;}
.ws5{word-spacing:-8.082133pt;}
.ws0{word-spacing:-7.008000pt;}
.ws1{word-spacing:-6.784000pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-3.115947pt;}
._8{margin-left:-2.075520pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:2.195627pt;}
._18{width:3.735253pt;}
._9{width:4.887040pt;}
._17{width:5.962667pt;}
._12{width:7.489920pt;}
._1a{width:8.673493pt;}
._5{width:10.032000pt;}
._1b{width:11.706667pt;}
._7{width:13.014400pt;}
._a{width:13.977173pt;}
._d{width:15.617280pt;}
._c{width:16.785920pt;}
._19{width:18.379520pt;}
._15{width:19.609600pt;}
._14{width:20.557440pt;}
._1e{width:22.151040pt;}
._22{width:23.326293pt;}
._24{width:25.199360pt;}
._21{width:26.241280pt;}
._16{width:27.409920pt;}
._20{width:29.190613pt;}
._1f{width:30.437760pt;}
._25{width:31.340800pt;}
._23{width:32.350080pt;}
._13{width:33.412480pt;}
._11{width:35.802880pt;}
._b{width:36.705920pt;}
._1c{width:41.624213pt;}
._f{width:48.817280pt;}
._e{width:49.720320pt;}
._28{width:52.641280pt;}
._27{width:65.708373pt;}
._0{width:66.666667pt;}
._29{width:96.837760pt;}
._3{width:161.440000pt;}
._6{width:178.026667pt;}
._26{width:225.979093pt;}
._1d{width:950.833067pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y57{bottom:-8.320000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:3.520000pt;}
.y55{bottom:12.960000pt;}
.y54{bottom:22.240000pt;}
.y53{bottom:37.920000pt;}
.y7{bottom:50.240000pt;}
.y6{bottom:62.752000pt;}
.y52{bottom:84.960000pt;}
.y51{bottom:97.440000pt;}
.yc2{bottom:98.432000pt;}
.y3f{bottom:105.152000pt;}
.y50{bottom:109.920000pt;}
.yc1{bottom:113.632000pt;}
.y8c{bottom:116.512000pt;}
.y4f{bottom:122.560000pt;}
.y3e{bottom:123.072000pt;}
.yc0{bottom:131.712000pt;}
.y8b{bottom:134.426667pt;}
.y4e{bottom:135.040000pt;}
.y3d{bottom:141.146667pt;}
.y4d{bottom:147.520000pt;}
.ybf{bottom:149.626667pt;}
.y8a{bottom:152.346667pt;}
.y3c{bottom:159.066667pt;}
.y4c{bottom:160.000000pt;}
.ybe{bottom:167.546667pt;}
.y89{bottom:170.426667pt;}
.y4b{bottom:172.480000pt;}
.y3b{bottom:176.986667pt;}
.y4a{bottom:184.960000pt;}
.ybd{bottom:185.626667pt;}
.y88{bottom:188.346667pt;}
.y3a{bottom:195.066667pt;}
.y49{bottom:197.600000pt;}
.ybc{bottom:203.546667pt;}
.y87{bottom:206.266667pt;}
.y48{bottom:208.840000pt;}
.y39{bottom:212.986667pt;}
.y47{bottom:216.360000pt;}
.ybb{bottom:221.466667pt;}
.y86{bottom:224.346667pt;}
.y46{bottom:228.840000pt;}
.y38{bottom:230.906667pt;}
.yba{bottom:239.546667pt;}
.y45{bottom:241.320000pt;}
.y85{bottom:242.266667pt;}
.y37{bottom:248.986667pt;}
.y44{bottom:253.800000pt;}
.yb9{bottom:257.466667pt;}
.y84{bottom:260.186667pt;}
.y43{bottom:266.280000pt;}
.y36{bottom:266.906667pt;}
.yb8{bottom:275.386667pt;}
.y42{bottom:277.480000pt;}
.y83{bottom:278.266667pt;}
.y35{bottom:284.826667pt;}
.y41{bottom:287.400000pt;}
.yb7{bottom:293.466667pt;}
.y82{bottom:296.186667pt;}
.y34{bottom:300.546667pt;}
.yb6{bottom:311.426667pt;}
.y81{bottom:314.146667pt;}
.y33{bottom:316.226667pt;}
.yb5{bottom:329.506667pt;}
.y32{bottom:331.906667pt;}
.y80{bottom:332.226667pt;}
.yb4{bottom:347.426667pt;}
.y31{bottom:347.586667pt;}
.y7f{bottom:350.146667pt;}
.y30{bottom:363.106667pt;}
.yb3{bottom:365.346667pt;}
.yc3{bottom:365.506667pt;}
.y7e{bottom:368.226667pt;}
.y2f{bottom:378.786667pt;}
.yb2{bottom:383.426667pt;}
.y7d{bottom:386.146667pt;}
.y2e{bottom:394.466667pt;}
.yb1{bottom:401.346667pt;}
.y7c{bottom:404.066667pt;}
.y2d{bottom:409.986667pt;}
.yb0{bottom:419.266667pt;}
.y7b{bottom:422.146667pt;}
.y2c{bottom:425.666667pt;}
.yaf{bottom:437.346667pt;}
.y7a{bottom:440.066667pt;}
.y2b{bottom:441.346667pt;}
.yae{bottom:455.266667pt;}
.y2a{bottom:456.866667pt;}
.y79{bottom:457.986667pt;}
.y29{bottom:472.546667pt;}
.yad{bottom:473.186667pt;}
.y78{bottom:476.066667pt;}
.y28{bottom:488.226667pt;}
.yac{bottom:491.266667pt;}
.y77{bottom:493.986667pt;}
.y27{bottom:503.906667pt;}
.yab{bottom:509.186667pt;}
.y76{bottom:511.906667pt;}
.y26{bottom:519.426667pt;}
.yaa{bottom:527.106667pt;}
.y75{bottom:529.986667pt;}
.y25{bottom:536.733333pt;}
.ya9{bottom:545.213333pt;}
.y74{bottom:547.933333pt;}
.y24{bottom:551.133333pt;}
.ya8{bottom:563.133333pt;}
.y73{bottom:565.853333pt;}
.y23{bottom:566.813333pt;}
.y40{bottom:573.853333pt;}
.ya7{bottom:581.053333pt;}
.y22{bottom:582.493333pt;}
.y72{bottom:583.933333pt;}
.y21{bottom:598.013333pt;}
.ya6{bottom:599.133333pt;}
.y71{bottom:601.853333pt;}
.y20{bottom:613.693333pt;}
.ya5{bottom:617.053333pt;}
.y70{bottom:619.773333pt;}
.y1f{bottom:629.373333pt;}
.ya4{bottom:634.973333pt;}
.y6f{bottom:637.853333pt;}
.y1e{bottom:645.053333pt;}
.ya3{bottom:653.053333pt;}
.y6e{bottom:655.773333pt;}
.y1d{bottom:660.573333pt;}
.ya2{bottom:670.973333pt;}
.y6d{bottom:673.693333pt;}
.y1c{bottom:676.253333pt;}
.ya1{bottom:689.053333pt;}
.y6c{bottom:691.773333pt;}
.y1b{bottom:691.933333pt;}
.ya0{bottom:706.973333pt;}
.y1a{bottom:707.453333pt;}
.y6b{bottom:709.693333pt;}
.y19{bottom:723.133333pt;}
.y9f{bottom:724.893333pt;}
.y6a{bottom:727.773333pt;}
.y18{bottom:738.813333pt;}
.y9e{bottom:742.973333pt;}
.y69{bottom:745.693333pt;}
.y17{bottom:754.333333pt;}
.y9d{bottom:760.893333pt;}
.y68{bottom:763.613333pt;}
.y16{bottom:770.013333pt;}
.y9c{bottom:778.853333pt;}
.y67{bottom:781.733333pt;}
.y15{bottom:785.733333pt;}
.y9b{bottom:796.933333pt;}
.y66{bottom:799.653333pt;}
.y14{bottom:801.253333pt;}
.y9a{bottom:814.853333pt;}
.y13{bottom:816.933333pt;}
.y65{bottom:817.573333pt;}
.y12{bottom:832.613333pt;}
.y99{bottom:832.773333pt;}
.y64{bottom:835.653333pt;}
.y11{bottom:848.293333pt;}
.y98{bottom:850.853333pt;}
.y63{bottom:853.573333pt;}
.y10{bottom:863.813333pt;}
.y97{bottom:868.773333pt;}
.y62{bottom:871.493333pt;}
.yf{bottom:879.173333pt;}
.y96{bottom:886.693333pt;}
.y61{bottom:889.573333pt;}
.ye{bottom:892.933333pt;}
.y95{bottom:904.773333pt;}
.y60{bottom:907.493333pt;}
.yd{bottom:908.453333pt;}
.yc{bottom:920.293333pt;}
.y94{bottom:922.693333pt;}
.y5f{bottom:925.413333pt;}
.yb{bottom:936.773333pt;}
.y93{bottom:940.613333pt;}
.y5e{bottom:943.493333pt;}
.ya{bottom:950.693333pt;}
.y92{bottom:958.693333pt;}
.y5d{bottom:961.413333pt;}
.y9{bottom:971.013333pt;}
.y91{bottom:976.613333pt;}
.y5c{bottom:979.333333pt;}
.y8{bottom:990.533333pt;}
.y90{bottom:994.693333pt;}
.y5b{bottom:997.413333pt;}
.y5{bottom:1008.933333pt;}
.y8f{bottom:1012.640000pt;}
.y5a{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y8e{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y59{bottom:1044.640000pt;}
.y8d{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y58{bottom:1064.480000pt;}
.hc{height:17.881875pt;}
.hd{height:27.093750pt;}
.h8{height:29.760625pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.ha{height:40.640625pt;}
.he{height:44.687500pt;}
.h5{height:44.975625pt;}
.h7{height:49.852500pt;}
.hf{height:52.284375pt;}
.h9{height:54.187500pt;}
.h6{height:58.522500pt;}
.hb{height:298.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x3{left:104.351988pt;}
.x9{left:119.994667pt;}
.x8{left:141.786655pt;}
.x4{left:203.706655pt;}
.x7{left:304.546655pt;}
.x6{left:314.786655pt;}
.x5{left:397.026655pt;}
.xa{left:484.413322pt;}
}




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