
    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_452ac43ade41073090a0823d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0bc094d6e1109d21541943a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5772251154198e49e754205e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_213fcc67eb28505aa8a840af.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927246;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_29d9ed7b3b46aeaa9283a59e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_864fce711c19187c9c7c090c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f244f2747e76874d9eb9bb3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fe7488b512b941ee52d64b1b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_578d35edd4ddbf5a9037f753.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1ef6bed1b75b261890bde2e1.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.496200px;}
.lse{letter-spacing:-0.253200px;}
.ls8{letter-spacing:-0.181200px;}
.ls7{letter-spacing:-0.106800px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.269280px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:16.865280px;}
.lsb{letter-spacing:39.881280px;}
.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;}
}
.wsa{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.ws8{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.563800px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
.ws1{word-spacing:0.047040px;}
._16{margin-left:-4.438080px;}
._e{margin-left:-3.432960px;}
._b{margin-left:-2.214000px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._2{width:2.339760px;}
._c{width:3.479280px;}
._a{width:4.590000px;}
._9{width:6.360960px;}
._3{width:7.614000px;}
._5{width:8.748000px;}
._d{width:10.638000px;}
._4{width:11.772000px;}
._14{width:12.774960px;}
._10{width:13.878000px;}
._f{width:15.333120px;}
._7{width:16.740000px;}
._8{width:17.766000px;}
._11{width:19.275840px;}
._12{width:20.335680px;}
._15{width:21.726720px;}
._17{width:23.780160px;}
._19{width:27.092160px;}
._18{width:28.152000px;}
._6{width:31.590000px;}
._13{width:32.670000px;}
.fc5{color:rgb(27,28,29);}
.fc4{color:rgb(17,85,204);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y31{bottom:2.880000px;}
.y2{bottom:6.480000px;}
.y3c{bottom:9.765000px;}
.y3d{bottom:11.385000px;}
.y30{bottom:18.360000px;}
.y5{bottom:27.210000px;}
.y8{bottom:28.830000px;}
.y2f{bottom:33.840000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y2e{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y2d{bottom:64.980000px;}
.y2c{bottom:80.460000px;}
.y2b{bottom:95.940000px;}
.y7d{bottom:110.376000px;}
.y2a{bottom:111.600000px;}
.y7c{bottom:114.876000px;}
.y6d{bottom:122.976000px;}
.y7b{bottom:124.236000px;}
.y29{bottom:127.080000px;}
.y7a{bottom:128.736000px;}
.y44{bottom:137.736000px;}
.y98{bottom:137.916000px;}
.y79{bottom:138.096000px;}
.y97{bottom:142.416000px;}
.y28{bottom:142.560000px;}
.y78{bottom:142.596000px;}
.y6c{bottom:144.756000px;}
.y96{bottom:151.770000px;}
.y77{bottom:151.950000px;}
.y39{bottom:155.880000px;}
.y95{bottom:156.270000px;}
.y76{bottom:156.450000px;}
.y27{bottom:158.040000px;}
.y43{bottom:159.510000px;}
.y75{bottom:165.810000px;}
.y6b{bottom:166.530000px;}
.y94{bottom:166.710000px;}
.y38{bottom:169.740000px;}
.y74{bottom:170.310000px;}
.y26{bottom:173.520000px;}
.y93{bottom:179.490000px;}
.y89{bottom:179.670000px;}
.y73{bottom:180.570000px;}
.y42{bottom:181.290000px;}
.y37{bottom:183.600000px;}
.y92{bottom:183.990000px;}
.y88{bottom:184.170000px;}
.y6a{bottom:188.310000px;}
.y25{bottom:189.180000px;}
.y91{bottom:193.350000px;}
.y87{bottom:193.530000px;}
.y36{bottom:197.280000px;}
.y90{bottom:197.850000px;}
.y41{bottom:203.070000px;}
.y24{bottom:204.660000px;}
.y86{bottom:207.210000px;}
.y69{bottom:210.090000px;}
.y35{bottom:211.170000px;}
.y85{bottom:211.710000px;}
.y23{bottom:220.170000px;}
.y84{bottom:222.150000px;}
.y34{bottom:225.030000px;}
.y68{bottom:232.050000px;}
.y22{bottom:235.650000px;}
.y33{bottom:238.710000px;}
.y40{bottom:246.810000px;}
.y21{bottom:251.310000px;}
.y32{bottom:252.570000px;}
.y67{bottom:253.830000px;}
.y72{bottom:259.770000px;}
.y20{bottom:266.790000px;}
.y3f{bottom:268.590000px;}
.y66{bottom:275.610000px;}
.y1f{bottom:282.270000px;}
.y3e{bottom:286.050000px;}
.y65{bottom:297.390000px;}
.y1e{bottom:297.750000px;}
.y3b{bottom:308.370000px;}
.y1d{bottom:313.410000px;}
.y64{bottom:319.395000px;}
.y8f{bottom:325.335000px;}
.y1c{bottom:328.890000px;}
.y63{bottom:341.175000px;}
.y1b{bottom:344.370000px;}
.y3a{bottom:346.215000px;}
.y83{bottom:347.115000px;}
.y1a{bottom:359.850000px;}
.y17{bottom:361.695000px;}
.y62{bottom:362.955000px;}
.y71{bottom:368.895000px;}
.y19{bottom:375.510000px;}
.y61{bottom:384.735000px;}
.y8e{bottom:390.675000px;}
.y18{bottom:390.990000px;}
.y60{bottom:406.515000px;}
.y82{bottom:412.455000px;}
.y5f{bottom:428.475000px;}
.y8d{bottom:434.415000px;}
.y5e{bottom:450.255000px;}
.y5d{bottom:472.035000px;}
.y5c{bottom:493.815000px;}
.y99{bottom:499.755000px;}
.y5b{bottom:515.775000px;}
.y5a{bottom:537.555000px;}
.y59{bottom:559.335000px;}
.y58{bottom:581.145000px;}
.y81{bottom:587.085000px;}
.y57{bottom:602.925000px;}
.y56{bottom:624.885000px;}
.y70{bottom:630.825000px;}
.y55{bottom:646.665000px;}
.y54{bottom:668.445000px;}
.y53{bottom:690.225000px;}
.y8c{bottom:696.165000px;}
.y52{bottom:712.185000px;}
.y51{bottom:733.965000px;}
.y50{bottom:755.745000px;}
.y6f{bottom:761.685000px;}
.y16{bottom:777.525000px;}
.y80{bottom:783.465000px;}
.y15{bottom:792.825000px;}
.y4f{bottom:799.305000px;}
.y14{bottom:812.805000px;}
.y4e{bottom:821.310000px;}
.y13{bottom:837.870000px;}
.y4d{bottom:843.090000px;}
.y7f{bottom:849.030000px;}
.y12{bottom:852.990000px;}
.y4c{bottom:864.870000px;}
.y11{bottom:874.770000px;}
.y4b{bottom:886.650000px;}
.y10{bottom:896.550000px;}
.y4a{bottom:908.430000px;}
.y6e{bottom:914.370000px;}
.yf{bottom:918.510000px;}
.y49{bottom:930.390000px;}
.y7e{bottom:936.330000px;}
.ye{bottom:940.290000px;}
.y48{bottom:952.170000px;}
.yd{bottom:963.330000px;}
.y47{bottom:973.950000px;}
.y8b{bottom:979.890000px;}
.yc{bottom:989.070000px;}
.y46{bottom:995.730000px;}
.yb{bottom:1014.990000px;}
.y45{bottom:1017.690000px;}
.y8a{bottom:1023.630000px;}
.y9{bottom:1036.590000px;}
.y1{bottom:1056.570000px;}
.h17{height:22.104141px;}
.hb{height:27.147656px;}
.hd{height:29.158594px;}
.h19{height:29.464453px;}
.h14{height:31.356000px;}
.h15{height:33.683203px;}
.h12{height:34.036523px;}
.h18{height:35.261367px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.h7{height:39.147891px;}
.h13{height:39.760312px;}
.h2{height:41.726953px;}
.h4{height:42.164648px;}
.h11{height:44.507812px;}
.h16{height:46.251562px;}
.h3{height:46.736719px;}
.hc{height:48.027656px;}
.h6{height:48.418594px;}
.h5{height:49.255313px;}
.ha{height:53.224453px;}
.h9{height:54.596250px;}
.h8{height:54.864844px;}
.h1{height:77.436000px;}
.he{height:403.590000px;}
.h0{height:1188.000000px;}
.w1{width:72.000000px;}
.w3{width:209.370000px;}
.w6{width:224.130000px;}
.w7{width:297.750000px;}
.w8{width:391.575000px;}
.w2{width:427.935000px;}
.w5{width:459.075000px;}
.w9{width:917.999973px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x17{left:29.694000px;}
.x6{left:44.640000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035986px;}
.xf{left:109.115986px;}
.x27{left:112.175986px;}
.x34{left:116.315986px;}
.x16{left:124.236000px;}
.x8{left:127.305000px;}
.xc{left:129.455986px;}
.x21{left:135.035986px;}
.x43{left:140.075986px;}
.x3c{left:150.149973px;}
.xb{left:155.189986px;}
.x3d{left:160.589986px;}
.x1a{left:162.029986px;}
.x3{left:171.930000px;}
.x13{left:188.669986px;}
.x10{left:198.389986px;}
.x3b{left:200.009973px;}
.x11{left:210.809986px;}
.x22{left:230.249973px;}
.x23{left:235.469986px;}
.x30{left:281.909973px;}
.x3e{left:286.274973px;}
.x1f{left:289.514973px;}
.x31{left:292.394986px;}
.x20{left:294.734986px;}
.x3f{left:296.714986px;}
.xd{left:298.154986px;}
.x36{left:304.634986px;}
.x26{left:324.074986px;}
.x40{left:325.874973px;}
.x14{left:336.854986px;}
.x37{left:344.774973px;}
.x38{left:355.214986px;}
.x2e{left:383.834973px;}
.x12{left:388.874986px;}
.x18{left:421.995000px;}
.x28{left:434.234973px;}
.x24{left:438.014973px;}
.x29{left:439.454986px;}
.x25{left:443.234986px;}
.x2f{left:445.034986px;}
.x1b{left:448.634973px;}
.x1c{left:453.854986px;}
.xe{left:459.074986px;}
.x35{left:499.964973px;}
.x1d{left:501.224973px;}
.x2a{left:504.824973px;}
.x1e{left:506.444986px;}
.x2b{left:510.044986px;}
.xa{left:521.024986px;}
.x15{left:567.105000px;}
.x5{left:599.865000px;}
.x2c{left:632.624973px;}
.x32{left:635.684973px;}
.x2d{left:637.844986px;}
.x33{left:646.124986px;}
.x39{left:662.684973px;}
.x3a{left:673.124986px;}
.x41{left:717.089973px;}
.x42{left:727.529986px;}
.x19{left:802.949986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.441067pt;}
.lse{letter-spacing:-0.225067pt;}
.ls8{letter-spacing:-0.161067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.239360pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:14.991360pt;}
.lsb{letter-spacing:35.450027pt;}
.wsa{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.ws8{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.278933pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
.ws1{word-spacing:0.041813pt;}
._16{margin-left:-3.944960pt;}
._e{margin-left:-3.051520pt;}
._b{margin-left:-1.968000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._2{width:2.079787pt;}
._c{width:3.092693pt;}
._a{width:4.080000pt;}
._9{width:5.654187pt;}
._3{width:6.768000pt;}
._5{width:7.776000pt;}
._d{width:9.456000pt;}
._4{width:10.464000pt;}
._14{width:11.355520pt;}
._10{width:12.336000pt;}
._f{width:13.629440pt;}
._7{width:14.880000pt;}
._8{width:15.792000pt;}
._11{width:17.134080pt;}
._12{width:18.076160pt;}
._15{width:19.312640pt;}
._17{width:21.137920pt;}
._19{width:24.081920pt;}
._18{width:25.024000pt;}
._6{width:28.080000pt;}
._13{width:29.040000pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:2.560000pt;}
.y2{bottom:5.760000pt;}
.y3c{bottom:8.680000pt;}
.y3d{bottom:10.120000pt;}
.y30{bottom:16.320000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.626667pt;}
.y2f{bottom:30.080000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y2e{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y2d{bottom:57.760000pt;}
.y2c{bottom:71.520000pt;}
.y2b{bottom:85.280000pt;}
.y7d{bottom:98.112000pt;}
.y2a{bottom:99.200000pt;}
.y7c{bottom:102.112000pt;}
.y6d{bottom:109.312000pt;}
.y7b{bottom:110.432000pt;}
.y29{bottom:112.960000pt;}
.y7a{bottom:114.432000pt;}
.y44{bottom:122.432000pt;}
.y98{bottom:122.592000pt;}
.y79{bottom:122.752000pt;}
.y97{bottom:126.592000pt;}
.y28{bottom:126.720000pt;}
.y78{bottom:126.752000pt;}
.y6c{bottom:128.672000pt;}
.y96{bottom:134.906667pt;}
.y77{bottom:135.066667pt;}
.y39{bottom:138.560000pt;}
.y95{bottom:138.906667pt;}
.y76{bottom:139.066667pt;}
.y27{bottom:140.480000pt;}
.y43{bottom:141.786667pt;}
.y75{bottom:147.386667pt;}
.y6b{bottom:148.026667pt;}
.y94{bottom:148.186667pt;}
.y38{bottom:150.880000pt;}
.y74{bottom:151.386667pt;}
.y26{bottom:154.240000pt;}
.y93{bottom:159.546667pt;}
.y89{bottom:159.706667pt;}
.y73{bottom:160.506667pt;}
.y42{bottom:161.146667pt;}
.y37{bottom:163.200000pt;}
.y92{bottom:163.546667pt;}
.y88{bottom:163.706667pt;}
.y6a{bottom:167.386667pt;}
.y25{bottom:168.160000pt;}
.y91{bottom:171.866667pt;}
.y87{bottom:172.026667pt;}
.y36{bottom:175.360000pt;}
.y90{bottom:175.866667pt;}
.y41{bottom:180.506667pt;}
.y24{bottom:181.920000pt;}
.y86{bottom:184.186667pt;}
.y69{bottom:186.746667pt;}
.y35{bottom:187.706667pt;}
.y85{bottom:188.186667pt;}
.y23{bottom:195.706667pt;}
.y84{bottom:197.466667pt;}
.y34{bottom:200.026667pt;}
.y68{bottom:206.266667pt;}
.y22{bottom:209.466667pt;}
.y33{bottom:212.186667pt;}
.y40{bottom:219.386667pt;}
.y21{bottom:223.386667pt;}
.y32{bottom:224.506667pt;}
.y67{bottom:225.626667pt;}
.y72{bottom:230.906667pt;}
.y20{bottom:237.146667pt;}
.y3f{bottom:238.746667pt;}
.y66{bottom:244.986667pt;}
.y1f{bottom:250.906667pt;}
.y3e{bottom:254.266667pt;}
.y65{bottom:264.346667pt;}
.y1e{bottom:264.666667pt;}
.y3b{bottom:274.106667pt;}
.y1d{bottom:278.586667pt;}
.y64{bottom:283.906667pt;}
.y8f{bottom:289.186667pt;}
.y1c{bottom:292.346667pt;}
.y63{bottom:303.266667pt;}
.y1b{bottom:306.106667pt;}
.y3a{bottom:307.746667pt;}
.y83{bottom:308.546667pt;}
.y1a{bottom:319.866667pt;}
.y17{bottom:321.506667pt;}
.y62{bottom:322.626667pt;}
.y71{bottom:327.906667pt;}
.y19{bottom:333.786667pt;}
.y61{bottom:341.986667pt;}
.y8e{bottom:347.266667pt;}
.y18{bottom:347.546667pt;}
.y60{bottom:361.346667pt;}
.y82{bottom:366.626667pt;}
.y5f{bottom:380.866667pt;}
.y8d{bottom:386.146667pt;}
.y5e{bottom:400.226667pt;}
.y5d{bottom:419.586667pt;}
.y5c{bottom:438.946667pt;}
.y99{bottom:444.226667pt;}
.y5b{bottom:458.466667pt;}
.y5a{bottom:477.826667pt;}
.y59{bottom:497.186667pt;}
.y58{bottom:516.573333pt;}
.y81{bottom:521.853333pt;}
.y57{bottom:535.933333pt;}
.y56{bottom:555.453333pt;}
.y70{bottom:560.733333pt;}
.y55{bottom:574.813333pt;}
.y54{bottom:594.173333pt;}
.y53{bottom:613.533333pt;}
.y8c{bottom:618.813333pt;}
.y52{bottom:633.053333pt;}
.y51{bottom:652.413333pt;}
.y50{bottom:671.773333pt;}
.y6f{bottom:677.053333pt;}
.y16{bottom:691.133333pt;}
.y80{bottom:696.413333pt;}
.y15{bottom:704.733333pt;}
.y4f{bottom:710.493333pt;}
.y14{bottom:722.493333pt;}
.y4e{bottom:730.053333pt;}
.y13{bottom:744.773333pt;}
.y4d{bottom:749.413333pt;}
.y7f{bottom:754.693333pt;}
.y12{bottom:758.213333pt;}
.y4c{bottom:768.773333pt;}
.y11{bottom:777.573333pt;}
.y4b{bottom:788.133333pt;}
.y10{bottom:796.933333pt;}
.y4a{bottom:807.493333pt;}
.y6e{bottom:812.773333pt;}
.yf{bottom:816.453333pt;}
.y49{bottom:827.013333pt;}
.y7e{bottom:832.293333pt;}
.ye{bottom:835.813333pt;}
.y48{bottom:846.373333pt;}
.yd{bottom:856.293333pt;}
.y47{bottom:865.733333pt;}
.y8b{bottom:871.013333pt;}
.yc{bottom:879.173333pt;}
.y46{bottom:885.093333pt;}
.yb{bottom:902.213333pt;}
.y45{bottom:904.613333pt;}
.y8a{bottom:909.893333pt;}
.y9{bottom:921.413333pt;}
.y1{bottom:939.173333pt;}
.h17{height:19.648125pt;}
.hb{height:24.131250pt;}
.hd{height:25.918750pt;}
.h19{height:26.190625pt;}
.h14{height:27.872000pt;}
.h15{height:29.940625pt;}
.h12{height:30.254687pt;}
.h18{height:31.343437pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.h7{height:34.798125pt;}
.h13{height:35.342500pt;}
.h2{height:37.090625pt;}
.h4{height:37.479688pt;}
.h11{height:39.562500pt;}
.h16{height:41.112500pt;}
.h3{height:41.543750pt;}
.hc{height:42.691250pt;}
.h6{height:43.038750pt;}
.h5{height:43.782500pt;}
.ha{height:47.310625pt;}
.h9{height:48.530000pt;}
.h8{height:48.768750pt;}
.h1{height:68.832000pt;}
.he{height:358.746667pt;}
.h0{height:1056.000000pt;}
.w1{width:64.000000pt;}
.w3{width:186.106667pt;}
.w6{width:199.226667pt;}
.w7{width:264.666667pt;}
.w8{width:348.066667pt;}
.w2{width:380.386667pt;}
.w5{width:408.066667pt;}
.w9{width:815.999976pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x17{left:26.394667pt;}
.x6{left:39.680000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.xf{left:96.991988pt;}
.x27{left:99.711988pt;}
.x34{left:103.391988pt;}
.x16{left:110.432000pt;}
.x8{left:113.160000pt;}
.xc{left:115.071988pt;}
.x21{left:120.031988pt;}
.x43{left:124.511988pt;}
.x3c{left:133.466642pt;}
.xb{left:137.946655pt;}
.x3d{left:142.746655pt;}
.x1a{left:144.026655pt;}
.x3{left:152.826667pt;}
.x13{left:167.706655pt;}
.x10{left:176.346655pt;}
.x3b{left:177.786642pt;}
.x11{left:187.386655pt;}
.x22{left:204.666642pt;}
.x23{left:209.306655pt;}
.x30{left:250.586642pt;}
.x3e{left:254.466642pt;}
.x1f{left:257.346642pt;}
.x31{left:259.906655pt;}
.x20{left:261.986655pt;}
.x3f{left:263.746655pt;}
.xd{left:265.026655pt;}
.x36{left:270.786655pt;}
.x26{left:288.066655pt;}
.x40{left:289.666642pt;}
.x14{left:299.426655pt;}
.x37{left:306.466642pt;}
.x38{left:315.746655pt;}
.x2e{left:341.186642pt;}
.x12{left:345.666655pt;}
.x18{left:375.106667pt;}
.x28{left:385.986642pt;}
.x24{left:389.346642pt;}
.x29{left:390.626655pt;}
.x25{left:393.986655pt;}
.x2f{left:395.586655pt;}
.x1b{left:398.786642pt;}
.x1c{left:403.426655pt;}
.xe{left:408.066655pt;}
.x35{left:444.413309pt;}
.x1d{left:445.533309pt;}
.x2a{left:448.733309pt;}
.x1e{left:450.173321pt;}
.x2b{left:453.373321pt;}
.xa{left:463.133321pt;}
.x15{left:504.093333pt;}
.x5{left:533.213333pt;}
.x2c{left:562.333309pt;}
.x32{left:565.053309pt;}
.x2d{left:566.973321pt;}
.x33{left:574.333321pt;}
.x39{left:589.053309pt;}
.x3a{left:598.333321pt;}
.x41{left:637.413309pt;}
.x42{left:646.693321pt;}
.x19{left:713.733321pt;}
}




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